OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / fortran / resolve.c
1 /* Perform type resolution on the various structures.
2    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
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 #include "config.h"
23 #include "system.h"
24 #include "flags.h"
25 #include "gfortran.h"
26 #include "obstack.h"
27 #include "bitmap.h"
28 #include "arith.h"  /* For gfc_compare_expr().  */
29 #include "dependency.h"
30 #include "data.h"
31 #include "target-memory.h" /* for gfc_simplify_transfer */
32 #include "constructor.h"
33
34 /* Types used in equivalence statements.  */
35
36 typedef enum seq_type
37 {
38   SEQ_NONDEFAULT, SEQ_NUMERIC, SEQ_CHARACTER, SEQ_MIXED
39 }
40 seq_type;
41
42 /* Stack to keep track of the nesting of blocks as we move through the
43    code.  See resolve_branch() and resolve_code().  */
44
45 typedef struct code_stack
46 {
47   struct gfc_code *head, *current;
48   struct code_stack *prev;
49
50   /* This bitmap keeps track of the targets valid for a branch from
51      inside this block except for END {IF|SELECT}s of enclosing
52      blocks.  */
53   bitmap reachable_labels;
54 }
55 code_stack;
56
57 static code_stack *cs_base = NULL;
58
59
60 /* Nonzero if we're inside a FORALL block.  */
61
62 static int forall_flag;
63
64 /* Nonzero if we're inside a OpenMP WORKSHARE or PARALLEL WORKSHARE block.  */
65
66 static int omp_workshare_flag;
67
68 /* Nonzero if we are processing a formal arglist. The corresponding function
69    resets the flag each time that it is read.  */
70 static int formal_arg_flag = 0;
71
72 /* True if we are resolving a specification expression.  */
73 static int specification_expr = 0;
74
75 /* The id of the last entry seen.  */
76 static int current_entry_id;
77
78 /* We use bitmaps to determine if a branch target is valid.  */
79 static bitmap_obstack labels_obstack;
80
81 /* True when simplifying a EXPR_VARIABLE argument to an inquiry function.  */
82 static bool inquiry_argument = false;
83
84 int
85 gfc_is_formal_arg (void)
86 {
87   return formal_arg_flag;
88 }
89
90 /* Is the symbol host associated?  */
91 static bool
92 is_sym_host_assoc (gfc_symbol *sym, gfc_namespace *ns)
93 {
94   for (ns = ns->parent; ns; ns = ns->parent)
95     {      
96       if (sym->ns == ns)
97         return true;
98     }
99
100   return false;
101 }
102
103 /* Ensure a typespec used is valid; for instance, TYPE(t) is invalid if t is
104    an ABSTRACT derived-type.  If where is not NULL, an error message with that
105    locus is printed, optionally using name.  */
106
107 static gfc_try
108 resolve_typespec_used (gfc_typespec* ts, locus* where, const char* name)
109 {
110   if (ts->type == BT_DERIVED && ts->u.derived->attr.abstract)
111     {
112       if (where)
113         {
114           if (name)
115             gfc_error ("'%s' at %L is of the ABSTRACT type '%s'",
116                        name, where, ts->u.derived->name);
117           else
118             gfc_error ("ABSTRACT type '%s' used at %L",
119                        ts->u.derived->name, where);
120         }
121
122       return FAILURE;
123     }
124
125   return SUCCESS;
126 }
127
128
129 /* Resolve types of formal argument lists.  These have to be done early so that
130    the formal argument lists of module procedures can be copied to the
131    containing module before the individual procedures are resolved
132    individually.  We also resolve argument lists of procedures in interface
133    blocks because they are self-contained scoping units.
134
135    Since a dummy argument cannot be a non-dummy procedure, the only
136    resort left for untyped names are the IMPLICIT types.  */
137
138 static void
139 resolve_formal_arglist (gfc_symbol *proc)
140 {
141   gfc_formal_arglist *f;
142   gfc_symbol *sym;
143   int i;
144
145   if (proc->result != NULL)
146     sym = proc->result;
147   else
148     sym = proc;
149
150   if (gfc_elemental (proc)
151       || sym->attr.pointer || sym->attr.allocatable
152       || (sym->as && sym->as->rank > 0))
153     {
154       proc->attr.always_explicit = 1;
155       sym->attr.always_explicit = 1;
156     }
157
158   formal_arg_flag = 1;
159
160   for (f = proc->formal; f; f = f->next)
161     {
162       sym = f->sym;
163
164       if (sym == NULL)
165         {
166           /* Alternate return placeholder.  */
167           if (gfc_elemental (proc))
168             gfc_error ("Alternate return specifier in elemental subroutine "
169                        "'%s' at %L is not allowed", proc->name,
170                        &proc->declared_at);
171           if (proc->attr.function)
172             gfc_error ("Alternate return specifier in function "
173                        "'%s' at %L is not allowed", proc->name,
174                        &proc->declared_at);
175           continue;
176         }
177
178       if (sym->attr.if_source != IFSRC_UNKNOWN)
179         resolve_formal_arglist (sym);
180
181       if (sym->attr.subroutine || sym->attr.external || sym->attr.intrinsic)
182         {
183           if (gfc_pure (proc) && !gfc_pure (sym))
184             {
185               gfc_error ("Dummy procedure '%s' of PURE procedure at %L must "
186                          "also be PURE", sym->name, &sym->declared_at);
187               continue;
188             }
189
190           if (gfc_elemental (proc))
191             {
192               gfc_error ("Dummy procedure at %L not allowed in ELEMENTAL "
193                          "procedure", &sym->declared_at);
194               continue;
195             }
196
197           if (sym->attr.function
198                 && sym->ts.type == BT_UNKNOWN
199                 && sym->attr.intrinsic)
200             {
201               gfc_intrinsic_sym *isym;
202               isym = gfc_find_function (sym->name);
203               if (isym == NULL || !isym->specific)
204                 {
205                   gfc_error ("Unable to find a specific INTRINSIC procedure "
206                              "for the reference '%s' at %L", sym->name,
207                              &sym->declared_at);
208                 }
209               sym->ts = isym->ts;
210             }
211
212           continue;
213         }
214
215       if (sym->ts.type == BT_UNKNOWN)
216         {
217           if (!sym->attr.function || sym->result == sym)
218             gfc_set_default_type (sym, 1, sym->ns);
219         }
220
221       gfc_resolve_array_spec (sym->as, 0);
222
223       /* We can't tell if an array with dimension (:) is assumed or deferred
224          shape until we know if it has the pointer or allocatable attributes.
225       */
226       if (sym->as && sym->as->rank > 0 && sym->as->type == AS_DEFERRED
227           && !(sym->attr.pointer || sym->attr.allocatable))
228         {
229           sym->as->type = AS_ASSUMED_SHAPE;
230           for (i = 0; i < sym->as->rank; i++)
231             sym->as->lower[i] = gfc_get_int_expr (gfc_default_integer_kind,
232                                                   NULL, 1);
233         }
234
235       if ((sym->as && sym->as->rank > 0 && sym->as->type == AS_ASSUMED_SHAPE)
236           || sym->attr.pointer || sym->attr.allocatable || sym->attr.target
237           || sym->attr.optional)
238         {
239           proc->attr.always_explicit = 1;
240           if (proc->result)
241             proc->result->attr.always_explicit = 1;
242         }
243
244       /* If the flavor is unknown at this point, it has to be a variable.
245          A procedure specification would have already set the type.  */
246
247       if (sym->attr.flavor == FL_UNKNOWN)
248         gfc_add_flavor (&sym->attr, FL_VARIABLE, sym->name, &sym->declared_at);
249
250       if (gfc_pure (proc) && !sym->attr.pointer
251           && sym->attr.flavor != FL_PROCEDURE)
252         {
253           if (proc->attr.function && sym->attr.intent != INTENT_IN)
254             gfc_error ("Argument '%s' of pure function '%s' at %L must be "
255                        "INTENT(IN)", sym->name, proc->name,
256                        &sym->declared_at);
257
258           if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN)
259             gfc_error ("Argument '%s' of pure subroutine '%s' at %L must "
260                        "have its INTENT specified", sym->name, proc->name,
261                        &sym->declared_at);
262         }
263
264       if (gfc_elemental (proc))
265         {
266           /* F2008, C1289.  */
267           if (sym->attr.codimension)
268             {
269               gfc_error ("Coarray dummy argument '%s' at %L to elemental "
270                          "procedure", sym->name, &sym->declared_at);
271               continue;
272             }
273
274           if (sym->as != NULL)
275             {
276               gfc_error ("Argument '%s' of elemental procedure at %L must "
277                          "be scalar", sym->name, &sym->declared_at);
278               continue;
279             }
280
281           if (sym->attr.pointer)
282             {
283               gfc_error ("Argument '%s' of elemental procedure at %L cannot "
284                          "have the POINTER attribute", sym->name,
285                          &sym->declared_at);
286               continue;
287             }
288
289           if (sym->attr.flavor == FL_PROCEDURE)
290             {
291               gfc_error ("Dummy procedure '%s' not allowed in elemental "
292                          "procedure '%s' at %L", sym->name, proc->name,
293                          &sym->declared_at);
294               continue;
295             }
296         }
297
298       /* Each dummy shall be specified to be scalar.  */
299       if (proc->attr.proc == PROC_ST_FUNCTION)
300         {
301           if (sym->as != NULL)
302             {
303               gfc_error ("Argument '%s' of statement function at %L must "
304                          "be scalar", sym->name, &sym->declared_at);
305               continue;
306             }
307
308           if (sym->ts.type == BT_CHARACTER)
309             {
310               gfc_charlen *cl = sym->ts.u.cl;
311               if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
312                 {
313                   gfc_error ("Character-valued argument '%s' of statement "
314                              "function at %L must have constant length",
315                              sym->name, &sym->declared_at);
316                   continue;
317                 }
318             }
319         }
320     }
321   formal_arg_flag = 0;
322 }
323
324
325 /* Work function called when searching for symbols that have argument lists
326    associated with them.  */
327
328 static void
329 find_arglists (gfc_symbol *sym)
330 {
331   if (sym->attr.if_source == IFSRC_UNKNOWN || sym->ns != gfc_current_ns)
332     return;
333
334   resolve_formal_arglist (sym);
335 }
336
337
338 /* Given a namespace, resolve all formal argument lists within the namespace.
339  */
340
341 static void
342 resolve_formal_arglists (gfc_namespace *ns)
343 {
344   if (ns == NULL)
345     return;
346
347   gfc_traverse_ns (ns, find_arglists);
348 }
349
350
351 static void
352 resolve_contained_fntype (gfc_symbol *sym, gfc_namespace *ns)
353 {
354   gfc_try t;
355
356   /* If this namespace is not a function or an entry master function,
357      ignore it.  */
358   if (! sym || !(sym->attr.function || sym->attr.flavor == FL_VARIABLE)
359       || sym->attr.entry_master)
360     return;
361
362   /* Try to find out of what the return type is.  */
363   if (sym->result->ts.type == BT_UNKNOWN && sym->result->ts.interface == NULL)
364     {
365       t = gfc_set_default_type (sym->result, 0, ns);
366
367       if (t == FAILURE && !sym->result->attr.untyped)
368         {
369           if (sym->result == sym)
370             gfc_error ("Contained function '%s' at %L has no IMPLICIT type",
371                        sym->name, &sym->declared_at);
372           else if (!sym->result->attr.proc_pointer)
373             gfc_error ("Result '%s' of contained function '%s' at %L has "
374                        "no IMPLICIT type", sym->result->name, sym->name,
375                        &sym->result->declared_at);
376           sym->result->attr.untyped = 1;
377         }
378     }
379
380   /* Fortran 95 Draft Standard, page 51, Section 5.1.1.5, on the Character 
381      type, lists the only ways a character length value of * can be used:
382      dummy arguments of procedures, named constants, and function results
383      in external functions.  Internal function results and results of module
384      procedures are not on this list, ergo, not permitted.  */
385
386   if (sym->result->ts.type == BT_CHARACTER)
387     {
388       gfc_charlen *cl = sym->result->ts.u.cl;
389       if (!cl || !cl->length)
390         {
391           /* See if this is a module-procedure and adapt error message
392              accordingly.  */
393           bool module_proc;
394           gcc_assert (ns->parent && ns->parent->proc_name);
395           module_proc = (ns->parent->proc_name->attr.flavor == FL_MODULE);
396
397           gfc_error ("Character-valued %s '%s' at %L must not be"
398                      " assumed length",
399                      module_proc ? _("module procedure")
400                                  : _("internal function"),
401                      sym->name, &sym->declared_at);
402         }
403     }
404 }
405
406
407 /* Add NEW_ARGS to the formal argument list of PROC, taking care not to
408    introduce duplicates.  */
409
410 static void
411 merge_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
412 {
413   gfc_formal_arglist *f, *new_arglist;
414   gfc_symbol *new_sym;
415
416   for (; new_args != NULL; new_args = new_args->next)
417     {
418       new_sym = new_args->sym;
419       /* See if this arg is already in the formal argument list.  */
420       for (f = proc->formal; f; f = f->next)
421         {
422           if (new_sym == f->sym)
423             break;
424         }
425
426       if (f)
427         continue;
428
429       /* Add a new argument.  Argument order is not important.  */
430       new_arglist = gfc_get_formal_arglist ();
431       new_arglist->sym = new_sym;
432       new_arglist->next = proc->formal;
433       proc->formal  = new_arglist;
434     }
435 }
436
437
438 /* Flag the arguments that are not present in all entries.  */
439
440 static void
441 check_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
442 {
443   gfc_formal_arglist *f, *head;
444   head = new_args;
445
446   for (f = proc->formal; f; f = f->next)
447     {
448       if (f->sym == NULL)
449         continue;
450
451       for (new_args = head; new_args; new_args = new_args->next)
452         {
453           if (new_args->sym == f->sym)
454             break;
455         }
456
457       if (new_args)
458         continue;
459
460       f->sym->attr.not_always_present = 1;
461     }
462 }
463
464
465 /* Resolve alternate entry points.  If a symbol has multiple entry points we
466    create a new master symbol for the main routine, and turn the existing
467    symbol into an entry point.  */
468
469 static void
470 resolve_entries (gfc_namespace *ns)
471 {
472   gfc_namespace *old_ns;
473   gfc_code *c;
474   gfc_symbol *proc;
475   gfc_entry_list *el;
476   char name[GFC_MAX_SYMBOL_LEN + 1];
477   static int master_count = 0;
478
479   if (ns->proc_name == NULL)
480     return;
481
482   /* No need to do anything if this procedure doesn't have alternate entry
483      points.  */
484   if (!ns->entries)
485     return;
486
487   /* We may already have resolved alternate entry points.  */
488   if (ns->proc_name->attr.entry_master)
489     return;
490
491   /* If this isn't a procedure something has gone horribly wrong.  */
492   gcc_assert (ns->proc_name->attr.flavor == FL_PROCEDURE);
493
494   /* Remember the current namespace.  */
495   old_ns = gfc_current_ns;
496
497   gfc_current_ns = ns;
498
499   /* Add the main entry point to the list of entry points.  */
500   el = gfc_get_entry_list ();
501   el->sym = ns->proc_name;
502   el->id = 0;
503   el->next = ns->entries;
504   ns->entries = el;
505   ns->proc_name->attr.entry = 1;
506
507   /* If it is a module function, it needs to be in the right namespace
508      so that gfc_get_fake_result_decl can gather up the results. The
509      need for this arose in get_proc_name, where these beasts were
510      left in their own namespace, to keep prior references linked to
511      the entry declaration.*/
512   if (ns->proc_name->attr.function
513       && ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
514     el->sym->ns = ns;
515
516   /* Do the same for entries where the master is not a module
517      procedure.  These are retained in the module namespace because
518      of the module procedure declaration.  */
519   for (el = el->next; el; el = el->next)
520     if (el->sym->ns->proc_name->attr.flavor == FL_MODULE
521           && el->sym->attr.mod_proc)
522       el->sym->ns = ns;
523   el = ns->entries;
524
525   /* Add an entry statement for it.  */
526   c = gfc_get_code ();
527   c->op = EXEC_ENTRY;
528   c->ext.entry = el;
529   c->next = ns->code;
530   ns->code = c;
531
532   /* Create a new symbol for the master function.  */
533   /* Give the internal function a unique name (within this file).
534      Also include the function name so the user has some hope of figuring
535      out what is going on.  */
536   snprintf (name, GFC_MAX_SYMBOL_LEN, "master.%d.%s",
537             master_count++, ns->proc_name->name);
538   gfc_get_ha_symbol (name, &proc);
539   gcc_assert (proc != NULL);
540
541   gfc_add_procedure (&proc->attr, PROC_INTERNAL, proc->name, NULL);
542   if (ns->proc_name->attr.subroutine)
543     gfc_add_subroutine (&proc->attr, proc->name, NULL);
544   else
545     {
546       gfc_symbol *sym;
547       gfc_typespec *ts, *fts;
548       gfc_array_spec *as, *fas;
549       gfc_add_function (&proc->attr, proc->name, NULL);
550       proc->result = proc;
551       fas = ns->entries->sym->as;
552       fas = fas ? fas : ns->entries->sym->result->as;
553       fts = &ns->entries->sym->result->ts;
554       if (fts->type == BT_UNKNOWN)
555         fts = gfc_get_default_type (ns->entries->sym->result->name, NULL);
556       for (el = ns->entries->next; el; el = el->next)
557         {
558           ts = &el->sym->result->ts;
559           as = el->sym->as;
560           as = as ? as : el->sym->result->as;
561           if (ts->type == BT_UNKNOWN)
562             ts = gfc_get_default_type (el->sym->result->name, NULL);
563
564           if (! gfc_compare_types (ts, fts)
565               || (el->sym->result->attr.dimension
566                   != ns->entries->sym->result->attr.dimension)
567               || (el->sym->result->attr.pointer
568                   != ns->entries->sym->result->attr.pointer))
569             break;
570           else if (as && fas && ns->entries->sym->result != el->sym->result
571                       && gfc_compare_array_spec (as, fas) == 0)
572             gfc_error ("Function %s at %L has entries with mismatched "
573                        "array specifications", ns->entries->sym->name,
574                        &ns->entries->sym->declared_at);
575           /* The characteristics need to match and thus both need to have
576              the same string length, i.e. both len=*, or both len=4.
577              Having both len=<variable> is also possible, but difficult to
578              check at compile time.  */
579           else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl
580                    && (((ts->u.cl->length && !fts->u.cl->length)
581                         ||(!ts->u.cl->length && fts->u.cl->length))
582                        || (ts->u.cl->length
583                            && ts->u.cl->length->expr_type
584                               != fts->u.cl->length->expr_type)
585                        || (ts->u.cl->length
586                            && ts->u.cl->length->expr_type == EXPR_CONSTANT
587                            && mpz_cmp (ts->u.cl->length->value.integer,
588                                        fts->u.cl->length->value.integer) != 0)))
589             gfc_notify_std (GFC_STD_GNU, "Extension: Function %s at %L with "
590                             "entries returning variables of different "
591                             "string lengths", ns->entries->sym->name,
592                             &ns->entries->sym->declared_at);
593         }
594
595       if (el == NULL)
596         {
597           sym = ns->entries->sym->result;
598           /* All result types the same.  */
599           proc->ts = *fts;
600           if (sym->attr.dimension)
601             gfc_set_array_spec (proc, gfc_copy_array_spec (sym->as), NULL);
602           if (sym->attr.pointer)
603             gfc_add_pointer (&proc->attr, NULL);
604         }
605       else
606         {
607           /* Otherwise the result will be passed through a union by
608              reference.  */
609           proc->attr.mixed_entry_master = 1;
610           for (el = ns->entries; el; el = el->next)
611             {
612               sym = el->sym->result;
613               if (sym->attr.dimension)
614                 {
615                   if (el == ns->entries)
616                     gfc_error ("FUNCTION result %s can't be an array in "
617                                "FUNCTION %s at %L", sym->name,
618                                ns->entries->sym->name, &sym->declared_at);
619                   else
620                     gfc_error ("ENTRY result %s can't be an array in "
621                                "FUNCTION %s at %L", sym->name,
622                                ns->entries->sym->name, &sym->declared_at);
623                 }
624               else if (sym->attr.pointer)
625                 {
626                   if (el == ns->entries)
627                     gfc_error ("FUNCTION result %s can't be a POINTER in "
628                                "FUNCTION %s at %L", sym->name,
629                                ns->entries->sym->name, &sym->declared_at);
630                   else
631                     gfc_error ("ENTRY result %s can't be a POINTER in "
632                                "FUNCTION %s at %L", sym->name,
633                                ns->entries->sym->name, &sym->declared_at);
634                 }
635               else
636                 {
637                   ts = &sym->ts;
638                   if (ts->type == BT_UNKNOWN)
639                     ts = gfc_get_default_type (sym->name, NULL);
640                   switch (ts->type)
641                     {
642                     case BT_INTEGER:
643                       if (ts->kind == gfc_default_integer_kind)
644                         sym = NULL;
645                       break;
646                     case BT_REAL:
647                       if (ts->kind == gfc_default_real_kind
648                           || ts->kind == gfc_default_double_kind)
649                         sym = NULL;
650                       break;
651                     case BT_COMPLEX:
652                       if (ts->kind == gfc_default_complex_kind)
653                         sym = NULL;
654                       break;
655                     case BT_LOGICAL:
656                       if (ts->kind == gfc_default_logical_kind)
657                         sym = NULL;
658                       break;
659                     case BT_UNKNOWN:
660                       /* We will issue error elsewhere.  */
661                       sym = NULL;
662                       break;
663                     default:
664                       break;
665                     }
666                   if (sym)
667                     {
668                       if (el == ns->entries)
669                         gfc_error ("FUNCTION result %s can't be of type %s "
670                                    "in FUNCTION %s at %L", sym->name,
671                                    gfc_typename (ts), ns->entries->sym->name,
672                                    &sym->declared_at);
673                       else
674                         gfc_error ("ENTRY result %s can't be of type %s "
675                                    "in FUNCTION %s at %L", sym->name,
676                                    gfc_typename (ts), ns->entries->sym->name,
677                                    &sym->declared_at);
678                     }
679                 }
680             }
681         }
682     }
683   proc->attr.access = ACCESS_PRIVATE;
684   proc->attr.entry_master = 1;
685
686   /* Merge all the entry point arguments.  */
687   for (el = ns->entries; el; el = el->next)
688     merge_argument_lists (proc, el->sym->formal);
689
690   /* Check the master formal arguments for any that are not
691      present in all entry points.  */
692   for (el = ns->entries; el; el = el->next)
693     check_argument_lists (proc, el->sym->formal);
694
695   /* Use the master function for the function body.  */
696   ns->proc_name = proc;
697
698   /* Finalize the new symbols.  */
699   gfc_commit_symbols ();
700
701   /* Restore the original namespace.  */
702   gfc_current_ns = old_ns;
703 }
704
705
706 static bool
707 has_default_initializer (gfc_symbol *der)
708 {
709   gfc_component *c;
710
711   gcc_assert (der->attr.flavor == FL_DERIVED);
712   for (c = der->components; c; c = c->next)
713     if ((c->ts.type != BT_DERIVED && c->initializer)
714         || (c->ts.type == BT_DERIVED
715             && (!c->attr.pointer && has_default_initializer (c->ts.u.derived))))
716       break;
717
718   return c != NULL;
719 }
720
721 /* Resolve common variables.  */
722 static void
723 resolve_common_vars (gfc_symbol *sym, bool named_common)
724 {
725   gfc_symbol *csym = sym;
726
727   for (; csym; csym = csym->common_next)
728     {
729       if (csym->value || csym->attr.data)
730         {
731           if (!csym->ns->is_block_data)
732             gfc_notify_std (GFC_STD_GNU, "Variable '%s' at %L is in COMMON "
733                             "but only in BLOCK DATA initialization is "
734                             "allowed", csym->name, &csym->declared_at);
735           else if (!named_common)
736             gfc_notify_std (GFC_STD_GNU, "Initialized variable '%s' at %L is "
737                             "in a blank COMMON but initialization is only "
738                             "allowed in named common blocks", csym->name,
739                             &csym->declared_at);
740         }
741
742       if (csym->ts.type != BT_DERIVED)
743         continue;
744
745       if (!(csym->ts.u.derived->attr.sequence
746             || csym->ts.u.derived->attr.is_bind_c))
747         gfc_error_now ("Derived type variable '%s' in COMMON at %L "
748                        "has neither the SEQUENCE nor the BIND(C) "
749                        "attribute", csym->name, &csym->declared_at);
750       if (csym->ts.u.derived->attr.alloc_comp)
751         gfc_error_now ("Derived type variable '%s' in COMMON at %L "
752                        "has an ultimate component that is "
753                        "allocatable", csym->name, &csym->declared_at);
754       if (has_default_initializer (csym->ts.u.derived))
755         gfc_error_now ("Derived type variable '%s' in COMMON at %L "
756                        "may not have default initializer", csym->name,
757                        &csym->declared_at);
758
759       if (csym->attr.flavor == FL_UNKNOWN && !csym->attr.proc_pointer)
760         gfc_add_flavor (&csym->attr, FL_VARIABLE, csym->name, &csym->declared_at);
761     }
762 }
763
764 /* Resolve common blocks.  */
765 static void
766 resolve_common_blocks (gfc_symtree *common_root)
767 {
768   gfc_symbol *sym;
769
770   if (common_root == NULL)
771     return;
772
773   if (common_root->left)
774     resolve_common_blocks (common_root->left);
775   if (common_root->right)
776     resolve_common_blocks (common_root->right);
777
778   resolve_common_vars (common_root->n.common->head, true);
779
780   gfc_find_symbol (common_root->name, gfc_current_ns, 0, &sym);
781   if (sym == NULL)
782     return;
783
784   if (sym->attr.flavor == FL_PARAMETER)
785     gfc_error ("COMMON block '%s' at %L is used as PARAMETER at %L",
786                sym->name, &common_root->n.common->where, &sym->declared_at);
787
788   if (sym->attr.intrinsic)
789     gfc_error ("COMMON block '%s' at %L is also an intrinsic procedure",
790                sym->name, &common_root->n.common->where);
791   else if (sym->attr.result
792            || gfc_is_function_return_value (sym, gfc_current_ns))
793     gfc_notify_std (GFC_STD_F2003, "Fortran 2003: COMMON block '%s' at %L "
794                     "that is also a function result", sym->name,
795                     &common_root->n.common->where);
796   else if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_INTERNAL
797            && sym->attr.proc != PROC_ST_FUNCTION)
798     gfc_notify_std (GFC_STD_F2003, "Fortran 2003: COMMON block '%s' at %L "
799                     "that is also a global procedure", sym->name,
800                     &common_root->n.common->where);
801 }
802
803
804 /* Resolve contained function types.  Because contained functions can call one
805    another, they have to be worked out before any of the contained procedures
806    can be resolved.
807
808    The good news is that if a function doesn't already have a type, the only
809    way it can get one is through an IMPLICIT type or a RESULT variable, because
810    by definition contained functions are contained namespace they're contained
811    in, not in a sibling or parent namespace.  */
812
813 static void
814 resolve_contained_functions (gfc_namespace *ns)
815 {
816   gfc_namespace *child;
817   gfc_entry_list *el;
818
819   resolve_formal_arglists (ns);
820
821   for (child = ns->contained; child; child = child->sibling)
822     {
823       /* Resolve alternate entry points first.  */
824       resolve_entries (child);
825
826       /* Then check function return types.  */
827       resolve_contained_fntype (child->proc_name, child);
828       for (el = child->entries; el; el = el->next)
829         resolve_contained_fntype (el->sym, child);
830     }
831 }
832
833
834 /* Resolve all of the elements of a structure constructor and make sure that
835    the types are correct.  */
836
837 static gfc_try
838 resolve_structure_cons (gfc_expr *expr)
839 {
840   gfc_constructor *cons;
841   gfc_component *comp;
842   gfc_try t;
843   symbol_attribute a;
844
845   t = SUCCESS;
846   cons = gfc_constructor_first (expr->value.constructor);
847   /* A constructor may have references if it is the result of substituting a
848      parameter variable.  In this case we just pull out the component we
849      want.  */
850   if (expr->ref)
851     comp = expr->ref->u.c.sym->components;
852   else
853     comp = expr->ts.u.derived->components;
854
855   /* See if the user is trying to invoke a structure constructor for one of
856      the iso_c_binding derived types.  */
857   if (expr->ts.type == BT_DERIVED && expr->ts.u.derived
858       && expr->ts.u.derived->ts.is_iso_c && cons
859       && (cons->expr == NULL || cons->expr->expr_type != EXPR_NULL))
860     {
861       gfc_error ("Components of structure constructor '%s' at %L are PRIVATE",
862                  expr->ts.u.derived->name, &(expr->where));
863       return FAILURE;
864     }
865
866   /* Return if structure constructor is c_null_(fun)prt.  */
867   if (expr->ts.type == BT_DERIVED && expr->ts.u.derived
868       && expr->ts.u.derived->ts.is_iso_c && cons
869       && cons->expr && cons->expr->expr_type == EXPR_NULL)
870     return SUCCESS;
871
872   for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
873     {
874       int rank;
875
876       if (!cons->expr)
877         continue;
878
879       if (gfc_resolve_expr (cons->expr) == FAILURE)
880         {
881           t = FAILURE;
882           continue;
883         }
884
885       rank = comp->as ? comp->as->rank : 0;
886       if (cons->expr->expr_type != EXPR_NULL && rank != cons->expr->rank
887           && (comp->attr.allocatable || cons->expr->rank))
888         {
889           gfc_error ("The rank of the element in the derived type "
890                      "constructor at %L does not match that of the "
891                      "component (%d/%d)", &cons->expr->where,
892                      cons->expr->rank, rank);
893           t = FAILURE;
894         }
895
896       /* If we don't have the right type, try to convert it.  */
897
898       if (!gfc_compare_types (&cons->expr->ts, &comp->ts))
899         {
900           t = FAILURE;
901           if (strcmp (comp->name, "$extends") == 0)
902             {
903               /* Can afford to be brutal with the $extends initializer.
904                  The derived type can get lost because it is PRIVATE
905                  but it is not usage constrained by the standard.  */
906               cons->expr->ts = comp->ts;
907               t = SUCCESS;
908             }
909           else if (comp->attr.pointer && cons->expr->ts.type != BT_UNKNOWN)
910             gfc_error ("The element in the derived type constructor at %L, "
911                        "for pointer component '%s', is %s but should be %s",
912                        &cons->expr->where, comp->name,
913                        gfc_basic_typename (cons->expr->ts.type),
914                        gfc_basic_typename (comp->ts.type));
915           else
916             t = gfc_convert_type (cons->expr, &comp->ts, 1);
917         }
918
919       if (cons->expr->expr_type == EXPR_NULL
920           && !(comp->attr.pointer || comp->attr.allocatable
921                || comp->attr.proc_pointer
922                || (comp->ts.type == BT_CLASS
923                    && (comp->ts.u.derived->components->attr.pointer
924                        || comp->ts.u.derived->components->attr.allocatable))))
925         {
926           t = FAILURE;
927           gfc_error ("The NULL in the derived type constructor at %L is "
928                      "being applied to component '%s', which is neither "
929                      "a POINTER nor ALLOCATABLE", &cons->expr->where,
930                      comp->name);
931         }
932
933       if (!comp->attr.pointer || cons->expr->expr_type == EXPR_NULL)
934         continue;
935
936       a = gfc_expr_attr (cons->expr);
937
938       if (!a.pointer && !a.target)
939         {
940           t = FAILURE;
941           gfc_error ("The element in the derived type constructor at %L, "
942                      "for pointer component '%s' should be a POINTER or "
943                      "a TARGET", &cons->expr->where, comp->name);
944         }
945
946       /* F2003, C1272 (3).  */
947       if (gfc_pure (NULL) && cons->expr->expr_type == EXPR_VARIABLE
948           && (gfc_impure_variable (cons->expr->symtree->n.sym)
949               || gfc_is_coindexed (cons->expr)))
950         {
951           t = FAILURE;
952           gfc_error ("Invalid expression in the derived type constructor for "
953                      "pointer component '%s' at %L in PURE procedure",
954                      comp->name, &cons->expr->where);
955         }
956     }
957
958   return t;
959 }
960
961
962 /****************** Expression name resolution ******************/
963
964 /* Returns 0 if a symbol was not declared with a type or
965    attribute declaration statement, nonzero otherwise.  */
966
967 static int
968 was_declared (gfc_symbol *sym)
969 {
970   symbol_attribute a;
971
972   a = sym->attr;
973
974   if (!a.implicit_type && sym->ts.type != BT_UNKNOWN)
975     return 1;
976
977   if (a.allocatable || a.dimension || a.dummy || a.external || a.intrinsic
978       || a.optional || a.pointer || a.save || a.target || a.volatile_
979       || a.value || a.access != ACCESS_UNKNOWN || a.intent != INTENT_UNKNOWN
980       || a.asynchronous || a.codimension)
981     return 1;
982
983   return 0;
984 }
985
986
987 /* Determine if a symbol is generic or not.  */
988
989 static int
990 generic_sym (gfc_symbol *sym)
991 {
992   gfc_symbol *s;
993
994   if (sym->attr.generic ||
995       (sym->attr.intrinsic && gfc_generic_intrinsic (sym->name)))
996     return 1;
997
998   if (was_declared (sym) || sym->ns->parent == NULL)
999     return 0;
1000
1001   gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1002   
1003   if (s != NULL)
1004     {
1005       if (s == sym)
1006         return 0;
1007       else
1008         return generic_sym (s);
1009     }
1010
1011   return 0;
1012 }
1013
1014
1015 /* Determine if a symbol is specific or not.  */
1016
1017 static int
1018 specific_sym (gfc_symbol *sym)
1019 {
1020   gfc_symbol *s;
1021
1022   if (sym->attr.if_source == IFSRC_IFBODY
1023       || sym->attr.proc == PROC_MODULE
1024       || sym->attr.proc == PROC_INTERNAL
1025       || sym->attr.proc == PROC_ST_FUNCTION
1026       || (sym->attr.intrinsic && gfc_specific_intrinsic (sym->name))
1027       || sym->attr.external)
1028     return 1;
1029
1030   if (was_declared (sym) || sym->ns->parent == NULL)
1031     return 0;
1032
1033   gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
1034
1035   return (s == NULL) ? 0 : specific_sym (s);
1036 }
1037
1038
1039 /* Figure out if the procedure is specific, generic or unknown.  */
1040
1041 typedef enum
1042 { PTYPE_GENERIC = 1, PTYPE_SPECIFIC, PTYPE_UNKNOWN }
1043 proc_type;
1044
1045 static proc_type
1046 procedure_kind (gfc_symbol *sym)
1047 {
1048   if (generic_sym (sym))
1049     return PTYPE_GENERIC;
1050
1051   if (specific_sym (sym))
1052     return PTYPE_SPECIFIC;
1053
1054   return PTYPE_UNKNOWN;
1055 }
1056
1057 /* Check references to assumed size arrays.  The flag need_full_assumed_size
1058    is nonzero when matching actual arguments.  */
1059
1060 static int need_full_assumed_size = 0;
1061
1062 static bool
1063 check_assumed_size_reference (gfc_symbol *sym, gfc_expr *e)
1064 {
1065   if (need_full_assumed_size || !(sym->as && sym->as->type == AS_ASSUMED_SIZE))
1066       return false;
1067
1068   /* FIXME: The comparison "e->ref->u.ar.type == AR_FULL" is wrong.
1069      What should it be?  */
1070   if ((e->ref->u.ar.end[e->ref->u.ar.as->rank - 1] == NULL)
1071           && (e->ref->u.ar.as->type == AS_ASSUMED_SIZE)
1072                && (e->ref->u.ar.type == AR_FULL))
1073     {
1074       gfc_error ("The upper bound in the last dimension must "
1075                  "appear in the reference to the assumed size "
1076                  "array '%s' at %L", sym->name, &e->where);
1077       return true;
1078     }
1079   return false;
1080 }
1081
1082
1083 /* Look for bad assumed size array references in argument expressions
1084   of elemental and array valued intrinsic procedures.  Since this is
1085   called from procedure resolution functions, it only recurses at
1086   operators.  */
1087
1088 static bool
1089 resolve_assumed_size_actual (gfc_expr *e)
1090 {
1091   if (e == NULL)
1092    return false;
1093
1094   switch (e->expr_type)
1095     {
1096     case EXPR_VARIABLE:
1097       if (e->symtree && check_assumed_size_reference (e->symtree->n.sym, e))
1098         return true;
1099       break;
1100
1101     case EXPR_OP:
1102       if (resolve_assumed_size_actual (e->value.op.op1)
1103           || resolve_assumed_size_actual (e->value.op.op2))
1104         return true;
1105       break;
1106
1107     default:
1108       break;
1109     }
1110   return false;
1111 }
1112
1113
1114 /* Check a generic procedure, passed as an actual argument, to see if
1115    there is a matching specific name.  If none, it is an error, and if
1116    more than one, the reference is ambiguous.  */
1117 static int
1118 count_specific_procs (gfc_expr *e)
1119 {
1120   int n;
1121   gfc_interface *p;
1122   gfc_symbol *sym;
1123         
1124   n = 0;
1125   sym = e->symtree->n.sym;
1126
1127   for (p = sym->generic; p; p = p->next)
1128     if (strcmp (sym->name, p->sym->name) == 0)
1129       {
1130         e->symtree = gfc_find_symtree (p->sym->ns->sym_root,
1131                                        sym->name);
1132         n++;
1133       }
1134
1135   if (n > 1)
1136     gfc_error ("'%s' at %L is ambiguous", e->symtree->n.sym->name,
1137                &e->where);
1138
1139   if (n == 0)
1140     gfc_error ("GENERIC procedure '%s' is not allowed as an actual "
1141                "argument at %L", sym->name, &e->where);
1142
1143   return n;
1144 }
1145
1146
1147 /* See if a call to sym could possibly be a not allowed RECURSION because of
1148    a missing RECURIVE declaration.  This means that either sym is the current
1149    context itself, or sym is the parent of a contained procedure calling its
1150    non-RECURSIVE containing procedure.
1151    This also works if sym is an ENTRY.  */
1152
1153 static bool
1154 is_illegal_recursion (gfc_symbol* sym, gfc_namespace* context)
1155 {
1156   gfc_symbol* proc_sym;
1157   gfc_symbol* context_proc;
1158   gfc_namespace* real_context;
1159
1160   if (sym->attr.flavor == FL_PROGRAM)
1161     return false;
1162
1163   gcc_assert (sym->attr.flavor == FL_PROCEDURE);
1164
1165   /* If we've got an ENTRY, find real procedure.  */
1166   if (sym->attr.entry && sym->ns->entries)
1167     proc_sym = sym->ns->entries->sym;
1168   else
1169     proc_sym = sym;
1170
1171   /* If sym is RECURSIVE, all is well of course.  */
1172   if (proc_sym->attr.recursive || gfc_option.flag_recursive)
1173     return false;
1174
1175   /* Find the context procedure's "real" symbol if it has entries.
1176      We look for a procedure symbol, so recurse on the parents if we don't
1177      find one (like in case of a BLOCK construct).  */
1178   for (real_context = context; ; real_context = real_context->parent)
1179     {
1180       /* We should find something, eventually!  */
1181       gcc_assert (real_context);
1182
1183       context_proc = (real_context->entries ? real_context->entries->sym
1184                                             : real_context->proc_name);
1185
1186       /* In some special cases, there may not be a proc_name, like for this
1187          invalid code:
1188          real(bad_kind()) function foo () ...
1189          when checking the call to bad_kind ().
1190          In these cases, we simply return here and assume that the
1191          call is ok.  */
1192       if (!context_proc)
1193         return false;
1194
1195       if (context_proc->attr.flavor != FL_LABEL)
1196         break;
1197     }
1198
1199   /* A call from sym's body to itself is recursion, of course.  */
1200   if (context_proc == proc_sym)
1201     return true;
1202
1203   /* The same is true if context is a contained procedure and sym the
1204      containing one.  */
1205   if (context_proc->attr.contained)
1206     {
1207       gfc_symbol* parent_proc;
1208
1209       gcc_assert (context->parent);
1210       parent_proc = (context->parent->entries ? context->parent->entries->sym
1211                                               : context->parent->proc_name);
1212
1213       if (parent_proc == proc_sym)
1214         return true;
1215     }
1216
1217   return false;
1218 }
1219
1220
1221 /* Resolve an intrinsic procedure: Set its function/subroutine attribute,
1222    its typespec and formal argument list.  */
1223
1224 static gfc_try
1225 resolve_intrinsic (gfc_symbol *sym, locus *loc)
1226 {
1227   gfc_intrinsic_sym* isym;
1228   const char* symstd;
1229
1230   if (sym->formal)
1231     return SUCCESS;
1232
1233   /* We already know this one is an intrinsic, so we don't call
1234      gfc_is_intrinsic for full checking but rather use gfc_find_function and
1235      gfc_find_subroutine directly to check whether it is a function or
1236      subroutine.  */
1237
1238   if ((isym = gfc_find_function (sym->name)))
1239     {
1240       if (sym->ts.type != BT_UNKNOWN && gfc_option.warn_surprising
1241           && !sym->attr.implicit_type)
1242         gfc_warning ("Type specified for intrinsic function '%s' at %L is"
1243                       " ignored", sym->name, &sym->declared_at);
1244
1245       if (!sym->attr.function &&
1246           gfc_add_function (&sym->attr, sym->name, loc) == FAILURE)
1247         return FAILURE;
1248
1249       sym->ts = isym->ts;
1250     }
1251   else if ((isym = gfc_find_subroutine (sym->name)))
1252     {
1253       if (sym->ts.type != BT_UNKNOWN && !sym->attr.implicit_type)
1254         {
1255           gfc_error ("Intrinsic subroutine '%s' at %L shall not have a type"
1256                       " specifier", sym->name, &sym->declared_at);
1257           return FAILURE;
1258         }
1259
1260       if (!sym->attr.subroutine &&
1261           gfc_add_subroutine (&sym->attr, sym->name, loc) == FAILURE)
1262         return FAILURE;
1263     }
1264   else
1265     {
1266       gfc_error ("'%s' declared INTRINSIC at %L does not exist", sym->name,
1267                  &sym->declared_at);
1268       return FAILURE;
1269     }
1270
1271   gfc_copy_formal_args_intr (sym, isym);
1272
1273   /* Check it is actually available in the standard settings.  */
1274   if (gfc_check_intrinsic_standard (isym, &symstd, false, sym->declared_at)
1275       == FAILURE)
1276     {
1277       gfc_error ("The intrinsic '%s' declared INTRINSIC at %L is not"
1278                  " available in the current standard settings but %s.  Use"
1279                  " an appropriate -std=* option or enable -fall-intrinsics"
1280                  " in order to use it.",
1281                  sym->name, &sym->declared_at, symstd);
1282       return FAILURE;
1283     }
1284
1285   return SUCCESS;
1286 }
1287
1288
1289 /* Resolve a procedure expression, like passing it to a called procedure or as
1290    RHS for a procedure pointer assignment.  */
1291
1292 static gfc_try
1293 resolve_procedure_expression (gfc_expr* expr)
1294 {
1295   gfc_symbol* sym;
1296
1297   if (expr->expr_type != EXPR_VARIABLE)
1298     return SUCCESS;
1299   gcc_assert (expr->symtree);
1300
1301   sym = expr->symtree->n.sym;
1302
1303   if (sym->attr.intrinsic)
1304     resolve_intrinsic (sym, &expr->where);
1305
1306   if (sym->attr.flavor != FL_PROCEDURE
1307       || (sym->attr.function && sym->result == sym))
1308     return SUCCESS;
1309
1310   /* A non-RECURSIVE procedure that is used as procedure expression within its
1311      own body is in danger of being called recursively.  */
1312   if (is_illegal_recursion (sym, gfc_current_ns))
1313     gfc_warning ("Non-RECURSIVE procedure '%s' at %L is possibly calling"
1314                  " itself recursively.  Declare it RECURSIVE or use"
1315                  " -frecursive", sym->name, &expr->where);
1316   
1317   return SUCCESS;
1318 }
1319
1320
1321 /* Resolve an actual argument list.  Most of the time, this is just
1322    resolving the expressions in the list.
1323    The exception is that we sometimes have to decide whether arguments
1324    that look like procedure arguments are really simple variable
1325    references.  */
1326
1327 static gfc_try
1328 resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype,
1329                         bool no_formal_args)
1330 {
1331   gfc_symbol *sym;
1332   gfc_symtree *parent_st;
1333   gfc_expr *e;
1334   int save_need_full_assumed_size;
1335   gfc_component *comp;
1336
1337   for (; arg; arg = arg->next)
1338     {
1339       e = arg->expr;
1340       if (e == NULL)
1341         {
1342           /* Check the label is a valid branching target.  */
1343           if (arg->label)
1344             {
1345               if (arg->label->defined == ST_LABEL_UNKNOWN)
1346                 {
1347                   gfc_error ("Label %d referenced at %L is never defined",
1348                              arg->label->value, &arg->label->where);
1349                   return FAILURE;
1350                 }
1351             }
1352           continue;
1353         }
1354
1355       if (gfc_is_proc_ptr_comp (e, &comp))
1356         {
1357           e->ts = comp->ts;
1358           if (e->expr_type == EXPR_PPC)
1359             {
1360               if (comp->as != NULL)
1361                 e->rank = comp->as->rank;
1362               e->expr_type = EXPR_FUNCTION;
1363             }
1364           if (gfc_resolve_expr (e) == FAILURE)                          
1365             return FAILURE; 
1366           goto argument_list;
1367         }
1368
1369       if (e->expr_type == EXPR_VARIABLE
1370             && e->symtree->n.sym->attr.generic
1371             && no_formal_args
1372             && count_specific_procs (e) != 1)
1373         return FAILURE;
1374
1375       if (e->ts.type != BT_PROCEDURE)
1376         {
1377           save_need_full_assumed_size = need_full_assumed_size;
1378           if (e->expr_type != EXPR_VARIABLE)
1379             need_full_assumed_size = 0;
1380           if (gfc_resolve_expr (e) != SUCCESS)
1381             return FAILURE;
1382           need_full_assumed_size = save_need_full_assumed_size;
1383           goto argument_list;
1384         }
1385
1386       /* See if the expression node should really be a variable reference.  */
1387
1388       sym = e->symtree->n.sym;
1389
1390       if (sym->attr.flavor == FL_PROCEDURE
1391           || sym->attr.intrinsic
1392           || sym->attr.external)
1393         {
1394           int actual_ok;
1395
1396           /* If a procedure is not already determined to be something else
1397              check if it is intrinsic.  */
1398           if (!sym->attr.intrinsic
1399               && !(sym->attr.external || sym->attr.use_assoc
1400                    || sym->attr.if_source == IFSRC_IFBODY)
1401               && gfc_is_intrinsic (sym, sym->attr.subroutine, e->where))
1402             sym->attr.intrinsic = 1;
1403
1404           if (sym->attr.proc == PROC_ST_FUNCTION)
1405             {
1406               gfc_error ("Statement function '%s' at %L is not allowed as an "
1407                          "actual argument", sym->name, &e->where);
1408             }
1409
1410           actual_ok = gfc_intrinsic_actual_ok (sym->name,
1411                                                sym->attr.subroutine);
1412           if (sym->attr.intrinsic && actual_ok == 0)
1413             {
1414               gfc_error ("Intrinsic '%s' at %L is not allowed as an "
1415                          "actual argument", sym->name, &e->where);
1416             }
1417
1418           if (sym->attr.contained && !sym->attr.use_assoc
1419               && sym->ns->proc_name->attr.flavor != FL_MODULE)
1420             {
1421               gfc_error ("Internal procedure '%s' is not allowed as an "
1422                          "actual argument at %L", sym->name, &e->where);
1423             }
1424
1425           if (sym->attr.elemental && !sym->attr.intrinsic)
1426             {
1427               gfc_error ("ELEMENTAL non-INTRINSIC procedure '%s' is not "
1428                          "allowed as an actual argument at %L", sym->name,
1429                          &e->where);
1430             }
1431
1432           /* Check if a generic interface has a specific procedure
1433             with the same name before emitting an error.  */
1434           if (sym->attr.generic && count_specific_procs (e) != 1)
1435             return FAILURE;
1436           
1437           /* Just in case a specific was found for the expression.  */
1438           sym = e->symtree->n.sym;
1439
1440           /* If the symbol is the function that names the current (or
1441              parent) scope, then we really have a variable reference.  */
1442
1443           if (gfc_is_function_return_value (sym, sym->ns))
1444             goto got_variable;
1445
1446           /* If all else fails, see if we have a specific intrinsic.  */
1447           if (sym->ts.type == BT_UNKNOWN && sym->attr.intrinsic)
1448             {
1449               gfc_intrinsic_sym *isym;
1450
1451               isym = gfc_find_function (sym->name);
1452               if (isym == NULL || !isym->specific)
1453                 {
1454                   gfc_error ("Unable to find a specific INTRINSIC procedure "
1455                              "for the reference '%s' at %L", sym->name,
1456                              &e->where);
1457                   return FAILURE;
1458                 }
1459               sym->ts = isym->ts;
1460               sym->attr.intrinsic = 1;
1461               sym->attr.function = 1;
1462             }
1463
1464           if (gfc_resolve_expr (e) == FAILURE)
1465             return FAILURE;
1466           goto argument_list;
1467         }
1468
1469       /* See if the name is a module procedure in a parent unit.  */
1470
1471       if (was_declared (sym) || sym->ns->parent == NULL)
1472         goto got_variable;
1473
1474       if (gfc_find_sym_tree (sym->name, sym->ns->parent, 1, &parent_st))
1475         {
1476           gfc_error ("Symbol '%s' at %L is ambiguous", sym->name, &e->where);
1477           return FAILURE;
1478         }
1479
1480       if (parent_st == NULL)
1481         goto got_variable;
1482
1483       sym = parent_st->n.sym;
1484       e->symtree = parent_st;           /* Point to the right thing.  */
1485
1486       if (sym->attr.flavor == FL_PROCEDURE
1487           || sym->attr.intrinsic
1488           || sym->attr.external)
1489         {
1490           if (gfc_resolve_expr (e) == FAILURE)
1491             return FAILURE;
1492           goto argument_list;
1493         }
1494
1495     got_variable:
1496       e->expr_type = EXPR_VARIABLE;
1497       e->ts = sym->ts;
1498       if (sym->as != NULL)
1499         {
1500           e->rank = sym->as->rank;
1501           e->ref = gfc_get_ref ();
1502           e->ref->type = REF_ARRAY;
1503           e->ref->u.ar.type = AR_FULL;
1504           e->ref->u.ar.as = sym->as;
1505         }
1506
1507       /* Expressions are assigned a default ts.type of BT_PROCEDURE in
1508          primary.c (match_actual_arg). If above code determines that it
1509          is a  variable instead, it needs to be resolved as it was not
1510          done at the beginning of this function.  */
1511       save_need_full_assumed_size = need_full_assumed_size;
1512       if (e->expr_type != EXPR_VARIABLE)
1513         need_full_assumed_size = 0;
1514       if (gfc_resolve_expr (e) != SUCCESS)
1515         return FAILURE;
1516       need_full_assumed_size = save_need_full_assumed_size;
1517
1518     argument_list:
1519       /* Check argument list functions %VAL, %LOC and %REF.  There is
1520          nothing to do for %REF.  */
1521       if (arg->name && arg->name[0] == '%')
1522         {
1523           if (strncmp ("%VAL", arg->name, 4) == 0)
1524             {
1525               if (e->ts.type == BT_CHARACTER || e->ts.type == BT_DERIVED)
1526                 {
1527                   gfc_error ("By-value argument at %L is not of numeric "
1528                              "type", &e->where);
1529                   return FAILURE;
1530                 }
1531
1532               if (e->rank)
1533                 {
1534                   gfc_error ("By-value argument at %L cannot be an array or "
1535                              "an array section", &e->where);
1536                 return FAILURE;
1537                 }
1538
1539               /* Intrinsics are still PROC_UNKNOWN here.  However,
1540                  since same file external procedures are not resolvable
1541                  in gfortran, it is a good deal easier to leave them to
1542                  intrinsic.c.  */
1543               if (ptype != PROC_UNKNOWN
1544                   && ptype != PROC_DUMMY
1545                   && ptype != PROC_EXTERNAL
1546                   && ptype != PROC_MODULE)
1547                 {
1548                   gfc_error ("By-value argument at %L is not allowed "
1549                              "in this context", &e->where);
1550                   return FAILURE;
1551                 }
1552             }
1553
1554           /* Statement functions have already been excluded above.  */
1555           else if (strncmp ("%LOC", arg->name, 4) == 0
1556                    && e->ts.type == BT_PROCEDURE)
1557             {
1558               if (e->symtree->n.sym->attr.proc == PROC_INTERNAL)
1559                 {
1560                   gfc_error ("Passing internal procedure at %L by location "
1561                              "not allowed", &e->where);
1562                   return FAILURE;
1563                 }
1564             }
1565         }
1566
1567       /* Fortran 2008, C1237.  */
1568       if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
1569           && gfc_has_ultimate_pointer (e))
1570         {
1571           gfc_error ("Coindexed actual argument at %L with ultimate pointer "
1572                      "component", &e->where);
1573           return FAILURE;
1574         }
1575     }
1576
1577   return SUCCESS;
1578 }
1579
1580
1581 /* Do the checks of the actual argument list that are specific to elemental
1582    procedures.  If called with c == NULL, we have a function, otherwise if
1583    expr == NULL, we have a subroutine.  */
1584
1585 static gfc_try
1586 resolve_elemental_actual (gfc_expr *expr, gfc_code *c)
1587 {
1588   gfc_actual_arglist *arg0;
1589   gfc_actual_arglist *arg;
1590   gfc_symbol *esym = NULL;
1591   gfc_intrinsic_sym *isym = NULL;
1592   gfc_expr *e = NULL;
1593   gfc_intrinsic_arg *iformal = NULL;
1594   gfc_formal_arglist *eformal = NULL;
1595   bool formal_optional = false;
1596   bool set_by_optional = false;
1597   int i;
1598   int rank = 0;
1599
1600   /* Is this an elemental procedure?  */
1601   if (expr && expr->value.function.actual != NULL)
1602     {
1603       if (expr->value.function.esym != NULL
1604           && expr->value.function.esym->attr.elemental)
1605         {
1606           arg0 = expr->value.function.actual;
1607           esym = expr->value.function.esym;
1608         }
1609       else if (expr->value.function.isym != NULL
1610                && expr->value.function.isym->elemental)
1611         {
1612           arg0 = expr->value.function.actual;
1613           isym = expr->value.function.isym;
1614         }
1615       else
1616         return SUCCESS;
1617     }
1618   else if (c && c->ext.actual != NULL)
1619     {
1620       arg0 = c->ext.actual;
1621       
1622       if (c->resolved_sym)
1623         esym = c->resolved_sym;
1624       else
1625         esym = c->symtree->n.sym;
1626       gcc_assert (esym);
1627
1628       if (!esym->attr.elemental)
1629         return SUCCESS;
1630     }
1631   else
1632     return SUCCESS;
1633
1634   /* The rank of an elemental is the rank of its array argument(s).  */
1635   for (arg = arg0; arg; arg = arg->next)
1636     {
1637       if (arg->expr != NULL && arg->expr->rank > 0)
1638         {
1639           rank = arg->expr->rank;
1640           if (arg->expr->expr_type == EXPR_VARIABLE
1641               && arg->expr->symtree->n.sym->attr.optional)
1642             set_by_optional = true;
1643
1644           /* Function specific; set the result rank and shape.  */
1645           if (expr)
1646             {
1647               expr->rank = rank;
1648               if (!expr->shape && arg->expr->shape)
1649                 {
1650                   expr->shape = gfc_get_shape (rank);
1651                   for (i = 0; i < rank; i++)
1652                     mpz_init_set (expr->shape[i], arg->expr->shape[i]);
1653                 }
1654             }
1655           break;
1656         }
1657     }
1658
1659   /* If it is an array, it shall not be supplied as an actual argument
1660      to an elemental procedure unless an array of the same rank is supplied
1661      as an actual argument corresponding to a nonoptional dummy argument of
1662      that elemental procedure(12.4.1.5).  */
1663   formal_optional = false;
1664   if (isym)
1665     iformal = isym->formal;
1666   else
1667     eformal = esym->formal;
1668
1669   for (arg = arg0; arg; arg = arg->next)
1670     {
1671       if (eformal)
1672         {
1673           if (eformal->sym && eformal->sym->attr.optional)
1674             formal_optional = true;
1675           eformal = eformal->next;
1676         }
1677       else if (isym && iformal)
1678         {
1679           if (iformal->optional)
1680             formal_optional = true;
1681           iformal = iformal->next;
1682         }
1683       else if (isym)
1684         formal_optional = true;
1685
1686       if (pedantic && arg->expr != NULL
1687           && arg->expr->expr_type == EXPR_VARIABLE
1688           && arg->expr->symtree->n.sym->attr.optional
1689           && formal_optional
1690           && arg->expr->rank
1691           && (set_by_optional || arg->expr->rank != rank)
1692           && !(isym && isym->id == GFC_ISYM_CONVERSION))
1693         {
1694           gfc_warning ("'%s' at %L is an array and OPTIONAL; IF IT IS "
1695                        "MISSING, it cannot be the actual argument of an "
1696                        "ELEMENTAL procedure unless there is a non-optional "
1697                        "argument with the same rank (12.4.1.5)",
1698                        arg->expr->symtree->n.sym->name, &arg->expr->where);
1699           return FAILURE;
1700         }
1701     }
1702
1703   for (arg = arg0; arg; arg = arg->next)
1704     {
1705       if (arg->expr == NULL || arg->expr->rank == 0)
1706         continue;
1707
1708       /* Being elemental, the last upper bound of an assumed size array
1709          argument must be present.  */
1710       if (resolve_assumed_size_actual (arg->expr))
1711         return FAILURE;
1712
1713       /* Elemental procedure's array actual arguments must conform.  */
1714       if (e != NULL)
1715         {
1716           if (gfc_check_conformance (arg->expr, e,
1717                                      "elemental procedure") == FAILURE)
1718             return FAILURE;
1719         }
1720       else
1721         e = arg->expr;
1722     }
1723
1724   /* INTENT(OUT) is only allowed for subroutines; if any actual argument
1725      is an array, the intent inout/out variable needs to be also an array.  */
1726   if (rank > 0 && esym && expr == NULL)
1727     for (eformal = esym->formal, arg = arg0; arg && eformal;
1728          arg = arg->next, eformal = eformal->next)
1729       if ((eformal->sym->attr.intent == INTENT_OUT
1730            || eformal->sym->attr.intent == INTENT_INOUT)
1731           && arg->expr && arg->expr->rank == 0)
1732         {
1733           gfc_error ("Actual argument at %L for INTENT(%s) dummy '%s' of "
1734                      "ELEMENTAL subroutine '%s' is a scalar, but another "
1735                      "actual argument is an array", &arg->expr->where,
1736                      (eformal->sym->attr.intent == INTENT_OUT) ? "OUT"
1737                      : "INOUT", eformal->sym->name, esym->name);
1738           return FAILURE;
1739         }
1740   return SUCCESS;
1741 }
1742
1743
1744 /* Go through each actual argument in ACTUAL and see if it can be
1745    implemented as an inlined, non-copying intrinsic.  FNSYM is the
1746    function being called, or NULL if not known.  */
1747
1748 static void
1749 find_noncopying_intrinsics (gfc_symbol *fnsym, gfc_actual_arglist *actual)
1750 {
1751   gfc_actual_arglist *ap;
1752   gfc_expr *expr;
1753
1754   for (ap = actual; ap; ap = ap->next)
1755     if (ap->expr
1756         && (expr = gfc_get_noncopying_intrinsic_argument (ap->expr))
1757         && !gfc_check_fncall_dependency (expr, INTENT_IN, fnsym, actual,
1758                                          NOT_ELEMENTAL))
1759       ap->expr->inline_noncopying_intrinsic = 1;
1760 }
1761
1762
1763 /* This function does the checking of references to global procedures
1764    as defined in sections 18.1 and 14.1, respectively, of the Fortran
1765    77 and 95 standards.  It checks for a gsymbol for the name, making
1766    one if it does not already exist.  If it already exists, then the
1767    reference being resolved must correspond to the type of gsymbol.
1768    Otherwise, the new symbol is equipped with the attributes of the
1769    reference.  The corresponding code that is called in creating
1770    global entities is parse.c.
1771
1772    In addition, for all but -std=legacy, the gsymbols are used to
1773    check the interfaces of external procedures from the same file.
1774    The namespace of the gsymbol is resolved and then, once this is
1775    done the interface is checked.  */
1776
1777
1778 static bool
1779 not_in_recursive (gfc_symbol *sym, gfc_namespace *gsym_ns)
1780 {
1781   if (!gsym_ns->proc_name->attr.recursive)
1782     return true;
1783
1784   if (sym->ns == gsym_ns)
1785     return false;
1786
1787   if (sym->ns->parent && sym->ns->parent == gsym_ns)
1788     return false;
1789
1790   return true;
1791 }
1792
1793 static bool
1794 not_entry_self_reference  (gfc_symbol *sym, gfc_namespace *gsym_ns)
1795 {
1796   if (gsym_ns->entries)
1797     {
1798       gfc_entry_list *entry = gsym_ns->entries;
1799
1800       for (; entry; entry = entry->next)
1801         {
1802           if (strcmp (sym->name, entry->sym->name) == 0)
1803             {
1804               if (strcmp (gsym_ns->proc_name->name,
1805                           sym->ns->proc_name->name) == 0)
1806                 return false;
1807
1808               if (sym->ns->parent
1809                   && strcmp (gsym_ns->proc_name->name,
1810                              sym->ns->parent->proc_name->name) == 0)
1811                 return false;
1812             }
1813         }
1814     }
1815   return true;
1816 }
1817
1818 static void
1819 resolve_global_procedure (gfc_symbol *sym, locus *where,
1820                           gfc_actual_arglist **actual, int sub)
1821 {
1822   gfc_gsymbol * gsym;
1823   gfc_namespace *ns;
1824   enum gfc_symbol_type type;
1825
1826   type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
1827
1828   gsym = gfc_get_gsymbol (sym->name);
1829
1830   if ((gsym->type != GSYM_UNKNOWN && gsym->type != type))
1831     gfc_global_used (gsym, where);
1832
1833   if (gfc_option.flag_whole_file
1834         && sym->attr.if_source == IFSRC_UNKNOWN
1835         && gsym->type != GSYM_UNKNOWN
1836         && gsym->ns
1837         && gsym->ns->resolved != -1
1838         && gsym->ns->proc_name
1839         && not_in_recursive (sym, gsym->ns)
1840         && not_entry_self_reference (sym, gsym->ns))
1841     {
1842       /* Make sure that translation for the gsymbol occurs before
1843          the procedure currently being resolved.  */
1844       ns = gsym->ns->resolved ? NULL : gfc_global_ns_list;
1845       for (; ns && ns != gsym->ns; ns = ns->sibling)
1846         {
1847           if (ns->sibling == gsym->ns)
1848             {
1849               ns->sibling = gsym->ns->sibling;
1850               gsym->ns->sibling = gfc_global_ns_list;
1851               gfc_global_ns_list = gsym->ns;
1852               break;
1853             }
1854         }
1855
1856       if (!gsym->ns->resolved)
1857         {
1858           gfc_dt_list *old_dt_list;
1859
1860           /* Stash away derived types so that the backend_decls do not
1861              get mixed up.  */
1862           old_dt_list = gfc_derived_types;
1863           gfc_derived_types = NULL;
1864
1865           gfc_resolve (gsym->ns);
1866
1867           /* Store the new derived types with the global namespace.  */
1868           if (gfc_derived_types)
1869             gsym->ns->derived_types = gfc_derived_types;
1870
1871           /* Restore the derived types of this namespace.  */
1872           gfc_derived_types = old_dt_list;
1873         }
1874
1875       if (gsym->ns->proc_name->attr.function
1876             && gsym->ns->proc_name->as
1877             && gsym->ns->proc_name->as->rank
1878             && (!sym->as || sym->as->rank != gsym->ns->proc_name->as->rank))
1879         gfc_error ("The reference to function '%s' at %L either needs an "
1880                    "explicit INTERFACE or the rank is incorrect", sym->name,
1881                    where);
1882      
1883       /* Non-assumed length character functions.  */
1884       if (sym->attr.function && sym->ts.type == BT_CHARACTER
1885           && gsym->ns->proc_name->ts.u.cl->length != NULL)
1886         {
1887           gfc_charlen *cl = sym->ts.u.cl;
1888
1889           if (!sym->attr.entry_master && sym->attr.if_source == IFSRC_UNKNOWN
1890               && cl && cl->length && cl->length->expr_type != EXPR_CONSTANT)
1891             {
1892               gfc_error ("Nonconstant character-length function '%s' at %L "
1893                          "must have an explicit interface", sym->name,
1894                          &sym->declared_at);
1895             }
1896         }
1897
1898       if (gfc_option.flag_whole_file == 1
1899             || ((gfc_option.warn_std & GFC_STD_LEGACY)
1900                   &&
1901                !(gfc_option.warn_std & GFC_STD_GNU)))
1902         gfc_errors_to_warnings (1);
1903
1904       gfc_procedure_use (gsym->ns->proc_name, actual, where);
1905
1906       gfc_errors_to_warnings (0);
1907     }
1908
1909   if (gsym->type == GSYM_UNKNOWN)
1910     {
1911       gsym->type = type;
1912       gsym->where = *where;
1913     }
1914
1915   gsym->used = 1;
1916 }
1917
1918
1919 /************* Function resolution *************/
1920
1921 /* Resolve a function call known to be generic.
1922    Section 14.1.2.4.1.  */
1923
1924 static match
1925 resolve_generic_f0 (gfc_expr *expr, gfc_symbol *sym)
1926 {
1927   gfc_symbol *s;
1928
1929   if (sym->attr.generic)
1930     {
1931       s = gfc_search_interface (sym->generic, 0, &expr->value.function.actual);
1932       if (s != NULL)
1933         {
1934           expr->value.function.name = s->name;
1935           expr->value.function.esym = s;
1936
1937           if (s->ts.type != BT_UNKNOWN)
1938             expr->ts = s->ts;
1939           else if (s->result != NULL && s->result->ts.type != BT_UNKNOWN)
1940             expr->ts = s->result->ts;
1941
1942           if (s->as != NULL)
1943             expr->rank = s->as->rank;
1944           else if (s->result != NULL && s->result->as != NULL)
1945             expr->rank = s->result->as->rank;
1946
1947           gfc_set_sym_referenced (expr->value.function.esym);
1948
1949           return MATCH_YES;
1950         }
1951
1952       /* TODO: Need to search for elemental references in generic
1953          interface.  */
1954     }
1955
1956   if (sym->attr.intrinsic)
1957     return gfc_intrinsic_func_interface (expr, 0);
1958
1959   return MATCH_NO;
1960 }
1961
1962
1963 static gfc_try
1964 resolve_generic_f (gfc_expr *expr)
1965 {
1966   gfc_symbol *sym;
1967   match m;
1968
1969   sym = expr->symtree->n.sym;
1970
1971   for (;;)
1972     {
1973       m = resolve_generic_f0 (expr, sym);
1974       if (m == MATCH_YES)
1975         return SUCCESS;
1976       else if (m == MATCH_ERROR)
1977         return FAILURE;
1978
1979 generic:
1980       if (sym->ns->parent == NULL)
1981         break;
1982       gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
1983
1984       if (sym == NULL)
1985         break;
1986       if (!generic_sym (sym))
1987         goto generic;
1988     }
1989
1990   /* Last ditch attempt.  See if the reference is to an intrinsic
1991      that possesses a matching interface.  14.1.2.4  */
1992   if (sym && !gfc_is_intrinsic (sym, 0, expr->where))
1993     {
1994       gfc_error ("There is no specific function for the generic '%s' at %L",
1995                  expr->symtree->n.sym->name, &expr->where);
1996       return FAILURE;
1997     }
1998
1999   m = gfc_intrinsic_func_interface (expr, 0);
2000   if (m == MATCH_YES)
2001     return SUCCESS;
2002   if (m == MATCH_NO)
2003     gfc_error ("Generic function '%s' at %L is not consistent with a "
2004                "specific intrinsic interface", expr->symtree->n.sym->name,
2005                &expr->where);
2006
2007   return FAILURE;
2008 }
2009
2010
2011 /* Resolve a function call known to be specific.  */
2012
2013 static match
2014 resolve_specific_f0 (gfc_symbol *sym, gfc_expr *expr)
2015 {
2016   match m;
2017
2018   if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
2019     {
2020       if (sym->attr.dummy)
2021         {
2022           sym->attr.proc = PROC_DUMMY;
2023           goto found;
2024         }
2025
2026       sym->attr.proc = PROC_EXTERNAL;
2027       goto found;
2028     }
2029
2030   if (sym->attr.proc == PROC_MODULE
2031       || sym->attr.proc == PROC_ST_FUNCTION
2032       || sym->attr.proc == PROC_INTERNAL)
2033     goto found;
2034
2035   if (sym->attr.intrinsic)
2036     {
2037       m = gfc_intrinsic_func_interface (expr, 1);
2038       if (m == MATCH_YES)
2039         return MATCH_YES;
2040       if (m == MATCH_NO)
2041         gfc_error ("Function '%s' at %L is INTRINSIC but is not compatible "
2042                    "with an intrinsic", sym->name, &expr->where);
2043
2044       return MATCH_ERROR;
2045     }
2046
2047   return MATCH_NO;
2048
2049 found:
2050   gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2051
2052   if (sym->result)
2053     expr->ts = sym->result->ts;
2054   else
2055     expr->ts = sym->ts;
2056   expr->value.function.name = sym->name;
2057   expr->value.function.esym = sym;
2058   if (sym->as != NULL)
2059     expr->rank = sym->as->rank;
2060
2061   return MATCH_YES;
2062 }
2063
2064
2065 static gfc_try
2066 resolve_specific_f (gfc_expr *expr)
2067 {
2068   gfc_symbol *sym;
2069   match m;
2070
2071   sym = expr->symtree->n.sym;
2072
2073   for (;;)
2074     {
2075       m = resolve_specific_f0 (sym, expr);
2076       if (m == MATCH_YES)
2077         return SUCCESS;
2078       if (m == MATCH_ERROR)
2079         return FAILURE;
2080
2081       if (sym->ns->parent == NULL)
2082         break;
2083
2084       gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2085
2086       if (sym == NULL)
2087         break;
2088     }
2089
2090   gfc_error ("Unable to resolve the specific function '%s' at %L",
2091              expr->symtree->n.sym->name, &expr->where);
2092
2093   return SUCCESS;
2094 }
2095
2096
2097 /* Resolve a procedure call not known to be generic nor specific.  */
2098
2099 static gfc_try
2100 resolve_unknown_f (gfc_expr *expr)
2101 {
2102   gfc_symbol *sym;
2103   gfc_typespec *ts;
2104
2105   sym = expr->symtree->n.sym;
2106
2107   if (sym->attr.dummy)
2108     {
2109       sym->attr.proc = PROC_DUMMY;
2110       expr->value.function.name = sym->name;
2111       goto set_type;
2112     }
2113
2114   /* See if we have an intrinsic function reference.  */
2115
2116   if (gfc_is_intrinsic (sym, 0, expr->where))
2117     {
2118       if (gfc_intrinsic_func_interface (expr, 1) == MATCH_YES)
2119         return SUCCESS;
2120       return FAILURE;
2121     }
2122
2123   /* The reference is to an external name.  */
2124
2125   sym->attr.proc = PROC_EXTERNAL;
2126   expr->value.function.name = sym->name;
2127   expr->value.function.esym = expr->symtree->n.sym;
2128
2129   if (sym->as != NULL)
2130     expr->rank = sym->as->rank;
2131
2132   /* Type of the expression is either the type of the symbol or the
2133      default type of the symbol.  */
2134
2135 set_type:
2136   gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
2137
2138   if (sym->ts.type != BT_UNKNOWN)
2139     expr->ts = sym->ts;
2140   else
2141     {
2142       ts = gfc_get_default_type (sym->name, sym->ns);
2143
2144       if (ts->type == BT_UNKNOWN)
2145         {
2146           gfc_error ("Function '%s' at %L has no IMPLICIT type",
2147                      sym->name, &expr->where);
2148           return FAILURE;
2149         }
2150       else
2151         expr->ts = *ts;
2152     }
2153
2154   return SUCCESS;
2155 }
2156
2157
2158 /* Return true, if the symbol is an external procedure.  */
2159 static bool
2160 is_external_proc (gfc_symbol *sym)
2161 {
2162   if (!sym->attr.dummy && !sym->attr.contained
2163         && !(sym->attr.intrinsic
2164               || gfc_is_intrinsic (sym, sym->attr.subroutine, sym->declared_at))
2165         && sym->attr.proc != PROC_ST_FUNCTION
2166         && !sym->attr.use_assoc
2167         && sym->name)
2168     return true;
2169
2170   return false;
2171 }
2172
2173
2174 /* Figure out if a function reference is pure or not.  Also set the name
2175    of the function for a potential error message.  Return nonzero if the
2176    function is PURE, zero if not.  */
2177 static int
2178 pure_stmt_function (gfc_expr *, gfc_symbol *);
2179
2180 static int
2181 pure_function (gfc_expr *e, const char **name)
2182 {
2183   int pure;
2184
2185   *name = NULL;
2186
2187   if (e->symtree != NULL
2188         && e->symtree->n.sym != NULL
2189         && e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2190     return pure_stmt_function (e, e->symtree->n.sym);
2191
2192   if (e->value.function.esym)
2193     {
2194       pure = gfc_pure (e->value.function.esym);
2195       *name = e->value.function.esym->name;
2196     }
2197   else if (e->value.function.isym)
2198     {
2199       pure = e->value.function.isym->pure
2200              || e->value.function.isym->elemental;
2201       *name = e->value.function.isym->name;
2202     }
2203   else
2204     {
2205       /* Implicit functions are not pure.  */
2206       pure = 0;
2207       *name = e->value.function.name;
2208     }
2209
2210   return pure;
2211 }
2212
2213
2214 static bool
2215 impure_stmt_fcn (gfc_expr *e, gfc_symbol *sym,
2216                  int *f ATTRIBUTE_UNUSED)
2217 {
2218   const char *name;
2219
2220   /* Don't bother recursing into other statement functions
2221      since they will be checked individually for purity.  */
2222   if (e->expr_type != EXPR_FUNCTION
2223         || !e->symtree
2224         || e->symtree->n.sym == sym
2225         || e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
2226     return false;
2227
2228   return pure_function (e, &name) ? false : true;
2229 }
2230
2231
2232 static int
2233 pure_stmt_function (gfc_expr *e, gfc_symbol *sym)
2234 {
2235   return gfc_traverse_expr (e, sym, impure_stmt_fcn, 0) ? 0 : 1;
2236 }
2237
2238
2239 static gfc_try
2240 is_scalar_expr_ptr (gfc_expr *expr)
2241 {
2242   gfc_try retval = SUCCESS;
2243   gfc_ref *ref;
2244   int start;
2245   int end;
2246
2247   /* See if we have a gfc_ref, which means we have a substring, array
2248      reference, or a component.  */
2249   if (expr->ref != NULL)
2250     {
2251       ref = expr->ref;
2252       while (ref->next != NULL)
2253         ref = ref->next;
2254
2255       switch (ref->type)
2256         {
2257         case REF_SUBSTRING:
2258           if (ref->u.ss.length != NULL 
2259               && ref->u.ss.length->length != NULL
2260               && ref->u.ss.start
2261               && ref->u.ss.start->expr_type == EXPR_CONSTANT 
2262               && ref->u.ss.end
2263               && ref->u.ss.end->expr_type == EXPR_CONSTANT)
2264             {
2265               start = (int) mpz_get_si (ref->u.ss.start->value.integer);
2266               end = (int) mpz_get_si (ref->u.ss.end->value.integer);
2267               if (end - start + 1 != 1)
2268                 retval = FAILURE;
2269             }
2270           else
2271             retval = FAILURE;
2272           break;
2273         case REF_ARRAY:
2274           if (ref->u.ar.type == AR_ELEMENT)
2275             retval = SUCCESS;
2276           else if (ref->u.ar.type == AR_FULL)
2277             {
2278               /* The user can give a full array if the array is of size 1.  */
2279               if (ref->u.ar.as != NULL
2280                   && ref->u.ar.as->rank == 1
2281                   && ref->u.ar.as->type == AS_EXPLICIT
2282                   && ref->u.ar.as->lower[0] != NULL
2283                   && ref->u.ar.as->lower[0]->expr_type == EXPR_CONSTANT
2284                   && ref->u.ar.as->upper[0] != NULL
2285                   && ref->u.ar.as->upper[0]->expr_type == EXPR_CONSTANT)
2286                 {
2287                   /* If we have a character string, we need to check if
2288                      its length is one.  */
2289                   if (expr->ts.type == BT_CHARACTER)
2290                     {
2291                       if (expr->ts.u.cl == NULL
2292                           || expr->ts.u.cl->length == NULL
2293                           || mpz_cmp_si (expr->ts.u.cl->length->value.integer, 1)
2294                           != 0)
2295                         retval = FAILURE;
2296                     }
2297                   else
2298                     {
2299                       /* We have constant lower and upper bounds.  If the
2300                          difference between is 1, it can be considered a
2301                          scalar.  */
2302                       start = (int) mpz_get_si
2303                                 (ref->u.ar.as->lower[0]->value.integer);
2304                       end = (int) mpz_get_si
2305                                 (ref->u.ar.as->upper[0]->value.integer);
2306                       if (end - start + 1 != 1)
2307                         retval = FAILURE;
2308                    }
2309                 }
2310               else
2311                 retval = FAILURE;
2312             }
2313           else
2314             retval = FAILURE;
2315           break;
2316         default:
2317           retval = SUCCESS;
2318           break;
2319         }
2320     }
2321   else if (expr->ts.type == BT_CHARACTER && expr->rank == 0)
2322     {
2323       /* Character string.  Make sure it's of length 1.  */
2324       if (expr->ts.u.cl == NULL
2325           || expr->ts.u.cl->length == NULL
2326           || mpz_cmp_si (expr->ts.u.cl->length->value.integer, 1) != 0)
2327         retval = FAILURE;
2328     }
2329   else if (expr->rank != 0)
2330     retval = FAILURE;
2331
2332   return retval;
2333 }
2334
2335
2336 /* Match one of the iso_c_binding functions (c_associated or c_loc)
2337    and, in the case of c_associated, set the binding label based on
2338    the arguments.  */
2339
2340 static gfc_try
2341 gfc_iso_c_func_interface (gfc_symbol *sym, gfc_actual_arglist *args,
2342                           gfc_symbol **new_sym)
2343 {
2344   char name[GFC_MAX_SYMBOL_LEN + 1];
2345   char binding_label[GFC_MAX_BINDING_LABEL_LEN + 1];
2346   int optional_arg = 0, is_pointer = 0;
2347   gfc_try retval = SUCCESS;
2348   gfc_symbol *args_sym;
2349   gfc_typespec *arg_ts;
2350
2351   if (args->expr->expr_type == EXPR_CONSTANT
2352       || args->expr->expr_type == EXPR_OP
2353       || args->expr->expr_type == EXPR_NULL)
2354     {
2355       gfc_error ("Argument to '%s' at %L is not a variable",
2356                  sym->name, &(args->expr->where));
2357       return FAILURE;
2358     }
2359
2360   args_sym = args->expr->symtree->n.sym;
2361
2362   /* The typespec for the actual arg should be that stored in the expr
2363      and not necessarily that of the expr symbol (args_sym), because
2364      the actual expression could be a part-ref of the expr symbol.  */
2365   arg_ts = &(args->expr->ts);
2366
2367   is_pointer = gfc_is_data_pointer (args->expr);
2368     
2369   if (sym->intmod_sym_id == ISOCBINDING_ASSOCIATED)
2370     {
2371       /* If the user gave two args then they are providing something for
2372          the optional arg (the second cptr).  Therefore, set the name and
2373          binding label to the c_associated for two cptrs.  Otherwise,
2374          set c_associated to expect one cptr.  */
2375       if (args->next)
2376         {
2377           /* two args.  */
2378           sprintf (name, "%s_2", sym->name);
2379           sprintf (binding_label, "%s_2", sym->binding_label);
2380           optional_arg = 1;
2381         }
2382       else
2383         {
2384           /* one arg.  */
2385           sprintf (name, "%s_1", sym->name);
2386           sprintf (binding_label, "%s_1", sym->binding_label);
2387           optional_arg = 0;
2388         }
2389
2390       /* Get a new symbol for the version of c_associated that
2391          will get called.  */
2392       *new_sym = get_iso_c_sym (sym, name, binding_label, optional_arg);
2393     }
2394   else if (sym->intmod_sym_id == ISOCBINDING_LOC
2395            || sym->intmod_sym_id == ISOCBINDING_FUNLOC)
2396     {
2397       sprintf (name, "%s", sym->name);
2398       sprintf (binding_label, "%s", sym->binding_label);
2399
2400       /* Error check the call.  */
2401       if (args->next != NULL)
2402         {
2403           gfc_error_now ("More actual than formal arguments in '%s' "
2404                          "call at %L", name, &(args->expr->where));
2405           retval = FAILURE;
2406         }
2407       else if (sym->intmod_sym_id == ISOCBINDING_LOC)
2408         {
2409           /* Make sure we have either the target or pointer attribute.  */
2410           if (!args_sym->attr.target && !is_pointer)
2411             {
2412               gfc_error_now ("Parameter '%s' to '%s' at %L must be either "
2413                              "a TARGET or an associated pointer",
2414                              args_sym->name,
2415                              sym->name, &(args->expr->where));
2416               retval = FAILURE;
2417             }
2418
2419           /* See if we have interoperable type and type param.  */
2420           if (verify_c_interop (arg_ts) == SUCCESS
2421               || gfc_check_any_c_kind (arg_ts) == SUCCESS)
2422             {
2423               if (args_sym->attr.target == 1)
2424                 {
2425                   /* Case 1a, section 15.1.2.5, J3/04-007: variable that
2426                      has the target attribute and is interoperable.  */
2427                   /* Case 1b, section 15.1.2.5, J3/04-007: allocated
2428                      allocatable variable that has the TARGET attribute and
2429                      is not an array of zero size.  */
2430                   if (args_sym->attr.allocatable == 1)
2431                     {
2432                       if (args_sym->attr.dimension != 0 
2433                           && (args_sym->as && args_sym->as->rank == 0))
2434                         {
2435                           gfc_error_now ("Allocatable variable '%s' used as a "
2436                                          "parameter to '%s' at %L must not be "
2437                                          "an array of zero size",
2438                                          args_sym->name, sym->name,
2439                                          &(args->expr->where));
2440                           retval = FAILURE;
2441                         }
2442                     }
2443                   else
2444                     {
2445                       /* A non-allocatable target variable with C
2446                          interoperable type and type parameters must be
2447                          interoperable.  */
2448                       if (args_sym && args_sym->attr.dimension)
2449                         {
2450                           if (args_sym->as->type == AS_ASSUMED_SHAPE)
2451                             {
2452                               gfc_error ("Assumed-shape array '%s' at %L "
2453                                          "cannot be an argument to the "
2454                                          "procedure '%s' because "
2455                                          "it is not C interoperable",
2456                                          args_sym->name,
2457                                          &(args->expr->where), sym->name);
2458                               retval = FAILURE;
2459                             }
2460                           else if (args_sym->as->type == AS_DEFERRED)
2461                             {
2462                               gfc_error ("Deferred-shape array '%s' at %L "
2463                                          "cannot be an argument to the "
2464                                          "procedure '%s' because "
2465                                          "it is not C interoperable",
2466                                          args_sym->name,
2467                                          &(args->expr->where), sym->name);
2468                               retval = FAILURE;
2469                             }
2470                         }
2471                               
2472                       /* Make sure it's not a character string.  Arrays of
2473                          any type should be ok if the variable is of a C
2474                          interoperable type.  */
2475                       if (arg_ts->type == BT_CHARACTER)
2476                         if (arg_ts->u.cl != NULL
2477                             && (arg_ts->u.cl->length == NULL
2478                                 || arg_ts->u.cl->length->expr_type
2479                                    != EXPR_CONSTANT
2480                                 || mpz_cmp_si
2481                                     (arg_ts->u.cl->length->value.integer, 1)
2482                                    != 0)
2483                             && is_scalar_expr_ptr (args->expr) != SUCCESS)
2484                           {
2485                             gfc_error_now ("CHARACTER argument '%s' to '%s' "
2486                                            "at %L must have a length of 1",
2487                                            args_sym->name, sym->name,
2488                                            &(args->expr->where));
2489                             retval = FAILURE;
2490                           }
2491                     }
2492                 }
2493               else if (is_pointer
2494                        && is_scalar_expr_ptr (args->expr) != SUCCESS)
2495                 {
2496                   /* Case 1c, section 15.1.2.5, J3/04-007: an associated
2497                      scalar pointer.  */
2498                   gfc_error_now ("Argument '%s' to '%s' at %L must be an "
2499                                  "associated scalar POINTER", args_sym->name,
2500                                  sym->name, &(args->expr->where));
2501                   retval = FAILURE;
2502                 }
2503             }
2504           else
2505             {
2506               /* The parameter is not required to be C interoperable.  If it
2507                  is not C interoperable, it must be a nonpolymorphic scalar
2508                  with no length type parameters.  It still must have either
2509                  the pointer or target attribute, and it can be
2510                  allocatable (but must be allocated when c_loc is called).  */
2511               if (args->expr->rank != 0 
2512                   && is_scalar_expr_ptr (args->expr) != SUCCESS)
2513                 {
2514                   gfc_error_now ("Parameter '%s' to '%s' at %L must be a "
2515                                  "scalar", args_sym->name, sym->name,
2516                                  &(args->expr->where));
2517                   retval = FAILURE;
2518                 }
2519               else if (arg_ts->type == BT_CHARACTER 
2520                        && is_scalar_expr_ptr (args->expr) != SUCCESS)
2521                 {
2522                   gfc_error_now ("CHARACTER argument '%s' to '%s' at "
2523                                  "%L must have a length of 1",
2524                                  args_sym->name, sym->name,
2525                                  &(args->expr->where));
2526                   retval = FAILURE;
2527                 }
2528             }
2529         }
2530       else if (sym->intmod_sym_id == ISOCBINDING_FUNLOC)
2531         {
2532           if (args_sym->attr.flavor != FL_PROCEDURE)
2533             {
2534               /* TODO: Update this error message to allow for procedure
2535                  pointers once they are implemented.  */
2536               gfc_error_now ("Parameter '%s' to '%s' at %L must be a "
2537                              "procedure",
2538                              args_sym->name, sym->name,
2539                              &(args->expr->where));
2540               retval = FAILURE;
2541             }
2542           else if (args_sym->attr.is_bind_c != 1)
2543             {
2544               gfc_error_now ("Parameter '%s' to '%s' at %L must be "
2545                              "BIND(C)",
2546                              args_sym->name, sym->name,
2547                              &(args->expr->where));
2548               retval = FAILURE;
2549             }
2550         }
2551       
2552       /* for c_loc/c_funloc, the new symbol is the same as the old one */
2553       *new_sym = sym;
2554     }
2555   else
2556     {
2557       gfc_internal_error ("gfc_iso_c_func_interface(): Unhandled "
2558                           "iso_c_binding function: '%s'!\n", sym->name);
2559     }
2560
2561   return retval;
2562 }
2563
2564
2565 /* Resolve a function call, which means resolving the arguments, then figuring
2566    out which entity the name refers to.  */
2567 /* TODO: Check procedure arguments so that an INTENT(IN) isn't passed
2568    to INTENT(OUT) or INTENT(INOUT).  */
2569
2570 static gfc_try
2571 resolve_function (gfc_expr *expr)
2572 {
2573   gfc_actual_arglist *arg;
2574   gfc_symbol *sym;
2575   const char *name;
2576   gfc_try t;
2577   int temp;
2578   procedure_type p = PROC_INTRINSIC;
2579   bool no_formal_args;
2580
2581   sym = NULL;
2582   if (expr->symtree)
2583     sym = expr->symtree->n.sym;
2584
2585   /* If this is a procedure pointer component, it has already been resolved.  */
2586   if (gfc_is_proc_ptr_comp (expr, NULL))
2587     return SUCCESS;
2588   
2589   if (sym && sym->attr.intrinsic
2590       && resolve_intrinsic (sym, &expr->where) == FAILURE)
2591     return FAILURE;
2592
2593   if (sym && (sym->attr.flavor == FL_VARIABLE || sym->attr.subroutine))
2594     {
2595       gfc_error ("'%s' at %L is not a function", sym->name, &expr->where);
2596       return FAILURE;
2597     }
2598
2599   /* If this ia a deferred TBP with an abstract interface (which may
2600      of course be referenced), expr->value.function.esym will be set.  */
2601   if (sym && sym->attr.abstract && !expr->value.function.esym)
2602     {
2603       gfc_error ("ABSTRACT INTERFACE '%s' must not be referenced at %L",
2604                  sym->name, &expr->where);
2605       return FAILURE;
2606     }
2607
2608   /* Switch off assumed size checking and do this again for certain kinds
2609      of procedure, once the procedure itself is resolved.  */
2610   need_full_assumed_size++;
2611
2612   if (expr->symtree && expr->symtree->n.sym)
2613     p = expr->symtree->n.sym->attr.proc;
2614
2615   if (expr->value.function.isym && expr->value.function.isym->inquiry)
2616     inquiry_argument = true;
2617   no_formal_args = sym && is_external_proc (sym) && sym->formal == NULL;
2618
2619   if (resolve_actual_arglist (expr->value.function.actual,
2620                               p, no_formal_args) == FAILURE)
2621     {
2622       inquiry_argument = false;
2623       return FAILURE;
2624     }
2625
2626   inquiry_argument = false;
2627  
2628   /* Need to setup the call to the correct c_associated, depending on
2629      the number of cptrs to user gives to compare.  */
2630   if (sym && sym->attr.is_iso_c == 1)
2631     {
2632       if (gfc_iso_c_func_interface (sym, expr->value.function.actual, &sym)
2633           == FAILURE)
2634         return FAILURE;
2635       
2636       /* Get the symtree for the new symbol (resolved func).
2637          the old one will be freed later, when it's no longer used.  */
2638       gfc_find_sym_tree (sym->name, sym->ns, 1, &(expr->symtree));
2639     }
2640   
2641   /* Resume assumed_size checking.  */
2642   need_full_assumed_size--;
2643
2644   /* If the procedure is external, check for usage.  */
2645   if (sym && is_external_proc (sym))
2646     resolve_global_procedure (sym, &expr->where,
2647                               &expr->value.function.actual, 0);
2648
2649   if (sym && sym->ts.type == BT_CHARACTER
2650       && sym->ts.u.cl
2651       && sym->ts.u.cl->length == NULL
2652       && !sym->attr.dummy
2653       && expr->value.function.esym == NULL
2654       && !sym->attr.contained)
2655     {
2656       /* Internal procedures are taken care of in resolve_contained_fntype.  */
2657       gfc_error ("Function '%s' is declared CHARACTER(*) and cannot "
2658                  "be used at %L since it is not a dummy argument",
2659                  sym->name, &expr->where);
2660       return FAILURE;
2661     }
2662
2663   /* See if function is already resolved.  */
2664
2665   if (expr->value.function.name != NULL)
2666     {
2667       if (expr->ts.type == BT_UNKNOWN)
2668         expr->ts = sym->ts;
2669       t = SUCCESS;
2670     }
2671   else
2672     {
2673       /* Apply the rules of section 14.1.2.  */
2674
2675       switch (procedure_kind (sym))
2676         {
2677         case PTYPE_GENERIC:
2678           t = resolve_generic_f (expr);
2679           break;
2680
2681         case PTYPE_SPECIFIC:
2682           t = resolve_specific_f (expr);
2683           break;
2684
2685         case PTYPE_UNKNOWN:
2686           t = resolve_unknown_f (expr);
2687           break;
2688
2689         default:
2690           gfc_internal_error ("resolve_function(): bad function type");
2691         }
2692     }
2693
2694   /* If the expression is still a function (it might have simplified),
2695      then we check to see if we are calling an elemental function.  */
2696
2697   if (expr->expr_type != EXPR_FUNCTION)
2698     return t;
2699
2700   temp = need_full_assumed_size;
2701   need_full_assumed_size = 0;
2702
2703   if (resolve_elemental_actual (expr, NULL) == FAILURE)
2704     return FAILURE;
2705
2706   if (omp_workshare_flag
2707       && expr->value.function.esym
2708       && ! gfc_elemental (expr->value.function.esym))
2709     {
2710       gfc_error ("User defined non-ELEMENTAL function '%s' at %L not allowed "
2711                  "in WORKSHARE construct", expr->value.function.esym->name,
2712                  &expr->where);
2713       t = FAILURE;
2714     }
2715
2716 #define GENERIC_ID expr->value.function.isym->id
2717   else if (expr->value.function.actual != NULL
2718            && expr->value.function.isym != NULL
2719            && GENERIC_ID != GFC_ISYM_LBOUND
2720            && GENERIC_ID != GFC_ISYM_LEN
2721            && GENERIC_ID != GFC_ISYM_LOC
2722            && GENERIC_ID != GFC_ISYM_PRESENT)
2723     {
2724       /* Array intrinsics must also have the last upper bound of an
2725          assumed size array argument.  UBOUND and SIZE have to be
2726          excluded from the check if the second argument is anything
2727          than a constant.  */
2728
2729       for (arg = expr->value.function.actual; arg; arg = arg->next)
2730         {
2731           if ((GENERIC_ID == GFC_ISYM_UBOUND || GENERIC_ID == GFC_ISYM_SIZE)
2732               && arg->next != NULL && arg->next->expr)
2733             {
2734               if (arg->next->expr->expr_type != EXPR_CONSTANT)
2735                 break;
2736
2737               if (arg->next->name && strncmp(arg->next->name, "kind", 4) == 0)
2738                 break;
2739
2740               if ((int)mpz_get_si (arg->next->expr->value.integer)
2741                         < arg->expr->rank)
2742                 break;
2743             }
2744
2745           if (arg->expr != NULL
2746               && arg->expr->rank > 0
2747               && resolve_assumed_size_actual (arg->expr))
2748             return FAILURE;
2749         }
2750     }
2751 #undef GENERIC_ID
2752
2753   need_full_assumed_size = temp;
2754   name = NULL;
2755
2756   if (!pure_function (expr, &name) && name)
2757     {
2758       if (forall_flag)
2759         {
2760           gfc_error ("reference to non-PURE function '%s' at %L inside a "
2761                      "FORALL %s", name, &expr->where,
2762                      forall_flag == 2 ? "mask" : "block");
2763           t = FAILURE;
2764         }
2765       else if (gfc_pure (NULL))
2766         {
2767           gfc_error ("Function reference to '%s' at %L is to a non-PURE "
2768                      "procedure within a PURE procedure", name, &expr->where);
2769           t = FAILURE;
2770         }
2771     }
2772
2773   /* Functions without the RECURSIVE attribution are not allowed to
2774    * call themselves.  */
2775   if (expr->value.function.esym && !expr->value.function.esym->attr.recursive)
2776     {
2777       gfc_symbol *esym;
2778       esym = expr->value.function.esym;
2779
2780       if (is_illegal_recursion (esym, gfc_current_ns))
2781       {
2782         if (esym->attr.entry && esym->ns->entries)
2783           gfc_error ("ENTRY '%s' at %L cannot be called recursively, as"
2784                      " function '%s' is not RECURSIVE",
2785                      esym->name, &expr->where, esym->ns->entries->sym->name);
2786         else
2787           gfc_error ("Function '%s' at %L cannot be called recursively, as it"
2788                      " is not RECURSIVE", esym->name, &expr->where);
2789
2790         t = FAILURE;
2791       }
2792     }
2793
2794   /* Character lengths of use associated functions may contains references to
2795      symbols not referenced from the current program unit otherwise.  Make sure
2796      those symbols are marked as referenced.  */
2797
2798   if (expr->ts.type == BT_CHARACTER && expr->value.function.esym
2799       && expr->value.function.esym->attr.use_assoc)
2800     {
2801       gfc_expr_set_symbols_referenced (expr->ts.u.cl->length);
2802     }
2803
2804   if (t == SUCCESS
2805         && !((expr->value.function.esym
2806                 && expr->value.function.esym->attr.elemental)
2807                         ||
2808              (expr->value.function.isym
2809                 && expr->value.function.isym->elemental)))
2810     find_noncopying_intrinsics (expr->value.function.esym,
2811                                 expr->value.function.actual);
2812
2813   /* Make sure that the expression has a typespec that works.  */
2814   if (expr->ts.type == BT_UNKNOWN)
2815     {
2816       if (expr->symtree->n.sym->result
2817             && expr->symtree->n.sym->result->ts.type != BT_UNKNOWN
2818             && !expr->symtree->n.sym->result->attr.proc_pointer)
2819         expr->ts = expr->symtree->n.sym->result->ts;
2820     }
2821
2822   return t;
2823 }
2824
2825
2826 /************* Subroutine resolution *************/
2827
2828 static void
2829 pure_subroutine (gfc_code *c, gfc_symbol *sym)
2830 {
2831   if (gfc_pure (sym))
2832     return;
2833
2834   if (forall_flag)
2835     gfc_error ("Subroutine call to '%s' in FORALL block at %L is not PURE",
2836                sym->name, &c->loc);
2837   else if (gfc_pure (NULL))
2838     gfc_error ("Subroutine call to '%s' at %L is not PURE", sym->name,
2839                &c->loc);
2840 }
2841
2842
2843 static match
2844 resolve_generic_s0 (gfc_code *c, gfc_symbol *sym)
2845 {
2846   gfc_symbol *s;
2847
2848   if (sym->attr.generic)
2849     {
2850       s = gfc_search_interface (sym->generic, 1, &c->ext.actual);
2851       if (s != NULL)
2852         {
2853           c->resolved_sym = s;
2854           pure_subroutine (c, s);
2855           return MATCH_YES;
2856         }
2857
2858       /* TODO: Need to search for elemental references in generic interface.  */
2859     }
2860
2861   if (sym->attr.intrinsic)
2862     return gfc_intrinsic_sub_interface (c, 0);
2863
2864   return MATCH_NO;
2865 }
2866
2867
2868 static gfc_try
2869 resolve_generic_s (gfc_code *c)
2870 {
2871   gfc_symbol *sym;
2872   match m;
2873
2874   sym = c->symtree->n.sym;
2875
2876   for (;;)
2877     {
2878       m = resolve_generic_s0 (c, sym);
2879       if (m == MATCH_YES)
2880         return SUCCESS;
2881       else if (m == MATCH_ERROR)
2882         return FAILURE;
2883
2884 generic:
2885       if (sym->ns->parent == NULL)
2886         break;
2887       gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
2888
2889       if (sym == NULL)
2890         break;
2891       if (!generic_sym (sym))
2892         goto generic;
2893     }
2894
2895   /* Last ditch attempt.  See if the reference is to an intrinsic
2896      that possesses a matching interface.  14.1.2.4  */
2897   sym = c->symtree->n.sym;
2898
2899   if (!gfc_is_intrinsic (sym, 1, c->loc))
2900     {
2901       gfc_error ("There is no specific subroutine for the generic '%s' at %L",
2902                  sym->name, &c->loc);
2903       return FAILURE;
2904     }
2905
2906   m = gfc_intrinsic_sub_interface (c, 0);
2907   if (m == MATCH_YES)
2908     return SUCCESS;
2909   if (m == MATCH_NO)
2910     gfc_error ("Generic subroutine '%s' at %L is not consistent with an "
2911                "intrinsic subroutine interface", sym->name, &c->loc);
2912
2913   return FAILURE;
2914 }
2915
2916
2917 /* Set the name and binding label of the subroutine symbol in the call
2918    expression represented by 'c' to include the type and kind of the
2919    second parameter.  This function is for resolving the appropriate
2920    version of c_f_pointer() and c_f_procpointer().  For example, a
2921    call to c_f_pointer() for a default integer pointer could have a
2922    name of c_f_pointer_i4.  If no second arg exists, which is an error
2923    for these two functions, it defaults to the generic symbol's name
2924    and binding label.  */
2925
2926 static void
2927 set_name_and_label (gfc_code *c, gfc_symbol *sym,
2928                     char *name, char *binding_label)
2929 {
2930   gfc_expr *arg = NULL;
2931   char type;
2932   int kind;
2933
2934   /* The second arg of c_f_pointer and c_f_procpointer determines
2935      the type and kind for the procedure name.  */
2936   arg = c->ext.actual->next->expr;
2937
2938   if (arg != NULL)
2939     {
2940       /* Set up the name to have the given symbol's name,
2941          plus the type and kind.  */
2942       /* a derived type is marked with the type letter 'u' */
2943       if (arg->ts.type == BT_DERIVED)
2944         {
2945           type = 'd';
2946           kind = 0; /* set the kind as 0 for now */
2947         }
2948       else
2949         {
2950           type = gfc_type_letter (arg->ts.type);
2951           kind = arg->ts.kind;
2952         }
2953
2954       if (arg->ts.type == BT_CHARACTER)
2955         /* Kind info for character strings not needed.  */
2956         kind = 0;
2957
2958       sprintf (name, "%s_%c%d", sym->name, type, kind);
2959       /* Set up the binding label as the given symbol's label plus
2960          the type and kind.  */
2961       sprintf (binding_label, "%s_%c%d", sym->binding_label, type, kind);
2962     }
2963   else
2964     {
2965       /* If the second arg is missing, set the name and label as
2966          was, cause it should at least be found, and the missing
2967          arg error will be caught by compare_parameters().  */
2968       sprintf (name, "%s", sym->name);
2969       sprintf (binding_label, "%s", sym->binding_label);
2970     }
2971    
2972   return;
2973 }
2974
2975
2976 /* Resolve a generic version of the iso_c_binding procedure given
2977    (sym) to the specific one based on the type and kind of the
2978    argument(s).  Currently, this function resolves c_f_pointer() and
2979    c_f_procpointer based on the type and kind of the second argument
2980    (FPTR).  Other iso_c_binding procedures aren't specially handled.
2981    Upon successfully exiting, c->resolved_sym will hold the resolved
2982    symbol.  Returns MATCH_ERROR if an error occurred; MATCH_YES
2983    otherwise.  */
2984
2985 match
2986 gfc_iso_c_sub_interface (gfc_code *c, gfc_symbol *sym)
2987 {
2988   gfc_symbol *new_sym;
2989   /* this is fine, since we know the names won't use the max */
2990   char name[GFC_MAX_SYMBOL_LEN + 1];
2991   char binding_label[GFC_MAX_BINDING_LABEL_LEN + 1];
2992   /* default to success; will override if find error */
2993   match m = MATCH_YES;
2994
2995   /* Make sure the actual arguments are in the necessary order (based on the 
2996      formal args) before resolving.  */
2997   gfc_procedure_use (sym, &c->ext.actual, &(c->loc));
2998
2999   if ((sym->intmod_sym_id == ISOCBINDING_F_POINTER) ||
3000       (sym->intmod_sym_id == ISOCBINDING_F_PROCPOINTER))
3001     {
3002       set_name_and_label (c, sym, name, binding_label);
3003       
3004       if (sym->intmod_sym_id == ISOCBINDING_F_POINTER)
3005         {
3006           if (c->ext.actual != NULL && c->ext.actual->next != NULL)
3007             {
3008               /* Make sure we got a third arg if the second arg has non-zero
3009                  rank.  We must also check that the type and rank are
3010                  correct since we short-circuit this check in
3011                  gfc_procedure_use() (called above to sort actual args).  */
3012               if (c->ext.actual->next->expr->rank != 0)
3013                 {
3014                   if(c->ext.actual->next->next == NULL 
3015                      || c->ext.actual->next->next->expr == NULL)
3016                     {
3017                       m = MATCH_ERROR;
3018                       gfc_error ("Missing SHAPE parameter for call to %s "
3019                                  "at %L", sym->name, &(c->loc));
3020                     }
3021                   else if (c->ext.actual->next->next->expr->ts.type
3022                            != BT_INTEGER
3023                            || c->ext.actual->next->next->expr->rank != 1)
3024                     {
3025                       m = MATCH_ERROR;
3026                       gfc_error ("SHAPE parameter for call to %s at %L must "
3027                                  "be a rank 1 INTEGER array", sym->name,
3028                                  &(c->loc));
3029                     }
3030                 }
3031             }
3032         }
3033       
3034       if (m != MATCH_ERROR)
3035         {
3036           /* the 1 means to add the optional arg to formal list */
3037           new_sym = get_iso_c_sym (sym, name, binding_label, 1);
3038          
3039           /* for error reporting, say it's declared where the original was */
3040           new_sym->declared_at = sym->declared_at;
3041         }
3042     }
3043   else
3044     {
3045       /* no differences for c_loc or c_funloc */
3046       new_sym = sym;
3047     }
3048
3049   /* set the resolved symbol */
3050   if (m != MATCH_ERROR)
3051     c->resolved_sym = new_sym;
3052   else
3053     c->resolved_sym = sym;
3054   
3055   return m;
3056 }
3057
3058
3059 /* Resolve a subroutine call known to be specific.  */
3060
3061 static match
3062 resolve_specific_s0 (gfc_code *c, gfc_symbol *sym)
3063 {
3064   match m;
3065
3066   if(sym->attr.is_iso_c)
3067     {
3068       m = gfc_iso_c_sub_interface (c,sym);
3069       return m;
3070     }
3071   
3072   if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
3073     {
3074       if (sym->attr.dummy)
3075         {
3076           sym->attr.proc = PROC_DUMMY;
3077           goto found;
3078         }
3079
3080       sym->attr.proc = PROC_EXTERNAL;
3081       goto found;
3082     }
3083
3084   if (sym->attr.proc == PROC_MODULE || sym->attr.proc == PROC_INTERNAL)
3085     goto found;
3086
3087   if (sym->attr.intrinsic)
3088     {
3089       m = gfc_intrinsic_sub_interface (c, 1);
3090       if (m == MATCH_YES)
3091         return MATCH_YES;
3092       if (m == MATCH_NO)
3093         gfc_error ("Subroutine '%s' at %L is INTRINSIC but is not compatible "
3094                    "with an intrinsic", sym->name, &c->loc);
3095
3096       return MATCH_ERROR;
3097     }
3098
3099   return MATCH_NO;
3100
3101 found:
3102   gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3103
3104   c->resolved_sym = sym;
3105   pure_subroutine (c, sym);
3106
3107   return MATCH_YES;
3108 }
3109
3110
3111 static gfc_try
3112 resolve_specific_s (gfc_code *c)
3113 {
3114   gfc_symbol *sym;
3115   match m;
3116
3117   sym = c->symtree->n.sym;
3118
3119   for (;;)
3120     {
3121       m = resolve_specific_s0 (c, sym);
3122       if (m == MATCH_YES)
3123         return SUCCESS;
3124       if (m == MATCH_ERROR)
3125         return FAILURE;
3126
3127       if (sym->ns->parent == NULL)
3128         break;
3129
3130       gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
3131
3132       if (sym == NULL)
3133         break;
3134     }
3135
3136   sym = c->symtree->n.sym;
3137   gfc_error ("Unable to resolve the specific subroutine '%s' at %L",
3138              sym->name, &c->loc);
3139
3140   return FAILURE;
3141 }
3142
3143
3144 /* Resolve a subroutine call not known to be generic nor specific.  */
3145
3146 static gfc_try
3147 resolve_unknown_s (gfc_code *c)
3148 {
3149   gfc_symbol *sym;
3150
3151   sym = c->symtree->n.sym;
3152
3153   if (sym->attr.dummy)
3154     {
3155       sym->attr.proc = PROC_DUMMY;
3156       goto found;
3157     }
3158
3159   /* See if we have an intrinsic function reference.  */
3160
3161   if (gfc_is_intrinsic (sym, 1, c->loc))
3162     {
3163       if (gfc_intrinsic_sub_interface (c, 1) == MATCH_YES)
3164         return SUCCESS;
3165       return FAILURE;
3166     }
3167
3168   /* The reference is to an external name.  */
3169
3170 found:
3171   gfc_procedure_use (sym, &c->ext.actual, &c->loc);
3172
3173   c->resolved_sym = sym;
3174
3175   pure_subroutine (c, sym);
3176
3177   return SUCCESS;
3178 }
3179
3180
3181 /* Resolve a subroutine call.  Although it was tempting to use the same code
3182    for functions, subroutines and functions are stored differently and this
3183    makes things awkward.  */
3184
3185 static gfc_try
3186 resolve_call (gfc_code *c)
3187 {
3188   gfc_try t;
3189   procedure_type ptype = PROC_INTRINSIC;
3190   gfc_symbol *csym, *sym;
3191   bool no_formal_args;
3192
3193   csym = c->symtree ? c->symtree->n.sym : NULL;
3194
3195   if (csym && csym->ts.type != BT_UNKNOWN)
3196     {
3197       gfc_error ("'%s' at %L has a type, which is not consistent with "
3198                  "the CALL at %L", csym->name, &csym->declared_at, &c->loc);
3199       return FAILURE;
3200     }
3201
3202   if (csym && gfc_current_ns->parent && csym->ns != gfc_current_ns)
3203     {
3204       gfc_symtree *st;
3205       gfc_find_sym_tree (csym->name, gfc_current_ns, 1, &st);
3206       sym = st ? st->n.sym : NULL;
3207       if (sym && csym != sym
3208               && sym->ns == gfc_current_ns
3209               && sym->attr.flavor == FL_PROCEDURE
3210               && sym->attr.contained)
3211         {
3212           sym->refs++;
3213           if (csym->attr.generic)
3214             c->symtree->n.sym = sym;
3215           else
3216             c->symtree = st;
3217           csym = c->symtree->n.sym;
3218         }
3219     }
3220
3221   /* If this ia a deferred TBP with an abstract interface
3222      (which may of course be referenced), c->expr1 will be set.  */
3223   if (csym && csym->attr.abstract && !c->expr1)
3224     {
3225       gfc_error ("ABSTRACT INTERFACE '%s' must not be referenced at %L",
3226                  csym->name, &c->loc);
3227       return FAILURE;
3228     }
3229
3230   /* Subroutines without the RECURSIVE attribution are not allowed to
3231    * call themselves.  */
3232   if (csym && is_illegal_recursion (csym, gfc_current_ns))
3233     {
3234       if (csym->attr.entry && csym->ns->entries)
3235         gfc_error ("ENTRY '%s' at %L cannot be called recursively, as"
3236                    " subroutine '%s' is not RECURSIVE",
3237                    csym->name, &c->loc, csym->ns->entries->sym->name);
3238       else
3239         gfc_error ("SUBROUTINE '%s' at %L cannot be called recursively, as it"
3240                    " is not RECURSIVE", csym->name, &c->loc);
3241
3242       t = FAILURE;
3243     }
3244
3245   /* Switch off assumed size checking and do this again for certain kinds
3246      of procedure, once the procedure itself is resolved.  */
3247   need_full_assumed_size++;
3248
3249   if (csym)
3250     ptype = csym->attr.proc;
3251
3252   no_formal_args = csym && is_external_proc (csym) && csym->formal == NULL;
3253   if (resolve_actual_arglist (c->ext.actual, ptype,
3254                               no_formal_args) == FAILURE)
3255     return FAILURE;
3256
3257   /* Resume assumed_size checking.  */
3258   need_full_assumed_size--;
3259
3260   /* If external, check for usage.  */
3261   if (csym && is_external_proc (csym))
3262     resolve_global_procedure (csym, &c->loc, &c->ext.actual, 1);
3263
3264   t = SUCCESS;
3265   if (c->resolved_sym == NULL)
3266     {
3267       c->resolved_isym = NULL;
3268       switch (procedure_kind (csym))
3269         {
3270         case PTYPE_GENERIC:
3271           t = resolve_generic_s (c);
3272           break;
3273
3274         case PTYPE_SPECIFIC:
3275           t = resolve_specific_s (c);
3276           break;
3277
3278         case PTYPE_UNKNOWN:
3279           t = resolve_unknown_s (c);
3280           break;
3281
3282         default:
3283           gfc_internal_error ("resolve_subroutine(): bad function type");
3284         }
3285     }
3286
3287   /* Some checks of elemental subroutine actual arguments.  */
3288   if (resolve_elemental_actual (NULL, c) == FAILURE)
3289     return FAILURE;
3290
3291   if (t == SUCCESS && !(c->resolved_sym && c->resolved_sym->attr.elemental))
3292     find_noncopying_intrinsics (c->resolved_sym, c->ext.actual);
3293   return t;
3294 }
3295
3296
3297 /* Compare the shapes of two arrays that have non-NULL shapes.  If both
3298    op1->shape and op2->shape are non-NULL return SUCCESS if their shapes
3299    match.  If both op1->shape and op2->shape are non-NULL return FAILURE
3300    if their shapes do not match.  If either op1->shape or op2->shape is
3301    NULL, return SUCCESS.  */
3302
3303 static gfc_try
3304 compare_shapes (gfc_expr *op1, gfc_expr *op2)
3305 {
3306   gfc_try t;
3307   int i;
3308
3309   t = SUCCESS;
3310
3311   if (op1->shape != NULL && op2->shape != NULL)
3312     {
3313       for (i = 0; i < op1->rank; i++)
3314         {
3315           if (mpz_cmp (op1->shape[i], op2->shape[i]) != 0)
3316            {
3317              gfc_error ("Shapes for operands at %L and %L are not conformable",
3318                          &op1->where, &op2->where);
3319              t = FAILURE;
3320              break;
3321            }
3322         }
3323     }
3324
3325   return t;
3326 }
3327
3328
3329 /* Resolve an operator expression node.  This can involve replacing the
3330    operation with a user defined function call.  */
3331
3332 static gfc_try
3333 resolve_operator (gfc_expr *e)
3334 {
3335   gfc_expr *op1, *op2;
3336   char msg[200];
3337   bool dual_locus_error;
3338   gfc_try t;
3339
3340   /* Resolve all subnodes-- give them types.  */
3341
3342   switch (e->value.op.op)
3343     {
3344     default:
3345       if (gfc_resolve_expr (e->value.op.op2) == FAILURE)
3346         return FAILURE;
3347
3348     /* Fall through...  */
3349
3350     case INTRINSIC_NOT:
3351     case INTRINSIC_UPLUS:
3352     case INTRINSIC_UMINUS:
3353     case INTRINSIC_PARENTHESES:
3354       if (gfc_resolve_expr (e->value.op.op1) == FAILURE)
3355         return FAILURE;
3356       break;
3357     }
3358
3359   /* Typecheck the new node.  */
3360
3361   op1 = e->value.op.op1;
3362   op2 = e->value.op.op2;
3363   dual_locus_error = false;
3364
3365   if ((op1 && op1->expr_type == EXPR_NULL)
3366       || (op2 && op2->expr_type == EXPR_NULL))
3367     {
3368       sprintf (msg, _("Invalid context for NULL() pointer at %%L"));
3369       goto bad_op;
3370     }
3371
3372   switch (e->value.op.op)
3373     {
3374     case INTRINSIC_UPLUS:
3375     case INTRINSIC_UMINUS:
3376       if (op1->ts.type == BT_INTEGER
3377           || op1->ts.type == BT_REAL
3378           || op1->ts.type == BT_COMPLEX)
3379         {
3380           e->ts = op1->ts;
3381           break;
3382         }
3383
3384       sprintf (msg, _("Operand of unary numeric operator '%s' at %%L is %s"),
3385                gfc_op2string (e->value.op.op), gfc_typename (&e->ts));
3386       goto bad_op;
3387
3388     case INTRINSIC_PLUS:
3389     case INTRINSIC_MINUS:
3390     case INTRINSIC_TIMES:
3391     case INTRINSIC_DIVIDE:
3392     case INTRINSIC_POWER:
3393       if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
3394         {
3395           gfc_type_convert_binary (e, 1);
3396           break;
3397         }
3398
3399       sprintf (msg,
3400                _("Operands of binary numeric operator '%s' at %%L are %s/%s"),
3401                gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
3402                gfc_typename (&op2->ts));
3403       goto bad_op;
3404
3405     case INTRINSIC_CONCAT:
3406       if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
3407           && op1->ts.kind == op2->ts.kind)
3408         {
3409           e->ts.type = BT_CHARACTER;
3410           e->ts.kind = op1->ts.kind;
3411           break;
3412         }
3413
3414       sprintf (msg,
3415                _("Operands of string concatenation operator at %%L are %s/%s"),
3416                gfc_typename (&op1->ts), gfc_typename (&op2->ts));
3417       goto bad_op;
3418
3419     case INTRINSIC_AND:
3420     case INTRINSIC_OR:
3421     case INTRINSIC_EQV:
3422     case INTRINSIC_NEQV:
3423       if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
3424         {
3425           e->ts.type = BT_LOGICAL;
3426           e->ts.kind = gfc_kind_max (op1, op2);
3427           if (op1->ts.kind < e->ts.kind)
3428             gfc_convert_type (op1, &e->ts, 2);
3429           else if (op2->ts.kind < e->ts.kind)
3430             gfc_convert_type (op2, &e->ts, 2);
3431           break;
3432         }
3433
3434       sprintf (msg, _("Operands of logical operator '%s' at %%L are %s/%s"),
3435                gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
3436                gfc_typename (&op2->ts));
3437
3438       goto bad_op;
3439
3440     case INTRINSIC_NOT:
3441       if (op1->ts.type == BT_LOGICAL)
3442         {
3443           e->ts.type = BT_LOGICAL;
3444           e->ts.kind = op1->ts.kind;
3445           break;
3446         }
3447
3448       sprintf (msg, _("Operand of .not. operator at %%L is %s"),
3449                gfc_typename (&op1->ts));
3450       goto bad_op;
3451
3452     case INTRINSIC_GT:
3453     case INTRINSIC_GT_OS:
3454     case INTRINSIC_GE:
3455     case INTRINSIC_GE_OS:
3456     case INTRINSIC_LT:
3457     case INTRINSIC_LT_OS:
3458     case INTRINSIC_LE:
3459     case INTRINSIC_LE_OS:
3460       if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
3461         {
3462           strcpy (msg, _("COMPLEX quantities cannot be compared at %L"));
3463           goto bad_op;
3464         }
3465
3466       /* Fall through...  */
3467
3468     case INTRINSIC_EQ:
3469     case INTRINSIC_EQ_OS:
3470     case INTRINSIC_NE:
3471     case INTRINSIC_NE_OS:
3472       if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
3473           && op1->ts.kind == op2->ts.kind)
3474         {
3475           e->ts.type = BT_LOGICAL;
3476           e->ts.kind = gfc_default_logical_kind;
3477           break;
3478         }
3479
3480       if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
3481         {
3482           gfc_type_convert_binary (e, 1);
3483
3484           e->ts.type = BT_LOGICAL;
3485           e->ts.kind = gfc_default_logical_kind;
3486           break;
3487         }
3488
3489       if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
3490         sprintf (msg,
3491                  _("Logicals at %%L must be compared with %s instead of %s"),
3492                  (e->value.op.op == INTRINSIC_EQ 
3493                   || e->value.op.op == INTRINSIC_EQ_OS)
3494                  ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
3495       else
3496         sprintf (msg,
3497                  _("Operands of comparison operator '%s' at %%L are %s/%s"),
3498                  gfc_op2string (e->value.op.op), gfc_typename (&op1->ts),
3499                  gfc_typename (&op2->ts));
3500
3501       goto bad_op;
3502
3503     case INTRINSIC_USER:
3504       if (e->value.op.uop->op == NULL)
3505         sprintf (msg, _("Unknown operator '%s' at %%L"), e->value.op.uop->name);
3506       else if (op2 == NULL)
3507         sprintf (msg, _("Operand of user operator '%s' at %%L is %s"),
3508                  e->value.op.uop->name, gfc_typename (&op1->ts));
3509       else
3510         sprintf (msg, _("Operands of user operator '%s' at %%L are %s/%s"),
3511                  e->value.op.uop->name, gfc_typename (&op1->ts),
3512                  gfc_typename (&op2->ts));
3513
3514       goto bad_op;
3515
3516     case INTRINSIC_PARENTHESES:
3517       e->ts = op1->ts;
3518       if (e->ts.type == BT_CHARACTER)
3519         e->ts.u.cl = op1->ts.u.cl;
3520       break;
3521
3522     default:
3523       gfc_internal_error ("resolve_operator(): Bad intrinsic");
3524     }
3525
3526   /* Deal with arrayness of an operand through an operator.  */
3527
3528   t = SUCCESS;
3529
3530   switch (e->value.op.op)
3531     {
3532     case INTRINSIC_PLUS:
3533     case INTRINSIC_MINUS:
3534     case INTRINSIC_TIMES:
3535     case INTRINSIC_DIVIDE:
3536     case INTRINSIC_POWER:
3537     case INTRINSIC_CONCAT:
3538     case INTRINSIC_AND:
3539     case INTRINSIC_OR:
3540     case INTRINSIC_EQV:
3541     case INTRINSIC_NEQV:
3542     case INTRINSIC_EQ:
3543     case INTRINSIC_EQ_OS:
3544     case INTRINSIC_NE:
3545     case INTRINSIC_NE_OS:
3546     case INTRINSIC_GT:
3547     case INTRINSIC_GT_OS:
3548     case INTRINSIC_GE:
3549     case INTRINSIC_GE_OS:
3550     case INTRINSIC_LT:
3551     case INTRINSIC_LT_OS:
3552     case INTRINSIC_LE:
3553     case INTRINSIC_LE_OS:
3554
3555       if (op1->rank == 0 && op2->rank == 0)
3556         e->rank = 0;
3557
3558       if (op1->rank == 0 && op2->rank != 0)
3559         {
3560           e->rank = op2->rank;
3561
3562           if (e->shape == NULL)
3563             e->shape = gfc_copy_shape (op2->shape, op2->rank);
3564         }
3565
3566       if (op1->rank != 0 && op2->rank == 0)
3567         {
3568           e->rank = op1->rank;
3569
3570           if (e->shape == NULL)
3571             e->shape = gfc_copy_shape (op1->shape, op1->rank);
3572         }
3573
3574       if (op1->rank != 0 && op2->rank != 0)
3575         {
3576           if (op1->rank == op2->rank)
3577             {
3578               e->rank = op1->rank;
3579               if (e->shape == NULL)
3580                 {
3581                   t = compare_shapes(op1, op2);
3582                   if (t == FAILURE)
3583                     e->shape = NULL;
3584                   else
3585                 e->shape = gfc_copy_shape (op1->shape, op1->rank);
3586                 }
3587             }
3588           else
3589             {
3590               /* Allow higher level expressions to work.  */
3591               e->rank = 0;
3592
3593               /* Try user-defined operators, and otherwise throw an error.  */
3594               dual_locus_error = true;
3595               sprintf (msg,
3596                        _("Inconsistent ranks for operator at %%L and %%L"));
3597               goto bad_op;
3598             }
3599         }
3600
3601       break;
3602
3603     case INTRINSIC_PARENTHESES:
3604     case INTRINSIC_NOT:
3605     case INTRINSIC_UPLUS:
3606     case INTRINSIC_UMINUS:
3607       /* Simply copy arrayness attribute */
3608       e->rank = op1->rank;
3609
3610       if (e->shape == NULL)
3611         e->shape = gfc_copy_shape (op1->shape, op1->rank);
3612
3613       break;
3614
3615     default:
3616       break;
3617     }
3618
3619   /* Attempt to simplify the expression.  */
3620   if (t == SUCCESS)
3621     {
3622       t = gfc_simplify_expr (e, 0);
3623       /* Some calls do not succeed in simplification and return FAILURE
3624          even though there is no error; e.g. variable references to
3625          PARAMETER arrays.  */
3626       if (!gfc_is_constant_expr (e))
3627         t = SUCCESS;
3628     }
3629   return t;
3630
3631 bad_op:
3632
3633   {
3634     bool real_error;
3635     if (gfc_extend_expr (e, &real_error) == SUCCESS)
3636       return SUCCESS;
3637
3638     if (real_error)
3639       return FAILURE;
3640   }
3641
3642   if (dual_locus_error)
3643     gfc_error (msg, &op1->where, &op2->where);
3644   else
3645     gfc_error (msg, &e->where);
3646
3647   return FAILURE;
3648 }
3649
3650
3651 /************** Array resolution subroutines **************/
3652
3653 typedef enum
3654 { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN }
3655 comparison;
3656
3657 /* Compare two integer expressions.  */
3658
3659 static comparison
3660 compare_bound (gfc_expr *a, gfc_expr *b)
3661 {
3662   int i;
3663
3664   if (a == NULL || a->expr_type != EXPR_CONSTANT
3665       || b == NULL || b->expr_type != EXPR_CONSTANT)
3666     return CMP_UNKNOWN;
3667
3668   /* If either of the types isn't INTEGER, we must have
3669      raised an error earlier.  */
3670
3671   if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
3672     return CMP_UNKNOWN;
3673
3674   i = mpz_cmp (a->value.integer, b->value.integer);
3675
3676   if (i < 0)
3677     return CMP_LT;
3678   if (i > 0)
3679     return CMP_GT;
3680   return CMP_EQ;
3681 }
3682
3683
3684 /* Compare an integer expression with an integer.  */
3685
3686 static comparison
3687 compare_bound_int (gfc_expr *a, int b)
3688 {
3689   int i;
3690
3691   if (a == NULL || a->expr_type != EXPR_CONSTANT)
3692     return CMP_UNKNOWN;
3693
3694   if (a->ts.type != BT_INTEGER)
3695     gfc_internal_error ("compare_bound_int(): Bad expression");
3696
3697   i = mpz_cmp_si (a->value.integer, b);
3698
3699   if (i < 0)
3700     return CMP_LT;
3701   if (i > 0)
3702     return CMP_GT;
3703   return CMP_EQ;
3704 }
3705
3706
3707 /* Compare an integer expression with a mpz_t.  */
3708
3709 static comparison
3710 compare_bound_mpz_t (gfc_expr *a, mpz_t b)
3711 {
3712   int i;
3713
3714   if (a == NULL || a->expr_type != EXPR_CONSTANT)
3715     return CMP_UNKNOWN;
3716
3717   if (a->ts.type != BT_INTEGER)
3718     gfc_internal_error ("compare_bound_int(): Bad expression");
3719
3720   i = mpz_cmp (a->value.integer, b);
3721
3722   if (i < 0)
3723     return CMP_LT;
3724   if (i > 0)
3725     return CMP_GT;
3726   return CMP_EQ;
3727 }
3728
3729
3730 /* Compute the last value of a sequence given by a triplet.  
3731    Return 0 if it wasn't able to compute the last value, or if the
3732    sequence if empty, and 1 otherwise.  */
3733
3734 static int
3735 compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
3736                                 gfc_expr *stride, mpz_t last)
3737 {
3738   mpz_t rem;
3739
3740   if (start == NULL || start->expr_type != EXPR_CONSTANT
3741       || end == NULL || end->expr_type != EXPR_CONSTANT
3742       || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
3743     return 0;
3744
3745   if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
3746       || (stride != NULL && stride->ts.type != BT_INTEGER))
3747     return 0;
3748
3749   if (stride == NULL || compare_bound_int(stride, 1) == CMP_EQ)
3750     {
3751       if (compare_bound (start, end) == CMP_GT)
3752         return 0;
3753       mpz_set (last, end->value.integer);
3754       return 1;
3755     }
3756
3757   if (compare_bound_int (stride, 0) == CMP_GT)
3758     {
3759       /* Stride is positive */
3760       if (mpz_cmp (start->value.integer, end->value.integer) > 0)
3761         return 0;
3762     }
3763   else
3764     {
3765       /* Stride is negative */
3766       if (mpz_cmp (start->value.integer, end->value.integer) < 0)
3767         return 0;
3768     }
3769
3770   mpz_init (rem);
3771   mpz_sub (rem, end->value.integer, start->value.integer);
3772   mpz_tdiv_r (rem, rem, stride->value.integer);
3773   mpz_sub (last, end->value.integer, rem);
3774   mpz_clear (rem);
3775
3776   return 1;
3777 }
3778
3779
3780 /* Compare a single dimension of an array reference to the array
3781    specification.  */
3782
3783 static gfc_try
3784 check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
3785 {
3786   mpz_t last_value;
3787
3788   if (ar->dimen_type[i] == DIMEN_STAR)
3789     {
3790       gcc_assert (ar->stride[i] == NULL);
3791       /* This implies [*] as [*:] and [*:3] are not possible.  */
3792       if (ar->start[i] == NULL)
3793         {
3794           gcc_assert (ar->end[i] == NULL);
3795           return SUCCESS;
3796         }
3797     }
3798
3799 /* Given start, end and stride values, calculate the minimum and
3800    maximum referenced indexes.  */
3801
3802   switch (ar->dimen_type[i])
3803     {
3804     case DIMEN_VECTOR:
3805       break;
3806
3807     case DIMEN_STAR:
3808     case DIMEN_ELEMENT:
3809       if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
3810         {
3811           if (i < as->rank)
3812             gfc_warning ("Array reference at %L is out of bounds "
3813                          "(%ld < %ld) in dimension %d", &ar->c_where[i],
3814                          mpz_get_si (ar->start[i]->value.integer),
3815                          mpz_get_si (as->lower[i]->value.integer), i+1);
3816           else
3817             gfc_warning ("Array reference at %L is out of bounds "
3818                          "(%ld < %ld) in codimension %d", &ar->c_where[i],
3819                          mpz_get_si (ar->start[i]->value.integer),
3820                          mpz_get_si (as->lower[i]->value.integer),
3821                          i + 1 - as->rank);
3822           return SUCCESS;
3823         }
3824       if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
3825         {
3826           if (i < as->rank)
3827             gfc_warning ("Array reference at %L is out of bounds "
3828                          "(%ld > %ld) in dimension %d", &ar->c_where[i],
3829                          mpz_get_si (ar->start[i]->value.integer),
3830                          mpz_get_si (as->upper[i]->value.integer), i+1);
3831           else
3832             gfc_warning ("Array reference at %L is out of bounds "
3833                          "(%ld > %ld) in codimension %d", &ar->c_where[i],
3834                          mpz_get_si (ar->start[i]->value.integer),
3835                          mpz_get_si (as->upper[i]->value.integer),
3836                          i + 1 - as->rank);
3837           return SUCCESS;
3838         }
3839
3840       break;
3841
3842     case DIMEN_RANGE:
3843       {
3844 #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
3845 #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
3846
3847         comparison comp_start_end = compare_bound (AR_START, AR_END);
3848
3849         /* Check for zero stride, which is not allowed.  */
3850         if (compare_bound_int (ar->stride[i], 0) == CMP_EQ)
3851           {
3852             gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
3853             return FAILURE;
3854           }
3855
3856         /* if start == len || (stride > 0 && start < len)
3857                            || (stride < 0 && start > len),
3858            then the array section contains at least one element.  In this
3859            case, there is an out-of-bounds access if
3860            (start < lower || start > upper).  */
3861         if (compare_bound (AR_START, AR_END) == CMP_EQ
3862             || ((compare_bound_int (ar->stride[i], 0) == CMP_GT
3863                  || ar->stride[i] == NULL) && comp_start_end == CMP_LT)
3864             || (compare_bound_int (ar->stride[i], 0) == CMP_LT
3865                 && comp_start_end == CMP_GT))
3866           {
3867             if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
3868               {
3869                 gfc_warning ("Lower array reference at %L is out of bounds "
3870                        "(%ld < %ld) in dimension %d", &ar->c_where[i],
3871                        mpz_get_si (AR_START->value.integer),
3872                        mpz_get_si (as->lower[i]->value.integer), i+1);
3873                 return SUCCESS;
3874               }
3875             if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
3876               {
3877                 gfc_warning ("Lower array reference at %L is out of bounds "
3878                        "(%ld > %ld) in dimension %d", &ar->c_where[i],
3879                        mpz_get_si (AR_START->value.integer),
3880                        mpz_get_si (as->upper[i]->value.integer), i+1);
3881                 return SUCCESS;
3882               }
3883           }
3884
3885         /* If we can compute the highest index of the array section,
3886            then it also has to be between lower and upper.  */
3887         mpz_init (last_value);
3888         if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
3889                                             last_value))
3890           {
3891             if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
3892               {
3893                 gfc_warning ("Upper array reference at %L is out of bounds "
3894                        "(%ld < %ld) in dimension %d", &ar->c_where[i],
3895                        mpz_get_si (last_value),
3896                        mpz_get_si (as->lower[i]->value.integer), i+1);
3897                 mpz_clear (last_value);
3898                 return SUCCESS;
3899               }
3900             if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
3901               {
3902                 gfc_warning ("Upper array reference at %L is out of bounds "
3903                        "(%ld > %ld) in dimension %d", &ar->c_where[i],
3904                        mpz_get_si (last_value),
3905                        mpz_get_si (as->upper[i]->value.integer), i+1);
3906                 mpz_clear (last_value);
3907                 return SUCCESS;
3908               }
3909           }
3910         mpz_clear (last_value);
3911
3912 #undef AR_START
3913 #undef AR_END
3914       }
3915       break;
3916
3917     default:
3918       gfc_internal_error ("check_dimension(): Bad array reference");
3919     }
3920
3921   return SUCCESS;
3922 }
3923
3924
3925 /* Compare an array reference with an array specification.  */
3926
3927 static gfc_try
3928 compare_spec_to_ref (gfc_array_ref *ar)
3929 {
3930   gfc_array_spec *as;
3931   int i;
3932
3933   as = ar->as;
3934   i = as->rank - 1;
3935   /* TODO: Full array sections are only allowed as actual parameters.  */
3936   if (as->type == AS_ASSUMED_SIZE
3937       && (/*ar->type == AR_FULL
3938           ||*/ (ar->type == AR_SECTION
3939               && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
3940     {
3941       gfc_error ("Rightmost upper bound of assumed size array section "
3942                  "not specified at %L", &ar->where);
3943       return FAILURE;
3944     }
3945
3946   if (ar->type == AR_FULL)
3947     return SUCCESS;
3948
3949   if (as->rank != ar->dimen)
3950     {
3951       gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
3952                  &ar->where, ar->dimen, as->rank);
3953       return FAILURE;
3954     }
3955
3956   /* ar->codimen == 0 is a local array.  */
3957   if (as->corank != ar->codimen && ar->codimen != 0)
3958     {
3959       gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
3960                  &ar->where, ar->codimen, as->corank);
3961       return FAILURE;
3962     }
3963
3964   for (i = 0; i < as->rank; i++)
3965     if (check_dimension (i, ar, as) == FAILURE)
3966       return FAILURE;
3967
3968   /* Local access has no coarray spec.  */
3969   if (ar->codimen != 0)
3970     for (i = as->rank; i < as->rank + as->corank; i++)
3971       {
3972         if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate)
3973           {
3974             gfc_error ("Coindex of codimension %d must be a scalar at %L",
3975                        i + 1 - as->rank, &ar->where);
3976             return FAILURE;
3977           }
3978         if (check_dimension (i, ar, as) == FAILURE)
3979           return FAILURE;
3980       }
3981
3982   return SUCCESS;
3983 }
3984
3985
3986 /* Resolve one part of an array index.  */
3987
3988 static gfc_try
3989 gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
3990                      int force_index_integer_kind)
3991 {
3992   gfc_typespec ts;
3993
3994   if (index == NULL)
3995     return SUCCESS;
3996
3997   if (gfc_resolve_expr (index) == FAILURE)
3998     return FAILURE;
3999
4000   if (check_scalar && index->rank != 0)
4001     {
4002       gfc_error ("Array index at %L must be scalar", &index->where);
4003       return FAILURE;
4004     }
4005
4006   if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
4007     {
4008       gfc_error ("Array index at %L must be of INTEGER type, found %s",
4009                  &index->where, gfc_basic_typename (index->ts.type));
4010       return FAILURE;
4011     }
4012
4013   if (index->ts.type == BT_REAL)
4014     if (gfc_notify_std (GFC_STD_LEGACY, "Extension: REAL array index at %L",
4015                         &index->where) == FAILURE)
4016       return FAILURE;
4017
4018   if ((index->ts.kind != gfc_index_integer_kind
4019        && force_index_integer_kind)
4020       || index->ts.type != BT_INTEGER)
4021     {
4022       gfc_clear_ts (&ts);
4023       ts.type = BT_INTEGER;
4024       ts.kind = gfc_index_integer_kind;
4025
4026       gfc_convert_type_warn (index, &ts, 2, 0);
4027     }
4028
4029   return SUCCESS;
4030 }
4031
4032 /* Resolve one part of an array index.  */
4033
4034 gfc_try
4035 gfc_resolve_index (gfc_expr *index, int check_scalar)
4036 {
4037   return gfc_resolve_index_1 (index, check_scalar, 1);
4038 }
4039
4040 /* Resolve a dim argument to an intrinsic function.  */
4041
4042 gfc_try
4043 gfc_resolve_dim_arg (gfc_expr *dim)
4044 {
4045   if (dim == NULL)
4046     return SUCCESS;
4047
4048   if (gfc_resolve_expr (dim) == FAILURE)
4049     return FAILURE;
4050
4051   if (dim->rank != 0)
4052     {
4053       gfc_error ("Argument dim at %L must be scalar", &dim->where);
4054       return FAILURE;
4055
4056     }
4057
4058   if (dim->ts.type != BT_INTEGER)
4059     {
4060       gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
4061       return FAILURE;
4062     }
4063
4064   if (dim->ts.kind != gfc_index_integer_kind)
4065     {
4066       gfc_typespec ts;
4067
4068       gfc_clear_ts (&ts);
4069       ts.type = BT_INTEGER;
4070       ts.kind = gfc_index_integer_kind;
4071
4072       gfc_convert_type_warn (dim, &ts, 2, 0);
4073     }
4074
4075   return SUCCESS;
4076 }
4077
4078 /* Given an expression that contains array references, update those array
4079    references to point to the right array specifications.  While this is
4080    filled in during matching, this information is difficult to save and load
4081    in a module, so we take care of it here.
4082
4083    The idea here is that the original array reference comes from the
4084    base symbol.  We traverse the list of reference structures, setting
4085    the stored reference to references.  Component references can
4086    provide an additional array specification.  */
4087
4088 static void
4089 find_array_spec (gfc_expr *e)
4090 {
4091   gfc_array_spec *as;
4092   gfc_component *c;
4093   gfc_symbol *derived;
4094   gfc_ref *ref;
4095
4096   if (e->symtree->n.sym->ts.type == BT_CLASS)
4097     as = e->symtree->n.sym->ts.u.derived->components->as;
4098   else
4099     as = e->symtree->n.sym->as;
4100   derived = NULL;
4101
4102   for (ref = e->ref; ref; ref = ref->next)
4103     switch (ref->type)
4104       {
4105       case REF_ARRAY:
4106         if (as == NULL)
4107           gfc_internal_error ("find_array_spec(): Missing spec");
4108
4109         ref->u.ar.as = as;
4110         as = NULL;
4111         break;
4112
4113       case REF_COMPONENT:
4114         if (derived == NULL)
4115           derived = e->symtree->n.sym->ts.u.derived;
4116
4117         if (derived->attr.is_class)
4118           derived = derived->components->ts.u.derived;
4119
4120         c = derived->components;
4121
4122         for (; c; c = c->next)
4123           if (c == ref->u.c.component)
4124             {
4125               /* Track the sequence of component references.  */
4126               if (c->ts.type == BT_DERIVED)
4127                 derived = c->ts.u.derived;
4128               break;
4129             }
4130
4131         if (c == NULL)
4132           gfc_internal_error ("find_array_spec(): Component not found");
4133
4134         if (c->attr.dimension)
4135           {
4136             if (as != NULL)
4137               gfc_internal_error ("find_array_spec(): unused as(1)");
4138             as = c->as;
4139           }
4140
4141         break;
4142
4143       case REF_SUBSTRING:
4144         break;
4145       }
4146
4147   if (as != NULL)
4148     gfc_internal_error ("find_array_spec(): unused as(2)");
4149 }
4150
4151
4152 /* Resolve an array reference.  */
4153
4154 static gfc_try
4155 resolve_array_ref (gfc_array_ref *ar)
4156 {
4157   int i, check_scalar;
4158   gfc_expr *e;
4159
4160   for (i = 0; i < ar->dimen + ar->codimen; i++)
4161     {
4162       check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
4163
4164       /* Do not force gfc_index_integer_kind for the start.  We can
4165          do fine with any integer kind.  This avoids temporary arrays
4166          created for indexing with a vector.  */
4167       if (gfc_resolve_index_1 (ar->start[i], check_scalar, 0) == FAILURE)
4168         return FAILURE;
4169       if (gfc_resolve_index (ar->end[i], check_scalar) == FAILURE)
4170         return FAILURE;
4171       if (gfc_resolve_index (ar->stride[i], check_scalar) == FAILURE)
4172         return FAILURE;
4173
4174       e = ar->start[i];
4175
4176       if (ar->dimen_type[i] == DIMEN_UNKNOWN)
4177         switch (e->rank)
4178           {
4179           case 0:
4180             ar->dimen_type[i] = DIMEN_ELEMENT;
4181             break;
4182
4183           case 1:
4184             ar->dimen_type[i] = DIMEN_VECTOR;
4185             if (e->expr_type == EXPR_VARIABLE
4186                 && e->symtree->n.sym->ts.type == BT_DERIVED)
4187               ar->start[i] = gfc_get_parentheses (e);
4188             break;
4189
4190           default:
4191             gfc_error ("Array index at %L is an array of rank %d",
4192                        &ar->c_where[i], e->rank);
4193             return FAILURE;
4194           }
4195     }
4196
4197   if (ar->type == AR_FULL && ar->as->rank == 0)
4198     ar->type = AR_ELEMENT;
4199
4200   /* If the reference type is unknown, figure out what kind it is.  */
4201
4202   if (ar->type == AR_UNKNOWN)
4203     {
4204       ar->type = AR_ELEMENT;
4205       for (i = 0; i < ar->dimen; i++)
4206         if (ar->dimen_type[i] == DIMEN_RANGE
4207             || ar->dimen_type[i] == DIMEN_VECTOR)
4208           {
4209             ar->type = AR_SECTION;
4210             break;
4211           }
4212     }
4213
4214   if (!ar->as->cray_pointee && compare_spec_to_ref (ar) == FAILURE)
4215     return FAILURE;
4216
4217   return SUCCESS;
4218 }
4219
4220
4221 static gfc_try
4222 resolve_substring (gfc_ref *ref)
4223 {
4224   int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
4225
4226   if (ref->u.ss.start != NULL)
4227     {
4228       if (gfc_resolve_expr (ref->u.ss.start) == FAILURE)
4229         return FAILURE;
4230
4231       if (ref->u.ss.start->ts.type != BT_INTEGER)
4232         {
4233           gfc_error ("Substring start index at %L must be of type INTEGER",
4234                      &ref->u.ss.start->where);
4235           return FAILURE;
4236         }
4237
4238       if (ref->u.ss.start->rank != 0)
4239         {
4240           gfc_error ("Substring start index at %L must be scalar",
4241                      &ref->u.ss.start->where);
4242           return FAILURE;
4243         }
4244
4245       if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
4246           && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4247               || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4248         {
4249           gfc_error ("Substring start index at %L is less than one",
4250                      &ref->u.ss.start->where);
4251           return FAILURE;
4252         }
4253     }
4254
4255   if (ref->u.ss.end != NULL)
4256     {
4257       if (gfc_resolve_expr (ref->u.ss.end) == FAILURE)
4258         return FAILURE;
4259
4260       if (ref->u.ss.end->ts.type != BT_INTEGER)
4261         {
4262           gfc_error ("Substring end index at %L must be of type INTEGER",
4263                      &ref->u.ss.end->where);
4264           return FAILURE;
4265         }
4266
4267       if (ref->u.ss.end->rank != 0)
4268         {
4269           gfc_error ("Substring end index at %L must be scalar",
4270                      &ref->u.ss.end->where);
4271           return FAILURE;
4272         }
4273
4274       if (ref->u.ss.length != NULL
4275           && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
4276           && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4277               || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4278         {
4279           gfc_error ("Substring end index at %L exceeds the string length",
4280                      &ref->u.ss.start->where);
4281           return FAILURE;
4282         }
4283
4284       if (compare_bound_mpz_t (ref->u.ss.end,
4285                                gfc_integer_kinds[k].huge) == CMP_GT
4286           && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
4287               || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
4288         {
4289           gfc_error ("Substring end index at %L is too large",
4290                      &ref->u.ss.end->where);
4291           return FAILURE;
4292         }
4293     }
4294
4295   return SUCCESS;
4296 }
4297
4298
4299 /* This function supplies missing substring charlens.  */
4300
4301 void
4302 gfc_resolve_substring_charlen (gfc_expr *e)
4303 {
4304   gfc_ref *char_ref;
4305   gfc_expr *start, *end;
4306
4307   for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
4308     if (char_ref->type == REF_SUBSTRING)
4309       break;
4310
4311   if (!char_ref)
4312     return;
4313
4314   gcc_assert (char_ref->next == NULL);
4315
4316   if (e->ts.u.cl)
4317     {
4318       if (e->ts.u.cl->length)
4319         gfc_free_expr (e->ts.u.cl->length);
4320       else if (e->expr_type == EXPR_VARIABLE
4321                  && e->symtree->n.sym->attr.dummy)
4322         return;
4323     }
4324
4325   e->ts.type = BT_CHARACTER;
4326   e->ts.kind = gfc_default_character_kind;
4327
4328   if (!e->ts.u.cl)
4329     e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4330
4331   if (char_ref->u.ss.start)
4332     start = gfc_copy_expr (char_ref->u.ss.start);
4333   else
4334     start = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
4335
4336   if (char_ref->u.ss.end)
4337     end = gfc_copy_expr (char_ref->u.ss.end);
4338   else if (e->expr_type == EXPR_VARIABLE)
4339     end = gfc_copy_expr (e->symtree->n.sym->ts.u.cl->length);
4340   else
4341     end = NULL;
4342
4343   if (!start || !end)
4344     return;
4345
4346   /* Length = (end - start +1).  */
4347   e->ts.u.cl->length = gfc_subtract (end, start);
4348   e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
4349                                 gfc_get_int_expr (gfc_default_integer_kind,
4350                                                   NULL, 1));
4351
4352   e->ts.u.cl->length->ts.type = BT_INTEGER;
4353   e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
4354
4355   /* Make sure that the length is simplified.  */
4356   gfc_simplify_expr (e->ts.u.cl->length, 1);
4357   gfc_resolve_expr (e->ts.u.cl->length);
4358 }
4359
4360
4361 /* Resolve subtype references.  */
4362
4363 static gfc_try
4364 resolve_ref (gfc_expr *expr)
4365 {
4366   int current_part_dimension, n_components, seen_part_dimension;
4367   gfc_ref *ref;
4368
4369   for (ref = expr->ref; ref; ref = ref->next)
4370     if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
4371       {
4372         find_array_spec (expr);
4373         break;
4374       }
4375
4376   for (ref = expr->ref; ref; ref = ref->next)
4377     switch (ref->type)
4378       {
4379       case REF_ARRAY:
4380         if (resolve_array_ref (&ref->u.ar) == FAILURE)
4381           return FAILURE;
4382         break;
4383
4384       case REF_COMPONENT:
4385         break;
4386
4387       case REF_SUBSTRING:
4388         resolve_substring (ref);
4389         break;
4390       }
4391
4392   /* Check constraints on part references.  */
4393
4394   current_part_dimension = 0;
4395   seen_part_dimension = 0;
4396   n_components = 0;
4397
4398   for (ref = expr->ref; ref; ref = ref->next)
4399     {
4400       switch (ref->type)
4401         {
4402         case REF_ARRAY:
4403           switch (ref->u.ar.type)
4404             {
4405             case AR_FULL:
4406               /* Coarray scalar.  */
4407               if (ref->u.ar.as->rank == 0)
4408                 {
4409                   current_part_dimension = 0;
4410                   break;
4411                 }
4412               /* Fall through.  */
4413             case AR_SECTION:
4414               current_part_dimension = 1;
4415               break;
4416
4417             case AR_ELEMENT:
4418               current_part_dimension = 0;
4419               break;
4420
4421             case AR_UNKNOWN:
4422               gfc_internal_error ("resolve_ref(): Bad array reference");
4423             }
4424
4425           break;
4426
4427         case REF_COMPONENT:
4428           if (current_part_dimension || seen_part_dimension)
4429             {
4430               /* F03:C614.  */
4431               if (ref->u.c.component->attr.pointer
4432                   || ref->u.c.component->attr.proc_pointer)
4433                 {
4434                   gfc_error ("Component to the right of a part reference "
4435                              "with nonzero rank must not have the POINTER "
4436                              "attribute at %L", &expr->where);
4437                   return FAILURE;
4438                 }
4439               else if (ref->u.c.component->attr.allocatable)
4440                 {
4441                   gfc_error ("Component to the right of a part reference "
4442                              "with nonzero rank must not have the ALLOCATABLE "
4443                              "attribute at %L", &expr->where);
4444                   return FAILURE;
4445                 }
4446             }
4447
4448           n_components++;
4449           break;
4450
4451         case REF_SUBSTRING:
4452           break;
4453         }
4454
4455       if (((ref->type == REF_COMPONENT && n_components > 1)
4456            || ref->next == NULL)
4457           && current_part_dimension
4458           && seen_part_dimension)
4459         {
4460           gfc_error ("Two or more part references with nonzero rank must "
4461                      "not be specified at %L", &expr->where);
4462           return FAILURE;
4463         }
4464
4465       if (ref->type == REF_COMPONENT)
4466         {
4467           if (current_part_dimension)
4468             seen_part_dimension = 1;
4469
4470           /* reset to make sure */
4471           current_part_dimension = 0;
4472         }
4473     }
4474
4475   return SUCCESS;
4476 }
4477
4478
4479 /* Given an expression, determine its shape.  This is easier than it sounds.
4480    Leaves the shape array NULL if it is not possible to determine the shape.  */
4481
4482 static void
4483 expression_shape (gfc_expr *e)
4484 {
4485   mpz_t array[GFC_MAX_DIMENSIONS];
4486   int i;
4487
4488   if (e->rank == 0 || e->shape != NULL)
4489     return;
4490
4491   for (i = 0; i < e->rank; i++)
4492     if (gfc_array_dimen_size (e, i, &array[i]) == FAILURE)
4493       goto fail;
4494
4495   e->shape = gfc_get_shape (e->rank);
4496
4497   memcpy (e->shape, array, e->rank * sizeof (mpz_t));
4498
4499   return;
4500
4501 fail:
4502   for (i--; i >= 0; i--)
4503     mpz_clear (array[i]);
4504 }
4505
4506
4507 /* Given a variable expression node, compute the rank of the expression by
4508    examining the base symbol and any reference structures it may have.  */
4509
4510 static void
4511 expression_rank (gfc_expr *e)
4512 {
4513   gfc_ref *ref;
4514   int i, rank;
4515
4516   /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
4517      could lead to serious confusion...  */
4518   gcc_assert (e->expr_type != EXPR_COMPCALL);
4519
4520   if (e->ref == NULL)
4521     {
4522       if (e->expr_type == EXPR_ARRAY)
4523         goto done;
4524       /* Constructors can have a rank different from one via RESHAPE().  */
4525
4526       if (e->symtree == NULL)
4527         {
4528           e->rank = 0;
4529           goto done;
4530         }
4531
4532       e->rank = (e->symtree->n.sym->as == NULL)
4533                 ? 0 : e->symtree->n.sym->as->rank;
4534       goto done;
4535     }
4536
4537   rank = 0;
4538
4539   for (ref = e->ref; ref; ref = ref->next)
4540     {
4541       if (ref->type != REF_ARRAY)
4542         continue;
4543
4544       if (ref->u.ar.type == AR_FULL)
4545         {
4546           rank = ref->u.ar.as->rank;
4547           break;
4548         }
4549
4550       if (ref->u.ar.type == AR_SECTION)
4551         {
4552           /* Figure out the rank of the section.  */
4553           if (rank != 0)
4554             gfc_internal_error ("expression_rank(): Two array specs");
4555
4556           for (i = 0; i < ref->u.ar.dimen; i++)
4557             if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
4558                 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
4559               rank++;
4560
4561           break;
4562         }
4563     }
4564
4565   e->rank = rank;
4566
4567 done:
4568   expression_shape (e);
4569 }
4570
4571
4572 /* Resolve a variable expression.  */
4573
4574 static gfc_try
4575 resolve_variable (gfc_expr *e)
4576 {
4577   gfc_symbol *sym;
4578   gfc_try t;
4579
4580   t = SUCCESS;
4581
4582   if (e->symtree == NULL)
4583     return FAILURE;
4584
4585   if (e->ref && resolve_ref (e) == FAILURE)
4586     return FAILURE;
4587
4588   sym = e->symtree->n.sym;
4589   if (sym->attr.flavor == FL_PROCEDURE
4590       && (!sym->attr.function
4591           || (sym->attr.function && sym->result
4592               && sym->result->attr.proc_pointer
4593               && !sym->result->attr.function)))
4594     {
4595       e->ts.type = BT_PROCEDURE;
4596       goto resolve_procedure;
4597     }
4598
4599   if (sym->ts.type != BT_UNKNOWN)
4600     gfc_variable_attr (e, &e->ts);
4601   else
4602     {
4603       /* Must be a simple variable reference.  */
4604       if (gfc_set_default_type (sym, 1, sym->ns) == FAILURE)
4605         return FAILURE;
4606       e->ts = sym->ts;
4607     }
4608
4609   if (check_assumed_size_reference (sym, e))
4610     return FAILURE;
4611
4612   /* Deal with forward references to entries during resolve_code, to
4613      satisfy, at least partially, 12.5.2.5.  */
4614   if (gfc_current_ns->entries
4615       && current_entry_id == sym->entry_id
4616       && cs_base
4617       && cs_base->current
4618       && cs_base->current->op != EXEC_ENTRY)
4619     {
4620       gfc_entry_list *entry;
4621       gfc_formal_arglist *formal;
4622       int n;
4623       bool seen;
4624
4625       /* If the symbol is a dummy...  */
4626       if (sym->attr.dummy && sym->ns == gfc_current_ns)
4627         {
4628           entry = gfc_current_ns->entries;
4629           seen = false;
4630
4631           /* ...test if the symbol is a parameter of previous entries.  */
4632           for (; entry && entry->id <= current_entry_id; entry = entry->next)
4633             for (formal = entry->sym->formal; formal; formal = formal->next)
4634               {
4635                 if (formal->sym && sym->name == formal->sym->name)
4636                   seen = true;
4637               }
4638
4639           /*  If it has not been seen as a dummy, this is an error.  */
4640           if (!seen)
4641             {
4642               if (specification_expr)
4643                 gfc_error ("Variable '%s', used in a specification expression"
4644                            ", is referenced at %L before the ENTRY statement "
4645                            "in which it is a parameter",
4646                            sym->name, &cs_base->current->loc);
4647               else
4648                 gfc_error ("Variable '%s' is used at %L before the ENTRY "
4649                            "statement in which it is a parameter",
4650                            sym->name, &cs_base->current->loc);
4651               t = FAILURE;
4652             }
4653         }
4654
4655       /* Now do the same check on the specification expressions.  */
4656       specification_expr = 1;
4657       if (sym->ts.type == BT_CHARACTER
4658           && gfc_resolve_expr (sym->ts.u.cl->length) == FAILURE)
4659         t = FAILURE;
4660
4661       if (sym->as)
4662         for (n = 0; n < sym->as->rank; n++)
4663           {
4664              specification_expr = 1;
4665              if (gfc_resolve_expr (sym->as->lower[n]) == FAILURE)
4666                t = FAILURE;
4667              specification_expr = 1;
4668              if (gfc_resolve_expr (sym->as->upper[n]) == FAILURE)
4669                t = FAILURE;
4670           }
4671       specification_expr = 0;
4672
4673       if (t == SUCCESS)
4674         /* Update the symbol's entry level.  */
4675         sym->entry_id = current_entry_id + 1;
4676     }
4677
4678 resolve_procedure:
4679   if (t == SUCCESS && resolve_procedure_expression (e) == FAILURE)
4680     t = FAILURE;
4681
4682   /* F2008, C617 and C1229.  */
4683   if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
4684       && gfc_is_coindexed (e))
4685     {
4686       gfc_ref *ref, *ref2 = NULL;
4687
4688       if (e->ts.type == BT_CLASS)
4689         {
4690           gfc_error ("Polymorphic subobject of coindexed object at %L",
4691                      &e->where);
4692           t = FAILURE;
4693         }
4694
4695       for (ref = e->ref; ref; ref = ref->next)
4696         {
4697           if (ref->type == REF_COMPONENT)
4698             ref2 = ref;
4699           if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
4700             break;
4701         }
4702
4703       for ( ; ref; ref = ref->next)
4704         if (ref->type == REF_COMPONENT)
4705           break;
4706
4707       /* Expression itself is coindexed object.  */
4708       if (ref == NULL)
4709         {
4710           gfc_component *c;
4711           c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
4712           for ( ; c; c = c->next)
4713             if (c->attr.allocatable && c->ts.type == BT_CLASS)
4714               {
4715                 gfc_error ("Coindexed object with polymorphic allocatable "
4716                          "subcomponent at %L", &e->where);
4717                 t = FAILURE;
4718                 break;
4719               }
4720         }
4721     }
4722
4723   return t;
4724 }
4725
4726
4727 /* Checks to see that the correct symbol has been host associated.
4728    The only situation where this arises is that in which a twice
4729    contained function is parsed after the host association is made.
4730    Therefore, on detecting this, change the symbol in the expression
4731    and convert the array reference into an actual arglist if the old
4732    symbol is a variable.  */
4733 static bool
4734 check_host_association (gfc_expr *e)
4735 {
4736   gfc_symbol *sym, *old_sym;
4737   gfc_symtree *st;
4738   int n;
4739   gfc_ref *ref;
4740   gfc_actual_arglist *arg, *tail = NULL;
4741   bool retval = e->expr_type == EXPR_FUNCTION;
4742
4743   /*  If the expression is the result of substitution in
4744       interface.c(gfc_extend_expr) because there is no way in
4745       which the host association can be wrong.  */
4746   if (e->symtree == NULL
4747         || e->symtree->n.sym == NULL
4748         || e->user_operator)
4749     return retval;
4750
4751   old_sym = e->symtree->n.sym;
4752
4753   if (gfc_current_ns->parent
4754         && old_sym->ns != gfc_current_ns)
4755     {
4756       /* Use the 'USE' name so that renamed module symbols are
4757          correctly handled.  */
4758       gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
4759
4760       if (sym && old_sym != sym
4761               && sym->ts.type == old_sym->ts.type
4762               && sym->attr.flavor == FL_PROCEDURE
4763               && sym->attr.contained)
4764         {
4765           /* Clear the shape, since it might not be valid.  */
4766           if (e->shape != NULL)
4767             {
4768               for (n = 0; n < e->rank; n++)
4769                 mpz_clear (e->shape[n]);
4770
4771               gfc_free (e->shape);
4772             }
4773
4774           /* Give the expression the right symtree!  */
4775           gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
4776           gcc_assert (st != NULL);
4777
4778           if (old_sym->attr.flavor == FL_PROCEDURE
4779                 || e->expr_type == EXPR_FUNCTION)
4780             {
4781               /* Original was function so point to the new symbol, since
4782                  the actual argument list is already attached to the
4783                  expression. */
4784               e->value.function.esym = NULL;
4785               e->symtree = st;
4786             }
4787           else
4788             {
4789               /* Original was variable so convert array references into
4790                  an actual arglist. This does not need any checking now
4791                  since gfc_resolve_function will take care of it.  */
4792               e->value.function.actual = NULL;
4793               e->expr_type = EXPR_FUNCTION;
4794               e->symtree = st;
4795
4796               /* Ambiguity will not arise if the array reference is not
4797                  the last reference.  */
4798               for (ref = e->ref; ref; ref = ref->next)
4799                 if (ref->type == REF_ARRAY && ref->next == NULL)
4800                   break;
4801
4802               gcc_assert (ref->type == REF_ARRAY);
4803
4804               /* Grab the start expressions from the array ref and
4805                  copy them into actual arguments.  */
4806               for (n = 0; n < ref->u.ar.dimen; n++)
4807                 {
4808                   arg = gfc_get_actual_arglist ();
4809                   arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
4810                   if (e->value.function.actual == NULL)
4811                     tail = e->value.function.actual = arg;
4812                   else
4813                     {
4814                       tail->next = arg;
4815                       tail = arg;
4816                     }
4817                 }
4818
4819               /* Dump the reference list and set the rank.  */
4820               gfc_free_ref_list (e->ref);
4821               e->ref = NULL;
4822               e->rank = sym->as ? sym->as->rank : 0;
4823             }
4824
4825           gfc_resolve_expr (e);
4826           sym->refs++;
4827         }
4828     }
4829   /* This might have changed!  */
4830   return e->expr_type == EXPR_FUNCTION;
4831 }
4832
4833
4834 static void
4835 gfc_resolve_character_operator (gfc_expr *e)
4836 {
4837   gfc_expr *op1 = e->value.op.op1;
4838   gfc_expr *op2 = e->value.op.op2;
4839   gfc_expr *e1 = NULL;
4840   gfc_expr *e2 = NULL;
4841
4842   gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
4843
4844   if (op1->ts.u.cl && op1->ts.u.cl->length)
4845     e1 = gfc_copy_expr (op1->ts.u.cl->length);
4846   else if (op1->expr_type == EXPR_CONSTANT)
4847     e1 = gfc_get_int_expr (gfc_default_integer_kind, NULL,
4848                            op1->value.character.length);
4849
4850   if (op2->ts.u.cl && op2->ts.u.cl->length)
4851     e2 = gfc_copy_expr (op2->ts.u.cl->length);
4852   else if (op2->expr_type == EXPR_CONSTANT)
4853     e2 = gfc_get_int_expr (gfc_default_integer_kind, NULL,
4854                            op2->value.character.length);
4855
4856   e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4857
4858   if (!e1 || !e2)
4859     return;
4860
4861   e->ts.u.cl->length = gfc_add (e1, e2);
4862   e->ts.u.cl->length->ts.type = BT_INTEGER;
4863   e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
4864   gfc_simplify_expr (e->ts.u.cl->length, 0);
4865   gfc_resolve_expr (e->ts.u.cl->length);
4866
4867   return;
4868 }
4869
4870
4871 /*  Ensure that an character expression has a charlen and, if possible, a
4872     length expression.  */
4873
4874 static void
4875 fixup_charlen (gfc_expr *e)
4876 {
4877   /* The cases fall through so that changes in expression type and the need
4878      for multiple fixes are picked up.  In all circumstances, a charlen should
4879      be available for the middle end to hang a backend_decl on.  */
4880   switch (e->expr_type)
4881     {
4882     case EXPR_OP:
4883       gfc_resolve_character_operator (e);
4884
4885     case EXPR_ARRAY:
4886       if (e->expr_type == EXPR_ARRAY)
4887         gfc_resolve_character_array_constructor (e);
4888
4889     case EXPR_SUBSTRING:
4890       if (!e->ts.u.cl && e->ref)
4891         gfc_resolve_substring_charlen (e);
4892
4893     default:
4894       if (!e->ts.u.cl)
4895         e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
4896
4897       break;
4898     }
4899 }
4900
4901
4902 /* Update an actual argument to include the passed-object for type-bound
4903    procedures at the right position.  */
4904
4905 static gfc_actual_arglist*
4906 update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
4907                      const char *name)
4908 {
4909   gcc_assert (argpos > 0);
4910
4911   if (argpos == 1)
4912     {
4913       gfc_actual_arglist* result;
4914
4915       result = gfc_get_actual_arglist ();
4916       result->expr = po;
4917       result->next = lst;
4918       if (name)
4919         result->name = name;
4920
4921       return result;
4922     }
4923
4924   if (lst)
4925     lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
4926   else
4927     lst = update_arglist_pass (NULL, po, argpos - 1, name);
4928   return lst;
4929 }
4930
4931
4932 /* Extract the passed-object from an EXPR_COMPCALL (a copy of it).  */
4933
4934 static gfc_expr*
4935 extract_compcall_passed_object (gfc_expr* e)
4936 {
4937   gfc_expr* po;
4938
4939   gcc_assert (e->expr_type == EXPR_COMPCALL);
4940
4941   if (e->value.compcall.base_object)
4942     po = gfc_copy_expr (e->value.compcall.base_object);
4943   else
4944     {
4945       po = gfc_get_expr ();
4946       po->expr_type = EXPR_VARIABLE;
4947       po->symtree = e->symtree;
4948       po->ref = gfc_copy_ref (e->ref);
4949       po->where = e->where;
4950     }
4951
4952   if (gfc_resolve_expr (po) == FAILURE)
4953     return NULL;
4954
4955   return po;
4956 }
4957
4958
4959 /* Update the arglist of an EXPR_COMPCALL expression to include the
4960    passed-object.  */
4961
4962 static gfc_try
4963 update_compcall_arglist (gfc_expr* e)
4964 {
4965   gfc_expr* po;
4966   gfc_typebound_proc* tbp;
4967
4968   tbp = e->value.compcall.tbp;
4969
4970   if (tbp->error)
4971     return FAILURE;
4972
4973   po = extract_compcall_passed_object (e);
4974   if (!po)
4975     return FAILURE;
4976
4977   if (tbp->nopass || e->value.compcall.ignore_pass)
4978     {
4979       gfc_free_expr (po);
4980       return SUCCESS;
4981     }
4982
4983   gcc_assert (tbp->pass_arg_num > 0);
4984   e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
4985                                                   tbp->pass_arg_num,
4986                                                   tbp->pass_arg);
4987
4988   return SUCCESS;
4989 }
4990
4991
4992 /* Extract the passed object from a PPC call (a copy of it).  */
4993
4994 static gfc_expr*
4995 extract_ppc_passed_object (gfc_expr *e)
4996 {
4997   gfc_expr *po;
4998   gfc_ref **ref;
4999
5000   po = gfc_get_expr ();
5001   po->expr_type = EXPR_VARIABLE;
5002   po->symtree = e->symtree;
5003   po->ref = gfc_copy_ref (e->ref);
5004   po->where = e->where;
5005
5006   /* Remove PPC reference.  */
5007   ref = &po->ref;
5008   while ((*ref)->next)
5009     ref = &(*ref)->next;
5010   gfc_free_ref_list (*ref);
5011   *ref = NULL;
5012
5013   if (gfc_resolve_expr (po) == FAILURE)
5014     return NULL;
5015
5016   return po;
5017 }
5018
5019
5020 /* Update the actual arglist of a procedure pointer component to include the
5021    passed-object.  */
5022
5023 static gfc_try
5024 update_ppc_arglist (gfc_expr* e)
5025 {
5026   gfc_expr* po;
5027   gfc_component *ppc;
5028   gfc_typebound_proc* tb;
5029
5030   if (!gfc_is_proc_ptr_comp (e, &ppc))
5031     return FAILURE;
5032
5033   tb = ppc->tb;
5034
5035   if (tb->error)
5036     return FAILURE;
5037   else if (tb->nopass)
5038     return SUCCESS;
5039
5040   po = extract_ppc_passed_object (e);
5041   if (!po)
5042     return FAILURE;
5043
5044   if (po->rank > 0)
5045     {
5046       gfc_error ("Passed-object at %L must be scalar", &e->where);
5047       return FAILURE;
5048     }
5049
5050   gcc_assert (tb->pass_arg_num > 0);
5051   e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
5052                                                   tb->pass_arg_num,
5053                                                   tb->pass_arg);
5054
5055   return SUCCESS;
5056 }
5057
5058
5059 /* Check that the object a TBP is called on is valid, i.e. it must not be
5060    of ABSTRACT type (as in subobject%abstract_parent%tbp()).  */
5061
5062 static gfc_try
5063 check_typebound_baseobject (gfc_expr* e)
5064 {
5065   gfc_expr* base;
5066
5067   base = extract_compcall_passed_object (e);
5068   if (!base)
5069     return FAILURE;
5070
5071   gcc_assert (base->ts.type == BT_DERIVED || base->ts.type == BT_CLASS);
5072
5073   if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
5074     {
5075       gfc_error ("Base object for type-bound procedure call at %L is of"
5076                  " ABSTRACT type '%s'", &e->where, base->ts.u.derived->name);
5077       return FAILURE;
5078     }
5079
5080   /* If the procedure called is NOPASS, the base object must be scalar.  */
5081   if (e->value.compcall.tbp->nopass && base->rank > 0)
5082     {
5083       gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
5084                  " be scalar", &e->where);
5085       return FAILURE;
5086     }
5087
5088   /* FIXME: Remove once PR 41177 (this problem) is fixed completely.  */
5089   if (base->rank > 0)
5090     {
5091       gfc_error ("Non-scalar base object at %L currently not implemented",
5092                  &e->where);
5093       return FAILURE;
5094     }
5095
5096   return SUCCESS;
5097 }
5098
5099
5100 /* Resolve a call to a type-bound procedure, either function or subroutine,
5101    statically from the data in an EXPR_COMPCALL expression.  The adapted
5102    arglist and the target-procedure symtree are returned.  */
5103
5104 static gfc_try
5105 resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
5106                           gfc_actual_arglist** actual)
5107 {
5108   gcc_assert (e->expr_type == EXPR_COMPCALL);
5109   gcc_assert (!e->value.compcall.tbp->is_generic);
5110
5111   /* Update the actual arglist for PASS.  */
5112   if (update_compcall_arglist (e) == FAILURE)
5113     return FAILURE;
5114
5115   *actual = e->value.compcall.actual;
5116   *target = e->value.compcall.tbp->u.specific;
5117
5118   gfc_free_ref_list (e->ref);
5119   e->ref = NULL;
5120   e->value.compcall.actual = NULL;
5121
5122   return SUCCESS;
5123 }
5124
5125
5126 /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
5127    which of the specific bindings (if any) matches the arglist and transform
5128    the expression into a call of that binding.  */
5129
5130 static gfc_try
5131 resolve_typebound_generic_call (gfc_expr* e, const char **name)
5132 {
5133   gfc_typebound_proc* genproc;
5134   const char* genname;
5135
5136   gcc_assert (e->expr_type == EXPR_COMPCALL);
5137   genname = e->value.compcall.name;
5138   genproc = e->value.compcall.tbp;
5139
5140   if (!genproc->is_generic)
5141     return SUCCESS;
5142
5143   /* Try the bindings on this type and in the inheritance hierarchy.  */
5144   for (; genproc; genproc = genproc->overridden)
5145     {
5146       gfc_tbp_generic* g;
5147
5148       gcc_assert (genproc->is_generic);
5149       for (g = genproc->u.generic; g; g = g->next)
5150         {
5151           gfc_symbol* target;
5152           gfc_actual_arglist* args;
5153           bool matches;
5154
5155           gcc_assert (g->specific);
5156
5157           if (g->specific->error)
5158             continue;
5159
5160           target = g->specific->u.specific->n.sym;
5161
5162           /* Get the right arglist by handling PASS/NOPASS.  */
5163           args = gfc_copy_actual_arglist (e->value.compcall.actual);
5164           if (!g->specific->nopass)
5165             {
5166               gfc_expr* po;
5167               po = extract_compcall_passed_object (e);
5168               if (!po)
5169                 return FAILURE;
5170
5171               gcc_assert (g->specific->pass_arg_num > 0);
5172               gcc_assert (!g->specific->error);
5173               args = update_arglist_pass (args, po, g->specific->pass_arg_num,
5174                                           g->specific->pass_arg);
5175             }
5176           resolve_actual_arglist (args, target->attr.proc,
5177                                   is_external_proc (target) && !target->formal);
5178
5179           /* Check if this arglist matches the formal.  */
5180           matches = gfc_arglist_matches_symbol (&args, target);
5181
5182           /* Clean up and break out of the loop if we've found it.  */
5183           gfc_free_actual_arglist (args);
5184           if (matches)
5185             {
5186               e->value.compcall.tbp = g->specific;
5187               /* Pass along the name for CLASS methods, where the vtab
5188                  procedure pointer component has to be referenced.  */
5189               if (name)
5190                 *name = g->specific_st->name;
5191               goto success;
5192             }
5193         }
5194     }
5195
5196   /* Nothing matching found!  */
5197   gfc_error ("Found no matching specific binding for the call to the GENERIC"
5198              " '%s' at %L", genname, &e->where);
5199   return FAILURE;
5200
5201 success:
5202   return SUCCESS;
5203 }
5204
5205
5206 /* Resolve a call to a type-bound subroutine.  */
5207
5208 static gfc_try
5209 resolve_typebound_call (gfc_code* c, const char **name)
5210 {
5211   gfc_actual_arglist* newactual;
5212   gfc_symtree* target;
5213
5214   /* Check that's really a SUBROUTINE.  */
5215   if (!c->expr1->value.compcall.tbp->subroutine)
5216     {
5217       gfc_error ("'%s' at %L should be a SUBROUTINE",
5218                  c->expr1->value.compcall.name, &c->loc);
5219       return FAILURE;
5220     }
5221
5222   if (check_typebound_baseobject (c->expr1) == FAILURE)
5223     return FAILURE;
5224
5225   /* Pass along the name for CLASS methods, where the vtab
5226      procedure pointer component has to be referenced.  */
5227   if (name)
5228     *name = c->expr1->value.compcall.name;
5229
5230   if (resolve_typebound_generic_call (c->expr1, name) == FAILURE)
5231     return FAILURE;
5232
5233   /* Transform into an ordinary EXEC_CALL for now.  */
5234
5235   if (resolve_typebound_static (c->expr1, &target, &newactual) == FAILURE)
5236     return FAILURE;
5237
5238   c->ext.actual = newactual;
5239   c->symtree = target;
5240   c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
5241
5242   gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
5243
5244   gfc_free_expr (c->expr1);
5245   c->expr1 = gfc_get_expr ();
5246   c->expr1->expr_type = EXPR_FUNCTION;
5247   c->expr1->symtree = target;
5248   c->expr1->where = c->loc;
5249
5250   return resolve_call (c);
5251 }
5252
5253
5254 /* Resolve a component-call expression.  */
5255 static gfc_try
5256 resolve_compcall (gfc_expr* e, const char **name)
5257 {
5258   gfc_actual_arglist* newactual;
5259   gfc_symtree* target;
5260
5261   /* Check that's really a FUNCTION.  */
5262   if (!e->value.compcall.tbp->function)
5263     {
5264       gfc_error ("'%s' at %L should be a FUNCTION",
5265                  e->value.compcall.name, &e->where);
5266       return FAILURE;
5267     }
5268
5269   /* These must not be assign-calls!  */
5270   gcc_assert (!e->value.compcall.assign);
5271
5272   if (check_typebound_baseobject (e) == FAILURE)
5273     return FAILURE;
5274
5275   /* Pass along the name for CLASS methods, where the vtab
5276      procedure pointer component has to be referenced.  */
5277   if (name)
5278     *name = e->value.compcall.name;
5279
5280   if (resolve_typebound_generic_call (e, name) == FAILURE)
5281     return FAILURE;
5282   gcc_assert (!e->value.compcall.tbp->is_generic);
5283
5284   /* Take the rank from the function's symbol.  */
5285   if (e->value.compcall.tbp->u.specific->n.sym->as)
5286     e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
5287
5288   /* For now, we simply transform it into an EXPR_FUNCTION call with the same
5289      arglist to the TBP's binding target.  */
5290
5291   if (resolve_typebound_static (e, &target, &newactual) == FAILURE)
5292     return FAILURE;
5293
5294   e->value.function.actual = newactual;
5295   e->value.function.name = NULL;
5296   e->value.function.esym = target->n.sym;
5297   e->value.function.isym = NULL;
5298   e->symtree = target;
5299   e->ts = target->n.sym->ts;
5300   e->expr_type = EXPR_FUNCTION;
5301
5302   /* Resolution is not necessary if this is a class subroutine; this
5303      function only has to identify the specific proc. Resolution of
5304      the call will be done next in resolve_typebound_call.  */
5305   return gfc_resolve_expr (e);
5306 }
5307
5308
5309 /* Get the ultimate declared type from an expression.  In addition,
5310    return the last class/derived type reference and the copy of the
5311    reference list.  */
5312 static gfc_symbol*
5313 get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
5314                         gfc_expr *e)
5315 {
5316   gfc_symbol *declared;
5317   gfc_ref *ref;
5318
5319   declared = NULL;
5320   *class_ref = NULL;
5321   *new_ref = gfc_copy_ref (e->ref);
5322   for (ref = *new_ref; ref; ref = ref->next)
5323     {
5324       if (ref->type != REF_COMPONENT)
5325         continue;
5326
5327       if (ref->u.c.component->ts.type == BT_CLASS
5328             || ref->u.c.component->ts.type == BT_DERIVED)
5329         {
5330           declared = ref->u.c.component->ts.u.derived;
5331           *class_ref = ref;
5332         }
5333     }
5334
5335   if (declared == NULL)
5336     declared = e->symtree->n.sym->ts.u.derived;
5337
5338   return declared;
5339 }
5340
5341
5342 /* Resolve a typebound function, or 'method'. First separate all
5343    the non-CLASS references by calling resolve_compcall directly.  */
5344
5345 static gfc_try
5346 resolve_typebound_function (gfc_expr* e)
5347 {
5348   gfc_symbol *declared;
5349   gfc_component *c;
5350   gfc_ref *new_ref;
5351   gfc_ref *class_ref;
5352   gfc_symtree *st;
5353   const char *name;
5354   const char *genname;
5355   gfc_typespec ts;
5356
5357   st = e->symtree;
5358   if (st == NULL)
5359     return resolve_compcall (e, NULL);
5360
5361   /* Get the CLASS declared type.  */
5362   declared = get_declared_from_expr (&class_ref, &new_ref, e);
5363
5364   /* Weed out cases of the ultimate component being a derived type.  */
5365   if ((class_ref && class_ref->u.c.component->ts.type == BT_DERIVED)
5366          || (!class_ref && st->n.sym->ts.type != BT_CLASS))
5367     {
5368       gfc_free_ref_list (new_ref);
5369       return resolve_compcall (e, NULL);
5370     }
5371
5372   c = gfc_find_component (declared, "$data", true, true);
5373   declared = c->ts.u.derived;
5374
5375   /* Keep the generic name so that the vtab reference can be made.  */
5376   genname = NULL; 
5377   if (e->value.compcall.tbp->is_generic)
5378     genname = e->value.compcall.name;
5379
5380   /* Treat the call as if it is a typebound procedure, in order to roll
5381      out the correct name for the specific function.  */
5382   resolve_compcall (e, &name);
5383   ts = e->ts;
5384
5385   /* Then convert the expression to a procedure pointer component call.  */
5386   e->value.function.esym = NULL;
5387   e->symtree = st;
5388
5389   if (class_ref)  
5390     {
5391       gfc_free_ref_list (class_ref->next);
5392       e->ref = new_ref;
5393     }
5394
5395   /* '$vptr' points to the vtab, which contains the procedure pointers.  */
5396   gfc_add_component_ref (e, "$vptr");
5397   if (genname)
5398     {
5399       /* A generic procedure needs the subsidiary vtabs and vtypes for
5400          the specific procedures to have been build.  */
5401       gfc_symbol *vtab;
5402       vtab = gfc_find_derived_vtab (declared, true);
5403       gcc_assert (vtab);
5404       gfc_add_component_ref (e, genname);
5405     }
5406   gfc_add_component_ref (e, name);
5407
5408   /* Recover the typespec for the expression.  This is really only
5409      necessary for generic procedures, where the additional call
5410      to gfc_add_component_ref seems to throw the collection of the
5411      correct typespec.  */
5412   e->ts = ts;
5413   return SUCCESS;
5414 }
5415
5416 /* Resolve a typebound subroutine, or 'method'. First separate all
5417    the non-CLASS references by calling resolve_typebound_call
5418    directly.  */
5419
5420 static gfc_try
5421 resolve_typebound_subroutine (gfc_code *code)
5422 {
5423   gfc_symbol *declared;
5424   gfc_component *c;
5425   gfc_ref *new_ref;
5426   gfc_ref *class_ref;
5427   gfc_symtree *st;
5428   const char *genname;
5429   const char *name;
5430   gfc_typespec ts;
5431
5432   st = code->expr1->symtree;
5433   if (st == NULL)
5434     return resolve_typebound_call (code, NULL);
5435
5436   /* Get the CLASS declared type.  */
5437   declared = get_declared_from_expr (&class_ref, &new_ref, code->expr1);
5438
5439   /* Weed out cases of the ultimate component being a derived type.  */
5440   if ((class_ref && class_ref->u.c.component->ts.type == BT_DERIVED)
5441          || (!class_ref && st->n.sym->ts.type != BT_CLASS))
5442     {
5443       gfc_free_ref_list (new_ref);
5444       return resolve_typebound_call (code, NULL);
5445     } 
5446
5447   c = gfc_find_component (declared, "$data", true, true);
5448   declared = c->ts.u.derived;
5449
5450   /* Keep the generic name so that the vtab reference can be made.  */
5451   genname = NULL; 
5452   if (code->expr1->value.compcall.tbp->is_generic)
5453     genname = code->expr1->value.compcall.name;
5454
5455   resolve_typebound_call (code, &name);
5456   ts = code->expr1->ts;
5457
5458   /* Then convert the expression to a procedure pointer component call.  */
5459   code->expr1->value.function.esym = NULL;
5460   code->expr1->symtree = st;
5461
5462   if (class_ref)  
5463     {
5464       gfc_free_ref_list (class_ref->next);
5465       code->expr1->ref = new_ref;
5466     }
5467
5468   /* '$vptr' points to the vtab, which contains the procedure pointers.  */
5469   gfc_add_component_ref (code->expr1, "$vptr");
5470   if (genname)
5471     {
5472       /* A generic procedure needs the subsidiary vtabs and vtypes for
5473          the specific procedures to have been build.  */
5474       gfc_symbol *vtab;
5475       vtab = gfc_find_derived_vtab (declared, true);
5476       gcc_assert (vtab);
5477       gfc_add_component_ref (code->expr1, genname);
5478     }
5479   gfc_add_component_ref (code->expr1, name);
5480
5481   /* Recover the typespec for the expression.  This is really only
5482      necessary for generic procedures, where the additional call
5483      to gfc_add_component_ref seems to throw the collection of the
5484      correct typespec.  */
5485   code->expr1->ts = ts;
5486   return SUCCESS;
5487 }
5488
5489
5490 /* Resolve a CALL to a Procedure Pointer Component (Subroutine).  */
5491
5492 static gfc_try
5493 resolve_ppc_call (gfc_code* c)
5494 {
5495   gfc_component *comp;
5496   bool b;
5497
5498   b = gfc_is_proc_ptr_comp (c->expr1, &comp);
5499   gcc_assert (b);
5500
5501   c->resolved_sym = c->expr1->symtree->n.sym;
5502   c->expr1->expr_type = EXPR_VARIABLE;
5503
5504   if (!comp->attr.subroutine)
5505     gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
5506
5507   if (resolve_ref (c->expr1) == FAILURE)
5508     return FAILURE;
5509
5510   if (update_ppc_arglist (c->expr1) == FAILURE)
5511     return FAILURE;
5512
5513   c->ext.actual = c->expr1->value.compcall.actual;
5514
5515   if (resolve_actual_arglist (c->ext.actual, comp->attr.proc,
5516                               comp->formal == NULL) == FAILURE)
5517     return FAILURE;
5518
5519   gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
5520
5521   return SUCCESS;
5522 }
5523
5524
5525 /* Resolve a Function Call to a Procedure Pointer Component (Function).  */
5526
5527 static gfc_try
5528 resolve_expr_ppc (gfc_expr* e)
5529 {
5530   gfc_component *comp;
5531   bool b;
5532
5533   b = gfc_is_proc_ptr_comp (e, &comp);
5534   gcc_assert (b);
5535
5536   /* Convert to EXPR_FUNCTION.  */
5537   e->expr_type = EXPR_FUNCTION;
5538   e->value.function.isym = NULL;
5539   e->value.function.actual = e->value.compcall.actual;
5540   e->ts = comp->ts;
5541   if (comp->as != NULL)
5542     e->rank = comp->as->rank;
5543
5544   if (!comp->attr.function)
5545     gfc_add_function (&comp->attr, comp->name, &e->where);
5546
5547   if (resolve_ref (e) == FAILURE)
5548     return FAILURE;
5549
5550   if (resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
5551                               comp->formal == NULL) == FAILURE)
5552     return FAILURE;
5553
5554   if (update_ppc_arglist (e) == FAILURE)
5555     return FAILURE;
5556
5557   gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
5558
5559   return SUCCESS;
5560 }
5561
5562
5563 static bool
5564 gfc_is_expandable_expr (gfc_expr *e)
5565 {
5566   gfc_constructor *con;
5567
5568   if (e->expr_type == EXPR_ARRAY)
5569     {
5570       /* Traverse the constructor looking for variables that are flavor
5571          parameter.  Parameters must be expanded since they are fully used at
5572          compile time.  */
5573       con = gfc_constructor_first (e->value.constructor);
5574       for (; con; con = gfc_constructor_next (con))
5575         {
5576           if (con->expr->expr_type == EXPR_VARIABLE
5577               && con->expr->symtree
5578               && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
5579               || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
5580             return true;
5581           if (con->expr->expr_type == EXPR_ARRAY
5582               && gfc_is_expandable_expr (con->expr))
5583             return true;
5584         }
5585     }
5586
5587   return false;
5588 }
5589
5590 /* Resolve an expression.  That is, make sure that types of operands agree
5591    with their operators, intrinsic operators are converted to function calls
5592    for overloaded types and unresolved function references are resolved.  */
5593
5594 gfc_try
5595 gfc_resolve_expr (gfc_expr *e)
5596 {
5597   gfc_try t;
5598   bool inquiry_save;
5599
5600   if (e == NULL)
5601     return SUCCESS;
5602
5603   /* inquiry_argument only applies to variables.  */
5604   inquiry_save = inquiry_argument;
5605   if (e->expr_type != EXPR_VARIABLE)
5606     inquiry_argument = false;
5607
5608   switch (e->expr_type)
5609     {
5610     case EXPR_OP:
5611       t = resolve_operator (e);
5612       break;
5613
5614     case EXPR_FUNCTION:
5615     case EXPR_VARIABLE:
5616
5617       if (check_host_association (e))
5618         t = resolve_function (e);
5619       else
5620         {
5621           t = resolve_variable (e);
5622           if (t == SUCCESS)
5623             expression_rank (e);
5624         }
5625
5626       if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
5627           && e->ref->type != REF_SUBSTRING)
5628         gfc_resolve_substring_charlen (e);
5629
5630       break;
5631
5632     case EXPR_COMPCALL:
5633       t = resolve_typebound_function (e);
5634       break;
5635
5636     case EXPR_SUBSTRING:
5637       t = resolve_ref (e);
5638       break;
5639
5640     case EXPR_CONSTANT:
5641     case EXPR_NULL:
5642       t = SUCCESS;
5643       break;
5644
5645     case EXPR_PPC:
5646       t = resolve_expr_ppc (e);
5647       break;
5648
5649     case EXPR_ARRAY:
5650       t = FAILURE;
5651       if (resolve_ref (e) == FAILURE)
5652         break;
5653
5654       t = gfc_resolve_array_constructor (e);
5655       /* Also try to expand a constructor.  */
5656       if (t == SUCCESS)
5657         {
5658           expression_rank (e);
5659           if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
5660             gfc_expand_constructor (e);
5661         }
5662
5663       /* This provides the opportunity for the length of constructors with
5664          character valued function elements to propagate the string length
5665          to the expression.  */
5666       if (t == SUCCESS && e->ts.type == BT_CHARACTER)
5667         {
5668           /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
5669              here rather then add a duplicate test for it above.  */ 
5670           gfc_expand_constructor (e);
5671           t = gfc_resolve_character_array_constructor (e);
5672         }
5673
5674       break;
5675
5676     case EXPR_STRUCTURE:
5677       t = resolve_ref (e);
5678       if (t == FAILURE)
5679         break;
5680
5681       t = resolve_structure_cons (e);
5682       if (t == FAILURE)
5683         break;
5684
5685       t = gfc_simplify_expr (e, 0);
5686       break;
5687
5688     default:
5689       gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
5690     }
5691
5692   if (e->ts.type == BT_CHARACTER && t == SUCCESS && !e->ts.u.cl)
5693     fixup_charlen (e);
5694
5695   inquiry_argument = inquiry_save;
5696
5697   return t;
5698 }
5699
5700
5701 /* Resolve an expression from an iterator.  They must be scalar and have
5702    INTEGER or (optionally) REAL type.  */
5703
5704 static gfc_try
5705 gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
5706                            const char *name_msgid)
5707 {
5708   if (gfc_resolve_expr (expr) == FAILURE)
5709     return FAILURE;
5710
5711   if (expr->rank != 0)
5712     {
5713       gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
5714       return FAILURE;
5715     }
5716
5717   if (expr->ts.type != BT_INTEGER)
5718     {
5719       if (expr->ts.type == BT_REAL)
5720         {
5721           if (real_ok)
5722             return gfc_notify_std (GFC_STD_F95_DEL,
5723                                    "Deleted feature: %s at %L must be integer",
5724                                    _(name_msgid), &expr->where);
5725           else
5726             {
5727               gfc_error ("%s at %L must be INTEGER", _(name_msgid),
5728                          &expr->where);
5729               return FAILURE;
5730             }
5731         }
5732       else
5733         {
5734           gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
5735           return FAILURE;
5736         }
5737     }
5738   return SUCCESS;
5739 }
5740
5741
5742 /* Resolve the expressions in an iterator structure.  If REAL_OK is
5743    false allow only INTEGER type iterators, otherwise allow REAL types.  */
5744
5745 gfc_try
5746 gfc_resolve_iterator (gfc_iterator *iter, bool real_ok)
5747 {
5748   if (gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable")
5749       == FAILURE)
5750     return FAILURE;
5751
5752   if (gfc_pure (NULL) && gfc_impure_variable (iter->var->symtree->n.sym))
5753     {
5754       gfc_error ("Cannot assign to loop variable in PURE procedure at %L",
5755                  &iter->var->where);
5756       return FAILURE;
5757     }
5758
5759   if (gfc_resolve_iterator_expr (iter->start, real_ok,
5760                                  "Start expression in DO loop") == FAILURE)
5761     return FAILURE;
5762
5763   if (gfc_resolve_iterator_expr (iter->end, real_ok,
5764                                  "End expression in DO loop") == FAILURE)
5765     return FAILURE;
5766
5767   if (gfc_resolve_iterator_expr (iter->step, real_ok,
5768                                  "Step expression in DO loop") == FAILURE)
5769     return FAILURE;
5770
5771   if (iter->step->expr_type == EXPR_CONSTANT)
5772     {
5773       if ((iter->step->ts.type == BT_INTEGER
5774            && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
5775           || (iter->step->ts.type == BT_REAL
5776               && mpfr_sgn (iter->step->value.real) == 0))
5777         {
5778           gfc_error ("Step expression in DO loop at %L cannot be zero",
5779                      &iter->step->where);
5780           return FAILURE;
5781         }
5782     }
5783
5784   /* Convert start, end, and step to the same type as var.  */
5785   if (iter->start->ts.kind != iter->var->ts.kind
5786       || iter->start->ts.type != iter->var->ts.type)
5787     gfc_convert_type (iter->start, &iter->var->ts, 2);
5788
5789   if (iter->end->ts.kind != iter->var->ts.kind
5790       || iter->end->ts.type != iter->var->ts.type)
5791     gfc_convert_type (iter->end, &iter->var->ts, 2);
5792
5793   if (iter->step->ts.kind != iter->var->ts.kind
5794       || iter->step->ts.type != iter->var->ts.type)
5795     gfc_convert_type (iter->step, &iter->var->ts, 2);
5796
5797   if (iter->start->expr_type == EXPR_CONSTANT
5798       && iter->end->expr_type == EXPR_CONSTANT
5799       && iter->step->expr_type == EXPR_CONSTANT)
5800     {
5801       int sgn, cmp;
5802       if (iter->start->ts.type == BT_INTEGER)
5803         {
5804           sgn = mpz_cmp_ui (iter->step->value.integer, 0);
5805           cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
5806         }
5807       else
5808         {
5809           sgn = mpfr_sgn (iter->step->value.real);
5810           cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
5811         }
5812       if ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0))
5813         gfc_warning ("DO loop at %L will be executed zero times",
5814                      &iter->step->where);
5815     }
5816
5817   return SUCCESS;
5818 }
5819
5820
5821 /* Traversal function for find_forall_index.  f == 2 signals that
5822    that variable itself is not to be checked - only the references.  */
5823
5824 static bool
5825 forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
5826 {
5827   if (expr->expr_type != EXPR_VARIABLE)
5828     return false;
5829   
5830   /* A scalar assignment  */
5831   if (!expr->ref || *f == 1)
5832     {
5833       if (expr->symtree->n.sym == sym)
5834         return true;
5835       else
5836         return false;
5837     }
5838
5839   if (*f == 2)
5840     *f = 1;
5841   return false;
5842 }
5843
5844
5845 /* Check whether the FORALL index appears in the expression or not.
5846    Returns SUCCESS if SYM is found in EXPR.  */
5847
5848 gfc_try
5849 find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
5850 {
5851   if (gfc_traverse_expr (expr, sym, forall_index, f))
5852     return SUCCESS;
5853   else
5854     return FAILURE;
5855 }
5856
5857
5858 /* Resolve a list of FORALL iterators.  The FORALL index-name is constrained
5859    to be a scalar INTEGER variable.  The subscripts and stride are scalar
5860    INTEGERs, and if stride is a constant it must be nonzero.
5861    Furthermore "A subscript or stride in a forall-triplet-spec shall
5862    not contain a reference to any index-name in the
5863    forall-triplet-spec-list in which it appears." (7.5.4.1)  */
5864
5865 static void
5866 resolve_forall_iterators (gfc_forall_iterator *it)
5867 {
5868   gfc_forall_iterator *iter, *iter2;
5869
5870   for (iter = it; iter; iter = iter->next)
5871     {
5872       if (gfc_resolve_expr (iter->var) == SUCCESS
5873           && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
5874         gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
5875                    &iter->var->where);
5876
5877       if (gfc_resolve_expr (iter->start) == SUCCESS
5878           && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
5879         gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
5880                    &iter->start->where);
5881       if (iter->var->ts.kind != iter->start->ts.kind)
5882         gfc_convert_type (iter->start, &iter->var->ts, 2);
5883
5884       if (gfc_resolve_expr (iter->end) == SUCCESS
5885           && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
5886         gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
5887                    &iter->end->where);
5888       if (iter->var->ts.kind != iter->end->ts.kind)
5889         gfc_convert_type (iter->end, &iter->var->ts, 2);
5890
5891       if (gfc_resolve_expr (iter->stride) == SUCCESS)
5892         {
5893           if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
5894             gfc_error ("FORALL stride expression at %L must be a scalar %s",
5895                        &iter->stride->where, "INTEGER");
5896
5897           if (iter->stride->expr_type == EXPR_CONSTANT
5898               && mpz_cmp_ui(iter->stride->value.integer, 0) == 0)
5899             gfc_error ("FORALL stride expression at %L cannot be zero",
5900                        &iter->stride->where);
5901         }
5902       if (iter->var->ts.kind != iter->stride->ts.kind)
5903         gfc_convert_type (iter->stride, &iter->var->ts, 2);
5904     }
5905
5906   for (iter = it; iter; iter = iter->next)
5907     for (iter2 = iter; iter2; iter2 = iter2->next)
5908       {
5909         if (find_forall_index (iter2->start,
5910                                iter->var->symtree->n.sym, 0) == SUCCESS
5911             || find_forall_index (iter2->end,
5912                                   iter->var->symtree->n.sym, 0) == SUCCESS
5913             || find_forall_index (iter2->stride,
5914                                   iter->var->symtree->n.sym, 0) == SUCCESS)
5915           gfc_error ("FORALL index '%s' may not appear in triplet "
5916                      "specification at %L", iter->var->symtree->name,
5917                      &iter2->start->where);
5918       }
5919 }
5920
5921
5922 /* Given a pointer to a symbol that is a derived type, see if it's
5923    inaccessible, i.e. if it's defined in another module and the components are
5924    PRIVATE.  The search is recursive if necessary.  Returns zero if no
5925    inaccessible components are found, nonzero otherwise.  */
5926
5927 static int
5928 derived_inaccessible (gfc_symbol *sym)
5929 {
5930   gfc_component *c;
5931
5932   if (sym->attr.use_assoc && sym->attr.private_comp)
5933     return 1;
5934
5935   for (c = sym->components; c; c = c->next)
5936     {
5937         if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
5938           return 1;
5939     }
5940
5941   return 0;
5942 }
5943
5944
5945 /* Resolve the argument of a deallocate expression.  The expression must be
5946    a pointer or a full array.  */
5947
5948 static gfc_try
5949 resolve_deallocate_expr (gfc_expr *e)
5950 {
5951   symbol_attribute attr;
5952   int allocatable, pointer, check_intent_in;
5953   gfc_ref *ref;
5954   gfc_symbol *sym;
5955   gfc_component *c;
5956
5957   /* Check INTENT(IN), unless the object is a sub-component of a pointer.  */
5958   check_intent_in = 1;
5959
5960   if (gfc_resolve_expr (e) == FAILURE)
5961     return FAILURE;
5962
5963   if (e->expr_type != EXPR_VARIABLE)
5964     goto bad;
5965
5966   sym = e->symtree->n.sym;
5967
5968   if (sym->ts.type == BT_CLASS)
5969     {
5970       allocatable = sym->ts.u.derived->components->attr.allocatable;
5971       pointer = sym->ts.u.derived->components->attr.pointer;
5972     }
5973   else
5974     {
5975       allocatable = sym->attr.allocatable;
5976       pointer = sym->attr.pointer;
5977     }
5978   for (ref = e->ref; ref; ref = ref->next)
5979     {
5980       if (pointer)
5981         check_intent_in = 0;
5982
5983       switch (ref->type)
5984         {
5985         case REF_ARRAY:
5986           if (ref->u.ar.type != AR_FULL)
5987             allocatable = 0;
5988           break;
5989
5990         case REF_COMPONENT:
5991           c = ref->u.c.component;
5992           if (c->ts.type == BT_CLASS)
5993             {
5994               allocatable = c->ts.u.derived->components->attr.allocatable;
5995               pointer = c->ts.u.derived->components->attr.pointer;
5996             }
5997           else
5998             {
5999               allocatable = c->attr.allocatable;
6000               pointer = c->attr.pointer;
6001             }
6002           break;
6003
6004         case REF_SUBSTRING:
6005           allocatable = 0;
6006           break;
6007         }
6008     }
6009
6010   attr = gfc_expr_attr (e);
6011
6012   if (allocatable == 0 && attr.pointer == 0)
6013     {
6014     bad:
6015       gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
6016                  &e->where);
6017     }
6018
6019   if (check_intent_in && sym->attr.intent == INTENT_IN)
6020     {
6021       gfc_error ("Cannot deallocate INTENT(IN) variable '%s' at %L",
6022                  sym->name, &e->where);
6023       return FAILURE;
6024     }
6025
6026   if (e->ts.type == BT_CLASS)
6027     {
6028       /* Only deallocate the DATA component.  */
6029       gfc_add_component_ref (e, "$data");
6030     }
6031
6032   return SUCCESS;
6033 }
6034
6035
6036 /* Returns true if the expression e contains a reference to the symbol sym.  */
6037 static bool
6038 sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
6039 {
6040   if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
6041     return true;
6042
6043   return false;
6044 }
6045
6046 bool
6047 gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
6048 {
6049   return gfc_traverse_expr (e, sym, sym_in_expr, 0);
6050 }
6051
6052
6053 /* Given the expression node e for an allocatable/pointer of derived type to be
6054    allocated, get the expression node to be initialized afterwards (needed for
6055    derived types with default initializers, and derived types with allocatable
6056    components that need nullification.)  */
6057
6058 gfc_expr *
6059 gfc_expr_to_initialize (gfc_expr *e)
6060 {
6061   gfc_expr *result;
6062   gfc_ref *ref;
6063   int i;
6064
6065   result = gfc_copy_expr (e);
6066
6067   /* Change the last array reference from AR_ELEMENT to AR_FULL.  */
6068   for (ref = result->ref; ref; ref = ref->next)
6069     if (ref->type == REF_ARRAY && ref->next == NULL)
6070       {
6071         ref->u.ar.type = AR_FULL;
6072
6073         for (i = 0; i < ref->u.ar.dimen; i++)
6074           ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
6075
6076         result->rank = ref->u.ar.dimen;
6077         break;
6078       }
6079
6080   return result;
6081 }
6082
6083
6084 /* Used in resolve_allocate_expr to check that a allocation-object and
6085    a source-expr are conformable.  This does not catch all possible 
6086    cases; in particular a runtime checking is needed.  */
6087
6088 static gfc_try
6089 conformable_arrays (gfc_expr *e1, gfc_expr *e2)
6090 {
6091   /* First compare rank.  */
6092   if (e2->ref && e1->rank != e2->ref->u.ar.as->rank)
6093     {
6094       gfc_error ("Source-expr at %L must be scalar or have the "
6095                  "same rank as the allocate-object at %L",
6096                  &e1->where, &e2->where);
6097       return FAILURE;
6098     }
6099
6100   if (e1->shape)
6101     {
6102       int i;
6103       mpz_t s;
6104
6105       mpz_init (s);
6106
6107       for (i = 0; i < e1->rank; i++)
6108         {
6109           if (e2->ref->u.ar.end[i])
6110             {
6111               mpz_set (s, e2->ref->u.ar.end[i]->value.integer);
6112               mpz_sub (s, s, e2->ref->u.ar.start[i]->value.integer);
6113               mpz_add_ui (s, s, 1);
6114             }
6115           else
6116             {
6117               mpz_set (s, e2->ref->u.ar.start[i]->value.integer);
6118             }
6119
6120           if (mpz_cmp (e1->shape[i], s) != 0)
6121             {
6122               gfc_error ("Source-expr at %L and allocate-object at %L must "
6123                          "have the same shape", &e1->where, &e2->where);
6124               mpz_clear (s);
6125               return FAILURE;
6126             }
6127         }
6128
6129       mpz_clear (s);
6130     }
6131
6132   return SUCCESS;
6133 }
6134
6135
6136 /* Resolve the expression in an ALLOCATE statement, doing the additional
6137    checks to see whether the expression is OK or not.  The expression must
6138    have a trailing array reference that gives the size of the array.  */
6139
6140 static gfc_try
6141 resolve_allocate_expr (gfc_expr *e, gfc_code *code)
6142 {
6143   int i, pointer, allocatable, dimension, check_intent_in, is_abstract;
6144   int codimension;
6145   symbol_attribute attr;
6146   gfc_ref *ref, *ref2;
6147   gfc_array_ref *ar;
6148   gfc_symbol *sym;
6149   gfc_alloc *a;
6150   gfc_component *c;
6151   gfc_expr *init_e;
6152
6153   /* Check INTENT(IN), unless the object is a sub-component of a pointer.  */
6154   check_intent_in = 1;
6155
6156   /* Mark the ultimost array component as being in allocate to allow DIMEN_STAR
6157      checking of coarrays.  */
6158   for (ref = e->ref; ref; ref = ref->next)
6159     if (ref->next == NULL)
6160       break;
6161
6162   if (ref && ref->type == REF_ARRAY)
6163     ref->u.ar.in_allocate = true;
6164
6165   if (gfc_resolve_expr (e) == FAILURE)
6166     goto failure;
6167
6168   /* Make sure the expression is allocatable or a pointer.  If it is
6169      pointer, the next-to-last reference must be a pointer.  */
6170
6171   ref2 = NULL;
6172   if (e->symtree)
6173     sym = e->symtree->n.sym;
6174
6175   /* Check whether ultimate component is abstract and CLASS.  */
6176   is_abstract = 0;
6177
6178   if (e->expr_type != EXPR_VARIABLE)
6179     {
6180       allocatable = 0;
6181       attr = gfc_expr_attr (e);
6182       pointer = attr.pointer;
6183       dimension = attr.dimension;
6184       codimension = attr.codimension;
6185     }
6186   else
6187     {
6188       if (sym->ts.type == BT_CLASS)
6189         {
6190           allocatable = sym->ts.u.derived->components->attr.allocatable;
6191           pointer = sym->ts.u.derived->components->attr.pointer;
6192           dimension = sym->ts.u.derived->components->attr.dimension;
6193           codimension = sym->ts.u.derived->components->attr.codimension;
6194           is_abstract = sym->ts.u.derived->components->attr.abstract;
6195         }
6196       else
6197         {
6198           allocatable = sym->attr.allocatable;
6199           pointer = sym->attr.pointer;
6200           dimension = sym->attr.dimension;
6201           codimension = sym->attr.codimension;
6202         }
6203
6204       for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
6205         {
6206           if (pointer)
6207             check_intent_in = 0;
6208
6209           switch (ref->type)
6210             {
6211               case REF_ARRAY:
6212                 if (ref->next != NULL)
6213                   pointer = 0;
6214                 break;
6215
6216               case REF_COMPONENT:
6217                 /* F2008, C644.  */
6218                 if (gfc_is_coindexed (e))
6219                   {
6220                     gfc_error ("Coindexed allocatable object at %L",
6221                                &e->where);
6222                     goto failure;
6223                   }
6224
6225                 c = ref->u.c.component;
6226                 if (c->ts.type == BT_CLASS)
6227                   {
6228                     allocatable = c->ts.u.derived->components->attr.allocatable;
6229                     pointer = c->ts.u.derived->components->attr.pointer;
6230                     dimension = c->ts.u.derived->components->attr.dimension;
6231                     codimension = c->ts.u.derived->components->attr.codimension;
6232                     is_abstract = c->ts.u.derived->components->attr.abstract;
6233                   }
6234                 else
6235                   {
6236                     allocatable = c->attr.allocatable;
6237                     pointer = c->attr.pointer;
6238                     dimension = c->attr.dimension;
6239                     codimension = c->attr.codimension;
6240                     is_abstract = c->attr.abstract;
6241                   }
6242                 break;
6243
6244               case REF_SUBSTRING:
6245                 allocatable = 0;
6246                 pointer = 0;
6247                 break;
6248             }
6249         }
6250     }
6251
6252   if (allocatable == 0 && pointer == 0)
6253     {
6254       gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
6255                  &e->where);
6256       goto failure;
6257     }
6258
6259   /* Some checks for the SOURCE tag.  */
6260   if (code->expr3)
6261     {
6262       /* Check F03:C631.  */
6263       if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
6264         {
6265           gfc_error ("Type of entity at %L is type incompatible with "
6266                       "source-expr at %L", &e->where, &code->expr3->where);
6267           goto failure;
6268         }
6269
6270       /* Check F03:C632 and restriction following Note 6.18.  */
6271       if (code->expr3->rank > 0
6272           && conformable_arrays (code->expr3, e) == FAILURE)
6273         goto failure;
6274
6275       /* Check F03:C633.  */
6276       if (code->expr3->ts.kind != e->ts.kind)
6277         {
6278           gfc_error ("The allocate-object at %L and the source-expr at %L "
6279                       "shall have the same kind type parameter",
6280                       &e->where, &code->expr3->where);
6281           goto failure;
6282         }
6283     }
6284   else if (is_abstract&& code->ext.alloc.ts.type == BT_UNKNOWN)
6285     {
6286       gcc_assert (e->ts.type == BT_CLASS);
6287       gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
6288                  "type-spec or SOURCE=", sym->name, &e->where);
6289       goto failure;
6290     }
6291
6292   if (check_intent_in && sym->attr.intent == INTENT_IN)
6293     {
6294       gfc_error ("Cannot allocate INTENT(IN) variable '%s' at %L",
6295                  sym->name, &e->where);
6296       goto failure;
6297     }
6298     
6299   if (!code->expr3)
6300     {
6301       /* Add default initializer for those derived types that need them.  */
6302       if (e->ts.type == BT_DERIVED
6303           && (init_e = gfc_default_initializer (&e->ts)))
6304         {
6305           gfc_code *init_st = gfc_get_code ();
6306           init_st->loc = code->loc;
6307           init_st->op = EXEC_INIT_ASSIGN;
6308           init_st->expr1 = gfc_expr_to_initialize (e);
6309           init_st->expr2 = init_e;
6310           init_st->next = code->next;
6311           code->next = init_st;
6312         }
6313       else if (e->ts.type == BT_CLASS
6314                && ((code->ext.alloc.ts.type == BT_UNKNOWN
6315                     && (init_e = gfc_default_initializer (&e->ts.u.derived->components->ts)))
6316                    || (code->ext.alloc.ts.type == BT_DERIVED
6317                        && (init_e = gfc_default_initializer (&code->ext.alloc.ts)))))
6318         {
6319           gfc_code *init_st = gfc_get_code ();
6320           init_st->loc = code->loc;
6321           init_st->op = EXEC_INIT_ASSIGN;
6322           init_st->expr1 = gfc_expr_to_initialize (e);
6323           init_st->expr2 = init_e;
6324           init_st->next = code->next;
6325           code->next = init_st;
6326         }
6327     }
6328
6329   if (pointer || (dimension == 0 && codimension == 0))
6330     goto success;
6331
6332   /* Make sure the next-to-last reference node is an array specification.  */
6333
6334   if (ref2 == NULL || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
6335       || (dimension && ref2->u.ar.dimen == 0))
6336     {
6337       gfc_error ("Array specification required in ALLOCATE statement "
6338                  "at %L", &e->where);
6339       goto failure;
6340     }
6341
6342   /* Make sure that the array section reference makes sense in the
6343     context of an ALLOCATE specification.  */
6344
6345   ar = &ref2->u.ar;
6346
6347   if (codimension && ar->codimen == 0)
6348     {
6349       gfc_error ("Coarray specification required in ALLOCATE statement "
6350                  "at %L", &e->where);
6351       goto failure;
6352     }
6353
6354   for (i = 0; i < ar->dimen; i++)
6355     {
6356       if (ref2->u.ar.type == AR_ELEMENT)
6357         goto check_symbols;
6358
6359       switch (ar->dimen_type[i])
6360         {
6361         case DIMEN_ELEMENT:
6362           break;
6363
6364         case DIMEN_RANGE:
6365           if (ar->start[i] != NULL
6366               && ar->end[i] != NULL
6367               && ar->stride[i] == NULL)
6368             break;
6369
6370           /* Fall Through...  */
6371
6372         case DIMEN_UNKNOWN:
6373         case DIMEN_VECTOR:
6374         case DIMEN_STAR:
6375           gfc_error ("Bad array specification in ALLOCATE statement at %L",
6376                      &e->where);
6377           goto failure;
6378         }
6379
6380 check_symbols:
6381       for (a = code->ext.alloc.list; a; a = a->next)
6382         {
6383           sym = a->expr->symtree->n.sym;
6384
6385           /* TODO - check derived type components.  */
6386           if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
6387             continue;
6388
6389           if ((ar->start[i] != NULL
6390                && gfc_find_sym_in_expr (sym, ar->start[i]))
6391               || (ar->end[i] != NULL
6392                   && gfc_find_sym_in_expr (sym, ar->end[i])))
6393             {
6394               gfc_error ("'%s' must not appear in the array specification at "
6395                          "%L in the same ALLOCATE statement where it is "
6396                          "itself allocated", sym->name, &ar->where);
6397               goto failure;
6398             }
6399         }
6400     }
6401
6402   for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
6403     {
6404       if (ar->dimen_type[i] == DIMEN_ELEMENT
6405           || ar->dimen_type[i] == DIMEN_RANGE)
6406         {
6407           if (i == (ar->dimen + ar->codimen - 1))
6408             {
6409               gfc_error ("Expected '*' in coindex specification in ALLOCATE "
6410                          "statement at %L", &e->where);
6411               goto failure;
6412             }
6413           break;
6414         }
6415
6416       if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
6417           && ar->stride[i] == NULL)
6418         break;
6419
6420       gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
6421                  &e->where);
6422       goto failure;
6423     }
6424
6425   if (codimension && ar->as->rank == 0)
6426     {
6427       gfc_error ("Sorry, allocatable scalar coarrays are not yet supported "
6428                  "at %L", &e->where);
6429       goto failure;
6430     }
6431
6432 success:
6433   return SUCCESS;
6434
6435 failure:
6436   return FAILURE;
6437 }
6438
6439 static void
6440 resolve_allocate_deallocate (gfc_code *code, const char *fcn)
6441 {
6442   gfc_expr *stat, *errmsg, *pe, *qe;
6443   gfc_alloc *a, *p, *q;
6444
6445   stat = code->expr1 ? code->expr1 : NULL;
6446
6447   errmsg = code->expr2 ? code->expr2 : NULL;
6448
6449   /* Check the stat variable.  */
6450   if (stat)
6451     {
6452       if (stat->symtree->n.sym->attr.intent == INTENT_IN)
6453         gfc_error ("Stat-variable '%s' at %L cannot be INTENT(IN)",
6454                    stat->symtree->n.sym->name, &stat->where);
6455
6456       if (gfc_pure (NULL) && gfc_impure_variable (stat->symtree->n.sym))
6457         gfc_error ("Illegal stat-variable at %L for a PURE procedure",
6458                    &stat->where);
6459
6460       if ((stat->ts.type != BT_INTEGER
6461            && !(stat->ref && (stat->ref->type == REF_ARRAY
6462                               || stat->ref->type == REF_COMPONENT)))
6463           || stat->rank > 0)
6464         gfc_error ("Stat-variable at %L must be a scalar INTEGER "
6465                    "variable", &stat->where);
6466
6467       for (p = code->ext.alloc.list; p; p = p->next)
6468         if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
6469           gfc_error ("Stat-variable at %L shall not be %sd within "
6470                      "the same %s statement", &stat->where, fcn, fcn);
6471     }
6472
6473   /* Check the errmsg variable.  */
6474   if (errmsg)
6475     {
6476       if (!stat)
6477         gfc_warning ("ERRMSG at %L is useless without a STAT tag",
6478                      &errmsg->where);
6479
6480       if (errmsg->symtree->n.sym->attr.intent == INTENT_IN)
6481         gfc_error ("Errmsg-variable '%s' at %L cannot be INTENT(IN)",
6482                    errmsg->symtree->n.sym->name, &errmsg->where);
6483
6484       if (gfc_pure (NULL) && gfc_impure_variable (errmsg->symtree->n.sym))
6485         gfc_error ("Illegal errmsg-variable at %L for a PURE procedure",
6486                    &errmsg->where);
6487
6488       if ((errmsg->ts.type != BT_CHARACTER
6489            && !(errmsg->ref
6490                 && (errmsg->ref->type == REF_ARRAY
6491                     || errmsg->ref->type == REF_COMPONENT)))
6492           || errmsg->rank > 0 )
6493         gfc_error ("Errmsg-variable at %L must be a scalar CHARACTER "
6494                    "variable", &errmsg->where);
6495
6496       for (p = code->ext.alloc.list; p; p = p->next)
6497         if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
6498           gfc_error ("Errmsg-variable at %L shall not be %sd within "
6499                      "the same %s statement", &errmsg->where, fcn, fcn);
6500     }
6501
6502   /* Check that an allocate-object appears only once in the statement.  
6503      FIXME: Checking derived types is disabled.  */
6504   for (p = code->ext.alloc.list; p; p = p->next)
6505     {
6506       pe = p->expr;
6507       if ((pe->ref && pe->ref->type != REF_COMPONENT)
6508            && (pe->symtree->n.sym->ts.type != BT_DERIVED))
6509         {
6510           for (q = p->next; q; q = q->next)
6511             {
6512               qe = q->expr;
6513               if ((qe->ref && qe->ref->type != REF_COMPONENT)
6514                   && (qe->symtree->n.sym->ts.type != BT_DERIVED)
6515                   && (pe->symtree->n.sym->name == qe->symtree->n.sym->name))
6516                 gfc_error ("Allocate-object at %L also appears at %L",
6517                            &pe->where, &qe->where);
6518             }
6519         }
6520     }
6521
6522   if (strcmp (fcn, "ALLOCATE") == 0)
6523     {
6524       for (a = code->ext.alloc.list; a; a = a->next)
6525         resolve_allocate_expr (a->expr, code);
6526     }
6527   else
6528     {
6529       for (a = code->ext.alloc.list; a; a = a->next)
6530         resolve_deallocate_expr (a->expr);
6531     }
6532 }
6533
6534
6535 /************ SELECT CASE resolution subroutines ************/
6536
6537 /* Callback function for our mergesort variant.  Determines interval
6538    overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
6539    op1 > op2.  Assumes we're not dealing with the default case.  
6540    We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
6541    There are nine situations to check.  */
6542
6543 static int
6544 compare_cases (const gfc_case *op1, const gfc_case *op2)
6545 {
6546   int retval;
6547
6548   if (op1->low == NULL) /* op1 = (:L)  */
6549     {
6550       /* op2 = (:N), so overlap.  */
6551       retval = 0;
6552       /* op2 = (M:) or (M:N),  L < M  */
6553       if (op2->low != NULL
6554           && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
6555         retval = -1;
6556     }
6557   else if (op1->high == NULL) /* op1 = (K:)  */
6558     {
6559       /* op2 = (M:), so overlap.  */
6560       retval = 0;
6561       /* op2 = (:N) or (M:N), K > N  */
6562       if (op2->high != NULL
6563           && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
6564         retval = 1;
6565     }
6566   else /* op1 = (K:L)  */
6567     {
6568       if (op2->low == NULL)       /* op2 = (:N), K > N  */
6569         retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
6570                  ? 1 : 0;
6571       else if (op2->high == NULL) /* op2 = (M:), L < M  */
6572         retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
6573                  ? -1 : 0;
6574       else                      /* op2 = (M:N)  */
6575         {
6576           retval =  0;
6577           /* L < M  */
6578           if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
6579             retval =  -1;
6580           /* K > N  */
6581           else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
6582             retval =  1;
6583         }
6584     }
6585
6586   return retval;
6587 }
6588
6589
6590 /* Merge-sort a double linked case list, detecting overlap in the
6591    process.  LIST is the head of the double linked case list before it
6592    is sorted.  Returns the head of the sorted list if we don't see any
6593    overlap, or NULL otherwise.  */
6594
6595 static gfc_case *
6596 check_case_overlap (gfc_case *list)
6597 {
6598   gfc_case *p, *q, *e, *tail;
6599   int insize, nmerges, psize, qsize, cmp, overlap_seen;
6600
6601   /* If the passed list was empty, return immediately.  */
6602   if (!list)
6603     return NULL;
6604
6605   overlap_seen = 0;
6606   insize = 1;
6607
6608   /* Loop unconditionally.  The only exit from this loop is a return
6609      statement, when we've finished sorting the case list.  */
6610   for (;;)
6611     {
6612       p = list;
6613       list = NULL;
6614       tail = NULL;
6615
6616       /* Count the number of merges we do in this pass.  */
6617       nmerges = 0;
6618
6619       /* Loop while there exists a merge to be done.  */
6620       while (p)
6621         {
6622           int i;
6623
6624           /* Count this merge.  */
6625           nmerges++;
6626
6627           /* Cut the list in two pieces by stepping INSIZE places
6628              forward in the list, starting from P.  */
6629           psize = 0;
6630           q = p;
6631           for (i = 0; i < insize; i++)
6632             {
6633               psize++;
6634               q = q->right;
6635               if (!q)
6636                 break;
6637             }
6638           qsize = insize;
6639
6640           /* Now we have two lists.  Merge them!  */
6641           while (psize > 0 || (qsize > 0 && q != NULL))
6642             {
6643               /* See from which the next case to merge comes from.  */
6644               if (psize == 0)
6645                 {
6646                   /* P is empty so the next case must come from Q.  */
6647                   e = q;
6648                   q = q->right;
6649                   qsize--;
6650                 }
6651               else if (qsize == 0 || q == NULL)
6652                 {
6653                   /* Q is empty.  */
6654                   e = p;
6655                   p = p->right;
6656                   psize--;
6657                 }
6658               else
6659                 {
6660                   cmp = compare_cases (p, q);
6661                   if (cmp < 0)
6662                     {
6663                       /* The whole case range for P is less than the
6664                          one for Q.  */
6665                       e = p;
6666                       p = p->right;
6667                       psize--;
6668                     }
6669                   else if (cmp > 0)
6670                     {
6671                       /* The whole case range for Q is greater than
6672                          the case range for P.  */
6673                       e = q;
6674                       q = q->right;
6675                       qsize--;
6676                     }
6677                   else
6678                     {
6679                       /* The cases overlap, or they are the same
6680                          element in the list.  Either way, we must
6681                          issue an error and get the next case from P.  */
6682                       /* FIXME: Sort P and Q by line number.  */
6683                       gfc_error ("CASE label at %L overlaps with CASE "
6684                                  "label at %L", &p->where, &q->where);
6685                       overlap_seen = 1;
6686                       e = p;
6687                       p = p->right;
6688                       psize--;
6689                     }
6690                 }
6691
6692                 /* Add the next element to the merged list.  */
6693               if (tail)
6694                 tail->right = e;
6695               else
6696                 list = e;
6697               e->left = tail;
6698               tail = e;
6699             }
6700
6701           /* P has now stepped INSIZE places along, and so has Q.  So
6702              they're the same.  */
6703           p = q;
6704         }
6705       tail->right = NULL;
6706
6707       /* If we have done only one merge or none at all, we've
6708          finished sorting the cases.  */
6709       if (nmerges <= 1)
6710         {
6711           if (!overlap_seen)
6712             return list;
6713           else
6714             return NULL;
6715         }
6716
6717       /* Otherwise repeat, merging lists twice the size.  */
6718       insize *= 2;
6719     }
6720 }
6721
6722
6723 /* Check to see if an expression is suitable for use in a CASE statement.
6724    Makes sure that all case expressions are scalar constants of the same
6725    type.  Return FAILURE if anything is wrong.  */
6726
6727 static gfc_try
6728 validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
6729 {
6730   if (e == NULL) return SUCCESS;
6731
6732   if (e->ts.type != case_expr->ts.type)
6733     {
6734       gfc_error ("Expression in CASE statement at %L must be of type %s",
6735                  &e->where, gfc_basic_typename (case_expr->ts.type));
6736       return FAILURE;
6737     }
6738
6739   /* C805 (R808) For a given case-construct, each case-value shall be of
6740      the same type as case-expr.  For character type, length differences
6741      are allowed, but the kind type parameters shall be the same.  */
6742
6743   if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
6744     {
6745       gfc_error ("Expression in CASE statement at %L must be of kind %d",
6746                  &e->where, case_expr->ts.kind);
6747       return FAILURE;
6748     }
6749
6750   /* Convert the case value kind to that of case expression kind, if needed.
6751      FIXME:  Should a warning be issued?  */
6752   if (e->ts.kind != case_expr->ts.kind)
6753     gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
6754
6755   if (e->rank != 0)
6756     {
6757       gfc_error ("Expression in CASE statement at %L must be scalar",
6758                  &e->where);
6759       return FAILURE;
6760     }
6761
6762   return SUCCESS;
6763 }
6764
6765
6766 /* Given a completely parsed select statement, we:
6767
6768      - Validate all expressions and code within the SELECT.
6769      - Make sure that the selection expression is not of the wrong type.
6770      - Make sure that no case ranges overlap.
6771      - Eliminate unreachable cases and unreachable code resulting from
6772        removing case labels.
6773
6774    The standard does allow unreachable cases, e.g. CASE (5:3).  But
6775    they are a hassle for code generation, and to prevent that, we just
6776    cut them out here.  This is not necessary for overlapping cases
6777    because they are illegal and we never even try to generate code.
6778
6779    We have the additional caveat that a SELECT construct could have
6780    been a computed GOTO in the source code. Fortunately we can fairly
6781    easily work around that here: The case_expr for a "real" SELECT CASE
6782    is in code->expr1, but for a computed GOTO it is in code->expr2. All
6783    we have to do is make sure that the case_expr is a scalar integer
6784    expression.  */
6785
6786 static void
6787 resolve_select (gfc_code *code)
6788 {
6789   gfc_code *body;
6790   gfc_expr *case_expr;
6791   gfc_case *cp, *default_case, *tail, *head;
6792   int seen_unreachable;
6793   int seen_logical;
6794   int ncases;
6795   bt type;
6796   gfc_try t;
6797
6798   if (code->expr1 == NULL)
6799     {
6800       /* This was actually a computed GOTO statement.  */
6801       case_expr = code->expr2;
6802       if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
6803         gfc_error ("Selection expression in computed GOTO statement "
6804                    "at %L must be a scalar integer expression",
6805                    &case_expr->where);
6806
6807       /* Further checking is not necessary because this SELECT was built
6808          by the compiler, so it should always be OK.  Just move the
6809          case_expr from expr2 to expr so that we can handle computed
6810          GOTOs as normal SELECTs from here on.  */
6811       code->expr1 = code->expr2;
6812       code->expr2 = NULL;
6813       return;
6814     }
6815
6816   case_expr = code->expr1;
6817
6818   type = case_expr->ts.type;
6819   if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER)
6820     {
6821       gfc_error ("Argument of SELECT statement at %L cannot be %s",
6822                  &case_expr->where, gfc_typename (&case_expr->ts));
6823
6824       /* Punt. Going on here just produce more garbage error messages.  */
6825       return;
6826     }
6827
6828   if (case_expr->rank != 0)
6829     {
6830       gfc_error ("Argument of SELECT statement at %L must be a scalar "
6831                  "expression", &case_expr->where);
6832
6833       /* Punt.  */
6834       return;
6835     }
6836
6837   /* PR 19168 has a long discussion concerning a mismatch of the kinds
6838      of the SELECT CASE expression and its CASE values.  Walk the lists
6839      of case values, and if we find a mismatch, promote case_expr to
6840      the appropriate kind.  */
6841
6842   if (type == BT_LOGICAL || type == BT_INTEGER)
6843     {
6844       for (body = code->block; body; body = body->block)
6845         {
6846           /* Walk the case label list.  */
6847           for (cp = body->ext.case_list; cp; cp = cp->next)
6848             {
6849               /* Intercept the DEFAULT case.  It does not have a kind.  */
6850               if (cp->low == NULL && cp->high == NULL)
6851                 continue;
6852
6853               /* Unreachable case ranges are discarded, so ignore.  */
6854               if (cp->low != NULL && cp->high != NULL
6855                   && cp->low != cp->high
6856                   && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
6857                 continue;
6858
6859               /* FIXME: Should a warning be issued?  */
6860               if (cp->low != NULL
6861                   && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
6862                 gfc_convert_type_warn (case_expr, &cp->low->ts, 2, 0);
6863
6864               if (cp->high != NULL
6865                   && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
6866                 gfc_convert_type_warn (case_expr, &cp->high->ts, 2, 0);
6867             }
6868          }
6869     }
6870
6871   /* Assume there is no DEFAULT case.  */
6872   default_case = NULL;
6873   head = tail = NULL;
6874   ncases = 0;
6875   seen_logical = 0;
6876
6877   for (body = code->block; body; body = body->block)
6878     {
6879       /* Assume the CASE list is OK, and all CASE labels can be matched.  */
6880       t = SUCCESS;
6881       seen_unreachable = 0;
6882
6883       /* Walk the case label list, making sure that all case labels
6884          are legal.  */
6885       for (cp = body->ext.case_list; cp; cp = cp->next)
6886         {
6887           /* Count the number of cases in the whole construct.  */
6888           ncases++;
6889
6890           /* Intercept the DEFAULT case.  */
6891           if (cp->low == NULL && cp->high == NULL)
6892             {
6893               if (default_case != NULL)
6894                 {
6895                   gfc_error ("The DEFAULT CASE at %L cannot be followed "
6896                              "by a second DEFAULT CASE at %L",
6897                              &default_case->where, &cp->where);
6898                   t = FAILURE;
6899                   break;
6900                 }
6901               else
6902                 {
6903                   default_case = cp;
6904                   continue;
6905                 }
6906             }
6907
6908           /* Deal with single value cases and case ranges.  Errors are
6909              issued from the validation function.  */
6910           if(validate_case_label_expr (cp->low, case_expr) != SUCCESS
6911              || validate_case_label_expr (cp->high, case_expr) != SUCCESS)
6912             {
6913               t = FAILURE;
6914               break;
6915             }
6916
6917           if (type == BT_LOGICAL
6918               && ((cp->low == NULL || cp->high == NULL)
6919                   || cp->low != cp->high))
6920             {
6921               gfc_error ("Logical range in CASE statement at %L is not "
6922                          "allowed", &cp->low->where);
6923               t = FAILURE;
6924               break;
6925             }
6926
6927           if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
6928             {
6929               int value;
6930               value = cp->low->value.logical == 0 ? 2 : 1;
6931               if (value & seen_logical)
6932                 {
6933                   gfc_error ("constant logical value in CASE statement "
6934                              "is repeated at %L",
6935                              &cp->low->where);
6936                   t = FAILURE;
6937                   break;
6938                 }
6939               seen_logical |= value;
6940             }
6941
6942           if (cp->low != NULL && cp->high != NULL
6943               && cp->low != cp->high
6944               && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
6945             {
6946               if (gfc_option.warn_surprising)
6947                 gfc_warning ("Range specification at %L can never "
6948                              "be matched", &cp->where);
6949
6950               cp->unreachable = 1;
6951               seen_unreachable = 1;
6952             }
6953           else
6954             {
6955               /* If the case range can be matched, it can also overlap with
6956                  other cases.  To make sure it does not, we put it in a
6957                  double linked list here.  We sort that with a merge sort
6958                  later on to detect any overlapping cases.  */
6959               if (!head)
6960                 {
6961                   head = tail = cp;
6962                   head->right = head->left = NULL;
6963                 }
6964               else
6965                 {
6966                   tail->right = cp;
6967                   tail->right->left = tail;
6968                   tail = tail->right;
6969                   tail->right = NULL;
6970                 }
6971             }
6972         }
6973
6974       /* It there was a failure in the previous case label, give up
6975          for this case label list.  Continue with the next block.  */
6976       if (t == FAILURE)
6977         continue;
6978
6979       /* See if any case labels that are unreachable have been seen.
6980          If so, we eliminate them.  This is a bit of a kludge because
6981          the case lists for a single case statement (label) is a
6982          single forward linked lists.  */
6983       if (seen_unreachable)
6984       {
6985         /* Advance until the first case in the list is reachable.  */
6986         while (body->ext.case_list != NULL
6987                && body->ext.case_list->unreachable)
6988           {
6989             gfc_case *n = body->ext.case_list;
6990             body->ext.case_list = body->ext.case_list->next;
6991             n->next = NULL;
6992             gfc_free_case_list (n);
6993           }
6994
6995         /* Strip all other unreachable cases.  */
6996         if (body->ext.case_list)
6997           {
6998             for (cp = body->ext.case_list; cp->next; cp = cp->next)
6999               {
7000                 if (cp->next->unreachable)
7001                   {
7002                     gfc_case *n = cp->next;
7003                     cp->next = cp->next->next;
7004                     n->next = NULL;
7005                     gfc_free_case_list (n);
7006                   }
7007               }
7008           }
7009       }
7010     }
7011
7012   /* See if there were overlapping cases.  If the check returns NULL,
7013      there was overlap.  In that case we don't do anything.  If head
7014      is non-NULL, we prepend the DEFAULT case.  The sorted list can
7015      then used during code generation for SELECT CASE constructs with
7016      a case expression of a CHARACTER type.  */
7017   if (head)
7018     {
7019       head = check_case_overlap (head);
7020
7021       /* Prepend the default_case if it is there.  */
7022       if (head != NULL && default_case)
7023         {
7024           default_case->left = NULL;
7025           default_case->right = head;
7026           head->left = default_case;
7027         }
7028     }
7029
7030   /* Eliminate dead blocks that may be the result if we've seen
7031      unreachable case labels for a block.  */
7032   for (body = code; body && body->block; body = body->block)
7033     {
7034       if (body->block->ext.case_list == NULL)
7035         {
7036           /* Cut the unreachable block from the code chain.  */
7037           gfc_code *c = body->block;
7038           body->block = c->block;
7039
7040           /* Kill the dead block, but not the blocks below it.  */
7041           c->block = NULL;
7042           gfc_free_statements (c);
7043         }
7044     }
7045
7046   /* More than two cases is legal but insane for logical selects.
7047      Issue a warning for it.  */
7048   if (gfc_option.warn_surprising && type == BT_LOGICAL
7049       && ncases > 2)
7050     gfc_warning ("Logical SELECT CASE block at %L has more that two cases",
7051                  &code->loc);
7052 }
7053
7054
7055 /* Check if a derived type is extensible.  */
7056
7057 bool
7058 gfc_type_is_extensible (gfc_symbol *sym)
7059 {
7060   return !(sym->attr.is_bind_c || sym->attr.sequence);
7061 }
7062
7063
7064 /* Resolve a SELECT TYPE statement.  */
7065
7066 static void
7067 resolve_select_type (gfc_code *code)
7068 {
7069   gfc_symbol *selector_type;
7070   gfc_code *body, *new_st, *if_st, *tail;
7071   gfc_code *class_is = NULL, *default_case = NULL;
7072   gfc_case *c;
7073   gfc_symtree *st;
7074   char name[GFC_MAX_SYMBOL_LEN];
7075   gfc_namespace *ns;
7076   int error = 0;
7077
7078   ns = code->ext.ns;
7079   gfc_resolve (ns);
7080
7081   if (code->expr2)
7082     selector_type = code->expr2->ts.u.derived->components->ts.u.derived;
7083   else
7084     selector_type = code->expr1->ts.u.derived->components->ts.u.derived;
7085
7086   /* Loop over TYPE IS / CLASS IS cases.  */
7087   for (body = code->block; body; body = body->block)
7088     {
7089       c = body->ext.case_list;
7090
7091       /* Check F03:C815.  */
7092       if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
7093           && !gfc_type_is_extensible (c->ts.u.derived))
7094         {
7095           gfc_error ("Derived type '%s' at %L must be extensible",
7096                      c->ts.u.derived->name, &c->where);
7097           error++;
7098           continue;
7099         }
7100
7101       /* Check F03:C816.  */
7102       if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
7103           && !gfc_type_is_extension_of (selector_type, c->ts.u.derived))
7104         {
7105           gfc_error ("Derived type '%s' at %L must be an extension of '%s'",
7106                      c->ts.u.derived->name, &c->where, selector_type->name);
7107           error++;
7108           continue;
7109         }
7110
7111       /* Intercept the DEFAULT case.  */
7112       if (c->ts.type == BT_UNKNOWN)
7113         {
7114           /* Check F03:C818.  */
7115           if (default_case)
7116             {
7117               gfc_error ("The DEFAULT CASE at %L cannot be followed "
7118                          "by a second DEFAULT CASE at %L",
7119                          &default_case->ext.case_list->where, &c->where);
7120               error++;
7121               continue;
7122             }
7123           else
7124             default_case = body;
7125         }
7126     }
7127     
7128   if (error>0)
7129     return;
7130
7131   if (code->expr2)
7132     {
7133       /* Insert assignment for selector variable.  */
7134       new_st = gfc_get_code ();
7135       new_st->op = EXEC_ASSIGN;
7136       new_st->expr1 = gfc_copy_expr (code->expr1);
7137       new_st->expr2 = gfc_copy_expr (code->expr2);
7138       ns->code = new_st;
7139     }
7140
7141   /* Put SELECT TYPE statement inside a BLOCK.  */
7142   new_st = gfc_get_code ();
7143   new_st->op = code->op;
7144   new_st->expr1 = code->expr1;
7145   new_st->expr2 = code->expr2;
7146   new_st->block = code->block;
7147   if (!ns->code)
7148     ns->code = new_st;
7149   else
7150     ns->code->next = new_st;
7151   code->op = EXEC_BLOCK;
7152   code->expr1 = code->expr2 =  NULL;
7153   code->block = NULL;
7154
7155   code = new_st;
7156
7157   /* Transform to EXEC_SELECT.  */
7158   code->op = EXEC_SELECT;
7159   gfc_add_component_ref (code->expr1, "$vptr");
7160   gfc_add_component_ref (code->expr1, "$hash");
7161
7162   /* Loop over TYPE IS / CLASS IS cases.  */
7163   for (body = code->block; body; body = body->block)
7164     {
7165       c = body->ext.case_list;
7166
7167       if (c->ts.type == BT_DERIVED)
7168         c->low = c->high = gfc_get_int_expr (gfc_default_integer_kind, NULL,
7169                                              c->ts.u.derived->hash_value);
7170
7171       else if (c->ts.type == BT_UNKNOWN)
7172         continue;
7173
7174       /* Assign temporary to selector.  */
7175       if (c->ts.type == BT_CLASS)
7176         sprintf (name, "tmp$class$%s", c->ts.u.derived->name);
7177       else
7178         sprintf (name, "tmp$type$%s", c->ts.u.derived->name);
7179       st = gfc_find_symtree (ns->sym_root, name);
7180       new_st = gfc_get_code ();
7181       new_st->expr1 = gfc_get_variable_expr (st);
7182       new_st->expr2 = gfc_get_variable_expr (code->expr1->symtree);
7183       if (c->ts.type == BT_DERIVED)
7184         {
7185           new_st->op = EXEC_POINTER_ASSIGN;
7186           gfc_add_component_ref (new_st->expr2, "$data");
7187         }
7188       else
7189         new_st->op = EXEC_POINTER_ASSIGN;
7190       new_st->next = body->next;
7191       body->next = new_st;
7192     }
7193     
7194   /* Take out CLASS IS cases for separate treatment.  */
7195   body = code;
7196   while (body && body->block)
7197     {
7198       if (body->block->ext.case_list->ts.type == BT_CLASS)
7199         {
7200           /* Add to class_is list.  */
7201           if (class_is == NULL)
7202             { 
7203               class_is = body->block;
7204               tail = class_is;
7205             }
7206           else
7207             {
7208               for (tail = class_is; tail->block; tail = tail->block) ;
7209               tail->block = body->block;
7210               tail = tail->block;
7211             }
7212           /* Remove from EXEC_SELECT list.  */
7213           body->block = body->block->block;
7214           tail->block = NULL;
7215         }
7216       else
7217         body = body->block;
7218     }
7219
7220   if (class_is)
7221     {
7222       gfc_symbol *vtab;
7223       
7224       if (!default_case)
7225         {
7226           /* Add a default case to hold the CLASS IS cases.  */
7227           for (tail = code; tail->block; tail = tail->block) ;
7228           tail->block = gfc_get_code ();
7229           tail = tail->block;
7230           tail->op = EXEC_SELECT_TYPE;
7231           tail->ext.case_list = gfc_get_case ();
7232           tail->ext.case_list->ts.type = BT_UNKNOWN;
7233           tail->next = NULL;
7234           default_case = tail;
7235         }
7236
7237       /* More than one CLASS IS block?  */
7238       if (class_is->block)
7239         {
7240           gfc_code **c1,*c2;
7241           bool swapped;
7242           /* Sort CLASS IS blocks by extension level.  */
7243           do
7244             {
7245               swapped = false;
7246               for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
7247                 {
7248                   c2 = (*c1)->block;
7249                   /* F03:C817 (check for doubles).  */
7250                   if ((*c1)->ext.case_list->ts.u.derived->hash_value
7251                       == c2->ext.case_list->ts.u.derived->hash_value)
7252                     {
7253                       gfc_error ("Double CLASS IS block in SELECT TYPE "
7254                                  "statement at %L", &c2->ext.case_list->where);
7255                       return;
7256                     }
7257                   if ((*c1)->ext.case_list->ts.u.derived->attr.extension
7258                       < c2->ext.case_list->ts.u.derived->attr.extension)
7259                     {
7260                       /* Swap.  */
7261                       (*c1)->block = c2->block;
7262                       c2->block = *c1;
7263                       *c1 = c2;
7264                       swapped = true;
7265                     }
7266                 }
7267             }
7268           while (swapped);
7269         }
7270         
7271       /* Generate IF chain.  */
7272       if_st = gfc_get_code ();
7273       if_st->op = EXEC_IF;
7274       new_st = if_st;
7275       for (body = class_is; body; body = body->block)
7276         {
7277           new_st->block = gfc_get_code ();
7278           new_st = new_st->block;
7279           new_st->op = EXEC_IF;
7280           /* Set up IF condition: Call _gfortran_is_extension_of.  */
7281           new_st->expr1 = gfc_get_expr ();
7282           new_st->expr1->expr_type = EXPR_FUNCTION;
7283           new_st->expr1->ts.type = BT_LOGICAL;
7284           new_st->expr1->ts.kind = 4;
7285           new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
7286           new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
7287           new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
7288           /* Set up arguments.  */
7289           new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
7290           new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (code->expr1->symtree);
7291           gfc_add_component_ref (new_st->expr1->value.function.actual->expr, "$vptr");
7292           vtab = gfc_find_derived_vtab (body->ext.case_list->ts.u.derived, true);
7293           st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
7294           new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
7295           new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
7296           new_st->next = body->next;
7297         }
7298         if (default_case->next)
7299           {
7300             new_st->block = gfc_get_code ();
7301             new_st = new_st->block;
7302             new_st->op = EXEC_IF;
7303             new_st->next = default_case->next;
7304           }
7305           
7306         /* Replace CLASS DEFAULT code by the IF chain.  */
7307         default_case->next = if_st;
7308     }
7309
7310   resolve_select (code);
7311
7312 }
7313
7314
7315 /* Resolve a transfer statement. This is making sure that:
7316    -- a derived type being transferred has only non-pointer components
7317    -- a derived type being transferred doesn't have private components, unless 
7318       it's being transferred from the module where the type was defined
7319    -- we're not trying to transfer a whole assumed size array.  */
7320
7321 static void
7322 resolve_transfer (gfc_code *code)
7323 {
7324   gfc_typespec *ts;
7325   gfc_symbol *sym;
7326   gfc_ref *ref;
7327   gfc_expr *exp;
7328
7329   exp = code->expr1;
7330
7331   if (exp->expr_type != EXPR_VARIABLE && exp->expr_type != EXPR_FUNCTION)
7332     return;
7333
7334   sym = exp->symtree->n.sym;
7335   ts = &sym->ts;
7336
7337   /* Go to actual component transferred.  */
7338   for (ref = code->expr1->ref; ref; ref = ref->next)
7339     if (ref->type == REF_COMPONENT)
7340       ts = &ref->u.c.component->ts;
7341
7342   if (ts->type == BT_DERIVED)
7343     {
7344       /* Check that transferred derived type doesn't contain POINTER
7345          components.  */
7346       if (ts->u.derived->attr.pointer_comp)
7347         {
7348           gfc_error ("Data transfer element at %L cannot have "
7349                      "POINTER components", &code->loc);
7350           return;
7351         }
7352
7353       if (ts->u.derived->attr.alloc_comp)
7354         {
7355           gfc_error ("Data transfer element at %L cannot have "
7356                      "ALLOCATABLE components", &code->loc);
7357           return;
7358         }
7359
7360       if (derived_inaccessible (ts->u.derived))
7361         {
7362           gfc_error ("Data transfer element at %L cannot have "
7363                      "PRIVATE components",&code->loc);
7364           return;
7365         }
7366     }
7367
7368   if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE
7369       && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
7370     {
7371       gfc_error ("Data transfer element at %L cannot be a full reference to "
7372                  "an assumed-size array", &code->loc);
7373       return;
7374     }
7375 }
7376
7377
7378 /*********** Toplevel code resolution subroutines ***********/
7379
7380 /* Find the set of labels that are reachable from this block.  We also
7381    record the last statement in each block.  */
7382      
7383 static void
7384 find_reachable_labels (gfc_code *block)
7385 {
7386   gfc_code *c;
7387
7388   if (!block)
7389     return;
7390
7391   cs_base->reachable_labels = bitmap_obstack_alloc (&labels_obstack);
7392
7393   /* Collect labels in this block.  We don't keep those corresponding
7394      to END {IF|SELECT}, these are checked in resolve_branch by going
7395      up through the code_stack.  */
7396   for (c = block; c; c = c->next)
7397     {
7398       if (c->here && c->op != EXEC_END_BLOCK)
7399         bitmap_set_bit (cs_base->reachable_labels, c->here->value);
7400     }
7401
7402   /* Merge with labels from parent block.  */
7403   if (cs_base->prev)
7404     {
7405       gcc_assert (cs_base->prev->reachable_labels);
7406       bitmap_ior_into (cs_base->reachable_labels,
7407                        cs_base->prev->reachable_labels);
7408     }
7409 }
7410
7411
7412 static void
7413 resolve_sync (gfc_code *code)
7414 {
7415   /* Check imageset. The * case matches expr1 == NULL.  */
7416   if (code->expr1)
7417     {
7418       if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
7419         gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
7420                    "INTEGER expression", &code->expr1->where);
7421       if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
7422           && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
7423         gfc_error ("Imageset argument at %L must between 1 and num_images()",
7424                    &code->expr1->where);
7425       else if (code->expr1->expr_type == EXPR_ARRAY
7426                && gfc_simplify_expr (code->expr1, 0) == SUCCESS)
7427         {
7428            gfc_constructor *cons;
7429            cons = gfc_constructor_first (code->expr1->value.constructor);
7430            for (; cons; cons = gfc_constructor_next (cons))
7431              if (cons->expr->expr_type == EXPR_CONSTANT
7432                  &&  mpz_cmp_si (cons->expr->value.integer, 1) < 0)
7433                gfc_error ("Imageset argument at %L must between 1 and "
7434                           "num_images()", &cons->expr->where);
7435         }
7436     }
7437
7438   /* Check STAT.  */
7439   if (code->expr2
7440       && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
7441           || code->expr2->expr_type != EXPR_VARIABLE))
7442     gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
7443                &code->expr2->where);
7444
7445   /* Check ERRMSG.  */
7446   if (code->expr3
7447       && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
7448           || code->expr3->expr_type != EXPR_VARIABLE))
7449     gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
7450                &code->expr3->where);
7451 }
7452
7453
7454 /* Given a branch to a label, see if the branch is conforming.
7455    The code node describes where the branch is located.  */
7456
7457 static void
7458 resolve_branch (gfc_st_label *label, gfc_code *code)
7459 {
7460   code_stack *stack;
7461
7462   if (label == NULL)
7463     return;
7464
7465   /* Step one: is this a valid branching target?  */
7466
7467   if (label->defined == ST_LABEL_UNKNOWN)
7468     {
7469       gfc_error ("Label %d referenced at %L is never defined", label->value,
7470                  &label->where);
7471       return;
7472     }
7473
7474   if (label->defined != ST_LABEL_TARGET)
7475     {
7476       gfc_error ("Statement at %L is not a valid branch target statement "
7477                  "for the branch statement at %L", &label->where, &code->loc);
7478       return;
7479     }
7480
7481   /* Step two: make sure this branch is not a branch to itself ;-)  */
7482
7483   if (code->here == label)
7484     {
7485       gfc_warning ("Branch at %L may result in an infinite loop", &code->loc);
7486       return;
7487     }
7488
7489   /* Step three:  See if the label is in the same block as the
7490      branching statement.  The hard work has been done by setting up
7491      the bitmap reachable_labels.  */
7492
7493   if (bitmap_bit_p (cs_base->reachable_labels, label->value))
7494     {
7495       /* Check now whether there is a CRITICAL construct; if so, check
7496          whether the label is still visible outside of the CRITICAL block,
7497          which is invalid.  */
7498       for (stack = cs_base; stack; stack = stack->prev)
7499         if (stack->current->op == EXEC_CRITICAL
7500             && bitmap_bit_p (stack->reachable_labels, label->value))
7501           gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
7502                       " at %L", &code->loc, &label->where);
7503
7504       return;
7505     }
7506
7507   /* Step four:  If we haven't found the label in the bitmap, it may
7508     still be the label of the END of the enclosing block, in which
7509     case we find it by going up the code_stack.  */
7510
7511   for (stack = cs_base; stack; stack = stack->prev)
7512     {
7513       if (stack->current->next && stack->current->next->here == label)
7514         break;
7515       if (stack->current->op == EXEC_CRITICAL)
7516         {
7517           /* Note: A label at END CRITICAL does not leave the CRITICAL
7518              construct as END CRITICAL is still part of it.  */
7519           gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
7520                       " at %L", &code->loc, &label->where);
7521           return;
7522         }
7523     }
7524
7525   if (stack)
7526     {
7527       gcc_assert (stack->current->next->op == EXEC_END_BLOCK);
7528       return;
7529     }
7530
7531   /* The label is not in an enclosing block, so illegal.  This was
7532      allowed in Fortran 66, so we allow it as extension.  No
7533      further checks are necessary in this case.  */
7534   gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
7535                   "as the GOTO statement at %L", &label->where,
7536                   &code->loc);
7537   return;
7538 }
7539
7540
7541 /* Check whether EXPR1 has the same shape as EXPR2.  */
7542
7543 static gfc_try
7544 resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
7545 {
7546   mpz_t shape[GFC_MAX_DIMENSIONS];
7547   mpz_t shape2[GFC_MAX_DIMENSIONS];
7548   gfc_try result = FAILURE;
7549   int i;
7550
7551   /* Compare the rank.  */
7552   if (expr1->rank != expr2->rank)
7553     return result;
7554
7555   /* Compare the size of each dimension.  */
7556   for (i=0; i<expr1->rank; i++)
7557     {
7558       if (gfc_array_dimen_size (expr1, i, &shape[i]) == FAILURE)
7559         goto ignore;
7560
7561       if (gfc_array_dimen_size (expr2, i, &shape2[i]) == FAILURE)
7562         goto ignore;
7563
7564       if (mpz_cmp (shape[i], shape2[i]))
7565         goto over;
7566     }
7567
7568   /* When either of the two expression is an assumed size array, we
7569      ignore the comparison of dimension sizes.  */
7570 ignore:
7571   result = SUCCESS;
7572
7573 over:
7574   for (i--; i >= 0; i--)
7575     {
7576       mpz_clear (shape[i]);
7577       mpz_clear (shape2[i]);
7578     }
7579   return result;
7580 }
7581
7582
7583 /* Check whether a WHERE assignment target or a WHERE mask expression
7584    has the same shape as the outmost WHERE mask expression.  */
7585
7586 static void
7587 resolve_where (gfc_code *code, gfc_expr *mask)
7588 {
7589   gfc_code *cblock;
7590   gfc_code *cnext;
7591   gfc_expr *e = NULL;
7592
7593   cblock = code->block;
7594
7595   /* Store the first WHERE mask-expr of the WHERE statement or construct.
7596      In case of nested WHERE, only the outmost one is stored.  */
7597   if (mask == NULL) /* outmost WHERE */
7598     e = cblock->expr1;
7599   else /* inner WHERE */
7600     e = mask;
7601
7602   while (cblock)
7603     {
7604       if (cblock->expr1)
7605         {
7606           /* Check if the mask-expr has a consistent shape with the
7607              outmost WHERE mask-expr.  */
7608           if (resolve_where_shape (cblock->expr1, e) == FAILURE)
7609             gfc_error ("WHERE mask at %L has inconsistent shape",
7610                        &cblock->expr1->where);
7611          }
7612
7613       /* the assignment statement of a WHERE statement, or the first
7614          statement in where-body-construct of a WHERE construct */
7615       cnext = cblock->next;
7616       while (cnext)
7617         {
7618           switch (cnext->op)
7619             {
7620             /* WHERE assignment statement */
7621             case EXEC_ASSIGN:
7622
7623               /* Check shape consistent for WHERE assignment target.  */
7624               if (e && resolve_where_shape (cnext->expr1, e) == FAILURE)
7625                gfc_error ("WHERE assignment target at %L has "
7626                           "inconsistent shape", &cnext->expr1->where);
7627               break;
7628
7629   
7630             case EXEC_ASSIGN_CALL:
7631               resolve_call (cnext);
7632               if (!cnext->resolved_sym->attr.elemental)
7633                 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
7634                           &cnext->ext.actual->expr->where);
7635               break;
7636
7637             /* WHERE or WHERE construct is part of a where-body-construct */
7638             case EXEC_WHERE:
7639               resolve_where (cnext, e);
7640               break;
7641
7642             default:
7643               gfc_error ("Unsupported statement inside WHERE at %L",
7644                          &cnext->loc);
7645             }
7646          /* the next statement within the same where-body-construct */
7647          cnext = cnext->next;
7648        }
7649     /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
7650     cblock = cblock->block;
7651   }
7652 }
7653
7654
7655 /* Resolve assignment in FORALL construct.
7656    NVAR is the number of FORALL index variables, and VAR_EXPR records the
7657    FORALL index variables.  */
7658
7659 static void
7660 gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
7661 {
7662   int n;
7663
7664   for (n = 0; n < nvar; n++)
7665     {
7666       gfc_symbol *forall_index;
7667
7668       forall_index = var_expr[n]->symtree->n.sym;
7669
7670       /* Check whether the assignment target is one of the FORALL index
7671          variable.  */
7672       if ((code->expr1->expr_type == EXPR_VARIABLE)
7673           && (code->expr1->symtree->n.sym == forall_index))
7674         gfc_error ("Assignment to a FORALL index variable at %L",
7675                    &code->expr1->where);
7676       else
7677         {
7678           /* If one of the FORALL index variables doesn't appear in the
7679              assignment variable, then there could be a many-to-one
7680              assignment.  Emit a warning rather than an error because the
7681              mask could be resolving this problem.  */
7682           if (find_forall_index (code->expr1, forall_index, 0) == FAILURE)
7683             gfc_warning ("The FORALL with index '%s' is not used on the "
7684                          "left side of the assignment at %L and so might "
7685                          "cause multiple assignment to this object",
7686                          var_expr[n]->symtree->name, &code->expr1->where);
7687         }
7688     }
7689 }
7690
7691
7692 /* Resolve WHERE statement in FORALL construct.  */
7693
7694 static void
7695 gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
7696                                   gfc_expr **var_expr)
7697 {
7698   gfc_code *cblock;
7699   gfc_code *cnext;
7700
7701   cblock = code->block;
7702   while (cblock)
7703     {
7704       /* the assignment statement of a WHERE statement, or the first
7705          statement in where-body-construct of a WHERE construct */
7706       cnext = cblock->next;
7707       while (cnext)
7708         {
7709           switch (cnext->op)
7710             {
7711             /* WHERE assignment statement */
7712             case EXEC_ASSIGN:
7713               gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
7714               break;
7715   
7716             /* WHERE operator assignment statement */
7717             case EXEC_ASSIGN_CALL:
7718               resolve_call (cnext);
7719               if (!cnext->resolved_sym->attr.elemental)
7720                 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
7721                           &cnext->ext.actual->expr->where);
7722               break;
7723
7724             /* WHERE or WHERE construct is part of a where-body-construct */
7725             case EXEC_WHERE:
7726               gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
7727               break;
7728
7729             default:
7730               gfc_error ("Unsupported statement inside WHERE at %L",
7731                          &cnext->loc);
7732             }
7733           /* the next statement within the same where-body-construct */
7734           cnext = cnext->next;
7735         }
7736       /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
7737       cblock = cblock->block;
7738     }
7739 }
7740
7741
7742 /* Traverse the FORALL body to check whether the following errors exist:
7743    1. For assignment, check if a many-to-one assignment happens.
7744    2. For WHERE statement, check the WHERE body to see if there is any
7745       many-to-one assignment.  */
7746
7747 static void
7748 gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
7749 {
7750   gfc_code *c;
7751
7752   c = code->block->next;
7753   while (c)
7754     {
7755       switch (c->op)
7756         {
7757         case EXEC_ASSIGN:
7758         case EXEC_POINTER_ASSIGN:
7759           gfc_resolve_assign_in_forall (c, nvar, var_expr);
7760           break;
7761
7762         case EXEC_ASSIGN_CALL:
7763           resolve_call (c);
7764           break;
7765
7766         /* Because the gfc_resolve_blocks() will handle the nested FORALL,
7767            there is no need to handle it here.  */
7768         case EXEC_FORALL:
7769           break;
7770         case EXEC_WHERE:
7771           gfc_resolve_where_code_in_forall(c, nvar, var_expr);
7772           break;
7773         default:
7774           break;
7775         }
7776       /* The next statement in the FORALL body.  */
7777       c = c->next;
7778     }
7779 }
7780
7781
7782 /* Counts the number of iterators needed inside a forall construct, including
7783    nested forall constructs. This is used to allocate the needed memory 
7784    in gfc_resolve_forall.  */
7785
7786 static int 
7787 gfc_count_forall_iterators (gfc_code *code)
7788 {
7789   int max_iters, sub_iters, current_iters;
7790   gfc_forall_iterator *fa;
7791
7792   gcc_assert(code->op == EXEC_FORALL);
7793   max_iters = 0;
7794   current_iters = 0;
7795
7796   for (fa = code->ext.forall_iterator; fa; fa = fa->next)
7797     current_iters ++;
7798   
7799   code = code->block->next;
7800
7801   while (code)
7802     {          
7803       if (code->op == EXEC_FORALL)
7804         {
7805           sub_iters = gfc_count_forall_iterators (code);
7806           if (sub_iters > max_iters)
7807             max_iters = sub_iters;
7808         }
7809       code = code->next;
7810     }
7811
7812   return current_iters + max_iters;
7813 }
7814
7815
7816 /* Given a FORALL construct, first resolve the FORALL iterator, then call
7817    gfc_resolve_forall_body to resolve the FORALL body.  */
7818
7819 static void
7820 gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
7821 {
7822   static gfc_expr **var_expr;
7823   static int total_var = 0;
7824   static int nvar = 0;
7825   int old_nvar, tmp;
7826   gfc_forall_iterator *fa;
7827   int i;
7828
7829   old_nvar = nvar;
7830
7831   /* Start to resolve a FORALL construct   */
7832   if (forall_save == 0)
7833     {
7834       /* Count the total number of FORALL index in the nested FORALL
7835          construct in order to allocate the VAR_EXPR with proper size.  */
7836       total_var = gfc_count_forall_iterators (code);
7837
7838       /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements.  */
7839       var_expr = (gfc_expr **) gfc_getmem (total_var * sizeof (gfc_expr *));
7840     }
7841
7842   /* The information about FORALL iterator, including FORALL index start, end
7843      and stride. The FORALL index can not appear in start, end or stride.  */
7844   for (fa = code->ext.forall_iterator; fa; fa = fa->next)
7845     {
7846       /* Check if any outer FORALL index name is the same as the current
7847          one.  */
7848       for (i = 0; i < nvar; i++)
7849         {
7850           if (fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
7851             {
7852               gfc_error ("An outer FORALL construct already has an index "
7853                          "with this name %L", &fa->var->where);
7854             }
7855         }
7856
7857       /* Record the current FORALL index.  */
7858       var_expr[nvar] = gfc_copy_expr (fa->var);
7859
7860       nvar++;
7861
7862       /* No memory leak.  */
7863       gcc_assert (nvar <= total_var);
7864     }
7865
7866   /* Resolve the FORALL body.  */
7867   gfc_resolve_forall_body (code, nvar, var_expr);
7868
7869   /* May call gfc_resolve_forall to resolve the inner FORALL loop.  */
7870   gfc_resolve_blocks (code->block, ns);
7871
7872   tmp = nvar;
7873   nvar = old_nvar;
7874   /* Free only the VAR_EXPRs allocated in this frame.  */
7875   for (i = nvar; i < tmp; i++)
7876      gfc_free_expr (var_expr[i]);
7877
7878   if (nvar == 0)
7879     {
7880       /* We are in the outermost FORALL construct.  */
7881       gcc_assert (forall_save == 0);
7882
7883       /* VAR_EXPR is not needed any more.  */
7884       gfc_free (var_expr);
7885       total_var = 0;
7886     }
7887 }
7888
7889
7890 /* Resolve a BLOCK construct statement.  */
7891
7892 static void
7893 resolve_block_construct (gfc_code* code)
7894 {
7895   /* Eventually, we may want to do some checks here or handle special stuff.
7896      But so far the only thing we can do is resolving the local namespace.  */
7897
7898   gfc_resolve (code->ext.ns);
7899 }
7900
7901
7902 /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
7903    DO code nodes.  */
7904
7905 static void resolve_code (gfc_code *, gfc_namespace *);
7906
7907 void
7908 gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
7909 {
7910   gfc_try t;
7911
7912   for (; b; b = b->block)
7913     {
7914       t = gfc_resolve_expr (b->expr1);
7915       if (gfc_resolve_expr (b->expr2) == FAILURE)
7916         t = FAILURE;
7917
7918       switch (b->op)
7919         {
7920         case EXEC_IF:
7921           if (t == SUCCESS && b->expr1 != NULL
7922               && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
7923             gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
7924                        &b->expr1->where);
7925           break;
7926
7927         case EXEC_WHERE:
7928           if (t == SUCCESS
7929               && b->expr1 != NULL
7930               && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
7931             gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
7932                        &b->expr1->where);
7933           break;
7934
7935         case EXEC_GOTO:
7936           resolve_branch (b->label1, b);
7937           break;
7938
7939         case EXEC_BLOCK:
7940           resolve_block_construct (b);
7941           break;
7942
7943         case EXEC_SELECT:
7944         case EXEC_SELECT_TYPE:
7945         case EXEC_FORALL:
7946         case EXEC_DO:
7947         case EXEC_DO_WHILE:
7948         case EXEC_CRITICAL:
7949         case EXEC_READ:
7950         case EXEC_WRITE:
7951         case EXEC_IOLENGTH:
7952         case EXEC_WAIT:
7953           break;
7954
7955         case EXEC_OMP_ATOMIC:
7956         case EXEC_OMP_CRITICAL:
7957         case EXEC_OMP_DO:
7958         case EXEC_OMP_MASTER:
7959         case EXEC_OMP_ORDERED:
7960         case EXEC_OMP_PARALLEL:
7961         case EXEC_OMP_PARALLEL_DO:
7962         case EXEC_OMP_PARALLEL_SECTIONS:
7963         case EXEC_OMP_PARALLEL_WORKSHARE:
7964         case EXEC_OMP_SECTIONS:
7965         case EXEC_OMP_SINGLE:
7966         case EXEC_OMP_TASK:
7967         case EXEC_OMP_TASKWAIT:
7968         case EXEC_OMP_WORKSHARE:
7969           break;
7970
7971         default:
7972           gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
7973         }
7974
7975       resolve_code (b->next, ns);
7976     }
7977 }
7978
7979
7980 /* Does everything to resolve an ordinary assignment.  Returns true
7981    if this is an interface assignment.  */
7982 static bool
7983 resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
7984 {
7985   bool rval = false;
7986   gfc_expr *lhs;
7987   gfc_expr *rhs;
7988   int llen = 0;
7989   int rlen = 0;
7990   int n;
7991   gfc_ref *ref;
7992
7993   if (gfc_extend_assign (code, ns) == SUCCESS)
7994     {
7995       gfc_expr** rhsptr;
7996
7997       if (code->op == EXEC_ASSIGN_CALL)
7998         {
7999           lhs = code->ext.actual->expr;
8000           rhsptr = &code->ext.actual->next->expr;
8001         }
8002       else
8003         {
8004           gfc_actual_arglist* args;
8005           gfc_typebound_proc* tbp;
8006
8007           gcc_assert (code->op == EXEC_COMPCALL);
8008
8009           args = code->expr1->value.compcall.actual;
8010           lhs = args->expr;
8011           rhsptr = &args->next->expr;
8012
8013           tbp = code->expr1->value.compcall.tbp;
8014           gcc_assert (!tbp->is_generic);
8015         }
8016
8017       /* Make a temporary rhs when there is a default initializer
8018          and rhs is the same symbol as the lhs.  */
8019       if ((*rhsptr)->expr_type == EXPR_VARIABLE
8020             && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
8021             && has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
8022             && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
8023         *rhsptr = gfc_get_parentheses (*rhsptr);
8024
8025       return true;
8026     }
8027
8028   lhs = code->expr1;
8029   rhs = code->expr2;
8030
8031   if (rhs->is_boz
8032       && gfc_notify_std (GFC_STD_GNU, "Extension: BOZ literal at %L outside "
8033                          "a DATA statement and outside INT/REAL/DBLE/CMPLX",
8034                          &code->loc) == FAILURE)
8035     return false;
8036
8037   /* Handle the case of a BOZ literal on the RHS.  */
8038   if (rhs->is_boz && lhs->ts.type != BT_INTEGER)
8039     {
8040       int rc;
8041       if (gfc_option.warn_surprising)
8042         gfc_warning ("BOZ literal at %L is bitwise transferred "
8043                      "non-integer symbol '%s'", &code->loc,
8044                      lhs->symtree->n.sym->name);
8045
8046       if (!gfc_convert_boz (rhs, &lhs->ts))
8047         return false;
8048       if ((rc = gfc_range_check (rhs)) != ARITH_OK)
8049         {
8050           if (rc == ARITH_UNDERFLOW)
8051             gfc_error ("Arithmetic underflow of bit-wise transferred BOZ at %L"
8052                        ". This check can be disabled with the option "
8053                        "-fno-range-check", &rhs->where);
8054           else if (rc == ARITH_OVERFLOW)
8055             gfc_error ("Arithmetic overflow of bit-wise transferred BOZ at %L"
8056                        ". This check can be disabled with the option "
8057                        "-fno-range-check", &rhs->where);
8058           else if (rc == ARITH_NAN)
8059             gfc_error ("Arithmetic NaN of bit-wise transferred BOZ at %L"
8060                        ". This check can be disabled with the option "
8061                        "-fno-range-check", &rhs->where);
8062           return false;
8063         }
8064     }
8065
8066
8067   if (lhs->ts.type == BT_CHARACTER
8068         && gfc_option.warn_character_truncation)
8069     {
8070       if (lhs->ts.u.cl != NULL
8071             && lhs->ts.u.cl->length != NULL
8072             && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
8073         llen = mpz_get_si (lhs->ts.u.cl->length->value.integer);
8074
8075       if (rhs->expr_type == EXPR_CONSTANT)
8076         rlen = rhs->value.character.length;
8077
8078       else if (rhs->ts.u.cl != NULL
8079                  && rhs->ts.u.cl->length != NULL
8080                  && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
8081         rlen = mpz_get_si (rhs->ts.u.cl->length->value.integer);
8082
8083       if (rlen && llen && rlen > llen)
8084         gfc_warning_now ("CHARACTER expression will be truncated "
8085                          "in assignment (%d/%d) at %L",
8086                          llen, rlen, &code->loc);
8087     }
8088
8089   /* Ensure that a vector index expression for the lvalue is evaluated
8090      to a temporary if the lvalue symbol is referenced in it.  */
8091   if (lhs->rank)
8092     {
8093       for (ref = lhs->ref; ref; ref= ref->next)
8094         if (ref->type == REF_ARRAY)
8095           {
8096             for (n = 0; n < ref->u.ar.dimen; n++)
8097               if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
8098                   && gfc_find_sym_in_expr (lhs->symtree->n.sym,
8099                                            ref->u.ar.start[n]))
8100                 ref->u.ar.start[n]
8101                         = gfc_get_parentheses (ref->u.ar.start[n]);
8102           }
8103     }
8104
8105   if (gfc_pure (NULL))
8106     {
8107       if (gfc_impure_variable (lhs->symtree->n.sym))
8108         {
8109           gfc_error ("Cannot assign to variable '%s' in PURE "
8110                      "procedure at %L",
8111                       lhs->symtree->n.sym->name,
8112                       &lhs->where);
8113           return rval;
8114         }
8115
8116       if (lhs->ts.type == BT_DERIVED
8117             && lhs->expr_type == EXPR_VARIABLE
8118             && lhs->ts.u.derived->attr.pointer_comp
8119             && rhs->expr_type == EXPR_VARIABLE
8120             && (gfc_impure_variable (rhs->symtree->n.sym)
8121                 || gfc_is_coindexed (rhs)))
8122         {
8123           /* F2008, C1283.  */
8124           if (gfc_is_coindexed (rhs))
8125             gfc_error ("Coindexed expression at %L is assigned to "
8126                         "a derived type variable with a POINTER "
8127                         "component in a PURE procedure",
8128                         &rhs->where);
8129           else
8130             gfc_error ("The impure variable at %L is assigned to "
8131                         "a derived type variable with a POINTER "
8132                         "component in a PURE procedure (12.6)",
8133                         &rhs->where);
8134           return rval;
8135         }
8136
8137       /* Fortran 2008, C1283.  */
8138       if (gfc_is_coindexed (lhs))
8139         {
8140           gfc_error ("Assignment to coindexed variable at %L in a PURE "
8141                      "procedure", &rhs->where);
8142           return rval;
8143         }
8144     }
8145
8146   /* F03:7.4.1.2.  */
8147   /* FIXME: Valid in Fortran 2008, unless the LHS is both polymorphic
8148      and coindexed; cf. F2008, 7.2.1.2 and PR 43366.  */
8149   if (lhs->ts.type == BT_CLASS)
8150     {
8151       gfc_error ("Variable must not be polymorphic in assignment at %L",
8152                  &lhs->where);
8153       return false;
8154     }
8155
8156   /* F2008, Section 7.2.1.2.  */
8157   if (gfc_is_coindexed (lhs) && gfc_has_ultimate_allocatable (lhs))
8158     {
8159       gfc_error ("Coindexed variable must not be have an allocatable ultimate "
8160                  "component in assignment at %L", &lhs->where);
8161       return false;
8162     }
8163
8164   gfc_check_assign (lhs, rhs, 1);
8165   return false;
8166 }
8167
8168
8169 /* Given a block of code, recursively resolve everything pointed to by this
8170    code block.  */
8171
8172 static void
8173 resolve_code (gfc_code *code, gfc_namespace *ns)
8174 {
8175   int omp_workshare_save;
8176   int forall_save;
8177   code_stack frame;
8178   gfc_try t;
8179
8180   frame.prev = cs_base;
8181   frame.head = code;
8182   cs_base = &frame;
8183
8184   find_reachable_labels (code);
8185
8186   for (; code; code = code->next)
8187     {
8188       frame.current = code;
8189       forall_save = forall_flag;
8190
8191       if (code->op == EXEC_FORALL)
8192         {
8193           forall_flag = 1;
8194           gfc_resolve_forall (code, ns, forall_save);
8195           forall_flag = 2;
8196         }
8197       else if (code->block)
8198         {
8199           omp_workshare_save = -1;
8200           switch (code->op)
8201             {
8202             case EXEC_OMP_PARALLEL_WORKSHARE:
8203               omp_workshare_save = omp_workshare_flag;
8204               omp_workshare_flag = 1;
8205               gfc_resolve_omp_parallel_blocks (code, ns);
8206               break;
8207             case EXEC_OMP_PARALLEL:
8208             case EXEC_OMP_PARALLEL_DO:
8209             case EXEC_OMP_PARALLEL_SECTIONS:
8210             case EXEC_OMP_TASK:
8211               omp_workshare_save = omp_workshare_flag;
8212               omp_workshare_flag = 0;
8213               gfc_resolve_omp_parallel_blocks (code, ns);
8214               break;
8215             case EXEC_OMP_DO:
8216               gfc_resolve_omp_do_blocks (code, ns);
8217               break;
8218             case EXEC_SELECT_TYPE:
8219               gfc_current_ns = code->ext.ns;
8220               gfc_resolve_blocks (code->block, gfc_current_ns);
8221               gfc_current_ns = ns;
8222               break;
8223             case EXEC_OMP_WORKSHARE:
8224               omp_workshare_save = omp_workshare_flag;
8225               omp_workshare_flag = 1;
8226               /* FALLTHROUGH */
8227             default:
8228               gfc_resolve_blocks (code->block, ns);
8229               break;
8230             }
8231
8232           if (omp_workshare_save != -1)
8233             omp_workshare_flag = omp_workshare_save;
8234         }
8235
8236       t = SUCCESS;
8237       if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
8238         t = gfc_resolve_expr (code->expr1);
8239       forall_flag = forall_save;
8240
8241       if (gfc_resolve_expr (code->expr2) == FAILURE)
8242         t = FAILURE;
8243
8244       if (code->op == EXEC_ALLOCATE
8245           && gfc_resolve_expr (code->expr3) == FAILURE)
8246         t = FAILURE;
8247
8248       switch (code->op)
8249         {
8250         case EXEC_NOP:
8251         case EXEC_END_BLOCK:
8252         case EXEC_CYCLE:
8253         case EXEC_PAUSE:
8254         case EXEC_STOP:
8255         case EXEC_ERROR_STOP:
8256         case EXEC_EXIT:
8257         case EXEC_CONTINUE:
8258         case EXEC_DT_END:
8259         case EXEC_ASSIGN_CALL:
8260         case EXEC_CRITICAL:
8261           break;
8262
8263         case EXEC_SYNC_ALL:
8264         case EXEC_SYNC_IMAGES:
8265         case EXEC_SYNC_MEMORY:
8266           resolve_sync (code);
8267           break;
8268
8269         case EXEC_ENTRY:
8270           /* Keep track of which entry we are up to.  */
8271           current_entry_id = code->ext.entry->id;
8272           break;
8273
8274         case EXEC_WHERE:
8275           resolve_where (code, NULL);
8276           break;
8277
8278         case EXEC_GOTO:
8279           if (code->expr1 != NULL)
8280             {
8281               if (code->expr1->ts.type != BT_INTEGER)
8282                 gfc_error ("ASSIGNED GOTO statement at %L requires an "
8283                            "INTEGER variable", &code->expr1->where);
8284               else if (code->expr1->symtree->n.sym->attr.assign != 1)
8285                 gfc_error ("Variable '%s' has not been assigned a target "
8286                            "label at %L", code->expr1->symtree->n.sym->name,
8287                            &code->expr1->where);
8288             }
8289           else
8290             resolve_branch (code->label1, code);
8291           break;
8292
8293         case EXEC_RETURN:
8294           if (code->expr1 != NULL
8295                 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
8296             gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
8297                        "INTEGER return specifier", &code->expr1->where);
8298           break;
8299
8300         case EXEC_INIT_ASSIGN:
8301         case EXEC_END_PROCEDURE:
8302           break;
8303
8304         case EXEC_ASSIGN:
8305           if (t == FAILURE)
8306             break;
8307
8308           if (resolve_ordinary_assign (code, ns))
8309             {
8310               if (code->op == EXEC_COMPCALL)
8311                 goto compcall;
8312               else
8313                 goto call;
8314             }
8315           break;
8316
8317         case EXEC_LABEL_ASSIGN:
8318           if (code->label1->defined == ST_LABEL_UNKNOWN)
8319             gfc_error ("Label %d referenced at %L is never defined",
8320                        code->label1->value, &code->label1->where);
8321           if (t == SUCCESS
8322               && (code->expr1->expr_type != EXPR_VARIABLE
8323                   || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
8324                   || code->expr1->symtree->n.sym->ts.kind
8325                      != gfc_default_integer_kind
8326                   || code->expr1->symtree->n.sym->as != NULL))
8327             gfc_error ("ASSIGN statement at %L requires a scalar "
8328                        "default INTEGER variable", &code->expr1->where);
8329           break;
8330
8331         case EXEC_POINTER_ASSIGN:
8332           if (t == FAILURE)
8333             break;
8334
8335           gfc_check_pointer_assign (code->expr1, code->expr2);
8336           break;
8337
8338         case EXEC_ARITHMETIC_IF:
8339           if (t == SUCCESS
8340               && code->expr1->ts.type != BT_INTEGER
8341               && code->expr1->ts.type != BT_REAL)
8342             gfc_error ("Arithmetic IF statement at %L requires a numeric "
8343                        "expression", &code->expr1->where);
8344
8345           resolve_branch (code->label1, code);
8346           resolve_branch (code->label2, code);
8347           resolve_branch (code->label3, code);
8348           break;
8349
8350         case EXEC_IF:
8351           if (t == SUCCESS && code->expr1 != NULL
8352               && (code->expr1->ts.type != BT_LOGICAL
8353                   || code->expr1->rank != 0))
8354             gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
8355                        &code->expr1->where);
8356           break;
8357
8358         case EXEC_CALL:
8359         call:
8360           resolve_call (code);
8361           break;
8362
8363         case EXEC_COMPCALL:
8364         compcall:
8365           resolve_typebound_subroutine (code);
8366           break;
8367
8368         case EXEC_CALL_PPC:
8369           resolve_ppc_call (code);
8370           break;
8371
8372         case EXEC_SELECT:
8373           /* Select is complicated. Also, a SELECT construct could be
8374              a transformed computed GOTO.  */
8375           resolve_select (code);
8376           break;
8377
8378         case EXEC_SELECT_TYPE:
8379           resolve_select_type (code);
8380           break;
8381
8382         case EXEC_BLOCK:
8383           gfc_resolve (code->ext.ns);
8384           break;
8385
8386         case EXEC_DO:
8387           if (code->ext.iterator != NULL)
8388             {
8389               gfc_iterator *iter = code->ext.iterator;
8390               if (gfc_resolve_iterator (iter, true) != FAILURE)
8391                 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym);
8392             }
8393           break;
8394
8395         case EXEC_DO_WHILE:
8396           if (code->expr1 == NULL)
8397             gfc_internal_error ("resolve_code(): No expression on DO WHILE");
8398           if (t == SUCCESS
8399               && (code->expr1->rank != 0
8400                   || code->expr1->ts.type != BT_LOGICAL))
8401             gfc_error ("Exit condition of DO WHILE loop at %L must be "
8402                        "a scalar LOGICAL expression", &code->expr1->where);
8403           break;
8404
8405         case EXEC_ALLOCATE:
8406           if (t == SUCCESS)
8407             resolve_allocate_deallocate (code, "ALLOCATE");
8408
8409           break;
8410
8411         case EXEC_DEALLOCATE:
8412           if (t == SUCCESS)
8413             resolve_allocate_deallocate (code, "DEALLOCATE");
8414
8415           break;
8416
8417         case EXEC_OPEN:
8418           if (gfc_resolve_open (code->ext.open) == FAILURE)
8419             break;
8420
8421           resolve_branch (code->ext.open->err, code);
8422           break;
8423
8424         case EXEC_CLOSE:
8425           if (gfc_resolve_close (code->ext.close) == FAILURE)
8426             break;
8427
8428           resolve_branch (code->ext.close->err, code);
8429           break;
8430
8431         case EXEC_BACKSPACE:
8432         case EXEC_ENDFILE:
8433         case EXEC_REWIND:
8434         case EXEC_FLUSH:
8435           if (gfc_resolve_filepos (code->ext.filepos) == FAILURE)
8436             break;
8437
8438           resolve_branch (code->ext.filepos->err, code);
8439           break;
8440
8441         case EXEC_INQUIRE:
8442           if (gfc_resolve_inquire (code->ext.inquire) == FAILURE)
8443               break;
8444
8445           resolve_branch (code->ext.inquire->err, code);
8446           break;
8447
8448         case EXEC_IOLENGTH:
8449           gcc_assert (code->ext.inquire != NULL);
8450           if (gfc_resolve_inquire (code->ext.inquire) == FAILURE)
8451             break;
8452
8453           resolve_branch (code->ext.inquire->err, code);
8454           break;
8455
8456         case EXEC_WAIT:
8457           if (gfc_resolve_wait (code->ext.wait) == FAILURE)
8458             break;
8459
8460           resolve_branch (code->ext.wait->err, code);
8461           resolve_branch (code->ext.wait->end, code);
8462           resolve_branch (code->ext.wait->eor, code);
8463           break;
8464
8465         case EXEC_READ:
8466         case EXEC_WRITE:
8467           if (gfc_resolve_dt (code->ext.dt, &code->loc) == FAILURE)
8468             break;
8469
8470           resolve_branch (code->ext.dt->err, code);
8471           resolve_branch (code->ext.dt->end, code);
8472           resolve_branch (code->ext.dt->eor, code);
8473           break;
8474
8475         case EXEC_TRANSFER:
8476           resolve_transfer (code);
8477           break;
8478
8479         case EXEC_FORALL:
8480           resolve_forall_iterators (code->ext.forall_iterator);
8481
8482           if (code->expr1 != NULL && code->expr1->ts.type != BT_LOGICAL)
8483             gfc_error ("FORALL mask clause at %L requires a LOGICAL "
8484                        "expression", &code->expr1->where);
8485           break;
8486
8487         case EXEC_OMP_ATOMIC:
8488         case EXEC_OMP_BARRIER:
8489         case EXEC_OMP_CRITICAL:
8490         case EXEC_OMP_FLUSH:
8491         case EXEC_OMP_DO:
8492         case EXEC_OMP_MASTER:
8493         case EXEC_OMP_ORDERED:
8494         case EXEC_OMP_SECTIONS:
8495         case EXEC_OMP_SINGLE:
8496         case EXEC_OMP_TASKWAIT:
8497         case EXEC_OMP_WORKSHARE:
8498           gfc_resolve_omp_directive (code, ns);
8499           break;
8500
8501         case EXEC_OMP_PARALLEL:
8502         case EXEC_OMP_PARALLEL_DO:
8503         case EXEC_OMP_PARALLEL_SECTIONS:
8504         case EXEC_OMP_PARALLEL_WORKSHARE:
8505         case EXEC_OMP_TASK:
8506           omp_workshare_save = omp_workshare_flag;
8507           omp_workshare_flag = 0;
8508           gfc_resolve_omp_directive (code, ns);
8509           omp_workshare_flag = omp_workshare_save;
8510           break;
8511
8512         default:
8513           gfc_internal_error ("resolve_code(): Bad statement code");
8514         }
8515     }
8516
8517   cs_base = frame.prev;
8518 }
8519
8520
8521 /* Resolve initial values and make sure they are compatible with
8522    the variable.  */
8523
8524 static void
8525 resolve_values (gfc_symbol *sym)
8526 {
8527   if (sym->value == NULL)
8528     return;
8529
8530   if (gfc_resolve_expr (sym->value) == FAILURE)
8531     return;
8532
8533   gfc_check_assign_symbol (sym, sym->value);
8534 }
8535
8536
8537 /* Verify the binding labels for common blocks that are BIND(C).  The label
8538    for a BIND(C) common block must be identical in all scoping units in which
8539    the common block is declared.  Further, the binding label can not collide
8540    with any other global entity in the program.  */
8541
8542 static void
8543 resolve_bind_c_comms (gfc_symtree *comm_block_tree)
8544 {
8545   if (comm_block_tree->n.common->is_bind_c == 1)
8546     {
8547       gfc_gsymbol *binding_label_gsym;
8548       gfc_gsymbol *comm_name_gsym;
8549
8550       /* See if a global symbol exists by the common block's name.  It may
8551          be NULL if the common block is use-associated.  */
8552       comm_name_gsym = gfc_find_gsymbol (gfc_gsym_root,
8553                                          comm_block_tree->n.common->name);
8554       if (comm_name_gsym != NULL && comm_name_gsym->type != GSYM_COMMON)
8555         gfc_error ("Binding label '%s' for common block '%s' at %L collides "
8556                    "with the global entity '%s' at %L",
8557                    comm_block_tree->n.common->binding_label,
8558                    comm_block_tree->n.common->name,
8559                    &(comm_block_tree->n.common->where),
8560                    comm_name_gsym->name, &(comm_name_gsym->where));
8561       else if (comm_name_gsym != NULL
8562                && strcmp (comm_name_gsym->name,
8563                           comm_block_tree->n.common->name) == 0)
8564         {
8565           /* TODO: Need to make sure the fields of gfc_gsymbol are initialized
8566              as expected.  */
8567           if (comm_name_gsym->binding_label == NULL)
8568             /* No binding label for common block stored yet; save this one.  */
8569             comm_name_gsym->binding_label =
8570               comm_block_tree->n.common->binding_label;
8571           else
8572             if (strcmp (comm_name_gsym->binding_label,
8573                         comm_block_tree->n.common->binding_label) != 0)
8574               {
8575                 /* Common block names match but binding labels do not.  */
8576                 gfc_error ("Binding label '%s' for common block '%s' at %L "
8577                            "does not match the binding label '%s' for common "
8578                            "block '%s' at %L",
8579                            comm_block_tree->n.common->binding_label,
8580                            comm_block_tree->n.common->name,
8581                            &(comm_block_tree->n.common->where),
8582                            comm_name_gsym->binding_label,
8583                            comm_name_gsym->name,
8584                            &(comm_name_gsym->where));
8585                 return;
8586               }
8587         }
8588
8589       /* There is no binding label (NAME="") so we have nothing further to
8590          check and nothing to add as a global symbol for the label.  */
8591       if (comm_block_tree->n.common->binding_label[0] == '\0' )
8592         return;
8593       
8594       binding_label_gsym =
8595         gfc_find_gsymbol (gfc_gsym_root,
8596                           comm_block_tree->n.common->binding_label);
8597       if (binding_label_gsym == NULL)
8598         {
8599           /* Need to make a global symbol for the binding label to prevent
8600              it from colliding with another.  */
8601           binding_label_gsym =
8602             gfc_get_gsymbol (comm_block_tree->n.common->binding_label);
8603           binding_label_gsym->sym_name = comm_block_tree->n.common->name;
8604           binding_label_gsym->type = GSYM_COMMON;
8605         }
8606       else
8607         {
8608           /* If comm_name_gsym is NULL, the name common block is use
8609              associated and the name could be colliding.  */
8610           if (binding_label_gsym->type != GSYM_COMMON)
8611             gfc_error ("Binding label '%s' for common block '%s' at %L "
8612                        "collides with the global entity '%s' at %L",
8613                        comm_block_tree->n.common->binding_label,
8614                        comm_block_tree->n.common->name,
8615                        &(comm_block_tree->n.common->where),
8616                        binding_label_gsym->name,
8617                        &(binding_label_gsym->where));
8618           else if (comm_name_gsym != NULL
8619                    && (strcmp (binding_label_gsym->name,
8620                                comm_name_gsym->binding_label) != 0)
8621                    && (strcmp (binding_label_gsym->sym_name,
8622                                comm_name_gsym->name) != 0))
8623             gfc_error ("Binding label '%s' for common block '%s' at %L "
8624                        "collides with global entity '%s' at %L",
8625                        binding_label_gsym->name, binding_label_gsym->sym_name,
8626                        &(comm_block_tree->n.common->where),
8627                        comm_name_gsym->name, &(comm_name_gsym->where));
8628         }
8629     }
8630   
8631   return;
8632 }
8633
8634
8635 /* Verify any BIND(C) derived types in the namespace so we can report errors
8636    for them once, rather than for each variable declared of that type.  */
8637
8638 static void
8639 resolve_bind_c_derived_types (gfc_symbol *derived_sym)
8640 {
8641   if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
8642       && derived_sym->attr.is_bind_c == 1)
8643     verify_bind_c_derived_type (derived_sym);
8644   
8645   return;
8646 }
8647
8648
8649 /* Verify that any binding labels used in a given namespace do not collide 
8650    with the names or binding labels of any global symbols.  */
8651
8652 static void
8653 gfc_verify_binding_labels (gfc_symbol *sym)
8654 {
8655   int has_error = 0;
8656   
8657   if (sym != NULL && sym->attr.is_bind_c && sym->attr.is_iso_c == 0 
8658       && sym->attr.flavor != FL_DERIVED && sym->binding_label[0] != '\0')
8659     {
8660       gfc_gsymbol *bind_c_sym;
8661
8662       bind_c_sym = gfc_find_gsymbol (gfc_gsym_root, sym->binding_label);
8663       if (bind_c_sym != NULL 
8664           && strcmp (bind_c_sym->name, sym->binding_label) == 0)
8665         {
8666           if (sym->attr.if_source == IFSRC_DECL 
8667               && (bind_c_sym->type != GSYM_SUBROUTINE 
8668                   && bind_c_sym->type != GSYM_FUNCTION) 
8669               && ((sym->attr.contained == 1 
8670                    && strcmp (bind_c_sym->sym_name, sym->name) != 0) 
8671                   || (sym->attr.use_assoc == 1 
8672                       && (strcmp (bind_c_sym->mod_name, sym->module) != 0))))
8673             {
8674               /* Make sure global procedures don't collide with anything.  */
8675               gfc_error ("Binding label '%s' at %L collides with the global "
8676                          "entity '%s' at %L", sym->binding_label,
8677                          &(sym->declared_at), bind_c_sym->name,
8678                          &(bind_c_sym->where));
8679               has_error = 1;
8680             }
8681           else if (sym->attr.contained == 0 
8682                    && (sym->attr.if_source == IFSRC_IFBODY 
8683                        && sym->attr.flavor == FL_PROCEDURE) 
8684                    && (bind_c_sym->sym_name != NULL 
8685                        && strcmp (bind_c_sym->sym_name, sym->name) != 0))
8686             {
8687               /* Make sure procedures in interface bodies don't collide.  */
8688               gfc_error ("Binding label '%s' in interface body at %L collides "
8689                          "with the global entity '%s' at %L",
8690                          sym->binding_label,
8691                          &(sym->declared_at), bind_c_sym->name,
8692                          &(bind_c_sym->where));
8693               has_error = 1;
8694             }
8695           else if (sym->attr.contained == 0 
8696                    && sym->attr.if_source == IFSRC_UNKNOWN)
8697             if ((sym->attr.use_assoc && bind_c_sym->mod_name
8698                  && strcmp (bind_c_sym->mod_name, sym->module) != 0) 
8699                 || sym->attr.use_assoc == 0)
8700               {
8701                 gfc_error ("Binding label '%s' at %L collides with global "
8702                            "entity '%s' at %L", sym->binding_label,
8703                            &(sym->declared_at), bind_c_sym->name,
8704                            &(bind_c_sym->where));
8705                 has_error = 1;
8706               }
8707
8708           if (has_error != 0)
8709             /* Clear the binding label to prevent checking multiple times.  */
8710             sym->binding_label[0] = '\0';
8711         }
8712       else if (bind_c_sym == NULL)
8713         {
8714           bind_c_sym = gfc_get_gsymbol (sym->binding_label);
8715           bind_c_sym->where = sym->declared_at;
8716           bind_c_sym->sym_name = sym->name;
8717
8718           if (sym->attr.use_assoc == 1)
8719             bind_c_sym->mod_name = sym->module;
8720           else
8721             if (sym->ns->proc_name != NULL)
8722               bind_c_sym->mod_name = sym->ns->proc_name->name;
8723
8724           if (sym->attr.contained == 0)
8725             {
8726               if (sym->attr.subroutine)
8727                 bind_c_sym->type = GSYM_SUBROUTINE;
8728               else if (sym->attr.function)
8729                 bind_c_sym->type = GSYM_FUNCTION;
8730             }
8731         }
8732     }
8733   return;
8734 }
8735
8736
8737 /* Resolve an index expression.  */
8738
8739 static gfc_try
8740 resolve_index_expr (gfc_expr *e)
8741 {
8742   if (gfc_resolve_expr (e) == FAILURE)
8743     return FAILURE;
8744
8745   if (gfc_simplify_expr (e, 0) == FAILURE)
8746     return FAILURE;
8747
8748   if (gfc_specification_expr (e) == FAILURE)
8749     return FAILURE;
8750
8751   return SUCCESS;
8752 }
8753
8754 /* Resolve a charlen structure.  */
8755
8756 static gfc_try
8757 resolve_charlen (gfc_charlen *cl)
8758 {
8759   int i, k;
8760
8761   if (cl->resolved)
8762     return SUCCESS;
8763
8764   cl->resolved = 1;
8765
8766   specification_expr = 1;
8767
8768   if (resolve_index_expr (cl->length) == FAILURE)
8769     {
8770       specification_expr = 0;
8771       return FAILURE;
8772     }
8773
8774   /* "If the character length parameter value evaluates to a negative
8775      value, the length of character entities declared is zero."  */
8776   if (cl->length && !gfc_extract_int (cl->length, &i) && i < 0)
8777     {
8778       if (gfc_option.warn_surprising)
8779         gfc_warning_now ("CHARACTER variable at %L has negative length %d,"
8780                          " the length has been set to zero",
8781                          &cl->length->where, i);
8782       gfc_replace_expr (cl->length,
8783                         gfc_get_int_expr (gfc_default_integer_kind, NULL, 0));
8784     }
8785
8786   /* Check that the character length is not too large.  */
8787   k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
8788   if (cl->length && cl->length->expr_type == EXPR_CONSTANT
8789       && cl->length->ts.type == BT_INTEGER
8790       && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
8791     {
8792       gfc_error ("String length at %L is too large", &cl->length->where);
8793       return FAILURE;
8794     }
8795
8796   return SUCCESS;
8797 }
8798
8799
8800 /* Test for non-constant shape arrays.  */
8801
8802 static bool
8803 is_non_constant_shape_array (gfc_symbol *sym)
8804 {
8805   gfc_expr *e;
8806   int i;
8807   bool not_constant;
8808
8809   not_constant = false;
8810   if (sym->as != NULL)
8811     {
8812       /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
8813          has not been simplified; parameter array references.  Do the
8814          simplification now.  */
8815       for (i = 0; i < sym->as->rank + sym->as->corank; i++)
8816         {
8817           e = sym->as->lower[i];
8818           if (e && (resolve_index_expr (e) == FAILURE
8819                     || !gfc_is_constant_expr (e)))
8820             not_constant = true;
8821           e = sym->as->upper[i];
8822           if (e && (resolve_index_expr (e) == FAILURE
8823                     || !gfc_is_constant_expr (e)))
8824             not_constant = true;
8825         }
8826     }
8827   return not_constant;
8828 }
8829
8830 /* Given a symbol and an initialization expression, add code to initialize
8831    the symbol to the function entry.  */
8832 static void
8833 build_init_assign (gfc_symbol *sym, gfc_expr *init)
8834 {
8835   gfc_expr *lval;
8836   gfc_code *init_st;
8837   gfc_namespace *ns = sym->ns;
8838
8839   /* Search for the function namespace if this is a contained
8840      function without an explicit result.  */
8841   if (sym->attr.function && sym == sym->result
8842       && sym->name != sym->ns->proc_name->name)
8843     {
8844       ns = ns->contained;
8845       for (;ns; ns = ns->sibling)
8846         if (strcmp (ns->proc_name->name, sym->name) == 0)
8847           break;
8848     }
8849
8850   if (ns == NULL)
8851     {
8852       gfc_free_expr (init);
8853       return;
8854     }
8855
8856   /* Build an l-value expression for the result.  */
8857   lval = gfc_lval_expr_from_sym (sym);
8858
8859   /* Add the code at scope entry.  */
8860   init_st = gfc_get_code ();
8861   init_st->next = ns->code;
8862   ns->code = init_st;
8863
8864   /* Assign the default initializer to the l-value.  */
8865   init_st->loc = sym->declared_at;
8866   init_st->op = EXEC_INIT_ASSIGN;
8867   init_st->expr1 = lval;
8868   init_st->expr2 = init;
8869 }
8870
8871 /* Assign the default initializer to a derived type variable or result.  */
8872
8873 static void
8874 apply_default_init (gfc_symbol *sym)
8875 {
8876   gfc_expr *init = NULL;
8877
8878   if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
8879     return;
8880
8881   if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
8882     init = gfc_default_initializer (&sym->ts);
8883
8884   if (init == NULL)
8885     return;
8886
8887   build_init_assign (sym, init);
8888 }
8889
8890 /* Build an initializer for a local integer, real, complex, logical, or
8891    character variable, based on the command line flags finit-local-zero,
8892    finit-integer=, finit-real=, finit-logical=, and finit-runtime.  Returns 
8893    null if the symbol should not have a default initialization.  */
8894 static gfc_expr *
8895 build_default_init_expr (gfc_symbol *sym)
8896 {
8897   int char_len;
8898   gfc_expr *init_expr;
8899   int i;
8900
8901   /* These symbols should never have a default initialization.  */
8902   if ((sym->attr.dimension && !gfc_is_compile_time_shape (sym->as))
8903       || sym->attr.external
8904       || sym->attr.dummy
8905       || sym->attr.pointer
8906       || sym->attr.in_equivalence
8907       || sym->attr.in_common
8908       || sym->attr.data
8909       || sym->module
8910       || sym->attr.cray_pointee
8911       || sym->attr.cray_pointer)
8912     return NULL;
8913
8914   /* Now we'll try to build an initializer expression.  */
8915   init_expr = gfc_get_constant_expr (sym->ts.type, sym->ts.kind,
8916                                      &sym->declared_at);
8917
8918   /* We will only initialize integers, reals, complex, logicals, and
8919      characters, and only if the corresponding command-line flags
8920      were set.  Otherwise, we free init_expr and return null.  */
8921   switch (sym->ts.type)
8922     {    
8923     case BT_INTEGER:
8924       if (gfc_option.flag_init_integer != GFC_INIT_INTEGER_OFF)
8925         mpz_init_set_si (init_expr->value.integer, 
8926                          gfc_option.flag_init_integer_value);
8927       else
8928         {
8929           gfc_free_expr (init_expr);
8930           init_expr = NULL;
8931         }
8932       break;
8933
8934     case BT_REAL:
8935       mpfr_init (init_expr->value.real);
8936       switch (gfc_option.flag_init_real)
8937         {
8938         case GFC_INIT_REAL_SNAN:
8939           init_expr->is_snan = 1;
8940           /* Fall through.  */
8941         case GFC_INIT_REAL_NAN:
8942           mpfr_set_nan (init_expr->value.real);
8943           break;
8944
8945         case GFC_INIT_REAL_INF:
8946           mpfr_set_inf (init_expr->value.real, 1);
8947           break;
8948
8949         case GFC_INIT_REAL_NEG_INF:
8950           mpfr_set_inf (init_expr->value.real, -1);
8951           break;
8952
8953         case GFC_INIT_REAL_ZERO:
8954           mpfr_set_ui (init_expr->value.real, 0.0, GFC_RND_MODE);
8955           break;
8956
8957         default:
8958           gfc_free_expr (init_expr);
8959           init_expr = NULL;
8960           break;
8961         }
8962       break;
8963           
8964     case BT_COMPLEX:
8965       mpc_init2 (init_expr->value.complex, mpfr_get_default_prec());
8966       switch (gfc_option.flag_init_real)
8967         {
8968         case GFC_INIT_REAL_SNAN:
8969           init_expr->is_snan = 1;
8970           /* Fall through.  */
8971         case GFC_INIT_REAL_NAN:
8972           mpfr_set_nan (mpc_realref (init_expr->value.complex));
8973           mpfr_set_nan (mpc_imagref (init_expr->value.complex));
8974           break;
8975
8976         case GFC_INIT_REAL_INF:
8977           mpfr_set_inf (mpc_realref (init_expr->value.complex), 1);
8978           mpfr_set_inf (mpc_imagref (init_expr->value.complex), 1);
8979           break;
8980
8981         case GFC_INIT_REAL_NEG_INF:
8982           mpfr_set_inf (mpc_realref (init_expr->value.complex), -1);
8983           mpfr_set_inf (mpc_imagref (init_expr->value.complex), -1);
8984           break;
8985
8986         case GFC_INIT_REAL_ZERO:
8987           mpc_set_ui (init_expr->value.complex, 0, GFC_MPC_RND_MODE);
8988           break;
8989
8990         default:
8991           gfc_free_expr (init_expr);
8992           init_expr = NULL;
8993           break;
8994         }
8995       break;
8996           
8997     case BT_LOGICAL:
8998       if (gfc_option.flag_init_logical == GFC_INIT_LOGICAL_FALSE)
8999         init_expr->value.logical = 0;
9000       else if (gfc_option.flag_init_logical == GFC_INIT_LOGICAL_TRUE)
9001         init_expr->value.logical = 1;
9002       else
9003         {
9004           gfc_free_expr (init_expr);
9005           init_expr = NULL;
9006         }
9007       break;
9008           
9009     case BT_CHARACTER:
9010       /* For characters, the length must be constant in order to 
9011          create a default initializer.  */
9012       if (gfc_option.flag_init_character == GFC_INIT_CHARACTER_ON
9013           && sym->ts.u.cl->length
9014           && sym->ts.u.cl->length->expr_type == EXPR_CONSTANT)
9015         {
9016           char_len = mpz_get_si (sym->ts.u.cl->length->value.integer);
9017           init_expr->value.character.length = char_len;
9018           init_expr->value.character.string = gfc_get_wide_string (char_len+1);
9019           for (i = 0; i < char_len; i++)
9020             init_expr->value.character.string[i]
9021               = (unsigned char) gfc_option.flag_init_character_value;
9022         }
9023       else
9024         {
9025           gfc_free_expr (init_expr);
9026           init_expr = NULL;
9027         }
9028       break;
9029           
9030     default:
9031      gfc_free_expr (init_expr);
9032      init_expr = NULL;
9033     }
9034   return init_expr;
9035 }
9036
9037 /* Add an initialization expression to a local variable.  */
9038 static void
9039 apply_default_init_local (gfc_symbol *sym)
9040 {
9041   gfc_expr *init = NULL;
9042
9043   /* The symbol should be a variable or a function return value.  */
9044   if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
9045       || (sym->attr.function && sym->result != sym))
9046     return;
9047
9048   /* Try to build the initializer expression.  If we can't initialize
9049      this symbol, then init will be NULL.  */
9050   init = build_default_init_expr (sym);
9051   if (init == NULL)
9052     return;
9053
9054   /* For saved variables, we don't want to add an initializer at 
9055      function entry, so we just add a static initializer.  */
9056   if (sym->attr.save || sym->ns->save_all 
9057       || gfc_option.flag_max_stack_var_size == 0)
9058     {
9059       /* Don't clobber an existing initializer!  */
9060       gcc_assert (sym->value == NULL);
9061       sym->value = init;
9062       return;
9063     }
9064
9065   build_init_assign (sym, init);
9066 }
9067
9068 /* Resolution of common features of flavors variable and procedure.  */
9069
9070 static gfc_try
9071 resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
9072 {
9073   /* Constraints on deferred shape variable.  */
9074   if (sym->as == NULL || sym->as->type != AS_DEFERRED)
9075     {
9076       if (sym->attr.allocatable)
9077         {
9078           if (sym->attr.dimension)
9079             {
9080               gfc_error ("Allocatable array '%s' at %L must have "
9081                          "a deferred shape", sym->name, &sym->declared_at);
9082               return FAILURE;
9083             }
9084           else if (gfc_notify_std (GFC_STD_F2003, "Scalar object '%s' at %L "
9085                                    "may not be ALLOCATABLE", sym->name,
9086                                    &sym->declared_at) == FAILURE)
9087             return FAILURE;
9088         }
9089
9090       if (sym->attr.pointer && sym->attr.dimension)
9091         {
9092           gfc_error ("Array pointer '%s' at %L must have a deferred shape",
9093                      sym->name, &sym->declared_at);
9094           return FAILURE;
9095         }
9096
9097     }
9098   else
9099     {
9100       if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
9101           && !sym->attr.dummy && sym->ts.type != BT_CLASS)
9102         {
9103           gfc_error ("Array '%s' at %L cannot have a deferred shape",
9104                      sym->name, &sym->declared_at);
9105           return FAILURE;
9106          }
9107     }
9108   return SUCCESS;
9109 }
9110
9111
9112 /* Additional checks for symbols with flavor variable and derived
9113    type.  To be called from resolve_fl_variable.  */
9114
9115 static gfc_try
9116 resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
9117 {
9118   gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
9119
9120   /* Check to see if a derived type is blocked from being host
9121      associated by the presence of another class I symbol in the same
9122      namespace.  14.6.1.3 of the standard and the discussion on
9123      comp.lang.fortran.  */
9124   if (sym->ns != sym->ts.u.derived->ns
9125       && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
9126     {
9127       gfc_symbol *s;
9128       gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
9129       if (s && s->attr.flavor != FL_DERIVED)
9130         {
9131           gfc_error ("The type '%s' cannot be host associated at %L "
9132                      "because it is blocked by an incompatible object "
9133                      "of the same name declared at %L",
9134                      sym->ts.u.derived->name, &sym->declared_at,
9135                      &s->declared_at);
9136           return FAILURE;
9137         }
9138     }
9139
9140   /* 4th constraint in section 11.3: "If an object of a type for which
9141      component-initialization is specified (R429) appears in the
9142      specification-part of a module and does not have the ALLOCATABLE
9143      or POINTER attribute, the object shall have the SAVE attribute."
9144
9145      The check for initializers is performed with
9146      has_default_initializer because gfc_default_initializer generates
9147      a hidden default for allocatable components.  */
9148   if (!(sym->value || no_init_flag) && sym->ns->proc_name
9149       && sym->ns->proc_name->attr.flavor == FL_MODULE
9150       && !sym->ns->save_all && !sym->attr.save
9151       && !sym->attr.pointer && !sym->attr.allocatable
9152       && has_default_initializer (sym->ts.u.derived)
9153       && gfc_notify_std (GFC_STD_F2008, "Fortran 2008: Implied SAVE for "
9154                          "module variable '%s' at %L, needed due to "
9155                          "the default initialization", sym->name,
9156                          &sym->declared_at) == FAILURE)
9157     return FAILURE;
9158
9159   if (sym->ts.type == BT_CLASS)
9160     {
9161       /* C502.  */
9162       if (!gfc_type_is_extensible (sym->ts.u.derived->components->ts.u.derived))
9163         {
9164           gfc_error ("Type '%s' of CLASS variable '%s' at %L is not extensible",
9165                      sym->ts.u.derived->components->ts.u.derived->name,
9166                      sym->name, &sym->declared_at);
9167           return FAILURE;
9168         }
9169
9170       /* C509.  */
9171       /* Assume that use associated symbols were checked in the module ns.  */ 
9172       if (!sym->attr.class_ok && !sym->attr.use_assoc)
9173         {
9174           gfc_error ("CLASS variable '%s' at %L must be dummy, allocatable "
9175                      "or pointer", sym->name, &sym->declared_at);
9176           return FAILURE;
9177         }
9178     }
9179
9180   /* Assign default initializer.  */
9181   if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
9182       && (!no_init_flag || sym->attr.intent == INTENT_OUT))
9183     {
9184       sym->value = gfc_default_initializer (&sym->ts);
9185     }
9186
9187   return SUCCESS;
9188 }
9189
9190
9191 /* Resolve symbols with flavor variable.  */
9192
9193 static gfc_try
9194 resolve_fl_variable (gfc_symbol *sym, int mp_flag)
9195 {
9196   int no_init_flag, automatic_flag;
9197   gfc_expr *e;
9198   const char *auto_save_msg;
9199
9200   auto_save_msg = "Automatic object '%s' at %L cannot have the "
9201                   "SAVE attribute";
9202
9203   if (resolve_fl_var_and_proc (sym, mp_flag) == FAILURE)
9204     return FAILURE;
9205
9206   /* Set this flag to check that variables are parameters of all entries.
9207      This check is effected by the call to gfc_resolve_expr through
9208      is_non_constant_shape_array.  */
9209   specification_expr = 1;
9210
9211   if (sym->ns->proc_name
9212       && (sym->ns->proc_name->attr.flavor == FL_MODULE
9213           || sym->ns->proc_name->attr.is_main_program)
9214       && !sym->attr.use_assoc
9215       && !sym->attr.allocatable
9216       && !sym->attr.pointer
9217       && is_non_constant_shape_array (sym))
9218     {
9219       /* The shape of a main program or module array needs to be
9220          constant.  */
9221       gfc_error ("The module or main program array '%s' at %L must "
9222                  "have constant shape", sym->name, &sym->declared_at);
9223       specification_expr = 0;
9224       return FAILURE;
9225     }
9226
9227   if (sym->ts.type == BT_CHARACTER)
9228     {
9229       /* Make sure that character string variables with assumed length are
9230          dummy arguments.  */
9231       e = sym->ts.u.cl->length;
9232       if (e == NULL && !sym->attr.dummy && !sym->attr.result)
9233         {
9234           gfc_error ("Entity with assumed character length at %L must be a "
9235                      "dummy argument or a PARAMETER", &sym->declared_at);
9236           return FAILURE;
9237         }
9238
9239       if (e && sym->attr.save && !gfc_is_constant_expr (e))
9240         {
9241           gfc_error (auto_save_msg, sym->name, &sym->declared_at);
9242           return FAILURE;
9243         }
9244
9245       if (!gfc_is_constant_expr (e)
9246           && !(e->expr_type == EXPR_VARIABLE
9247                && e->symtree->n.sym->attr.flavor == FL_PARAMETER)
9248           && sym->ns->proc_name
9249           && (sym->ns->proc_name->attr.flavor == FL_MODULE
9250               || sym->ns->proc_name->attr.is_main_program)
9251           && !sym->attr.use_assoc)
9252         {
9253           gfc_error ("'%s' at %L must have constant character length "
9254                      "in this context", sym->name, &sym->declared_at);
9255           return FAILURE;
9256         }
9257     }
9258
9259   if (sym->value == NULL && sym->attr.referenced)
9260     apply_default_init_local (sym); /* Try to apply a default initialization.  */
9261
9262   /* Determine if the symbol may not have an initializer.  */
9263   no_init_flag = automatic_flag = 0;
9264   if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
9265       || sym->attr.intrinsic || sym->attr.result)
9266     no_init_flag = 1;
9267   else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
9268            && is_non_constant_shape_array (sym))
9269     {
9270       no_init_flag = automatic_flag = 1;
9271
9272       /* Also, they must not have the SAVE attribute.
9273          SAVE_IMPLICIT is checked below.  */
9274       if (sym->attr.save == SAVE_EXPLICIT)
9275         {
9276           gfc_error (auto_save_msg, sym->name, &sym->declared_at);
9277           return FAILURE;
9278         }
9279     }
9280
9281   /* Ensure that any initializer is simplified.  */
9282   if (sym->value)
9283     gfc_simplify_expr (sym->value, 1);
9284
9285   /* Reject illegal initializers.  */
9286   if (!sym->mark && sym->value)
9287     {
9288       if (sym->attr.allocatable)
9289         gfc_error ("Allocatable '%s' at %L cannot have an initializer",
9290                    sym->name, &sym->declared_at);
9291       else if (sym->attr.external)
9292         gfc_error ("External '%s' at %L cannot have an initializer",
9293                    sym->name, &sym->declared_at);
9294       else if (sym->attr.dummy
9295         && !(sym->ts.type == BT_DERIVED && sym->attr.intent == INTENT_OUT))
9296         gfc_error ("Dummy '%s' at %L cannot have an initializer",
9297                    sym->name, &sym->declared_at);
9298       else if (sym->attr.intrinsic)
9299         gfc_error ("Intrinsic '%s' at %L cannot have an initializer",
9300                    sym->name, &sym->declared_at);
9301       else if (sym->attr.result)
9302         gfc_error ("Function result '%s' at %L cannot have an initializer",
9303                    sym->name, &sym->declared_at);
9304       else if (automatic_flag)
9305         gfc_error ("Automatic array '%s' at %L cannot have an initializer",
9306                    sym->name, &sym->declared_at);
9307       else
9308         goto no_init_error;
9309       return FAILURE;
9310     }
9311
9312 no_init_error:
9313   if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
9314     return resolve_fl_variable_derived (sym, no_init_flag);
9315
9316   return SUCCESS;
9317 }
9318
9319
9320 /* Resolve a procedure.  */
9321
9322 static gfc_try
9323 resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
9324 {
9325   gfc_formal_arglist *arg;
9326
9327   if (sym->attr.function
9328       && resolve_fl_var_and_proc (sym, mp_flag) == FAILURE)
9329     return FAILURE;
9330
9331   if (sym->ts.type == BT_CHARACTER)
9332     {
9333       gfc_charlen *cl = sym->ts.u.cl;
9334
9335       if (cl && cl->length && gfc_is_constant_expr (cl->length)
9336              && resolve_charlen (cl) == FAILURE)
9337         return FAILURE;
9338
9339       if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
9340           && sym->attr.proc == PROC_ST_FUNCTION)
9341         {
9342           gfc_error ("Character-valued statement function '%s' at %L must "
9343                      "have constant length", sym->name, &sym->declared_at);
9344           return FAILURE;
9345         }
9346     }
9347
9348   /* Ensure that derived type for are not of a private type.  Internal
9349      module procedures are excluded by 2.2.3.3 - i.e., they are not
9350      externally accessible and can access all the objects accessible in
9351      the host.  */
9352   if (!(sym->ns->parent
9353         && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
9354       && gfc_check_access(sym->attr.access, sym->ns->default_access))
9355     {
9356       gfc_interface *iface;
9357
9358       for (arg = sym->formal; arg; arg = arg->next)
9359         {
9360           if (arg->sym
9361               && arg->sym->ts.type == BT_DERIVED
9362               && !arg->sym->ts.u.derived->attr.use_assoc
9363               && !gfc_check_access (arg->sym->ts.u.derived->attr.access,
9364                                     arg->sym->ts.u.derived->ns->default_access)
9365               && gfc_notify_std (GFC_STD_F2003, "Fortran 2003: '%s' is of a "
9366                                  "PRIVATE type and cannot be a dummy argument"
9367                                  " of '%s', which is PUBLIC at %L",
9368                                  arg->sym->name, sym->name, &sym->declared_at)
9369                  == FAILURE)
9370             {
9371               /* Stop this message from recurring.  */
9372               arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
9373               return FAILURE;
9374             }
9375         }
9376
9377       /* PUBLIC interfaces may expose PRIVATE procedures that take types
9378          PRIVATE to the containing module.  */
9379       for (iface = sym->generic; iface; iface = iface->next)
9380         {
9381           for (arg = iface->sym->formal; arg; arg = arg->next)
9382             {
9383               if (arg->sym
9384                   && arg->sym->ts.type == BT_DERIVED
9385                   && !arg->sym->ts.u.derived->attr.use_assoc
9386                   && !gfc_check_access (arg->sym->ts.u.derived->attr.access,
9387                                         arg->sym->ts.u.derived->ns->default_access)
9388                   && gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Procedure "
9389                                      "'%s' in PUBLIC interface '%s' at %L "
9390                                      "takes dummy arguments of '%s' which is "
9391                                      "PRIVATE", iface->sym->name, sym->name,
9392                                      &iface->sym->declared_at,
9393                                      gfc_typename (&arg->sym->ts)) == FAILURE)
9394                 {
9395                   /* Stop this message from recurring.  */
9396                   arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
9397                   return FAILURE;
9398                 }
9399              }
9400         }
9401
9402       /* PUBLIC interfaces may expose PRIVATE procedures that take types
9403          PRIVATE to the containing module.  */
9404       for (iface = sym->generic; iface; iface = iface->next)
9405         {
9406           for (arg = iface->sym->formal; arg; arg = arg->next)
9407             {
9408               if (arg->sym
9409                   && arg->sym->ts.type == BT_DERIVED
9410                   && !arg->sym->ts.u.derived->attr.use_assoc
9411                   && !gfc_check_access (arg->sym->ts.u.derived->attr.access,
9412                                         arg->sym->ts.u.derived->ns->default_access)
9413                   && gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Procedure "
9414                                      "'%s' in PUBLIC interface '%s' at %L "
9415                                      "takes dummy arguments of '%s' which is "
9416                                      "PRIVATE", iface->sym->name, sym->name,
9417                                      &iface->sym->declared_at,
9418                                      gfc_typename (&arg->sym->ts)) == FAILURE)
9419                 {
9420                   /* Stop this message from recurring.  */
9421                   arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
9422                   return FAILURE;
9423                 }
9424              }
9425         }
9426     }
9427
9428   if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
9429       && !sym->attr.proc_pointer)
9430     {
9431       gfc_error ("Function '%s' at %L cannot have an initializer",
9432                  sym->name, &sym->declared_at);
9433       return FAILURE;
9434     }
9435
9436   /* An external symbol may not have an initializer because it is taken to be
9437      a procedure. Exception: Procedure Pointers.  */
9438   if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
9439     {
9440       gfc_error ("External object '%s' at %L may not have an initializer",
9441                  sym->name, &sym->declared_at);
9442       return FAILURE;
9443     }
9444
9445   /* An elemental function is required to return a scalar 12.7.1  */
9446   if (sym->attr.elemental && sym->attr.function && sym->as)
9447     {
9448       gfc_error ("ELEMENTAL function '%s' at %L must have a scalar "
9449                  "result", sym->name, &sym->declared_at);
9450       /* Reset so that the error only occurs once.  */
9451       sym->attr.elemental = 0;
9452       return FAILURE;
9453     }
9454
9455   /* 5.1.1.5 of the Standard: A function name declared with an asterisk
9456      char-len-param shall not be array-valued, pointer-valued, recursive
9457      or pure.  ....snip... A character value of * may only be used in the
9458      following ways: (i) Dummy arg of procedure - dummy associates with
9459      actual length; (ii) To declare a named constant; or (iii) External
9460      function - but length must be declared in calling scoping unit.  */
9461   if (sym->attr.function
9462       && sym->ts.type == BT_CHARACTER
9463       && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
9464     {
9465       if ((sym->as && sym->as->rank) || (sym->attr.pointer)
9466           || (sym->attr.recursive) || (sym->attr.pure))
9467         {
9468           if (sym->as && sym->as->rank)
9469             gfc_error ("CHARACTER(*) function '%s' at %L cannot be "
9470                        "array-valued", sym->name, &sym->declared_at);
9471
9472           if (sym->attr.pointer)
9473             gfc_error ("CHARACTER(*) function '%s' at %L cannot be "
9474                        "pointer-valued", sym->name, &sym->declared_at);
9475
9476           if (sym->attr.pure)
9477             gfc_error ("CHARACTER(*) function '%s' at %L cannot be "
9478                        "pure", sym->name, &sym->declared_at);
9479
9480           if (sym->attr.recursive)
9481             gfc_error ("CHARACTER(*) function '%s' at %L cannot be "
9482                        "recursive", sym->name, &sym->declared_at);
9483
9484           return FAILURE;
9485         }
9486
9487       /* Appendix B.2 of the standard.  Contained functions give an
9488          error anyway.  Fixed-form is likely to be F77/legacy.  */
9489       if (!sym->attr.contained && gfc_current_form != FORM_FIXED)
9490         gfc_notify_std (GFC_STD_F95_OBS, "Obsolescent feature: "
9491                         "CHARACTER(*) function '%s' at %L",
9492                         sym->name, &sym->declared_at);
9493     }
9494
9495   if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
9496     {
9497       gfc_formal_arglist *curr_arg;
9498       int has_non_interop_arg = 0;
9499
9500       if (verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
9501                              sym->common_block) == FAILURE)
9502         {
9503           /* Clear these to prevent looking at them again if there was an
9504              error.  */
9505           sym->attr.is_bind_c = 0;
9506           sym->attr.is_c_interop = 0;
9507           sym->ts.is_c_interop = 0;
9508         }
9509       else
9510         {
9511           /* So far, no errors have been found.  */
9512           sym->attr.is_c_interop = 1;
9513           sym->ts.is_c_interop = 1;
9514         }
9515       
9516       curr_arg = sym->formal;
9517       while (curr_arg != NULL)
9518         {
9519           /* Skip implicitly typed dummy args here.  */
9520           if (curr_arg->sym->attr.implicit_type == 0)
9521             if (verify_c_interop_param (curr_arg->sym) == FAILURE)
9522               /* If something is found to fail, record the fact so we
9523                  can mark the symbol for the procedure as not being
9524                  BIND(C) to try and prevent multiple errors being
9525                  reported.  */
9526               has_non_interop_arg = 1;
9527           
9528           curr_arg = curr_arg->next;
9529         }
9530
9531       /* See if any of the arguments were not interoperable and if so, clear
9532          the procedure symbol to prevent duplicate error messages.  */
9533       if (has_non_interop_arg != 0)
9534         {
9535           sym->attr.is_c_interop = 0;
9536           sym->ts.is_c_interop = 0;
9537           sym->attr.is_bind_c = 0;
9538         }
9539     }
9540   
9541   if (!sym->attr.proc_pointer)
9542     {
9543       if (sym->attr.save == SAVE_EXPLICIT)
9544         {
9545           gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
9546                      "in '%s' at %L", sym->name, &sym->declared_at);
9547           return FAILURE;
9548         }
9549       if (sym->attr.intent)
9550         {
9551           gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
9552                      "in '%s' at %L", sym->name, &sym->declared_at);
9553           return FAILURE;
9554         }
9555       if (sym->attr.subroutine && sym->attr.result)
9556         {
9557           gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
9558                      "in '%s' at %L", sym->name, &sym->declared_at);
9559           return FAILURE;
9560         }
9561       if (sym->attr.external && sym->attr.function
9562           && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
9563               || sym->attr.contained))
9564         {
9565           gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
9566                      "in '%s' at %L", sym->name, &sym->declared_at);
9567           return FAILURE;
9568         }
9569       if (strcmp ("ppr@", sym->name) == 0)
9570         {
9571           gfc_error ("Procedure pointer result '%s' at %L "
9572                      "is missing the pointer attribute",
9573                      sym->ns->proc_name->name, &sym->declared_at);
9574           return FAILURE;
9575         }
9576     }
9577
9578   return SUCCESS;
9579 }
9580
9581
9582 /* Resolve a list of finalizer procedures.  That is, after they have hopefully
9583    been defined and we now know their defined arguments, check that they fulfill
9584    the requirements of the standard for procedures used as finalizers.  */
9585
9586 static gfc_try
9587 gfc_resolve_finalizers (gfc_symbol* derived)
9588 {
9589   gfc_finalizer* list;
9590   gfc_finalizer** prev_link; /* For removing wrong entries from the list.  */
9591   gfc_try result = SUCCESS;
9592   bool seen_scalar = false;
9593
9594   if (!derived->f2k_derived || !derived->f2k_derived->finalizers)
9595     return SUCCESS;
9596
9597   /* Walk over the list of finalizer-procedures, check them, and if any one
9598      does not fit in with the standard's definition, print an error and remove
9599      it from the list.  */
9600   prev_link = &derived->f2k_derived->finalizers;
9601   for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
9602     {
9603       gfc_symbol* arg;
9604       gfc_finalizer* i;
9605       int my_rank;
9606
9607       /* Skip this finalizer if we already resolved it.  */
9608       if (list->proc_tree)
9609         {
9610           prev_link = &(list->next);
9611           continue;
9612         }
9613
9614       /* Check this exists and is a SUBROUTINE.  */
9615       if (!list->proc_sym->attr.subroutine)
9616         {
9617           gfc_error ("FINAL procedure '%s' at %L is not a SUBROUTINE",
9618                      list->proc_sym->name, &list->where);
9619           goto error;
9620         }
9621
9622       /* We should have exactly one argument.  */
9623       if (!list->proc_sym->formal || list->proc_sym->formal->next)
9624         {
9625           gfc_error ("FINAL procedure at %L must have exactly one argument",
9626                      &list->where);
9627           goto error;
9628         }
9629       arg = list->proc_sym->formal->sym;
9630
9631       /* This argument must be of our type.  */
9632       if (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived)
9633         {
9634           gfc_error ("Argument of FINAL procedure at %L must be of type '%s'",
9635                      &arg->declared_at, derived->name);
9636           goto error;
9637         }
9638
9639       /* It must neither be a pointer nor allocatable nor optional.  */
9640       if (arg->attr.pointer)
9641         {
9642           gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
9643                      &arg->declared_at);
9644           goto error;
9645         }
9646       if (arg->attr.allocatable)
9647         {
9648           gfc_error ("Argument of FINAL procedure at %L must not be"
9649                      " ALLOCATABLE", &arg->declared_at);
9650           goto error;
9651         }
9652       if (arg->attr.optional)
9653         {
9654           gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
9655                      &arg->declared_at);
9656           goto error;
9657         }
9658
9659       /* It must not be INTENT(OUT).  */
9660       if (arg->attr.intent == INTENT_OUT)
9661         {
9662           gfc_error ("Argument of FINAL procedure at %L must not be"
9663                      " INTENT(OUT)", &arg->declared_at);
9664           goto error;
9665         }
9666
9667       /* Warn if the procedure is non-scalar and not assumed shape.  */
9668       if (gfc_option.warn_surprising && arg->as && arg->as->rank > 0
9669           && arg->as->type != AS_ASSUMED_SHAPE)
9670         gfc_warning ("Non-scalar FINAL procedure at %L should have assumed"
9671                      " shape argument", &arg->declared_at);
9672
9673       /* Check that it does not match in kind and rank with a FINAL procedure
9674          defined earlier.  To really loop over the *earlier* declarations,
9675          we need to walk the tail of the list as new ones were pushed at the
9676          front.  */
9677       /* TODO: Handle kind parameters once they are implemented.  */
9678       my_rank = (arg->as ? arg->as->rank : 0);
9679       for (i = list->next; i; i = i->next)
9680         {
9681           /* Argument list might be empty; that is an error signalled earlier,
9682              but we nevertheless continued resolving.  */
9683           if (i->proc_sym->formal)
9684             {
9685               gfc_symbol* i_arg = i->proc_sym->formal->sym;
9686               const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
9687               if (i_rank == my_rank)
9688                 {
9689                   gfc_error ("FINAL procedure '%s' declared at %L has the same"
9690                              " rank (%d) as '%s'",
9691                              list->proc_sym->name, &list->where, my_rank, 
9692                              i->proc_sym->name);
9693                   goto error;
9694                 }
9695             }
9696         }
9697
9698         /* Is this the/a scalar finalizer procedure?  */
9699         if (!arg->as || arg->as->rank == 0)
9700           seen_scalar = true;
9701
9702         /* Find the symtree for this procedure.  */
9703         gcc_assert (!list->proc_tree);
9704         list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
9705
9706         prev_link = &list->next;
9707         continue;
9708
9709         /* Remove wrong nodes immediately from the list so we don't risk any
9710            troubles in the future when they might fail later expectations.  */
9711 error:
9712         result = FAILURE;
9713         i = list;
9714         *prev_link = list->next;
9715         gfc_free_finalizer (i);
9716     }
9717
9718   /* Warn if we haven't seen a scalar finalizer procedure (but we know there
9719      were nodes in the list, must have been for arrays.  It is surely a good
9720      idea to have a scalar version there if there's something to finalize.  */
9721   if (gfc_option.warn_surprising && result == SUCCESS && !seen_scalar)
9722     gfc_warning ("Only array FINAL procedures declared for derived type '%s'"
9723                  " defined at %L, suggest also scalar one",
9724                  derived->name, &derived->declared_at);
9725
9726   /* TODO:  Remove this error when finalization is finished.  */
9727   gfc_error ("Finalization at %L is not yet implemented",
9728              &derived->declared_at);
9729
9730   return result;
9731 }
9732
9733
9734 /* Check that it is ok for the typebound procedure proc to override the
9735    procedure old.  */
9736
9737 static gfc_try
9738 check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
9739 {
9740   locus where;
9741   const gfc_symbol* proc_target;
9742   const gfc_symbol* old_target;
9743   unsigned proc_pass_arg, old_pass_arg, argpos;
9744   gfc_formal_arglist* proc_formal;
9745   gfc_formal_arglist* old_formal;
9746
9747   /* This procedure should only be called for non-GENERIC proc.  */
9748   gcc_assert (!proc->n.tb->is_generic);
9749
9750   /* If the overwritten procedure is GENERIC, this is an error.  */
9751   if (old->n.tb->is_generic)
9752     {
9753       gfc_error ("Can't overwrite GENERIC '%s' at %L",
9754                  old->name, &proc->n.tb->where);
9755       return FAILURE;
9756     }
9757
9758   where = proc->n.tb->where;
9759   proc_target = proc->n.tb->u.specific->n.sym;
9760   old_target = old->n.tb->u.specific->n.sym;
9761
9762   /* Check that overridden binding is not NON_OVERRIDABLE.  */
9763   if (old->n.tb->non_overridable)
9764     {
9765       gfc_error ("'%s' at %L overrides a procedure binding declared"
9766                  " NON_OVERRIDABLE", proc->name, &where);
9767       return FAILURE;
9768     }
9769
9770   /* It's an error to override a non-DEFERRED procedure with a DEFERRED one.  */
9771   if (!old->n.tb->deferred && proc->n.tb->deferred)
9772     {
9773       gfc_error ("'%s' at %L must not be DEFERRED as it overrides a"
9774                  " non-DEFERRED binding", proc->name, &where);
9775       return FAILURE;
9776     }
9777
9778   /* If the overridden binding is PURE, the overriding must be, too.  */
9779   if (old_target->attr.pure && !proc_target->attr.pure)
9780     {
9781       gfc_error ("'%s' at %L overrides a PURE procedure and must also be PURE",
9782                  proc->name, &where);
9783       return FAILURE;
9784     }
9785
9786   /* If the overridden binding is ELEMENTAL, the overriding must be, too.  If it
9787      is not, the overriding must not be either.  */
9788   if (old_target->attr.elemental && !proc_target->attr.elemental)
9789     {
9790       gfc_error ("'%s' at %L overrides an ELEMENTAL procedure and must also be"
9791                  " ELEMENTAL", proc->name, &where);
9792       return FAILURE;
9793     }
9794   if (!old_target->attr.elemental && proc_target->attr.elemental)
9795     {
9796       gfc_error ("'%s' at %L overrides a non-ELEMENTAL procedure and must not"
9797                  " be ELEMENTAL, either", proc->name, &where);
9798       return FAILURE;
9799     }
9800
9801   /* If the overridden binding is a SUBROUTINE, the overriding must also be a
9802      SUBROUTINE.  */
9803   if (old_target->attr.subroutine && !proc_target->attr.subroutine)
9804     {
9805       gfc_error ("'%s' at %L overrides a SUBROUTINE and must also be a"
9806                  " SUBROUTINE", proc->name, &where);
9807       return FAILURE;
9808     }
9809
9810   /* If the overridden binding is a FUNCTION, the overriding must also be a
9811      FUNCTION and have the same characteristics.  */
9812   if (old_target->attr.function)
9813     {
9814       if (!proc_target->attr.function)
9815         {
9816           gfc_error ("'%s' at %L overrides a FUNCTION and must also be a"
9817                      " FUNCTION", proc->name, &where);
9818           return FAILURE;
9819         }
9820
9821       /* FIXME:  Do more comprehensive checking (including, for instance, the
9822          rank and array-shape).  */
9823       gcc_assert (proc_target->result && old_target->result);
9824       if (!gfc_compare_types (&proc_target->result->ts,
9825                               &old_target->result->ts))
9826         {
9827           gfc_error ("'%s' at %L and the overridden FUNCTION should have"
9828                      " matching result types", proc->name, &where);
9829           return FAILURE;
9830         }
9831     }
9832
9833   /* If the overridden binding is PUBLIC, the overriding one must not be
9834      PRIVATE.  */
9835   if (old->n.tb->access == ACCESS_PUBLIC
9836       && proc->n.tb->access == ACCESS_PRIVATE)
9837     {
9838       gfc_error ("'%s' at %L overrides a PUBLIC procedure and must not be"
9839                  " PRIVATE", proc->name, &where);
9840       return FAILURE;
9841     }
9842
9843   /* Compare the formal argument lists of both procedures.  This is also abused
9844      to find the position of the passed-object dummy arguments of both
9845      bindings as at least the overridden one might not yet be resolved and we
9846      need those positions in the check below.  */
9847   proc_pass_arg = old_pass_arg = 0;
9848   if (!proc->n.tb->nopass && !proc->n.tb->pass_arg)
9849     proc_pass_arg = 1;
9850   if (!old->n.tb->nopass && !old->n.tb->pass_arg)
9851     old_pass_arg = 1;
9852   argpos = 1;
9853   for (proc_formal = proc_target->formal, old_formal = old_target->formal;
9854        proc_formal && old_formal;
9855        proc_formal = proc_formal->next, old_formal = old_formal->next)
9856     {
9857       if (proc->n.tb->pass_arg
9858           && !strcmp (proc->n.tb->pass_arg, proc_formal->sym->name))
9859         proc_pass_arg = argpos;
9860       if (old->n.tb->pass_arg
9861           && !strcmp (old->n.tb->pass_arg, old_formal->sym->name))
9862         old_pass_arg = argpos;
9863
9864       /* Check that the names correspond.  */
9865       if (strcmp (proc_formal->sym->name, old_formal->sym->name))
9866         {
9867           gfc_error ("Dummy argument '%s' of '%s' at %L should be named '%s' as"
9868                      " to match the corresponding argument of the overridden"
9869                      " procedure", proc_formal->sym->name, proc->name, &where,
9870                      old_formal->sym->name);
9871           return FAILURE;
9872         }
9873
9874       /* Check that the types correspond if neither is the passed-object
9875          argument.  */
9876       /* FIXME:  Do more comprehensive testing here.  */
9877       if (proc_pass_arg != argpos && old_pass_arg != argpos
9878           && !gfc_compare_types (&proc_formal->sym->ts, &old_formal->sym->ts))
9879         {
9880           gfc_error ("Types mismatch for dummy argument '%s' of '%s' %L "
9881                      "in respect to the overridden procedure",
9882                      proc_formal->sym->name, proc->name, &where);
9883           return FAILURE;
9884         }
9885
9886       ++argpos;
9887     }
9888   if (proc_formal || old_formal)
9889     {
9890       gfc_error ("'%s' at %L must have the same number of formal arguments as"
9891                  " the overridden procedure", proc->name, &where);
9892       return FAILURE;
9893     }
9894
9895   /* If the overridden binding is NOPASS, the overriding one must also be
9896      NOPASS.  */
9897   if (old->n.tb->nopass && !proc->n.tb->nopass)
9898     {
9899       gfc_error ("'%s' at %L overrides a NOPASS binding and must also be"
9900                  " NOPASS", proc->name, &where);
9901       return FAILURE;
9902     }
9903
9904   /* If the overridden binding is PASS(x), the overriding one must also be
9905      PASS and the passed-object dummy arguments must correspond.  */
9906   if (!old->n.tb->nopass)
9907     {
9908       if (proc->n.tb->nopass)
9909         {
9910           gfc_error ("'%s' at %L overrides a binding with PASS and must also be"
9911                      " PASS", proc->name, &where);
9912           return FAILURE;
9913         }
9914
9915       if (proc_pass_arg != old_pass_arg)
9916         {
9917           gfc_error ("Passed-object dummy argument of '%s' at %L must be at"
9918                      " the same position as the passed-object dummy argument of"
9919                      " the overridden procedure", proc->name, &where);
9920           return FAILURE;
9921         }
9922     }
9923
9924   return SUCCESS;
9925 }
9926
9927
9928 /* Check if two GENERIC targets are ambiguous and emit an error is they are.  */
9929
9930 static gfc_try
9931 check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
9932                              const char* generic_name, locus where)
9933 {
9934   gfc_symbol* sym1;
9935   gfc_symbol* sym2;
9936
9937   gcc_assert (t1->specific && t2->specific);
9938   gcc_assert (!t1->specific->is_generic);
9939   gcc_assert (!t2->specific->is_generic);
9940
9941   sym1 = t1->specific->u.specific->n.sym;
9942   sym2 = t2->specific->u.specific->n.sym;
9943
9944   if (sym1 == sym2)
9945     return SUCCESS;
9946
9947   /* Both must be SUBROUTINEs or both must be FUNCTIONs.  */
9948   if (sym1->attr.subroutine != sym2->attr.subroutine
9949       || sym1->attr.function != sym2->attr.function)
9950     {
9951       gfc_error ("'%s' and '%s' can't be mixed FUNCTION/SUBROUTINE for"
9952                  " GENERIC '%s' at %L",
9953                  sym1->name, sym2->name, generic_name, &where);
9954       return FAILURE;
9955     }
9956
9957   /* Compare the interfaces.  */
9958   if (gfc_compare_interfaces (sym1, sym2, sym2->name, 1, 0, NULL, 0))
9959     {
9960       gfc_error ("'%s' and '%s' for GENERIC '%s' at %L are ambiguous",
9961                  sym1->name, sym2->name, generic_name, &where);
9962       return FAILURE;
9963     }
9964
9965   return SUCCESS;
9966 }
9967
9968
9969 /* Worker function for resolving a generic procedure binding; this is used to
9970    resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
9971
9972    The difference between those cases is finding possible inherited bindings
9973    that are overridden, as one has to look for them in tb_sym_root,
9974    tb_uop_root or tb_op, respectively.  Thus the caller must already find
9975    the super-type and set p->overridden correctly.  */
9976
9977 static gfc_try
9978 resolve_tb_generic_targets (gfc_symbol* super_type,
9979                             gfc_typebound_proc* p, const char* name)
9980 {
9981   gfc_tbp_generic* target;
9982   gfc_symtree* first_target;
9983   gfc_symtree* inherited;
9984
9985   gcc_assert (p && p->is_generic);
9986
9987   /* Try to find the specific bindings for the symtrees in our target-list.  */
9988   gcc_assert (p->u.generic);
9989   for (target = p->u.generic; target; target = target->next)
9990     if (!target->specific)
9991       {
9992         gfc_typebound_proc* overridden_tbp;
9993         gfc_tbp_generic* g;
9994         const char* target_name;
9995
9996         target_name = target->specific_st->name;
9997
9998         /* Defined for this type directly.  */
9999         if (target->specific_st->n.tb)
10000           {
10001             target->specific = target->specific_st->n.tb;
10002             goto specific_found;
10003           }
10004
10005         /* Look for an inherited specific binding.  */
10006         if (super_type)
10007           {
10008             inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
10009                                                  true, NULL);
10010
10011             if (inherited)
10012               {
10013                 gcc_assert (inherited->n.tb);
10014                 target->specific = inherited->n.tb;
10015                 goto specific_found;
10016               }
10017           }
10018
10019         gfc_error ("Undefined specific binding '%s' as target of GENERIC '%s'"
10020                    " at %L", target_name, name, &p->where);
10021         return FAILURE;
10022
10023         /* Once we've found the specific binding, check it is not ambiguous with
10024            other specifics already found or inherited for the same GENERIC.  */
10025 specific_found:
10026         gcc_assert (target->specific);
10027
10028         /* This must really be a specific binding!  */
10029         if (target->specific->is_generic)
10030           {
10031             gfc_error ("GENERIC '%s' at %L must target a specific binding,"
10032                        " '%s' is GENERIC, too", name, &p->where, target_name);
10033             return FAILURE;
10034           }
10035
10036         /* Check those already resolved on this type directly.  */
10037         for (g = p->u.generic; g; g = g->next)
10038           if (g != target && g->specific
10039               && check_generic_tbp_ambiguity (target, g, name, p->where)
10040                   == FAILURE)
10041             return FAILURE;
10042
10043         /* Check for ambiguity with inherited specific targets.  */
10044         for (overridden_tbp = p->overridden; overridden_tbp;
10045              overridden_tbp = overridden_tbp->overridden)
10046           if (overridden_tbp->is_generic)
10047             {
10048               for (g = overridden_tbp->u.generic; g; g = g->next)
10049                 {
10050                   gcc_assert (g->specific);
10051                   if (check_generic_tbp_ambiguity (target, g,
10052                                                    name, p->where) == FAILURE)
10053                     return FAILURE;
10054                 }
10055             }
10056       }
10057
10058   /* If we attempt to "overwrite" a specific binding, this is an error.  */
10059   if (p->overridden && !p->overridden->is_generic)
10060     {
10061       gfc_error ("GENERIC '%s' at %L can't overwrite specific binding with"
10062                  " the same name", name, &p->where);
10063       return FAILURE;
10064     }
10065
10066   /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
10067      all must have the same attributes here.  */
10068   first_target = p->u.generic->specific->u.specific;
10069   gcc_assert (first_target);
10070   p->subroutine = first_target->n.sym->attr.subroutine;
10071   p->function = first_target->n.sym->attr.function;
10072
10073   return SUCCESS;
10074 }
10075
10076
10077 /* Resolve a GENERIC procedure binding for a derived type.  */
10078
10079 static gfc_try
10080 resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
10081 {
10082   gfc_symbol* super_type;
10083
10084   /* Find the overridden binding if any.  */
10085   st->n.tb->overridden = NULL;
10086   super_type = gfc_get_derived_super_type (derived);
10087   if (super_type)
10088     {
10089       gfc_symtree* overridden;
10090       overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
10091                                             true, NULL);
10092
10093       if (overridden && overridden->n.tb)
10094         st->n.tb->overridden = overridden->n.tb;
10095     }
10096
10097   /* Resolve using worker function.  */
10098   return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
10099 }
10100
10101
10102 /* Retrieve the target-procedure of an operator binding and do some checks in
10103    common for intrinsic and user-defined type-bound operators.  */
10104
10105 static gfc_symbol*
10106 get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
10107 {
10108   gfc_symbol* target_proc;
10109
10110   gcc_assert (target->specific && !target->specific->is_generic);
10111   target_proc = target->specific->u.specific->n.sym;
10112   gcc_assert (target_proc);
10113
10114   /* All operator bindings must have a passed-object dummy argument.  */
10115   if (target->specific->nopass)
10116     {
10117       gfc_error ("Type-bound operator at %L can't be NOPASS", &where);
10118       return NULL;
10119     }
10120
10121   return target_proc;
10122 }
10123
10124
10125 /* Resolve a type-bound intrinsic operator.  */
10126
10127 static gfc_try
10128 resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
10129                                 gfc_typebound_proc* p)
10130 {
10131   gfc_symbol* super_type;
10132   gfc_tbp_generic* target;
10133   
10134   /* If there's already an error here, do nothing (but don't fail again).  */
10135   if (p->error)
10136     return SUCCESS;
10137
10138   /* Operators should always be GENERIC bindings.  */
10139   gcc_assert (p->is_generic);
10140
10141   /* Look for an overridden binding.  */
10142   super_type = gfc_get_derived_super_type (derived);
10143   if (super_type && super_type->f2k_derived)
10144     p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
10145                                                      op, true, NULL);
10146   else
10147     p->overridden = NULL;
10148
10149   /* Resolve general GENERIC properties using worker function.  */
10150   if (resolve_tb_generic_targets (super_type, p, gfc_op2string (op)) == FAILURE)
10151     goto error;
10152
10153   /* Check the targets to be procedures of correct interface.  */
10154   for (target = p->u.generic; target; target = target->next)
10155     {
10156       gfc_symbol* target_proc;
10157
10158       target_proc = get_checked_tb_operator_target (target, p->where);
10159       if (!target_proc)
10160         goto error;
10161
10162       if (!gfc_check_operator_interface (target_proc, op, p->where))
10163         goto error;
10164     }
10165
10166   return SUCCESS;
10167
10168 error:
10169   p->error = 1;
10170   return FAILURE;
10171 }
10172
10173
10174 /* Resolve a type-bound user operator (tree-walker callback).  */
10175
10176 static gfc_symbol* resolve_bindings_derived;
10177 static gfc_try resolve_bindings_result;
10178
10179 static gfc_try check_uop_procedure (gfc_symbol* sym, locus where);
10180
10181 static void
10182 resolve_typebound_user_op (gfc_symtree* stree)
10183 {
10184   gfc_symbol* super_type;
10185   gfc_tbp_generic* target;
10186
10187   gcc_assert (stree && stree->n.tb);
10188
10189   if (stree->n.tb->error)
10190     return;
10191
10192   /* Operators should always be GENERIC bindings.  */
10193   gcc_assert (stree->n.tb->is_generic);
10194
10195   /* Find overridden procedure, if any.  */
10196   super_type = gfc_get_derived_super_type (resolve_bindings_derived);
10197   if (super_type && super_type->f2k_derived)
10198     {
10199       gfc_symtree* overridden;
10200       overridden = gfc_find_typebound_user_op (super_type, NULL,
10201                                                stree->name, true, NULL);
10202
10203       if (overridden && overridden->n.tb)
10204         stree->n.tb->overridden = overridden->n.tb;
10205     }
10206   else
10207     stree->n.tb->overridden = NULL;
10208
10209   /* Resolve basically using worker function.  */
10210   if (resolve_tb_generic_targets (super_type, stree->n.tb, stree->name)
10211         == FAILURE)
10212     goto error;
10213
10214   /* Check the targets to be functions of correct interface.  */
10215   for (target = stree->n.tb->u.generic; target; target = target->next)
10216     {
10217       gfc_symbol* target_proc;
10218
10219       target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
10220       if (!target_proc)
10221         goto error;
10222
10223       if (check_uop_procedure (target_proc, stree->n.tb->where) == FAILURE)
10224         goto error;
10225     }
10226
10227   return;
10228
10229 error:
10230   resolve_bindings_result = FAILURE;
10231   stree->n.tb->error = 1;
10232 }
10233
10234
10235 /* Resolve the type-bound procedures for a derived type.  */
10236
10237 static void
10238 resolve_typebound_procedure (gfc_symtree* stree)
10239 {
10240   gfc_symbol* proc;
10241   locus where;
10242   gfc_symbol* me_arg;
10243   gfc_symbol* super_type;
10244   gfc_component* comp;
10245
10246   gcc_assert (stree);
10247
10248   /* Undefined specific symbol from GENERIC target definition.  */
10249   if (!stree->n.tb)
10250     return;
10251
10252   if (stree->n.tb->error)
10253     return;
10254
10255   /* If this is a GENERIC binding, use that routine.  */
10256   if (stree->n.tb->is_generic)
10257     {
10258       if (resolve_typebound_generic (resolve_bindings_derived, stree)
10259             == FAILURE)
10260         goto error;
10261       return;
10262     }
10263
10264   /* Get the target-procedure to check it.  */
10265   gcc_assert (!stree->n.tb->is_generic);
10266   gcc_assert (stree->n.tb->u.specific);
10267   proc = stree->n.tb->u.specific->n.sym;
10268   where = stree->n.tb->where;
10269
10270   /* Default access should already be resolved from the parser.  */
10271   gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
10272
10273   /* It should be a module procedure or an external procedure with explicit
10274      interface.  For DEFERRED bindings, abstract interfaces are ok as well.  */
10275   if ((!proc->attr.subroutine && !proc->attr.function)
10276       || (proc->attr.proc != PROC_MODULE
10277           && proc->attr.if_source != IFSRC_IFBODY)
10278       || (proc->attr.abstract && !stree->n.tb->deferred))
10279     {
10280       gfc_error ("'%s' must be a module procedure or an external procedure with"
10281                  " an explicit interface at %L", proc->name, &where);
10282       goto error;
10283     }
10284   stree->n.tb->subroutine = proc->attr.subroutine;
10285   stree->n.tb->function = proc->attr.function;
10286
10287   /* Find the super-type of the current derived type.  We could do this once and
10288      store in a global if speed is needed, but as long as not I believe this is
10289      more readable and clearer.  */
10290   super_type = gfc_get_derived_super_type (resolve_bindings_derived);
10291
10292   /* If PASS, resolve and check arguments if not already resolved / loaded
10293      from a .mod file.  */
10294   if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
10295     {
10296       if (stree->n.tb->pass_arg)
10297         {
10298           gfc_formal_arglist* i;
10299
10300           /* If an explicit passing argument name is given, walk the arg-list
10301              and look for it.  */
10302
10303           me_arg = NULL;
10304           stree->n.tb->pass_arg_num = 1;
10305           for (i = proc->formal; i; i = i->next)
10306             {
10307               if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
10308                 {
10309                   me_arg = i->sym;
10310                   break;
10311                 }
10312               ++stree->n.tb->pass_arg_num;
10313             }
10314
10315           if (!me_arg)
10316             {
10317               gfc_error ("Procedure '%s' with PASS(%s) at %L has no"
10318                          " argument '%s'",
10319                          proc->name, stree->n.tb->pass_arg, &where,
10320                          stree->n.tb->pass_arg);
10321               goto error;
10322             }
10323         }
10324       else
10325         {
10326           /* Otherwise, take the first one; there should in fact be at least
10327              one.  */
10328           stree->n.tb->pass_arg_num = 1;
10329           if (!proc->formal)
10330             {
10331               gfc_error ("Procedure '%s' with PASS at %L must have at"
10332                          " least one argument", proc->name, &where);
10333               goto error;
10334             }
10335           me_arg = proc->formal->sym;
10336         }
10337
10338       /* Now check that the argument-type matches and the passed-object
10339          dummy argument is generally fine.  */
10340
10341       gcc_assert (me_arg);
10342
10343       if (me_arg->ts.type != BT_CLASS)
10344         {
10345           gfc_error ("Non-polymorphic passed-object dummy argument of '%s'"
10346                      " at %L", proc->name, &where);
10347           goto error;
10348         }
10349
10350       if (me_arg->ts.u.derived->components->ts.u.derived
10351           != resolve_bindings_derived)
10352         {
10353           gfc_error ("Argument '%s' of '%s' with PASS(%s) at %L must be of"
10354                      " the derived-type '%s'", me_arg->name, proc->name,
10355                      me_arg->name, &where, resolve_bindings_derived->name);
10356           goto error;
10357         }
10358   
10359       gcc_assert (me_arg->ts.type == BT_CLASS);
10360       if (me_arg->ts.u.derived->components->as
10361           && me_arg->ts.u.derived->components->as->rank > 0)
10362         {
10363           gfc_error ("Passed-object dummy argument of '%s' at %L must be"
10364                      " scalar", proc->name, &where);
10365           goto error;
10366         }
10367       if (me_arg->ts.u.derived->components->attr.allocatable)
10368         {
10369           gfc_error ("Passed-object dummy argument of '%s' at %L must not"
10370                      " be ALLOCATABLE", proc->name, &where);
10371           goto error;
10372         }
10373       if (me_arg->ts.u.derived->components->attr.class_pointer)
10374         {
10375           gfc_error ("Passed-object dummy argument of '%s' at %L must not"
10376                      " be POINTER", proc->name, &where);
10377           goto error;
10378         }
10379     }
10380
10381   /* If we are extending some type, check that we don't override a procedure
10382      flagged NON_OVERRIDABLE.  */
10383   stree->n.tb->overridden = NULL;
10384   if (super_type)
10385     {
10386       gfc_symtree* overridden;
10387       overridden = gfc_find_typebound_proc (super_type, NULL,
10388                                             stree->name, true, NULL);
10389
10390       if (overridden && overridden->n.tb)
10391         stree->n.tb->overridden = overridden->n.tb;
10392
10393       if (overridden && check_typebound_override (stree, overridden) == FAILURE)
10394         goto error;
10395     }
10396
10397   /* See if there's a name collision with a component directly in this type.  */
10398   for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
10399     if (!strcmp (comp->name, stree->name))
10400       {
10401         gfc_error ("Procedure '%s' at %L has the same name as a component of"
10402                    " '%s'",
10403                    stree->name, &where, resolve_bindings_derived->name);
10404         goto error;
10405       }
10406
10407   /* Try to find a name collision with an inherited component.  */
10408   if (super_type && gfc_find_component (super_type, stree->name, true, true))
10409     {
10410       gfc_error ("Procedure '%s' at %L has the same name as an inherited"
10411                  " component of '%s'",
10412                  stree->name, &where, resolve_bindings_derived->name);
10413       goto error;
10414     }
10415
10416   stree->n.tb->error = 0;
10417   return;
10418
10419 error:
10420   resolve_bindings_result = FAILURE;
10421   stree->n.tb->error = 1;
10422 }
10423
10424 static gfc_try
10425 resolve_typebound_procedures (gfc_symbol* derived)
10426 {
10427   int op;
10428
10429   if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
10430     return SUCCESS;
10431
10432   resolve_bindings_derived = derived;
10433   resolve_bindings_result = SUCCESS;
10434
10435   if (derived->f2k_derived->tb_sym_root)
10436     gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
10437                           &resolve_typebound_procedure);
10438
10439   if (derived->f2k_derived->tb_uop_root)
10440     gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
10441                           &resolve_typebound_user_op);
10442
10443   for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
10444     {
10445       gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
10446       if (p && resolve_typebound_intrinsic_op (derived, (gfc_intrinsic_op) op,
10447                                                p) == FAILURE)
10448         resolve_bindings_result = FAILURE;
10449     }
10450
10451   return resolve_bindings_result;
10452 }
10453
10454
10455 /* Add a derived type to the dt_list.  The dt_list is used in trans-types.c
10456    to give all identical derived types the same backend_decl.  */
10457 static void
10458 add_dt_to_dt_list (gfc_symbol *derived)
10459 {
10460   gfc_dt_list *dt_list;
10461
10462   for (dt_list = gfc_derived_types; dt_list; dt_list = dt_list->next)
10463     if (derived == dt_list->derived)
10464       break;
10465
10466   if (dt_list == NULL)
10467     {
10468       dt_list = gfc_get_dt_list ();
10469       dt_list->next = gfc_derived_types;
10470       dt_list->derived = derived;
10471       gfc_derived_types = dt_list;
10472     }
10473 }
10474
10475
10476 /* Ensure that a derived-type is really not abstract, meaning that every
10477    inherited DEFERRED binding is overridden by a non-DEFERRED one.  */
10478
10479 static gfc_try
10480 ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
10481 {
10482   if (!st)
10483     return SUCCESS;
10484
10485   if (ensure_not_abstract_walker (sub, st->left) == FAILURE)
10486     return FAILURE;
10487   if (ensure_not_abstract_walker (sub, st->right) == FAILURE)
10488     return FAILURE;
10489
10490   if (st->n.tb && st->n.tb->deferred)
10491     {
10492       gfc_symtree* overriding;
10493       overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
10494       if (!overriding)
10495         return FAILURE;
10496       gcc_assert (overriding->n.tb);
10497       if (overriding->n.tb->deferred)
10498         {
10499           gfc_error ("Derived-type '%s' declared at %L must be ABSTRACT because"
10500                      " '%s' is DEFERRED and not overridden",
10501                      sub->name, &sub->declared_at, st->name);
10502           return FAILURE;
10503         }
10504     }
10505
10506   return SUCCESS;
10507 }
10508
10509 static gfc_try
10510 ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
10511 {
10512   /* The algorithm used here is to recursively travel up the ancestry of sub
10513      and for each ancestor-type, check all bindings.  If any of them is
10514      DEFERRED, look it up starting from sub and see if the found (overriding)
10515      binding is not DEFERRED.
10516      This is not the most efficient way to do this, but it should be ok and is
10517      clearer than something sophisticated.  */
10518
10519   gcc_assert (ancestor && ancestor->attr.abstract && !sub->attr.abstract);
10520
10521   /* Walk bindings of this ancestor.  */
10522   if (ancestor->f2k_derived)
10523     {
10524       gfc_try t;
10525       t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
10526       if (t == FAILURE)
10527         return FAILURE;
10528     }
10529
10530   /* Find next ancestor type and recurse on it.  */
10531   ancestor = gfc_get_derived_super_type (ancestor);
10532   if (ancestor)
10533     return ensure_not_abstract (sub, ancestor);
10534
10535   return SUCCESS;
10536 }
10537
10538
10539 static void resolve_symbol (gfc_symbol *sym);
10540
10541
10542 /* Resolve the components of a derived type.  */
10543
10544 static gfc_try
10545 resolve_fl_derived (gfc_symbol *sym)
10546 {
10547   gfc_symbol* super_type;
10548   gfc_component *c;
10549   int i;
10550
10551   super_type = gfc_get_derived_super_type (sym);
10552
10553   /* F2008, C432. */
10554   if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
10555     {
10556       gfc_error ("As extending type '%s' at %L has a coarray component, "
10557                  "parent type '%s' shall also have one", sym->name,
10558                  &sym->declared_at, super_type->name);
10559       return FAILURE;
10560     }
10561
10562   /* Ensure the extended type gets resolved before we do.  */
10563   if (super_type && resolve_fl_derived (super_type) == FAILURE)
10564     return FAILURE;
10565
10566   /* An ABSTRACT type must be extensible.  */
10567   if (sym->attr.abstract && !gfc_type_is_extensible (sym))
10568     {
10569       gfc_error ("Non-extensible derived-type '%s' at %L must not be ABSTRACT",
10570                  sym->name, &sym->declared_at);
10571       return FAILURE;
10572     }
10573
10574   for (c = sym->components; c != NULL; c = c->next)
10575     {
10576       /* F2008, C442.  */
10577       if (c->attr.codimension /* FIXME: c->as check due to PR 43412.  */
10578           && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
10579         {
10580           gfc_error ("Coarray component '%s' at %L must be allocatable with "
10581                      "deferred shape", c->name, &c->loc);
10582           return FAILURE;
10583         }
10584
10585       /* F2008, C443.  */
10586       if (c->attr.codimension && c->ts.type == BT_DERIVED
10587           && c->ts.u.derived->ts.is_iso_c)
10588         {
10589           gfc_error ("Component '%s' at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
10590                      "shall not be a coarray", c->name, &c->loc);
10591           return FAILURE;
10592         }
10593
10594       /* F2008, C444.  */
10595       if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.coarray_comp
10596           && (c->attr.codimension || c->attr.pointer || c->attr.dimension
10597               || c->attr.allocatable))
10598         {
10599           gfc_error ("Component '%s' at %L with coarray component "
10600                      "shall be a nonpointer, nonallocatable scalar",
10601                      c->name, &c->loc);
10602           return FAILURE;
10603         }
10604
10605       if (c->attr.proc_pointer && c->ts.interface)
10606         {
10607           if (c->ts.interface->attr.procedure && !sym->attr.vtype)
10608             gfc_error ("Interface '%s', used by procedure pointer component "
10609                        "'%s' at %L, is declared in a later PROCEDURE statement",
10610                        c->ts.interface->name, c->name, &c->loc);
10611
10612           /* Get the attributes from the interface (now resolved).  */
10613           if (c->ts.interface->attr.if_source
10614               || c->ts.interface->attr.intrinsic)
10615             {
10616               gfc_symbol *ifc = c->ts.interface;
10617
10618               if (ifc->formal && !ifc->formal_ns)
10619                 resolve_symbol (ifc);
10620
10621               if (ifc->attr.intrinsic)
10622                 resolve_intrinsic (ifc, &ifc->declared_at);
10623
10624               if (ifc->result)
10625                 {
10626                   c->ts = ifc->result->ts;
10627                   c->attr.allocatable = ifc->result->attr.allocatable;
10628                   c->attr.pointer = ifc->result->attr.pointer;
10629                   c->attr.dimension = ifc->result->attr.dimension;
10630                   c->as = gfc_copy_array_spec (ifc->result->as);
10631                 }
10632               else
10633                 {   
10634                   c->ts = ifc->ts;
10635                   c->attr.allocatable = ifc->attr.allocatable;
10636                   c->attr.pointer = ifc->attr.pointer;
10637                   c->attr.dimension = ifc->attr.dimension;
10638                   c->as = gfc_copy_array_spec (ifc->as);
10639                 }
10640               c->ts.interface = ifc;
10641               c->attr.function = ifc->attr.function;
10642               c->attr.subroutine = ifc->attr.subroutine;
10643               gfc_copy_formal_args_ppc (c, ifc);
10644
10645               c->attr.pure = ifc->attr.pure;
10646               c->attr.elemental = ifc->attr.elemental;
10647               c->attr.recursive = ifc->attr.recursive;
10648               c->attr.always_explicit = ifc->attr.always_explicit;
10649               c->attr.ext_attr |= ifc->attr.ext_attr;
10650               /* Replace symbols in array spec.  */
10651               if (c->as)
10652                 {
10653                   int i;
10654                   for (i = 0; i < c->as->rank; i++)
10655                     {
10656                       gfc_expr_replace_comp (c->as->lower[i], c);
10657                       gfc_expr_replace_comp (c->as->upper[i], c);
10658                     }
10659                 }
10660               /* Copy char length.  */
10661               if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
10662                 {
10663                   gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
10664                   gfc_expr_replace_comp (cl->length, c);
10665                   if (cl->length && !cl->resolved
10666                         && gfc_resolve_expr (cl->length) == FAILURE)
10667                     return FAILURE;
10668                   c->ts.u.cl = cl;
10669                 }
10670             }
10671           else if (c->ts.interface->name[0] != '\0' && !sym->attr.vtype)
10672             {
10673               gfc_error ("Interface '%s' of procedure pointer component "
10674                          "'%s' at %L must be explicit", c->ts.interface->name,
10675                          c->name, &c->loc);
10676               return FAILURE;
10677             }
10678         }
10679       else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
10680         {
10681           /* Since PPCs are not implicitly typed, a PPC without an explicit
10682              interface must be a subroutine.  */
10683           gfc_add_subroutine (&c->attr, c->name, &c->loc);
10684         }
10685
10686       /* Procedure pointer components: Check PASS arg.  */
10687       if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
10688           && !sym->attr.vtype)
10689         {
10690           gfc_symbol* me_arg;
10691
10692           if (c->tb->pass_arg)
10693             {
10694               gfc_formal_arglist* i;
10695
10696               /* If an explicit passing argument name is given, walk the arg-list
10697                 and look for it.  */
10698
10699               me_arg = NULL;
10700               c->tb->pass_arg_num = 1;
10701               for (i = c->formal; i; i = i->next)
10702                 {
10703                   if (!strcmp (i->sym->name, c->tb->pass_arg))
10704                     {
10705                       me_arg = i->sym;
10706                       break;
10707                     }
10708                   c->tb->pass_arg_num++;
10709                 }
10710
10711               if (!me_arg)
10712                 {
10713                   gfc_error ("Procedure pointer component '%s' with PASS(%s) "
10714                              "at %L has no argument '%s'", c->name,
10715                              c->tb->pass_arg, &c->loc, c->tb->pass_arg);
10716                   c->tb->error = 1;
10717                   return FAILURE;
10718                 }
10719             }
10720           else
10721             {
10722               /* Otherwise, take the first one; there should in fact be at least
10723                 one.  */
10724               c->tb->pass_arg_num = 1;
10725               if (!c->formal)
10726                 {
10727                   gfc_error ("Procedure pointer component '%s' with PASS at %L "
10728                              "must have at least one argument",
10729                              c->name, &c->loc);
10730                   c->tb->error = 1;
10731                   return FAILURE;
10732                 }
10733               me_arg = c->formal->sym;
10734             }
10735
10736           /* Now check that the argument-type matches.  */
10737           gcc_assert (me_arg);
10738           if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
10739               || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
10740               || (me_arg->ts.type == BT_CLASS
10741                   && me_arg->ts.u.derived->components->ts.u.derived != sym))
10742             {
10743               gfc_error ("Argument '%s' of '%s' with PASS(%s) at %L must be of"
10744                          " the derived type '%s'", me_arg->name, c->name,
10745                          me_arg->name, &c->loc, sym->name);
10746               c->tb->error = 1;
10747               return FAILURE;
10748             }
10749
10750           /* Check for C453.  */
10751           if (me_arg->attr.dimension)
10752             {
10753               gfc_error ("Argument '%s' of '%s' with PASS(%s) at %L "
10754                          "must be scalar", me_arg->name, c->name, me_arg->name,
10755                          &c->loc);
10756               c->tb->error = 1;
10757               return FAILURE;
10758             }
10759
10760           if (me_arg->attr.pointer)
10761             {
10762               gfc_error ("Argument '%s' of '%s' with PASS(%s) at %L "
10763                          "may not have the POINTER attribute", me_arg->name,
10764                          c->name, me_arg->name, &c->loc);
10765               c->tb->error = 1;
10766               return FAILURE;
10767             }
10768
10769           if (me_arg->attr.allocatable)
10770             {
10771               gfc_error ("Argument '%s' of '%s' with PASS(%s) at %L "
10772                          "may not be ALLOCATABLE", me_arg->name, c->name,
10773                          me_arg->name, &c->loc);
10774               c->tb->error = 1;
10775               return FAILURE;
10776             }
10777
10778           if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
10779             gfc_error ("Non-polymorphic passed-object dummy argument of '%s'"
10780                        " at %L", c->name, &c->loc);
10781
10782         }
10783
10784       /* Check type-spec if this is not the parent-type component.  */
10785       if ((!sym->attr.extension || c != sym->components)
10786           && resolve_typespec_used (&c->ts, &c->loc, c->name) == FAILURE)
10787         return FAILURE;
10788
10789       /* If this type is an extension, set the accessibility of the parent
10790          component.  */
10791       if (super_type && c == sym->components
10792           && strcmp (super_type->name, c->name) == 0)
10793         c->attr.access = super_type->attr.access;
10794       
10795       /* If this type is an extension, see if this component has the same name
10796          as an inherited type-bound procedure.  */
10797       if (super_type
10798           && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
10799         {
10800           gfc_error ("Component '%s' of '%s' at %L has the same name as an"
10801                      " inherited type-bound procedure",
10802                      c->name, sym->name, &c->loc);
10803           return FAILURE;
10804         }
10805
10806       if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer)
10807         {
10808          if (c->ts.u.cl->length == NULL
10809              || (resolve_charlen (c->ts.u.cl) == FAILURE)
10810              || !gfc_is_constant_expr (c->ts.u.cl->length))
10811            {
10812              gfc_error ("Character length of component '%s' needs to "
10813                         "be a constant specification expression at %L",
10814                         c->name,
10815                         c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
10816              return FAILURE;
10817            }
10818         }
10819
10820       if (c->ts.type == BT_DERIVED
10821           && sym->component_access != ACCESS_PRIVATE
10822           && gfc_check_access (sym->attr.access, sym->ns->default_access)
10823           && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
10824           && !c->ts.u.derived->attr.use_assoc
10825           && !gfc_check_access (c->ts.u.derived->attr.access,
10826                                 c->ts.u.derived->ns->default_access)
10827           && gfc_notify_std (GFC_STD_F2003, "Fortran 2003: the component '%s' "
10828                              "is a PRIVATE type and cannot be a component of "
10829                              "'%s', which is PUBLIC at %L", c->name,
10830                              sym->name, &sym->declared_at) == FAILURE)
10831         return FAILURE;
10832
10833       if (sym->attr.sequence)
10834         {
10835           if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
10836             {
10837               gfc_error ("Component %s of SEQUENCE type declared at %L does "
10838                          "not have the SEQUENCE attribute",
10839                          c->ts.u.derived->name, &sym->declared_at);
10840               return FAILURE;
10841             }
10842         }
10843
10844       if (c->ts.type == BT_DERIVED && c->attr.pointer
10845           && c->ts.u.derived->components == NULL
10846           && !c->ts.u.derived->attr.zero_comp)
10847         {
10848           gfc_error ("The pointer component '%s' of '%s' at %L is a type "
10849                      "that has not been declared", c->name, sym->name,
10850                      &c->loc);
10851           return FAILURE;
10852         }
10853
10854       /* C437.  */
10855       if (c->ts.type == BT_CLASS
10856           && !(c->ts.u.derived->components->attr.pointer
10857                || c->ts.u.derived->components->attr.allocatable))
10858         {
10859           gfc_error ("Component '%s' with CLASS at %L must be allocatable "
10860                      "or pointer", c->name, &c->loc);
10861           return FAILURE;
10862         }
10863
10864       /* Ensure that all the derived type components are put on the
10865          derived type list; even in formal namespaces, where derived type
10866          pointer components might not have been declared.  */
10867       if (c->ts.type == BT_DERIVED
10868             && c->ts.u.derived
10869             && c->ts.u.derived->components
10870             && c->attr.pointer
10871             && sym != c->ts.u.derived)
10872         add_dt_to_dt_list (c->ts.u.derived);
10873
10874       if (c->attr.pointer || c->attr.proc_pointer || c->attr.allocatable
10875           || c->as == NULL)
10876         continue;
10877
10878       for (i = 0; i < c->as->rank; i++)
10879         {
10880           if (c->as->lower[i] == NULL
10881               || (resolve_index_expr (c->as->lower[i]) == FAILURE)
10882               || !gfc_is_constant_expr (c->as->lower[i])
10883               || c->as->upper[i] == NULL
10884               || (resolve_index_expr (c->as->upper[i]) == FAILURE)
10885               || !gfc_is_constant_expr (c->as->upper[i]))
10886             {
10887               gfc_error ("Component '%s' of '%s' at %L must have "
10888                          "constant array bounds",
10889                          c->name, sym->name, &c->loc);
10890               return FAILURE;
10891             }
10892         }
10893     }
10894
10895   /* Resolve the type-bound procedures.  */
10896   if (resolve_typebound_procedures (sym) == FAILURE)
10897     return FAILURE;
10898
10899   /* Resolve the finalizer procedures.  */
10900   if (gfc_resolve_finalizers (sym) == FAILURE)
10901     return FAILURE;
10902
10903   /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
10904      all DEFERRED bindings are overridden.  */
10905   if (super_type && super_type->attr.abstract && !sym->attr.abstract
10906       && ensure_not_abstract (sym, super_type) == FAILURE)
10907     return FAILURE;
10908
10909   /* Add derived type to the derived type list.  */
10910   add_dt_to_dt_list (sym);
10911
10912   return SUCCESS;
10913 }
10914
10915
10916 static gfc_try
10917 resolve_fl_namelist (gfc_symbol *sym)
10918 {
10919   gfc_namelist *nl;
10920   gfc_symbol *nlsym;
10921
10922   /* Reject PRIVATE objects in a PUBLIC namelist.  */
10923   if (gfc_check_access(sym->attr.access, sym->ns->default_access))
10924     {
10925       for (nl = sym->namelist; nl; nl = nl->next)
10926         {
10927           if (!nl->sym->attr.use_assoc
10928               && !is_sym_host_assoc (nl->sym, sym->ns)
10929               && !gfc_check_access(nl->sym->attr.access,
10930                                 nl->sym->ns->default_access))
10931             {
10932               gfc_error ("NAMELIST object '%s' was declared PRIVATE and "
10933                          "cannot be member of PUBLIC namelist '%s' at %L",
10934                          nl->sym->name, sym->name, &sym->declared_at);
10935               return FAILURE;
10936             }
10937
10938           /* Types with private components that came here by USE-association.  */
10939           if (nl->sym->ts.type == BT_DERIVED
10940               && derived_inaccessible (nl->sym->ts.u.derived))
10941             {
10942               gfc_error ("NAMELIST object '%s' has use-associated PRIVATE "
10943                          "components and cannot be member of namelist '%s' at %L",
10944                          nl->sym->name, sym->name, &sym->declared_at);
10945               return FAILURE;
10946             }
10947
10948           /* Types with private components that are defined in the same module.  */
10949           if (nl->sym->ts.type == BT_DERIVED
10950               && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
10951               && !gfc_check_access (nl->sym->ts.u.derived->attr.private_comp
10952                                         ? ACCESS_PRIVATE : ACCESS_UNKNOWN,
10953                                         nl->sym->ns->default_access))
10954             {
10955               gfc_error ("NAMELIST object '%s' has PRIVATE components and "
10956                          "cannot be a member of PUBLIC namelist '%s' at %L",
10957                          nl->sym->name, sym->name, &sym->declared_at);
10958               return FAILURE;
10959             }
10960         }
10961     }
10962
10963   for (nl = sym->namelist; nl; nl = nl->next)
10964     {
10965       /* Reject namelist arrays of assumed shape.  */
10966       if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
10967           && gfc_notify_std (GFC_STD_F2003, "NAMELIST array object '%s' "
10968                              "must not have assumed shape in namelist "
10969                              "'%s' at %L", nl->sym->name, sym->name,
10970                              &sym->declared_at) == FAILURE)
10971             return FAILURE;
10972
10973       /* Reject namelist arrays that are not constant shape.  */
10974       if (is_non_constant_shape_array (nl->sym))
10975         {
10976           gfc_error ("NAMELIST array object '%s' must have constant "
10977                      "shape in namelist '%s' at %L", nl->sym->name,
10978                      sym->name, &sym->declared_at);
10979           return FAILURE;
10980         }
10981
10982       /* Namelist objects cannot have allocatable or pointer components.  */
10983       if (nl->sym->ts.type != BT_DERIVED)
10984         continue;
10985
10986       if (nl->sym->ts.u.derived->attr.alloc_comp)
10987         {
10988           gfc_error ("NAMELIST object '%s' in namelist '%s' at %L cannot "
10989                      "have ALLOCATABLE components",
10990                      nl->sym->name, sym->name, &sym->declared_at);
10991           return FAILURE;
10992         }
10993
10994       if (nl->sym->ts.u.derived->attr.pointer_comp)
10995         {
10996           gfc_error ("NAMELIST object '%s' in namelist '%s' at %L cannot "
10997                      "have POINTER components", 
10998                      nl->sym->name, sym->name, &sym->declared_at);
10999           return FAILURE;
11000         }
11001     }
11002
11003
11004   /* 14.1.2 A module or internal procedure represent local entities
11005      of the same type as a namelist member and so are not allowed.  */
11006   for (nl = sym->namelist; nl; nl = nl->next)
11007     {
11008       if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
11009         continue;
11010
11011       if (nl->sym->attr.function && nl->sym == nl->sym->result)
11012         if ((nl->sym == sym->ns->proc_name)
11013                ||
11014             (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
11015           continue;
11016
11017       nlsym = NULL;
11018       if (nl->sym && nl->sym->name)
11019         gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
11020       if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
11021         {
11022           gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
11023                      "attribute in '%s' at %L", nlsym->name,
11024                      &sym->declared_at);
11025           return FAILURE;
11026         }
11027     }
11028
11029   return SUCCESS;
11030 }
11031
11032
11033 static gfc_try
11034 resolve_fl_parameter (gfc_symbol *sym)
11035 {
11036   /* A parameter array's shape needs to be constant.  */
11037   if (sym->as != NULL 
11038       && (sym->as->type == AS_DEFERRED
11039           || is_non_constant_shape_array (sym)))
11040     {
11041       gfc_error ("Parameter array '%s' at %L cannot be automatic "
11042                  "or of deferred shape", sym->name, &sym->declared_at);
11043       return FAILURE;
11044     }
11045
11046   /* Make sure a parameter that has been implicitly typed still
11047      matches the implicit type, since PARAMETER statements can precede
11048      IMPLICIT statements.  */
11049   if (sym->attr.implicit_type
11050       && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
11051                                                              sym->ns)))
11052     {
11053       gfc_error ("Implicitly typed PARAMETER '%s' at %L doesn't match a "
11054                  "later IMPLICIT type", sym->name, &sym->declared_at);
11055       return FAILURE;
11056     }
11057
11058   /* Make sure the types of derived parameters are consistent.  This
11059      type checking is deferred until resolution because the type may
11060      refer to a derived type from the host.  */
11061   if (sym->ts.type == BT_DERIVED
11062       && !gfc_compare_types (&sym->ts, &sym->value->ts))
11063     {
11064       gfc_error ("Incompatible derived type in PARAMETER at %L",
11065                  &sym->value->where);
11066       return FAILURE;
11067     }
11068   return SUCCESS;
11069 }
11070
11071
11072 /* Do anything necessary to resolve a symbol.  Right now, we just
11073    assume that an otherwise unknown symbol is a variable.  This sort
11074    of thing commonly happens for symbols in module.  */
11075
11076 static void
11077 resolve_symbol (gfc_symbol *sym)
11078 {
11079   int check_constant, mp_flag;
11080   gfc_symtree *symtree;
11081   gfc_symtree *this_symtree;
11082   gfc_namespace *ns;
11083   gfc_component *c;
11084
11085   if (sym->attr.flavor == FL_UNKNOWN)
11086     {
11087
11088     /* If we find that a flavorless symbol is an interface in one of the
11089        parent namespaces, find its symtree in this namespace, free the
11090        symbol and set the symtree to point to the interface symbol.  */
11091       for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
11092         {
11093           symtree = gfc_find_symtree (ns->sym_root, sym->name);
11094           if (symtree && symtree->n.sym->generic)
11095             {
11096               this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
11097                                                sym->name);
11098               sym->refs--;
11099               if (!sym->refs)
11100                 gfc_free_symbol (sym);
11101               symtree->n.sym->refs++;
11102               this_symtree->n.sym = symtree->n.sym;
11103               return;
11104             }
11105         }
11106
11107       /* Otherwise give it a flavor according to such attributes as
11108          it has.  */
11109       if (sym->attr.external == 0 && sym->attr.intrinsic == 0)
11110         sym->attr.flavor = FL_VARIABLE;
11111       else
11112         {
11113           sym->attr.flavor = FL_PROCEDURE;
11114           if (sym->attr.dimension)
11115             sym->attr.function = 1;
11116         }
11117     }
11118
11119   if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
11120     gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
11121
11122   if (sym->attr.procedure && sym->ts.interface
11123       && sym->attr.if_source != IFSRC_DECL)
11124     {
11125       if (sym->ts.interface == sym)
11126         {
11127           gfc_error ("PROCEDURE '%s' at %L may not be used as its own "
11128                      "interface", sym->name, &sym->declared_at);
11129           return;
11130         }
11131       if (sym->ts.interface->attr.procedure)
11132         {
11133           gfc_error ("Interface '%s', used by procedure '%s' at %L, is declared"
11134                      " in a later PROCEDURE statement", sym->ts.interface->name,
11135                      sym->name,&sym->declared_at);
11136           return;
11137         }
11138
11139       /* Get the attributes from the interface (now resolved).  */
11140       if (sym->ts.interface->attr.if_source
11141           || sym->ts.interface->attr.intrinsic)
11142         {
11143           gfc_symbol *ifc = sym->ts.interface;
11144           resolve_symbol (ifc);
11145
11146           if (ifc->attr.intrinsic)
11147             resolve_intrinsic (ifc, &ifc->declared_at);
11148
11149           if (ifc->result)
11150             sym->ts = ifc->result->ts;
11151           else   
11152             sym->ts = ifc->ts;
11153           sym->ts.interface = ifc;
11154           sym->attr.function = ifc->attr.function;
11155           sym->attr.subroutine = ifc->attr.subroutine;
11156           gfc_copy_formal_args (sym, ifc);
11157
11158           sym->attr.allocatable = ifc->attr.allocatable;
11159           sym->attr.pointer = ifc->attr.pointer;
11160           sym->attr.pure = ifc->attr.pure;
11161           sym->attr.elemental = ifc->attr.elemental;
11162           sym->attr.dimension = ifc->attr.dimension;
11163           sym->attr.recursive = ifc->attr.recursive;
11164           sym->attr.always_explicit = ifc->attr.always_explicit;
11165           sym->attr.ext_attr |= ifc->attr.ext_attr;
11166           /* Copy array spec.  */
11167           sym->as = gfc_copy_array_spec (ifc->as);
11168           if (sym->as)
11169             {
11170               int i;
11171               for (i = 0; i < sym->as->rank; i++)
11172                 {
11173                   gfc_expr_replace_symbols (sym->as->lower[i], sym);
11174                   gfc_expr_replace_symbols (sym->as->upper[i], sym);
11175                 }
11176             }
11177           /* Copy char length.  */
11178           if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
11179             {
11180               sym->ts.u.cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
11181               gfc_expr_replace_symbols (sym->ts.u.cl->length, sym);
11182               if (sym->ts.u.cl->length && !sym->ts.u.cl->resolved
11183                     && gfc_resolve_expr (sym->ts.u.cl->length) == FAILURE)
11184                 return;
11185             }
11186         }
11187       else if (sym->ts.interface->name[0] != '\0')
11188         {
11189           gfc_error ("Interface '%s' of procedure '%s' at %L must be explicit",
11190                     sym->ts.interface->name, sym->name, &sym->declared_at);
11191           return;
11192         }
11193     }
11194
11195   if (sym->attr.flavor == FL_DERIVED && resolve_fl_derived (sym) == FAILURE)
11196     return;
11197
11198   /* Symbols that are module procedures with results (functions) have
11199      the types and array specification copied for type checking in
11200      procedures that call them, as well as for saving to a module
11201      file.  These symbols can't stand the scrutiny that their results
11202      can.  */
11203   mp_flag = (sym->result != NULL && sym->result != sym);
11204
11205
11206   /* Make sure that the intrinsic is consistent with its internal 
11207      representation. This needs to be done before assigning a default 
11208      type to avoid spurious warnings.  */
11209   if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
11210       && resolve_intrinsic (sym, &sym->declared_at) == FAILURE)
11211     return;
11212
11213   /* Assign default type to symbols that need one and don't have one.  */
11214   if (sym->ts.type == BT_UNKNOWN)
11215     {
11216       if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
11217         gfc_set_default_type (sym, 1, NULL);
11218
11219       if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
11220           && !sym->attr.function && !sym->attr.subroutine
11221           && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
11222         gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
11223
11224       if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
11225         {
11226           /* The specific case of an external procedure should emit an error
11227              in the case that there is no implicit type.  */
11228           if (!mp_flag)
11229             gfc_set_default_type (sym, sym->attr.external, NULL);
11230           else
11231             {
11232               /* Result may be in another namespace.  */
11233               resolve_symbol (sym->result);
11234
11235               if (!sym->result->attr.proc_pointer)
11236                 {
11237                   sym->ts = sym->result->ts;
11238                   sym->as = gfc_copy_array_spec (sym->result->as);
11239                   sym->attr.dimension = sym->result->attr.dimension;
11240                   sym->attr.pointer = sym->result->attr.pointer;
11241                   sym->attr.allocatable = sym->result->attr.allocatable;
11242                 }
11243             }
11244         }
11245     }
11246
11247   /* Assumed size arrays and assumed shape arrays must be dummy
11248      arguments.  */
11249
11250   if (sym->as != NULL
11251       && ((sym->as->type == AS_ASSUMED_SIZE && !sym->as->cp_was_assumed)
11252           || sym->as->type == AS_ASSUMED_SHAPE)
11253       && sym->attr.dummy == 0)
11254     {
11255       if (sym->as->type == AS_ASSUMED_SIZE)
11256         gfc_error ("Assumed size array at %L must be a dummy argument",
11257                    &sym->declared_at);
11258       else
11259         gfc_error ("Assumed shape array at %L must be a dummy argument",
11260                    &sym->declared_at);
11261       return;
11262     }
11263
11264   /* Make sure symbols with known intent or optional are really dummy
11265      variable.  Because of ENTRY statement, this has to be deferred
11266      until resolution time.  */
11267
11268   if (!sym->attr.dummy
11269       && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
11270     {
11271       gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
11272       return;
11273     }
11274
11275   if (sym->attr.value && !sym->attr.dummy)
11276     {
11277       gfc_error ("'%s' at %L cannot have the VALUE attribute because "
11278                  "it is not a dummy argument", sym->name, &sym->declared_at);
11279       return;
11280     }
11281
11282   if (sym->attr.value && sym->ts.type == BT_CHARACTER)
11283     {
11284       gfc_charlen *cl = sym->ts.u.cl;
11285       if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
11286         {
11287           gfc_error ("Character dummy variable '%s' at %L with VALUE "
11288                      "attribute must have constant length",
11289                      sym->name, &sym->declared_at);
11290           return;
11291         }
11292
11293       if (sym->ts.is_c_interop
11294           && mpz_cmp_si (cl->length->value.integer, 1) != 0)
11295         {
11296           gfc_error ("C interoperable character dummy variable '%s' at %L "
11297                      "with VALUE attribute must have length one",
11298                      sym->name, &sym->declared_at);
11299           return;
11300         }
11301     }
11302
11303   /* If the symbol is marked as bind(c), verify it's type and kind.  Do not
11304      do this for something that was implicitly typed because that is handled
11305      in gfc_set_default_type.  Handle dummy arguments and procedure
11306      definitions separately.  Also, anything that is use associated is not
11307      handled here but instead is handled in the module it is declared in.
11308      Finally, derived type definitions are allowed to be BIND(C) since that
11309      only implies that they're interoperable, and they are checked fully for
11310      interoperability when a variable is declared of that type.  */
11311   if (sym->attr.is_bind_c && sym->attr.implicit_type == 0 &&
11312       sym->attr.use_assoc == 0 && sym->attr.dummy == 0 &&
11313       sym->attr.flavor != FL_PROCEDURE && sym->attr.flavor != FL_DERIVED)
11314     {
11315       gfc_try t = SUCCESS;
11316       
11317       /* First, make sure the variable is declared at the
11318          module-level scope (J3/04-007, Section 15.3).  */
11319       if (sym->ns->proc_name->attr.flavor != FL_MODULE &&
11320           sym->attr.in_common == 0)
11321         {
11322           gfc_error ("Variable '%s' at %L cannot be BIND(C) because it "
11323                      "is neither a COMMON block nor declared at the "
11324                      "module level scope", sym->name, &(sym->declared_at));
11325           t = FAILURE;
11326         }
11327       else if (sym->common_head != NULL)
11328         {
11329           t = verify_com_block_vars_c_interop (sym->common_head);
11330         }
11331       else
11332         {
11333           /* If type() declaration, we need to verify that the components
11334              of the given type are all C interoperable, etc.  */
11335           if (sym->ts.type == BT_DERIVED &&
11336               sym->ts.u.derived->attr.is_c_interop != 1)
11337             {
11338               /* Make sure the user marked the derived type as BIND(C).  If
11339                  not, call the verify routine.  This could print an error
11340                  for the derived type more than once if multiple variables
11341                  of that type are declared.  */
11342               if (sym->ts.u.derived->attr.is_bind_c != 1)
11343                 verify_bind_c_derived_type (sym->ts.u.derived);
11344               t = FAILURE;
11345             }
11346           
11347           /* Verify the variable itself as C interoperable if it
11348              is BIND(C).  It is not possible for this to succeed if
11349              the verify_bind_c_derived_type failed, so don't have to handle
11350              any error returned by verify_bind_c_derived_type.  */
11351           t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
11352                                  sym->common_block);
11353         }
11354
11355       if (t == FAILURE)
11356         {
11357           /* clear the is_bind_c flag to prevent reporting errors more than
11358              once if something failed.  */
11359           sym->attr.is_bind_c = 0;
11360           return;
11361         }
11362     }
11363
11364   /* If a derived type symbol has reached this point, without its
11365      type being declared, we have an error.  Notice that most
11366      conditions that produce undefined derived types have already
11367      been dealt with.  However, the likes of:
11368      implicit type(t) (t) ..... call foo (t) will get us here if
11369      the type is not declared in the scope of the implicit
11370      statement. Change the type to BT_UNKNOWN, both because it is so
11371      and to prevent an ICE.  */
11372   if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->components == NULL
11373       && !sym->ts.u.derived->attr.zero_comp)
11374     {
11375       gfc_error ("The derived type '%s' at %L is of type '%s', "
11376                  "which has not been defined", sym->name,
11377                   &sym->declared_at, sym->ts.u.derived->name);
11378       sym->ts.type = BT_UNKNOWN;
11379       return;
11380     }
11381
11382   /* Make sure that the derived type has been resolved and that the
11383      derived type is visible in the symbol's namespace, if it is a
11384      module function and is not PRIVATE.  */
11385   if (sym->ts.type == BT_DERIVED
11386         && sym->ts.u.derived->attr.use_assoc
11387         && sym->ns->proc_name
11388         && sym->ns->proc_name->attr.flavor == FL_MODULE)
11389     {
11390       gfc_symbol *ds;
11391
11392       if (resolve_fl_derived (sym->ts.u.derived) == FAILURE)
11393         return;
11394
11395       gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 1, &ds);
11396       if (!ds && sym->attr.function
11397             && gfc_check_access (sym->attr.access, sym->ns->default_access))
11398         {
11399           symtree = gfc_new_symtree (&sym->ns->sym_root,
11400                                      sym->ts.u.derived->name);
11401           symtree->n.sym = sym->ts.u.derived;
11402           sym->ts.u.derived->refs++;
11403         }
11404     }
11405
11406   /* Unless the derived-type declaration is use associated, Fortran 95
11407      does not allow public entries of private derived types.
11408      See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
11409      161 in 95-006r3.  */
11410   if (sym->ts.type == BT_DERIVED
11411       && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
11412       && !sym->ts.u.derived->attr.use_assoc
11413       && gfc_check_access (sym->attr.access, sym->ns->default_access)
11414       && !gfc_check_access (sym->ts.u.derived->attr.access,
11415                             sym->ts.u.derived->ns->default_access)
11416       && gfc_notify_std (GFC_STD_F2003, "Fortran 2003: PUBLIC %s '%s' at %L "
11417                          "of PRIVATE derived type '%s'",
11418                          (sym->attr.flavor == FL_PARAMETER) ? "parameter"
11419                          : "variable", sym->name, &sym->declared_at,
11420                          sym->ts.u.derived->name) == FAILURE)
11421     return;
11422
11423   /* An assumed-size array with INTENT(OUT) shall not be of a type for which
11424      default initialization is defined (5.1.2.4.4).  */
11425   if (sym->ts.type == BT_DERIVED
11426       && sym->attr.dummy
11427       && sym->attr.intent == INTENT_OUT
11428       && sym->as
11429       && sym->as->type == AS_ASSUMED_SIZE)
11430     {
11431       for (c = sym->ts.u.derived->components; c; c = c->next)
11432         {
11433           if (c->initializer)
11434             {
11435               gfc_error ("The INTENT(OUT) dummy argument '%s' at %L is "
11436                          "ASSUMED SIZE and so cannot have a default initializer",
11437                          sym->name, &sym->declared_at);
11438               return;
11439             }
11440         }
11441     }
11442
11443   /* F2008, C526.  */
11444   if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
11445        || sym->attr.codimension)
11446       && sym->attr.result)
11447     gfc_error ("Function result '%s' at %L shall not be a coarray or have "
11448                "a coarray component", sym->name, &sym->declared_at);
11449
11450   /* F2008, C524.  */
11451   if (sym->attr.codimension && sym->ts.type == BT_DERIVED
11452       && sym->ts.u.derived->ts.is_iso_c)
11453     gfc_error ("Variable '%s' at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
11454                "shall not be a coarray", sym->name, &sym->declared_at);
11455
11456   /* F2008, C525.  */
11457   if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp
11458       && (sym->attr.codimension || sym->attr.pointer || sym->attr.dimension
11459           || sym->attr.allocatable))
11460     gfc_error ("Variable '%s' at %L with coarray component "
11461                "shall be a nonpointer, nonallocatable scalar",
11462                sym->name, &sym->declared_at);
11463
11464   /* F2008, C526.  The function-result case was handled above.  */
11465   if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
11466        || sym->attr.codimension)
11467       && !(sym->attr.allocatable || sym->attr.dummy || sym->attr.save
11468            || sym->ns->proc_name->attr.flavor == FL_MODULE
11469            || sym->ns->proc_name->attr.is_main_program
11470            || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
11471     gfc_error ("Variable '%s' at %L is a coarray or has a coarray "
11472                "component and is not ALLOCATABLE, SAVE nor a "
11473                "dummy argument", sym->name, &sym->declared_at);
11474   /* F2008, C528.  */  /* FIXME: sym->as check due to PR 43412.  */
11475   else if (sym->attr.codimension && !sym->attr.allocatable
11476       && sym->as && sym->as->cotype == AS_DEFERRED)
11477     gfc_error ("Coarray variable '%s' at %L shall not have codimensions with "
11478                 "deferred shape", sym->name, &sym->declared_at);
11479   else if (sym->attr.codimension && sym->attr.allocatable
11480       && (sym->as->type != AS_DEFERRED || sym->as->cotype != AS_DEFERRED))
11481     gfc_error ("Allocatable coarray variable '%s' at %L must have "
11482                "deferred shape", sym->name, &sym->declared_at);
11483
11484
11485   /* F2008, C541.  */
11486   if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
11487        || (sym->attr.codimension && sym->attr.allocatable))
11488       && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
11489     gfc_error ("Variable '%s' at %L is INTENT(OUT) and can thus not be an "
11490                "allocatable coarray or have coarray components",
11491                sym->name, &sym->declared_at);
11492
11493   if (sym->attr.codimension && sym->attr.dummy
11494       && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
11495     gfc_error ("Coarray dummy variable '%s' at %L not allowed in BIND(C) "
11496                "procedure '%s'", sym->name, &sym->declared_at,
11497                sym->ns->proc_name->name);
11498
11499   switch (sym->attr.flavor)
11500     {
11501     case FL_VARIABLE:
11502       if (resolve_fl_variable (sym, mp_flag) == FAILURE)
11503         return;
11504       break;
11505
11506     case FL_PROCEDURE:
11507       if (resolve_fl_procedure (sym, mp_flag) == FAILURE)
11508         return;
11509       break;
11510
11511     case FL_NAMELIST:
11512       if (resolve_fl_namelist (sym) == FAILURE)
11513         return;
11514       break;
11515
11516     case FL_PARAMETER:
11517       if (resolve_fl_parameter (sym) == FAILURE)
11518         return;
11519       break;
11520
11521     default:
11522       break;
11523     }
11524
11525   /* Resolve array specifier. Check as well some constraints
11526      on COMMON blocks.  */
11527
11528   check_constant = sym->attr.in_common && !sym->attr.pointer;
11529
11530   /* Set the formal_arg_flag so that check_conflict will not throw
11531      an error for host associated variables in the specification
11532      expression for an array_valued function.  */
11533   if (sym->attr.function && sym->as)
11534     formal_arg_flag = 1;
11535
11536   gfc_resolve_array_spec (sym->as, check_constant);
11537
11538   formal_arg_flag = 0;
11539
11540   /* Resolve formal namespaces.  */
11541   if (sym->formal_ns && sym->formal_ns != gfc_current_ns
11542       && !sym->attr.contained && !sym->attr.intrinsic)
11543     gfc_resolve (sym->formal_ns);
11544
11545   /* Make sure the formal namespace is present.  */
11546   if (sym->formal && !sym->formal_ns)
11547     {
11548       gfc_formal_arglist *formal = sym->formal;
11549       while (formal && !formal->sym)
11550         formal = formal->next;
11551
11552       if (formal)
11553         {
11554           sym->formal_ns = formal->sym->ns;
11555           sym->formal_ns->refs++;
11556         }
11557     }
11558
11559   /* Check threadprivate restrictions.  */
11560   if (sym->attr.threadprivate && !sym->attr.save && !sym->ns->save_all
11561       && (!sym->attr.in_common
11562           && sym->module == NULL
11563           && (sym->ns->proc_name == NULL
11564               || sym->ns->proc_name->attr.flavor != FL_MODULE)))
11565     gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
11566
11567   /* If we have come this far we can apply default-initializers, as
11568      described in 14.7.5, to those variables that have not already
11569      been assigned one.  */
11570   if (sym->ts.type == BT_DERIVED
11571       && sym->attr.referenced
11572       && sym->ns == gfc_current_ns
11573       && !sym->value
11574       && !sym->attr.allocatable
11575       && !sym->attr.alloc_comp)
11576     {
11577       symbol_attribute *a = &sym->attr;
11578
11579       if ((!a->save && !a->dummy && !a->pointer
11580            && !a->in_common && !a->use_assoc
11581            && !(a->function && sym != sym->result))
11582           || (a->dummy && a->intent == INTENT_OUT && !a->pointer))
11583         apply_default_init (sym);
11584     }
11585
11586   /* If this symbol has a type-spec, check it.  */
11587   if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
11588       || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
11589     if (resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name)
11590           == FAILURE)
11591       return;
11592 }
11593
11594
11595 /************* Resolve DATA statements *************/
11596
11597 static struct
11598 {
11599   gfc_data_value *vnode;
11600   mpz_t left;
11601 }
11602 values;
11603
11604
11605 /* Advance the values structure to point to the next value in the data list.  */
11606
11607 static gfc_try
11608 next_data_value (void)
11609 {
11610   while (mpz_cmp_ui (values.left, 0) == 0)
11611     {
11612
11613       if (values.vnode->next == NULL)
11614         return FAILURE;
11615
11616       values.vnode = values.vnode->next;
11617       mpz_set (values.left, values.vnode->repeat);
11618     }
11619
11620   return SUCCESS;
11621 }
11622
11623
11624 static gfc_try
11625 check_data_variable (gfc_data_variable *var, locus *where)
11626 {
11627   gfc_expr *e;
11628   mpz_t size;
11629   mpz_t offset;
11630   gfc_try t;
11631   ar_type mark = AR_UNKNOWN;
11632   int i;
11633   mpz_t section_index[GFC_MAX_DIMENSIONS];
11634   gfc_ref *ref;
11635   gfc_array_ref *ar;
11636   gfc_symbol *sym;
11637   int has_pointer;
11638
11639   if (gfc_resolve_expr (var->expr) == FAILURE)
11640     return FAILURE;
11641
11642   ar = NULL;
11643   mpz_init_set_si (offset, 0);
11644   e = var->expr;
11645
11646   if (e->expr_type != EXPR_VARIABLE)
11647     gfc_internal_error ("check_data_variable(): Bad expression");
11648
11649   sym = e->symtree->n.sym;
11650
11651   if (sym->ns->is_block_data && !sym->attr.in_common)
11652     {
11653       gfc_error ("BLOCK DATA element '%s' at %L must be in COMMON",
11654                  sym->name, &sym->declared_at);
11655     }
11656
11657   if (e->ref == NULL && sym->as)
11658     {
11659       gfc_error ("DATA array '%s' at %L must be specified in a previous"
11660                  " declaration", sym->name, where);
11661       return FAILURE;
11662     }
11663
11664   has_pointer = sym->attr.pointer;
11665
11666   for (ref = e->ref; ref; ref = ref->next)
11667     {
11668       if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
11669         has_pointer = 1;
11670
11671       if (ref->type == REF_ARRAY && ref->u.ar.codimen)
11672         {
11673           gfc_error ("DATA element '%s' at %L cannot have a coindex",
11674                      sym->name, where);
11675           return FAILURE;
11676         }
11677
11678       if (has_pointer
11679             && ref->type == REF_ARRAY
11680             && ref->u.ar.type != AR_FULL)
11681           {
11682             gfc_error ("DATA element '%s' at %L is a pointer and so must "
11683                         "be a full array", sym->name, where);
11684             return FAILURE;
11685           }
11686     }
11687
11688   if (e->rank == 0 || has_pointer)
11689     {
11690       mpz_init_set_ui (size, 1);
11691       ref = NULL;
11692     }
11693   else
11694     {
11695       ref = e->ref;
11696
11697       /* Find the array section reference.  */
11698       for (ref = e->ref; ref; ref = ref->next)
11699         {
11700           if (ref->type != REF_ARRAY)
11701             continue;
11702           if (ref->u.ar.type == AR_ELEMENT)
11703             continue;
11704           break;
11705         }
11706       gcc_assert (ref);
11707
11708       /* Set marks according to the reference pattern.  */
11709       switch (ref->u.ar.type)
11710         {
11711         case AR_FULL:
11712           mark = AR_FULL;
11713           break;
11714
11715         case AR_SECTION:
11716           ar = &ref->u.ar;
11717           /* Get the start position of array section.  */
11718           gfc_get_section_index (ar, section_index, &offset);
11719           mark = AR_SECTION;
11720           break;
11721
11722         default:
11723           gcc_unreachable ();
11724         }
11725
11726       if (gfc_array_size (e, &size) == FAILURE)
11727         {
11728           gfc_error ("Nonconstant array section at %L in DATA statement",
11729                      &e->where);
11730           mpz_clear (offset);
11731           return FAILURE;
11732         }
11733     }
11734
11735   t = SUCCESS;
11736
11737   while (mpz_cmp_ui (size, 0) > 0)
11738     {
11739       if (next_data_value () == FAILURE)
11740         {
11741           gfc_error ("DATA statement at %L has more variables than values",
11742                      where);
11743           t = FAILURE;
11744           break;
11745         }
11746
11747       t = gfc_check_assign (var->expr, values.vnode->expr, 0);
11748       if (t == FAILURE)
11749         break;
11750
11751       /* If we have more than one element left in the repeat count,
11752          and we have more than one element left in the target variable,
11753          then create a range assignment.  */
11754       /* FIXME: Only done for full arrays for now, since array sections
11755          seem tricky.  */
11756       if (mark == AR_FULL && ref && ref->next == NULL
11757           && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
11758         {
11759           mpz_t range;
11760
11761           if (mpz_cmp (size, values.left) >= 0)
11762             {
11763               mpz_init_set (range, values.left);
11764               mpz_sub (size, size, values.left);
11765               mpz_set_ui (values.left, 0);
11766             }
11767           else
11768             {
11769               mpz_init_set (range, size);
11770               mpz_sub (values.left, values.left, size);
11771               mpz_set_ui (size, 0);
11772             }
11773
11774           gfc_assign_data_value_range (var->expr, values.vnode->expr,
11775                                        offset, range);
11776
11777           mpz_add (offset, offset, range);
11778           mpz_clear (range);
11779         }
11780
11781       /* Assign initial value to symbol.  */
11782       else
11783         {
11784           mpz_sub_ui (values.left, values.left, 1);
11785           mpz_sub_ui (size, size, 1);
11786
11787           t = gfc_assign_data_value (var->expr, values.vnode->expr, offset);
11788           if (t == FAILURE)
11789             break;
11790
11791           if (mark == AR_FULL)
11792             mpz_add_ui (offset, offset, 1);
11793
11794           /* Modify the array section indexes and recalculate the offset
11795              for next element.  */
11796           else if (mark == AR_SECTION)
11797             gfc_advance_section (section_index, ar, &offset);
11798         }
11799     }
11800
11801   if (mark == AR_SECTION)
11802     {
11803       for (i = 0; i < ar->dimen; i++)
11804         mpz_clear (section_index[i]);
11805     }
11806
11807   mpz_clear (size);
11808   mpz_clear (offset);
11809
11810   return t;
11811 }
11812
11813
11814 static gfc_try traverse_data_var (gfc_data_variable *, locus *);
11815
11816 /* Iterate over a list of elements in a DATA statement.  */
11817
11818 static gfc_try
11819 traverse_data_list (gfc_data_variable *var, locus *where)
11820 {
11821   mpz_t trip;
11822   iterator_stack frame;
11823   gfc_expr *e, *start, *end, *step;
11824   gfc_try retval = SUCCESS;
11825
11826   mpz_init (frame.value);
11827
11828   start = gfc_copy_expr (var->iter.start);
11829   end = gfc_copy_expr (var->iter.end);
11830   step = gfc_copy_expr (var->iter.step);
11831
11832   if (gfc_simplify_expr (start, 1) == FAILURE
11833       || start->expr_type != EXPR_CONSTANT)
11834     {
11835       gfc_error ("iterator start at %L does not simplify", &start->where);
11836       retval = FAILURE;
11837       goto cleanup;
11838     }
11839   if (gfc_simplify_expr (end, 1) == FAILURE
11840       || end->expr_type != EXPR_CONSTANT)
11841     {
11842       gfc_error ("iterator end at %L does not simplify", &end->where);
11843       retval = FAILURE;
11844       goto cleanup;
11845     }
11846   if (gfc_simplify_expr (step, 1) == FAILURE
11847       || step->expr_type != EXPR_CONSTANT)
11848     {
11849       gfc_error ("iterator step at %L does not simplify", &step->where);
11850       retval = FAILURE;
11851       goto cleanup;
11852     }
11853
11854   mpz_init_set (trip, end->value.integer);
11855   mpz_sub (trip, trip, start->value.integer);
11856   mpz_add (trip, trip, step->value.integer);
11857
11858   mpz_div (trip, trip, step->value.integer);
11859
11860   mpz_set (frame.value, start->value.integer);
11861
11862   frame.prev = iter_stack;
11863   frame.variable = var->iter.var->symtree;
11864   iter_stack = &frame;
11865
11866   while (mpz_cmp_ui (trip, 0) > 0)
11867     {
11868       if (traverse_data_var (var->list, where) == FAILURE)
11869         {
11870           mpz_clear (trip);
11871           retval = FAILURE;
11872           goto cleanup;
11873         }
11874
11875       e = gfc_copy_expr (var->expr);
11876       if (gfc_simplify_expr (e, 1) == FAILURE)
11877         {
11878           gfc_free_expr (e);
11879           mpz_clear (trip);
11880           retval = FAILURE;
11881           goto cleanup;
11882         }
11883
11884       mpz_add (frame.value, frame.value, step->value.integer);
11885
11886       mpz_sub_ui (trip, trip, 1);
11887     }
11888
11889   mpz_clear (trip);
11890 cleanup:
11891   mpz_clear (frame.value);
11892
11893   gfc_free_expr (start);
11894   gfc_free_expr (end);
11895   gfc_free_expr (step);
11896
11897   iter_stack = frame.prev;
11898   return retval;
11899 }
11900
11901
11902 /* Type resolve variables in the variable list of a DATA statement.  */
11903
11904 static gfc_try
11905 traverse_data_var (gfc_data_variable *var, locus *where)
11906 {
11907   gfc_try t;
11908
11909   for (; var; var = var->next)
11910     {
11911       if (var->expr == NULL)
11912         t = traverse_data_list (var, where);
11913       else
11914         t = check_data_variable (var, where);
11915
11916       if (t == FAILURE)
11917         return FAILURE;
11918     }
11919
11920   return SUCCESS;
11921 }
11922
11923
11924 /* Resolve the expressions and iterators associated with a data statement.
11925    This is separate from the assignment checking because data lists should
11926    only be resolved once.  */
11927
11928 static gfc_try
11929 resolve_data_variables (gfc_data_variable *d)
11930 {
11931   for (; d; d = d->next)
11932     {
11933       if (d->list == NULL)
11934         {
11935           if (gfc_resolve_expr (d->expr) == FAILURE)
11936             return FAILURE;
11937         }
11938       else
11939         {
11940           if (gfc_resolve_iterator (&d->iter, false) == FAILURE)
11941             return FAILURE;
11942
11943           if (resolve_data_variables (d->list) == FAILURE)
11944             return FAILURE;
11945         }
11946     }
11947
11948   return SUCCESS;
11949 }
11950
11951
11952 /* Resolve a single DATA statement.  We implement this by storing a pointer to
11953    the value list into static variables, and then recursively traversing the
11954    variables list, expanding iterators and such.  */
11955
11956 static void
11957 resolve_data (gfc_data *d)
11958 {
11959
11960   if (resolve_data_variables (d->var) == FAILURE)
11961     return;
11962
11963   values.vnode = d->value;
11964   if (d->value == NULL)
11965     mpz_set_ui (values.left, 0);
11966   else
11967     mpz_set (values.left, d->value->repeat);
11968
11969   if (traverse_data_var (d->var, &d->where) == FAILURE)
11970     return;
11971
11972   /* At this point, we better not have any values left.  */
11973
11974   if (next_data_value () == SUCCESS)
11975     gfc_error ("DATA statement at %L has more values than variables",
11976                &d->where);
11977 }
11978
11979
11980 /* 12.6 Constraint: In a pure subprogram any variable which is in common or
11981    accessed by host or use association, is a dummy argument to a pure function,
11982    is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
11983    is storage associated with any such variable, shall not be used in the
11984    following contexts: (clients of this function).  */
11985
11986 /* Determines if a variable is not 'pure', i.e., not assignable within a pure
11987    procedure.  Returns zero if assignment is OK, nonzero if there is a
11988    problem.  */
11989 int
11990 gfc_impure_variable (gfc_symbol *sym)
11991 {
11992   gfc_symbol *proc;
11993   gfc_namespace *ns;
11994
11995   if (sym->attr.use_assoc || sym->attr.in_common)
11996     return 1;
11997
11998   /* Check if the symbol's ns is inside the pure procedure.  */
11999   for (ns = gfc_current_ns; ns; ns = ns->parent)
12000     {
12001       if (ns == sym->ns)
12002         break;
12003       if (ns->proc_name->attr.flavor == FL_PROCEDURE && !sym->attr.function)
12004         return 1;
12005     }
12006
12007   proc = sym->ns->proc_name;
12008   if (sym->attr.dummy && gfc_pure (proc)
12009         && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
12010                 ||
12011              proc->attr.function))
12012     return 1;
12013
12014   /* TODO: Sort out what can be storage associated, if anything, and include
12015      it here.  In principle equivalences should be scanned but it does not
12016      seem to be possible to storage associate an impure variable this way.  */
12017   return 0;
12018 }
12019
12020
12021 /* Test whether a symbol is pure or not.  For a NULL pointer, checks if the
12022    current namespace is inside a pure procedure.  */
12023
12024 int
12025 gfc_pure (gfc_symbol *sym)
12026 {
12027   symbol_attribute attr;
12028   gfc_namespace *ns;
12029
12030   if (sym == NULL)
12031     {
12032       /* Check if the current namespace or one of its parents
12033         belongs to a pure procedure.  */
12034       for (ns = gfc_current_ns; ns; ns = ns->parent)
12035         {
12036           sym = ns->proc_name;
12037           if (sym == NULL)
12038             return 0;
12039           attr = sym->attr;
12040           if (attr.flavor == FL_PROCEDURE && (attr.pure || attr.elemental))
12041             return 1;
12042         }
12043       return 0;
12044     }
12045
12046   attr = sym->attr;
12047
12048   return attr.flavor == FL_PROCEDURE && (attr.pure || attr.elemental);
12049 }
12050
12051
12052 /* Test whether the current procedure is elemental or not.  */
12053
12054 int
12055 gfc_elemental (gfc_symbol *sym)
12056 {
12057   symbol_attribute attr;
12058
12059   if (sym == NULL)
12060     sym = gfc_current_ns->proc_name;
12061   if (sym == NULL)
12062     return 0;
12063   attr = sym->attr;
12064
12065   return attr.flavor == FL_PROCEDURE && attr.elemental;
12066 }
12067
12068
12069 /* Warn about unused labels.  */
12070
12071 static void
12072 warn_unused_fortran_label (gfc_st_label *label)
12073 {
12074   if (label == NULL)
12075     return;
12076
12077   warn_unused_fortran_label (label->left);
12078
12079   if (label->defined == ST_LABEL_UNKNOWN)
12080     return;
12081
12082   switch (label->referenced)
12083     {
12084     case ST_LABEL_UNKNOWN:
12085       gfc_warning ("Label %d at %L defined but not used", label->value,
12086                    &label->where);
12087       break;
12088
12089     case ST_LABEL_BAD_TARGET:
12090       gfc_warning ("Label %d at %L defined but cannot be used",
12091                    label->value, &label->where);
12092       break;
12093
12094     default:
12095       break;
12096     }
12097
12098   warn_unused_fortran_label (label->right);
12099 }
12100
12101
12102 /* Returns the sequence type of a symbol or sequence.  */
12103
12104 static seq_type
12105 sequence_type (gfc_typespec ts)
12106 {
12107   seq_type result;
12108   gfc_component *c;
12109
12110   switch (ts.type)
12111   {
12112     case BT_DERIVED:
12113
12114       if (ts.u.derived->components == NULL)
12115         return SEQ_NONDEFAULT;
12116
12117       result = sequence_type (ts.u.derived->components->ts);
12118       for (c = ts.u.derived->components->next; c; c = c->next)
12119         if (sequence_type (c->ts) != result)
12120           return SEQ_MIXED;
12121
12122       return result;
12123
12124     case BT_CHARACTER:
12125       if (ts.kind != gfc_default_character_kind)
12126           return SEQ_NONDEFAULT;
12127
12128       return SEQ_CHARACTER;
12129
12130     case BT_INTEGER:
12131       if (ts.kind != gfc_default_integer_kind)
12132           return SEQ_NONDEFAULT;
12133
12134       return SEQ_NUMERIC;
12135
12136     case BT_REAL:
12137       if (!(ts.kind == gfc_default_real_kind
12138             || ts.kind == gfc_default_double_kind))
12139           return SEQ_NONDEFAULT;
12140
12141       return SEQ_NUMERIC;
12142
12143     case BT_COMPLEX:
12144       if (ts.kind != gfc_default_complex_kind)
12145           return SEQ_NONDEFAULT;
12146
12147       return SEQ_NUMERIC;
12148
12149     case BT_LOGICAL:
12150       if (ts.kind != gfc_default_logical_kind)
12151           return SEQ_NONDEFAULT;
12152
12153       return SEQ_NUMERIC;
12154
12155     default:
12156       return SEQ_NONDEFAULT;
12157   }
12158 }
12159
12160
12161 /* Resolve derived type EQUIVALENCE object.  */
12162
12163 static gfc_try
12164 resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
12165 {
12166   gfc_component *c = derived->components;
12167
12168   if (!derived)
12169     return SUCCESS;
12170
12171   /* Shall not be an object of nonsequence derived type.  */
12172   if (!derived->attr.sequence)
12173     {
12174       gfc_error ("Derived type variable '%s' at %L must have SEQUENCE "
12175                  "attribute to be an EQUIVALENCE object", sym->name,
12176                  &e->where);
12177       return FAILURE;
12178     }
12179
12180   /* Shall not have allocatable components.  */
12181   if (derived->attr.alloc_comp)
12182     {
12183       gfc_error ("Derived type variable '%s' at %L cannot have ALLOCATABLE "
12184                  "components to be an EQUIVALENCE object",sym->name,
12185                  &e->where);
12186       return FAILURE;
12187     }
12188
12189   if (sym->attr.in_common && has_default_initializer (sym->ts.u.derived))
12190     {
12191       gfc_error ("Derived type variable '%s' at %L with default "
12192                  "initialization cannot be in EQUIVALENCE with a variable "
12193                  "in COMMON", sym->name, &e->where);
12194       return FAILURE;
12195     }
12196
12197   for (; c ; c = c->next)
12198     {
12199       if (c->ts.type == BT_DERIVED
12200           && (resolve_equivalence_derived (c->ts.u.derived, sym, e) == FAILURE))
12201         return FAILURE;
12202
12203       /* Shall not be an object of sequence derived type containing a pointer
12204          in the structure.  */
12205       if (c->attr.pointer)
12206         {
12207           gfc_error ("Derived type variable '%s' at %L with pointer "
12208                      "component(s) cannot be an EQUIVALENCE object",
12209                      sym->name, &e->where);
12210           return FAILURE;
12211         }
12212     }
12213   return SUCCESS;
12214 }
12215
12216
12217 /* Resolve equivalence object. 
12218    An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
12219    an allocatable array, an object of nonsequence derived type, an object of
12220    sequence derived type containing a pointer at any level of component
12221    selection, an automatic object, a function name, an entry name, a result
12222    name, a named constant, a structure component, or a subobject of any of
12223    the preceding objects.  A substring shall not have length zero.  A
12224    derived type shall not have components with default initialization nor
12225    shall two objects of an equivalence group be initialized.
12226    Either all or none of the objects shall have an protected attribute.
12227    The simple constraints are done in symbol.c(check_conflict) and the rest
12228    are implemented here.  */
12229
12230 static void
12231 resolve_equivalence (gfc_equiv *eq)
12232 {
12233   gfc_symbol *sym;
12234   gfc_symbol *first_sym;
12235   gfc_expr *e;
12236   gfc_ref *r;
12237   locus *last_where = NULL;
12238   seq_type eq_type, last_eq_type;
12239   gfc_typespec *last_ts;
12240   int object, cnt_protected;
12241   const char *msg;
12242
12243   last_ts = &eq->expr->symtree->n.sym->ts;
12244
12245   first_sym = eq->expr->symtree->n.sym;
12246
12247   cnt_protected = 0;
12248
12249   for (object = 1; eq; eq = eq->eq, object++)
12250     {
12251       e = eq->expr;
12252
12253       e->ts = e->symtree->n.sym->ts;
12254       /* match_varspec might not know yet if it is seeing
12255          array reference or substring reference, as it doesn't
12256          know the types.  */
12257       if (e->ref && e->ref->type == REF_ARRAY)
12258         {
12259           gfc_ref *ref = e->ref;
12260           sym = e->symtree->n.sym;
12261
12262           if (sym->attr.dimension)
12263             {
12264               ref->u.ar.as = sym->as;
12265               ref = ref->next;
12266             }
12267
12268           /* For substrings, convert REF_ARRAY into REF_SUBSTRING.  */
12269           if (e->ts.type == BT_CHARACTER
12270               && ref
12271               && ref->type == REF_ARRAY
12272               && ref->u.ar.dimen == 1
12273               && ref->u.ar.dimen_type[0] == DIMEN_RANGE
12274               && ref->u.ar.stride[0] == NULL)
12275             {
12276               gfc_expr *start = ref->u.ar.start[0];
12277               gfc_expr *end = ref->u.ar.end[0];
12278               void *mem = NULL;
12279
12280               /* Optimize away the (:) reference.  */
12281               if (start == NULL && end == NULL)
12282                 {
12283                   if (e->ref == ref)
12284                     e->ref = ref->next;
12285                   else
12286                     e->ref->next = ref->next;
12287                   mem = ref;
12288                 }
12289               else
12290                 {
12291                   ref->type = REF_SUBSTRING;
12292                   if (start == NULL)
12293                     start = gfc_get_int_expr (gfc_default_integer_kind,
12294                                               NULL, 1);
12295                   ref->u.ss.start = start;
12296                   if (end == NULL && e->ts.u.cl)
12297                     end = gfc_copy_expr (e->ts.u.cl->length);
12298                   ref->u.ss.end = end;
12299                   ref->u.ss.length = e->ts.u.cl;
12300                   e->ts.u.cl = NULL;
12301                 }
12302               ref = ref->next;
12303               gfc_free (mem);
12304             }
12305
12306           /* Any further ref is an error.  */
12307           if (ref)
12308             {
12309               gcc_assert (ref->type == REF_ARRAY);
12310               gfc_error ("Syntax error in EQUIVALENCE statement at %L",
12311                          &ref->u.ar.where);
12312               continue;
12313             }
12314         }
12315
12316       if (gfc_resolve_expr (e) == FAILURE)
12317         continue;
12318
12319       sym = e->symtree->n.sym;
12320
12321       if (sym->attr.is_protected)
12322         cnt_protected++;
12323       if (cnt_protected > 0 && cnt_protected != object)
12324         {
12325               gfc_error ("Either all or none of the objects in the "
12326                          "EQUIVALENCE set at %L shall have the "
12327                          "PROTECTED attribute",
12328                          &e->where);
12329               break;
12330         }
12331
12332       /* Shall not equivalence common block variables in a PURE procedure.  */
12333       if (sym->ns->proc_name
12334           && sym->ns->proc_name->attr.pure
12335           && sym->attr.in_common)
12336         {
12337           gfc_error ("Common block member '%s' at %L cannot be an EQUIVALENCE "
12338                      "object in the pure procedure '%s'",
12339                      sym->name, &e->where, sym->ns->proc_name->name);
12340           break;
12341         }
12342
12343       /* Shall not be a named constant.  */
12344       if (e->expr_type == EXPR_CONSTANT)
12345         {
12346           gfc_error ("Named constant '%s' at %L cannot be an EQUIVALENCE "
12347                      "object", sym->name, &e->where);
12348           continue;
12349         }
12350
12351       if (e->ts.type == BT_DERIVED
12352           && resolve_equivalence_derived (e->ts.u.derived, sym, e) == FAILURE)
12353         continue;
12354
12355       /* Check that the types correspond correctly:
12356          Note 5.28:
12357          A numeric sequence structure may be equivalenced to another sequence
12358          structure, an object of default integer type, default real type, double
12359          precision real type, default logical type such that components of the
12360          structure ultimately only become associated to objects of the same
12361          kind. A character sequence structure may be equivalenced to an object
12362          of default character kind or another character sequence structure.
12363          Other objects may be equivalenced only to objects of the same type and
12364          kind parameters.  */
12365
12366       /* Identical types are unconditionally OK.  */
12367       if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
12368         goto identical_types;
12369
12370       last_eq_type = sequence_type (*last_ts);
12371       eq_type = sequence_type (sym->ts);
12372
12373       /* Since the pair of objects is not of the same type, mixed or
12374          non-default sequences can be rejected.  */
12375
12376       msg = "Sequence %s with mixed components in EQUIVALENCE "
12377             "statement at %L with different type objects";
12378       if ((object ==2
12379            && last_eq_type == SEQ_MIXED
12380            && gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where)
12381               == FAILURE)
12382           || (eq_type == SEQ_MIXED
12383               && gfc_notify_std (GFC_STD_GNU, msg, sym->name,
12384                                  &e->where) == FAILURE))
12385         continue;
12386
12387       msg = "Non-default type object or sequence %s in EQUIVALENCE "
12388             "statement at %L with objects of different type";
12389       if ((object ==2
12390            && last_eq_type == SEQ_NONDEFAULT
12391            && gfc_notify_std (GFC_STD_GNU, msg, first_sym->name,
12392                               last_where) == FAILURE)
12393           || (eq_type == SEQ_NONDEFAULT
12394               && gfc_notify_std (GFC_STD_GNU, msg, sym->name,
12395                                  &e->where) == FAILURE))
12396         continue;
12397
12398       msg ="Non-CHARACTER object '%s' in default CHARACTER "
12399            "EQUIVALENCE statement at %L";
12400       if (last_eq_type == SEQ_CHARACTER
12401           && eq_type != SEQ_CHARACTER
12402           && gfc_notify_std (GFC_STD_GNU, msg, sym->name,
12403                              &e->where) == FAILURE)
12404                 continue;
12405
12406       msg ="Non-NUMERIC object '%s' in default NUMERIC "
12407            "EQUIVALENCE statement at %L";
12408       if (last_eq_type == SEQ_NUMERIC
12409           && eq_type != SEQ_NUMERIC
12410           && gfc_notify_std (GFC_STD_GNU, msg, sym->name,
12411                              &e->where) == FAILURE)
12412                 continue;
12413
12414   identical_types:
12415       last_ts =&sym->ts;
12416       last_where = &e->where;
12417
12418       if (!e->ref)
12419         continue;
12420
12421       /* Shall not be an automatic array.  */
12422       if (e->ref->type == REF_ARRAY
12423           && gfc_resolve_array_spec (e->ref->u.ar.as, 1) == FAILURE)
12424         {
12425           gfc_error ("Array '%s' at %L with non-constant bounds cannot be "
12426                      "an EQUIVALENCE object", sym->name, &e->where);
12427           continue;
12428         }
12429
12430       r = e->ref;
12431       while (r)
12432         {
12433           /* Shall not be a structure component.  */
12434           if (r->type == REF_COMPONENT)
12435             {
12436               gfc_error ("Structure component '%s' at %L cannot be an "
12437                          "EQUIVALENCE object",
12438                          r->u.c.component->name, &e->where);
12439               break;
12440             }
12441
12442           /* A substring shall not have length zero.  */
12443           if (r->type == REF_SUBSTRING)
12444             {
12445               if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
12446                 {
12447                   gfc_error ("Substring at %L has length zero",
12448                              &r->u.ss.start->where);
12449                   break;
12450                 }
12451             }
12452           r = r->next;
12453         }
12454     }
12455 }
12456
12457
12458 /* Resolve function and ENTRY types, issue diagnostics if needed.  */
12459
12460 static void
12461 resolve_fntype (gfc_namespace *ns)
12462 {
12463   gfc_entry_list *el;
12464   gfc_symbol *sym;
12465
12466   if (ns->proc_name == NULL || !ns->proc_name->attr.function)
12467     return;
12468
12469   /* If there are any entries, ns->proc_name is the entry master
12470      synthetic symbol and ns->entries->sym actual FUNCTION symbol.  */
12471   if (ns->entries)
12472     sym = ns->entries->sym;
12473   else
12474     sym = ns->proc_name;
12475   if (sym->result == sym
12476       && sym->ts.type == BT_UNKNOWN
12477       && gfc_set_default_type (sym, 0, NULL) == FAILURE
12478       && !sym->attr.untyped)
12479     {
12480       gfc_error ("Function '%s' at %L has no IMPLICIT type",
12481                  sym->name, &sym->declared_at);
12482       sym->attr.untyped = 1;
12483     }
12484
12485   if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
12486       && !sym->attr.contained
12487       && !gfc_check_access (sym->ts.u.derived->attr.access,
12488                             sym->ts.u.derived->ns->default_access)
12489       && gfc_check_access (sym->attr.access, sym->ns->default_access))
12490     {
12491       gfc_notify_std (GFC_STD_F2003, "Fortran 2003: PUBLIC function '%s' at "
12492                       "%L of PRIVATE type '%s'", sym->name,
12493                       &sym->declared_at, sym->ts.u.derived->name);
12494     }
12495
12496     if (ns->entries)
12497     for (el = ns->entries->next; el; el = el->next)
12498       {
12499         if (el->sym->result == el->sym
12500             && el->sym->ts.type == BT_UNKNOWN
12501             && gfc_set_default_type (el->sym, 0, NULL) == FAILURE
12502             && !el->sym->attr.untyped)
12503           {
12504             gfc_error ("ENTRY '%s' at %L has no IMPLICIT type",
12505                        el->sym->name, &el->sym->declared_at);
12506             el->sym->attr.untyped = 1;
12507           }
12508       }
12509 }
12510
12511
12512 /* 12.3.2.1.1 Defined operators.  */
12513
12514 static gfc_try
12515 check_uop_procedure (gfc_symbol *sym, locus where)
12516 {
12517   gfc_formal_arglist *formal;
12518
12519   if (!sym->attr.function)
12520     {
12521       gfc_error ("User operator procedure '%s' at %L must be a FUNCTION",
12522                  sym->name, &where);
12523       return FAILURE;
12524     }
12525
12526   if (sym->ts.type == BT_CHARACTER
12527       && !(sym->ts.u.cl && sym->ts.u.cl->length)
12528       && !(sym->result && sym->result->ts.u.cl
12529            && sym->result->ts.u.cl->length))
12530     {
12531       gfc_error ("User operator procedure '%s' at %L cannot be assumed "
12532                  "character length", sym->name, &where);
12533       return FAILURE;
12534     }
12535
12536   formal = sym->formal;
12537   if (!formal || !formal->sym)
12538     {
12539       gfc_error ("User operator procedure '%s' at %L must have at least "
12540                  "one argument", sym->name, &where);
12541       return FAILURE;
12542     }
12543
12544   if (formal->sym->attr.intent != INTENT_IN)
12545     {
12546       gfc_error ("First argument of operator interface at %L must be "
12547                  "INTENT(IN)", &where);
12548       return FAILURE;
12549     }
12550
12551   if (formal->sym->attr.optional)
12552     {
12553       gfc_error ("First argument of operator interface at %L cannot be "
12554                  "optional", &where);
12555       return FAILURE;
12556     }
12557
12558   formal = formal->next;
12559   if (!formal || !formal->sym)
12560     return SUCCESS;
12561
12562   if (formal->sym->attr.intent != INTENT_IN)
12563     {
12564       gfc_error ("Second argument of operator interface at %L must be "
12565                  "INTENT(IN)", &where);
12566       return FAILURE;
12567     }
12568
12569   if (formal->sym->attr.optional)
12570     {
12571       gfc_error ("Second argument of operator interface at %L cannot be "
12572                  "optional", &where);
12573       return FAILURE;
12574     }
12575
12576   if (formal->next)
12577     {
12578       gfc_error ("Operator interface at %L must have, at most, two "
12579                  "arguments", &where);
12580       return FAILURE;
12581     }
12582
12583   return SUCCESS;
12584 }
12585
12586 static void
12587 gfc_resolve_uops (gfc_symtree *symtree)
12588 {
12589   gfc_interface *itr;
12590
12591   if (symtree == NULL)
12592     return;
12593
12594   gfc_resolve_uops (symtree->left);
12595   gfc_resolve_uops (symtree->right);
12596
12597   for (itr = symtree->n.uop->op; itr; itr = itr->next)
12598     check_uop_procedure (itr->sym, itr->sym->declared_at);
12599 }
12600
12601
12602 /* Examine all of the expressions associated with a program unit,
12603    assign types to all intermediate expressions, make sure that all
12604    assignments are to compatible types and figure out which names
12605    refer to which functions or subroutines.  It doesn't check code
12606    block, which is handled by resolve_code.  */
12607
12608 static void
12609 resolve_types (gfc_namespace *ns)
12610 {
12611   gfc_namespace *n;
12612   gfc_charlen *cl;
12613   gfc_data *d;
12614   gfc_equiv *eq;
12615   gfc_namespace* old_ns = gfc_current_ns;
12616
12617   /* Check that all IMPLICIT types are ok.  */
12618   if (!ns->seen_implicit_none)
12619     {
12620       unsigned letter;
12621       for (letter = 0; letter != GFC_LETTERS; ++letter)
12622         if (ns->set_flag[letter]
12623             && resolve_typespec_used (&ns->default_type[letter],
12624                                       &ns->implicit_loc[letter],
12625                                       NULL) == FAILURE)
12626           return;
12627     }
12628
12629   gfc_current_ns = ns;
12630
12631   resolve_entries (ns);
12632
12633   resolve_common_vars (ns->blank_common.head, false);
12634   resolve_common_blocks (ns->common_root);
12635
12636   resolve_contained_functions (ns);
12637
12638   gfc_traverse_ns (ns, resolve_bind_c_derived_types);
12639
12640   for (cl = ns->cl_list; cl; cl = cl->next)
12641     resolve_charlen (cl);
12642
12643   gfc_traverse_ns (ns, resolve_symbol);
12644
12645   resolve_fntype (ns);
12646
12647   for (n = ns->contained; n; n = n->sibling)
12648     {
12649       if (gfc_pure (ns->proc_name) && !gfc_pure (n->proc_name))
12650         gfc_error ("Contained procedure '%s' at %L of a PURE procedure must "
12651                    "also be PURE", n->proc_name->name,
12652                    &n->proc_name->declared_at);
12653
12654       resolve_types (n);
12655     }
12656
12657   forall_flag = 0;
12658   gfc_check_interfaces (ns);
12659
12660   gfc_traverse_ns (ns, resolve_values);
12661
12662   if (ns->save_all)
12663     gfc_save_all (ns);
12664
12665   iter_stack = NULL;
12666   for (d = ns->data; d; d = d->next)
12667     resolve_data (d);
12668
12669   iter_stack = NULL;
12670   gfc_traverse_ns (ns, gfc_formalize_init_value);
12671
12672   gfc_traverse_ns (ns, gfc_verify_binding_labels);
12673
12674   if (ns->common_root != NULL)
12675     gfc_traverse_symtree (ns->common_root, resolve_bind_c_comms);
12676
12677   for (eq = ns->equiv; eq; eq = eq->next)
12678     resolve_equivalence (eq);
12679
12680   /* Warn about unused labels.  */
12681   if (warn_unused_label)
12682     warn_unused_fortran_label (ns->st_labels);
12683
12684   gfc_resolve_uops (ns->uop_root);
12685
12686   gfc_current_ns = old_ns;
12687 }
12688
12689
12690 /* Call resolve_code recursively.  */
12691
12692 static void
12693 resolve_codes (gfc_namespace *ns)
12694 {
12695   gfc_namespace *n;
12696   bitmap_obstack old_obstack;
12697
12698   for (n = ns->contained; n; n = n->sibling)
12699     resolve_codes (n);
12700
12701   gfc_current_ns = ns;
12702
12703   /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct.  */
12704   if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
12705     cs_base = NULL;
12706
12707   /* Set to an out of range value.  */
12708   current_entry_id = -1;
12709
12710   old_obstack = labels_obstack;
12711   bitmap_obstack_initialize (&labels_obstack);
12712
12713   resolve_code (ns->code, ns);
12714
12715   bitmap_obstack_release (&labels_obstack);
12716   labels_obstack = old_obstack;
12717 }
12718
12719
12720 /* This function is called after a complete program unit has been compiled.
12721    Its purpose is to examine all of the expressions associated with a program
12722    unit, assign types to all intermediate expressions, make sure that all
12723    assignments are to compatible types and figure out which names refer to
12724    which functions or subroutines.  */
12725
12726 void
12727 gfc_resolve (gfc_namespace *ns)
12728 {
12729   gfc_namespace *old_ns;
12730   code_stack *old_cs_base;
12731
12732   if (ns->resolved)
12733     return;
12734
12735   ns->resolved = -1;
12736   old_ns = gfc_current_ns;
12737   old_cs_base = cs_base;
12738
12739   resolve_types (ns);
12740   resolve_codes (ns);
12741
12742   gfc_current_ns = old_ns;
12743   cs_base = old_cs_base;
12744   ns->resolved = 1;
12745 }