LCOV - code coverage report
Current view: top level - gcc/fortran - resolve.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 93.7 % 9951 9329
Test Date: 2026-09-12 16:25:28 Functions: 99.6 % 256 255
Legend: Lines:     hit not hit

            Line data    Source code
       1              : /* Perform type resolution on the various structures.
       2              :    Copyright (C) 2001-2026 Free Software Foundation, Inc.
       3              :    Contributed by Andy Vaught
       4              : 
       5              : This file is part of GCC.
       6              : 
       7              : GCC is free software; you can redistribute it and/or modify it under
       8              : the terms of the GNU General Public License as published by the Free
       9              : Software Foundation; either version 3, or (at your option) any later
      10              : version.
      11              : 
      12              : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
      13              : WARRANTY; without even the implied warranty of MERCHANTABILITY or
      14              : FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      15              : for more details.
      16              : 
      17              : You should have received a copy of the GNU General Public License
      18              : along with GCC; see the file COPYING3.  If not see
      19              : <http://www.gnu.org/licenses/>.  */
      20              : 
      21              : #include "config.h"
      22              : #include "system.h"
      23              : #include "coretypes.h"
      24              : #include "options.h"
      25              : #include "bitmap.h"
      26              : #include "gfortran.h"
      27              : #include "arith.h"  /* For gfc_compare_expr().  */
      28              : #include "dependency.h"
      29              : #include "data.h"
      30              : #include "target-memory.h" /* for gfc_simplify_transfer */
      31              : #include "constructor.h"
      32              : 
      33              : /* Types used in equivalence statements.  */
      34              : 
      35              : enum seq_type
      36              : {
      37              :   SEQ_NONDEFAULT, SEQ_NUMERIC, SEQ_CHARACTER, SEQ_MIXED
      38              : };
      39              : 
      40              : /* Stack to keep track of the nesting of blocks as we move through the
      41              :    code.  See resolve_branch() and gfc_resolve_code().  */
      42              : 
      43              : typedef struct code_stack
      44              : {
      45              :   struct gfc_code *head, *current;
      46              :   struct code_stack *prev;
      47              : 
      48              :   /* This bitmap keeps track of the targets valid for a branch from
      49              :      inside this block except for END {IF|SELECT}s of enclosing
      50              :      blocks.  */
      51              :   bitmap reachable_labels;
      52              : }
      53              : code_stack;
      54              : 
      55              : static code_stack *cs_base = NULL;
      56              : 
      57              : struct check_default_none_data
      58              : {
      59              :   gfc_code *code;
      60              :   hash_set<gfc_symbol *> *sym_hash;
      61              :   gfc_namespace *ns;
      62              :   bool default_none;
      63              : };
      64              : 
      65              : /* Nonzero if we're inside a FORALL or DO CONCURRENT block.  */
      66              : 
      67              : static int forall_flag;
      68              : int gfc_do_concurrent_flag;
      69              : 
      70              : /* True when we are resolving an expression that is an actual argument to
      71              :    a procedure.  */
      72              : static bool actual_arg = false;
      73              : /* True when we are resolving an expression that is the first actual argument
      74              :    to a procedure.  */
      75              : static bool first_actual_arg = false;
      76              : 
      77              : 
      78              : /* Nonzero if we're inside a OpenMP WORKSHARE or PARALLEL WORKSHARE block.  */
      79              : 
      80              : static int omp_workshare_flag;
      81              : 
      82              : 
      83              : /* True if we are resolving a specification expression.  */
      84              : static bool specification_expr = false;
      85              : /* The dummy whose character length or array bounds are currently being
      86              :    resolved as a specification expression.  */
      87              : static gfc_symbol *specification_expr_symbol = NULL;
      88              : 
      89              : /* The id of the last entry seen.  */
      90              : static int current_entry_id;
      91              : 
      92              : /* We use bitmaps to determine if a branch target is valid.  */
      93              : static bitmap_obstack labels_obstack;
      94              : 
      95              : /* True when simplifying a EXPR_VARIABLE argument to an inquiry function.  */
      96              : static bool inquiry_argument = false;
      97              : 
      98              : static bool
      99          464 : entry_dummy_seen_p (gfc_symbol *sym)
     100              : {
     101          464 :   gfc_entry_list *entry;
     102          464 :   gfc_formal_arglist *formal;
     103              : 
     104          464 :   gcc_checking_assert (sym->attr.dummy && sym->ns == gfc_current_ns);
     105              : 
     106          464 :   for (entry = gfc_current_ns->entries;
     107          471 :        entry && entry->id <= current_entry_id;
     108            7 :        entry = entry->next)
     109          765 :     for (formal = entry->sym->formal; formal; formal = formal->next)
     110          758 :       if (formal->sym && sym->name == formal->sym->name)
     111              :         return true;
     112              : 
     113              :   return false;
     114              : }
     115              : 
     116              : 
     117              : /* Is the symbol host associated?  */
     118              : static bool
     119        54955 : is_sym_host_assoc (gfc_symbol *sym, gfc_namespace *ns)
     120              : {
     121        60214 :   for (ns = ns->parent; ns; ns = ns->parent)
     122              :     {
     123         5517 :       if (sym->ns == ns)
     124              :         return true;
     125              :     }
     126              : 
     127              :   return false;
     128              : }
     129              : 
     130              : /* Ensure a typespec used is valid; for instance, TYPE(t) is invalid if t is
     131              :    an ABSTRACT derived-type.  If where is not NULL, an error message with that
     132              :    locus is printed, optionally using name.  */
     133              : 
     134              : static bool
     135      1597076 : resolve_typespec_used (gfc_typespec* ts, locus* where, const char* name)
     136              : {
     137      1597076 :   if (ts->type == BT_DERIVED && ts->u.derived->attr.abstract)
     138              :     {
     139            5 :       if (where)
     140              :         {
     141            5 :           if (name)
     142            4 :             gfc_error ("%qs at %L is of the ABSTRACT type %qs",
     143              :                        name, where, ts->u.derived->name);
     144              :           else
     145            1 :             gfc_error ("ABSTRACT type %qs used at %L",
     146              :                        ts->u.derived->name, where);
     147              :         }
     148              : 
     149              :       return false;
     150              :     }
     151              : 
     152              :   return true;
     153              : }
     154              : 
     155              : 
     156              : static bool
     157         5693 : check_proc_interface (gfc_symbol *ifc, locus *where)
     158              : {
     159              :   /* Several checks for F08:C1216.  */
     160         5693 :   if (ifc->attr.procedure)
     161              :     {
     162            2 :       gfc_error ("Interface %qs at %L is declared "
     163              :                  "in a later PROCEDURE statement", ifc->name, where);
     164            2 :       return false;
     165              :     }
     166         5691 :   if (ifc->generic)
     167              :     {
     168              :       /* For generic interfaces, check if there is
     169              :          a specific procedure with the same name.  */
     170              :       gfc_interface *gen = ifc->generic;
     171           12 :       while (gen && strcmp (gen->sym->name, ifc->name) != 0)
     172            5 :         gen = gen->next;
     173            7 :       if (!gen)
     174              :         {
     175            4 :           gfc_error ("Interface %qs at %L may not be generic",
     176              :                      ifc->name, where);
     177            4 :           return false;
     178              :         }
     179              :     }
     180         5687 :   if (ifc->attr.proc == PROC_ST_FUNCTION)
     181              :     {
     182            4 :       gfc_error ("Interface %qs at %L may not be a statement function",
     183              :                  ifc->name, where);
     184            4 :       return false;
     185              :     }
     186         5683 :   if (gfc_is_intrinsic (ifc, 0, ifc->declared_at)
     187         5683 :       || gfc_is_intrinsic (ifc, 1, ifc->declared_at))
     188           17 :     ifc->attr.intrinsic = 1;
     189         5683 :   if (ifc->attr.intrinsic && !gfc_intrinsic_actual_ok (ifc->name, 0))
     190              :     {
     191            3 :       gfc_error ("Intrinsic procedure %qs not allowed in "
     192              :                  "PROCEDURE statement at %L", ifc->name, where);
     193            3 :       return false;
     194              :     }
     195         5680 :   if (!ifc->attr.if_source && !ifc->attr.intrinsic && ifc->name[0] != '\0')
     196              :     {
     197            7 :       gfc_error ("Interface %qs at %L must be explicit", ifc->name, where);
     198            7 :       return false;
     199              :     }
     200              :   return true;
     201              : }
     202              : 
     203              : 
     204              : static void resolve_symbol (gfc_symbol *sym);
     205              : 
     206              : 
     207              : /* Resolve the interface for a PROCEDURE declaration or procedure pointer.  */
     208              : 
     209              : static bool
     210         2141 : resolve_procedure_interface (gfc_symbol *sym)
     211              : {
     212         2141 :   gfc_symbol *ifc = sym->ts.interface;
     213              : 
     214         2141 :   if (!ifc)
     215              :     return true;
     216              : 
     217         1981 :   if (ifc == sym)
     218              :     {
     219            2 :       gfc_error ("PROCEDURE %qs at %L may not be used as its own interface",
     220              :                  sym->name, &sym->declared_at);
     221            2 :       return false;
     222              :     }
     223         1979 :   if (!check_proc_interface (ifc, &sym->declared_at))
     224              :     return false;
     225              : 
     226         1970 :   if (ifc->attr.if_source || ifc->attr.intrinsic)
     227              :     {
     228              :       /* Resolve interface and copy attributes.  */
     229         1691 :       resolve_symbol (ifc);
     230         1691 :       if (ifc->attr.intrinsic)
     231           14 :         gfc_resolve_intrinsic (ifc, &ifc->declared_at);
     232              : 
     233         1691 :       if (ifc->result)
     234              :         {
     235          780 :           sym->ts = ifc->result->ts;
     236          780 :           sym->attr.allocatable = ifc->result->attr.allocatable;
     237          780 :           sym->attr.pointer = ifc->result->attr.pointer;
     238          780 :           sym->attr.dimension = ifc->result->attr.dimension;
     239          780 :           sym->attr.class_ok = ifc->result->attr.class_ok;
     240          780 :           sym->as = gfc_copy_array_spec (ifc->result->as);
     241          780 :           sym->result = sym;
     242              :         }
     243              :       else
     244              :         {
     245          911 :           sym->ts = ifc->ts;
     246          911 :           sym->attr.allocatable = ifc->attr.allocatable;
     247          911 :           sym->attr.pointer = ifc->attr.pointer;
     248          911 :           sym->attr.dimension = ifc->attr.dimension;
     249          911 :           sym->attr.class_ok = ifc->attr.class_ok;
     250          911 :           sym->as = gfc_copy_array_spec (ifc->as);
     251              :         }
     252         1691 :       sym->ts.interface = ifc;
     253         1691 :       sym->attr.function = ifc->attr.function;
     254         1691 :       sym->attr.subroutine = ifc->attr.subroutine;
     255              : 
     256         1691 :       sym->attr.pure = ifc->attr.pure;
     257         1691 :       sym->attr.elemental = ifc->attr.elemental;
     258         1691 :       sym->attr.contiguous = ifc->attr.contiguous;
     259         1691 :       sym->attr.recursive = ifc->attr.recursive;
     260         1691 :       sym->attr.always_explicit = ifc->attr.always_explicit;
     261         1691 :       sym->attr.ext_attr |= ifc->attr.ext_attr;
     262         1691 :       sym->attr.is_bind_c = ifc->attr.is_bind_c;
     263              :       /* Copy char length.  */
     264         1691 :       if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
     265              :         {
     266           45 :           sym->ts.u.cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
     267           45 :           if (sym->ts.u.cl->length && !sym->ts.u.cl->resolved
     268           53 :               && !gfc_resolve_expr (sym->ts.u.cl->length))
     269              :             return false;
     270              :         }
     271              :     }
     272              : 
     273              :   return true;
     274              : }
     275              : 
     276              : 
     277              : /* Resolve types of formal argument lists.  These have to be done early so that
     278              :    the formal argument lists of module procedures can be copied to the
     279              :    containing module before the individual procedures are resolved
     280              :    individually.  We also resolve argument lists of procedures in interface
     281              :    blocks because they are self-contained scoping units.
     282              : 
     283              :    Since a dummy argument cannot be a non-dummy procedure, the only
     284              :    resort left for untyped names are the IMPLICIT types.  */
     285              : 
     286              : void
     287       553164 : gfc_resolve_formal_arglist (gfc_symbol *proc)
     288              : {
     289       553164 :   gfc_formal_arglist *f;
     290       553164 :   gfc_symbol *sym;
     291       553164 :   bool saved_specification_expr;
     292       553164 :   int i;
     293              : 
     294       553164 :   if (proc->result != NULL)
     295       344698 :     sym = proc->result;
     296              :   else
     297              :     sym = proc;
     298              : 
     299       553164 :   if (gfc_elemental (proc)
     300       390411 :       || sym->attr.pointer || sym->attr.allocatable
     301       931223 :       || (sym->as && sym->as->rank != 0))
     302              :     {
     303       177435 :       proc->attr.always_explicit = 1;
     304       177435 :       sym->attr.always_explicit = 1;
     305              :     }
     306              : 
     307       553164 :   gfc_namespace *orig_current_ns = gfc_current_ns;
     308       553164 :   gfc_current_ns = gfc_get_procedure_ns (proc);
     309              : 
     310      1432292 :   for (f = proc->formal; f; f = f->next)
     311              :     {
     312       879130 :       gfc_array_spec *as;
     313       879130 :       gfc_symbol *saved_specification_expr_symbol;
     314              : 
     315       879130 :       sym = f->sym;
     316              : 
     317       879130 :       if (sym == NULL)
     318              :         {
     319              :           /* Alternate return placeholder.  */
     320          171 :           if (gfc_elemental (proc))
     321            1 :             gfc_error ("Alternate return specifier in elemental subroutine "
     322              :                        "%qs at %L is not allowed", proc->name,
     323              :                        &proc->declared_at);
     324          171 :           if (proc->attr.function)
     325            1 :             gfc_error ("Alternate return specifier in function "
     326              :                        "%qs at %L is not allowed", proc->name,
     327              :                        &proc->declared_at);
     328          171 :           continue;
     329              :         }
     330              : 
     331          611 :       if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
     332       879570 :                && !resolve_procedure_interface (sym))
     333              :         break;
     334              : 
     335       878959 :       if (strcmp (proc->name, sym->name) == 0)
     336              :         {
     337            2 :           gfc_error ("Self-referential argument "
     338              :                      "%qs at %L is not allowed", sym->name,
     339              :                      &proc->declared_at);
     340            2 :           break;
     341              :         }
     342              : 
     343       878957 :       if (sym->attr.if_source != IFSRC_UNKNOWN)
     344          903 :         gfc_resolve_formal_arglist (sym);
     345              : 
     346       878957 :       if (sym->attr.subroutine || sym->attr.external)
     347              :         {
     348          913 :           if (sym->attr.flavor == FL_UNKNOWN)
     349            9 :             gfc_add_flavor (&sym->attr, FL_PROCEDURE, sym->name, &sym->declared_at);
     350              :         }
     351              :       else
     352              :         {
     353       878044 :           if (sym->ts.type == BT_UNKNOWN && !proc->attr.intrinsic
     354         3688 :               && (!sym->attr.function || sym->result == sym))
     355         3650 :             gfc_set_default_type (sym, 1, sym->ns);
     356              :         }
     357              : 
     358       878957 :       as = sym->ts.type == BT_CLASS && sym->attr.class_ok
     359       893303 :            ? CLASS_DATA (sym)->as : sym->as;
     360              : 
     361       878957 :       saved_specification_expr = specification_expr;
     362       878957 :       saved_specification_expr_symbol = specification_expr_symbol;
     363       878957 :       specification_expr = true;
     364       878957 :       specification_expr_symbol = sym;
     365       878957 :       gfc_resolve_array_spec (as, 0);
     366       878957 :       specification_expr = saved_specification_expr;
     367       878957 :       specification_expr_symbol = saved_specification_expr_symbol;
     368              : 
     369              :       /* We can't tell if an array with dimension (:) is assumed or deferred
     370              :          shape until we know if it has the pointer or allocatable attributes.
     371              :       */
     372       878957 :       if (as && as->rank > 0 && as->type == AS_DEFERRED
     373        12731 :           && ((sym->ts.type != BT_CLASS
     374        11556 :                && !(sym->attr.pointer || sym->attr.allocatable))
     375         5444 :               || (sym->ts.type == BT_CLASS
     376         1175 :                   && !(CLASS_DATA (sym)->attr.class_pointer
     377          975 :                        || CLASS_DATA (sym)->attr.allocatable)))
     378         7823 :           && sym->attr.flavor != FL_PROCEDURE)
     379              :         {
     380         7822 :           as->type = AS_ASSUMED_SHAPE;
     381        18151 :           for (i = 0; i < as->rank; i++)
     382        10329 :             as->lower[i] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
     383              :         }
     384              : 
     385       138937 :       if ((as && as->rank > 0 && as->type == AS_ASSUMED_SHAPE)
     386       124562 :           || (as && as->type == AS_ASSUMED_RANK)
     387       824761 :           || sym->attr.pointer || sym->attr.allocatable || sym->attr.target
     388       814525 :           || (sym->ts.type == BT_CLASS && sym->attr.class_ok
     389        11968 :               && (CLASS_DATA (sym)->attr.class_pointer
     390        11485 :                   || CLASS_DATA (sym)->attr.allocatable
     391        10545 :                   || CLASS_DATA (sym)->attr.target))
     392       813102 :           || sym->attr.optional)
     393              :         {
     394        81455 :           proc->attr.always_explicit = 1;
     395        81455 :           if (proc->result)
     396        36989 :             proc->result->attr.always_explicit = 1;
     397              :         }
     398              : 
     399              :       /* If the flavor is unknown at this point, it has to be a variable.
     400              :          A procedure specification would have already set the type.  */
     401              : 
     402       878957 :       if (sym->attr.flavor == FL_UNKNOWN)
     403        52255 :         gfc_add_flavor (&sym->attr, FL_VARIABLE, sym->name, &sym->declared_at);
     404              : 
     405       878957 :       if (gfc_pure (proc))
     406              :         {
     407       328579 :           if (sym->attr.flavor == FL_PROCEDURE)
     408              :             {
     409              :               /* F08:C1279.  */
     410           29 :               if (!gfc_pure (sym))
     411              :                 {
     412            1 :                   gfc_error ("Dummy procedure %qs of PURE procedure at %L must "
     413              :                             "also be PURE", sym->name, &sym->declared_at);
     414            1 :                   continue;
     415              :                 }
     416              :             }
     417       328550 :           else if (!sym->attr.pointer)
     418              :             {
     419       328536 :               if (proc->attr.function && sym->attr.intent != INTENT_IN)
     420              :                 {
     421          111 :                   if (sym->attr.value)
     422          110 :                     gfc_notify_std (GFC_STD_F2008, "Argument %qs"
     423              :                                     " of pure function %qs at %L with VALUE "
     424              :                                     "attribute but without INTENT(IN)",
     425              :                                     sym->name, proc->name, &sym->declared_at);
     426              :                   else
     427            1 :                     gfc_error ("Argument %qs of pure function %qs at %L must "
     428              :                                "be INTENT(IN) or VALUE", sym->name, proc->name,
     429              :                                &sym->declared_at);
     430              :                 }
     431              : 
     432       328536 :               if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN)
     433              :                 {
     434          159 :                   if (sym->attr.value)
     435          159 :                     gfc_notify_std (GFC_STD_F2008, "Argument %qs"
     436              :                                     " of pure subroutine %qs at %L with VALUE "
     437              :                                     "attribute but without INTENT", sym->name,
     438              :                                     proc->name, &sym->declared_at);
     439              :                   else
     440            0 :                     gfc_error ("Argument %qs of pure subroutine %qs at %L "
     441              :                                "must have its INTENT specified or have the "
     442              :                                "VALUE attribute", sym->name, proc->name,
     443              :                                &sym->declared_at);
     444              :                 }
     445              :             }
     446              : 
     447              :           /* F08:C1278a.  */
     448       328578 :           if (sym->ts.type == BT_CLASS && sym->attr.intent == INTENT_OUT)
     449              :             {
     450            1 :               gfc_error ("INTENT(OUT) argument %qs of pure procedure %qs at %L"
     451              :                          " may not be polymorphic", sym->name, proc->name,
     452              :                          &sym->declared_at);
     453            1 :               continue;
     454              :             }
     455              :         }
     456              : 
     457       878955 :       if (proc->attr.implicit_pure)
     458              :         {
     459        25871 :           if (sym->attr.flavor == FL_PROCEDURE)
     460              :             {
     461          337 :               if (!gfc_pure (sym))
     462          305 :                 proc->attr.implicit_pure = 0;
     463              :             }
     464        25534 :           else if (!sym->attr.pointer)
     465              :             {
     466        24744 :               if (proc->attr.function && sym->attr.intent != INTENT_IN
     467         2748 :                   && !sym->value)
     468         2748 :                 proc->attr.implicit_pure = 0;
     469              : 
     470        24744 :               if (proc->attr.subroutine && sym->attr.intent == INTENT_UNKNOWN
     471         4303 :                   && !sym->value)
     472         4303 :                 proc->attr.implicit_pure = 0;
     473              :             }
     474              :         }
     475              : 
     476       878955 :       if (gfc_elemental (proc))
     477              :         {
     478              :           /* F08:C1289.  */
     479       302702 :           if (sym->attr.codimension
     480       302701 :               || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
     481          965 :                   && CLASS_DATA (sym)->attr.codimension))
     482              :             {
     483            3 :               gfc_error ("Coarray dummy argument %qs at %L to elemental "
     484              :                          "procedure", sym->name, &sym->declared_at);
     485            3 :               continue;
     486              :             }
     487              : 
     488       302699 :           if (sym->as || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
     489          963 :                           && CLASS_DATA (sym)->as))
     490              :             {
     491            2 :               gfc_error ("Argument %qs of elemental procedure at %L must "
     492              :                          "be scalar", sym->name, &sym->declared_at);
     493            2 :               continue;
     494              :             }
     495              : 
     496       302697 :           if (sym->attr.allocatable
     497       302696 :               || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
     498          962 :                   && CLASS_DATA (sym)->attr.allocatable))
     499              :             {
     500            2 :               gfc_error ("Argument %qs of elemental procedure at %L cannot "
     501              :                          "have the ALLOCATABLE attribute", sym->name,
     502              :                          &sym->declared_at);
     503            2 :               continue;
     504              :             }
     505              : 
     506       302695 :           if (sym->attr.pointer
     507       302694 :               || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
     508          961 :                   && CLASS_DATA (sym)->attr.class_pointer))
     509              :             {
     510            2 :               gfc_error ("Argument %qs of elemental procedure at %L cannot "
     511              :                          "have the POINTER attribute", sym->name,
     512              :                          &sym->declared_at);
     513            2 :               continue;
     514              :             }
     515              : 
     516       302693 :           if (sym->attr.flavor == FL_PROCEDURE)
     517              :             {
     518            2 :               gfc_error ("Dummy procedure %qs not allowed in elemental "
     519              :                          "procedure %qs at %L", sym->name, proc->name,
     520              :                          &sym->declared_at);
     521            2 :               continue;
     522              :             }
     523              : 
     524              :           /* Fortran 2008 Corrigendum 1, C1290a.  */
     525       302691 :           if (sym->attr.intent == INTENT_UNKNOWN && !sym->attr.value)
     526              :             {
     527            2 :               gfc_error ("Argument %qs of elemental procedure %qs at %L must "
     528              :                          "have its INTENT specified or have the VALUE "
     529              :                          "attribute", sym->name, proc->name,
     530              :                          &sym->declared_at);
     531            2 :               continue;
     532              :             }
     533              :         }
     534              : 
     535              :       /* Each dummy shall be specified to be scalar.  */
     536       878942 :       if (proc->attr.proc == PROC_ST_FUNCTION)
     537              :         {
     538          307 :           if (sym->as != NULL)
     539              :             {
     540              :               /* F03:C1263 (R1238) The function-name and each dummy-arg-name
     541              :                  shall be specified, explicitly or implicitly, to be scalar.  */
     542            1 :               gfc_error ("Argument %qs of statement function %qs at %L "
     543              :                          "must be scalar", sym->name, proc->name,
     544              :                          &proc->declared_at);
     545            1 :               continue;
     546              :             }
     547              : 
     548          306 :           if (sym->ts.type == BT_CHARACTER)
     549              :             {
     550           48 :               gfc_charlen *cl = sym->ts.u.cl;
     551           48 :               if (!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
     552              :                 {
     553            0 :                   gfc_error ("Character-valued argument %qs of statement "
     554              :                              "function at %L must have constant length",
     555              :                              sym->name, &sym->declared_at);
     556            0 :                   continue;
     557              :                 }
     558              :             }
     559              :         }
     560              :     }
     561       553164 :   if (sym)
     562       553072 :     sym->formal_resolved = 1;
     563       553164 :   gfc_current_ns = orig_current_ns;
     564       553164 : }
     565              : 
     566              : 
     567              : /* Work function called when searching for symbols that have argument lists
     568              :    associated with them.  */
     569              : 
     570              : static void
     571      1920095 : find_arglists (gfc_symbol *sym)
     572              : {
     573      1920095 :   if (sym->attr.if_source == IFSRC_UNKNOWN || sym->ns != gfc_current_ns
     574       348332 :       || gfc_fl_struct (sym->attr.flavor) || sym->attr.intrinsic)
     575              :     return;
     576              : 
     577       345863 :   gfc_resolve_formal_arglist (sym);
     578              : }
     579              : 
     580              : 
     581              : /* Given a namespace, resolve all formal argument lists within the namespace.
     582              :  */
     583              : 
     584              : static void
     585       362366 : resolve_formal_arglists (gfc_namespace *ns)
     586              : {
     587            0 :   if (ns == NULL)
     588              :     return;
     589              : 
     590       362366 :   gfc_traverse_ns (ns, find_arglists);
     591              : }
     592              : 
     593              : 
     594              : static void
     595        38207 : resolve_contained_fntype (gfc_symbol *sym, gfc_namespace *ns)
     596              : {
     597        38207 :   bool t;
     598              : 
     599        38207 :   if (sym && sym->attr.flavor == FL_PROCEDURE
     600        38207 :       && sym->ns->parent
     601         1452 :       && sym->ns->parent->proc_name
     602         1452 :       && sym->ns->parent->proc_name->attr.flavor == FL_PROCEDURE
     603            0 :       && !strcmp (sym->name, sym->ns->parent->proc_name->name))
     604            0 :     gfc_error ("Contained procedure %qs at %L has the same name as its "
     605              :                "encompassing procedure", sym->name, &sym->declared_at);
     606              : 
     607              :   /* If this namespace is not a function or an entry master function,
     608              :      ignore it.  */
     609        38207 :   if (! sym || !(sym->attr.function || sym->attr.flavor == FL_VARIABLE)
     610        11128 :       || sym->attr.entry_master)
     611              :     return;
     612              : 
     613        10939 :   if (!sym->result)
     614              :     return;
     615              : 
     616              :   /* Try to find out of what the return type is.  */
     617        10939 :   if (sym->result->ts.type == BT_UNKNOWN && sym->result->ts.interface == NULL)
     618              :     {
     619           58 :       t = gfc_set_default_type (sym->result, 0, ns);
     620              : 
     621           58 :       if (!t && !sym->result->attr.untyped)
     622              :         {
     623           19 :           if (sym->result == sym)
     624            1 :             gfc_error ("Contained function %qs at %L has no IMPLICIT type",
     625              :                        sym->name, &sym->declared_at);
     626           18 :           else if (!sym->result->attr.proc_pointer)
     627            0 :             gfc_error ("Result %qs of contained function %qs at %L has "
     628              :                        "no IMPLICIT type", sym->result->name, sym->name,
     629              :                        &sym->result->declared_at);
     630           19 :           sym->result->attr.untyped = 1;
     631              :         }
     632              :     }
     633              : 
     634              :   /* Fortran 2008 Draft Standard, page 535, C418, on type-param-value
     635              :      type, lists the only ways a character length value of * can be used:
     636              :      dummy arguments of procedures, named constants, function results and
     637              :      in allocate statements if the allocate_object is an assumed length dummy
     638              :      in external functions.  Internal function results and results of module
     639              :      procedures are not on this list, ergo, not permitted.  */
     640              : 
     641        10939 :   if (sym->result->ts.type == BT_CHARACTER)
     642              :     {
     643         1211 :       gfc_charlen *cl = sym->result->ts.u.cl;
     644         1211 :       if ((!cl || !cl->length) && !sym->result->ts.deferred)
     645              :         {
     646              :           /* See if this is a module-procedure and adapt error message
     647              :              accordingly.  */
     648            4 :           bool module_proc;
     649            4 :           gcc_assert (ns->parent && ns->parent->proc_name);
     650            4 :           module_proc = (ns->parent->proc_name->attr.flavor == FL_MODULE);
     651              : 
     652            7 :           gfc_error (module_proc
     653              :                      ? G_("Character-valued module procedure %qs at %L"
     654              :                           " must not be assumed length")
     655              :                      : G_("Character-valued internal function %qs at %L"
     656              :                           " must not be assumed length"),
     657              :                      sym->name, &sym->declared_at);
     658              :         }
     659              :     }
     660              : }
     661              : 
     662              : 
     663              : /* Add NEW_ARGS to the formal argument list of PROC, taking care not to
     664              :    introduce duplicates.  */
     665              : 
     666              : static void
     667         1491 : merge_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
     668              : {
     669         1491 :   gfc_formal_arglist *f, *new_arglist;
     670         1491 :   gfc_symbol *new_sym;
     671              : 
     672         2644 :   for (; new_args != NULL; new_args = new_args->next)
     673              :     {
     674         1153 :       new_sym = new_args->sym;
     675              :       /* See if this arg is already in the formal argument list.  */
     676         2186 :       for (f = proc->formal; f; f = f->next)
     677              :         {
     678         1481 :           if (new_sym == f->sym)
     679              :             break;
     680              :         }
     681              : 
     682         1153 :       if (f)
     683          448 :         continue;
     684              : 
     685              :       /* Add a new argument.  Argument order is not important.  */
     686          705 :       new_arglist = gfc_get_formal_arglist ();
     687          705 :       new_arglist->sym = new_sym;
     688          705 :       new_arglist->next = proc->formal;
     689          705 :       proc->formal  = new_arglist;
     690              :     }
     691         1491 : }
     692              : 
     693              : 
     694              : /* Flag the arguments that are not present in all entries.  */
     695              : 
     696              : static void
     697         1491 : check_argument_lists (gfc_symbol *proc, gfc_formal_arglist *new_args)
     698              : {
     699         1491 :   gfc_formal_arglist *f, *head;
     700         1491 :   head = new_args;
     701              : 
     702         3086 :   for (f = proc->formal; f; f = f->next)
     703              :     {
     704         1595 :       if (f->sym == NULL)
     705           36 :         continue;
     706              : 
     707         2738 :       for (new_args = head; new_args; new_args = new_args->next)
     708              :         {
     709         2287 :           if (new_args->sym == f->sym)
     710              :             break;
     711              :         }
     712              : 
     713         1559 :       if (new_args)
     714         1108 :         continue;
     715              : 
     716          451 :       f->sym->attr.not_always_present = 1;
     717              :     }
     718         1491 : }
     719              : 
     720              : 
     721              : /* Resolve alternate entry points.  If a symbol has multiple entry points we
     722              :    create a new master symbol for the main routine, and turn the existing
     723              :    symbol into an entry point.  */
     724              : 
     725              : static void
     726       400066 : resolve_entries (gfc_namespace *ns)
     727              : {
     728       400066 :   gfc_namespace *old_ns;
     729       400066 :   gfc_code *c;
     730       400066 :   gfc_symbol *proc;
     731       400066 :   gfc_entry_list *el;
     732              :   /* Provide sufficient space to hold "master.%d.%s".  */
     733       400066 :   char name[GFC_MAX_SYMBOL_LEN + 1 + 18];
     734       400066 :   static int master_count = 0;
     735              : 
     736       400066 :   if (ns->proc_name == NULL)
     737       399363 :     return;
     738              : 
     739              :   /* No need to do anything if this procedure doesn't have alternate entry
     740              :      points.  */
     741       400017 :   if (!ns->entries)
     742              :     return;
     743              : 
     744              :   /* We may already have resolved alternate entry points.  */
     745          954 :   if (ns->proc_name->attr.entry_master)
     746              :     return;
     747              : 
     748              :   /* If this isn't a procedure something has gone horribly wrong.  */
     749          703 :   gcc_assert (ns->proc_name->attr.flavor == FL_PROCEDURE);
     750              : 
     751              :   /* Remember the current namespace.  */
     752          703 :   old_ns = gfc_current_ns;
     753              : 
     754          703 :   gfc_current_ns = ns;
     755              : 
     756              :   /* Add the main entry point to the list of entry points.  */
     757          703 :   el = gfc_get_entry_list ();
     758          703 :   el->sym = ns->proc_name;
     759          703 :   el->id = 0;
     760          703 :   el->next = ns->entries;
     761          703 :   ns->entries = el;
     762          703 :   ns->proc_name->attr.entry = 1;
     763              : 
     764              :   /* If it is a module function, it needs to be in the right namespace
     765              :      so that gfc_get_fake_result_decl can gather up the results. The
     766              :      need for this arose in get_proc_name, where these beasts were
     767              :      left in their own namespace, to keep prior references linked to
     768              :      the entry declaration.*/
     769          703 :   if (ns->proc_name->attr.function
     770          596 :       && ns->parent && ns->parent->proc_name->attr.flavor == FL_MODULE)
     771          189 :     el->sym->ns = ns;
     772              : 
     773              :   /* Do the same for entries where the master is not a module
     774              :      procedure.  These are retained in the module namespace because
     775              :      of the module procedure declaration.  */
     776         1491 :   for (el = el->next; el; el = el->next)
     777          788 :     if (el->sym->ns->proc_name->attr.flavor == FL_MODULE
     778            0 :           && el->sym->attr.mod_proc)
     779            0 :       el->sym->ns = ns;
     780          703 :   el = ns->entries;
     781              : 
     782              :   /* Add an entry statement for it.  */
     783          703 :   c = gfc_get_code (EXEC_ENTRY);
     784          703 :   c->ext.entry = el;
     785          703 :   c->next = ns->code;
     786          703 :   ns->code = c;
     787              : 
     788              :   /* Create a new symbol for the master function.  */
     789              :   /* Give the internal function a unique name (within this file).
     790              :      Also include the function name so the user has some hope of figuring
     791              :      out what is going on.  */
     792          703 :   snprintf (name, GFC_MAX_SYMBOL_LEN, "master.%d.%s",
     793          703 :             master_count++, ns->proc_name->name);
     794          703 :   gfc_get_ha_symbol (name, &proc);
     795          703 :   gcc_assert (proc != NULL);
     796              : 
     797          703 :   gfc_add_procedure (&proc->attr, PROC_INTERNAL, proc->name, NULL);
     798          703 :   if (ns->proc_name->attr.subroutine)
     799          107 :     gfc_add_subroutine (&proc->attr, proc->name, NULL);
     800              :   else
     801              :     {
     802          596 :       gfc_symbol *sym;
     803          596 :       gfc_typespec *ts, *fts;
     804          596 :       gfc_array_spec *as, *fas;
     805          596 :       gfc_add_function (&proc->attr, proc->name, NULL);
     806          596 :       proc->result = proc;
     807          596 :       fas = ns->entries->sym->as;
     808          596 :       fas = fas ? fas : ns->entries->sym->result->as;
     809          596 :       fts = &ns->entries->sym->result->ts;
     810          596 :       if (fts->type == BT_UNKNOWN)
     811           51 :         fts = gfc_get_default_type (ns->entries->sym->result->name, NULL);
     812         1120 :       for (el = ns->entries->next; el; el = el->next)
     813              :         {
     814          635 :           ts = &el->sym->result->ts;
     815          635 :           as = el->sym->as;
     816          635 :           as = as ? as : el->sym->result->as;
     817          635 :           if (ts->type == BT_UNKNOWN)
     818           61 :             ts = gfc_get_default_type (el->sym->result->name, NULL);
     819              : 
     820          635 :           if (! gfc_compare_types (ts, fts)
     821          527 :               || (el->sym->result->attr.dimension
     822          527 :                   != ns->entries->sym->result->attr.dimension)
     823          635 :               || (el->sym->result->attr.pointer
     824          527 :                   != ns->entries->sym->result->attr.pointer))
     825              :             break;
     826           65 :           else if (as && fas && ns->entries->sym->result != el->sym->result
     827          589 :                       && gfc_compare_array_spec (as, fas) == 0)
     828            5 :             gfc_error ("Function %s at %L has entries with mismatched "
     829              :                        "array specifications", ns->entries->sym->name,
     830            5 :                        &ns->entries->sym->declared_at);
     831              :           /* The characteristics need to match and thus both need to have
     832              :              the same string length, i.e. both len=*, or both len=4.
     833              :              Having both len=<variable> is also possible, but difficult to
     834              :              check at compile time.  */
     835          522 :           else if (ts->type == BT_CHARACTER
     836          113 :                    && (el->sym->result->attr.allocatable
     837          113 :                        != ns->entries->sym->result->attr.allocatable))
     838              :             {
     839            3 :               gfc_error ("Function %s at %L has entry %s with mismatched "
     840              :                          "characteristics", ns->entries->sym->name,
     841              :                          &ns->entries->sym->declared_at, el->sym->name);
     842            3 :               goto cleanup;
     843              :             }
     844          519 :           else if (ts->type == BT_CHARACTER && ts->u.cl && fts->u.cl
     845          110 :                    && (((ts->u.cl->length && !fts->u.cl->length)
     846          109 :                         ||(!ts->u.cl->length && fts->u.cl->length))
     847           90 :                        || (ts->u.cl->length
     848           53 :                            && ts->u.cl->length->expr_type
     849           53 :                               != fts->u.cl->length->expr_type)
     850           90 :                        || (ts->u.cl->length
     851           53 :                            && ts->u.cl->length->expr_type == EXPR_CONSTANT
     852           52 :                            && mpz_cmp (ts->u.cl->length->value.integer,
     853           52 :                                        fts->u.cl->length->value.integer) != 0)))
     854           21 :             gfc_notify_std (GFC_STD_GNU, "Function %s at %L with "
     855              :                             "entries returning variables of different "
     856              :                             "string lengths", ns->entries->sym->name,
     857           21 :                             &ns->entries->sym->declared_at);
     858          498 :           else if (el->sym->result->attr.allocatable
     859          498 :                    != ns->entries->sym->result->attr.allocatable)
     860              :             break;
     861              :         }
     862              : 
     863          593 :       if (el == NULL)
     864              :         {
     865          485 :           sym = ns->entries->sym->result;
     866              :           /* All result types the same.  */
     867          485 :           proc->ts = *fts;
     868          485 :           if (sym->attr.dimension)
     869           63 :             gfc_set_array_spec (proc, gfc_copy_array_spec (sym->as), NULL);
     870          485 :           if (sym->attr.pointer)
     871           78 :             gfc_add_pointer (&proc->attr, NULL);
     872          485 :           if (sym->attr.allocatable)
     873           24 :             gfc_add_allocatable (&proc->attr, NULL);
     874              :         }
     875              :       else
     876              :         {
     877              :           /* Otherwise the result will be passed through a union by
     878              :              reference.  */
     879          108 :           proc->attr.mixed_entry_master = 1;
     880          346 :           for (el = ns->entries; el; el = el->next)
     881              :             {
     882          238 :               sym = el->sym->result;
     883          238 :               if (sym->attr.dimension)
     884              :                 {
     885            1 :                   if (el == ns->entries)
     886            0 :                     gfc_error ("FUNCTION result %s cannot be an array in "
     887              :                                "FUNCTION %s at %L", sym->name,
     888            0 :                                ns->entries->sym->name, &sym->declared_at);
     889              :                   else
     890            1 :                     gfc_error ("ENTRY result %s cannot be an array in "
     891              :                                "FUNCTION %s at %L", sym->name,
     892            1 :                                ns->entries->sym->name, &sym->declared_at);
     893              :                 }
     894          237 :               else if (sym->attr.pointer)
     895              :                 {
     896            1 :                   if (el == ns->entries)
     897            1 :                     gfc_error ("FUNCTION result %s cannot be a POINTER in "
     898              :                                "FUNCTION %s at %L", sym->name,
     899            1 :                                ns->entries->sym->name, &sym->declared_at);
     900              :                   else
     901            0 :                     gfc_error ("ENTRY result %s cannot be a POINTER in "
     902              :                                "FUNCTION %s at %L", sym->name,
     903            0 :                                ns->entries->sym->name, &sym->declared_at);
     904              :                 }
     905          236 :               else if (sym->attr.allocatable)
     906              :                 {
     907            0 :                   if (el == ns->entries)
     908            0 :                     gfc_error ("FUNCTION result %s cannot be ALLOCATABLE in "
     909              :                                "FUNCTION %s at %L", sym->name,
     910            0 :                                ns->entries->sym->name, &sym->declared_at);
     911              :                   else
     912            0 :                     gfc_error ("ENTRY result %s cannot be ALLOCATABLE in "
     913              :                                "FUNCTION %s at %L", sym->name,
     914            0 :                                ns->entries->sym->name, &sym->declared_at);
     915              :                 }
     916              :               else
     917              :                 {
     918          236 :                   ts = &sym->ts;
     919          236 :                   if (ts->type == BT_UNKNOWN)
     920            9 :                     ts = gfc_get_default_type (sym->name, NULL);
     921          236 :                   switch (ts->type)
     922              :                     {
     923           85 :                     case BT_INTEGER:
     924           85 :                       if (ts->kind == gfc_default_integer_kind)
     925              :                         sym = NULL;
     926              :                       break;
     927          100 :                     case BT_REAL:
     928          100 :                       if (ts->kind == gfc_default_real_kind
     929           18 :                           || ts->kind == gfc_default_double_kind)
     930              :                         sym = NULL;
     931              :                       break;
     932           20 :                     case BT_COMPLEX:
     933           20 :                       if (ts->kind == gfc_default_complex_kind)
     934              :                         sym = NULL;
     935              :                       break;
     936           28 :                     case BT_LOGICAL:
     937           28 :                       if (ts->kind == gfc_default_logical_kind)
     938              :                         sym = NULL;
     939              :                       break;
     940              :                     case BT_UNKNOWN:
     941              :                       /* We will issue error elsewhere.  */
     942              :                       sym = NULL;
     943              :                       break;
     944              :                     default:
     945              :                       break;
     946              :                     }
     947            3 :                   if (sym)
     948              :                     {
     949            3 :                       if (el == ns->entries)
     950            1 :                         gfc_error ("FUNCTION result %s cannot be of type %s "
     951              :                                    "in FUNCTION %s at %L", sym->name,
     952            1 :                                    gfc_typename (ts), ns->entries->sym->name,
     953              :                                    &sym->declared_at);
     954              :                       else
     955            2 :                         gfc_error ("ENTRY result %s cannot be of type %s "
     956              :                                    "in FUNCTION %s at %L", sym->name,
     957            2 :                                    gfc_typename (ts), ns->entries->sym->name,
     958              :                                    &sym->declared_at);
     959              :                     }
     960              :                 }
     961              :             }
     962              :         }
     963              :     }
     964              : 
     965          108 : cleanup:
     966          703 :   proc->attr.access = ACCESS_PRIVATE;
     967          703 :   proc->attr.entry_master = 1;
     968              : 
     969              :   /* Merge all the entry point arguments.  */
     970         2194 :   for (el = ns->entries; el; el = el->next)
     971         1491 :     merge_argument_lists (proc, el->sym->formal);
     972              : 
     973              :   /* Check the master formal arguments for any that are not
     974              :      present in all entry points.  */
     975         2194 :   for (el = ns->entries; el; el = el->next)
     976         1491 :     check_argument_lists (proc, el->sym->formal);
     977              : 
     978              :   /* Use the master function for the function body.  */
     979          703 :   ns->proc_name = proc;
     980              : 
     981              :   /* Finalize the new symbols.  */
     982          703 :   gfc_commit_symbols ();
     983              : 
     984              :   /* Restore the original namespace.  */
     985          703 :   gfc_current_ns = old_ns;
     986              : }
     987              : 
     988              : 
     989              : /* Forward declaration.  */
     990              : static bool is_non_constant_shape_array (gfc_symbol *sym);
     991              : 
     992              : 
     993              : /* Resolve common variables.  */
     994              : static void
     995       364343 : resolve_common_vars (gfc_common_head *common_block, bool named_common)
     996              : {
     997       364343 :   gfc_symbol *csym = common_block->head;
     998       364343 :   gfc_gsymbol *gsym;
     999              : 
    1000       370395 :   for (; csym; csym = csym->common_next)
    1001              :     {
    1002         6052 :       gsym = gfc_find_gsymbol (gfc_gsym_root, csym->name);
    1003         6052 :       if (gsym && (gsym->type == GSYM_MODULE || gsym->type == GSYM_PROGRAM))
    1004              :         {
    1005            3 :           if (csym->common_block)
    1006            2 :             gfc_error_now ("Global entity %qs at %L cannot appear in a "
    1007              :                            "COMMON block at %L", gsym->name,
    1008              :                            &gsym->where, &csym->common_block->where);
    1009              :           else
    1010            1 :             gfc_error_now ("Global entity %qs at %L cannot appear in a "
    1011              :                            "COMMON block", gsym->name, &gsym->where);
    1012              :         }
    1013              : 
    1014              :       /* gfc_add_in_common may have been called before, but the reported errors
    1015              :          have been ignored to continue parsing.
    1016              :          We do the checks again here, unless the symbol is USE associated.  */
    1017         6052 :       if (!csym->attr.use_assoc && !csym->attr.used_in_submodule)
    1018              :         {
    1019         5779 :           gfc_add_in_common (&csym->attr, csym->name, &common_block->where);
    1020         5779 :           gfc_notify_std (GFC_STD_F2018_OBS, "COMMON block at %L",
    1021              :                           &common_block->where);
    1022              :         }
    1023              : 
    1024         6052 :       if (csym->value || csym->attr.data)
    1025              :         {
    1026          149 :           if (!csym->ns->is_block_data)
    1027           33 :             gfc_notify_std (GFC_STD_GNU, "Variable %qs at %L is in COMMON "
    1028              :                             "but only in BLOCK DATA initialization is "
    1029              :                             "allowed", csym->name, &csym->declared_at);
    1030          116 :           else if (!named_common)
    1031            8 :             gfc_notify_std (GFC_STD_GNU, "Initialized variable %qs at %L is "
    1032              :                             "in a blank COMMON but initialization is only "
    1033              :                             "allowed in named common blocks", csym->name,
    1034              :                             &csym->declared_at);
    1035              :         }
    1036              : 
    1037         6052 :       if (UNLIMITED_POLY (csym))
    1038            1 :         gfc_error_now ("%qs at %L cannot appear in COMMON "
    1039              :                        "[F2008:C5100]", csym->name, &csym->declared_at);
    1040              : 
    1041         6052 :       if (csym->attr.dimension && is_non_constant_shape_array (csym))
    1042              :         {
    1043            1 :           gfc_error_now ("Automatic object %qs at %L cannot appear in "
    1044              :                          "COMMON at %L", csym->name, &csym->declared_at,
    1045              :                          &common_block->where);
    1046              :           /* Avoid confusing follow-on error.  */
    1047            1 :           csym->error = 1;
    1048              :         }
    1049              : 
    1050         6052 :       if (csym->ts.type != BT_DERIVED)
    1051         6005 :         continue;
    1052              : 
    1053           47 :       if (!(csym->ts.u.derived->attr.sequence
    1054            3 :             || csym->ts.u.derived->attr.is_bind_c))
    1055            2 :         gfc_error_now ("Derived type variable %qs in COMMON at %L "
    1056              :                        "has neither the SEQUENCE nor the BIND(C) "
    1057              :                        "attribute", csym->name, &csym->declared_at);
    1058           47 :       if (csym->ts.u.derived->attr.alloc_comp)
    1059            3 :         gfc_error_now ("Derived type variable %qs in COMMON at %L "
    1060              :                        "has an ultimate component that is "
    1061              :                        "allocatable", csym->name, &csym->declared_at);
    1062           47 :       if (gfc_has_default_initializer (csym->ts.u.derived))
    1063            2 :         gfc_error_now ("Derived type variable %qs in COMMON at %L "
    1064              :                        "may not have default initializer", csym->name,
    1065              :                        &csym->declared_at);
    1066              : 
    1067           47 :       if (csym->attr.flavor == FL_UNKNOWN && !csym->attr.proc_pointer)
    1068           16 :         gfc_add_flavor (&csym->attr, FL_VARIABLE, csym->name, &csym->declared_at);
    1069              :     }
    1070       364343 : }
    1071              : 
    1072              : /* Resolve common blocks.  */
    1073              : static void
    1074       362896 : resolve_common_blocks (gfc_symtree *common_root)
    1075              : {
    1076       362896 :   gfc_symbol *sym = NULL;
    1077       362896 :   gfc_gsymbol * gsym;
    1078              : 
    1079       362896 :   if (common_root == NULL)
    1080       362774 :     return;
    1081              : 
    1082         1977 :   if (common_root->left)
    1083          257 :     resolve_common_blocks (common_root->left);
    1084         1977 :   if (common_root->right)
    1085          273 :     resolve_common_blocks (common_root->right);
    1086              : 
    1087         1977 :   resolve_common_vars (common_root->n.common, true);
    1088              : 
    1089              :   /* The common name is a global name - in Fortran 2003 also if it has a
    1090              :      C binding name, since Fortran 2008 only the C binding name is a global
    1091              :      identifier.  */
    1092         1977 :   if (!common_root->n.common->binding_label
    1093         1977 :       || gfc_notification_std (GFC_STD_F2008))
    1094              :     {
    1095         3810 :       gsym = gfc_find_gsymbol (gfc_gsym_root,
    1096         1905 :                                common_root->n.common->name);
    1097              : 
    1098          820 :       if (gsym && gfc_notification_std (GFC_STD_F2008)
    1099           14 :           && gsym->type == GSYM_COMMON
    1100         1918 :           && ((common_root->n.common->binding_label
    1101            6 :                && (!gsym->binding_label
    1102            0 :                    || strcmp (common_root->n.common->binding_label,
    1103              :                               gsym->binding_label) != 0))
    1104            7 :               || (!common_root->n.common->binding_label
    1105            7 :                   && gsym->binding_label)))
    1106              :         {
    1107            6 :           gfc_error ("In Fortran 2003 COMMON %qs block at %L is a global "
    1108              :                      "identifier and must thus have the same binding name "
    1109              :                      "as the same-named COMMON block at %L: %s vs %s",
    1110            6 :                      common_root->n.common->name, &common_root->n.common->where,
    1111              :                      &gsym->where,
    1112              :                      common_root->n.common->binding_label
    1113              :                      ? common_root->n.common->binding_label : "(blank)",
    1114            6 :                      gsym->binding_label ? gsym->binding_label : "(blank)");
    1115            6 :           return;
    1116              :         }
    1117              : 
    1118         1899 :       if (gsym && gsym->type != GSYM_COMMON
    1119            1 :           && !common_root->n.common->binding_label)
    1120              :         {
    1121            0 :           gfc_error ("COMMON block %qs at %L uses the same global identifier "
    1122              :                      "as entity at %L",
    1123            0 :                      common_root->n.common->name, &common_root->n.common->where,
    1124              :                      &gsym->where);
    1125            0 :           return;
    1126              :         }
    1127          814 :       if (gsym && gsym->type != GSYM_COMMON)
    1128              :         {
    1129            1 :           gfc_error ("Fortran 2008: COMMON block %qs with binding label at "
    1130              :                      "%L sharing the identifier with global non-COMMON-block "
    1131            1 :                      "entity at %L", common_root->n.common->name,
    1132            1 :                      &common_root->n.common->where, &gsym->where);
    1133            1 :           return;
    1134              :         }
    1135         1085 :       if (!gsym)
    1136              :         {
    1137         1085 :           gsym = gfc_get_gsymbol (common_root->n.common->name, false);
    1138         1085 :           gsym->type = GSYM_COMMON;
    1139         1085 :           gsym->where = common_root->n.common->where;
    1140         1085 :           gsym->defined = 1;
    1141              :         }
    1142         1898 :       gsym->used = 1;
    1143              :     }
    1144              : 
    1145         1970 :   if (common_root->n.common->binding_label)
    1146              :     {
    1147           76 :       gsym = gfc_find_gsymbol (gfc_gsym_root,
    1148              :                                common_root->n.common->binding_label);
    1149           76 :       if (gsym && gsym->type != GSYM_COMMON)
    1150              :         {
    1151            1 :           gfc_error ("COMMON block at %L with binding label %qs uses the same "
    1152              :                      "global identifier as entity at %L",
    1153              :                      &common_root->n.common->where,
    1154            1 :                      common_root->n.common->binding_label, &gsym->where);
    1155            1 :           return;
    1156              :         }
    1157           57 :       if (!gsym)
    1158              :         {
    1159           57 :           gsym = gfc_get_gsymbol (common_root->n.common->binding_label, true);
    1160           57 :           gsym->type = GSYM_COMMON;
    1161           57 :           gsym->where = common_root->n.common->where;
    1162           57 :           gsym->defined = 1;
    1163              :         }
    1164           75 :       gsym->used = 1;
    1165              :     }
    1166              : 
    1167         1969 :   gfc_find_symbol (common_root->name, gfc_current_ns, 0, &sym);
    1168         1969 :   if (sym == NULL)
    1169              :     return;
    1170              : 
    1171          122 :   if (sym->attr.flavor == FL_PARAMETER)
    1172            2 :     gfc_error ("COMMON block %qs at %L is used as PARAMETER at %L",
    1173            2 :                sym->name, &common_root->n.common->where, &sym->declared_at);
    1174              : 
    1175          122 :   if (sym->attr.external)
    1176            1 :     gfc_error ("COMMON block %qs at %L cannot have the EXTERNAL attribute",
    1177            1 :                sym->name, &common_root->n.common->where);
    1178              : 
    1179          122 :   if (sym->attr.intrinsic)
    1180            2 :     gfc_error ("COMMON block %qs at %L is also an intrinsic procedure",
    1181            2 :                sym->name, &common_root->n.common->where);
    1182          120 :   else if (sym->attr.result
    1183          120 :            || gfc_is_function_return_value (sym, gfc_current_ns))
    1184            1 :     gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
    1185              :                     "that is also a function result", sym->name,
    1186            1 :                     &common_root->n.common->where);
    1187          119 :   else if (sym->attr.flavor == FL_PROCEDURE && sym->attr.proc != PROC_INTERNAL
    1188            5 :            && sym->attr.proc != PROC_ST_FUNCTION)
    1189            3 :     gfc_notify_std (GFC_STD_F2003, "COMMON block %qs at %L "
    1190              :                     "that is also a global procedure", sym->name,
    1191            3 :                     &common_root->n.common->where);
    1192              : }
    1193              : 
    1194              : 
    1195              : /* Resolve contained function types.  Because contained functions can call one
    1196              :    another, they have to be worked out before any of the contained procedures
    1197              :    can be resolved.
    1198              : 
    1199              :    The good news is that if a function doesn't already have a type, the only
    1200              :    way it can get one is through an IMPLICIT type or a RESULT variable, because
    1201              :    by definition contained functions are contained namespace they're contained
    1202              :    in, not in a sibling or parent namespace.  */
    1203              : 
    1204              : static void
    1205       362366 : resolve_contained_functions (gfc_namespace *ns)
    1206              : {
    1207       362366 :   gfc_namespace *child;
    1208       362366 :   gfc_entry_list *el;
    1209              : 
    1210       362366 :   resolve_formal_arglists (ns);
    1211              : 
    1212       400066 :   for (child = ns->contained; child; child = child->sibling)
    1213              :     {
    1214              :       /* Resolve alternate entry points first.  */
    1215        37700 :       resolve_entries (child);
    1216              : 
    1217              :       /* Then check function return types.  */
    1218        37700 :       resolve_contained_fntype (child->proc_name, child);
    1219        38207 :       for (el = child->entries; el; el = el->next)
    1220          507 :         resolve_contained_fntype (el->sym, child);
    1221              :     }
    1222       362366 : }
    1223              : 
    1224              : 
    1225              : 
    1226              : /* A Parameterized Derived Type constructor must contain values for
    1227              :    the PDT KIND parameters or they must have a default initializer.
    1228              :    Go through the constructor picking out the KIND expressions,
    1229              :    storing them in 'param_list' and then call gfc_get_pdt_instance
    1230              :    to obtain the PDT instance.  */
    1231              : 
    1232              : static gfc_actual_arglist *param_list, *param_tail, *param;
    1233              : 
    1234              : static bool
    1235          308 : get_pdt_spec_expr (gfc_component *c, gfc_expr *expr)
    1236              : {
    1237          308 :   param = gfc_get_actual_arglist ();
    1238          308 :   if (!param_list)
    1239          252 :     param_list = param_tail = param;
    1240              :   else
    1241              :     {
    1242           56 :       param_tail->next = param;
    1243           56 :       param_tail = param_tail->next;
    1244              :     }
    1245              : 
    1246          308 :   param_tail->name = c->name;
    1247          308 :   if (expr)
    1248          308 :     param_tail->expr = gfc_copy_expr (expr);
    1249            0 :   else if (c->initializer)
    1250            0 :     param_tail->expr = gfc_copy_expr (c->initializer);
    1251              :   else
    1252              :     {
    1253            0 :       param_tail->spec_type = SPEC_ASSUMED;
    1254            0 :       if (c->attr.pdt_kind)
    1255              :         {
    1256            0 :           gfc_error ("The KIND parameter %qs in the PDT constructor "
    1257              :                      "at %C has no value", param->name);
    1258            0 :           return false;
    1259              :         }
    1260              :     }
    1261              : 
    1262              :   return true;
    1263              : }
    1264              : 
    1265              : static bool
    1266          288 : get_pdt_constructor (gfc_expr *expr, gfc_constructor **constr,
    1267              :                      gfc_symbol *derived)
    1268              : {
    1269          288 :   gfc_constructor *cons = NULL;
    1270          288 :   gfc_component *comp;
    1271          288 :   bool t = true;
    1272              : 
    1273          288 :   if (expr && expr->expr_type == EXPR_STRUCTURE)
    1274          252 :     cons = gfc_constructor_first (expr->value.constructor);
    1275           36 :   else if (constr)
    1276           36 :     cons = *constr;
    1277          288 :   gcc_assert (cons);
    1278              : 
    1279          288 :   comp = derived->components;
    1280              : 
    1281          880 :   for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
    1282              :     {
    1283          592 :       if (cons->expr
    1284          592 :           && cons->expr->expr_type == EXPR_STRUCTURE
    1285            0 :           && comp->ts.type == BT_DERIVED)
    1286              :         {
    1287            0 :           t = get_pdt_constructor (cons->expr, NULL, comp->ts.u.derived);
    1288            0 :           if (!t)
    1289              :             return t;
    1290              :         }
    1291          592 :       else if (comp->ts.type == BT_DERIVED)
    1292              :         {
    1293           36 :           t = get_pdt_constructor (NULL, &cons, comp->ts.u.derived);
    1294           36 :           if (!t)
    1295              :             return t;
    1296              :         }
    1297          556 :      else if ((comp->attr.pdt_kind || comp->attr.pdt_len)
    1298          308 :                && derived->attr.pdt_template)
    1299              :         {
    1300          308 :           t = get_pdt_spec_expr (comp, cons->expr);
    1301          308 :           if (!t)
    1302              :             return t;
    1303              :         }
    1304              :     }
    1305              :   return t;
    1306              : }
    1307              : 
    1308              : 
    1309              : static bool resolve_fl_derived0 (gfc_symbol *sym);
    1310              : static bool resolve_fl_struct (gfc_symbol *sym);
    1311              : 
    1312              : 
    1313              : /* Resolve all of the elements of a structure constructor and make sure that
    1314              :    the types are correct. The 'init' flag indicates that the given
    1315              :    constructor is an initializer.  */
    1316              : 
    1317              : static bool
    1318        64436 : resolve_structure_cons (gfc_expr *expr, int init)
    1319              : {
    1320        64436 :   gfc_constructor *cons;
    1321        64436 :   gfc_component *comp;
    1322        64436 :   bool t;
    1323        64436 :   symbol_attribute a;
    1324              : 
    1325        64436 :   t = true;
    1326              : 
    1327        64436 :   if (expr->ts.type == BT_DERIVED || expr->ts.type == BT_UNION)
    1328              :     {
    1329        61408 :       if (expr->ts.u.derived->attr.flavor == FL_DERIVED)
    1330        61258 :         resolve_fl_derived0 (expr->ts.u.derived);
    1331              :       else
    1332          150 :         resolve_fl_struct (expr->ts.u.derived);
    1333              : 
    1334              :       /* If this is a Parameterized Derived Type template, find the
    1335              :          instance corresponding to the PDT kind parameters.  */
    1336        61408 :       if (expr->ts.u.derived->attr.pdt_template)
    1337              :         {
    1338          252 :           param_list = NULL;
    1339          252 :           t = get_pdt_constructor (expr, NULL, expr->ts.u.derived);
    1340          252 :           if (!t)
    1341              :             return t;
    1342          252 :           gfc_get_pdt_instance (param_list, &expr->ts.u.derived, NULL);
    1343              : 
    1344          252 :           expr->param_list = gfc_copy_actual_arglist (param_list);
    1345              : 
    1346          252 :           if (param_list)
    1347          252 :             gfc_free_actual_arglist (param_list);
    1348              : 
    1349          252 :           if (!expr->ts.u.derived->attr.pdt_type)
    1350              :             return false;
    1351              :         }
    1352              :     }
    1353              : 
    1354              :   /* A constructor may have references if it is the result of substituting a
    1355              :      parameter variable.  In this case we just pull out the component we
    1356              :      want.  */
    1357        64436 :   if (expr->ref)
    1358          160 :     comp = expr->ref->u.c.sym->components;
    1359        64276 :   else if ((expr->ts.type == BT_DERIVED || expr->ts.type == BT_CLASS
    1360              :             || expr->ts.type == BT_UNION)
    1361        64274 :            && expr->ts.u.derived)
    1362        64274 :     comp = expr->ts.u.derived->components;
    1363              :   else
    1364              :     return false;
    1365              : 
    1366        64434 :   cons = gfc_constructor_first (expr->value.constructor);
    1367              : 
    1368       280254 :   for (; comp && cons; comp = comp->next, cons = gfc_constructor_next (cons))
    1369              :     {
    1370       151388 :       int rank;
    1371              : 
    1372       151388 :       if (!cons->expr)
    1373        10197 :         continue;
    1374              : 
    1375              :       /* Unions use an EXPR_NULL contrived expression to tell the translation
    1376              :          phase to generate an initializer of the appropriate length.
    1377              :          Ignore it here.  */
    1378       141191 :       if (cons->expr->ts.type == BT_UNION && cons->expr->expr_type == EXPR_NULL)
    1379           15 :         continue;
    1380              : 
    1381       141176 :       if (!gfc_resolve_expr (cons->expr))
    1382              :         {
    1383            0 :           t = false;
    1384            0 :           continue;
    1385              :         }
    1386              : 
    1387       141176 :       rank = comp->as ? comp->as->rank : 0;
    1388       141176 :       if (comp->ts.type == BT_CLASS
    1389         1861 :           && !comp->ts.u.derived->attr.unlimited_polymorphic
    1390         1860 :           && CLASS_DATA (comp)->as)
    1391          561 :         rank = CLASS_DATA (comp)->as->rank;
    1392              : 
    1393       141176 :       if (comp->ts.type == BT_CLASS && cons->expr->ts.type != BT_CLASS)
    1394          234 :           gfc_find_vtab (&cons->expr->ts);
    1395              : 
    1396       141176 :       if (cons->expr->expr_type != EXPR_NULL && rank != cons->expr->rank
    1397          527 :           && (comp->attr.allocatable || comp->attr.pointer || cons->expr->rank))
    1398              :         {
    1399            4 :           gfc_error ("The rank of the element in the structure "
    1400              :                      "constructor at %L does not match that of the "
    1401              :                      "component (%d/%d)", &cons->expr->where,
    1402              :                      cons->expr->rank, rank);
    1403            4 :           t = false;
    1404              :         }
    1405              : 
    1406              :       /* If we don't have the right type, try to convert it.  */
    1407              : 
    1408       246537 :       if (!comp->attr.proc_pointer &&
    1409       105361 :           !gfc_compare_types (&cons->expr->ts, &comp->ts))
    1410              :         {
    1411        12926 :           if (strcmp (comp->name, "_extends") == 0)
    1412              :             {
    1413              :               /* Can afford to be brutal with the _extends initializer.
    1414              :                  The derived type can get lost because it is PRIVATE
    1415              :                  but it is not usage constrained by the standard.  */
    1416         9501 :               cons->expr->ts = comp->ts;
    1417              :             }
    1418         3425 :           else if (comp->attr.pointer && cons->expr->ts.type != BT_UNKNOWN)
    1419              :             {
    1420            2 :               gfc_error ("The element in the structure constructor at %L, "
    1421              :                          "for pointer component %qs, is %s but should be %s",
    1422            2 :                          &cons->expr->where, comp->name,
    1423            2 :                          gfc_basic_typename (cons->expr->ts.type),
    1424              :                          gfc_basic_typename (comp->ts.type));
    1425            2 :               t = false;
    1426              :             }
    1427         3423 :           else if (!UNLIMITED_POLY (comp))
    1428              :             {
    1429         3360 :               bool t2 = gfc_convert_type (cons->expr, &comp->ts, 1);
    1430         3360 :               if (t)
    1431       141176 :                 t = t2;
    1432              :             }
    1433              :         }
    1434              : 
    1435              :       /* For strings, the length of the constructor should be the same as
    1436              :          the one of the structure, ensure this if the lengths are known at
    1437              :          compile time and when we are dealing with PARAMETER or structure
    1438              :          constructors.  */
    1439       141176 :       if (cons->expr->ts.type == BT_CHARACTER
    1440         3944 :           && comp->ts.type == BT_CHARACTER
    1441         3918 :           && comp->ts.u.cl && comp->ts.u.cl->length
    1442         2528 :           && comp->ts.u.cl->length->expr_type == EXPR_CONSTANT
    1443         2493 :           && cons->expr->ts.u.cl && cons->expr->ts.u.cl->length
    1444          938 :           && cons->expr->ts.u.cl->length->expr_type == EXPR_CONSTANT
    1445          938 :           && cons->expr->ts.u.cl->length->ts.type == BT_INTEGER
    1446          938 :           && comp->ts.u.cl->length->ts.type == BT_INTEGER
    1447          938 :           && mpz_cmp (cons->expr->ts.u.cl->length->value.integer,
    1448          938 :                       comp->ts.u.cl->length->value.integer) != 0)
    1449              :         {
    1450           11 :           if (comp->attr.pointer)
    1451              :             {
    1452            3 :               HOST_WIDE_INT la, lb;
    1453            3 :               la = gfc_mpz_get_hwi (comp->ts.u.cl->length->value.integer);
    1454            3 :               lb = gfc_mpz_get_hwi (cons->expr->ts.u.cl->length->value.integer);
    1455            3 :               gfc_error ("Unequal character lengths (%wd/%wd) for pointer "
    1456              :                          "component %qs in constructor at %L",
    1457            3 :                          la, lb, comp->name, &cons->expr->where);
    1458            3 :               t = false;
    1459              :             }
    1460              : 
    1461           11 :           if (cons->expr->expr_type == EXPR_VARIABLE
    1462            4 :               && cons->expr->rank != 0
    1463            2 :               && cons->expr->symtree->n.sym->attr.flavor == FL_PARAMETER)
    1464              :             {
    1465              :               /* Wrap the parameter in an array constructor (EXPR_ARRAY)
    1466              :                  to make use of the gfc_resolve_character_array_constructor
    1467              :                  machinery.  The expression is later simplified away to
    1468              :                  an array of string literals.  */
    1469            1 :               gfc_expr *para = cons->expr;
    1470            1 :               cons->expr = gfc_get_expr ();
    1471            1 :               cons->expr->ts = para->ts;
    1472            1 :               cons->expr->where = para->where;
    1473            1 :               cons->expr->expr_type = EXPR_ARRAY;
    1474            1 :               cons->expr->rank = para->rank;
    1475            1 :               cons->expr->corank = para->corank;
    1476            1 :               cons->expr->shape = gfc_copy_shape (para->shape, para->rank);
    1477            1 :               gfc_constructor_append_expr (&cons->expr->value.constructor,
    1478            1 :                                            para, &cons->expr->where);
    1479              :             }
    1480              : 
    1481           11 :           if (cons->expr->expr_type == EXPR_ARRAY)
    1482              :             {
    1483              :               /* Rely on the cleanup of the namespace to deal correctly with
    1484              :                  the old charlen.  (There was a block here that attempted to
    1485              :                  remove the charlen but broke the chain in so doing.)  */
    1486            5 :               cons->expr->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
    1487            5 :               cons->expr->ts.u.cl->length_from_typespec = true;
    1488            5 :               cons->expr->ts.u.cl->length = gfc_copy_expr (comp->ts.u.cl->length);
    1489            5 :               gfc_resolve_character_array_constructor (cons->expr);
    1490              :             }
    1491              :         }
    1492              : 
    1493       141176 :       if (cons->expr->expr_type == EXPR_NULL
    1494        42681 :           && !(comp->attr.pointer || comp->attr.allocatable
    1495        21252 :                || comp->attr.proc_pointer || comp->ts.f90_type == BT_VOID
    1496         1196 :                || (comp->ts.type == BT_CLASS
    1497         1194 :                    && (CLASS_DATA (comp)->attr.class_pointer
    1498          977 :                        || CLASS_DATA (comp)->attr.allocatable))))
    1499              :         {
    1500            2 :           t = false;
    1501            2 :           gfc_error ("The NULL in the structure constructor at %L is "
    1502              :                      "being applied to component %qs, which is neither "
    1503              :                      "a POINTER nor ALLOCATABLE", &cons->expr->where,
    1504              :                      comp->name);
    1505              :         }
    1506              : 
    1507       141176 :       if (comp->attr.proc_pointer && comp->ts.interface)
    1508              :         {
    1509              :           /* Check procedure pointer interface.  */
    1510        16098 :           gfc_symbol *s2 = NULL;
    1511        16098 :           gfc_component *c2;
    1512        16098 :           const char *name;
    1513        16098 :           char err[200];
    1514              : 
    1515        16098 :           c2 = gfc_get_proc_ptr_comp (cons->expr);
    1516        16098 :           if (c2)
    1517              :             {
    1518           12 :               s2 = c2->ts.interface;
    1519           12 :               name = c2->name;
    1520              :             }
    1521        16086 :           else if (cons->expr->expr_type == EXPR_FUNCTION)
    1522              :             {
    1523            0 :               s2 = cons->expr->symtree->n.sym->result;
    1524            0 :               name = cons->expr->symtree->n.sym->result->name;
    1525              :             }
    1526        16086 :           else if (cons->expr->expr_type != EXPR_NULL)
    1527              :             {
    1528        15654 :               s2 = cons->expr->symtree->n.sym;
    1529        15654 :               name = cons->expr->symtree->n.sym->name;
    1530              :             }
    1531              : 
    1532        15666 :           if (s2 && !gfc_compare_interfaces (comp->ts.interface, s2, name, 0, 1,
    1533              :                                              err, sizeof (err), NULL, NULL))
    1534              :             {
    1535            2 :               gfc_error_opt (0, "Interface mismatch for procedure-pointer "
    1536              :                              "component %qs in structure constructor at %L:"
    1537            2 :                              " %s", comp->name, &cons->expr->where, err);
    1538            2 :               return false;
    1539              :             }
    1540              :         }
    1541              : 
    1542              :       /* Validate shape, except for dynamic or PDT arrays.  */
    1543       141174 :       if (cons->expr->expr_type == EXPR_ARRAY && rank == cons->expr->rank
    1544         2270 :           && comp->as && !comp->attr.allocatable && !comp->attr.pointer
    1545         1526 :           && !comp->attr.pdt_array)
    1546              :         {
    1547         1279 :           mpz_t len;
    1548         1279 :           mpz_init (len);
    1549         3930 :           for (int n = 0; n < rank; n++)
    1550              :             {
    1551         1377 :               if (comp->as->upper[n]->expr_type != EXPR_CONSTANT
    1552         1372 :                   || comp->as->lower[n]->expr_type != EXPR_CONSTANT)
    1553              :                 {
    1554            5 :                   gfc_error ("Bad array spec of component %qs referenced in "
    1555              :                              "structure constructor at %L",
    1556            5 :                              comp->name, &cons->expr->where);
    1557            5 :                   t = false;
    1558            5 :                   break;
    1559         1372 :                 };
    1560         1372 :               if (cons->expr->shape == NULL)
    1561           12 :                 continue;
    1562         1360 :               mpz_set_ui (len, 1);
    1563         1360 :               mpz_add (len, len, comp->as->upper[n]->value.integer);
    1564         1360 :               mpz_sub (len, len, comp->as->lower[n]->value.integer);
    1565         1360 :               if (mpz_cmp (cons->expr->shape[n], len) != 0)
    1566              :                 {
    1567            9 :                   gfc_error ("The shape of component %qs in the structure "
    1568              :                              "constructor at %L differs from the shape of the "
    1569              :                              "declared component for dimension %d (%ld/%ld)",
    1570              :                              comp->name, &cons->expr->where, n+1,
    1571              :                              mpz_get_si (cons->expr->shape[n]),
    1572              :                              mpz_get_si (len));
    1573            9 :                   t = false;
    1574              :                 }
    1575              :             }
    1576         1279 :           mpz_clear (len);
    1577              :         }
    1578              : 
    1579       141174 :       if (!comp->attr.pointer || comp->attr.proc_pointer
    1580        22855 :           || cons->expr->expr_type == EXPR_NULL)
    1581       130631 :         continue;
    1582              : 
    1583        10543 :       a = gfc_expr_attr (cons->expr);
    1584              : 
    1585        10543 :       if (!a.pointer && !a.target)
    1586              :         {
    1587            1 :           t = false;
    1588            1 :           gfc_error ("The element in the structure constructor at %L, "
    1589              :                      "for pointer component %qs should be a POINTER or "
    1590            1 :                      "a TARGET", &cons->expr->where, comp->name);
    1591              :         }
    1592              : 
    1593        10543 :       if (init)
    1594              :         {
    1595              :           /* F08:C461. Additional checks for pointer initialization.  */
    1596        10475 :           if (a.allocatable)
    1597              :             {
    1598            0 :               t = false;
    1599            0 :               gfc_error ("Pointer initialization target at %L "
    1600            0 :                          "must not be ALLOCATABLE", &cons->expr->where);
    1601              :             }
    1602        10475 :           if (!a.save)
    1603              :             {
    1604            0 :               t = false;
    1605            0 :               gfc_error ("Pointer initialization target at %L "
    1606            0 :                          "must have the SAVE attribute", &cons->expr->where);
    1607              :             }
    1608              :         }
    1609              : 
    1610              :       /* F2023:C770: A designator that is an initial-data-target shall ...
    1611              :          not have a vector subscript.  */
    1612        10543 :       if (comp->attr.pointer && (a.pointer || a.target)
    1613        21085 :           && gfc_has_vector_index (cons->expr))
    1614              :         {
    1615            1 :           gfc_error ("Pointer assignment target at %L has a vector subscript",
    1616            1 :                      &cons->expr->where);
    1617            1 :           t = false;
    1618              :         }
    1619              : 
    1620              :       /* F2003, C1272 (3).  */
    1621        10543 :       bool impure = cons->expr->expr_type == EXPR_VARIABLE
    1622        10543 :                     && (gfc_impure_variable (cons->expr->symtree->n.sym)
    1623        10506 :                         || gfc_is_coindexed (cons->expr));
    1624           34 :       if (impure && gfc_pure (NULL))
    1625              :         {
    1626            1 :           t = false;
    1627            1 :           gfc_error ("Invalid expression in the structure constructor for "
    1628              :                      "pointer component %qs at %L in PURE procedure",
    1629            1 :                      comp->name, &cons->expr->where);
    1630              :         }
    1631              : 
    1632        10543 :       if (impure)
    1633           34 :         gfc_unset_implicit_pure (NULL);
    1634              :     }
    1635              : 
    1636              :   return t;
    1637              : }
    1638              : 
    1639              : 
    1640              : /****************** Expression name resolution ******************/
    1641              : 
    1642              : /* Returns 0 if a symbol was not declared with a type or
    1643              :    attribute declaration statement, nonzero otherwise.  */
    1644              : 
    1645              : static bool
    1646       753130 : was_declared (gfc_symbol *sym)
    1647              : {
    1648       753130 :   symbol_attribute a;
    1649              : 
    1650       753130 :   a = sym->attr;
    1651              : 
    1652       753130 :   if (!a.implicit_type && sym->ts.type != BT_UNKNOWN)
    1653              :     return 1;
    1654              : 
    1655       637885 :   if (a.allocatable || a.dimension || a.dummy || a.external || a.intrinsic
    1656       629023 :       || a.optional || a.pointer || a.save || a.target || a.volatile_
    1657       629021 :       || a.value || a.access != ACCESS_UNKNOWN || a.intent != INTENT_UNKNOWN
    1658       628967 :       || a.asynchronous || a.codimension
    1659       628967 :       || (a.subroutine && a.proc != PROC_UNKNOWN) || a.result)
    1660        67132 :     return 1;
    1661              : 
    1662              :   return 0;
    1663              : }
    1664              : 
    1665              : 
    1666              : /* Determine if a symbol is generic or not.  */
    1667              : 
    1668              : static int
    1669       418665 : generic_sym (gfc_symbol *sym)
    1670              : {
    1671       418665 :   gfc_symbol *s;
    1672              : 
    1673       418665 :   if (sym->attr.generic ||
    1674       388754 :       (sym->attr.intrinsic && gfc_generic_intrinsic (sym->name)))
    1675              :     return 1;
    1676              : 
    1677       387640 :   if (was_declared (sym) || sym->ns->parent == NULL)
    1678              :     return 0;
    1679              : 
    1680        79480 :   gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
    1681              : 
    1682        79480 :   if (s != NULL)
    1683              :     {
    1684          163 :       if (s == sym)
    1685              :         return 0;
    1686              :       else
    1687          162 :         return generic_sym (s);
    1688              :     }
    1689              : 
    1690              :   return 0;
    1691              : }
    1692              : 
    1693              : 
    1694              : /* Determine if a symbol is specific or not.  */
    1695              : 
    1696              : static int
    1697       387552 : specific_sym (gfc_symbol *sym)
    1698              : {
    1699       387552 :   gfc_symbol *s;
    1700              : 
    1701       387552 :   if (sym->attr.if_source == IFSRC_IFBODY
    1702       376115 :       || sym->attr.proc == PROC_MODULE
    1703       347203 :       || sym->attr.proc == PROC_INTERNAL
    1704       298635 :       || sym->attr.proc == PROC_ST_FUNCTION
    1705       298345 :       || (sym->attr.intrinsic && gfc_specific_intrinsic (sym->name))
    1706       685166 :       || sym->attr.external)
    1707              :     return 1;
    1708              : 
    1709       295205 :   if (was_declared (sym) || sym->ns->parent == NULL)
    1710              :     return 0;
    1711              : 
    1712        79378 :   gfc_find_symbol (sym->name, sym->ns->parent, 1, &s);
    1713              : 
    1714        79378 :   return (s == NULL) ? 0 : specific_sym (s);
    1715              : }
    1716              : 
    1717              : 
    1718              : /* Figure out if the procedure is specific, generic or unknown.  */
    1719              : 
    1720              : enum proc_type
    1721              : { PTYPE_GENERIC = 1, PTYPE_SPECIFIC, PTYPE_UNKNOWN };
    1722              : 
    1723              : static proc_type
    1724       418354 : procedure_kind (gfc_symbol *sym)
    1725              : {
    1726       418354 :   if (generic_sym (sym))
    1727              :     return PTYPE_GENERIC;
    1728              : 
    1729       387475 :   if (specific_sym (sym))
    1730        92347 :     return PTYPE_SPECIFIC;
    1731              : 
    1732              :   return PTYPE_UNKNOWN;
    1733              : }
    1734              : 
    1735              : /* Check references to assumed size arrays.  The flag need_full_assumed_size
    1736              :    is nonzero when matching actual arguments.  */
    1737              : 
    1738              : static int need_full_assumed_size = 0;
    1739              : 
    1740              : static bool
    1741      1443356 : check_assumed_size_reference (gfc_symbol *sym, gfc_expr *e)
    1742              : {
    1743      1443356 :   if (need_full_assumed_size || !(sym->as && sym->as->type == AS_ASSUMED_SIZE))
    1744              :       return false;
    1745              : 
    1746              :   /* FIXME: The comparison "e->ref->u.ar.type == AR_FULL" is wrong.
    1747              :      What should it be?  */
    1748         3812 :   if (e->ref
    1749         3810 :       && e->ref->u.ar.as
    1750         3809 :       && (e->ref->u.ar.end[e->ref->u.ar.as->rank - 1] == NULL)
    1751         3302 :       && (e->ref->u.ar.as->type == AS_ASSUMED_SIZE)
    1752         3302 :       && (e->ref->u.ar.type == AR_FULL))
    1753              :     {
    1754           25 :       gfc_error ("The upper bound in the last dimension must "
    1755              :                  "appear in the reference to the assumed size "
    1756              :                  "array %qs at %L", sym->name, &e->where);
    1757           25 :       return true;
    1758              :     }
    1759              :   return false;
    1760              : }
    1761              : 
    1762              : 
    1763              : /* Look for bad assumed size array references in argument expressions
    1764              :   of elemental and array valued intrinsic procedures.  Since this is
    1765              :   called from procedure resolution functions, it only recurses at
    1766              :   operators.  */
    1767              : 
    1768              : static bool
    1769       232887 : resolve_assumed_size_actual (gfc_expr *e)
    1770              : {
    1771       232887 :   if (e == NULL)
    1772              :    return false;
    1773              : 
    1774       232320 :   switch (e->expr_type)
    1775              :     {
    1776       111933 :     case EXPR_VARIABLE:
    1777       111933 :       if (e->symtree && check_assumed_size_reference (e->symtree->n.sym, e))
    1778              :         return true;
    1779              :       break;
    1780              : 
    1781        49448 :     case EXPR_OP:
    1782        49448 :       if (resolve_assumed_size_actual (e->value.op.op1)
    1783        49448 :           || resolve_assumed_size_actual (e->value.op.op2))
    1784            0 :         return true;
    1785              :       break;
    1786              : 
    1787              :     default:
    1788              :       break;
    1789              :     }
    1790              :   return false;
    1791              : }
    1792              : 
    1793              : 
    1794              : /* Check a generic procedure, passed as an actual argument, to see if
    1795              :    there is a matching specific name.  If none, it is an error, and if
    1796              :    more than one, the reference is ambiguous.  */
    1797              : static int
    1798            8 : count_specific_procs (gfc_expr *e)
    1799              : {
    1800            8 :   int n;
    1801            8 :   gfc_interface *p;
    1802            8 :   gfc_symbol *sym;
    1803              : 
    1804            8 :   n = 0;
    1805            8 :   sym = e->symtree->n.sym;
    1806              : 
    1807           22 :   for (p = sym->generic; p; p = p->next)
    1808           14 :     if (strcmp (sym->name, p->sym->name) == 0)
    1809              :       {
    1810            8 :         e->symtree = gfc_find_symtree (p->sym->ns->sym_root,
    1811              :                                        sym->name);
    1812            8 :         n++;
    1813              :       }
    1814              : 
    1815            8 :   if (n > 1)
    1816            1 :     gfc_error ("%qs at %L is ambiguous", e->symtree->n.sym->name,
    1817              :                &e->where);
    1818              : 
    1819            8 :   if (n == 0)
    1820            1 :     gfc_error ("GENERIC procedure %qs is not allowed as an actual "
    1821              :                "argument at %L", sym->name, &e->where);
    1822              : 
    1823            8 :   return n;
    1824              : }
    1825              : 
    1826              : 
    1827              : /* See if a call to sym could possibly be a not allowed RECURSION because of
    1828              :    a missing RECURSIVE declaration.  This means that either sym is the current
    1829              :    context itself, or sym is the parent of a contained procedure calling its
    1830              :    non-RECURSIVE containing procedure.
    1831              :    This also works if sym is an ENTRY.  */
    1832              : 
    1833              : static bool
    1834       154621 : is_illegal_recursion (gfc_symbol* sym, gfc_namespace* context)
    1835              : {
    1836       154621 :   gfc_symbol* proc_sym;
    1837       154621 :   gfc_symbol* context_proc;
    1838       154621 :   gfc_namespace* real_context;
    1839              : 
    1840       154621 :   if (sym->attr.flavor == FL_PROGRAM
    1841              :       || gfc_fl_struct (sym->attr.flavor))
    1842              :     return false;
    1843              : 
    1844              :   /* If we've got an ENTRY, find real procedure.  */
    1845       154620 :   if (sym->attr.entry && sym->ns->entries)
    1846           45 :     proc_sym = sym->ns->entries->sym;
    1847              :   else
    1848              :     proc_sym = sym;
    1849              : 
    1850              :   /* If sym is RECURSIVE, all is well of course.  */
    1851       154620 :   if (proc_sym->attr.recursive || flag_recursive)
    1852              :     return false;
    1853              : 
    1854              :   /* Find the context procedure's "real" symbol if it has entries.
    1855              :      We look for a procedure symbol, so recurse on the parents if we don't
    1856              :      find one (like in case of a BLOCK construct).  */
    1857         1995 :   for (real_context = context; ; real_context = real_context->parent)
    1858              :     {
    1859              :       /* We should find something, eventually!  */
    1860       130961 :       gcc_assert (real_context);
    1861              : 
    1862       130961 :       context_proc = (real_context->entries ? real_context->entries->sym
    1863              :                                             : real_context->proc_name);
    1864              : 
    1865              :       /* In some special cases, there may not be a proc_name, like for this
    1866              :          invalid code:
    1867              :          real(bad_kind()) function foo () ...
    1868              :          when checking the call to bad_kind ().
    1869              :          In these cases, we simply return here and assume that the
    1870              :          call is ok.  */
    1871       130961 :       if (!context_proc)
    1872              :         return false;
    1873              : 
    1874       130697 :       if (context_proc->attr.flavor != FL_LABEL)
    1875              :         break;
    1876              :     }
    1877              : 
    1878              :   /* A call from sym's body to itself is recursion, of course.  */
    1879       128702 :   if (context_proc == proc_sym)
    1880              :     return true;
    1881              : 
    1882              :   /* The same is true if context is a contained procedure and sym the
    1883              :      containing one.  */
    1884       128687 :   if (context_proc->attr.contained)
    1885              :     {
    1886        21781 :       gfc_symbol* parent_proc;
    1887              : 
    1888        21781 :       gcc_assert (context->parent);
    1889        21781 :       parent_proc = (context->parent->entries ? context->parent->entries->sym
    1890              :                                               : context->parent->proc_name);
    1891              : 
    1892        21781 :       if (parent_proc == proc_sym)
    1893            9 :         return true;
    1894              :     }
    1895              : 
    1896              :   return false;
    1897              : }
    1898              : 
    1899              : 
    1900              : /* Resolve an intrinsic procedure: Set its function/subroutine attribute,
    1901              :    its typespec and formal argument list.  */
    1902              : 
    1903              : bool
    1904        47450 : gfc_resolve_intrinsic (gfc_symbol *sym, locus *loc)
    1905              : {
    1906        47450 :   gfc_intrinsic_sym* isym = NULL;
    1907        47450 :   const char* symstd;
    1908              : 
    1909        47450 :   if (sym->resolve_symbol_called >= 2)
    1910              :     return true;
    1911              : 
    1912        37404 :   sym->resolve_symbol_called = 2;
    1913              : 
    1914              :   /* Already resolved.  */
    1915        37404 :   if (sym->from_intmod && sym->ts.type != BT_UNKNOWN)
    1916              :     return true;
    1917              : 
    1918              :   /* We already know this one is an intrinsic, so we don't call
    1919              :      gfc_is_intrinsic for full checking but rather use gfc_find_function and
    1920              :      gfc_find_subroutine directly to check whether it is a function or
    1921              :      subroutine.  */
    1922              : 
    1923        29330 :   if (sym->intmod_sym_id && sym->attr.subroutine)
    1924              :     {
    1925        12769 :       gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
    1926        12769 :       isym = gfc_intrinsic_subroutine_by_id (id);
    1927        12769 :     }
    1928        16561 :   else if (sym->intmod_sym_id)
    1929              :     {
    1930        12712 :       gfc_isym_id id = gfc_isym_id_by_intmod_sym (sym);
    1931        12712 :       isym = gfc_intrinsic_function_by_id (id);
    1932              :     }
    1933         3849 :   else if (!sym->attr.subroutine)
    1934         3762 :     isym = gfc_find_function (sym->name);
    1935              : 
    1936        29243 :   if (isym && !sym->attr.subroutine)
    1937              :     {
    1938        16429 :       if (sym->ts.type != BT_UNKNOWN && warn_surprising
    1939           24 :           && !sym->attr.implicit_type)
    1940           10 :         gfc_warning (OPT_Wsurprising,
    1941              :                      "Type specified for intrinsic function %qs at %L is"
    1942              :                       " ignored", sym->name, &sym->declared_at);
    1943              : 
    1944        20928 :       if (!sym->attr.function &&
    1945         4499 :           !gfc_add_function(&sym->attr, sym->name, loc))
    1946              :         return false;
    1947              : 
    1948        16429 :       sym->ts = isym->ts;
    1949              :     }
    1950        12901 :   else if (isym || (isym = gfc_find_subroutine (sym->name)))
    1951              :     {
    1952        12898 :       if (sym->ts.type != BT_UNKNOWN && !sym->attr.implicit_type)
    1953              :         {
    1954            1 :           gfc_error ("Intrinsic subroutine %qs at %L shall not have a type"
    1955              :                       " specifier", sym->name, &sym->declared_at);
    1956            1 :           return false;
    1957              :         }
    1958              : 
    1959        12938 :       if (!sym->attr.subroutine &&
    1960           41 :           !gfc_add_subroutine(&sym->attr, sym->name, loc))
    1961              :         return false;
    1962              :     }
    1963              :   else
    1964              :     {
    1965            3 :       gfc_error ("%qs declared INTRINSIC at %L does not exist", sym->name,
    1966              :                  &sym->declared_at);
    1967            3 :       return false;
    1968              :     }
    1969              : 
    1970        29325 :   gfc_copy_formal_args_intr (sym, isym, NULL);
    1971              : 
    1972        29325 :   sym->attr.pure = isym->pure;
    1973        29325 :   sym->attr.elemental = isym->elemental;
    1974              : 
    1975              :   /* Check it is actually available in the standard settings.  */
    1976        29325 :   if (!gfc_check_intrinsic_standard (isym, &symstd, false, sym->declared_at))
    1977              :     {
    1978           31 :       gfc_error ("The intrinsic %qs declared INTRINSIC at %L is not "
    1979              :                  "available in the current standard settings but %s. Use "
    1980              :                  "an appropriate %<-std=*%> option or enable "
    1981              :                  "%<-fall-intrinsics%> in order to use it.",
    1982              :                  sym->name, &sym->declared_at, symstd);
    1983           31 :       return false;
    1984              :     }
    1985              : 
    1986              :   return true;
    1987              : }
    1988              : 
    1989              : 
    1990              : /* Resolve a procedure expression, like passing it to a called procedure or as
    1991              :    RHS for a procedure pointer assignment.  */
    1992              : 
    1993              : static bool
    1994      1344961 : resolve_procedure_expression (gfc_expr* expr)
    1995              : {
    1996      1344961 :   gfc_symbol* sym;
    1997              : 
    1998      1344961 :   if (expr->expr_type != EXPR_VARIABLE)
    1999              :     return true;
    2000      1344944 :   gcc_assert (expr->symtree);
    2001              : 
    2002      1344944 :   sym = expr->symtree->n.sym;
    2003              : 
    2004      1344944 :   if (sym->attr.intrinsic)
    2005         1360 :     gfc_resolve_intrinsic (sym, &expr->where);
    2006              : 
    2007      1344944 :   if (sym->attr.flavor != FL_PROCEDURE
    2008        32620 :       || (sym->attr.function && sym->result == sym))
    2009              :     return true;
    2010              : 
    2011              :    /* A non-RECURSIVE procedure that is used as procedure expression within its
    2012              :      own body is in danger of being called recursively.  */
    2013        17843 :   if (is_illegal_recursion (sym, gfc_current_ns))
    2014              :     {
    2015           10 :       if (sym->attr.use_assoc && expr->symtree->name[0] == '@')
    2016            0 :         gfc_warning (0, "Non-RECURSIVE procedure %qs from module %qs is"
    2017              :                      " possibly calling itself recursively in procedure %qs. "
    2018              :                      " Declare it RECURSIVE or use %<-frecursive%>",
    2019            0 :                      sym->name, sym->module, gfc_current_ns->proc_name->name);
    2020              :       else
    2021           10 :         gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
    2022              :                      " itself recursively.  Declare it RECURSIVE or use"
    2023              :                      " %<-frecursive%>", sym->name, &expr->where);
    2024              :     }
    2025              : 
    2026              :   return true;
    2027              : }
    2028              : 
    2029              : 
    2030              : /* Check that name is not a derived type.  */
    2031              : 
    2032              : static bool
    2033         3434 : is_dt_name (const char *name)
    2034              : {
    2035         3434 :   gfc_symbol *dt_list, *dt_first;
    2036              : 
    2037         3434 :   dt_list = dt_first = gfc_derived_types;
    2038         5888 :   for (; dt_list; dt_list = dt_list->dt_next)
    2039              :     {
    2040         3577 :       if (strcmp(dt_list->name, name) == 0)
    2041              :         return true;
    2042         3574 :       if (dt_first == dt_list->dt_next)
    2043              :         break;
    2044              :     }
    2045              :   return false;
    2046              : }
    2047              : 
    2048              : 
    2049              : /* Resolve an actual argument list.  Most of the time, this is just
    2050              :    resolving the expressions in the list.
    2051              :    The exception is that we sometimes have to decide whether arguments
    2052              :    that look like procedure arguments are really simple variable
    2053              :    references.  */
    2054              : 
    2055              : static bool
    2056       432719 : resolve_actual_arglist (gfc_actual_arglist *arg, procedure_type ptype,
    2057              :                         bool no_formal_args)
    2058              : {
    2059       432719 :   gfc_symbol *sym = NULL;
    2060       432719 :   gfc_symtree *parent_st;
    2061       432719 :   gfc_expr *e;
    2062       432719 :   gfc_component *comp;
    2063       432719 :   int save_need_full_assumed_size;
    2064       432719 :   bool return_value = false;
    2065       432719 :   bool actual_arg_sav = actual_arg, first_actual_arg_sav = first_actual_arg;
    2066              : 
    2067       432719 :   actual_arg = true;
    2068       432719 :   first_actual_arg = true;
    2069              : 
    2070      1109229 :   for (; arg; arg = arg->next)
    2071              :     {
    2072       676611 :       e = arg->expr;
    2073       676611 :       if (e == NULL)
    2074              :         {
    2075              :           /* Check the label is a valid branching target.  */
    2076         2489 :           if (arg->label)
    2077              :             {
    2078          236 :               if (arg->label->defined == ST_LABEL_UNKNOWN)
    2079              :                 {
    2080            0 :                   gfc_error ("Label %d referenced at %L is never defined",
    2081              :                              arg->label->value, &arg->label->where);
    2082            0 :                   goto cleanup;
    2083              :                 }
    2084              :             }
    2085         2489 :           first_actual_arg = false;
    2086         2489 :           continue;
    2087              :         }
    2088              : 
    2089       674122 :       if (e->expr_type == EXPR_VARIABLE
    2090       297798 :             && e->symtree->n.sym->attr.generic
    2091            8 :             && no_formal_args
    2092       674127 :             && count_specific_procs (e) != 1)
    2093            2 :         goto cleanup;
    2094              : 
    2095       674120 :       if (e->ts.type != BT_PROCEDURE)
    2096              :         {
    2097       600401 :           save_need_full_assumed_size = need_full_assumed_size;
    2098       600401 :           if (e->expr_type != EXPR_VARIABLE)
    2099       376324 :             need_full_assumed_size = 0;
    2100       600401 :           if (!gfc_resolve_expr (e))
    2101           60 :             goto cleanup;
    2102       600341 :           need_full_assumed_size = save_need_full_assumed_size;
    2103       600341 :           goto argument_list;
    2104              :         }
    2105              : 
    2106              :       /* See if the expression node should really be a variable reference.  */
    2107              : 
    2108        73719 :       sym = e->symtree->n.sym;
    2109              : 
    2110        73719 :       if (sym->attr.flavor == FL_PROCEDURE && is_dt_name (sym->name))
    2111              :         {
    2112            3 :           gfc_error ("Derived type %qs is used as an actual "
    2113              :                      "argument at %L", sym->name, &e->where);
    2114            3 :           goto cleanup;
    2115              :         }
    2116              : 
    2117        73716 :       if (sym->attr.flavor == FL_PROCEDURE
    2118        70285 :           || sym->attr.intrinsic
    2119        70285 :           || sym->attr.external)
    2120              :         {
    2121         3431 :           int actual_ok;
    2122              : 
    2123              :           /* If a procedure is not already determined to be something else
    2124              :              check if it is intrinsic.  */
    2125         3431 :           if (gfc_is_intrinsic (sym, sym->attr.subroutine, e->where))
    2126         1254 :             sym->attr.intrinsic = 1;
    2127              : 
    2128         3431 :           if (sym->attr.proc == PROC_ST_FUNCTION)
    2129              :             {
    2130            2 :               gfc_error ("Statement function %qs at %L is not allowed as an "
    2131              :                          "actual argument", sym->name, &e->where);
    2132              :             }
    2133              : 
    2134         6862 :           actual_ok = gfc_intrinsic_actual_ok (sym->name,
    2135         3431 :                                                sym->attr.subroutine);
    2136         3431 :           if (sym->attr.intrinsic && actual_ok == 0)
    2137              :             {
    2138            0 :               gfc_error ("Intrinsic %qs at %L is not allowed as an "
    2139              :                          "actual argument", sym->name, &e->where);
    2140              :             }
    2141              : 
    2142         3431 :           if (sym->attr.contained && !sym->attr.use_assoc
    2143          444 :               && sym->ns->proc_name->attr.flavor != FL_MODULE)
    2144              :             {
    2145          256 :               if (!gfc_notify_std (GFC_STD_F2008, "Internal procedure %qs is"
    2146              :                                    " used as actual argument at %L",
    2147              :                                    sym->name, &e->where))
    2148            3 :                 goto cleanup;
    2149              :             }
    2150              : 
    2151         3428 :           if (sym->attr.elemental && !sym->attr.intrinsic)
    2152              :             {
    2153            2 :               gfc_error ("ELEMENTAL non-INTRINSIC procedure %qs is not "
    2154              :                          "allowed as an actual argument at %L", sym->name,
    2155              :                          &e->where);
    2156              :             }
    2157              : 
    2158              :           /* Check if a generic interface has a specific procedure
    2159              :             with the same name before emitting an error.  */
    2160         3428 :           if (sym->attr.generic && count_specific_procs (e) != 1)
    2161            0 :             goto cleanup;
    2162              : 
    2163              :           /* Just in case a specific was found for the expression.  */
    2164         3428 :           sym = e->symtree->n.sym;
    2165              : 
    2166              :           /* If the symbol is the function that names the current (or
    2167              :              parent) scope, then we really have a variable reference.  */
    2168              : 
    2169         3428 :           if (gfc_is_function_return_value (sym, sym->ns))
    2170            0 :             goto got_variable;
    2171              : 
    2172              :           /* If all else fails, see if we have a specific intrinsic.  */
    2173         3428 :           if (sym->ts.type == BT_UNKNOWN && sym->attr.intrinsic)
    2174              :             {
    2175            0 :               gfc_intrinsic_sym *isym;
    2176              : 
    2177            0 :               isym = gfc_find_function (sym->name);
    2178            0 :               if (isym == NULL || !isym->specific)
    2179              :                 {
    2180            0 :                   gfc_error ("Unable to find a specific INTRINSIC procedure "
    2181              :                              "for the reference %qs at %L", sym->name,
    2182              :                              &e->where);
    2183            0 :                   goto cleanup;
    2184              :                 }
    2185            0 :               sym->ts = isym->ts;
    2186            0 :               sym->attr.intrinsic = 1;
    2187            0 :               sym->attr.function = 1;
    2188              :             }
    2189              : 
    2190         3428 :           if (!gfc_resolve_expr (e))
    2191            0 :             goto cleanup;
    2192         3428 :           goto argument_list;
    2193              :         }
    2194              : 
    2195              :       /* See if the name is a module procedure in a parent unit.  */
    2196              : 
    2197        70285 :       if (was_declared (sym) || sym->ns->parent == NULL)
    2198        70191 :         goto got_variable;
    2199              : 
    2200           94 :       if (gfc_find_sym_tree (sym->name, sym->ns->parent, 1, &parent_st))
    2201              :         {
    2202            0 :           gfc_error ("Symbol %qs at %L is ambiguous", sym->name, &e->where);
    2203            0 :           goto cleanup;
    2204              :         }
    2205              : 
    2206           94 :       if (parent_st == NULL)
    2207           94 :         goto got_variable;
    2208              : 
    2209            0 :       sym = parent_st->n.sym;
    2210            0 :       e->symtree = parent_st;                /* Point to the right thing.  */
    2211              : 
    2212            0 :       if (sym->attr.flavor == FL_PROCEDURE
    2213            0 :           || sym->attr.intrinsic
    2214            0 :           || sym->attr.external)
    2215              :         {
    2216            0 :           if (!gfc_resolve_expr (e))
    2217            0 :             goto cleanup;
    2218            0 :           goto argument_list;
    2219              :         }
    2220              : 
    2221            0 :     got_variable:
    2222        70285 :       e->expr_type = EXPR_VARIABLE;
    2223        70285 :       e->ts = sym->ts;
    2224        70285 :       if ((sym->as != NULL && sym->ts.type != BT_CLASS)
    2225        36466 :           || (sym->ts.type == BT_CLASS && sym->attr.class_ok
    2226         3936 :               && CLASS_DATA (sym)->as))
    2227              :         {
    2228        39491 :           gfc_array_spec *as
    2229        36655 :             = sym->ts.type == BT_CLASS ? CLASS_DATA (sym)->as : sym->as;
    2230        36655 :           e->rank = as->rank;
    2231        36655 :           e->corank = as->corank;
    2232        36655 :           e->ref = gfc_get_ref ();
    2233        36655 :           e->ref->type = REF_ARRAY;
    2234        36655 :           e->ref->u.ar.type = AR_FULL;
    2235        36655 :           e->ref->u.ar.as = as;
    2236              :         }
    2237              : 
    2238              :       /* These symbols are set untyped by calls to gfc_set_default_type
    2239              :          with 'error_flag' = false.  Reset the untyped attribute so that
    2240              :          the error will be generated in gfc_resolve_expr.  */
    2241        70285 :       if (e->expr_type == EXPR_VARIABLE
    2242        70285 :           && sym->ts.type == BT_UNKNOWN
    2243           36 :           && sym->attr.untyped)
    2244            5 :         sym->attr.untyped = 0;
    2245              : 
    2246              :       /* Expressions are assigned a default ts.type of BT_PROCEDURE in
    2247              :          primary.cc (match_actual_arg). If above code determines that it
    2248              :          is a  variable instead, it needs to be resolved as it was not
    2249              :          done at the beginning of this function.  */
    2250        70285 :       save_need_full_assumed_size = need_full_assumed_size;
    2251        70285 :       if (e->expr_type != EXPR_VARIABLE)
    2252            0 :         need_full_assumed_size = 0;
    2253        70285 :       if (!gfc_resolve_expr (e))
    2254           22 :         goto cleanup;
    2255        70263 :       need_full_assumed_size = save_need_full_assumed_size;
    2256              : 
    2257       674032 :     argument_list:
    2258              :       /* Check argument list functions %VAL, %LOC and %REF.  There is
    2259              :          nothing to do for %REF.  */
    2260       674032 :       if (arg->name && arg->name[0] == '%')
    2261              :         {
    2262           42 :           if (strcmp ("%VAL", arg->name) == 0)
    2263              :             {
    2264           28 :               if (e->ts.type == BT_CHARACTER || e->ts.type == BT_DERIVED)
    2265              :                 {
    2266            2 :                   gfc_error ("By-value argument at %L is not of numeric "
    2267              :                              "type", &e->where);
    2268            2 :                   goto cleanup;
    2269              :                 }
    2270              : 
    2271           26 :               if (e->rank)
    2272              :                 {
    2273            1 :                   gfc_error ("By-value argument at %L cannot be an array or "
    2274              :                              "an array section", &e->where);
    2275            1 :                   goto cleanup;
    2276              :                 }
    2277              : 
    2278              :               /* Intrinsics are still PROC_UNKNOWN here.  However,
    2279              :                  since same file external procedures are not resolvable
    2280              :                  in gfortran, it is a good deal easier to leave them to
    2281              :                  intrinsic.cc.  */
    2282           25 :               if (ptype != PROC_UNKNOWN
    2283           25 :                   && ptype != PROC_DUMMY
    2284            9 :                   && ptype != PROC_EXTERNAL
    2285            9 :                   && ptype != PROC_MODULE)
    2286              :                 {
    2287            3 :                   gfc_error ("By-value argument at %L is not allowed "
    2288              :                              "in this context", &e->where);
    2289            3 :                   goto cleanup;
    2290              :                 }
    2291              :             }
    2292              : 
    2293              :           /* Statement functions have already been excluded above.  */
    2294           14 :           else if (strcmp ("%LOC", arg->name) == 0
    2295            8 :                    && e->ts.type == BT_PROCEDURE)
    2296              :             {
    2297            0 :               if (e->symtree->n.sym->attr.proc == PROC_INTERNAL)
    2298              :                 {
    2299            0 :                   gfc_error ("Passing internal procedure at %L by location "
    2300              :                              "not allowed", &e->where);
    2301            0 :                   goto cleanup;
    2302              :                 }
    2303              :             }
    2304              :         }
    2305              : 
    2306       674026 :       comp = gfc_get_proc_ptr_comp(e);
    2307       674026 :       if (e->expr_type == EXPR_VARIABLE
    2308       296420 :           && comp && comp->attr.elemental)
    2309              :         {
    2310            1 :             gfc_error ("ELEMENTAL procedure pointer component %qs is not "
    2311              :                        "allowed as an actual argument at %L", comp->name,
    2312              :                        &e->where);
    2313              :         }
    2314              : 
    2315              :       /* Fortran 2008, C1237.  */
    2316       296420 :       if (e->expr_type == EXPR_VARIABLE && gfc_is_coindexed (e)
    2317       674471 :           && gfc_has_ultimate_pointer (e))
    2318              :         {
    2319            3 :           gfc_error ("Coindexed actual argument at %L with ultimate pointer "
    2320              :                      "component", &e->where);
    2321            3 :           goto cleanup;
    2322              :         }
    2323              : 
    2324       674023 :       if (e->expr_type == EXPR_VARIABLE
    2325       296417 :           && e->ts.type == BT_PROCEDURE
    2326         3428 :           && no_formal_args
    2327         1505 :           && sym->attr.flavor == FL_PROCEDURE
    2328         1505 :           && sym->attr.if_source == IFSRC_UNKNOWN
    2329          142 :           && !sym->attr.external
    2330            2 :           && !sym->attr.intrinsic
    2331            2 :           && !sym->attr.artificial
    2332            2 :           && !sym->ts.interface)
    2333              :         {
    2334              :           /* Emit a warning for -std=legacy and an error otherwise. */
    2335            2 :           if (gfc_option.warn_std == 0)
    2336            0 :             gfc_warning (0, "Procedure %qs at %L used as actual argument but "
    2337              :                          "does neither have an explicit interface nor the "
    2338              :                          "EXTERNAL attribute", sym->name, &e->where);
    2339              :           else
    2340              :             {
    2341            2 :               gfc_error ("Procedure %qs at %L used as actual argument but "
    2342              :                          "does neither have an explicit interface nor the "
    2343              :                          "EXTERNAL attribute", sym->name, &e->where);
    2344            2 :               goto cleanup;
    2345              :             }
    2346              :         }
    2347              : 
    2348       674021 :       first_actual_arg = false;
    2349              :     }
    2350              : 
    2351              :   return_value = true;
    2352              : 
    2353       432719 : cleanup:
    2354       432719 :   actual_arg = actual_arg_sav;
    2355       432719 :   first_actual_arg = first_actual_arg_sav;
    2356              : 
    2357       432719 :   return return_value;
    2358              : }
    2359              : 
    2360              : 
    2361              : /* Do the checks of the actual argument list that are specific to elemental
    2362              :    procedures.  If called with c == NULL, we have a function, otherwise if
    2363              :    expr == NULL, we have a subroutine.  */
    2364              : 
    2365              : static bool
    2366       329836 : resolve_elemental_actual (gfc_expr *expr, gfc_code *c)
    2367              : {
    2368       329836 :   gfc_actual_arglist *arg0;
    2369       329836 :   gfc_actual_arglist *arg;
    2370       329836 :   gfc_symbol *esym = NULL;
    2371       329836 :   gfc_intrinsic_sym *isym = NULL;
    2372       329836 :   gfc_expr *e = NULL;
    2373       329836 :   gfc_intrinsic_arg *iformal = NULL;
    2374       329836 :   gfc_formal_arglist *eformal = NULL;
    2375       329836 :   bool formal_optional = false;
    2376       329836 :   bool set_by_optional = false;
    2377       329836 :   int i;
    2378       329836 :   int rank = 0;
    2379              : 
    2380              :   /* Is this an elemental procedure?  */
    2381       329836 :   if (expr && expr->value.function.actual != NULL)
    2382              :     {
    2383       238822 :       if (expr->value.function.esym != NULL
    2384        44516 :           && expr->value.function.esym->attr.elemental)
    2385              :         {
    2386              :           arg0 = expr->value.function.actual;
    2387              :           esym = expr->value.function.esym;
    2388              :         }
    2389       222514 :       else if (expr->value.function.isym != NULL
    2390       193247 :                && expr->value.function.isym->elemental)
    2391              :         {
    2392              :           arg0 = expr->value.function.actual;
    2393              :           isym = expr->value.function.isym;
    2394              :         }
    2395              :       else
    2396              :         return true;
    2397              :     }
    2398        91014 :   else if (c && c->ext.actual != NULL)
    2399              :     {
    2400        71941 :       arg0 = c->ext.actual;
    2401              : 
    2402        71941 :       if (c->resolved_sym)
    2403              :         esym = c->resolved_sym;
    2404              :       else
    2405          323 :         esym = c->symtree->n.sym;
    2406        71941 :       gcc_assert (esym);
    2407              : 
    2408        71941 :       if (!esym->attr.elemental)
    2409              :         return true;
    2410              :     }
    2411              :   else
    2412              :     return true;
    2413              : 
    2414              :   /* The rank of an elemental is the rank of its array argument(s).  */
    2415       174948 :   for (arg = arg0; arg; arg = arg->next)
    2416              :     {
    2417       113341 :       if (arg->expr != NULL && arg->expr->rank != 0)
    2418              :         {
    2419        10752 :           rank = arg->expr->rank;
    2420        10752 :           if (arg->expr->expr_type == EXPR_VARIABLE
    2421         5490 :               && arg->expr->symtree->n.sym->attr.optional)
    2422        10752 :             set_by_optional = true;
    2423              : 
    2424              :           /* Function specific; set the result rank and shape.  */
    2425        10752 :           if (expr)
    2426              :             {
    2427         8344 :               expr->rank = rank;
    2428         8344 :               expr->corank = arg->expr->corank;
    2429         8344 :               if (!expr->shape && arg->expr->shape)
    2430              :                 {
    2431         3974 :                   expr->shape = gfc_get_shape (rank);
    2432         8743 :                   for (i = 0; i < rank; i++)
    2433         4769 :                     mpz_init_set (expr->shape[i], arg->expr->shape[i]);
    2434              :                 }
    2435              :             }
    2436              :           break;
    2437              :         }
    2438              :     }
    2439              : 
    2440              :   /* If it is an array, it shall not be supplied as an actual argument
    2441              :      to an elemental procedure unless an array of the same rank is supplied
    2442              :      as an actual argument corresponding to a nonoptional dummy argument of
    2443              :      that elemental procedure(12.4.1.5).  */
    2444        72359 :   formal_optional = false;
    2445        72359 :   if (isym)
    2446        49838 :     iformal = isym->formal;
    2447              :   else
    2448        22521 :     eformal = esym->formal;
    2449              : 
    2450       191216 :   for (arg = arg0; arg; arg = arg->next)
    2451              :     {
    2452       118857 :       if (eformal)
    2453              :         {
    2454        40411 :           if (eformal->sym && eformal->sym->attr.optional)
    2455        40411 :             formal_optional = true;
    2456        40411 :           eformal = eformal->next;
    2457              :         }
    2458        78446 :       else if (isym && iformal)
    2459              :         {
    2460        68127 :           if (iformal->optional)
    2461        13525 :             formal_optional = true;
    2462        68127 :           iformal = iformal->next;
    2463              :         }
    2464        10319 :       else if (isym)
    2465        10311 :         formal_optional = true;
    2466              : 
    2467       118857 :       if (pedantic && arg->expr != NULL
    2468        67819 :           && arg->expr->expr_type == EXPR_VARIABLE
    2469        31992 :           && arg->expr->symtree->n.sym->attr.optional
    2470          572 :           && formal_optional
    2471          479 :           && arg->expr->rank
    2472          153 :           && (set_by_optional || arg->expr->rank != rank)
    2473           42 :           && !(isym && isym->id == GFC_ISYM_CONVERSION))
    2474              :         {
    2475          114 :           bool t = false;
    2476              :           gfc_actual_arglist *a;
    2477              : 
    2478              :           /* Scan the argument list for a non-optional argument with the
    2479              :              same rank as arg.  */
    2480          114 :           for (a = arg0; a; a = a->next)
    2481           87 :             if (a != arg
    2482           45 :                 && a->expr->rank == arg->expr->rank
    2483           39 :                 && (a->expr->expr_type != EXPR_VARIABLE
    2484           37 :                     || (a->expr->expr_type == EXPR_VARIABLE
    2485           37 :                         && !a->expr->symtree->n.sym->attr.optional)))
    2486              :               {
    2487              :                 t = true;
    2488              :                 break;
    2489              :               }
    2490              : 
    2491           42 :           if (!t)
    2492           27 :             gfc_warning (OPT_Wpedantic,
    2493              :                          "%qs at %L is an array and OPTIONAL; If it is not "
    2494              :                          "present, then it cannot be the actual argument of "
    2495              :                          "an ELEMENTAL procedure unless there is a non-optional"
    2496              :                          " argument with the same rank "
    2497              :                          "(Fortran 2018, 15.5.2.12)",
    2498              :                          arg->expr->symtree->n.sym->name, &arg->expr->where);
    2499              :         }
    2500              :     }
    2501              : 
    2502       191205 :   for (arg = arg0; arg; arg = arg->next)
    2503              :     {
    2504       118855 :       if (arg->expr == NULL || arg->expr->rank == 0)
    2505       105215 :         continue;
    2506              : 
    2507              :       /* Being elemental, the last upper bound of an assumed size array
    2508              :          argument must be present.  */
    2509        13640 :       if (resolve_assumed_size_actual (arg->expr))
    2510              :         return false;
    2511              : 
    2512              :       /* Elemental procedure's array actual arguments must conform.  */
    2513        13637 :       if (e != NULL)
    2514              :         {
    2515         2888 :           if (!gfc_check_conformance (arg->expr, e, _("elemental procedure")))
    2516              :             return false;
    2517              :         }
    2518              :       else
    2519        10749 :         e = arg->expr;
    2520              :     }
    2521              : 
    2522              :   /* INTENT(OUT) is only allowed for subroutines; if any actual argument
    2523              :      is an array, the intent inout/out variable needs to be also an array.  */
    2524        72350 :   if (rank > 0 && esym && expr == NULL)
    2525         7333 :     for (eformal = esym->formal, arg = arg0; arg && eformal;
    2526         4931 :          arg = arg->next, eformal = eformal->next)
    2527         4933 :       if (eformal->sym
    2528         4932 :           && (eformal->sym->attr.intent == INTENT_OUT
    2529         3850 :               || eformal->sym->attr.intent == INTENT_INOUT)
    2530         1716 :           && arg->expr && arg->expr->rank == 0)
    2531              :         {
    2532            2 :           gfc_error ("Actual argument at %L for INTENT(%s) dummy %qs of "
    2533              :                      "ELEMENTAL subroutine %qs is a scalar, but another "
    2534              :                      "actual argument is an array", &arg->expr->where,
    2535              :                      (eformal->sym->attr.intent == INTENT_OUT) ? "OUT"
    2536              :                      : "INOUT", eformal->sym->name, esym->name);
    2537            2 :           return false;
    2538              :         }
    2539              :   return true;
    2540              : }
    2541              : 
    2542              : 
    2543              : /* This function does the checking of references to global procedures
    2544              :    as defined in sections 18.1 and 14.1, respectively, of the Fortran
    2545              :    77 and 95 standards.  It checks for a gsymbol for the name, making
    2546              :    one if it does not already exist.  If it already exists, then the
    2547              :    reference being resolved must correspond to the type of gsymbol.
    2548              :    Otherwise, the new symbol is equipped with the attributes of the
    2549              :    reference.  The corresponding code that is called in creating
    2550              :    global entities is parse.cc.
    2551              : 
    2552              :    In addition, for all but -std=legacy, the gsymbols are used to
    2553              :    check the interfaces of external procedures from the same file.
    2554              :    The namespace of the gsymbol is resolved and then, once this is
    2555              :    done the interface is checked.  */
    2556              : 
    2557              : 
    2558              : static bool
    2559        15009 : not_in_recursive (gfc_symbol *sym, gfc_namespace *gsym_ns)
    2560              : {
    2561        15009 :   if (!gsym_ns->proc_name->attr.recursive)
    2562              :     return true;
    2563              : 
    2564          151 :   if (sym->ns == gsym_ns)
    2565              :     return false;
    2566              : 
    2567          151 :   if (sym->ns->parent && sym->ns->parent == gsym_ns)
    2568            0 :     return false;
    2569              : 
    2570              :   return true;
    2571              : }
    2572              : 
    2573              : static bool
    2574        15009 : not_entry_self_reference  (gfc_symbol *sym, gfc_namespace *gsym_ns)
    2575              : {
    2576        15009 :   if (gsym_ns->entries)
    2577              :     {
    2578              :       gfc_entry_list *entry = gsym_ns->entries;
    2579              : 
    2580         3312 :       for (; entry; entry = entry->next)
    2581              :         {
    2582         2333 :           if (strcmp (sym->name, entry->sym->name) == 0)
    2583              :             {
    2584          971 :               if (strcmp (gsym_ns->proc_name->name,
    2585          971 :                           sym->ns->proc_name->name) == 0)
    2586              :                 return false;
    2587              : 
    2588          971 :               if (sym->ns->parent
    2589            0 :                   && strcmp (gsym_ns->proc_name->name,
    2590            0 :                              sym->ns->parent->proc_name->name) == 0)
    2591              :                 return false;
    2592              :             }
    2593              :         }
    2594              :     }
    2595              :   return true;
    2596              : }
    2597              : 
    2598              : 
    2599              : /* Check for the requirement of an explicit interface. F08:12.4.2.2.  */
    2600              : 
    2601              : bool
    2602        15849 : gfc_explicit_interface_required (gfc_symbol *sym, char *errmsg, int err_len)
    2603              : {
    2604        15849 :   gfc_formal_arglist *arg = gfc_sym_get_dummy_args (sym);
    2605              : 
    2606        59136 :   for ( ; arg; arg = arg->next)
    2607              :     {
    2608        27846 :       if (!arg->sym)
    2609          157 :         continue;
    2610              : 
    2611        27689 :       if (arg->sym->attr.allocatable)  /* (2a)  */
    2612              :         {
    2613            0 :           strncpy (errmsg, _("allocatable argument"), err_len);
    2614            0 :           return true;
    2615              :         }
    2616        27689 :       else if (arg->sym->attr.asynchronous)
    2617              :         {
    2618            0 :           strncpy (errmsg, _("asynchronous argument"), err_len);
    2619            0 :           return true;
    2620              :         }
    2621        27689 :       else if (arg->sym->attr.optional)
    2622              :         {
    2623           75 :           strncpy (errmsg, _("optional argument"), err_len);
    2624           75 :           return true;
    2625              :         }
    2626        27614 :       else if (arg->sym->attr.pointer)
    2627              :         {
    2628           12 :           strncpy (errmsg, _("pointer argument"), err_len);
    2629           12 :           return true;
    2630              :         }
    2631        27602 :       else if (arg->sym->attr.target)
    2632              :         {
    2633           72 :           strncpy (errmsg, _("target argument"), err_len);
    2634           72 :           return true;
    2635              :         }
    2636        27530 :       else if (arg->sym->attr.value)
    2637              :         {
    2638           12 :           strncpy (errmsg, _("value argument"), err_len);
    2639           12 :           return true;
    2640              :         }
    2641        27518 :       else if (arg->sym->attr.volatile_)
    2642              :         {
    2643            1 :           strncpy (errmsg, _("volatile argument"), err_len);
    2644            1 :           return true;
    2645              :         }
    2646        27517 :       else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_SHAPE)  /* (2b)  */
    2647              :         {
    2648           69 :           strncpy (errmsg, _("assumed-shape argument"), err_len);
    2649           69 :           return true;
    2650              :         }
    2651        27448 :       else if (arg->sym->as && arg->sym->as->type == AS_ASSUMED_RANK)  /* TS 29113, 6.2.  */
    2652              :         {
    2653            1 :           strncpy (errmsg, _("assumed-rank argument"), err_len);
    2654            1 :           return true;
    2655              :         }
    2656        27447 :       else if (arg->sym->attr.codimension)  /* (2c)  */
    2657              :         {
    2658            1 :           strncpy (errmsg, _("coarray argument"), err_len);
    2659            1 :           return true;
    2660              :         }
    2661        27446 :       else if (false)  /* (2d) TODO: parametrized derived type  */
    2662              :         {
    2663              :           strncpy (errmsg, _("parametrized derived type argument"), err_len);
    2664              :           return true;
    2665              :         }
    2666        27446 :       else if (arg->sym->ts.type == BT_CLASS)  /* (2e)  */
    2667              :         {
    2668          164 :           strncpy (errmsg, _("polymorphic argument"), err_len);
    2669          164 :           return true;
    2670              :         }
    2671        27282 :       else if (arg->sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
    2672              :         {
    2673            0 :           strncpy (errmsg, _("NO_ARG_CHECK attribute"), err_len);
    2674            0 :           return true;
    2675              :         }
    2676        27282 :       else if (arg->sym->ts.type == BT_ASSUMED)
    2677              :         {
    2678              :           /* As assumed-type is unlimited polymorphic (cf. above).
    2679              :              See also TS 29113, Note 6.1.  */
    2680            1 :           strncpy (errmsg, _("assumed-type argument"), err_len);
    2681            1 :           return true;
    2682              :         }
    2683              :     }
    2684              : 
    2685        15441 :   if (sym->attr.function)
    2686              :     {
    2687         3497 :       gfc_symbol *res = sym->result ? sym->result : sym;
    2688              : 
    2689         3497 :       if (res->attr.dimension)  /* (3a)  */
    2690              :         {
    2691           93 :           strncpy (errmsg, _("array result"), err_len);
    2692           93 :           return true;
    2693              :         }
    2694         3404 :       else if (res->attr.pointer || res->attr.allocatable)  /* (3b)  */
    2695              :         {
    2696           38 :           strncpy (errmsg, _("pointer or allocatable result"), err_len);
    2697           38 :           return true;
    2698              :         }
    2699         3366 :       else if (res->ts.type == BT_CHARACTER && res->ts.u.cl
    2700          347 :                && res->ts.u.cl->length
    2701          166 :                && res->ts.u.cl->length->expr_type != EXPR_CONSTANT)  /* (3c)  */
    2702              :         {
    2703           12 :           strncpy (errmsg, _("result with non-constant character length"), err_len);
    2704           12 :           return true;
    2705              :         }
    2706              :     }
    2707              : 
    2708        15298 :   if (sym->attr.elemental && !sym->attr.intrinsic)  /* (4)  */
    2709              :     {
    2710            7 :       strncpy (errmsg, _("elemental procedure"), err_len);
    2711            7 :       return true;
    2712              :     }
    2713        15291 :   else if (sym->attr.is_bind_c)  /* (5)  */
    2714              :     {
    2715            0 :       strncpy (errmsg, _("bind(c) procedure"), err_len);
    2716            0 :       return true;
    2717              :     }
    2718              : 
    2719              :   return false;
    2720              : }
    2721              : 
    2722              : 
    2723              : static void
    2724        29730 : resolve_global_procedure (gfc_symbol *sym, locus *where, int sub)
    2725              : {
    2726        29730 :   gfc_gsymbol * gsym;
    2727        29730 :   gfc_namespace *ns;
    2728        29730 :   enum gfc_symbol_type type;
    2729        29730 :   char reason[200];
    2730              : 
    2731        29730 :   type = sub ? GSYM_SUBROUTINE : GSYM_FUNCTION;
    2732              : 
    2733        29730 :   gsym = gfc_get_gsymbol (sym->binding_label ? sym->binding_label : sym->name,
    2734        29730 :                           sym->binding_label != NULL);
    2735              : 
    2736        29730 :   if ((gsym->type != GSYM_UNKNOWN && gsym->type != type))
    2737            9 :     gfc_global_used (gsym, where);
    2738              : 
    2739        29730 :   if ((sym->attr.if_source == IFSRC_UNKNOWN
    2740         9485 :        || sym->attr.if_source == IFSRC_IFBODY)
    2741        25184 :       && gsym->type != GSYM_UNKNOWN
    2742        22990 :       && !gsym->binding_label
    2743        20673 :       && gsym->ns
    2744        15009 :       && gsym->ns->proc_name
    2745        15009 :       && not_in_recursive (sym, gsym->ns)
    2746        44739 :       && not_entry_self_reference (sym, gsym->ns))
    2747              :     {
    2748        15009 :       gfc_symbol *def_sym;
    2749        15009 :       def_sym = gsym->ns->proc_name;
    2750              : 
    2751        15009 :       if (gsym->ns->resolved != -1)
    2752              :         {
    2753              : 
    2754              :           /* Resolve the gsymbol namespace if needed.  */
    2755        14987 :           if (!gsym->ns->resolved)
    2756              :             {
    2757         2793 :               gfc_symbol *old_dt_list;
    2758              : 
    2759              :               /* Stash away derived types so that the backend_decls
    2760              :                  do not get mixed up.  */
    2761         2793 :               old_dt_list = gfc_derived_types;
    2762         2793 :               gfc_derived_types = NULL;
    2763              : 
    2764         2793 :               gfc_resolve (gsym->ns);
    2765              : 
    2766              :               /* Store the new derived types with the global namespace.  */
    2767         2793 :               if (gfc_derived_types)
    2768          306 :                 gsym->ns->derived_types = gfc_derived_types;
    2769              : 
    2770              :               /* Restore the derived types of this namespace.  */
    2771         2793 :               gfc_derived_types = old_dt_list;
    2772              :             }
    2773              : 
    2774              :           /* Make sure that translation for the gsymbol occurs before
    2775              :              the procedure currently being resolved.  */
    2776        14987 :           ns = gfc_global_ns_list;
    2777        25460 :           for (; ns && ns != gsym->ns; ns = ns->sibling)
    2778              :             {
    2779        17050 :               if (ns->sibling == gsym->ns)
    2780              :                 {
    2781         6577 :                   ns->sibling = gsym->ns->sibling;
    2782         6577 :                   gsym->ns->sibling = gfc_global_ns_list;
    2783         6577 :                   gfc_global_ns_list = gsym->ns;
    2784         6577 :                   break;
    2785              :                 }
    2786              :             }
    2787              : 
    2788              :           /* This can happen if a binding name has been specified.  */
    2789        14987 :           if (gsym->binding_label && gsym->sym_name != def_sym->name)
    2790            0 :             gfc_find_symbol (gsym->sym_name, gsym->ns, 0, &def_sym);
    2791              :         }
    2792              : 
    2793              :       /* Look up the specific entry symbol so that interface checks use
    2794              :          the entry's own formal argument list, not the entry master's.
    2795              :          This must run even when resolved == -1 (recursive resolution in
    2796              :          progress), because def_sym starts as the namespace proc_name
    2797              :          which is the entry master with the combined formals.  */
    2798        15009 :       if (def_sym->attr.entry_master || def_sym->attr.entry)
    2799              :         {
    2800          979 :           gfc_entry_list *entry;
    2801         1699 :           for (entry = gsym->ns->entries; entry; entry = entry->next)
    2802         1699 :             if (strcmp (entry->sym->name, sym->name) == 0)
    2803              :               {
    2804          979 :                 def_sym = entry->sym;
    2805          979 :                 break;
    2806              :               }
    2807              :         }
    2808              : 
    2809        15009 :       if (sym->attr.function && !gfc_compare_types (&sym->ts, &def_sym->ts))
    2810              :         {
    2811            6 :           gfc_error ("Return type mismatch of function %qs at %L (%s/%s)",
    2812              :                      sym->name, &sym->declared_at, gfc_typename (&sym->ts),
    2813            6 :                      gfc_typename (&def_sym->ts));
    2814           28 :           goto done;
    2815              :         }
    2816              : 
    2817        15003 :       if (sym->attr.if_source == IFSRC_UNKNOWN
    2818        15003 :           && gfc_explicit_interface_required (def_sym, reason, sizeof(reason)))
    2819              :         {
    2820            8 :           gfc_error ("Explicit interface required for %qs at %L: %s",
    2821              :                      sym->name, &sym->declared_at, reason);
    2822            8 :           goto done;
    2823              :         }
    2824              : 
    2825        14995 :       bool bad_result_characteristics;
    2826        14995 :       if (!gfc_compare_interfaces (sym, def_sym, sym->name, 0, 1,
    2827              :                                    reason, sizeof(reason), NULL, NULL,
    2828              :                                    &bad_result_characteristics))
    2829              :         {
    2830              :           /* Turn errors into warnings with -std=gnu and -std=legacy,
    2831              :              unless a function returns a wrong type, which can lead
    2832              :              to all kinds of ICEs and wrong code.  */
    2833              : 
    2834           14 :           if (!pedantic && (gfc_option.allow_std & GFC_STD_GNU)
    2835            2 :               && !bad_result_characteristics)
    2836            2 :             gfc_errors_to_warnings (true);
    2837              : 
    2838           14 :           gfc_error ("Interface mismatch in global procedure %qs at %L: %s",
    2839              :                      sym->name, &sym->declared_at, reason);
    2840           14 :           sym->error = 1;
    2841           14 :           gfc_errors_to_warnings (false);
    2842           14 :           goto done;
    2843              :         }
    2844              :     }
    2845              : 
    2846        29730 : done:
    2847              : 
    2848        29730 :   if (gsym->type == GSYM_UNKNOWN)
    2849              :     {
    2850         4086 :       gsym->type = type;
    2851         4086 :       gsym->where = *where;
    2852              :     }
    2853              : 
    2854        29730 :   gsym->used = 1;
    2855        29730 : }
    2856              : 
    2857              : 
    2858              : /************* Function resolution *************/
    2859              : 
    2860              : /* Resolve a function call known to be generic.
    2861              :    Section 14.1.2.4.1.  */
    2862              : 
    2863              : static match
    2864        28142 : resolve_generic_f0 (gfc_expr *expr, gfc_symbol *sym)
    2865              : {
    2866        28142 :   gfc_symbol *s;
    2867              : 
    2868        28142 :   if (sym->attr.generic)
    2869              :     {
    2870        26986 :       s = gfc_search_interface (sym->generic, 0, &expr->value.function.actual);
    2871        26986 :       if (s != NULL)
    2872              :         {
    2873        20203 :           expr->value.function.name = s->name;
    2874        20203 :           expr->value.function.esym = s;
    2875              : 
    2876        20203 :           if (s->ts.type != BT_UNKNOWN)
    2877        20186 :             expr->ts = s->ts;
    2878           17 :           else if (s->result != NULL && s->result->ts.type != BT_UNKNOWN)
    2879           15 :             expr->ts = s->result->ts;
    2880              : 
    2881        20203 :           if (s->as != NULL)
    2882              :             {
    2883           55 :               expr->rank = s->as->rank;
    2884           55 :               expr->corank = s->as->corank;
    2885              :             }
    2886        20148 :           else if (s->result != NULL && s->result->as != NULL)
    2887              :             {
    2888            0 :               expr->rank = s->result->as->rank;
    2889            0 :               expr->corank = s->result->as->corank;
    2890              :             }
    2891              : 
    2892        20203 :           gfc_set_sym_referenced (expr->value.function.esym);
    2893              : 
    2894        20203 :           return MATCH_YES;
    2895              :         }
    2896              : 
    2897              :       /* TODO: Need to search for elemental references in generic
    2898              :          interface.  */
    2899              :     }
    2900              : 
    2901         7939 :   if (sym->attr.intrinsic)
    2902         1113 :     return gfc_intrinsic_func_interface (expr, 0);
    2903              : 
    2904              :   return MATCH_NO;
    2905              : }
    2906              : 
    2907              : 
    2908              : static bool
    2909        27998 : resolve_generic_f (gfc_expr *expr)
    2910              : {
    2911        27998 :   gfc_symbol *sym;
    2912        27998 :   match m;
    2913        27998 :   gfc_interface *intr = NULL;
    2914              : 
    2915        27998 :   sym = expr->symtree->n.sym;
    2916              : 
    2917        28142 :   for (;;)
    2918              :     {
    2919        28142 :       m = resolve_generic_f0 (expr, sym);
    2920        28142 :       if (m == MATCH_YES)
    2921              :         return true;
    2922         6828 :       else if (m == MATCH_ERROR)
    2923              :         return false;
    2924              : 
    2925         6828 : generic:
    2926         6831 :       if (!intr)
    2927         6799 :         for (intr = sym->generic; intr; intr = intr->next)
    2928         6715 :           if (gfc_fl_struct (intr->sym->attr.flavor))
    2929              :             break;
    2930              : 
    2931         6831 :       if (sym->ns->parent == NULL)
    2932              :         break;
    2933          316 :       gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
    2934              : 
    2935          316 :       if (sym == NULL)
    2936              :         break;
    2937          147 :       if (!generic_sym (sym))
    2938            3 :         goto generic;
    2939              :     }
    2940              : 
    2941              :   /* Last ditch attempt.  See if the reference is to an intrinsic
    2942              :      that possesses a matching interface.  14.1.2.4  */
    2943         6684 :   if (sym  && !intr && !gfc_is_intrinsic (sym, 0, expr->where))
    2944              :     {
    2945            5 :       if (gfc_init_expr_flag)
    2946            1 :         gfc_error ("Function %qs in initialization expression at %L "
    2947              :                    "must be an intrinsic function",
    2948            1 :                    expr->symtree->n.sym->name, &expr->where);
    2949              :       else
    2950            4 :         gfc_error ("There is no specific function for the generic %qs "
    2951            4 :                    "at %L", expr->symtree->n.sym->name, &expr->where);
    2952              :       return false;
    2953              :     }
    2954              : 
    2955         6679 :   if (intr)
    2956              :     {
    2957         6644 :       if (!gfc_convert_to_structure_constructor (expr, intr->sym, NULL,
    2958              :                                                  NULL, false))
    2959              :         return false;
    2960         6617 :       if (!gfc_use_derived (expr->ts.u.derived))
    2961              :         return false;
    2962         6617 :       return resolve_structure_cons (expr, 0);
    2963              :     }
    2964              : 
    2965           35 :   m = gfc_intrinsic_func_interface (expr, 0);
    2966           35 :   if (m == MATCH_YES)
    2967              :     return true;
    2968              : 
    2969            3 :   if (m == MATCH_NO)
    2970            3 :     gfc_error ("Generic function %qs at %L is not consistent with a "
    2971            3 :                "specific intrinsic interface", expr->symtree->n.sym->name,
    2972              :                &expr->where);
    2973              : 
    2974              :   return false;
    2975              : }
    2976              : 
    2977              : 
    2978              : /* Resolve a function call known to be specific.  */
    2979              : 
    2980              : static match
    2981        28500 : resolve_specific_f0 (gfc_symbol *sym, gfc_expr *expr)
    2982              : {
    2983        28500 :   match m;
    2984              : 
    2985        28500 :   if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
    2986              :     {
    2987         8209 :       if (sym->attr.dummy)
    2988              :         {
    2989          282 :           sym->attr.proc = PROC_DUMMY;
    2990          282 :           goto found;
    2991              :         }
    2992              : 
    2993         7927 :       sym->attr.proc = PROC_EXTERNAL;
    2994         7927 :       goto found;
    2995              :     }
    2996              : 
    2997        20291 :   if (sym->attr.proc == PROC_MODULE
    2998        11274 :       || sym->attr.proc == PROC_ST_FUNCTION
    2999        10984 :       || sym->attr.proc == PROC_INTERNAL)
    3000        19553 :     goto found;
    3001              : 
    3002          738 :   if (sym->attr.intrinsic)
    3003              :     {
    3004          731 :       m = gfc_intrinsic_func_interface (expr, 1);
    3005          731 :       if (m == MATCH_YES)
    3006              :         return MATCH_YES;
    3007            0 :       if (m == MATCH_NO)
    3008            0 :         gfc_error ("Function %qs at %L is INTRINSIC but is not compatible "
    3009              :                    "with an intrinsic", sym->name, &expr->where);
    3010              : 
    3011              :       return MATCH_ERROR;
    3012              :     }
    3013              : 
    3014              :   return MATCH_NO;
    3015              : 
    3016        27762 : found:
    3017        27762 :   gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
    3018              : 
    3019        27762 :   if (sym->result)
    3020        27762 :     expr->ts = sym->result->ts;
    3021              :   else
    3022            0 :     expr->ts = sym->ts;
    3023        27762 :   expr->value.function.name = sym->name;
    3024        27762 :   expr->value.function.esym = sym;
    3025              :   /* Prevent crash when sym->ts.u.derived->components is not set due to previous
    3026              :      error(s).  */
    3027        27762 :   if (sym->ts.type == BT_CLASS && !CLASS_DATA (sym))
    3028              :     return MATCH_ERROR;
    3029        27761 :   if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as)
    3030              :     {
    3031          322 :       expr->rank = CLASS_DATA (sym)->as->rank;
    3032          322 :       expr->corank = CLASS_DATA (sym)->as->corank;
    3033              :     }
    3034        27439 :   else if (sym->as != NULL)
    3035              :     {
    3036         2335 :       expr->rank = sym->as->rank;
    3037         2335 :       expr->corank = sym->as->corank;
    3038              :     }
    3039              : 
    3040              :   return MATCH_YES;
    3041              : }
    3042              : 
    3043              : 
    3044              : static bool
    3045        28493 : resolve_specific_f (gfc_expr *expr)
    3046              : {
    3047        28493 :   gfc_symbol *sym;
    3048        28493 :   match m;
    3049              : 
    3050        28493 :   sym = expr->symtree->n.sym;
    3051              : 
    3052        28500 :   for (;;)
    3053              :     {
    3054        28500 :       m = resolve_specific_f0 (sym, expr);
    3055        28500 :       if (m == MATCH_YES)
    3056              :         return true;
    3057            8 :       if (m == MATCH_ERROR)
    3058              :         return false;
    3059              : 
    3060            7 :       if (sym->ns->parent == NULL)
    3061              :         break;
    3062              : 
    3063            7 :       gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
    3064              : 
    3065            7 :       if (sym == NULL)
    3066              :         break;
    3067              :     }
    3068              : 
    3069            0 :   gfc_error ("Unable to resolve the specific function %qs at %L",
    3070            0 :              expr->symtree->n.sym->name, &expr->where);
    3071              : 
    3072            0 :   return true;
    3073              : }
    3074              : 
    3075              : /* Recursively append candidate SYM to CANDIDATES.  Store the number of
    3076              :    candidates in CANDIDATES_LEN.  */
    3077              : 
    3078              : static void
    3079          212 : lookup_function_fuzzy_find_candidates (gfc_symtree *sym,
    3080              :                                        char **&candidates,
    3081              :                                        size_t &candidates_len)
    3082              : {
    3083          388 :   gfc_symtree *p;
    3084              : 
    3085          388 :   if (sym == NULL)
    3086              :     return;
    3087          388 :   if ((sym->n.sym->ts.type != BT_UNKNOWN || sym->n.sym->attr.external)
    3088          126 :       && sym->n.sym->attr.flavor == FL_PROCEDURE)
    3089           51 :     vec_push (candidates, candidates_len, sym->name);
    3090              : 
    3091          388 :   p = sym->left;
    3092          388 :   if (p)
    3093          155 :     lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
    3094              : 
    3095          388 :   p = sym->right;
    3096          388 :   if (p)
    3097              :     lookup_function_fuzzy_find_candidates (p, candidates, candidates_len);
    3098              : }
    3099              : 
    3100              : 
    3101              : /* Lookup function FN fuzzily, taking names in SYMROOT into account.  */
    3102              : 
    3103              : const char*
    3104           57 : gfc_lookup_function_fuzzy (const char *fn, gfc_symtree *symroot)
    3105              : {
    3106           57 :   char **candidates = NULL;
    3107           57 :   size_t candidates_len = 0;
    3108           57 :   lookup_function_fuzzy_find_candidates (symroot, candidates, candidates_len);
    3109           57 :   return gfc_closest_fuzzy_match (fn, candidates);
    3110              : }
    3111              : 
    3112              : 
    3113              : /* Resolve a procedure call not known to be generic nor specific.  */
    3114              : 
    3115              : static bool
    3116       279179 : resolve_unknown_f (gfc_expr *expr)
    3117              : {
    3118       279179 :   gfc_symbol *sym;
    3119       279179 :   gfc_typespec *ts;
    3120              : 
    3121       279179 :   sym = expr->symtree->n.sym;
    3122              : 
    3123       279179 :   if (sym->attr.dummy)
    3124              :     {
    3125          293 :       sym->attr.proc = PROC_DUMMY;
    3126          293 :       expr->value.function.name = sym->name;
    3127          293 :       goto set_type;
    3128              :     }
    3129              : 
    3130              :   /* See if we have an intrinsic function reference.  */
    3131              : 
    3132       278886 :   if (gfc_is_intrinsic (sym, 0, expr->where))
    3133              :     {
    3134       276624 :       if (gfc_intrinsic_func_interface (expr, 1) == MATCH_YES)
    3135              :         return true;
    3136          811 :       return false;
    3137              :     }
    3138              : 
    3139              :   /* IMPLICIT NONE (external) procedures require an explicit EXTERNAL attr.  */
    3140              :   /* Intrinsics were handled above, only non-intrinsics left here.  */
    3141         2262 :   if (sym->attr.flavor == FL_PROCEDURE
    3142         2259 :       && sym->attr.implicit_type
    3143          376 :       && sym->ns
    3144          376 :       && sym->ns->has_implicit_none_export)
    3145              :     {
    3146            3 :           gfc_error ("Missing explicit declaration with EXTERNAL attribute "
    3147              :               "for symbol %qs at %L", sym->name, &sym->declared_at);
    3148            3 :           sym->error = 1;
    3149            3 :           return false;
    3150              :     }
    3151              : 
    3152              :   /* The reference is to an external name.  */
    3153              : 
    3154         2259 :   sym->attr.proc = PROC_EXTERNAL;
    3155         2259 :   expr->value.function.name = sym->name;
    3156         2259 :   expr->value.function.esym = expr->symtree->n.sym;
    3157              : 
    3158         2259 :   if (sym->as != NULL)
    3159              :     {
    3160            1 :       expr->rank = sym->as->rank;
    3161            1 :       expr->corank = sym->as->corank;
    3162              :     }
    3163              : 
    3164              :   /* Type of the expression is either the type of the symbol or the
    3165              :      default type of the symbol.  */
    3166              : 
    3167         2258 : set_type:
    3168         2552 :   gfc_procedure_use (sym, &expr->value.function.actual, &expr->where);
    3169              : 
    3170         2552 :   if (sym->ts.type != BT_UNKNOWN)
    3171         2501 :     expr->ts = sym->ts;
    3172              :   else
    3173              :     {
    3174           51 :       ts = gfc_get_default_type (sym->name, sym->ns);
    3175              : 
    3176           51 :       if (ts->type == BT_UNKNOWN)
    3177              :         {
    3178           41 :           const char *guessed
    3179           41 :             = gfc_lookup_function_fuzzy (sym->name, sym->ns->sym_root);
    3180           41 :           if (guessed)
    3181            3 :             gfc_error ("Function %qs at %L has no IMPLICIT type"
    3182              :                        "; did you mean %qs?",
    3183              :                        sym->name, &expr->where, guessed);
    3184              :           else
    3185           38 :             gfc_error ("Function %qs at %L has no IMPLICIT type",
    3186              :                        sym->name, &expr->where);
    3187              :           return false;
    3188              :         }
    3189              :       else
    3190           10 :         expr->ts = *ts;
    3191              :     }
    3192              : 
    3193              :   return true;
    3194              : }
    3195              : 
    3196              : 
    3197              : /* Return true, if the symbol is an external procedure.  */
    3198              : static bool
    3199       862771 : is_external_proc (gfc_symbol *sym)
    3200              : {
    3201       861048 :   if (!sym->attr.dummy && !sym->attr.contained
    3202       751328 :         && !gfc_is_intrinsic (sym, sym->attr.subroutine, sym->declared_at)
    3203       164674 :         && sym->attr.proc != PROC_ST_FUNCTION
    3204       164079 :         && !sym->attr.proc_pointer
    3205       162873 :         && !sym->attr.use_assoc
    3206       922262 :         && sym->name)
    3207        59491 :     return true;
    3208              : 
    3209              :   return false;
    3210              : }
    3211              : 
    3212              : 
    3213              : /* Figure out if a function reference is pure or not.  Also set the name
    3214              :    of the function for a potential error message.  Return nonzero if the
    3215              :    function is PURE, zero if not.  */
    3216              : static bool
    3217              : pure_stmt_function (gfc_expr *, gfc_symbol *);
    3218              : 
    3219              : bool
    3220       259500 : gfc_pure_function (gfc_expr *e, const char **name)
    3221              : {
    3222       259500 :   bool pure;
    3223       259500 :   gfc_component *comp;
    3224              : 
    3225       259500 :   *name = NULL;
    3226              : 
    3227       259500 :   if (e->symtree != NULL
    3228       259144 :         && e->symtree->n.sym != NULL
    3229       259144 :         && e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
    3230          305 :     return pure_stmt_function (e, e->symtree->n.sym);
    3231              : 
    3232       259195 :   comp = gfc_get_proc_ptr_comp (e);
    3233       259195 :   if (comp)
    3234              :     {
    3235          485 :       pure = gfc_pure (comp->ts.interface);
    3236          485 :       *name = comp->name;
    3237              :     }
    3238       258710 :   else if (e->value.function.esym)
    3239              :     {
    3240        53564 :       pure = gfc_pure (e->value.function.esym);
    3241        53564 :       *name = e->value.function.esym->name;
    3242              :     }
    3243       205146 :   else if (e->value.function.isym)
    3244              :     {
    3245       408144 :       pure = e->value.function.isym->pure
    3246       204072 :              || e->value.function.isym->elemental;
    3247       204072 :       *name = e->value.function.isym->name;
    3248              :     }
    3249         1074 :   else if (e->symtree && e->symtree->n.sym && e->symtree->n.sym->attr.dummy)
    3250              :     {
    3251              :       /* The function has been resolved, but esym is not yet set.
    3252              :          This can happen with functions as dummy argument.  */
    3253          291 :       pure = e->symtree->n.sym->attr.pure;
    3254          291 :       *name = e->symtree->n.sym->name;
    3255              :     }
    3256              :   else
    3257              :     {
    3258              :       /* Implicit functions are not pure.  */
    3259          783 :       pure = 0;
    3260          783 :       *name = e->value.function.name;
    3261              :     }
    3262              : 
    3263              :   return pure;
    3264              : }
    3265              : 
    3266              : 
    3267              : /* Check if the expression is a reference to an implicitly pure function.  */
    3268              : 
    3269              : bool
    3270        38866 : gfc_implicit_pure_function (gfc_expr *e)
    3271              : {
    3272        38866 :   gfc_component *comp = gfc_get_proc_ptr_comp (e);
    3273        38866 :   if (comp)
    3274          463 :     return gfc_implicit_pure (comp->ts.interface);
    3275        38403 :   else if (e->value.function.esym)
    3276        32993 :     return gfc_implicit_pure (e->value.function.esym);
    3277              :   else
    3278              :     return 0;
    3279              : }
    3280              : 
    3281              : 
    3282              : static bool
    3283          981 : impure_stmt_fcn (gfc_expr *e, gfc_symbol *sym,
    3284              :                  int *f ATTRIBUTE_UNUSED)
    3285              : {
    3286          981 :   const char *name;
    3287              : 
    3288              :   /* Don't bother recursing into other statement functions
    3289              :      since they will be checked individually for purity.  */
    3290          981 :   if (e->expr_type != EXPR_FUNCTION
    3291          343 :         || !e->symtree
    3292          343 :         || e->symtree->n.sym == sym
    3293           20 :         || e->symtree->n.sym->attr.proc == PROC_ST_FUNCTION)
    3294              :     return false;
    3295              : 
    3296           19 :   return !gfc_pure_function (e, &name);
    3297              : }
    3298              : 
    3299              : 
    3300              : static bool
    3301          305 : pure_stmt_function (gfc_expr *e, gfc_symbol *sym)
    3302              : {
    3303          305 :   return gfc_traverse_expr (e, sym, impure_stmt_fcn, 0) ? 0 : 1;
    3304              : }
    3305              : 
    3306              : 
    3307              : /* Check if an impure function is allowed in the current context. */
    3308              : 
    3309       247510 : static bool check_pure_function (gfc_expr *e)
    3310              : {
    3311       247510 :   const char *name = NULL;
    3312       247510 :   code_stack *stack;
    3313       247510 :   bool saw_block = false;
    3314              : 
    3315              :   /* A BLOCK construct within a DO CONCURRENT construct leads to
    3316              :      gfc_do_concurrent_flag = 0 when the check for an impure function
    3317              :      occurs.  Check the stack to see if the source code has a nested
    3318              :      BLOCK construct.  */
    3319              : 
    3320       573033 :   for (stack = cs_base; stack; stack = stack->prev)
    3321              :     {
    3322       325525 :       if (!saw_block && stack->current->op == EXEC_BLOCK)
    3323              :         {
    3324         7687 :           saw_block = true;
    3325         7687 :           continue;
    3326              :         }
    3327              : 
    3328         5439 :       if (saw_block && stack->current->op == EXEC_DO_CONCURRENT)
    3329              :         {
    3330           16 :           bool is_pure;
    3331       325523 :           is_pure = (e->value.function.isym
    3332           15 :                      && (e->value.function.isym->pure
    3333            1 :                          || e->value.function.isym->elemental))
    3334           17 :                     || (e->value.function.esym
    3335            1 :                         && (e->value.function.esym->attr.pure
    3336            1 :                             || e->value.function.esym->attr.elemental));
    3337            2 :           if (!is_pure)
    3338              :             {
    3339            2 :               gfc_error ("Reference to impure function at %L inside a "
    3340              :                          "DO CONCURRENT", &e->where);
    3341            2 :               return false;
    3342              :             }
    3343              :         }
    3344              :     }
    3345              : 
    3346       247508 :   if (!gfc_pure_function (e, &name) && name)
    3347              :     {
    3348        37569 :       if (forall_flag)
    3349              :         {
    3350            4 :           gfc_error ("Reference to impure function %qs at %L inside a "
    3351              :                      "FORALL %s", name, &e->where,
    3352              :                      forall_flag == 2 ? "mask" : "block");
    3353            4 :           return false;
    3354              :         }
    3355        37565 :       else if (gfc_do_concurrent_flag)
    3356              :         {
    3357            2 :           gfc_error ("Reference to impure function %qs at %L inside a "
    3358              :                      "DO CONCURRENT %s", name, &e->where,
    3359              :                      gfc_do_concurrent_flag == 2 ? "mask" : "block");
    3360            2 :           return false;
    3361              :         }
    3362        37563 :       else if (gfc_pure (NULL))
    3363              :         {
    3364            5 :           gfc_error ("Reference to impure function %qs at %L "
    3365              :                      "within a PURE procedure", name, &e->where);
    3366            5 :           return false;
    3367              :         }
    3368        37558 :       if (!gfc_implicit_pure_function (e))
    3369        30887 :         gfc_unset_implicit_pure (NULL);
    3370              :     }
    3371              :   return true;
    3372              : }
    3373              : 
    3374              : 
    3375              : /* Update current procedure's array_outer_dependency flag, considering
    3376              :    a call to procedure SYM.  */
    3377              : 
    3378              : static void
    3379       134702 : update_current_proc_array_outer_dependency (gfc_symbol *sym)
    3380              : {
    3381              :   /* Check to see if this is a sibling function that has not yet
    3382              :      been resolved.  */
    3383       134702 :   gfc_namespace *sibling = gfc_current_ns->sibling;
    3384       253105 :   for (; sibling; sibling = sibling->sibling)
    3385              :     {
    3386       125655 :       if (sibling->proc_name == sym)
    3387              :         {
    3388         7252 :           gfc_resolve (sibling);
    3389         7252 :           break;
    3390              :         }
    3391              :     }
    3392              : 
    3393              :   /* If SYM has references to outer arrays, so has the procedure calling
    3394              :      SYM.  If SYM is a procedure pointer, we can assume the worst.  */
    3395       134702 :   if ((sym->attr.array_outer_dependency || sym->attr.proc_pointer)
    3396        68852 :       && gfc_current_ns->proc_name)
    3397        68808 :     gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
    3398       134702 : }
    3399              : 
    3400              : 
    3401              : /* Resolve a function call, which means resolving the arguments, then figuring
    3402              :    out which entity the name refers to.  */
    3403              : 
    3404              : static bool
    3405       349058 : resolve_function (gfc_expr *expr)
    3406              : {
    3407       349058 :   gfc_actual_arglist *arg;
    3408       349058 :   gfc_symbol *sym;
    3409       349058 :   bool t;
    3410       349058 :   int temp;
    3411       349058 :   procedure_type p = PROC_INTRINSIC;
    3412       349058 :   bool no_formal_args;
    3413              : 
    3414       349058 :   sym = NULL;
    3415       349058 :   if (expr->symtree)
    3416       348702 :     sym = expr->symtree->n.sym;
    3417              : 
    3418              :   /* If this is a procedure pointer component, it has already been resolved.  */
    3419       349058 :   if (gfc_is_proc_ptr_comp (expr))
    3420              :     return true;
    3421              : 
    3422              :   /* Avoid re-resolving the arguments of caf_get, which can lead to inserting
    3423              :      another caf_get.  */
    3424       348642 :   if (sym && sym->attr.intrinsic
    3425         8759 :       && (sym->intmod_sym_id == GFC_ISYM_CAF_GET
    3426         8759 :           || sym->intmod_sym_id == GFC_ISYM_CAF_SEND))
    3427              :     return true;
    3428              : 
    3429       348642 :   if (expr->ref)
    3430              :     {
    3431            1 :       gfc_error ("Unexpected junk after %qs at %L", expr->symtree->n.sym->name,
    3432              :                  &expr->where);
    3433            1 :       return false;
    3434              :     }
    3435              : 
    3436       348285 :   if (sym && sym->attr.intrinsic
    3437       357400 :       && !gfc_resolve_intrinsic (sym, &expr->where))
    3438              :     return false;
    3439              : 
    3440       348641 :   if (sym && (sym->attr.flavor == FL_VARIABLE || sym->attr.subroutine))
    3441              :     {
    3442            4 :       gfc_error ("%qs at %L is not a function", sym->name, &expr->where);
    3443            4 :       return false;
    3444              :     }
    3445              : 
    3446              :   /* If this is a deferred TBP with an abstract interface (which may
    3447              :      of course be referenced), expr->value.function.esym will be set.  */
    3448       348281 :   if (sym && sym->attr.abstract && !expr->value.function.esym)
    3449              :     {
    3450            1 :       gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
    3451              :                  sym->name, &expr->where);
    3452            1 :       return false;
    3453              :     }
    3454              : 
    3455              :   /* If this is a deferred TBP with an abstract interface, its result
    3456              :      cannot be an assumed length character (F2003: C418).  */
    3457       348280 :   if (sym && sym->attr.abstract && sym->attr.function
    3458          192 :       && sym->result->ts.u.cl
    3459          158 :       && sym->result->ts.u.cl->length == NULL
    3460            2 :       && !sym->result->ts.deferred)
    3461              :     {
    3462            1 :       gfc_error ("ABSTRACT INTERFACE %qs at %L must not have an assumed "
    3463              :                  "character length result (F2008: C418)", sym->name,
    3464              :                  &sym->declared_at);
    3465            1 :       return false;
    3466              :     }
    3467              : 
    3468              :   /* Switch off assumed size checking and do this again for certain kinds
    3469              :      of procedure, once the procedure itself is resolved.  */
    3470       348635 :   need_full_assumed_size++;
    3471              : 
    3472       348635 :   if (expr->symtree && expr->symtree->n.sym)
    3473       348279 :     p = expr->symtree->n.sym->attr.proc;
    3474              : 
    3475       348635 :   if (expr->value.function.isym && expr->value.function.isym->inquiry)
    3476         1179 :     inquiry_argument = true;
    3477       348279 :   no_formal_args = sym && is_external_proc (sym)
    3478       362655 :                        && gfc_sym_get_dummy_args (sym) == NULL;
    3479              : 
    3480       348635 :   if (!resolve_actual_arglist (expr->value.function.actual,
    3481              :                                p, no_formal_args))
    3482              :     {
    3483           67 :       inquiry_argument = false;
    3484           67 :       return false;
    3485              :     }
    3486              : 
    3487       348568 :   inquiry_argument = false;
    3488              : 
    3489              :   /* Resume assumed_size checking.  */
    3490       348568 :   need_full_assumed_size--;
    3491              : 
    3492              :   /* If the procedure is external, check for usage.  */
    3493       348568 :   if (sym && is_external_proc (sym))
    3494        14000 :     resolve_global_procedure (sym, &expr->where, 0);
    3495              : 
    3496       348568 :   if (sym && sym->ts.type == BT_CHARACTER
    3497         3365 :       && sym->ts.u.cl
    3498         3271 :       && sym->ts.u.cl->length == NULL
    3499          683 :       && !sym->attr.dummy
    3500          676 :       && !sym->ts.deferred
    3501            2 :       && expr->value.function.esym == NULL
    3502            2 :       && !sym->attr.contained)
    3503              :     {
    3504              :       /* Internal procedures are taken care of in resolve_contained_fntype.  */
    3505            1 :       gfc_error ("Function %qs is declared CHARACTER(*) and cannot "
    3506              :                  "be used at %L since it is not a dummy argument",
    3507              :                  sym->name, &expr->where);
    3508            1 :       return false;
    3509              :     }
    3510              : 
    3511              :   /* Add and check formal interface when -fc-prototypes-external is in
    3512              :      force, see comment in resolve_call().  */
    3513              : 
    3514       348567 :   if (warn_external_argument_mismatch && sym && sym->attr.dummy
    3515           18 :       && sym->attr.external)
    3516              :     {
    3517           18 :       if (sym->formal)
    3518              :         {
    3519            6 :           bool conflict;
    3520            6 :           conflict = !gfc_compare_actual_formal (&expr->value.function.actual,
    3521              :                                                  sym->formal, 0, 0, 0, NULL);
    3522            6 :           if (conflict)
    3523              :             {
    3524            6 :               sym->ext_dummy_arglist_mismatch = 1;
    3525            6 :               gfc_warning (OPT_Wexternal_argument_mismatch,
    3526              :                            "Different argument lists in external dummy "
    3527              :                            "function %s at %L and %L", sym->name,
    3528              :                            &expr->where, &sym->other_loc);
    3529              :             }
    3530              :         }
    3531           12 :       else if (!sym->formal_resolved)
    3532              :         {
    3533            6 :           gfc_get_formal_from_actual_arglist (sym, expr->value.function.actual);
    3534            6 :           sym->other_loc = expr->where;
    3535              :         }
    3536              :     }
    3537              :   /* See if function is already resolved.  */
    3538              : 
    3539       348567 :   if (expr->value.function.name != NULL
    3540       336514 :       || expr->value.function.isym != NULL)
    3541              :     {
    3542        12897 :       if (expr->ts.type == BT_UNKNOWN)
    3543            3 :         expr->ts = sym->ts;
    3544              :       t = true;
    3545              :     }
    3546              :   else
    3547              :     {
    3548              :       /* Apply the rules of section 14.1.2.  */
    3549              : 
    3550       335670 :       switch (procedure_kind (sym))
    3551              :         {
    3552        27998 :         case PTYPE_GENERIC:
    3553        27998 :           t = resolve_generic_f (expr);
    3554        27998 :           break;
    3555              : 
    3556        28493 :         case PTYPE_SPECIFIC:
    3557        28493 :           t = resolve_specific_f (expr);
    3558        28493 :           break;
    3559              : 
    3560       279179 :         case PTYPE_UNKNOWN:
    3561       279179 :           t = resolve_unknown_f (expr);
    3562       279179 :           break;
    3563              : 
    3564              :         default:
    3565              :           gfc_internal_error ("resolve_function(): bad function type");
    3566              :         }
    3567              :     }
    3568              : 
    3569              :   /* If the expression is still a function (it might have simplified),
    3570              :      then we check to see if we are calling an elemental function.  */
    3571              : 
    3572       348567 :   if (expr->expr_type != EXPR_FUNCTION)
    3573              :     return t;
    3574              : 
    3575              :   /* Walk the argument list looking for invalid BOZ.  */
    3576       748276 :   for (arg = expr->value.function.actual; arg; arg = arg->next)
    3577       501228 :     if (arg->expr && arg->expr->ts.type == BT_BOZ)
    3578              :       {
    3579            5 :         gfc_error ("A BOZ literal constant at %L cannot appear as an "
    3580              :                    "actual argument in a function reference",
    3581              :                    &arg->expr->where);
    3582            5 :         return false;
    3583              :       }
    3584              : 
    3585       247048 :   temp = need_full_assumed_size;
    3586       247048 :   need_full_assumed_size = 0;
    3587              : 
    3588       247048 :   if (!resolve_elemental_actual (expr, NULL))
    3589              :     return false;
    3590              : 
    3591       247045 :   if (omp_workshare_flag
    3592           32 :       && expr->value.function.esym
    3593       247050 :       && ! gfc_elemental (expr->value.function.esym))
    3594              :     {
    3595            4 :       gfc_error ("User defined non-ELEMENTAL function %qs at %L not allowed "
    3596            4 :                  "in WORKSHARE construct", expr->value.function.esym->name,
    3597              :                  &expr->where);
    3598            4 :       t = false;
    3599              :     }
    3600              : 
    3601              : #define GENERIC_ID expr->value.function.isym->id
    3602       247041 :   else if (expr->value.function.actual != NULL
    3603       238819 :            && expr->value.function.isym != NULL
    3604       193246 :            && GENERIC_ID != GFC_ISYM_LBOUND
    3605              :            && GENERIC_ID != GFC_ISYM_LCOBOUND
    3606              :            && GENERIC_ID != GFC_ISYM_UCOBOUND
    3607              :            && GENERIC_ID != GFC_ISYM_LEN
    3608              :            && GENERIC_ID != GFC_ISYM_LOC
    3609              :            && GENERIC_ID != GFC_ISYM_C_LOC
    3610              :            && GENERIC_ID != GFC_ISYM_PRESENT)
    3611              :     {
    3612              :       /* Array intrinsics must also have the last upper bound of an
    3613              :          assumed size array argument.  UBOUND and SIZE have to be
    3614              :          excluded from the check if the second argument is anything
    3615              :          than a constant.  */
    3616              : 
    3617       543254 :       for (arg = expr->value.function.actual; arg; arg = arg->next)
    3618              :         {
    3619       376229 :           if ((GENERIC_ID == GFC_ISYM_UBOUND || GENERIC_ID == GFC_ISYM_SIZE)
    3620        46319 :               && arg == expr->value.function.actual
    3621        17067 :               && arg->next != NULL && arg->next->expr)
    3622              :             {
    3623         8399 :               if (arg->next->expr->expr_type != EXPR_CONSTANT)
    3624              :                 break;
    3625              : 
    3626         8175 :               if (arg->next->name && strcmp (arg->next->name, "kind") == 0)
    3627              :                 break;
    3628              : 
    3629         8175 :               if ((int)mpz_get_si (arg->next->expr->value.integer)
    3630         8175 :                         < arg->expr->rank)
    3631              :                 break;
    3632              :             }
    3633              : 
    3634       373790 :           if (arg->expr != NULL
    3635       249119 :               && arg->expr->rank > 0
    3636       494141 :               && resolve_assumed_size_actual (arg->expr))
    3637              :             return false;
    3638              :         }
    3639              :     }
    3640              : #undef GENERIC_ID
    3641              : 
    3642       247042 :   need_full_assumed_size = temp;
    3643              : 
    3644       247042 :   if (!check_pure_function(expr))
    3645           12 :     t = false;
    3646              : 
    3647              :   /* Functions without the RECURSIVE attribution are not allowed to
    3648              :    * call themselves.  */
    3649       247042 :   if (expr->value.function.esym && !expr->value.function.esym->attr.recursive)
    3650              :     {
    3651        52289 :       gfc_symbol *esym;
    3652        52289 :       esym = expr->value.function.esym;
    3653              : 
    3654        52289 :       if (is_illegal_recursion (esym, gfc_current_ns))
    3655              :       {
    3656            5 :         if (esym->attr.entry && esym->ns->entries)
    3657            3 :           gfc_error ("ENTRY %qs at %L cannot be called recursively, as"
    3658              :                      " function %qs is not RECURSIVE",
    3659            3 :                      esym->name, &expr->where, esym->ns->entries->sym->name);
    3660              :         else
    3661            2 :           gfc_error ("Function %qs at %L cannot be called recursively, as it"
    3662              :                      " is not RECURSIVE", esym->name, &expr->where);
    3663              : 
    3664              :         t = false;
    3665              :       }
    3666              :     }
    3667              : 
    3668              :   /* Character lengths of use associated functions may contains references to
    3669              :      symbols not referenced from the current program unit otherwise.  Make sure
    3670              :      those symbols are marked as referenced.  */
    3671              : 
    3672       247042 :   if (expr->ts.type == BT_CHARACTER && expr->value.function.esym
    3673         3469 :       && expr->value.function.esym->attr.use_assoc)
    3674              :     {
    3675         1256 :       gfc_expr_set_symbols_referenced (expr->ts.u.cl->length);
    3676              :     }
    3677              : 
    3678              :   /* Make sure that the expression has a typespec that works.  */
    3679       247042 :   if (expr->ts.type == BT_UNKNOWN)
    3680              :     {
    3681          922 :       if (expr->symtree->n.sym->result
    3682          913 :             && expr->symtree->n.sym->result->ts.type != BT_UNKNOWN
    3683          561 :             && !expr->symtree->n.sym->result->attr.proc_pointer)
    3684          561 :         expr->ts = expr->symtree->n.sym->result->ts;
    3685              :     }
    3686              : 
    3687              :   /* These derived types with an incomplete namespace, arising from use
    3688              :      association, cause gfc_get_derived_vtab to segfault. If the function
    3689              :      namespace does not suffice, something is badly wrong.  */
    3690       247042 :   if (expr->ts.type == BT_DERIVED
    3691         9617 :       && !expr->ts.u.derived->ns->proc_name)
    3692              :     {
    3693            3 :       gfc_symbol *der;
    3694            3 :       gfc_find_symbol (expr->ts.u.derived->name, expr->symtree->n.sym->ns, 1, &der);
    3695            3 :       if (der)
    3696              :         {
    3697            3 :           expr->ts.u.derived->refs--;
    3698            3 :           expr->ts.u.derived = der;
    3699            3 :           der->refs++;
    3700              :         }
    3701              :       else
    3702            0 :         expr->ts.u.derived->ns = expr->symtree->n.sym->ns;
    3703              :     }
    3704              : 
    3705       247042 :   if (!expr->ref && !expr->value.function.isym)
    3706              :     {
    3707        53675 :       if (expr->value.function.esym)
    3708        52601 :         update_current_proc_array_outer_dependency (expr->value.function.esym);
    3709              :       else
    3710         1074 :         update_current_proc_array_outer_dependency (sym);
    3711              :     }
    3712       193367 :   else if (expr->ref)
    3713              :     /* typebound procedure: Assume the worst.  */
    3714            0 :     gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
    3715              : 
    3716       247042 :   if (expr->value.function.esym
    3717        52601 :       && expr->value.function.esym->attr.ext_attr & (1 << EXT_ATTR_DEPRECATED))
    3718           26 :     gfc_warning (OPT_Wdeprecated_declarations,
    3719              :                  "Using function %qs at %L is deprecated",
    3720              :                  sym->name, &expr->where);
    3721              : 
    3722              :   /* Check an external function supplied as a dummy argument has an external
    3723              :      attribute when a program unit uses 'implicit none (external)'.  */
    3724       247042 :   if (expr->expr_type == EXPR_FUNCTION
    3725       247042 :       && expr->symtree
    3726       246686 :       && expr->symtree->n.sym->attr.dummy
    3727          574 :       && expr->symtree->n.sym->ns->has_implicit_none_export
    3728       247043 :       && !gfc_is_intrinsic(expr->symtree->n.sym, 0, expr->where))
    3729              :     {
    3730            1 :       gfc_error ("Dummy procedure %qs at %L requires an EXTERNAL attribute",
    3731              :                  sym->name, &expr->where);
    3732            1 :       return false;
    3733              :     }
    3734              : 
    3735              :   return t;
    3736              : }
    3737              : 
    3738              : 
    3739              : /************* Subroutine resolution *************/
    3740              : 
    3741              : static bool
    3742        78486 : pure_subroutine (gfc_symbol *sym, const char *name, locus *loc)
    3743              : {
    3744        78486 :   code_stack *stack;
    3745        78486 :   bool saw_block = false;
    3746              : 
    3747        78486 :   if (gfc_pure (sym))
    3748              :     return true;
    3749              : 
    3750              :   /* A BLOCK construct within a DO CONCURRENT construct leads to
    3751              :      gfc_do_concurrent_flag = 0 when the check for an impure subroutine
    3752              :      occurs.  Walk up the stack to see if the source code has a nested
    3753              :      construct.  */
    3754              : 
    3755       161891 :   for (stack = cs_base; stack; stack = stack->prev)
    3756              :     {
    3757        89062 :       if (stack->current->op == EXEC_BLOCK)
    3758              :         {
    3759         1930 :           saw_block = true;
    3760         1930 :           continue;
    3761              :         }
    3762              : 
    3763        87132 :       if (saw_block && stack->current->op == EXEC_DO_CONCURRENT)
    3764              :         {
    3765              : 
    3766            2 :           bool is_pure = true;
    3767        89062 :           is_pure = sym->attr.pure || sym->attr.elemental;
    3768              : 
    3769            2 :           if (!is_pure)
    3770              :             {
    3771            2 :               gfc_error ("Subroutine call at %L in a DO CONCURRENT block "
    3772              :                          "is not PURE", loc);
    3773            2 :               return false;
    3774              :             }
    3775              :         }
    3776              :     }
    3777              : 
    3778        72829 :   if (forall_flag)
    3779              :     {
    3780            0 :       gfc_error ("Subroutine call to %qs in FORALL block at %L is not PURE",
    3781              :                  name, loc);
    3782            0 :       return false;
    3783              :     }
    3784        72829 :   else if (gfc_do_concurrent_flag)
    3785              :     {
    3786            6 :       gfc_error ("Subroutine call to %qs in DO CONCURRENT block at %L is not "
    3787              :                  "PURE", name, loc);
    3788            6 :       return false;
    3789              :     }
    3790        72823 :   else if (gfc_pure (NULL))
    3791              :     {
    3792            4 :       gfc_error ("Subroutine call to %qs at %L is not PURE", name, loc);
    3793            4 :       return false;
    3794              :     }
    3795              : 
    3796        72819 :   gfc_unset_implicit_pure (NULL);
    3797        72819 :   return true;
    3798              : }
    3799              : 
    3800              : 
    3801              : static match
    3802         2883 : resolve_generic_s0 (gfc_code *c, gfc_symbol *sym)
    3803              : {
    3804         2883 :   gfc_symbol *s;
    3805              : 
    3806         2883 :   if (sym->attr.generic)
    3807              :     {
    3808         2882 :       s = gfc_search_interface (sym->generic, 1, &c->ext.actual);
    3809         2882 :       if (s != NULL)
    3810              :         {
    3811         2873 :           c->resolved_sym = s;
    3812         2873 :           if (!pure_subroutine (s, s->name, &c->loc))
    3813              :             return MATCH_ERROR;
    3814         2873 :           return MATCH_YES;
    3815              :         }
    3816              : 
    3817              :       /* TODO: Need to search for elemental references in generic interface.  */
    3818              :     }
    3819              : 
    3820           10 :   if (sym->attr.intrinsic)
    3821            1 :     return gfc_intrinsic_sub_interface (c, 0);
    3822              : 
    3823              :   return MATCH_NO;
    3824              : }
    3825              : 
    3826              : 
    3827              : static bool
    3828         2881 : resolve_generic_s (gfc_code *c)
    3829              : {
    3830         2881 :   gfc_symbol *sym;
    3831         2881 :   match m;
    3832              : 
    3833         2881 :   sym = c->symtree->n.sym;
    3834              : 
    3835         2883 :   for (;;)
    3836              :     {
    3837         2883 :       m = resolve_generic_s0 (c, sym);
    3838         2883 :       if (m == MATCH_YES)
    3839              :         return true;
    3840            9 :       else if (m == MATCH_ERROR)
    3841              :         return false;
    3842              : 
    3843            9 : generic:
    3844            9 :       if (sym->ns->parent == NULL)
    3845              :         break;
    3846            3 :       gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
    3847              : 
    3848            3 :       if (sym == NULL)
    3849              :         break;
    3850            2 :       if (!generic_sym (sym))
    3851            0 :         goto generic;
    3852              :     }
    3853              : 
    3854              :   /* Last ditch attempt.  See if the reference is to an intrinsic
    3855              :      that possesses a matching interface.  14.1.2.4  */
    3856            7 :   sym = c->symtree->n.sym;
    3857              : 
    3858            7 :   if (!gfc_is_intrinsic (sym, 1, c->loc))
    3859              :     {
    3860            4 :       gfc_error ("There is no specific subroutine for the generic %qs at %L",
    3861              :                  sym->name, &c->loc);
    3862            4 :       return false;
    3863              :     }
    3864              : 
    3865            3 :   m = gfc_intrinsic_sub_interface (c, 0);
    3866            3 :   if (m == MATCH_YES)
    3867              :     return true;
    3868            1 :   if (m == MATCH_NO)
    3869            1 :     gfc_error ("Generic subroutine %qs at %L is not consistent with an "
    3870              :                "intrinsic subroutine interface", sym->name, &c->loc);
    3871              : 
    3872              :   return false;
    3873              : }
    3874              : 
    3875              : 
    3876              : /* Resolve a subroutine call known to be specific.  */
    3877              : 
    3878              : static match
    3879        63860 : resolve_specific_s0 (gfc_code *c, gfc_symbol *sym)
    3880              : {
    3881        63860 :   match m;
    3882              : 
    3883        63860 :   if (sym->attr.external || sym->attr.if_source == IFSRC_IFBODY)
    3884              :     {
    3885         5723 :       if (sym->attr.dummy)
    3886              :         {
    3887          263 :           sym->attr.proc = PROC_DUMMY;
    3888          263 :           goto found;
    3889              :         }
    3890              : 
    3891         5460 :       sym->attr.proc = PROC_EXTERNAL;
    3892         5460 :       goto found;
    3893              :     }
    3894              : 
    3895        58137 :   if (sym->attr.proc == PROC_MODULE || sym->attr.proc == PROC_INTERNAL)
    3896        58131 :     goto found;
    3897              : 
    3898            6 :   if (sym->attr.intrinsic)
    3899              :     {
    3900            0 :       m = gfc_intrinsic_sub_interface (c, 1);
    3901            0 :       if (m == MATCH_YES)
    3902              :         return MATCH_YES;
    3903            0 :       if (m == MATCH_NO)
    3904            0 :         gfc_error ("Subroutine %qs at %L is INTRINSIC but is not compatible "
    3905              :                    "with an intrinsic", sym->name, &c->loc);
    3906              : 
    3907              :       return MATCH_ERROR;
    3908              :     }
    3909              : 
    3910              :   return MATCH_NO;
    3911              : 
    3912        63854 : found:
    3913        63854 :   gfc_procedure_use (sym, &c->ext.actual, &c->loc);
    3914              : 
    3915        63854 :   c->resolved_sym = sym;
    3916        63854 :   if (!pure_subroutine (sym, sym->name, &c->loc))
    3917            7 :     return MATCH_ERROR;
    3918              : 
    3919              :   return MATCH_YES;
    3920              : }
    3921              : 
    3922              : 
    3923              : static bool
    3924        63854 : resolve_specific_s (gfc_code *c)
    3925              : {
    3926        63854 :   gfc_symbol *sym;
    3927        63854 :   match m;
    3928              : 
    3929        63854 :   sym = c->symtree->n.sym;
    3930              : 
    3931        63860 :   for (;;)
    3932              :     {
    3933        63860 :       m = resolve_specific_s0 (c, sym);
    3934        63860 :       if (m == MATCH_YES)
    3935              :         return true;
    3936           13 :       if (m == MATCH_ERROR)
    3937              :         return false;
    3938              : 
    3939            6 :       if (sym->ns->parent == NULL)
    3940              :         break;
    3941              : 
    3942            6 :       gfc_find_symbol (sym->name, sym->ns->parent, 1, &sym);
    3943              : 
    3944            6 :       if (sym == NULL)
    3945              :         break;
    3946              :     }
    3947              : 
    3948            0 :   sym = c->symtree->n.sym;
    3949            0 :   gfc_error ("Unable to resolve the specific subroutine %qs at %L",
    3950              :              sym->name, &c->loc);
    3951              : 
    3952            0 :   return false;
    3953              : }
    3954              : 
    3955              : 
    3956              : /* Resolve a subroutine call not known to be generic nor specific.  */
    3957              : 
    3958              : static bool
    3959        15949 : resolve_unknown_s (gfc_code *c)
    3960              : {
    3961        15949 :   gfc_symbol *sym;
    3962              : 
    3963        15949 :   sym = c->symtree->n.sym;
    3964              : 
    3965        15949 :   if (sym->attr.dummy)
    3966              :     {
    3967           26 :       sym->attr.proc = PROC_DUMMY;
    3968           26 :       goto found;
    3969              :     }
    3970              : 
    3971              :   /* See if we have an intrinsic function reference.  */
    3972              : 
    3973        15923 :   if (gfc_is_intrinsic (sym, 1, c->loc))
    3974              :     {
    3975         4313 :       if (gfc_intrinsic_sub_interface (c, 1) == MATCH_YES)
    3976              :         return true;
    3977          319 :       return false;
    3978              :     }
    3979              : 
    3980              :   /* The reference is to an external name.  */
    3981              : 
    3982        11610 : found:
    3983        11636 :   gfc_procedure_use (sym, &c->ext.actual, &c->loc);
    3984              : 
    3985        11636 :   c->resolved_sym = sym;
    3986              : 
    3987        11636 :   return pure_subroutine (sym, sym->name, &c->loc);
    3988              : }
    3989              : 
    3990              : 
    3991              : 
    3992              : static bool
    3993          805 : check_sym_import_status (gfc_symbol *sym, gfc_symtree *s, gfc_expr *e,
    3994              :                          gfc_code *c, gfc_namespace *ns)
    3995              : {
    3996          805 :   locus *here;
    3997              : 
    3998              :   /* If the type has been imported then its vtype functions are OK.  */
    3999          805 :   if (e && e->expr_type == EXPR_FUNCTION && sym->attr.vtype)
    4000              :     return true;
    4001              : 
    4002              :   if (e)
    4003          791 :     here = &e->where;
    4004              :   else
    4005            7 :     here = &c->loc;
    4006              : 
    4007          798 :   if (s && !s->import_only)
    4008          705 :     s = gfc_find_symtree (ns->sym_root, sym->name);
    4009              : 
    4010          798 :   if (ns->import_state == IMPORT_ONLY
    4011           75 :       && sym->ns != ns
    4012           58 :       && (!s || !s->import_only))
    4013              :     {
    4014           21 :       gfc_error ("F2018: C8102 %qs at %L is host associated but does not "
    4015              :                  "appear in an IMPORT or IMPORT, ONLY list", sym->name, here);
    4016           21 :       return false;
    4017              :     }
    4018          777 :   else if (ns->import_state == IMPORT_NONE
    4019           27 :            && sym->ns != ns)
    4020              :     {
    4021           12 :       gfc_error ("F2018: C8102 %qs at %L is host associated in a scope that "
    4022              :                  "has IMPORT, NONE", sym->name, here);
    4023           12 :       return false;
    4024              :     }
    4025              :   return true;
    4026              : }
    4027              : 
    4028              : 
    4029              : static bool
    4030         7354 : check_import_status (gfc_expr *e)
    4031              : {
    4032         7354 :   gfc_symtree *st;
    4033         7354 :   gfc_ref *ref;
    4034         7354 :   gfc_symbol *sym, *der;
    4035         7354 :   gfc_namespace *ns = gfc_current_ns;
    4036              : 
    4037         7354 :   switch (e->expr_type)
    4038              :     {
    4039          727 :       case EXPR_VARIABLE:
    4040          727 :       case EXPR_FUNCTION:
    4041          727 :       case EXPR_SUBSTRING:
    4042          727 :         sym = e->symtree ? e->symtree->n.sym : NULL;
    4043              : 
    4044              :         /* Check the symbol itself.  */
    4045          727 :         if (sym
    4046          727 :             && !(ns->proc_name
    4047              :                  && (sym == ns->proc_name))
    4048         1450 :             && !check_sym_import_status (sym, e->symtree, e, NULL, ns))
    4049              :           return false;
    4050              : 
    4051              :         /* Check the declared derived type.  */
    4052          717 :         if (sym->ts.type == BT_DERIVED)
    4053              :           {
    4054           16 :             der = sym->ts.u.derived;
    4055           16 :             st = gfc_find_symtree (ns->sym_root, der->name);
    4056              : 
    4057           16 :             if (!check_sym_import_status (der, st, e, NULL, ns))
    4058              :               return false;
    4059              :           }
    4060          701 :         else if (sym->ts.type == BT_CLASS && !UNLIMITED_POLY (sym))
    4061              :           {
    4062           44 :             der = CLASS_DATA (sym) ? CLASS_DATA (sym)->ts.u.derived
    4063              :                                    : sym->ts.u.derived;
    4064           44 :             st = gfc_find_symtree (ns->sym_root, der->name);
    4065              : 
    4066           44 :             if (!check_sym_import_status (der, st, e, NULL, ns))
    4067              :               return false;
    4068              :           }
    4069              : 
    4070              :         /* Check the declared derived types of component references.  */
    4071          724 :         for (ref = e->ref; ref; ref = ref->next)
    4072           20 :           if (ref->type == REF_COMPONENT)
    4073              :             {
    4074           19 :               gfc_component *c = ref->u.c.component;
    4075           19 :               if (c->ts.type == BT_DERIVED)
    4076              :                 {
    4077            7 :                   der = c->ts.u.derived;
    4078            7 :                   st = gfc_find_symtree (ns->sym_root, der->name);
    4079            7 :                   if (!check_sym_import_status (der, st, e, NULL, ns))
    4080              :                     return false;
    4081              :                 }
    4082           12 :               else if (c->ts.type == BT_CLASS && !UNLIMITED_POLY (c))
    4083              :                 {
    4084            0 :                   der = CLASS_DATA (c) ? CLASS_DATA (c)->ts.u.derived
    4085              :                                        : c->ts.u.derived;
    4086            0 :                   st = gfc_find_symtree (ns->sym_root, der->name);
    4087            0 :                   if (!check_sym_import_status (der, st, e, NULL, ns))
    4088              :                     return false;
    4089              :                 }
    4090              :             }
    4091              : 
    4092              :         break;
    4093              : 
    4094            8 :       case EXPR_ARRAY:
    4095            8 :       case EXPR_STRUCTURE:
    4096              :         /* Check the declared derived type.  */
    4097            8 :         if (e->ts.type == BT_DERIVED)
    4098              :           {
    4099            8 :             der = e->ts.u.derived;
    4100            8 :             st = gfc_find_symtree (ns->sym_root, der->name);
    4101              : 
    4102            8 :             if (!check_sym_import_status (der, st, e, NULL, ns))
    4103              :               return false;
    4104              :           }
    4105            0 :         else if (e->ts.type == BT_CLASS && !UNLIMITED_POLY (e))
    4106              :           {
    4107            0 :             der = CLASS_DATA (e) ? CLASS_DATA (e)->ts.u.derived
    4108              :                                    : e->ts.u.derived;
    4109            0 :             st = gfc_find_symtree (ns->sym_root, der->name);
    4110              : 
    4111            0 :             if (!check_sym_import_status (der, st, e, NULL, ns))
    4112              :               return false;
    4113              :           }
    4114              : 
    4115              :         break;
    4116              : 
    4117              : /* Either not applicable or resolved away
    4118              :       case EXPR_OP:
    4119              :       case EXPR_UNKNOWN:
    4120              :       case EXPR_CONSTANT:
    4121              :       case EXPR_NULL:
    4122              :       case EXPR_COMPCALL:
    4123              :       case EXPR_PPC: */
    4124              : 
    4125              :       default:
    4126              :         break;
    4127              :     }
    4128              : 
    4129              :   return true;
    4130              : }
    4131              : 
    4132              : 
    4133              : /* If an elemental call has an INTENT_IN argument that has a dependency on an
    4134              :    argument which is not INTENT_IN and requires a temporary, build a temporary
    4135              :    for the INTENT_IN actual argument as well.  */
    4136              : 
    4137              : static void
    4138              : add_temp_assign_before_call (gfc_code *, gfc_namespace *, gfc_expr **);
    4139              : 
    4140              : static void
    4141         5257 : resolve_elemental_dependencies (gfc_code *c)
    4142              : {
    4143         5257 :   gfc_actual_arglist *arg1 = c->ext.actual;
    4144         5257 :   gfc_actual_arglist *arg2 = NULL;
    4145         5257 :   gfc_formal_arglist *formal1 = c->resolved_sym->formal;
    4146         5257 :   gfc_formal_arglist *formal2 = NULL;
    4147         5257 :   gfc_expr *expr1;
    4148         5257 :   gfc_expr **expr2;
    4149              : 
    4150        16645 :   for (; arg1 && formal1; arg1 = arg1->next, formal1 = formal1->next)
    4151              :     {
    4152        11388 :       if (formal1->sym
    4153        11388 :           && (formal1->sym->attr.intent == INTENT_IN
    4154         3536 :               || formal1->sym->attr.value))
    4155         8110 :         continue;
    4156              : 
    4157         3278 :       if (!arg1->expr || arg1->expr->expr_type != EXPR_VARIABLE)
    4158            0 :         continue;
    4159              : 
    4160         3278 :       arg2 = c->ext.actual;
    4161         3278 :       formal2 = c->resolved_sym->formal;
    4162        10696 :       for (; arg2 && formal2; arg2 = arg2->next, formal2 = formal2->next)
    4163              :         {
    4164         7418 :           if (arg2 == arg1 || !arg2->expr
    4165         4128 :               || !(formal2->sym && formal2->sym->attr.intent == INTENT_IN))
    4166         3304 :             continue;
    4167              : 
    4168         4114 :           expr1 = arg1->expr;
    4169         4114 :           expr2 = &arg2->expr;
    4170              : 
    4171              :           /* If the arg1 has something horrible like a vector index and
    4172              :              there is a dependency between arg1 and arg2, build a
    4173              :              temporary from arg2, assign the arg2 to it and use the
    4174              :              temporary in the call expression.  */
    4175         2009 :           if (expr1->rank && gfc_ref_needs_temporary_p (expr1->ref)
    4176         4234 :               && gfc_check_dependency (expr1, *expr2, false))
    4177           36 :             add_temp_assign_before_call (c, gfc_current_ns, expr2);
    4178              :         }
    4179              :     }
    4180         5257 : }
    4181              : 
    4182              : /* Resolve a subroutine call.  Although it was tempting to use the same code
    4183              :    for functions, subroutines and functions are stored differently and this
    4184              :    makes things awkward.  */
    4185              : 
    4186              : 
    4187              : static bool
    4188        82829 : resolve_call (gfc_code *c)
    4189              : {
    4190        82829 :   bool t;
    4191        82829 :   procedure_type ptype = PROC_INTRINSIC;
    4192        82829 :   gfc_symbol *csym, *sym;
    4193        82829 :   bool no_formal_args;
    4194              : 
    4195        82829 :   csym = c->symtree ? c->symtree->n.sym : NULL;
    4196              : 
    4197        82829 :   if (csym && csym->ts.type != BT_UNKNOWN)
    4198              :     {
    4199            4 :       gfc_error ("%qs at %L has a type, which is not consistent with "
    4200              :                  "the CALL at %L", csym->name, &csym->declared_at, &c->loc);
    4201            4 :       return false;
    4202              :     }
    4203              : 
    4204        82825 :   if (csym && gfc_current_ns->parent && csym->ns != gfc_current_ns)
    4205              :     {
    4206        17605 :       gfc_symtree *st;
    4207        17605 :       gfc_find_sym_tree (c->symtree->name, gfc_current_ns, 1, &st);
    4208        17605 :       sym = st ? st->n.sym : NULL;
    4209        17605 :       if (sym && csym != sym
    4210            3 :               && sym->ns == gfc_current_ns
    4211            3 :               && sym->attr.flavor == FL_PROCEDURE
    4212            3 :               && sym->attr.contained)
    4213              :         {
    4214            3 :           sym->refs++;
    4215            3 :           if (csym->attr.generic)
    4216            2 :             c->symtree->n.sym = sym;
    4217              :           else
    4218            1 :             c->symtree = st;
    4219            3 :           csym = c->symtree->n.sym;
    4220              :         }
    4221              :     }
    4222              : 
    4223              :   /* If this ia a deferred TBP, c->expr1 will be set.  */
    4224        82825 :   if (!c->expr1 && csym)
    4225              :     {
    4226        81072 :       if (csym->attr.abstract)
    4227              :         {
    4228            1 :           gfc_error ("ABSTRACT INTERFACE %qs must not be referenced at %L",
    4229              :                     csym->name, &c->loc);
    4230            1 :           return false;
    4231              :         }
    4232              : 
    4233              :       /* Subroutines without the RECURSIVE attribution are not allowed to
    4234              :          call themselves.  */
    4235        81071 :       if (is_illegal_recursion (csym, gfc_current_ns))
    4236              :         {
    4237            4 :           if (csym->attr.entry && csym->ns->entries)
    4238            2 :             gfc_error ("ENTRY %qs at %L cannot be called recursively, "
    4239              :                        "as subroutine %qs is not RECURSIVE",
    4240            2 :                        csym->name, &c->loc, csym->ns->entries->sym->name);
    4241              :           else
    4242            2 :             gfc_error ("SUBROUTINE %qs at %L cannot be called recursively, "
    4243              :                        "as it is not RECURSIVE", csym->name, &c->loc);
    4244              : 
    4245        82824 :           t = false;
    4246              :         }
    4247              :     }
    4248              : 
    4249              :   /* Switch off assumed size checking and do this again for certain kinds
    4250              :      of procedure, once the procedure itself is resolved.  */
    4251        82824 :   need_full_assumed_size++;
    4252              : 
    4253        82824 :   if (csym)
    4254        82824 :     ptype = csym->attr.proc;
    4255              : 
    4256        82824 :   no_formal_args = csym && is_external_proc (csym)
    4257        15736 :                         && gfc_sym_get_dummy_args (csym) == NULL;
    4258        82824 :   if (!resolve_actual_arglist (c->ext.actual, ptype, no_formal_args))
    4259              :     return false;
    4260              : 
    4261              :   /* Resume assumed_size checking.  */
    4262        82790 :   need_full_assumed_size--;
    4263              : 
    4264              :   /* If 'implicit none (external)' and the symbol is a dummy argument,
    4265              :      check for an 'external' attribute.  */
    4266        82790 :   if (csym->ns->has_implicit_none_export
    4267         4486 :       && csym->attr.external == 0 && csym->attr.dummy == 1)
    4268              :     {
    4269            1 :       gfc_error ("Dummy procedure %qs at %L requires an EXTERNAL attribute",
    4270              :                  csym->name, &c->loc);
    4271            1 :       return false;
    4272              :     }
    4273              : 
    4274              :   /* If external, check for usage.  */
    4275        82789 :   if (csym && is_external_proc (csym))
    4276        15730 :     resolve_global_procedure (csym, &c->loc, 1);
    4277              : 
    4278              :   /* If we have an external dummy argument, we want to write out its arguments
    4279              :      with -fc-prototypes-external.  Code like
    4280              : 
    4281              :      subroutine foo(a,n)
    4282              :        external a
    4283              :        if (n == 1) call a(1)
    4284              :        if (n == 2) call a(2,3)
    4285              :      end subroutine foo
    4286              : 
    4287              :      is actually legal Fortran, but it is not possible to generate a C23-
    4288              :      compliant prototype for this, so we just record the fact here and
    4289              :      handle that during -fc-prototypes-external processing.  */
    4290              : 
    4291        82789 :   if (warn_external_argument_mismatch && csym && csym->attr.dummy
    4292           14 :       && csym->attr.external)
    4293              :     {
    4294           14 :       if (csym->formal)
    4295              :         {
    4296            6 :           bool conflict;
    4297            6 :           conflict = !gfc_compare_actual_formal (&c->ext.actual, csym->formal,
    4298              :                                                  0, 0, 0, NULL);
    4299            6 :           if (conflict)
    4300              :             {
    4301            6 :               csym->ext_dummy_arglist_mismatch = 1;
    4302            6 :               gfc_warning (OPT_Wexternal_argument_mismatch,
    4303              :                            "Different argument lists in external dummy "
    4304              :                            "subroutine %s at %L and %L", csym->name,
    4305              :                            &c->loc, &csym->other_loc);
    4306              :             }
    4307              :         }
    4308            8 :       else if (!csym->formal_resolved)
    4309              :         {
    4310            7 :           gfc_get_formal_from_actual_arglist (csym, c->ext.actual);
    4311            7 :           csym->other_loc = c->loc;
    4312              :         }
    4313              :     }
    4314              : 
    4315        82789 :   t = true;
    4316        82789 :   if (c->resolved_sym == NULL)
    4317              :     {
    4318        82684 :       c->resolved_isym = NULL;
    4319        82684 :       switch (procedure_kind (csym))
    4320              :         {
    4321         2881 :         case PTYPE_GENERIC:
    4322         2881 :           t = resolve_generic_s (c);
    4323         2881 :           break;
    4324              : 
    4325        63854 :         case PTYPE_SPECIFIC:
    4326        63854 :           t = resolve_specific_s (c);
    4327        63854 :           break;
    4328              : 
    4329        15949 :         case PTYPE_UNKNOWN:
    4330        15949 :           t = resolve_unknown_s (c);
    4331        15949 :           break;
    4332              : 
    4333              :         default:
    4334              :           gfc_internal_error ("resolve_subroutine(): bad function type");
    4335              :         }
    4336              :     }
    4337              : 
    4338              :   /* Some checks of elemental subroutine actual arguments.  */
    4339        82788 :   if (!resolve_elemental_actual (NULL, c))
    4340              :     return false;
    4341              : 
    4342              :   /* Deal with complicated dependencies that the scalarizer cannot handle.  */
    4343        82780 :   if (c->resolved_sym && c->resolved_sym->attr.elemental && !no_formal_args
    4344         6206 :       && c->ext.actual && c->ext.actual->next)
    4345         5257 :     resolve_elemental_dependencies (c);
    4346              : 
    4347        82780 :   if (!c->expr1)
    4348        81027 :     update_current_proc_array_outer_dependency (csym);
    4349              :   else
    4350              :     /* Typebound procedure: Assume the worst.  */
    4351         1753 :     gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
    4352              : 
    4353        82780 :   if (c->resolved_sym
    4354        82457 :       && c->resolved_sym->attr.ext_attr & (1 << EXT_ATTR_DEPRECATED))
    4355           34 :     gfc_warning (OPT_Wdeprecated_declarations,
    4356              :                  "Using subroutine %qs at %L is deprecated",
    4357              :                  c->resolved_sym->name, &c->loc);
    4358              : 
    4359        82780 :   csym = c->resolved_sym ? c->resolved_sym : csym;
    4360        82780 :   if (t && gfc_current_ns->import_state != IMPORT_NOT_SET && !c->resolved_isym
    4361            2 :       && csym != gfc_current_ns->proc_name)
    4362            1 :     return check_sym_import_status (csym, c->symtree, NULL, c, gfc_current_ns);
    4363              : 
    4364              :   return t;
    4365              : }
    4366              : 
    4367              : 
    4368              : /* Compare the shapes of two arrays that have non-NULL shapes.  If both
    4369              :    op1->shape and op2->shape are non-NULL return true if their shapes
    4370              :    match.  If both op1->shape and op2->shape are non-NULL return false
    4371              :    if their shapes do not match.  If either op1->shape or op2->shape is
    4372              :    NULL, return true.  */
    4373              : 
    4374              : static bool
    4375        33221 : compare_shapes (gfc_expr *op1, gfc_expr *op2)
    4376              : {
    4377        33221 :   bool t;
    4378        33221 :   int i;
    4379              : 
    4380        33221 :   t = true;
    4381              : 
    4382        33221 :   if (op1->shape != NULL && op2->shape != NULL)
    4383              :     {
    4384        43626 :       for (i = 0; i < op1->rank; i++)
    4385              :         {
    4386        23256 :           if (mpz_cmp (op1->shape[i], op2->shape[i]) != 0)
    4387              :            {
    4388            3 :              gfc_error ("Shapes for operands at %L and %L are not conformable",
    4389              :                         &op1->where, &op2->where);
    4390            3 :              t = false;
    4391            3 :              break;
    4392              :            }
    4393              :         }
    4394              :     }
    4395              : 
    4396        33221 :   return t;
    4397              : }
    4398              : 
    4399              : /* Convert a logical operator to the corresponding bitwise intrinsic call.
    4400              :    For example A .AND. B becomes IAND(A, B).  */
    4401              : static gfc_expr *
    4402          668 : logical_to_bitwise (gfc_expr *e)
    4403              : {
    4404          668 :   gfc_expr *tmp, *op1, *op2;
    4405          668 :   gfc_isym_id isym;
    4406          668 :   gfc_actual_arglist *args = NULL;
    4407              : 
    4408          668 :   gcc_assert (e->expr_type == EXPR_OP);
    4409              : 
    4410          668 :   isym = GFC_ISYM_NONE;
    4411          668 :   op1 = e->value.op.op1;
    4412          668 :   op2 = e->value.op.op2;
    4413              : 
    4414          668 :   switch (e->value.op.op)
    4415              :     {
    4416              :     case INTRINSIC_NOT:
    4417              :       isym = GFC_ISYM_NOT;
    4418              :       break;
    4419          126 :     case INTRINSIC_AND:
    4420          126 :       isym = GFC_ISYM_IAND;
    4421          126 :       break;
    4422          127 :     case INTRINSIC_OR:
    4423          127 :       isym = GFC_ISYM_IOR;
    4424          127 :       break;
    4425          270 :     case INTRINSIC_NEQV:
    4426          270 :       isym = GFC_ISYM_IEOR;
    4427          270 :       break;
    4428          126 :     case INTRINSIC_EQV:
    4429              :       /* "Bitwise eqv" is just the complement of NEQV === IEOR.
    4430              :          Change the old expression to NEQV, which will get replaced by IEOR,
    4431              :          and wrap it in NOT.  */
    4432          126 :       tmp = gfc_copy_expr (e);
    4433          126 :       tmp->value.op.op = INTRINSIC_NEQV;
    4434          126 :       tmp = logical_to_bitwise (tmp);
    4435          126 :       isym = GFC_ISYM_NOT;
    4436          126 :       op1 = tmp;
    4437          126 :       op2 = NULL;
    4438          126 :       break;
    4439            0 :     default:
    4440            0 :       gfc_internal_error ("logical_to_bitwise(): Bad intrinsic");
    4441              :     }
    4442              : 
    4443              :   /* Inherit the original operation's operands as arguments.  */
    4444          668 :   args = gfc_get_actual_arglist ();
    4445          668 :   args->expr = op1;
    4446          668 :   if (op2)
    4447              :     {
    4448          523 :       args->next = gfc_get_actual_arglist ();
    4449          523 :       args->next->expr = op2;
    4450              :     }
    4451              : 
    4452              :   /* Convert the expression to a function call.  */
    4453          668 :   e->expr_type = EXPR_FUNCTION;
    4454          668 :   e->value.function.actual = args;
    4455          668 :   e->value.function.isym = gfc_intrinsic_function_by_id (isym);
    4456          668 :   e->value.function.name = e->value.function.isym->name;
    4457          668 :   e->value.function.esym = NULL;
    4458              : 
    4459              :   /* Make up a pre-resolved function call symtree if we need to.  */
    4460          668 :   if (!e->symtree || !e->symtree->n.sym)
    4461              :     {
    4462          668 :       gfc_symbol *sym;
    4463          668 :       gfc_get_ha_sym_tree (e->value.function.isym->name, &e->symtree);
    4464          668 :       sym = e->symtree->n.sym;
    4465          668 :       sym->result = sym;
    4466          668 :       sym->attr.flavor = FL_PROCEDURE;
    4467          668 :       sym->attr.function = 1;
    4468          668 :       sym->attr.elemental = 1;
    4469          668 :       sym->attr.pure = 1;
    4470          668 :       sym->attr.referenced = 1;
    4471          668 :       gfc_intrinsic_symbol (sym);
    4472          668 :       gfc_commit_symbol (sym);
    4473              :     }
    4474              : 
    4475          668 :   args->name = e->value.function.isym->formal->name;
    4476          668 :   if (e->value.function.isym->formal->next)
    4477          523 :     args->next->name = e->value.function.isym->formal->next->name;
    4478              : 
    4479          668 :   return e;
    4480              : }
    4481              : 
    4482              : /* Recursively append candidate UOP to CANDIDATES.  Store the number of
    4483              :    candidates in CANDIDATES_LEN.  */
    4484              : static void
    4485          114 : lookup_uop_fuzzy_find_candidates (gfc_symtree *uop,
    4486              :                                   char **&candidates,
    4487              :                                   size_t &candidates_len)
    4488              : {
    4489          116 :   gfc_symtree *p;
    4490              : 
    4491          116 :   if (uop == NULL)
    4492              :     return;
    4493              : 
    4494              :   /* Not sure how to properly filter here.  Use all for a start.
    4495              :      n.uop.op is NULL for empty interface operators (is that legal?) disregard
    4496              :      these as i suppose they don't make terribly sense.  */
    4497              : 
    4498          116 :   if (uop->n.uop->op != NULL)
    4499            2 :     vec_push (candidates, candidates_len, uop->name);
    4500              : 
    4501          116 :   p = uop->left;
    4502          116 :   if (p)
    4503           36 :     lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
    4504              : 
    4505          116 :   p = uop->right;
    4506          116 :   if (p)
    4507              :     lookup_uop_fuzzy_find_candidates (p, candidates, candidates_len);
    4508              : }
    4509              : 
    4510              : /* Lookup user-operator OP fuzzily, taking names in UOP into account.  */
    4511              : 
    4512              : static const char*
    4513           78 : lookup_uop_fuzzy (const char *op, gfc_symtree *uop)
    4514              : {
    4515           78 :   char **candidates = NULL;
    4516           78 :   size_t candidates_len = 0;
    4517           78 :   lookup_uop_fuzzy_find_candidates (uop, candidates, candidates_len);
    4518           78 :   return gfc_closest_fuzzy_match (op, candidates);
    4519              : }
    4520              : 
    4521              : 
    4522              : /* Callback finding an impure function as an operand to an .and. or
    4523              :    .or.  expression.  Remember the last function warned about to
    4524              :    avoid double warnings when recursing.  */
    4525              : 
    4526              : static int
    4527       193692 : impure_function_callback (gfc_expr **e, int *walk_subtrees ATTRIBUTE_UNUSED,
    4528              :                           void *data)
    4529              : {
    4530       193692 :   gfc_expr *f = *e;
    4531       193692 :   const char *name;
    4532       193692 :   static gfc_expr *last = NULL;
    4533       193692 :   bool *found = (bool *) data;
    4534              : 
    4535       193692 :   if (f->expr_type == EXPR_FUNCTION)
    4536              :     {
    4537        11961 :       *found = 1;
    4538        11961 :       if (f != last && !gfc_pure_function (f, &name)
    4539        13264 :           && !gfc_implicit_pure_function (f))
    4540              :         {
    4541         1164 :           if (name)
    4542         1164 :             gfc_warning (OPT_Wfunction_elimination,
    4543              :                          "Impure function %qs at %L might not be evaluated",
    4544              :                          name, &f->where);
    4545              :           else
    4546            0 :             gfc_warning (OPT_Wfunction_elimination,
    4547              :                          "Impure function at %L might not be evaluated",
    4548              :                          &f->where);
    4549              :         }
    4550        11961 :       last = f;
    4551              :     }
    4552              : 
    4553       193692 :   return 0;
    4554              : }
    4555              : 
    4556              : /* Return true if TYPE is character based, false otherwise.  */
    4557              : 
    4558              : static int
    4559         1373 : is_character_based (bt type)
    4560              : {
    4561         1373 :   return type == BT_CHARACTER || type == BT_HOLLERITH;
    4562              : }
    4563              : 
    4564              : 
    4565              : /* If expression is a hollerith, convert it to character and issue a warning
    4566              :    for the conversion.  */
    4567              : 
    4568              : static void
    4569          408 : convert_hollerith_to_character (gfc_expr *e)
    4570              : {
    4571          408 :   if (e->ts.type == BT_HOLLERITH)
    4572              :     {
    4573          108 :       gfc_typespec t;
    4574          108 :       gfc_clear_ts (&t);
    4575          108 :       t.type = BT_CHARACTER;
    4576          108 :       t.kind = e->ts.kind;
    4577          108 :       gfc_convert_type_warn (e, &t, 2, 1);
    4578              :     }
    4579          408 : }
    4580              : 
    4581              : /* Convert to numeric and issue a warning for the conversion.  */
    4582              : 
    4583              : static void
    4584          240 : convert_to_numeric (gfc_expr *a, gfc_expr *b)
    4585              : {
    4586          240 :   gfc_typespec t;
    4587          240 :   gfc_clear_ts (&t);
    4588          240 :   t.type = b->ts.type;
    4589          240 :   t.kind = b->ts.kind;
    4590          240 :   gfc_convert_type_warn (a, &t, 2, 1);
    4591          240 : }
    4592              : 
    4593              : /* Resolve an operator expression node.  This can involve replacing the
    4594              :    operation with a user defined function call.  CHECK_INTERFACES is a
    4595              :    helper macro.  */
    4596              : 
    4597              : #define CHECK_INTERFACES \
    4598              :   { \
    4599              :     match m = gfc_extend_expr (e); \
    4600              :     if (m == MATCH_YES) \
    4601              :       return true; \
    4602              :     if (m == MATCH_ERROR) \
    4603              :       return false; \
    4604              :   }
    4605              : 
    4606              : static bool
    4607       536920 : resolve_operator (gfc_expr *e)
    4608              : {
    4609       536920 :   gfc_expr *op1, *op2;
    4610              :   /* One error uses 3 names; additional space for wording (also via gettext). */
    4611       536920 :   bool t = true;
    4612              : 
    4613              :   /* Reduce stacked parentheses to single pair  */
    4614       536920 :   while (e->expr_type == EXPR_OP
    4615       537078 :          && e->value.op.op == INTRINSIC_PARENTHESES
    4616        23574 :          && e->value.op.op1->expr_type == EXPR_OP
    4617       553849 :          && e->value.op.op1->value.op.op == INTRINSIC_PARENTHESES)
    4618              :     {
    4619          158 :       gfc_expr *tmp = gfc_copy_expr (e->value.op.op1);
    4620          158 :       gfc_replace_expr (e, tmp);
    4621              :     }
    4622              : 
    4623              :   /* Resolve all subnodes-- give them types.  */
    4624              : 
    4625       536920 :   switch (e->value.op.op)
    4626              :     {
    4627       484633 :     default:
    4628       484633 :       if (!gfc_resolve_expr (e->value.op.op2))
    4629       536920 :         t = false;
    4630              : 
    4631              :     /* Fall through.  */
    4632              : 
    4633       536920 :     case INTRINSIC_NOT:
    4634       536920 :     case INTRINSIC_UPLUS:
    4635       536920 :     case INTRINSIC_UMINUS:
    4636       536920 :     case INTRINSIC_PARENTHESES:
    4637       536920 :       if (!gfc_resolve_expr (e->value.op.op1))
    4638              :         return false;
    4639       536759 :       if (e->value.op.op1
    4640       536750 :           && e->value.op.op1->ts.type == BT_BOZ && !e->value.op.op2)
    4641              :         {
    4642            0 :           gfc_error ("BOZ literal constant at %L cannot be an operand of "
    4643            0 :                      "unary operator %qs", &e->value.op.op1->where,
    4644              :                      gfc_op2string (e->value.op.op));
    4645            0 :           return false;
    4646              :         }
    4647       536759 :       if (flag_unsigned && pedantic && e->ts.type == BT_UNSIGNED
    4648            6 :           && e->value.op.op == INTRINSIC_UMINUS)
    4649              :         {
    4650            2 :           gfc_error ("Negation of unsigned expression at %L not permitted ",
    4651              :                      &e->value.op.op1->where);
    4652            2 :           return false;
    4653              :         }
    4654       536757 :       break;
    4655              :     }
    4656              : 
    4657              :   /* Typecheck the new node.  */
    4658              : 
    4659       536757 :   op1 = e->value.op.op1;
    4660       536757 :   op2 = e->value.op.op2;
    4661       536757 :   if (op1 == NULL && op2 == NULL)
    4662              :     return false;
    4663              :   /* Error out if op2 did not resolve. We already diagnosed op1.  */
    4664       536748 :   if (t == false)
    4665              :     return false;
    4666              : 
    4667              :   /* op1 and op2 cannot both be BOZ.  */
    4668       536682 :   if (op1 && op1->ts.type == BT_BOZ
    4669            0 :       && op2 && op2->ts.type == BT_BOZ)
    4670              :     {
    4671            0 :       gfc_error ("Operands at %L and %L cannot appear as operands of "
    4672            0 :                  "binary operator %qs", &op1->where, &op2->where,
    4673              :                  gfc_op2string (e->value.op.op));
    4674            0 :       return false;
    4675              :     }
    4676              : 
    4677       536682 :   if ((op1 && op1->expr_type == EXPR_NULL)
    4678       536680 :       || (op2 && op2->expr_type == EXPR_NULL))
    4679              :     {
    4680            3 :       CHECK_INTERFACES
    4681            3 :       gfc_error ("Invalid context for NULL() pointer at %L", &e->where);
    4682            3 :       return false;
    4683              :     }
    4684              : 
    4685       536679 :   switch (e->value.op.op)
    4686              :     {
    4687         8244 :     case INTRINSIC_UPLUS:
    4688         8244 :     case INTRINSIC_UMINUS:
    4689         8244 :       if (op1->ts.type == BT_INTEGER
    4690              :           || op1->ts.type == BT_REAL
    4691              :           || op1->ts.type == BT_COMPLEX
    4692              :           || op1->ts.type == BT_UNSIGNED)
    4693              :         {
    4694         8175 :           e->ts = op1->ts;
    4695         8175 :           break;
    4696              :         }
    4697              : 
    4698           69 :       CHECK_INTERFACES
    4699           43 :       gfc_error ("Operand of unary numeric operator %qs at %L is %s",
    4700              :                  gfc_op2string (e->value.op.op), &e->where, gfc_typename (e));
    4701           43 :       return false;
    4702              : 
    4703       156115 :     case INTRINSIC_POWER:
    4704       156115 :     case INTRINSIC_PLUS:
    4705       156115 :     case INTRINSIC_MINUS:
    4706       156115 :     case INTRINSIC_TIMES:
    4707       156115 :     case INTRINSIC_DIVIDE:
    4708              : 
    4709              :       /* UNSIGNED cannot appear in a mixed expression without explicit
    4710              :              conversion.  */
    4711       156115 :       if (flag_unsigned &&  gfc_invalid_unsigned_ops (op1, op2))
    4712              :         {
    4713            3 :           CHECK_INTERFACES
    4714            3 :           gfc_error ("Operands of binary numeric operator %qs at %L are "
    4715              :                      "%s/%s", gfc_op2string (e->value.op.op), &e->where,
    4716              :                      gfc_typename (op1), gfc_typename (op2));
    4717            3 :           return false;
    4718              :         }
    4719              : 
    4720       156112 :       if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
    4721              :         {
    4722              :           /* Do not perform conversions if operands are not conformable as
    4723              :              required for the binary intrinsic operators (F2018:10.1.5).
    4724              :              Defer to a possibly overloading user-defined operator.  */
    4725       155658 :           if (!gfc_op_rank_conformable (op1, op2))
    4726              :             {
    4727           36 :               CHECK_INTERFACES
    4728            0 :               gfc_error ("Inconsistent ranks for operator at %L and %L",
    4729            0 :                          &op1->where, &op2->where);
    4730            0 :               return false;
    4731              :             }
    4732              : 
    4733       155622 :           gfc_type_convert_binary (e, 1);
    4734       155622 :           break;
    4735              :         }
    4736              : 
    4737          454 :       if (op1->ts.type == BT_DERIVED || op2->ts.type == BT_DERIVED)
    4738              :         {
    4739          225 :           CHECK_INTERFACES
    4740            2 :           gfc_error ("Unexpected derived-type entities in binary intrinsic "
    4741              :                      "numeric operator %qs at %L",
    4742              :                      gfc_op2string (e->value.op.op), &e->where);
    4743            2 :           return false;
    4744              :         }
    4745              :       else
    4746              :         {
    4747          229 :           CHECK_INTERFACES
    4748            3 :           gfc_error ("Operands of binary numeric operator %qs at %L are %s/%s",
    4749              :                      gfc_op2string (e->value.op.op), &e->where, gfc_typename (op1),
    4750              :                      gfc_typename (op2));
    4751            3 :           return false;
    4752              :         }
    4753              : 
    4754         2279 :     case INTRINSIC_CONCAT:
    4755         2279 :       if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
    4756         2254 :           && op1->ts.kind == op2->ts.kind)
    4757              :         {
    4758         2245 :           e->ts.type = BT_CHARACTER;
    4759         2245 :           e->ts.kind = op1->ts.kind;
    4760         2245 :           break;
    4761              :         }
    4762              : 
    4763           34 :       CHECK_INTERFACES
    4764           10 :       gfc_error ("Operands of string concatenation operator at %L are %s/%s",
    4765              :                  &e->where, gfc_typename (op1), gfc_typename (op2));
    4766           10 :       return false;
    4767              : 
    4768        69842 :     case INTRINSIC_AND:
    4769        69842 :     case INTRINSIC_OR:
    4770        69842 :     case INTRINSIC_EQV:
    4771        69842 :     case INTRINSIC_NEQV:
    4772        69842 :       if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
    4773              :         {
    4774        69291 :           e->ts.type = BT_LOGICAL;
    4775        69291 :           e->ts.kind = gfc_kind_max (op1, op2);
    4776        69291 :           if (op1->ts.kind < e->ts.kind)
    4777          140 :             gfc_convert_type (op1, &e->ts, 2);
    4778        69151 :           else if (op2->ts.kind < e->ts.kind)
    4779          117 :             gfc_convert_type (op2, &e->ts, 2);
    4780              : 
    4781        69291 :           if (flag_frontend_optimize &&
    4782        58216 :             (e->value.op.op == INTRINSIC_AND || e->value.op.op == INTRINSIC_OR))
    4783              :             {
    4784              :               /* Warn about short-circuiting
    4785              :                  with impure function as second operand.  */
    4786        52181 :               bool op2_f = false;
    4787        52181 :               gfc_expr_walker (&op2, impure_function_callback, &op2_f);
    4788              :             }
    4789              :           break;
    4790              :         }
    4791              : 
    4792              :       /* Logical ops on integers become bitwise ops with -fdec.  */
    4793          551 :       else if (flag_dec
    4794          523 :                && (op1->ts.type == BT_INTEGER || op2->ts.type == BT_INTEGER))
    4795              :         {
    4796          523 :           e->ts.type = BT_INTEGER;
    4797          523 :           e->ts.kind = gfc_kind_max (op1, op2);
    4798          523 :           if (op1->ts.type != e->ts.type || op1->ts.kind != e->ts.kind)
    4799          289 :             gfc_convert_type (op1, &e->ts, 1);
    4800          523 :           if (op2->ts.type != e->ts.type || op2->ts.kind != e->ts.kind)
    4801          144 :             gfc_convert_type (op2, &e->ts, 1);
    4802          523 :           e = logical_to_bitwise (e);
    4803          523 :           goto simplify_op;
    4804              :         }
    4805              : 
    4806           28 :       CHECK_INTERFACES
    4807           16 :       gfc_error ("Operands of logical operator %qs at %L are %s/%s",
    4808              :                  gfc_op2string (e->value.op.op), &e->where, gfc_typename (op1),
    4809              :                  gfc_typename (op2));
    4810           16 :       return false;
    4811              : 
    4812        20611 :     case INTRINSIC_NOT:
    4813              :       /* Logical ops on integers become bitwise ops with -fdec.  */
    4814        20611 :       if (flag_dec && op1->ts.type == BT_INTEGER)
    4815              :         {
    4816           19 :           e->ts.type = BT_INTEGER;
    4817           19 :           e->ts.kind = op1->ts.kind;
    4818           19 :           e = logical_to_bitwise (e);
    4819           19 :           goto simplify_op;
    4820              :         }
    4821              : 
    4822        20592 :       if (op1->ts.type == BT_LOGICAL)
    4823              :         {
    4824        20586 :           e->ts.type = BT_LOGICAL;
    4825        20586 :           e->ts.kind = op1->ts.kind;
    4826        20586 :           break;
    4827              :         }
    4828              : 
    4829            6 :       CHECK_INTERFACES
    4830            3 :       gfc_error ("Operand of .not. operator at %L is %s", &e->where,
    4831              :                  gfc_typename (op1));
    4832            3 :       return false;
    4833              : 
    4834        21691 :     case INTRINSIC_GT:
    4835        21691 :     case INTRINSIC_GT_OS:
    4836        21691 :     case INTRINSIC_GE:
    4837        21691 :     case INTRINSIC_GE_OS:
    4838        21691 :     case INTRINSIC_LT:
    4839        21691 :     case INTRINSIC_LT_OS:
    4840        21691 :     case INTRINSIC_LE:
    4841        21691 :     case INTRINSIC_LE_OS:
    4842        21691 :       if (op1->ts.type == BT_COMPLEX || op2->ts.type == BT_COMPLEX)
    4843              :         {
    4844           18 :           CHECK_INTERFACES
    4845            0 :           gfc_error ("COMPLEX quantities cannot be compared at %L", &e->where);
    4846            0 :           return false;
    4847              :         }
    4848              : 
    4849              :       /* Fall through.  */
    4850              : 
    4851       255890 :     case INTRINSIC_EQ:
    4852       255890 :     case INTRINSIC_EQ_OS:
    4853       255890 :     case INTRINSIC_NE:
    4854       255890 :     case INTRINSIC_NE_OS:
    4855              : 
    4856       255890 :       if (flag_dec
    4857         1038 :           && is_character_based (op1->ts.type)
    4858       256225 :           && is_character_based (op2->ts.type))
    4859              :         {
    4860          204 :           convert_hollerith_to_character (op1);
    4861          204 :           convert_hollerith_to_character (op2);
    4862              :         }
    4863              : 
    4864       255890 :       if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
    4865        38796 :           && op1->ts.kind == op2->ts.kind)
    4866              :         {
    4867        38759 :           e->ts.type = BT_LOGICAL;
    4868        38759 :           e->ts.kind = gfc_default_logical_kind;
    4869        38759 :           break;
    4870              :         }
    4871              : 
    4872              :       /* If op1 is BOZ, then op2 is not!.  Try to convert to type of op2.  */
    4873       217131 :       if (op1->ts.type == BT_BOZ)
    4874              :         {
    4875            0 :           if (gfc_invalid_boz (G_("BOZ literal constant near %L cannot appear "
    4876              :                                "as an operand of a relational operator"),
    4877              :                                &op1->where))
    4878              :             return false;
    4879              : 
    4880            0 :           if (op2->ts.type == BT_INTEGER && !gfc_boz2int (op1, op2->ts.kind))
    4881              :             return false;
    4882              : 
    4883            0 :           if (op2->ts.type == BT_REAL && !gfc_boz2real (op1, op2->ts.kind))
    4884              :             return false;
    4885              :         }
    4886              : 
    4887              :       /* If op2 is BOZ, then op1 is not!.  Try to convert to type of op2. */
    4888       217131 :       if (op2->ts.type == BT_BOZ)
    4889              :         {
    4890            0 :           if (gfc_invalid_boz (G_("BOZ literal constant near %L cannot appear"
    4891              :                                " as an operand of a relational operator"),
    4892              :                                 &op2->where))
    4893              :             return false;
    4894              : 
    4895            0 :           if (op1->ts.type == BT_INTEGER && !gfc_boz2int (op2, op1->ts.kind))
    4896              :             return false;
    4897              : 
    4898            0 :           if (op1->ts.type == BT_REAL && !gfc_boz2real (op2, op1->ts.kind))
    4899              :             return false;
    4900              :         }
    4901       217131 :       if (flag_dec
    4902       217131 :           && op1->ts.type == BT_HOLLERITH && gfc_numeric_ts (&op2->ts))
    4903          120 :         convert_to_numeric (op1, op2);
    4904              : 
    4905       217131 :       if (flag_dec
    4906       217131 :           && gfc_numeric_ts (&op1->ts) && op2->ts.type == BT_HOLLERITH)
    4907          120 :         convert_to_numeric (op2, op1);
    4908              : 
    4909       217131 :       if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
    4910              :         {
    4911              :           /* Do not perform conversions if operands are not conformable as
    4912              :              required for the binary intrinsic operators (F2018:10.1.5).
    4913              :              Defer to a possibly overloading user-defined operator.  */
    4914       216002 :           if (!gfc_op_rank_conformable (op1, op2))
    4915              :             {
    4916           70 :               CHECK_INTERFACES
    4917            0 :               gfc_error ("Inconsistent ranks for operator at %L and %L",
    4918            0 :                          &op1->where, &op2->where);
    4919            0 :               return false;
    4920              :             }
    4921              : 
    4922       215932 :           if (flag_unsigned  && gfc_invalid_unsigned_ops (op1, op2))
    4923              :             {
    4924            1 :               CHECK_INTERFACES
    4925            1 :               gfc_error ("Inconsistent types for operator at %L and %L: "
    4926            1 :                          "%s and %s", &op1->where, &op2->where,
    4927              :                          gfc_typename (op1), gfc_typename (op2));
    4928            1 :               return false;
    4929              :             }
    4930              : 
    4931       215931 :           gfc_type_convert_binary (e, 1);
    4932              : 
    4933       215931 :           e->ts.type = BT_LOGICAL;
    4934       215931 :           e->ts.kind = gfc_default_logical_kind;
    4935              : 
    4936       215931 :           if (warn_compare_reals)
    4937              :             {
    4938           70 :               gfc_intrinsic_op op = e->value.op.op;
    4939              : 
    4940              :               /* Type conversion has made sure that the types of op1 and op2
    4941              :                  agree, so it is only necessary to check the first one.   */
    4942           70 :               if ((op1->ts.type == BT_REAL || op1->ts.type == BT_COMPLEX)
    4943           13 :                   && (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS
    4944            6 :                       || op == INTRINSIC_NE || op == INTRINSIC_NE_OS))
    4945              :                 {
    4946           13 :                   const char *msg;
    4947              : 
    4948           13 :                   if (op == INTRINSIC_EQ || op == INTRINSIC_EQ_OS)
    4949              :                     msg = G_("Equality comparison for %s at %L");
    4950              :                   else
    4951            6 :                     msg = G_("Inequality comparison for %s at %L");
    4952              : 
    4953           13 :                   gfc_warning (OPT_Wcompare_reals, msg,
    4954              :                                gfc_typename (op1), &op1->where);
    4955              :                 }
    4956              :             }
    4957              : 
    4958              :           break;
    4959              :         }
    4960              : 
    4961         1129 :       if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
    4962              :         {
    4963            2 :           CHECK_INTERFACES
    4964            4 :           gfc_error ("Logicals at %L must be compared with %s instead of %s",
    4965              :                      &e->where,
    4966            2 :                      (e->value.op.op == INTRINSIC_EQ || e->value.op.op == INTRINSIC_EQ_OS)
    4967              :                       ? ".eqv." : ".neqv.", gfc_op2string (e->value.op.op));
    4968            2 :         }
    4969              :       else
    4970              :         {
    4971         1127 :           CHECK_INTERFACES
    4972          113 :           gfc_error ("Operands of comparison operator %qs at %L are %s/%s",
    4973              :                      gfc_op2string (e->value.op.op), &e->where, gfc_typename (op1),
    4974              :                      gfc_typename (op2));
    4975              :         }
    4976              : 
    4977              :       return false;
    4978              : 
    4979          303 :     case INTRINSIC_USER:
    4980          303 :       if (e->value.op.uop->op == NULL)
    4981              :         {
    4982           78 :           const char *name = e->value.op.uop->name;
    4983           78 :           const char *guessed;
    4984           78 :           guessed = lookup_uop_fuzzy (name, e->value.op.uop->ns->uop_root);
    4985           78 :           CHECK_INTERFACES
    4986            5 :           if (guessed)
    4987            1 :             gfc_error ("Unknown operator %qs at %L; did you mean "
    4988              :                         "%qs?", name, &e->where, guessed);
    4989              :           else
    4990            4 :             gfc_error ("Unknown operator %qs at %L", name, &e->where);
    4991              :         }
    4992          225 :       else if (op2 == NULL)
    4993              :         {
    4994           48 :           CHECK_INTERFACES
    4995            0 :           gfc_error ("Operand of user operator %qs at %L is %s",
    4996            0 :                   e->value.op.uop->name, &e->where, gfc_typename (op1));
    4997              :         }
    4998              :       else
    4999              :         {
    5000          177 :           e->value.op.uop->op->sym->attr.referenced = 1;
    5001          177 :           CHECK_INTERFACES
    5002            5 :           gfc_error ("Operands of user operator %qs at %L are %s/%s",
    5003            5 :                     e->value.op.uop->name, &e->where, gfc_typename (op1),
    5004              :                     gfc_typename (op2));
    5005              :         }
    5006              : 
    5007              :       return false;
    5008              : 
    5009        23377 :     case INTRINSIC_PARENTHESES:
    5010        23377 :       e->ts = op1->ts;
    5011        23377 :       if (e->ts.type == BT_CHARACTER)
    5012          323 :         e->ts.u.cl = op1->ts.u.cl;
    5013              :       break;
    5014              : 
    5015            0 :     default:
    5016            0 :       gfc_internal_error ("resolve_operator(): Bad intrinsic");
    5017              :     }
    5018              : 
    5019              :   /* Deal with arrayness of an operand through an operator.  */
    5020              : 
    5021       533986 :   switch (e->value.op.op)
    5022              :     {
    5023       481848 :     case INTRINSIC_PLUS:
    5024       481848 :     case INTRINSIC_MINUS:
    5025       481848 :     case INTRINSIC_TIMES:
    5026       481848 :     case INTRINSIC_DIVIDE:
    5027       481848 :     case INTRINSIC_POWER:
    5028       481848 :     case INTRINSIC_CONCAT:
    5029       481848 :     case INTRINSIC_AND:
    5030       481848 :     case INTRINSIC_OR:
    5031       481848 :     case INTRINSIC_EQV:
    5032       481848 :     case INTRINSIC_NEQV:
    5033       481848 :     case INTRINSIC_EQ:
    5034       481848 :     case INTRINSIC_EQ_OS:
    5035       481848 :     case INTRINSIC_NE:
    5036       481848 :     case INTRINSIC_NE_OS:
    5037       481848 :     case INTRINSIC_GT:
    5038       481848 :     case INTRINSIC_GT_OS:
    5039       481848 :     case INTRINSIC_GE:
    5040       481848 :     case INTRINSIC_GE_OS:
    5041       481848 :     case INTRINSIC_LT:
    5042       481848 :     case INTRINSIC_LT_OS:
    5043       481848 :     case INTRINSIC_LE:
    5044       481848 :     case INTRINSIC_LE_OS:
    5045              : 
    5046       481848 :       if (op1->rank == 0 && op2->rank == 0)
    5047       428626 :         e->rank = 0;
    5048              : 
    5049       481848 :       if (op1->rank == 0 && op2->rank != 0)
    5050              :         {
    5051         2621 :           e->rank = op2->rank;
    5052              : 
    5053         2621 :           if (e->shape == NULL)
    5054         2591 :             e->shape = gfc_copy_shape (op2->shape, op2->rank);
    5055              :         }
    5056              : 
    5057       481848 :       if (op1->rank != 0 && op2->rank == 0)
    5058              :         {
    5059        17319 :           e->rank = op1->rank;
    5060              : 
    5061        17319 :           if (e->shape == NULL)
    5062        17295 :             e->shape = gfc_copy_shape (op1->shape, op1->rank);
    5063              :         }
    5064              : 
    5065       481848 :       if (op1->rank != 0 && op2->rank != 0)
    5066              :         {
    5067        33282 :           if (op1->rank == op2->rank)
    5068              :             {
    5069        33282 :               e->rank = op1->rank;
    5070        33282 :               if (e->shape == NULL)
    5071              :                 {
    5072        33221 :                   t = compare_shapes (op1, op2);
    5073        33221 :                   if (!t)
    5074            3 :                     e->shape = NULL;
    5075              :                   else
    5076        33218 :                     e->shape = gfc_copy_shape (op1->shape, op1->rank);
    5077              :                 }
    5078              :             }
    5079              :           else
    5080              :             {
    5081              :               /* Allow higher level expressions to work.  */
    5082            0 :               e->rank = 0;
    5083              : 
    5084              :               /* Try user-defined operators, and otherwise throw an error.  */
    5085            0 :               CHECK_INTERFACES
    5086            0 :               gfc_error ("Inconsistent ranks for operator at %L and %L",
    5087            0 :                          &op1->where, &op2->where);
    5088            0 :               return false;
    5089              :             }
    5090              :         }
    5091              :       break;
    5092              : 
    5093        52138 :     case INTRINSIC_PARENTHESES:
    5094        52138 :     case INTRINSIC_NOT:
    5095        52138 :     case INTRINSIC_UPLUS:
    5096        52138 :     case INTRINSIC_UMINUS:
    5097              :       /* Simply copy arrayness attribute */
    5098        52138 :       e->rank = op1->rank;
    5099        52138 :       e->corank = op1->corank;
    5100              : 
    5101        52138 :       if (e->shape == NULL)
    5102        52128 :         e->shape = gfc_copy_shape (op1->shape, op1->rank);
    5103              : 
    5104              :       break;
    5105              : 
    5106              :     default:
    5107              :       break;
    5108              :     }
    5109              : 
    5110       534528 : simplify_op:
    5111              : 
    5112              :   /* Attempt to simplify the expression.  */
    5113            3 :   if (t)
    5114              :     {
    5115       534525 :       t = gfc_simplify_expr (e, 0);
    5116              :       /* Some calls do not succeed in simplification and return false
    5117              :          even though there is no error; e.g. variable references to
    5118              :          PARAMETER arrays.  */
    5119       534525 :       if (!gfc_is_constant_expr (e))
    5120       488394 :         t = true;
    5121              :     }
    5122              :   return t;
    5123              : }
    5124              : 
    5125              : static bool
    5126          170 : resolve_conditional (gfc_expr *expr)
    5127              : {
    5128          170 :   gfc_expr *condition, *true_expr, *false_expr;
    5129              : 
    5130          170 :   condition = expr->value.conditional.condition;
    5131          170 :   true_expr = expr->value.conditional.true_expr;
    5132          170 :   false_expr = expr->value.conditional.false_expr;
    5133              : 
    5134          340 :   if (!gfc_resolve_expr (condition) || !gfc_resolve_expr (true_expr)
    5135          340 :       || !gfc_resolve_expr (false_expr))
    5136              :     return false;
    5137              : 
    5138          170 :   if (condition->ts.type != BT_LOGICAL || condition->rank != 0)
    5139              :     {
    5140            2 :       gfc_error (
    5141              :         "Condition in conditional expression must be a scalar logical at %L",
    5142              :         &condition->where);
    5143            2 :       return false;
    5144              :     }
    5145              : 
    5146          168 :   if (true_expr->ts.type != false_expr->ts.type)
    5147              :     {
    5148            1 :       gfc_error ("expr at %L and expr at %L in conditional expression "
    5149              :                  "must have the same declared type",
    5150              :                  &true_expr->where, &false_expr->where);
    5151            1 :       return false;
    5152              :     }
    5153              : 
    5154          167 :   if (true_expr->ts.kind != false_expr->ts.kind)
    5155              :     {
    5156            1 :       gfc_error ("expr at %L and expr at %L in conditional expression "
    5157              :                  "must have the same kind parameter",
    5158              :                  &true_expr->where, &false_expr->where);
    5159            1 :       return false;
    5160              :     }
    5161              : 
    5162          166 :   if (true_expr->rank != false_expr->rank)
    5163              :     {
    5164            1 :       gfc_error ("expr at %L and expr at %L in conditional expression "
    5165              :                  "must have the same rank",
    5166              :                  &true_expr->where, &false_expr->where);
    5167            1 :       return false;
    5168              :     }
    5169              : 
    5170              :   /* TODO: support more data types for conditional expressions  */
    5171          165 :   if (true_expr->ts.type != BT_INTEGER && true_expr->ts.type != BT_LOGICAL
    5172          165 :       && true_expr->ts.type != BT_REAL && true_expr->ts.type != BT_COMPLEX
    5173           67 :       && true_expr->ts.type != BT_CHARACTER)
    5174              :     {
    5175            1 :       gfc_error (
    5176              :         "Sorry, only integer, logical, real, complex and character types are "
    5177              :         "currently supported for conditional expressions at %L",
    5178              :         &expr->where);
    5179            1 :       return false;
    5180              :     }
    5181              : 
    5182              :   /* TODO: support arrays in conditional expressions  */
    5183          164 :   if (true_expr->rank > 0)
    5184              :     {
    5185            1 :       gfc_error ("Sorry, array is currently unsupported for conditional "
    5186              :                  "expressions at %L",
    5187              :                  &expr->where);
    5188            1 :       return false;
    5189              :     }
    5190              : 
    5191          163 :   expr->ts = true_expr->ts;
    5192          163 :   expr->rank = true_expr->rank;
    5193          163 :   return true;
    5194              : }
    5195              : 
    5196              : /************** Array resolution subroutines **************/
    5197              : 
    5198              : enum compare_result
    5199              : { CMP_LT, CMP_EQ, CMP_GT, CMP_UNKNOWN };
    5200              : 
    5201              : /* Compare two integer expressions.  */
    5202              : 
    5203              : static compare_result
    5204       474615 : compare_bound (gfc_expr *a, gfc_expr *b)
    5205              : {
    5206       474615 :   int i;
    5207              : 
    5208       474615 :   if (a == NULL || a->expr_type != EXPR_CONSTANT
    5209       311712 :       || b == NULL || b->expr_type != EXPR_CONSTANT)
    5210              :     return CMP_UNKNOWN;
    5211              : 
    5212              :   /* If either of the types isn't INTEGER, we must have
    5213              :      raised an error earlier.  */
    5214              : 
    5215       214783 :   if (a->ts.type != BT_INTEGER || b->ts.type != BT_INTEGER)
    5216              :     return CMP_UNKNOWN;
    5217              : 
    5218       214779 :   i = mpz_cmp (a->value.integer, b->value.integer);
    5219              : 
    5220       214779 :   if (i < 0)
    5221              :     return CMP_LT;
    5222       100917 :   if (i > 0)
    5223        40092 :     return CMP_GT;
    5224              :   return CMP_EQ;
    5225              : }
    5226              : 
    5227              : 
    5228              : /* Compare an integer expression with an integer.  */
    5229              : 
    5230              : static compare_result
    5231        75944 : compare_bound_int (gfc_expr *a, int b)
    5232              : {
    5233        75944 :   int i;
    5234              : 
    5235        75944 :   if (a == NULL
    5236        32871 :       || a->expr_type != EXPR_CONSTANT
    5237        29918 :       || a->ts.type != BT_INTEGER)
    5238              :     return CMP_UNKNOWN;
    5239              : 
    5240        29918 :   i = mpz_cmp_si (a->value.integer, b);
    5241              : 
    5242        29918 :   if (i < 0)
    5243              :     return CMP_LT;
    5244        25444 :   if (i > 0)
    5245        21879 :     return CMP_GT;
    5246              :   return CMP_EQ;
    5247              : }
    5248              : 
    5249              : 
    5250              : /* Compare an integer expression with a mpz_t.  */
    5251              : 
    5252              : static compare_result
    5253        70561 : compare_bound_mpz_t (gfc_expr *a, mpz_t b)
    5254              : {
    5255        70561 :   int i;
    5256              : 
    5257        70561 :   if (a == NULL
    5258        57590 :       || a->expr_type != EXPR_CONSTANT
    5259        55462 :       || a->ts.type != BT_INTEGER)
    5260              :     return CMP_UNKNOWN;
    5261              : 
    5262        55459 :   i = mpz_cmp (a->value.integer, b);
    5263              : 
    5264        55459 :   if (i < 0)
    5265              :     return CMP_LT;
    5266        25245 :   if (i > 0)
    5267        10770 :     return CMP_GT;
    5268              :   return CMP_EQ;
    5269              : }
    5270              : 
    5271              : 
    5272              : /* Compute the last value of a sequence given by a triplet.
    5273              :    Return 0 if it wasn't able to compute the last value, or if the
    5274              :    sequence if empty, and 1 otherwise.  */
    5275              : 
    5276              : static int
    5277        52669 : compute_last_value_for_triplet (gfc_expr *start, gfc_expr *end,
    5278              :                                 gfc_expr *stride, mpz_t last)
    5279              : {
    5280        52669 :   mpz_t rem;
    5281              : 
    5282        52669 :   if (start == NULL || start->expr_type != EXPR_CONSTANT
    5283        37428 :       || end == NULL || end->expr_type != EXPR_CONSTANT
    5284        32676 :       || (stride != NULL && stride->expr_type != EXPR_CONSTANT))
    5285              :     return 0;
    5286              : 
    5287        32357 :   if (start->ts.type != BT_INTEGER || end->ts.type != BT_INTEGER
    5288        32356 :       || (stride != NULL && stride->ts.type != BT_INTEGER))
    5289              :     return 0;
    5290              : 
    5291         6785 :   if (stride == NULL || compare_bound_int (stride, 1) == CMP_EQ)
    5292              :     {
    5293        25697 :       if (compare_bound (start, end) == CMP_GT)
    5294              :         return 0;
    5295        24308 :       mpz_set (last, end->value.integer);
    5296        24308 :       return 1;
    5297              :     }
    5298              : 
    5299         6659 :   if (compare_bound_int (stride, 0) == CMP_GT)
    5300              :     {
    5301              :       /* Stride is positive */
    5302         5294 :       if (mpz_cmp (start->value.integer, end->value.integer) > 0)
    5303              :         return 0;
    5304              :     }
    5305              :   else
    5306              :     {
    5307              :       /* Stride is negative */
    5308         1365 :       if (mpz_cmp (start->value.integer, end->value.integer) < 0)
    5309              :         return 0;
    5310              :     }
    5311              : 
    5312         6639 :   mpz_init (rem);
    5313         6639 :   mpz_sub (rem, end->value.integer, start->value.integer);
    5314         6639 :   mpz_tdiv_r (rem, rem, stride->value.integer);
    5315         6639 :   mpz_sub (last, end->value.integer, rem);
    5316         6639 :   mpz_clear (rem);
    5317              : 
    5318         6639 :   return 1;
    5319              : }
    5320              : 
    5321              : 
    5322              : /* Compare a single dimension of an array reference to the array
    5323              :    specification.  */
    5324              : 
    5325              : static bool
    5326       220130 : check_dimension (int i, gfc_array_ref *ar, gfc_array_spec *as)
    5327              : {
    5328       220130 :   mpz_t last_value;
    5329              : 
    5330       220130 :   if (ar->dimen_type[i] == DIMEN_STAR)
    5331              :     {
    5332          544 :       gcc_assert (ar->stride[i] == NULL);
    5333              :       /* This implies [*] as [*:] and [*:3] are not possible.  */
    5334          544 :       if (ar->start[i] == NULL)
    5335              :         {
    5336          452 :           gcc_assert (ar->end[i] == NULL);
    5337              :           return true;
    5338              :         }
    5339              :     }
    5340              : 
    5341              : /* Given start, end and stride values, calculate the minimum and
    5342              :    maximum referenced indexes.  */
    5343              : 
    5344       219678 :   switch (ar->dimen_type[i])
    5345              :     {
    5346              :     case DIMEN_VECTOR:
    5347              :     case DIMEN_THIS_IMAGE:
    5348              :       break;
    5349              : 
    5350       158592 :     case DIMEN_STAR:
    5351       158592 :     case DIMEN_ELEMENT:
    5352       158592 :       if (compare_bound (ar->start[i], as->lower[i]) == CMP_LT)
    5353              :         {
    5354            2 :           if (i < as->rank)
    5355            2 :             gfc_warning (0, "Array reference at %L is out of bounds "
    5356              :                          "(%ld < %ld) in dimension %d", &ar->c_where[i],
    5357            2 :                          mpz_get_si (ar->start[i]->value.integer),
    5358            2 :                          mpz_get_si (as->lower[i]->value.integer), i+1);
    5359              :           else
    5360            0 :             gfc_warning (0, "Array reference at %L is out of bounds "
    5361              :                          "(%ld < %ld) in codimension %d", &ar->c_where[i],
    5362            0 :                          mpz_get_si (ar->start[i]->value.integer),
    5363            0 :                          mpz_get_si (as->lower[i]->value.integer),
    5364            0 :                          i + 1 - as->rank);
    5365              :           return true;
    5366              :         }
    5367       158590 :       if (compare_bound (ar->start[i], as->upper[i]) == CMP_GT)
    5368              :         {
    5369           39 :           if (i < as->rank)
    5370           39 :             gfc_warning (0, "Array reference at %L is out of bounds "
    5371              :                          "(%ld > %ld) in dimension %d", &ar->c_where[i],
    5372           39 :                          mpz_get_si (ar->start[i]->value.integer),
    5373           39 :                          mpz_get_si (as->upper[i]->value.integer), i+1);
    5374              :           else
    5375            0 :             gfc_warning (0, "Array reference at %L is out of bounds "
    5376              :                          "(%ld > %ld) in codimension %d", &ar->c_where[i],
    5377            0 :                          mpz_get_si (ar->start[i]->value.integer),
    5378            0 :                          mpz_get_si (as->upper[i]->value.integer),
    5379            0 :                          i + 1 - as->rank);
    5380              :           return true;
    5381              :         }
    5382              : 
    5383              :       break;
    5384              : 
    5385        52714 :     case DIMEN_RANGE:
    5386        52714 :       {
    5387              : #define AR_START (ar->start[i] ? ar->start[i] : as->lower[i])
    5388              : #define AR_END (ar->end[i] ? ar->end[i] : as->upper[i])
    5389              : 
    5390        52714 :         compare_result comp_start_end = compare_bound (AR_START, AR_END);
    5391        52714 :         compare_result comp_stride_zero = compare_bound_int (ar->stride[i], 0);
    5392              : 
    5393              :         /* Check for zero stride, which is not allowed.  */
    5394        52714 :         if (comp_stride_zero == CMP_EQ)
    5395              :           {
    5396            1 :             gfc_error ("Illegal stride of zero at %L", &ar->c_where[i]);
    5397            1 :             return false;
    5398              :           }
    5399              : 
    5400              :         /* if start == end || (stride > 0 && start < end)
    5401              :                            || (stride < 0 && start > end),
    5402              :            then the array section contains at least one element.  In this
    5403              :            case, there is an out-of-bounds access if
    5404              :            (start < lower || start > upper).  */
    5405        52713 :         if (comp_start_end == CMP_EQ
    5406        51951 :             || ((comp_stride_zero == CMP_GT || ar->stride[i] == NULL)
    5407        49162 :                 && comp_start_end == CMP_LT)
    5408        23065 :             || (comp_stride_zero == CMP_LT
    5409        23065 :                 && comp_start_end == CMP_GT))
    5410              :           {
    5411        30993 :             if (compare_bound (AR_START, as->lower[i]) == CMP_LT)
    5412              :               {
    5413           27 :                 gfc_warning (0, "Lower array reference at %L is out of bounds "
    5414              :                        "(%ld < %ld) in dimension %d", &ar->c_where[i],
    5415           27 :                        mpz_get_si (AR_START->value.integer),
    5416           27 :                        mpz_get_si (as->lower[i]->value.integer), i+1);
    5417           27 :                 return true;
    5418              :               }
    5419        30966 :             if (compare_bound (AR_START, as->upper[i]) == CMP_GT)
    5420              :               {
    5421           17 :                 gfc_warning (0, "Lower array reference at %L is out of bounds "
    5422              :                        "(%ld > %ld) in dimension %d", &ar->c_where[i],
    5423           17 :                        mpz_get_si (AR_START->value.integer),
    5424           17 :                        mpz_get_si (as->upper[i]->value.integer), i+1);
    5425           17 :                 return true;
    5426              :               }
    5427              :           }
    5428              : 
    5429              :         /* If we can compute the highest index of the array section,
    5430              :            then it also has to be between lower and upper.  */
    5431        52669 :         mpz_init (last_value);
    5432        52669 :         if (compute_last_value_for_triplet (AR_START, AR_END, ar->stride[i],
    5433              :                                             last_value))
    5434              :           {
    5435        30947 :             if (compare_bound_mpz_t (as->lower[i], last_value) == CMP_GT)
    5436              :               {
    5437            3 :                 gfc_warning (0, "Upper array reference at %L is out of bounds "
    5438              :                        "(%ld < %ld) in dimension %d", &ar->c_where[i],
    5439              :                        mpz_get_si (last_value),
    5440            3 :                        mpz_get_si (as->lower[i]->value.integer), i+1);
    5441            3 :                 mpz_clear (last_value);
    5442            3 :                 return true;
    5443              :               }
    5444        30944 :             if (compare_bound_mpz_t (as->upper[i], last_value) == CMP_LT)
    5445              :               {
    5446            7 :                 gfc_warning (0, "Upper array reference at %L is out of bounds "
    5447              :                        "(%ld > %ld) in dimension %d", &ar->c_where[i],
    5448              :                        mpz_get_si (last_value),
    5449            7 :                        mpz_get_si (as->upper[i]->value.integer), i+1);
    5450            7 :                 mpz_clear (last_value);
    5451            7 :                 return true;
    5452              :               }
    5453              :           }
    5454        52659 :         mpz_clear (last_value);
    5455              : 
    5456              : #undef AR_START
    5457              : #undef AR_END
    5458              :       }
    5459        52659 :       break;
    5460              : 
    5461            0 :     default:
    5462            0 :       gfc_internal_error ("check_dimension(): Bad array reference");
    5463              :     }
    5464              : 
    5465              :   return true;
    5466              : }
    5467              : 
    5468              : 
    5469              : /* Compare an array reference with an array specification.  */
    5470              : 
    5471              : static bool
    5472       432978 : compare_spec_to_ref (gfc_array_ref *ar)
    5473              : {
    5474       432978 :   gfc_array_spec *as;
    5475       432978 :   int i;
    5476              : 
    5477       432978 :   as = ar->as;
    5478       432978 :   i = as->rank - 1;
    5479              :   /* TODO: Full array sections are only allowed as actual parameters.  */
    5480       432978 :   if (as->type == AS_ASSUMED_SIZE
    5481         5810 :       && (/*ar->type == AR_FULL
    5482         5810 :           ||*/ (ar->type == AR_SECTION
    5483          523 :               && ar->dimen_type[i] == DIMEN_RANGE && ar->end[i] == NULL)))
    5484              :     {
    5485            5 :       gfc_error ("Rightmost upper bound of assumed size array section "
    5486              :                  "not specified at %L", &ar->where);
    5487            5 :       return false;
    5488              :     }
    5489              : 
    5490       432973 :   if (ar->type == AR_FULL)
    5491              :     return true;
    5492              : 
    5493       167035 :   if (as->rank != ar->dimen)
    5494              :     {
    5495           28 :       gfc_error ("Rank mismatch in array reference at %L (%d/%d)",
    5496              :                  &ar->where, ar->dimen, as->rank);
    5497           28 :       return false;
    5498              :     }
    5499              : 
    5500              :   /* ar->codimen == 0 is a local array.  */
    5501       167007 :   if (as->corank != ar->codimen && ar->codimen != 0)
    5502              :     {
    5503            0 :       gfc_error ("Coindex rank mismatch in array reference at %L (%d/%d)",
    5504              :                  &ar->where, ar->codimen, as->corank);
    5505            0 :       return false;
    5506              :     }
    5507              : 
    5508       377159 :   for (i = 0; i < as->rank; i++)
    5509       210153 :     if (!check_dimension (i, ar, as))
    5510              :       return false;
    5511              : 
    5512              :   /* Local access has no coarray spec.  */
    5513       167006 :   if (ar->codimen != 0)
    5514        19196 :     for (i = as->rank; i < as->rank + as->corank; i++)
    5515              :       {
    5516         9979 :         if (ar->dimen_type[i] != DIMEN_ELEMENT && !ar->in_allocate
    5517         6948 :             && ar->dimen_type[i] != DIMEN_THIS_IMAGE)
    5518              :           {
    5519            2 :             gfc_error ("Coindex of codimension %d must be a scalar at %L",
    5520            2 :                        i + 1 - as->rank, &ar->where);
    5521            2 :             return false;
    5522              :           }
    5523         9977 :         if (!check_dimension (i, ar, as))
    5524              :           return false;
    5525              :       }
    5526              : 
    5527              :   return true;
    5528              : }
    5529              : 
    5530              : 
    5531              : /* Resolve one part of an array index.  */
    5532              : 
    5533              : static bool
    5534       746515 : gfc_resolve_index_1 (gfc_expr *index, int check_scalar,
    5535              :                      int force_index_integer_kind)
    5536              : {
    5537       746515 :   gfc_typespec ts;
    5538              : 
    5539       746515 :   if (index == NULL)
    5540              :     return true;
    5541              : 
    5542       221614 :   if (!gfc_resolve_expr (index))
    5543              :     return false;
    5544              : 
    5545       221603 :   if (check_scalar && index->rank != 0)
    5546              :     {
    5547            2 :       gfc_error ("Array index at %L must be scalar", &index->where);
    5548            2 :       return false;
    5549              :     }
    5550              : 
    5551       221601 :   if (index->ts.type != BT_INTEGER && index->ts.type != BT_REAL)
    5552              :     {
    5553            4 :       gfc_error ("Array index at %L must be of INTEGER type, found %s",
    5554              :                  &index->where, gfc_basic_typename (index->ts.type));
    5555            4 :       return false;
    5556              :     }
    5557              : 
    5558       221597 :   if (index->ts.type == BT_REAL)
    5559          657 :     if (!gfc_notify_std (GFC_STD_LEGACY, "REAL array index at %L",
    5560              :                          &index->where))
    5561              :       return false;
    5562              : 
    5563       221597 :   if ((index->ts.kind != gfc_index_integer_kind
    5564       216548 :        && force_index_integer_kind)
    5565       189842 :       || (index->ts.type != BT_INTEGER
    5566              :           && index->ts.type != BT_UNKNOWN))
    5567              :     {
    5568        32411 :       gfc_clear_ts (&ts);
    5569        32411 :       ts.type = BT_INTEGER;
    5570        32411 :       ts.kind = gfc_index_integer_kind;
    5571              : 
    5572        32411 :       gfc_convert_type_warn (index, &ts, 2, 0);
    5573              :     }
    5574              : 
    5575              :   return true;
    5576              : }
    5577              : 
    5578              : /* Resolve one part of an array index.  */
    5579              : 
    5580              : bool
    5581       497935 : gfc_resolve_index (gfc_expr *index, int check_scalar)
    5582              : {
    5583       497935 :   return gfc_resolve_index_1 (index, check_scalar, 1);
    5584              : }
    5585              : 
    5586              : /* Resolve a dim argument to an intrinsic function.  */
    5587              : 
    5588              : bool
    5589        23915 : gfc_resolve_dim_arg (gfc_expr *dim)
    5590              : {
    5591        23915 :   if (dim == NULL)
    5592              :     return true;
    5593              : 
    5594        23915 :   if (!gfc_resolve_expr (dim))
    5595              :     return false;
    5596              : 
    5597        23915 :   if (dim->rank != 0)
    5598              :     {
    5599            0 :       gfc_error ("Argument dim at %L must be scalar", &dim->where);
    5600            0 :       return false;
    5601              : 
    5602              :     }
    5603              : 
    5604        23915 :   if (dim->ts.type != BT_INTEGER)
    5605              :     {
    5606            0 :       gfc_error ("Argument dim at %L must be of INTEGER type", &dim->where);
    5607            0 :       return false;
    5608              :     }
    5609              : 
    5610        23915 :   if (dim->ts.kind != gfc_index_integer_kind)
    5611              :     {
    5612        15306 :       gfc_typespec ts;
    5613              : 
    5614        15306 :       gfc_clear_ts (&ts);
    5615        15306 :       ts.type = BT_INTEGER;
    5616        15306 :       ts.kind = gfc_index_integer_kind;
    5617              : 
    5618        15306 :       gfc_convert_type_warn (dim, &ts, 2, 0);
    5619              :     }
    5620              : 
    5621              :   return true;
    5622              : }
    5623              : 
    5624              : /* Given an expression that contains array references, update those array
    5625              :    references to point to the right array specifications.  While this is
    5626              :    filled in during matching, this information is difficult to save and load
    5627              :    in a module, so we take care of it here.
    5628              : 
    5629              :    The idea here is that the original array reference comes from the
    5630              :    base symbol.  We traverse the list of reference structures, setting
    5631              :    the stored reference to references.  Component references can
    5632              :    provide an additional array specification.  */
    5633              : static void
    5634              : resolve_assoc_var (gfc_symbol* sym, bool resolve_target);
    5635              : 
    5636              : static bool
    5637          918 : find_array_spec (gfc_expr *e)
    5638              : {
    5639          918 :   gfc_array_spec *as;
    5640          918 :   gfc_component *c;
    5641          918 :   gfc_ref *ref;
    5642          918 :   bool class_as = false;
    5643              : 
    5644          918 :   if (e->symtree->n.sym->assoc)
    5645              :     {
    5646          221 :       if (e->symtree->n.sym->assoc->target)
    5647          221 :         gfc_resolve_expr (e->symtree->n.sym->assoc->target);
    5648          221 :       resolve_assoc_var (e->symtree->n.sym, false);
    5649              :     }
    5650              : 
    5651          918 :   if (e->symtree->n.sym->ts.type == BT_CLASS)
    5652              :     {
    5653          124 :       as = CLASS_DATA (e->symtree->n.sym)->as;
    5654          124 :       class_as = true;
    5655              :     }
    5656              :   else
    5657          794 :     as = e->symtree->n.sym->as;
    5658              : 
    5659         2093 :   for (ref = e->ref; ref; ref = ref->next)
    5660         1182 :     switch (ref->type)
    5661              :       {
    5662          920 :       case REF_ARRAY:
    5663          920 :         if (as == NULL)
    5664              :           {
    5665            7 :             locus loc = (GFC_LOCUS_IS_SET (ref->u.ar.where)
    5666           14 :                          ? ref->u.ar.where : e->where);
    5667            7 :             gfc_error ("Invalid array reference of a non-array entity at %L",
    5668              :                        &loc);
    5669            7 :             return false;
    5670              :           }
    5671              : 
    5672          913 :         ref->u.ar.as = as;
    5673          913 :         if (ref->u.ar.dimen == -1) ref->u.ar.dimen = as->rank;
    5674              :         as = NULL;
    5675              :         break;
    5676              : 
    5677          238 :       case REF_COMPONENT:
    5678          238 :         c = ref->u.c.component;
    5679          238 :         if (c->attr.dimension)
    5680              :           {
    5681          107 :             if (as != NULL && !(class_as && as == c->as))
    5682            0 :               gfc_internal_error ("find_array_spec(): unused as(1)");
    5683          107 :             as = c->as;
    5684              :           }
    5685              : 
    5686              :         break;
    5687              : 
    5688              :       case REF_SUBSTRING:
    5689              :       case REF_INQUIRY:
    5690              :         break;
    5691              :       }
    5692              : 
    5693          911 :   if (as != NULL)
    5694            0 :     gfc_internal_error ("find_array_spec(): unused as(2)");
    5695              : 
    5696              :   return true;
    5697              : }
    5698              : 
    5699              : 
    5700              : /* Resolve an array reference.  */
    5701              : 
    5702              : static bool
    5703       433692 : resolve_array_ref (gfc_array_ref *ar)
    5704              : {
    5705       433692 :   int i, check_scalar;
    5706       433692 :   gfc_expr *e;
    5707              : 
    5708       682255 :   for (i = 0; i < ar->dimen + ar->codimen; i++)
    5709              :     {
    5710       248580 :       check_scalar = ar->dimen_type[i] == DIMEN_RANGE;
    5711              : 
    5712              :       /* Do not force gfc_index_integer_kind for the start.  We can
    5713              :          do fine with any integer kind.  This avoids temporary arrays
    5714              :          created for indexing with a vector.  */
    5715       248580 :       if (!gfc_resolve_index_1 (ar->start[i], check_scalar, 0))
    5716              :         return false;
    5717       248565 :       if (!gfc_resolve_index (ar->end[i], check_scalar))
    5718              :         return false;
    5719       248563 :       if (!gfc_resolve_index (ar->stride[i], check_scalar))
    5720              :         return false;
    5721              : 
    5722       248563 :       e = ar->start[i];
    5723              : 
    5724       248563 :       if (ar->dimen_type[i] == DIMEN_UNKNOWN)
    5725       148605 :         switch (e->rank)
    5726              :           {
    5727       147507 :           case 0:
    5728       147507 :             ar->dimen_type[i] = DIMEN_ELEMENT;
    5729       147507 :             break;
    5730              : 
    5731         1098 :           case 1:
    5732         1098 :             ar->dimen_type[i] = DIMEN_VECTOR;
    5733         1098 :             if (e->expr_type == EXPR_VARIABLE
    5734          470 :                 && e->symtree->n.sym->ts.type == BT_DERIVED)
    5735           13 :               ar->start[i] = gfc_get_parentheses (e);
    5736              :             break;
    5737              : 
    5738            0 :           default:
    5739            0 :             gfc_error ("Array index at %L is an array of rank %d",
    5740              :                        &ar->c_where[i], e->rank);
    5741            0 :             return false;
    5742              :           }
    5743              : 
    5744              :       /* Fill in the upper bound, which may be lower than the
    5745              :          specified one for something like a(2:10:5), which is
    5746              :          identical to a(2:7:5).  Only relevant for strides not equal
    5747              :          to one.  Don't try a division by zero.  */
    5748       248563 :       if (ar->dimen_type[i] == DIMEN_RANGE
    5749        72629 :           && ar->stride[i] != NULL && ar->stride[i]->expr_type == EXPR_CONSTANT
    5750         8547 :           && mpz_cmp_si (ar->stride[i]->value.integer, 1L) != 0
    5751         8400 :           && mpz_cmp_si (ar->stride[i]->value.integer, 0L) != 0)
    5752              :         {
    5753         8399 :           mpz_t size, end;
    5754              : 
    5755         8399 :           if (gfc_ref_dimen_size (ar, i, &size, &end))
    5756              :             {
    5757         6669 :               if (ar->end[i] == NULL)
    5758              :                 {
    5759         8046 :                   ar->end[i] =
    5760         4023 :                     gfc_get_constant_expr (BT_INTEGER, gfc_index_integer_kind,
    5761              :                                            &ar->where);
    5762         4023 :                   mpz_set (ar->end[i]->value.integer, end);
    5763              :                 }
    5764         2646 :               else if (ar->end[i]->ts.type == BT_INTEGER
    5765         2646 :                        && ar->end[i]->expr_type == EXPR_CONSTANT)
    5766              :                 {
    5767         2646 :                   mpz_set (ar->end[i]->value.integer, end);
    5768              :                 }
    5769              :               else
    5770            0 :                 gcc_unreachable ();
    5771              : 
    5772         6669 :               mpz_clear (size);
    5773         6669 :               mpz_clear (end);
    5774              :             }
    5775              :         }
    5776              :     }
    5777              : 
    5778       433675 :   if (ar->type == AR_FULL)
    5779              :     {
    5780       269456 :       if (ar->as->rank == 0)
    5781         3484 :         ar->type = AR_ELEMENT;
    5782              : 
    5783              :       /* Make sure array is the same as array(:,:), this way
    5784              :          we don't need to special case all the time.  */
    5785       269456 :       ar->dimen = ar->as->rank;
    5786       641400 :       for (i = 0; i < ar->dimen; i++)
    5787              :         {
    5788       371944 :           ar->dimen_type[i] = DIMEN_RANGE;
    5789              : 
    5790       371944 :           gcc_assert (ar->start[i] == NULL);
    5791       371944 :           gcc_assert (ar->end[i] == NULL);
    5792       371944 :           gcc_assert (ar->stride[i] == NULL);
    5793              :         }
    5794              :     }
    5795              : 
    5796              :   /* If the reference type is unknown, figure out what kind it is.  */
    5797              : 
    5798       433675 :   if (ar->type == AR_UNKNOWN)
    5799              :     {
    5800       151026 :       ar->type = AR_ELEMENT;
    5801       292781 :       for (i = 0; i < ar->dimen; i++)
    5802       180291 :         if (ar->dimen_type[i] == DIMEN_RANGE
    5803       180291 :             || ar->dimen_type[i] == DIMEN_VECTOR)
    5804              :           {
    5805        38536 :             ar->type = AR_SECTION;
    5806        38536 :             break;
    5807              :           }
    5808              :     }
    5809              : 
    5810       433675 :   if (!ar->as->cray_pointee && !compare_spec_to_ref (ar))
    5811              :     return false;
    5812              : 
    5813       433639 :   if (ar->as->corank && ar->codimen == 0)
    5814              :     {
    5815         2104 :       int n;
    5816         2104 :       ar->codimen = ar->as->corank;
    5817         5974 :       for (n = ar->dimen; n < ar->dimen + ar->codimen; n++)
    5818         3870 :         ar->dimen_type[n] = DIMEN_THIS_IMAGE;
    5819              :     }
    5820              : 
    5821       433639 :   if (ar->codimen)
    5822              :     {
    5823        13873 :       if (ar->team_type == TEAM_NUMBER)
    5824              :         {
    5825           60 :           if (!gfc_resolve_expr (ar->team))
    5826              :             return false;
    5827              : 
    5828           60 :           if (ar->team->rank != 0)
    5829              :             {
    5830            0 :               gfc_error ("TEAM_NUMBER argument at %L must be scalar",
    5831              :                          &ar->team->where);
    5832            0 :               return false;
    5833              :             }
    5834              : 
    5835           60 :           if (ar->team->ts.type != BT_INTEGER)
    5836              :             {
    5837            6 :               gfc_error ("TEAM_NUMBER argument at %L must be of INTEGER "
    5838              :                          "type, found %s",
    5839            6 :                          &ar->team->where,
    5840              :                          gfc_basic_typename (ar->team->ts.type));
    5841            6 :               return false;
    5842              :             }
    5843              :         }
    5844        13813 :       else if (ar->team_type == TEAM_TEAM)
    5845              :         {
    5846           42 :           if (!gfc_resolve_expr (ar->team))
    5847              :             return false;
    5848              : 
    5849           42 :           if (ar->team->rank != 0)
    5850              :             {
    5851            3 :               gfc_error ("TEAM argument at %L must be scalar",
    5852              :                          &ar->team->where);
    5853            3 :               return false;
    5854              :             }
    5855              : 
    5856           39 :           if (ar->team->ts.type != BT_DERIVED
    5857           36 :               || ar->team->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
    5858           36 :               || ar->team->ts.u.derived->intmod_sym_id != ISOFORTRAN_TEAM_TYPE)
    5859              :             {
    5860            3 :               gfc_error ("TEAM argument at %L must be of TEAM_TYPE from "
    5861              :                          "the intrinsic module ISO_FORTRAN_ENV, found %s",
    5862            3 :                          &ar->team->where,
    5863              :                          gfc_basic_typename (ar->team->ts.type));
    5864            3 :               return false;
    5865              :             }
    5866              :         }
    5867        13861 :       if (ar->stat)
    5868              :         {
    5869           62 :           if (!gfc_resolve_expr (ar->stat))
    5870              :             return false;
    5871              : 
    5872           62 :           if (ar->stat->rank != 0)
    5873              :             {
    5874            3 :               gfc_error ("STAT argument at %L must be scalar",
    5875              :                          &ar->stat->where);
    5876            3 :               return false;
    5877              :             }
    5878              : 
    5879           59 :           if (ar->stat->ts.type != BT_INTEGER)
    5880              :             {
    5881            3 :               gfc_error ("STAT argument at %L must be of INTEGER "
    5882              :                          "type, found %s",
    5883            3 :                          &ar->stat->where,
    5884              :                          gfc_basic_typename (ar->stat->ts.type));
    5885            3 :               return false;
    5886              :             }
    5887              : 
    5888           56 :           if (ar->stat->expr_type != EXPR_VARIABLE)
    5889              :             {
    5890            0 :               gfc_error ("STAT's expression at %L must be a variable",
    5891              :                          &ar->stat->where);
    5892            0 :               return false;
    5893              :             }
    5894              :         }
    5895              :     }
    5896              :   return true;
    5897              : }
    5898              : 
    5899              : 
    5900              : bool
    5901         8871 : gfc_resolve_substring (gfc_ref *ref, bool *equal_length)
    5902              : {
    5903         8871 :   int k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
    5904              : 
    5905         8871 :   if (ref->u.ss.start != NULL)
    5906              :     {
    5907         8871 :       if (!gfc_resolve_expr (ref->u.ss.start))
    5908              :         return false;
    5909              : 
    5910         8871 :       if (ref->u.ss.start->ts.type != BT_INTEGER)
    5911              :         {
    5912            1 :           gfc_error ("Substring start index at %L must be of type INTEGER",
    5913              :                      &ref->u.ss.start->where);
    5914            1 :           return false;
    5915              :         }
    5916              : 
    5917         8870 :       if (ref->u.ss.start->rank != 0)
    5918              :         {
    5919            0 :           gfc_error ("Substring start index at %L must be scalar",
    5920              :                      &ref->u.ss.start->where);
    5921            0 :           return false;
    5922              :         }
    5923              : 
    5924         8870 :       if (compare_bound_int (ref->u.ss.start, 1) == CMP_LT
    5925         8870 :           && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
    5926           37 :               || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
    5927              :         {
    5928            1 :           gfc_error ("Substring start index at %L is less than one",
    5929              :                      &ref->u.ss.start->where);
    5930            1 :           return false;
    5931              :         }
    5932              :     }
    5933              : 
    5934         8869 :   if (ref->u.ss.end != NULL)
    5935              :     {
    5936         8675 :       if (!gfc_resolve_expr (ref->u.ss.end))
    5937              :         return false;
    5938              : 
    5939         8675 :       if (ref->u.ss.end->ts.type != BT_INTEGER)
    5940              :         {
    5941            1 :           gfc_error ("Substring end index at %L must be of type INTEGER",
    5942              :                      &ref->u.ss.end->where);
    5943            1 :           return false;
    5944              :         }
    5945              : 
    5946         8674 :       if (ref->u.ss.end->rank != 0)
    5947              :         {
    5948            0 :           gfc_error ("Substring end index at %L must be scalar",
    5949              :                      &ref->u.ss.end->where);
    5950            0 :           return false;
    5951              :         }
    5952              : 
    5953         8674 :       if (ref->u.ss.length != NULL
    5954         8337 :           && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_GT
    5955         8686 :           && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
    5956           12 :               || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
    5957              :         {
    5958            4 :           gfc_error ("Substring end index at %L exceeds the string length",
    5959              :                      &ref->u.ss.start->where);
    5960            4 :           return false;
    5961              :         }
    5962              : 
    5963         8670 :       if (compare_bound_mpz_t (ref->u.ss.end,
    5964         8670 :                                gfc_integer_kinds[k].huge) == CMP_GT
    5965         8670 :           && (compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_EQ
    5966            7 :               || compare_bound (ref->u.ss.end, ref->u.ss.start) == CMP_GT))
    5967              :         {
    5968            4 :           gfc_error ("Substring end index at %L is too large",
    5969              :                      &ref->u.ss.end->where);
    5970            4 :           return false;
    5971              :         }
    5972              :       /*  If the substring has the same length as the original
    5973              :           variable, the reference itself can be deleted.  */
    5974              : 
    5975         8666 :       if (ref->u.ss.length != NULL
    5976         8329 :           && compare_bound (ref->u.ss.end, ref->u.ss.length->length) == CMP_EQ
    5977         9582 :           && compare_bound_int (ref->u.ss.start, 1) == CMP_EQ)
    5978          230 :         *equal_length = true;
    5979              :     }
    5980              : 
    5981              :   return true;
    5982              : }
    5983              : 
    5984              : 
    5985              : /* This function supplies missing substring charlens.  */
    5986              : 
    5987              : void
    5988         4576 : gfc_resolve_substring_charlen (gfc_expr *e)
    5989              : {
    5990         4576 :   gfc_ref *char_ref;
    5991         4576 :   gfc_expr *start, *end;
    5992         4576 :   gfc_typespec *ts = NULL;
    5993         4576 :   mpz_t diff;
    5994              : 
    5995         8913 :   for (char_ref = e->ref; char_ref; char_ref = char_ref->next)
    5996              :     {
    5997         7066 :       if (char_ref->type == REF_SUBSTRING || char_ref->type == REF_INQUIRY)
    5998              :         break;
    5999         4337 :       if (char_ref->type == REF_COMPONENT)
    6000          328 :         ts = &char_ref->u.c.component->ts;
    6001              :     }
    6002              : 
    6003         4576 :   if (!char_ref || char_ref->type == REF_INQUIRY)
    6004         1909 :     return;
    6005              : 
    6006         2729 :   gcc_assert (char_ref->next == NULL);
    6007              : 
    6008         2729 :   if (e->ts.u.cl)
    6009              :     {
    6010          120 :       if (e->ts.u.cl->length)
    6011          108 :         gfc_free_expr (e->ts.u.cl->length);
    6012           12 :       else if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym->attr.dummy)
    6013              :         return;
    6014              :     }
    6015              : 
    6016         2717 :   if (!e->ts.u.cl)
    6017         2609 :     e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
    6018              : 
    6019         2717 :   if (char_ref->u.ss.start)
    6020         2717 :     start = gfc_copy_expr (char_ref->u.ss.start);
    6021              :   else
    6022            0 :     start = gfc_get_int_expr (gfc_charlen_int_kind, NULL, 1);
    6023              : 
    6024         2717 :   if (char_ref->u.ss.end)
    6025         2667 :     end = gfc_copy_expr (char_ref->u.ss.end);
    6026           50 :   else if (e->expr_type == EXPR_VARIABLE)
    6027              :     {
    6028           50 :       if (!ts)
    6029           32 :         ts = &e->symtree->n.sym->ts;
    6030           50 :       end = gfc_copy_expr (ts->u.cl->length);
    6031              :     }
    6032              :   else
    6033              :     end = NULL;
    6034              : 
    6035         2717 :   if (!start || !end)
    6036              :     {
    6037           50 :       gfc_free_expr (start);
    6038           50 :       gfc_free_expr (end);
    6039           50 :       return;
    6040              :     }
    6041              : 
    6042              :   /* Length = (end - start + 1).
    6043              :      Check first whether it has a constant length.  */
    6044         2667 :   if (gfc_dep_difference (end, start, &diff))
    6045              :     {
    6046         2551 :       gfc_expr *len = gfc_get_constant_expr (BT_INTEGER, gfc_charlen_int_kind,
    6047              :                                              &e->where);
    6048              : 
    6049         2551 :       mpz_add_ui (len->value.integer, diff, 1);
    6050         2551 :       mpz_clear (diff);
    6051         2551 :       e->ts.u.cl->length = len;
    6052              :       /* The check for length < 0 is handled below */
    6053              :     }
    6054              :   else
    6055              :     {
    6056          116 :       e->ts.u.cl->length = gfc_subtract (end, start);
    6057          116 :       e->ts.u.cl->length = gfc_add (e->ts.u.cl->length,
    6058              :                                     gfc_get_int_expr (gfc_charlen_int_kind,
    6059              :                                                       NULL, 1));
    6060              :     }
    6061              : 
    6062              :   /* F2008, 6.4.1:  Both the starting point and the ending point shall
    6063              :      be within the range 1, 2, ..., n unless the starting point exceeds
    6064              :      the ending point, in which case the substring has length zero.  */
    6065              : 
    6066         2667 :   if (mpz_cmp_si (e->ts.u.cl->length->value.integer, 0) < 0)
    6067           15 :     mpz_set_si (e->ts.u.cl->length->value.integer, 0);
    6068              : 
    6069         2667 :   e->ts.u.cl->length->ts.type = BT_INTEGER;
    6070         2667 :   e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
    6071              : 
    6072              :   /* Make sure that the length is simplified.  */
    6073         2667 :   gfc_simplify_expr (e->ts.u.cl->length, 1);
    6074         2667 :   gfc_resolve_expr (e->ts.u.cl->length);
    6075              : }
    6076              : 
    6077              : 
    6078              : /* Convert an array reference to an array element so that PDT KIND and LEN
    6079              :    or inquiry references are always scalar.  */
    6080              : 
    6081              : static void
    6082           21 : reset_array_ref_to_scalar (gfc_expr *expr, gfc_ref *array_ref)
    6083              : {
    6084           21 :   gfc_expr *unity = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
    6085           21 :   int dim;
    6086              : 
    6087           21 :   array_ref->u.ar.type = AR_ELEMENT;
    6088           21 :   expr->rank = 0;
    6089              :   /* Suppress the runtime bounds check.  */
    6090           21 :   expr->no_bounds_check = 1;
    6091           42 :   for (dim = 0; dim < array_ref->u.ar.dimen; dim++)
    6092              :     {
    6093           21 :       array_ref->u.ar.dimen_type[dim] = DIMEN_ELEMENT;
    6094           21 :       if (array_ref->u.ar.start[dim])
    6095            0 :         gfc_free_expr (array_ref->u.ar.start[dim]);
    6096              : 
    6097           21 :       if (array_ref->u.ar.as && array_ref->u.ar.as->lower[dim])
    6098            9 :         array_ref->u.ar.start[dim]
    6099            9 :                         = gfc_copy_expr (array_ref->u.ar.as->lower[dim]);
    6100              :       else
    6101           12 :         array_ref->u.ar.start[dim] = gfc_copy_expr (unity);
    6102              : 
    6103           21 :       if (array_ref->u.ar.end[dim])
    6104            0 :         gfc_free_expr (array_ref->u.ar.end[dim]);
    6105           21 :       if (array_ref->u.ar.stride[dim])
    6106            0 :         gfc_free_expr (array_ref->u.ar.stride[dim]);
    6107              :     }
    6108           21 :   gfc_free_expr (unity);
    6109           21 : }
    6110              : 
    6111              : 
    6112              : /* Resolve subtype references.  */
    6113              : 
    6114              : bool
    6115       552643 : gfc_resolve_ref (gfc_expr *expr)
    6116              : {
    6117       552643 :   int current_part_dimension, n_components, seen_part_dimension;
    6118       552643 :   gfc_ref *ref, **prev, *array_ref;
    6119       552643 :   bool equal_length;
    6120       552643 :   gfc_symbol *last_pdt = NULL;
    6121              : 
    6122      1086285 :   for (ref = expr->ref; ref; ref = ref->next)
    6123       534560 :     if (ref->type == REF_ARRAY && ref->u.ar.as == NULL)
    6124              :       {
    6125          918 :         if (!find_array_spec (expr))
    6126              :           return false;
    6127              :         break;
    6128              :       }
    6129              : 
    6130      1621683 :   for (prev = &expr->ref; *prev != NULL;
    6131       534626 :        prev = *prev == NULL ? prev : &(*prev)->next)
    6132       534705 :     switch ((*prev)->type)
    6133              :       {
    6134       433692 :       case REF_ARRAY:
    6135       433692 :         if (!resolve_array_ref (&(*prev)->u.ar))
    6136              :             return false;
    6137              :         break;
    6138              : 
    6139              :       case REF_COMPONENT:
    6140              :       case REF_INQUIRY:
    6141              :         break;
    6142              : 
    6143         8590 :       case REF_SUBSTRING:
    6144         8590 :         equal_length = false;
    6145         8590 :         if (!gfc_resolve_substring (*prev, &equal_length))
    6146              :             return false;
    6147              : 
    6148         8582 :         if (expr->expr_type != EXPR_SUBSTRING && equal_length)
    6149              :           {
    6150              :             /* Remove the reference and move the charlen, if any.  */
    6151          205 :             ref = *prev;
    6152          205 :             *prev = ref->next;
    6153          205 :             ref->next = NULL;
    6154          205 :             expr->ts.u.cl = ref->u.ss.length;
    6155          205 :             ref->u.ss.length = NULL;
    6156          205 :             gfc_free_ref_list (ref);
    6157              :           }
    6158              :         break;
    6159              :       }
    6160              : 
    6161              :   /* Check constraints on part references.  */
    6162              : 
    6163       552557 :   current_part_dimension = 0;
    6164       552557 :   seen_part_dimension = 0;
    6165       552557 :   n_components = 0;
    6166       552557 :   array_ref = NULL;
    6167              : 
    6168              :   /* Use the declared type of the base symbol to initialize last_pdt when the
    6169              :      expression is not itself a PDT. This matters for ASSOCIATE variables whose
    6170              :      component reference may still point to a PDT template.  */
    6171       552557 :   if (expr->expr_type == EXPR_VARIABLE
    6172       458190 :       && (IS_PDT (expr)
    6173       457614 :           || (expr->ref && expr->symtree && IS_PDT (expr->symtree->n.sym))))
    6174         2525 :     last_pdt = expr->symtree->n.sym->ts.u.derived;
    6175              : 
    6176      1086953 :   for (ref = expr->ref; ref; ref = ref->next)
    6177              :     {
    6178       534407 :       switch (ref->type)
    6179              :         {
    6180       433614 :         case REF_ARRAY:
    6181       433614 :           array_ref = ref;
    6182       433614 :           switch (ref->u.ar.type)
    6183              :             {
    6184       265970 :             case AR_FULL:
    6185              :               /* Coarray scalar.  */
    6186       265970 :               if (ref->u.ar.as->rank == 0)
    6187              :                 {
    6188              :                   current_part_dimension = 0;
    6189              :                   break;
    6190              :                 }
    6191              :               /* Fall through.  */
    6192       307582 :             case AR_SECTION:
    6193       307582 :               current_part_dimension = 1;
    6194       307582 :               break;
    6195              : 
    6196       126032 :             case AR_ELEMENT:
    6197       126032 :               array_ref = NULL;
    6198       126032 :               current_part_dimension = 0;
    6199       126032 :               break;
    6200              : 
    6201            0 :             case AR_UNKNOWN:
    6202            0 :               gfc_internal_error ("resolve_ref(): Bad array reference");
    6203              :             }
    6204              : 
    6205              :           break;
    6206              : 
    6207        91595 :         case REF_COMPONENT:
    6208        91595 :           if (current_part_dimension || seen_part_dimension)
    6209              :             {
    6210              :               /* F03:C614.  */
    6211         7267 :               if (ref->u.c.component->attr.pointer
    6212         7264 :                   || ref->u.c.component->attr.proc_pointer
    6213         7263 :                   || (ref->u.c.component->ts.type == BT_CLASS
    6214            1 :                         && CLASS_DATA (ref->u.c.component)->attr.pointer))
    6215              :                 {
    6216            4 :                   gfc_error ("Component to the right of a part reference "
    6217              :                              "with nonzero rank must not have the POINTER "
    6218              :                              "attribute at %L", &expr->where);
    6219            4 :                   return false;
    6220              :                 }
    6221         7263 :               else if (ref->u.c.component->attr.allocatable
    6222         7257 :                         || (ref->u.c.component->ts.type == BT_CLASS
    6223            1 :                             && CLASS_DATA (ref->u.c.component)->attr.allocatable))
    6224              : 
    6225              :                 {
    6226            7 :                   gfc_error ("Component to the right of a part reference "
    6227              :                              "with nonzero rank must not have the ALLOCATABLE "
    6228              :                              "attribute at %L", &expr->where);
    6229            7 :                   return false;
    6230              :                 }
    6231              :             }
    6232              : 
    6233              :           /* Sometimes the component in a component reference is that of the
    6234              :              pdt_template. Point to the component of pdt_type instead. This
    6235              :              ensures that the component gets a backend_decl in translation.  */
    6236        91584 :           if (last_pdt)
    6237              :             {
    6238         2462 :               gfc_component *cmp = last_pdt->components;
    6239         7377 :               for (; cmp; cmp = cmp->next)
    6240         7120 :                 if (!strcmp (cmp->name, ref->u.c.component->name))
    6241              :                   {
    6242         2205 :                     ref->u.c.component = cmp;
    6243         2205 :                     break;
    6244              :                   }
    6245         2462 :               ref->u.c.sym = last_pdt;
    6246              :             }
    6247              : 
    6248              :           /* Convert pdt_templates, if necessary, and update 'last_pdt'.  */
    6249        91584 :           if (ref->u.c.component->ts.type == BT_DERIVED)
    6250              :             {
    6251        21140 :               if (ref->u.c.component->ts.u.derived->attr.pdt_template)
    6252              :                 {
    6253            0 :                   if (gfc_get_pdt_instance (ref->u.c.component->param_list,
    6254              :                                             &ref->u.c.component->ts.u.derived,
    6255              :                                             NULL) != MATCH_YES)
    6256              :                     return false;
    6257            0 :                   last_pdt = ref->u.c.component->ts.u.derived;
    6258              :                 }
    6259        21140 :               else if (ref->u.c.component->ts.u.derived->attr.pdt_type)
    6260          533 :                 last_pdt = ref->u.c.component->ts.u.derived;
    6261              :               else
    6262              :                 last_pdt = NULL;
    6263              :             }
    6264              : 
    6265              :           /* The F08 standard requires(See R425, R431, R435, and in particular
    6266              :              Note 6.7) that a PDT parameter reference be a scalar even if
    6267              :              the designator is an array."  */
    6268        91584 :           if (array_ref && last_pdt && last_pdt->attr.pdt_type
    6269          149 :               && (ref->u.c.component->attr.pdt_kind
    6270          149 :                   || ref->u.c.component->attr.pdt_len))
    6271            7 :             reset_array_ref_to_scalar (expr, array_ref);
    6272              : 
    6273        91584 :           n_components++;
    6274        91584 :           break;
    6275              : 
    6276              :         case REF_SUBSTRING:
    6277              :           break;
    6278              : 
    6279          821 :         case REF_INQUIRY:
    6280              :           /* Implement requirement in note 9.7 of F2018 that the result of the
    6281              :              LEN inquiry be a scalar.  */
    6282          821 :           if (ref->u.i == INQUIRY_LEN && array_ref
    6283           40 :               && ((expr->ts.type == BT_CHARACTER && !expr->ts.u.cl->length)
    6284           40 :                   || expr->ts.type == BT_INTEGER))
    6285           14 :             reset_array_ref_to_scalar (expr, array_ref);
    6286              :           break;
    6287              :         }
    6288              : 
    6289       534396 :       if (((ref->type == REF_COMPONENT && n_components > 1)
    6290       520905 :            || ref->next == NULL)
    6291              :           && current_part_dimension
    6292       467592 :           && seen_part_dimension)
    6293              :         {
    6294            0 :           gfc_error ("Two or more part references with nonzero rank must "
    6295              :                      "not be specified at %L", &expr->where);
    6296            0 :           return false;
    6297              :         }
    6298              : 
    6299       534396 :       if (ref->type == REF_COMPONENT)
    6300              :         {
    6301        91584 :           if (current_part_dimension)
    6302         7069 :             seen_part_dimension = 1;
    6303              : 
    6304              :           /* reset to make sure */
    6305              :           current_part_dimension = 0;
    6306              :         }
    6307              :     }
    6308              : 
    6309              :   return true;
    6310              : }
    6311              : 
    6312              : 
    6313              : /* Given an expression, determine its shape.  This is easier than it sounds.
    6314              :    Leaves the shape array NULL if it is not possible to determine the shape.  */
    6315              : 
    6316              : static void
    6317      2629004 : expression_shape (gfc_expr *e)
    6318              : {
    6319      2629004 :   mpz_t array[GFC_MAX_DIMENSIONS];
    6320      2629004 :   int i;
    6321              : 
    6322      2629004 :   if (e->rank <= 0 || e->shape != NULL)
    6323      2448931 :     return;
    6324              : 
    6325       717912 :   for (i = 0; i < e->rank; i++)
    6326       484814 :     if (!gfc_array_dimen_size (e, i, &array[i]))
    6327       180073 :       goto fail;
    6328              : 
    6329       233098 :   e->shape = gfc_get_shape (e->rank);
    6330              : 
    6331       233098 :   memcpy (e->shape, array, e->rank * sizeof (mpz_t));
    6332              : 
    6333       233098 :   return;
    6334              : 
    6335       180073 : fail:
    6336       181768 :   for (i--; i >= 0; i--)
    6337         1695 :     mpz_clear (array[i]);
    6338              : }
    6339              : 
    6340              : 
    6341              : /* Given a variable expression node, compute the rank of the expression by
    6342              :    examining the base symbol and any reference structures it may have.  */
    6343              : 
    6344              : void
    6345      2629004 : gfc_expression_rank (gfc_expr *e)
    6346              : {
    6347      2629004 :   gfc_ref *ref, *last_arr_ref = nullptr;
    6348      2629004 :   int i, rank, corank;
    6349              : 
    6350              :   /* Just to make sure, because EXPR_COMPCALL's also have an e->ref and that
    6351              :      could lead to serious confusion...  */
    6352      2629004 :   gcc_assert (e->expr_type != EXPR_COMPCALL);
    6353              : 
    6354      2629004 :   if (e->ref == NULL)
    6355              :     {
    6356      1934298 :       if (e->expr_type == EXPR_ARRAY)
    6357        73760 :         goto done;
    6358              :       /* Constructors can have a rank different from one via RESHAPE().  */
    6359              : 
    6360      1860538 :       if (e->symtree != NULL)
    6361              :         {
    6362              :           /* After errors the ts.u.derived of a CLASS might not be set.  */
    6363      1860526 :           gfc_array_spec *as = (e->symtree->n.sym->ts.type == BT_CLASS
    6364        14133 :                                 && e->symtree->n.sym->ts.u.derived
    6365        14128 :                                 && CLASS_DATA (e->symtree->n.sym))
    6366      1860526 :                                  ? CLASS_DATA (e->symtree->n.sym)->as
    6367              :                                  : e->symtree->n.sym->as;
    6368      1860526 :           if (as)
    6369              :             {
    6370          638 :               e->rank = as->rank;
    6371          638 :               e->corank = as->corank;
    6372          638 :               goto done;
    6373              :             }
    6374              :         }
    6375      1859900 :       e->rank = 0;
    6376      1859900 :       e->corank = 0;
    6377      1859900 :       goto done;
    6378              :     }
    6379              : 
    6380              :   rank = 0;
    6381              :   corank = 0;
    6382              : 
    6383      1099261 :   for (ref = e->ref; ref; ref = ref->next)
    6384              :     {
    6385       804988 :       if (ref->type == REF_COMPONENT && ref->u.c.component->attr.proc_pointer
    6386          574 :           && ref->u.c.component->attr.function && !ref->next)
    6387              :         {
    6388          378 :           rank = ref->u.c.component->as ? ref->u.c.component->as->rank : 0;
    6389          378 :           corank = ref->u.c.component->as ? ref->u.c.component->as->corank : 0;
    6390              :         }
    6391              : 
    6392       804988 :       if (ref->type != REF_ARRAY)
    6393       161982 :         continue;
    6394              : 
    6395       643006 :       last_arr_ref = ref;
    6396       643006 :       if (ref->u.ar.type == AR_FULL && ref->u.ar.as)
    6397              :         {
    6398       354074 :           rank = ref->u.ar.as->rank;
    6399       354074 :           break;
    6400              :         }
    6401              : 
    6402       288932 :       if (ref->u.ar.type == AR_SECTION)
    6403              :         {
    6404              :           /* Figure out the rank of the section.  */
    6405        46359 :           if (rank != 0)
    6406            0 :             gfc_internal_error ("gfc_expression_rank(): Two array specs");
    6407              : 
    6408       115528 :           for (i = 0; i < ref->u.ar.dimen; i++)
    6409        69169 :             if (ref->u.ar.dimen_type[i] == DIMEN_RANGE
    6410        69169 :                 || ref->u.ar.dimen_type[i] == DIMEN_VECTOR)
    6411        60243 :               rank++;
    6412              : 
    6413              :           break;
    6414              :         }
    6415              :     }
    6416       694706 :   if (last_arr_ref && last_arr_ref->u.ar.as
    6417       622481 :       && last_arr_ref->u.ar.as->rank != -1)
    6418              :     {
    6419        19554 :       for (i = last_arr_ref->u.ar.as->rank;
    6420       633763 :            i < last_arr_ref->u.ar.as->rank + last_arr_ref->u.ar.as->corank; ++i)
    6421              :         {
    6422              :           /* For unknown dimen in non-resolved as assume full corank.  */
    6423        20490 :           if (last_arr_ref->u.ar.dimen_type[i] == DIMEN_STAR
    6424        19877 :               || (last_arr_ref->u.ar.dimen_type[i] == DIMEN_UNKNOWN
    6425          323 :                   && !last_arr_ref->u.ar.as->resolved))
    6426              :             {
    6427              :               corank = last_arr_ref->u.ar.as->corank;
    6428              :               break;
    6429              :             }
    6430        19554 :           else if (last_arr_ref->u.ar.dimen_type[i] == DIMEN_RANGE
    6431        19554 :                    || last_arr_ref->u.ar.dimen_type[i] == DIMEN_VECTOR
    6432        19456 :                    || last_arr_ref->u.ar.dimen_type[i] == DIMEN_THIS_IMAGE)
    6433        16965 :             corank++;
    6434         2589 :           else if (last_arr_ref->u.ar.dimen_type[i] != DIMEN_ELEMENT)
    6435            0 :             gfc_internal_error ("Illegal coarray index");
    6436              :         }
    6437              :     }
    6438              : 
    6439       694706 :   e->rank = rank;
    6440       694706 :   e->corank = corank;
    6441              : 
    6442      2629004 : done:
    6443      2629004 :   expression_shape (e);
    6444      2629004 : }
    6445              : 
    6446              : 
    6447              : /* Given two expressions, check that their rank is conformable, i.e. either
    6448              :    both have the same rank or at least one is a scalar.  */
    6449              : 
    6450              : bool
    6451     12249313 : gfc_op_rank_conformable (gfc_expr *op1, gfc_expr *op2)
    6452              : {
    6453     12249313 :   if (op1->expr_type == EXPR_VARIABLE)
    6454       742039 :     gfc_expression_rank (op1);
    6455     12249313 :   if (op2->expr_type == EXPR_VARIABLE)
    6456       448409 :     gfc_expression_rank (op2);
    6457              : 
    6458        78825 :   return (op1->rank == 0 || op2->rank == 0 || op1->rank == op2->rank)
    6459     12327812 :          && (op1->corank == 0 || op2->corank == 0 || op1->corank == op2->corank
    6460           30 :              || (!gfc_is_coindexed (op1) && !gfc_is_coindexed (op2)));
    6461              : }
    6462              : 
    6463              : /* Resolve a variable expression.  */
    6464              : 
    6465              : static bool
    6466      1345877 : resolve_variable (gfc_expr *e)
    6467              : {
    6468      1345877 :   gfc_symbol *sym;
    6469      1345877 :   bool t;
    6470              : 
    6471      1345877 :   t = true;
    6472              : 
    6473      1345877 :   if (e->symtree == NULL)
    6474              :     return false;
    6475      1345402 :   sym = e->symtree->n.sym;
    6476              : 
    6477              :   /* Use same check as for TYPE(*) below; this check has to be before TYPE(*)
    6478              :      as ts.type is set to BT_ASSUMED in resolve_symbol.  */
    6479      1345402 :   if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
    6480              :     {
    6481          183 :       if (!actual_arg || inquiry_argument)
    6482              :         {
    6483            2 :           gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may only "
    6484              :                      "be used as actual argument", sym->name, &e->where);
    6485            2 :           return false;
    6486              :         }
    6487              :     }
    6488              :   /* TS 29113, 407b.  */
    6489      1345219 :   else if (e->ts.type == BT_ASSUMED)
    6490              :     {
    6491          571 :       if (!actual_arg)
    6492              :         {
    6493           20 :           gfc_error ("Assumed-type variable %s at %L may only be used "
    6494              :                      "as actual argument", sym->name, &e->where);
    6495           20 :           return false;
    6496              :         }
    6497          551 :       else if (inquiry_argument && !first_actual_arg)
    6498              :         {
    6499              :           /* FIXME: It doesn't work reliably as inquiry_argument is not set
    6500              :              for all inquiry functions in resolve_function; the reason is
    6501              :              that the function-name resolution happens too late in that
    6502              :              function.  */
    6503            0 :           gfc_error ("Assumed-type variable %s at %L as actual argument to "
    6504              :                      "an inquiry function shall be the first argument",
    6505              :                      sym->name, &e->where);
    6506            0 :           return false;
    6507              :         }
    6508              :     }
    6509              :   /* TS 29113, C535b.  */
    6510      1344648 :   else if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
    6511        38278 :              && sym->ts.u.derived && CLASS_DATA (sym)
    6512        38273 :              && CLASS_DATA (sym)->as
    6513        15047 :              && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
    6514      1343678 :             || (sym->ts.type != BT_CLASS && sym->as
    6515       368608 :                 && sym->as->type == AS_ASSUMED_RANK))
    6516         8064 :            && !sym->attr.select_rank_temporary
    6517         8064 :            && !(sym->assoc && sym->assoc->ar))
    6518              :     {
    6519         8064 :       if (!actual_arg
    6520         1277 :           && !(cs_base && cs_base->current
    6521         1276 :                && (cs_base->current->op == EXEC_SELECT_RANK
    6522          188 :                    || sym->attr.target)))
    6523              :         {
    6524          144 :           gfc_error ("Assumed-rank variable %s at %L may only be used as "
    6525              :                      "actual argument", sym->name, &e->where);
    6526          144 :           return false;
    6527              :         }
    6528         7920 :       else if (inquiry_argument && !first_actual_arg)
    6529              :         {
    6530              :           /* FIXME: It doesn't work reliably as inquiry_argument is not set
    6531              :              for all inquiry functions in resolve_function; the reason is
    6532              :              that the function-name resolution happens too late in that
    6533              :              function.  */
    6534            0 :           gfc_error ("Assumed-rank variable %s at %L as actual argument "
    6535              :                      "to an inquiry function shall be the first argument",
    6536              :                      sym->name, &e->where);
    6537            0 :           return false;
    6538              :         }
    6539              :     }
    6540              : 
    6541      1345236 :   if ((sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK)) && e->ref
    6542          181 :       && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
    6543          180 :            && e->ref->next == NULL))
    6544              :     {
    6545            1 :       gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall not have "
    6546              :                  "a subobject reference", sym->name, &e->ref->u.ar.where);
    6547            1 :       return false;
    6548              :     }
    6549              :   /* TS 29113, 407b.  */
    6550      1345235 :   else if (e->ts.type == BT_ASSUMED && e->ref
    6551          687 :            && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
    6552          680 :                 && e->ref->next == NULL))
    6553              :     {
    6554            7 :       gfc_error ("Assumed-type variable %s at %L shall not have a subobject "
    6555              :                  "reference", sym->name, &e->ref->u.ar.where);
    6556            7 :       return false;
    6557              :     }
    6558              : 
    6559              :   /* TS 29113, C535b.  */
    6560      1345228 :   if (((sym->ts.type == BT_CLASS && sym->attr.class_ok
    6561        38278 :         && sym->ts.u.derived && CLASS_DATA (sym)
    6562        38273 :         && CLASS_DATA (sym)->as
    6563        15047 :         && CLASS_DATA (sym)->as->type == AS_ASSUMED_RANK)
    6564      1344258 :        || (sym->ts.type != BT_CLASS && sym->as
    6565       369144 :            && sym->as->type == AS_ASSUMED_RANK))
    6566         8204 :       && !(sym->assoc && sym->assoc->ar)
    6567         8204 :       && e->ref
    6568         8204 :       && !(e->ref->type == REF_ARRAY && e->ref->u.ar.type == AR_FULL
    6569         8200 :            && e->ref->next == NULL))
    6570              :     {
    6571            4 :       gfc_error ("Assumed-rank variable %s at %L shall not have a subobject "
    6572              :                  "reference", sym->name, &e->ref->u.ar.where);
    6573            4 :       return false;
    6574              :     }
    6575              : 
    6576              :   /* Guessed type variables are associate_names whose selector had not been
    6577              :      parsed at the time that the construct was parsed. Now the namespace is
    6578              :      being resolved, the TKR of the selector will be available for fixup of
    6579              :      the associate_name.  */
    6580      1345224 :   if (IS_INFERRED_TYPE (e) && e->ref)
    6581              :     {
    6582          410 :       gfc_fixup_inferred_type_refs (e);
    6583              :       /* KIND inquiry ref returns the kind of the target.  */
    6584          410 :       if (e->expr_type == EXPR_CONSTANT)
    6585              :         return true;
    6586              :     }
    6587      1344814 :   else if (IS_INFERRED_TYPE (e)
    6588          489 :            && sym->ts.type != BT_UNKNOWN
    6589          489 :            && (sym->ts.type != e->ts.type || sym->ts.kind != e->ts.kind))
    6590              :     /* No subobject ref, but the expression's typespec was set at parse
    6591              :        time before the target's actual type/kind was known.  Refresh from
    6592              :        the now-resolved associate-name symbol.  */
    6593          192 :     e->ts = sym->ts;
    6594      1344622 :   else if (sym->attr.select_type_temporary
    6595         9152 :            && sym->ns->assoc_name_inferred)
    6596           92 :     gfc_fixup_inferred_type_refs (e);
    6597              : 
    6598              :   /* For variables that are used in an associate (target => object) where
    6599              :      the object's basetype is array valued while the target is scalar,
    6600              :      the ts' type of the component refs is still array valued, which
    6601              :      can't be translated that way.  */
    6602      1345212 :   if (sym->assoc && e->rank == 0 && e->ref && sym->ts.type == BT_CLASS
    6603          605 :       && sym->assoc->target && sym->assoc->target->ts.type == BT_CLASS
    6604          605 :       && sym->assoc->target->ts.u.derived
    6605          605 :       && CLASS_DATA (sym->assoc->target)
    6606          605 :       && CLASS_DATA (sym->assoc->target)->as)
    6607              :     {
    6608              :       gfc_ref *ref = e->ref;
    6609          701 :       while (ref)
    6610              :         {
    6611          542 :           switch (ref->type)
    6612              :             {
    6613          237 :             case REF_COMPONENT:
    6614          237 :               ref->u.c.sym = sym->ts.u.derived;
    6615              :               /* Stop the loop.  */
    6616          237 :               ref = NULL;
    6617          237 :               break;
    6618          305 :             default:
    6619          305 :               ref = ref->next;
    6620          305 :               break;
    6621              :             }
    6622              :         }
    6623              :     }
    6624              : 
    6625              :   /* If this is an associate-name, it may be parsed with an array reference
    6626              :      in error even though the target is scalar.  Fail directly in this case.
    6627              :      TODO Understand why class scalar expressions must be excluded.  */
    6628      1345212 :   if (sym->assoc && !(sym->ts.type == BT_CLASS && e->rank == 0))
    6629              :     {
    6630        12111 :       if (sym->ts.type == BT_CLASS)
    6631          245 :         gfc_fix_class_refs (e);
    6632        12111 :       if (!sym->attr.dimension && !sym->attr.codimension && e->ref
    6633         2276 :           && e->ref->type == REF_ARRAY)
    6634              :         {
    6635              :           /* Unambiguously scalar!  */
    6636            3 :           if (sym->assoc->target
    6637            3 :               && (sym->assoc->target->expr_type == EXPR_CONSTANT
    6638            1 :                   || sym->assoc->target->expr_type == EXPR_STRUCTURE))
    6639            2 :             gfc_error ("Scalar variable %qs has an array reference at %L",
    6640              :                        sym->name, &e->where);
    6641              :           return false;
    6642              :         }
    6643        12108 :       else if ((sym->attr.dimension || sym->attr.codimension)
    6644         7156 :                && (!e->ref || e->ref->type != REF_ARRAY))
    6645              :         {
    6646              :           /* This can happen because the parser did not detect that the
    6647              :              associate name is an array and the expression had no array
    6648              :              part_ref.  */
    6649          225 :           gfc_ref *ref = gfc_get_ref ();
    6650          225 :           ref->type = REF_ARRAY;
    6651          225 :           ref->u.ar.type = AR_FULL;
    6652          225 :           if (sym->as)
    6653              :             {
    6654          224 :               ref->u.ar.as = sym->as;
    6655          224 :               ref->u.ar.dimen = sym->as->rank;
    6656              :             }
    6657          225 :           ref->next = e->ref;
    6658          225 :           e->ref = ref;
    6659              :         }
    6660              :     }
    6661              : 
    6662      1345209 :   if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.generic)
    6663            0 :     sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
    6664              : 
    6665              :   /* On the other hand, the parser may not have known this is an array;
    6666              :      in this case, we have to add a FULL reference.  */
    6667      1345209 :   if (sym->assoc && (sym->attr.dimension || sym->attr.codimension) && !e->ref)
    6668              :     {
    6669            0 :       e->ref = gfc_get_ref ();
    6670            0 :       e->ref->type = REF_ARRAY;
    6671            0 :       e->ref->u.ar.type = AR_FULL;
    6672            0 :       e->ref->u.ar.dimen = 0;
    6673              :     }
    6674              : 
    6675              :   /* Like above, but for class types, where the checking whether an array
    6676              :      ref is present is more complicated.  Furthermore make sure not to add
    6677              :      the full array ref to _vptr or _len refs.  */
    6678      1345209 :   if (sym->assoc && sym->ts.type == BT_CLASS && sym->ts.u.derived
    6679         1023 :       && CLASS_DATA (sym)
    6680         1023 :       && (CLASS_DATA (sym)->attr.dimension
    6681          449 :           || CLASS_DATA (sym)->attr.codimension)
    6682          580 :       && (e->ts.type != BT_DERIVED || !e->ts.u.derived->attr.vtype))
    6683              :     {
    6684          555 :       gfc_ref *ref, *newref;
    6685              : 
    6686          555 :       newref = gfc_get_ref ();
    6687          555 :       newref->type = REF_ARRAY;
    6688          555 :       newref->u.ar.type = AR_FULL;
    6689          555 :       newref->u.ar.dimen = 0;
    6690              : 
    6691              :       /* Because this is an associate var and the first ref either is a ref to
    6692              :          the _data component or not, no traversal of the ref chain is
    6693              :          needed.  The array ref needs to be inserted after the _data ref,
    6694              :          or when that is not present, which may happened for polymorphic
    6695              :          types, then at the first position.  */
    6696          555 :       ref = e->ref;
    6697          555 :       if (!ref)
    6698           18 :         e->ref = newref;
    6699          537 :       else if (ref->type == REF_COMPONENT
    6700          232 :                && strcmp ("_data", ref->u.c.component->name) == 0)
    6701              :         {
    6702          232 :           if (!ref->next || ref->next->type != REF_ARRAY)
    6703              :             {
    6704           12 :               newref->next = ref->next;
    6705           12 :               ref->next = newref;
    6706              :             }
    6707              :           else
    6708              :             /* Array ref present already.  */
    6709          220 :             gfc_free_ref_list (newref);
    6710              :         }
    6711          305 :       else if (ref->type == REF_ARRAY)
    6712              :         /* Array ref present already.  */
    6713          305 :         gfc_free_ref_list (newref);
    6714              :       else
    6715              :         {
    6716            0 :           newref->next = ref;
    6717            0 :           e->ref = newref;
    6718              :         }
    6719              :     }
    6720      1344654 :   else if (sym->assoc && sym->ts.type == BT_CHARACTER && sym->ts.deferred)
    6721              :     {
    6722          498 :       gfc_ref *ref;
    6723          922 :       for (ref = e->ref; ref; ref = ref->next)
    6724          454 :         if (ref->type == REF_SUBSTRING)
    6725              :           break;
    6726          498 :       if (ref == NULL)
    6727          468 :         e->ts = sym->ts;
    6728              :     }
    6729              : 
    6730      1345209 :   if (e->ref && !gfc_resolve_ref (e))
    6731              :     return false;
    6732              : 
    6733      1345116 :   if (sym->attr.flavor == FL_PROCEDURE
    6734        32638 :       && (!sym->attr.function
    6735        19074 :           || (sym->attr.function && sym->result
    6736        18619 :               && sym->result->attr.proc_pointer
    6737          726 :               && !sym->result->attr.function)))
    6738              :     {
    6739        13564 :       e->ts.type = BT_PROCEDURE;
    6740        13564 :       goto resolve_procedure;
    6741              :     }
    6742              : 
    6743      1331552 :   if (sym->ts.type != BT_UNKNOWN)
    6744      1330780 :     gfc_variable_attr (e, &e->ts);
    6745          772 :   else if (sym->attr.flavor == FL_PROCEDURE
    6746           12 :            && sym->attr.function && sym->result
    6747           12 :            && sym->result->ts.type != BT_UNKNOWN
    6748           10 :            && sym->result->attr.proc_pointer)
    6749           10 :     e->ts = sym->result->ts;
    6750              :   else
    6751              :     {
    6752              :       /* Must be a simple variable reference.  */
    6753          762 :       if (!gfc_set_default_type (sym, 1, sym->ns))
    6754              :         return false;
    6755          633 :       e->ts = sym->ts;
    6756              :     }
    6757              : 
    6758      1331423 :   if (check_assumed_size_reference (sym, e))
    6759              :     return false;
    6760              : 
    6761              :   /* Deal with forward references to entries during gfc_resolve_code, to
    6762              :      satisfy, at least partially, 12.5.2.5.  */
    6763      1331404 :   if (gfc_current_ns->entries
    6764         3229 :       && current_entry_id == sym->entry_id
    6765         1050 :       && cs_base
    6766          964 :       && cs_base->current
    6767          964 :       && cs_base->current->op != EXEC_ENTRY)
    6768              :     {
    6769          964 :       int n;
    6770          964 :       bool saved_specification_expr;
    6771          964 :       gfc_symbol *saved_specification_expr_symbol;
    6772              : 
    6773              :       /* If the symbol is a dummy...  */
    6774          964 :       if (sym->attr.dummy && sym->ns == gfc_current_ns)
    6775              :         {
    6776              :           /*  If it has not been seen as a dummy, this is an error.  */
    6777          462 :           if (!entry_dummy_seen_p (sym))
    6778              :             {
    6779            5 :               if (specification_expr
    6780            4 :                   && specification_expr_symbol
    6781            4 :                   && specification_expr_symbol->attr.dummy
    6782            2 :                   && specification_expr_symbol->ns == gfc_current_ns
    6783            7 :                   && !entry_dummy_seen_p (specification_expr_symbol))
    6784              :                 ;
    6785            3 :               else if (specification_expr)
    6786            2 :                 gfc_error ("Variable %qs, used in a specification expression"
    6787              :                            ", is referenced at %L before the ENTRY statement "
    6788              :                            "in which it is a parameter",
    6789              :                            sym->name, &cs_base->current->loc);
    6790              :               else
    6791            1 :                 gfc_error ("Variable %qs is used at %L before the ENTRY "
    6792              :                            "statement in which it is a parameter",
    6793              :                            sym->name, &cs_base->current->loc);
    6794              :               t = false;
    6795              :             }
    6796              :         }
    6797              : 
    6798              :       /* Now do the same check on the specification expressions.  */
    6799          964 :       saved_specification_expr = specification_expr;
    6800          964 :       saved_specification_expr_symbol = specification_expr_symbol;
    6801          964 :       specification_expr = true;
    6802          964 :       specification_expr_symbol = sym;
    6803          964 :       if (sym->ts.type == BT_CHARACTER
    6804          964 :           && !gfc_resolve_expr (sym->ts.u.cl->length))
    6805              :         t = false;
    6806              : 
    6807          964 :       if (sym->as)
    6808              :         {
    6809          279 :           for (n = 0; n < sym->as->rank; n++)
    6810              :             {
    6811          164 :               if (!gfc_resolve_expr (sym->as->lower[n]))
    6812            0 :                 t = false;
    6813          164 :               if (!gfc_resolve_expr (sym->as->upper[n]))
    6814            1 :                 t = false;
    6815              :             }
    6816              :         }
    6817          964 :       specification_expr = saved_specification_expr;
    6818          964 :       specification_expr_symbol = saved_specification_expr_symbol;
    6819              : 
    6820          964 :       if (t)
    6821              :         /* Update the symbol's entry level.  */
    6822          957 :         sym->entry_id = current_entry_id + 1;
    6823              :     }
    6824              : 
    6825              :   /* If a symbol has been host_associated mark it.  This is used latter,
    6826              :      to identify if aliasing is possible via host association.  */
    6827      1331404 :   if (sym->attr.flavor == FL_VARIABLE
    6828      1292580 :       && (!sym->ns->code || sym->ns->code->op != EXEC_BLOCK
    6829         6228 :           || !sym->ns->code->ext.block.assoc)
    6830      1290478 :       && gfc_current_ns->parent
    6831       616312 :       && (gfc_current_ns->parent == sym->ns
    6832       577027 :           || (gfc_current_ns->parent->parent
    6833        12365 :               && gfc_current_ns->parent->parent == sym->ns)))
    6834        45996 :     sym->attr.host_assoc = 1;
    6835              : 
    6836      1331404 :   if (gfc_current_ns->proc_name
    6837      1327182 :       && sym->attr.dimension
    6838       362505 :       && (sym->ns != gfc_current_ns
    6839       338171 :           || sym->attr.use_assoc
    6840       334046 :           || sym->attr.in_common))
    6841        33248 :     gfc_current_ns->proc_name->attr.array_outer_dependency = 1;
    6842              : 
    6843      1344968 : resolve_procedure:
    6844      1344968 :   if (t && !resolve_procedure_expression (e))
    6845              :     t = false;
    6846              : 
    6847              :   /* F2008, C617 and C1229.  */
    6848      1343858 :   if (!inquiry_argument && (e->ts.type == BT_CLASS || e->ts.type == BT_DERIVED)
    6849      1445789 :       && gfc_is_coindexed (e))
    6850              :     {
    6851          359 :       gfc_ref *ref, *ref2 = NULL;
    6852              : 
    6853          442 :       for (ref = e->ref; ref; ref = ref->next)
    6854              :         {
    6855          442 :           if (ref->type == REF_COMPONENT)
    6856           83 :             ref2 = ref;
    6857          442 :           if (ref->type == REF_ARRAY && ref->u.ar.codimen > 0)
    6858              :             break;
    6859              :         }
    6860              : 
    6861          718 :       for ( ; ref; ref = ref->next)
    6862          371 :         if (ref->type == REF_COMPONENT)
    6863              :           break;
    6864              : 
    6865              :       /* Expression itself is not coindexed object.  */
    6866          359 :       if (ref && e->ts.type == BT_CLASS)
    6867              :         {
    6868            3 :           gfc_error ("Polymorphic subobject of coindexed object at %L",
    6869              :                      &e->where);
    6870            3 :           t = false;
    6871              :         }
    6872              : 
    6873              :       /* Expression itself is coindexed object.  */
    6874              :       if (ref == NULL)
    6875              :         {
    6876          347 :           gfc_component *c;
    6877          347 :           c = ref2 ? ref2->u.c.component : e->symtree->n.sym->components;
    6878          467 :           for ( ; c; c = c->next)
    6879          120 :             if (c->attr.allocatable && c->ts.type == BT_CLASS)
    6880              :               {
    6881            0 :                 gfc_error ("Coindexed object with polymorphic allocatable "
    6882              :                          "subcomponent at %L", &e->where);
    6883            0 :                 t = false;
    6884            0 :                 break;
    6885              :               }
    6886              :         }
    6887              :     }
    6888              : 
    6889      1344968 :   if (t)
    6890      1344958 :     gfc_expression_rank (e);
    6891              : 
    6892      1344968 :   if (sym->attr.ext_attr & (1 << EXT_ATTR_DEPRECATED) && sym != sym->result)
    6893            3 :     gfc_warning (OPT_Wdeprecated_declarations,
    6894              :                  "Using variable %qs at %L is deprecated",
    6895              :                  sym->name, &e->where);
    6896              :   /* Simplify cases where access to a parameter array results in a
    6897              :      single constant.  Suppress errors since those will have been
    6898              :      issued before, as warnings.  */
    6899      1344968 :   if (e->rank == 0 && sym->as && sym->attr.flavor == FL_PARAMETER)
    6900              :     {
    6901         2743 :       gfc_push_suppress_errors ();
    6902         2743 :       gfc_simplify_expr (e, 1);
    6903         2743 :       gfc_pop_suppress_errors ();
    6904              :     }
    6905              : 
    6906              :   return t;
    6907              : }
    6908              : 
    6909              : 
    6910              : /* 'sym' was initially guessed to be derived type but has been corrected
    6911              :    in resolve_assoc_var to be a class entity or the derived type correcting.
    6912              :    If a class entity it will certainly need the _data reference or the
    6913              :    reference derived type symbol correcting in the first component ref if
    6914              :    a derived type.  */
    6915              : 
    6916              : void
    6917          920 : gfc_fixup_inferred_type_refs (gfc_expr *e)
    6918              : {
    6919          920 :   gfc_ref *ref, *new_ref;
    6920          920 :   gfc_symbol *sym, *derived;
    6921          920 :   gfc_expr *target;
    6922          920 :   sym = e->symtree->n.sym;
    6923              : 
    6924              :   /* An associate_name whose selector is (i) a component ref of a selector
    6925              :      that is a inferred type associate_name; or (ii) an intrinsic type that
    6926              :      has been inferred from an inquiry ref.  */
    6927          920 :   if (sym->ts.type != BT_DERIVED && sym->ts.type != BT_CLASS)
    6928              :     {
    6929          318 :       sym->attr.dimension = sym->assoc->target->rank ? 1 : 0;
    6930          318 :       sym->attr.codimension = sym->assoc->target->corank ? 1 : 0;
    6931          318 :       if (!sym->attr.dimension && e->ref->type == REF_ARRAY)
    6932              :         {
    6933           60 :           ref = e->ref;
    6934              :           /* A substring misidentified as an array section.  */
    6935           60 :           if (sym->ts.type == BT_CHARACTER
    6936           30 :               && ref->u.ar.start[0] && ref->u.ar.end[0]
    6937            6 :               && !ref->u.ar.stride[0])
    6938              :             {
    6939            6 :               new_ref = gfc_get_ref ();
    6940            6 :               new_ref->type = REF_SUBSTRING;
    6941            6 :               new_ref->u.ss.start = ref->u.ar.start[0];
    6942            6 :               new_ref->u.ss.end = ref->u.ar.end[0];
    6943            6 :               new_ref->u.ss.length = sym->ts.u.cl;
    6944            6 :               *ref = *new_ref;
    6945            6 :               free (new_ref);
    6946              :             }
    6947              :           else
    6948              :             {
    6949           54 :               if (e->ref->u.ar.type == AR_UNKNOWN)
    6950           24 :                 gfc_error ("Invalid array reference at %L", &e->where);
    6951           54 :               e->ref = ref->next;
    6952           54 :               free (ref);
    6953              :             }
    6954              :         }
    6955              : 
    6956              :       /* It is possible for an inquiry reference to be mistaken for a
    6957              :          component reference. Correct this now.  */
    6958          318 :       ref = e->ref;
    6959          318 :       if (ref && ref->type == REF_ARRAY)
    6960          138 :         ref = ref->next;
    6961          186 :       if (ref && ref->type == REF_COMPONENT
    6962          150 :           && is_inquiry_ref (ref->u.c.component->name, &new_ref))
    6963              :         {
    6964           12 :           e->symtree->n.sym = sym;
    6965           12 :           *ref = *new_ref;
    6966           12 :           gfc_free_ref_list (new_ref);
    6967              :         }
    6968              : 
    6969              :       /* The kind of the associate name is best evaluated directly from the
    6970              :          selector because of the guesses made in primary.cc, when the type
    6971              :          is still unknown.  */
    6972          318 :       if (ref && ref->type == REF_INQUIRY && ref->u.i == INQUIRY_KIND)
    6973              :         {
    6974           24 :           gfc_expr *ne = gfc_get_int_expr (gfc_default_integer_kind, &e->where,
    6975           12 :                                            sym->assoc->target->ts.kind);
    6976           12 :           gfc_replace_expr (e, ne);
    6977           12 :         }
    6978          174 :       else if (ref && ref->type == REF_INQUIRY
    6979          150 :                && (ref->u.i == INQUIRY_RE || ref->u.i == INQUIRY_IM)
    6980          114 :                && sym->ts.type == BT_COMPLEX
    6981          114 :                && e->ts.type == BT_REAL
    6982          114 :                && e->ts.kind != sym->ts.kind)
    6983              :         /* primary.cc set the inquiry-result kind to the default real kind
    6984              :            when the associate-name's type was inferred from %re/%im before
    6985              :            the target was resolved.  Now use the (resolved) selector kind.  */
    6986           24 :         e->ts.kind = sym->ts.kind;
    6987              : 
    6988              :       /* Now that the references are all sorted out, set the expression rank
    6989              :          and return.  */
    6990          318 :       gfc_expression_rank (e);
    6991          318 :       return;
    6992              :     }
    6993              : 
    6994          602 :   derived = sym->ts.type == BT_CLASS ? CLASS_DATA (sym)->ts.u.derived
    6995              :                                      : sym->ts.u.derived;
    6996              : 
    6997              :   /* Ensure that class symbols have an array spec and ensure that there
    6998              :      is a _data field reference following class type references.  */
    6999          602 :   if (sym->ts.type == BT_CLASS
    7000          196 :       && sym->assoc->target->ts.type == BT_CLASS)
    7001              :     {
    7002          196 :       e->rank = CLASS_DATA (sym)->as ? CLASS_DATA (sym)->as->rank : 0;
    7003          196 :       e->corank = CLASS_DATA (sym)->as ? CLASS_DATA (sym)->as->corank : 0;
    7004          196 :       sym->attr.dimension = 0;
    7005          196 :       sym->attr.codimension = 0;
    7006          196 :       CLASS_DATA (sym)->attr.dimension = e->rank ? 1 : 0;
    7007          196 :       CLASS_DATA (sym)->attr.codimension = e->corank ? 1 : 0;
    7008          196 :       if (e->ref && (e->ref->type != REF_COMPONENT
    7009          160 :                      || e->ref->u.c.component->name[0] != '_'))
    7010              :         {
    7011           82 :           ref = gfc_get_ref ();
    7012           82 :           ref->type = REF_COMPONENT;
    7013           82 :           ref->next = e->ref;
    7014           82 :           e->ref = ref;
    7015           82 :           ref->u.c.component = gfc_find_component (sym->ts.u.derived, "_data",
    7016              :                                                    true, true, NULL);
    7017           82 :           ref->u.c.sym = sym->ts.u.derived;
    7018              :         }
    7019              :     }
    7020              : 
    7021              :   /* Proceed as far as the first component reference and ensure that the
    7022              :      correct derived type is being used.  */
    7023          865 :   for (ref = e->ref; ref; ref = ref->next)
    7024          829 :     if (ref->type == REF_COMPONENT)
    7025              :       {
    7026          566 :         if (ref->u.c.component->name[0] != '_')
    7027          370 :           ref->u.c.sym = derived;
    7028              :         else
    7029          196 :           ref->u.c.sym = sym->ts.u.derived;
    7030              :         break;
    7031              :       }
    7032              : 
    7033              :   /* Verify that the type inference mechanism has not introduced a spurious
    7034              :      array reference.  This can happen with an associate name, whose selector
    7035              :      is an element of another inferred type.  */
    7036          602 :   target = e->symtree->n.sym->assoc->target;
    7037          602 :   if (!(sym->ts.type == BT_CLASS ? CLASS_DATA (sym)->as : sym->as)
    7038          190 :       && e != target && !target->rank)
    7039              :     {
    7040              :       /* First case: array ref after the scalar class or derived
    7041              :          associate_name.  */
    7042          190 :       if (e->ref && e->ref->type == REF_ARRAY
    7043            7 :           && e->ref->u.ar.type != AR_ELEMENT)
    7044              :         {
    7045            7 :           ref = e->ref;
    7046            7 :           if (ref->u.ar.type == AR_UNKNOWN)
    7047            1 :             gfc_error ("Invalid array reference at %L", &e->where);
    7048            7 :           e->ref = ref->next;
    7049            7 :           free (ref);
    7050              : 
    7051              :           /* If it hasn't a ref to the '_data' field supply one.  */
    7052            7 :           if (sym->ts.type == BT_CLASS
    7053            0 :               && !(e->ref->type == REF_COMPONENT
    7054            0 :                    && strcmp (e->ref->u.c.component->name, "_data")))
    7055              :             {
    7056            0 :               gfc_ref *new_ref;
    7057            0 :               gfc_find_component (e->symtree->n.sym->ts.u.derived,
    7058              :                                   "_data", true, true, &new_ref);
    7059            0 :               new_ref->next = e->ref;
    7060            0 :               e->ref = new_ref;
    7061              :             }
    7062              :         }
    7063              :       /* 2nd case: a ref to the '_data' field followed by an array ref.  */
    7064          183 :       else if (e->ref && e->ref->type == REF_COMPONENT
    7065          183 :                && strcmp (e->ref->u.c.component->name, "_data") == 0
    7066           64 :                && e->ref->next && e->ref->next->type == REF_ARRAY
    7067            0 :                && e->ref->next->u.ar.type != AR_ELEMENT)
    7068              :         {
    7069            0 :           ref = e->ref->next;
    7070            0 :           if (ref->u.ar.type == AR_UNKNOWN)
    7071            0 :             gfc_error ("Invalid array reference at %L", &e->where);
    7072            0 :           e->ref->next = e->ref->next->next;
    7073            0 :           free (ref);
    7074              :         }
    7075              :     }
    7076              : 
    7077              :   /* Now that all the references are OK, get the expression rank.  */
    7078          602 :   gfc_expression_rank (e);
    7079              : }
    7080              : 
    7081              : 
    7082              : /* Checks to see that the correct symbol has been host associated.
    7083              :    The only situations where this arises are:
    7084              :         (i)  That in which a twice contained function is parsed after
    7085              :              the host association is made. On detecting this, change
    7086              :              the symbol in the expression and convert the array reference
    7087              :              into an actual arglist if the old symbol is a variable; or
    7088              :         (ii) That in which an external function is typed but not declared
    7089              :              explicitly to be external. Here, the old symbol is changed
    7090              :              from a variable to an external function.  */
    7091              : static bool
    7092      1694935 : check_host_association (gfc_expr *e)
    7093              : {
    7094      1694935 :   gfc_symbol *sym, *old_sym;
    7095      1694935 :   gfc_symtree *st;
    7096      1694935 :   int n;
    7097      1694935 :   gfc_ref *ref;
    7098      1694935 :   gfc_actual_arglist *arg, *tail = NULL;
    7099      1694935 :   bool retval = e->expr_type == EXPR_FUNCTION;
    7100              : 
    7101              :   /*  If the expression is the result of substitution in
    7102              :       interface.cc(gfc_extend_expr) because there is no way in
    7103              :       which the host association can be wrong.  */
    7104      1694935 :   if (e->symtree == NULL
    7105      1694104 :         || e->symtree->n.sym == NULL
    7106      1694104 :         || e->user_operator)
    7107              :     return retval;
    7108              : 
    7109      1692324 :   old_sym = e->symtree->n.sym;
    7110              : 
    7111      1692324 :   if (gfc_current_ns->parent
    7112       744304 :         && old_sym->ns != gfc_current_ns)
    7113              :     {
    7114              :       /* Use the 'USE' name so that renamed module symbols are
    7115              :          correctly handled.  */
    7116        93494 :       gfc_find_symbol (e->symtree->name, gfc_current_ns, 1, &sym);
    7117              : 
    7118        93494 :       if (sym && old_sym != sym
    7119          714 :               && sym->attr.flavor == FL_PROCEDURE
    7120          111 :               && sym->attr.contained)
    7121              :         {
    7122              :           /* Clear the shape, since it might not be valid.  */
    7123           83 :           gfc_free_shape (&e->shape, e->rank);
    7124              : 
    7125              :           /* Give the expression the right symtree!  */
    7126           83 :           gfc_find_sym_tree (e->symtree->name, NULL, 1, &st);
    7127           83 :           gcc_assert (st != NULL);
    7128              : 
    7129           83 :           if (old_sym->attr.flavor == FL_PROCEDURE
    7130           59 :                 || e->expr_type == EXPR_FUNCTION)
    7131              :             {
    7132              :               /* Original was function so point to the new symbol, since
    7133              :                  the actual argument list is already attached to the
    7134              :                  expression.  */
    7135           30 :               e->value.function.esym = NULL;
    7136           30 :               e->symtree = st;
    7137              :             }
    7138              :           else
    7139              :             {
    7140              :               /* Original was variable so convert array references into
    7141              :                  an actual arglist. This does not need any checking now
    7142              :                  since resolve_function will take care of it.  */
    7143           53 :               e->value.function.actual = NULL;
    7144           53 :               e->expr_type = EXPR_FUNCTION;
    7145           53 :               e->symtree = st;
    7146              : 
    7147              :               /* Ambiguity will not arise if the array reference is not
    7148              :                  the last reference.  */
    7149           55 :               for (ref = e->ref; ref; ref = ref->next)
    7150           38 :                 if (ref->type == REF_ARRAY && ref->next == NULL)
    7151              :                   break;
    7152              : 
    7153           53 :               if ((ref == NULL || ref->type != REF_ARRAY)
    7154           17 :                   && sym->attr.proc == PROC_INTERNAL)
    7155              :                 {
    7156            4 :                   gfc_error ("%qs at %L is host associated at %L into "
    7157              :                              "a contained procedure with an internal "
    7158              :                              "procedure of the same name", sym->name,
    7159              :                               &old_sym->declared_at, &e->where);
    7160            4 :                   return false;
    7161              :                 }
    7162              : 
    7163           13 :               if (ref == NULL)
    7164              :                 return false;
    7165              : 
    7166           36 :               gcc_assert (ref->type == REF_ARRAY);
    7167              : 
    7168              :               /* Grab the start expressions from the array ref and
    7169              :                  copy them into actual arguments.  */
    7170           84 :               for (n = 0; n < ref->u.ar.dimen; n++)
    7171              :                 {
    7172           48 :                   arg = gfc_get_actual_arglist ();
    7173           48 :                   arg->expr = gfc_copy_expr (ref->u.ar.start[n]);
    7174           48 :                   if (e->value.function.actual == NULL)
    7175           36 :                     tail = e->value.function.actual = arg;
    7176              :                   else
    7177              :                     {
    7178           12 :                       tail->next = arg;
    7179           12 :                       tail = arg;
    7180              :                     }
    7181              :                 }
    7182              : 
    7183              :               /* Dump the reference list and set the rank.  */
    7184           36 :               gfc_free_ref_list (e->ref);
    7185           36 :               e->ref = NULL;
    7186           36 :               e->rank = sym->as ? sym->as->rank : 0;
    7187           36 :               e->corank = sym->as ? sym->as->corank : 0;
    7188              :             }
    7189              : 
    7190           66 :           gfc_resolve_expr (e);
    7191           66 :           sym->refs++;
    7192              :         }
    7193              :       /* This case corresponds to a call, from a block or a contained
    7194              :          procedure, to an external function, which has not been declared
    7195              :          as being external in the main program but has been typed.  */
    7196        93411 :       else if (sym && old_sym != sym
    7197          631 :                && !e->ref
    7198          359 :                && sym->ts.type == BT_UNKNOWN
    7199           27 :                && old_sym->ts.type != BT_UNKNOWN
    7200           19 :                && sym->attr.flavor == FL_PROCEDURE
    7201           19 :                && old_sym->attr.flavor == FL_VARIABLE
    7202            7 :                && sym->ns->parent == old_sym->ns
    7203            7 :                && sym->ns->proc_name
    7204            7 :                && sym->ns->proc_name->attr.proc != PROC_MODULE
    7205            6 :                && (sym->ns->proc_name->attr.flavor == FL_LABEL
    7206            6 :                    || sym->ns->proc_name->attr.flavor == FL_PROCEDURE))
    7207              :         {
    7208            6 :           old_sym->attr.flavor = FL_PROCEDURE;
    7209            6 :           old_sym->attr.external = 1;
    7210            6 :           old_sym->attr.function = 1;
    7211            6 :           old_sym->result = old_sym;
    7212            6 :           gfc_resolve_expr (e);
    7213              :         }
    7214              :     }
    7215              :   /* This might have changed!  */
    7216      1692307 :   return e->expr_type == EXPR_FUNCTION;
    7217              : }
    7218              : 
    7219              : 
    7220              : static void
    7221         1454 : gfc_resolve_character_operator (gfc_expr *e)
    7222              : {
    7223         1454 :   gfc_expr *op1 = e->value.op.op1;
    7224         1454 :   gfc_expr *op2 = e->value.op.op2;
    7225         1454 :   gfc_expr *e1 = NULL;
    7226         1454 :   gfc_expr *e2 = NULL;
    7227              : 
    7228         1454 :   gcc_assert (e->value.op.op == INTRINSIC_CONCAT);
    7229              : 
    7230         1454 :   if (op1->ts.u.cl && op1->ts.u.cl->length)
    7231          767 :     e1 = gfc_copy_expr (op1->ts.u.cl->length);
    7232          687 :   else if (op1->expr_type == EXPR_CONSTANT)
    7233          268 :     e1 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
    7234          268 :                            op1->value.character.length);
    7235              : 
    7236         1454 :   if (op2->ts.u.cl && op2->ts.u.cl->length)
    7237          755 :     e2 = gfc_copy_expr (op2->ts.u.cl->length);
    7238          699 :   else if (op2->expr_type == EXPR_CONSTANT)
    7239          468 :     e2 = gfc_get_int_expr (gfc_charlen_int_kind, NULL,
    7240          468 :                            op2->value.character.length);
    7241              : 
    7242         1454 :   e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
    7243              : 
    7244         1454 :   if (!e1 || !e2)
    7245              :     {
    7246          547 :       gfc_free_expr (e1);
    7247          547 :       gfc_free_expr (e2);
    7248              : 
    7249          547 :       return;
    7250              :     }
    7251              : 
    7252          907 :   e->ts.u.cl->length = gfc_add (e1, e2);
    7253          907 :   e->ts.u.cl->length->ts.type = BT_INTEGER;
    7254          907 :   e->ts.u.cl->length->ts.kind = gfc_charlen_int_kind;
    7255          907 :   gfc_simplify_expr (e->ts.u.cl->length, 0);
    7256          907 :   gfc_resolve_expr (e->ts.u.cl->length);
    7257              : 
    7258          907 :   return;
    7259              : }
    7260              : 
    7261              : 
    7262              : /*  Ensure that an character expression has a charlen and, if possible, a
    7263              :     length expression.  */
    7264              : 
    7265              : static void
    7266       185413 : fixup_charlen (gfc_expr *e)
    7267              : {
    7268              :   /* The cases fall through so that changes in expression type and the need
    7269              :      for multiple fixes are picked up.  In all circumstances, a charlen should
    7270              :      be available for the middle end to hang a backend_decl on.  */
    7271       185413 :   switch (e->expr_type)
    7272              :     {
    7273         1454 :     case EXPR_OP:
    7274         1454 :       gfc_resolve_character_operator (e);
    7275              :       /* FALLTHRU */
    7276              : 
    7277         1521 :     case EXPR_ARRAY:
    7278         1521 :       if (e->expr_type == EXPR_ARRAY)
    7279           67 :         gfc_resolve_character_array_constructor (e);
    7280              :       /* FALLTHRU */
    7281              : 
    7282         1978 :     case EXPR_SUBSTRING:
    7283         1978 :       if (!e->ts.u.cl && e->ref)
    7284          453 :         gfc_resolve_substring_charlen (e);
    7285              :       /* FALLTHRU */
    7286              : 
    7287       185413 :     default:
    7288       185413 :       if (!e->ts.u.cl)
    7289       183439 :         e->ts.u.cl = gfc_new_charlen (gfc_current_ns, NULL);
    7290              : 
    7291       185413 :       break;
    7292              :     }
    7293       185413 : }
    7294              : 
    7295              : 
    7296              : /* Update an actual argument to include the passed-object for type-bound
    7297              :    procedures at the right position.  */
    7298              : 
    7299              : static gfc_actual_arglist*
    7300         3038 : update_arglist_pass (gfc_actual_arglist* lst, gfc_expr* po, unsigned argpos,
    7301              :                      const char *name)
    7302              : {
    7303         3062 :   gcc_assert (argpos > 0);
    7304              : 
    7305         3062 :   if (argpos == 1)
    7306              :     {
    7307         2913 :       gfc_actual_arglist* result;
    7308              : 
    7309         2913 :       result = gfc_get_actual_arglist ();
    7310         2913 :       result->expr = po;
    7311         2913 :       result->next = lst;
    7312         2913 :       if (name)
    7313          514 :         result->name = name;
    7314              : 
    7315              :       return result;
    7316              :     }
    7317              : 
    7318          149 :   if (lst)
    7319          125 :     lst->next = update_arglist_pass (lst->next, po, argpos - 1, name);
    7320              :   else
    7321           24 :     lst = update_arglist_pass (NULL, po, argpos - 1, name);
    7322              :   return lst;
    7323              : }
    7324              : 
    7325              : 
    7326              : /* Extract the passed-object from an EXPR_COMPCALL (a copy of it).  */
    7327              : 
    7328              : static gfc_expr*
    7329         7431 : extract_compcall_passed_object (gfc_expr* e)
    7330              : {
    7331         7431 :   gfc_expr* po;
    7332              : 
    7333         7431 :   if (e->expr_type == EXPR_UNKNOWN)
    7334              :     {
    7335            0 :       gfc_error ("Error in typebound call at %L",
    7336              :                  &e->where);
    7337            0 :       return NULL;
    7338              :     }
    7339              : 
    7340         7431 :   gcc_assert (e->expr_type == EXPR_COMPCALL);
    7341              : 
    7342         7431 :   if (e->value.compcall.base_object)
    7343         1668 :     po = gfc_copy_expr (e->value.compcall.base_object);
    7344              :   else
    7345              :     {
    7346         5763 :       po = gfc_get_expr ();
    7347         5763 :       po->expr_type = EXPR_VARIABLE;
    7348         5763 :       po->symtree = e->symtree;
    7349         5763 :       po->ref = gfc_copy_ref (e->ref);
    7350         5763 :       po->where = e->where;
    7351              :     }
    7352              : 
    7353         7431 :   if (!gfc_resolve_expr (po))
    7354            3 :     return NULL;
    7355              : 
    7356              :   return po;
    7357              : }
    7358              : 
    7359              : 
    7360              : /* Update the arglist of an EXPR_COMPCALL expression to include the
    7361              :    passed-object.  */
    7362              : 
    7363              : static bool
    7364         3420 : update_compcall_arglist (gfc_expr* e)
    7365              : {
    7366         3420 :   gfc_expr* po;
    7367         3420 :   gfc_typebound_proc* tbp;
    7368              : 
    7369         3420 :   tbp = e->value.compcall.tbp;
    7370              : 
    7371         3420 :   if (tbp->error)
    7372              :     return false;
    7373              : 
    7374         3419 :   po = extract_compcall_passed_object (e);
    7375         3419 :   if (!po)
    7376              :     return false;
    7377              : 
    7378         3419 :   if (tbp->nopass || e->value.compcall.ignore_pass)
    7379              :     {
    7380         1170 :       gfc_free_expr (po);
    7381         1170 :       return true;
    7382              :     }
    7383              : 
    7384         2249 :   if (tbp->pass_arg_num <= 0)
    7385              :     return false;
    7386              : 
    7387         2248 :   e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
    7388              :                                                   tbp->pass_arg_num,
    7389              :                                                   tbp->pass_arg);
    7390              : 
    7391         2248 :   return true;
    7392              : }
    7393              : 
    7394              : 
    7395              : /* Extract the passed object from a PPC call (a copy of it).  */
    7396              : 
    7397              : static gfc_expr*
    7398           85 : extract_ppc_passed_object (gfc_expr *e)
    7399              : {
    7400           85 :   gfc_expr *po;
    7401           85 :   gfc_ref **ref;
    7402              : 
    7403           85 :   po = gfc_get_expr ();
    7404           85 :   po->expr_type = EXPR_VARIABLE;
    7405           85 :   po->symtree = e->symtree;
    7406           85 :   po->ref = gfc_copy_ref (e->ref);
    7407           85 :   po->where = e->where;
    7408              : 
    7409              :   /* Remove PPC reference.  */
    7410           85 :   ref = &po->ref;
    7411           91 :   while ((*ref)->next)
    7412            6 :     ref = &(*ref)->next;
    7413           85 :   gfc_free_ref_list (*ref);
    7414           85 :   *ref = NULL;
    7415              : 
    7416           85 :   if (!gfc_resolve_expr (po))
    7417            0 :     return NULL;
    7418              : 
    7419              :   return po;
    7420              : }
    7421              : 
    7422              : 
    7423              : /* Update the actual arglist of a procedure pointer component to include the
    7424              :    passed-object.  */
    7425              : 
    7426              : static bool
    7427          594 : update_ppc_arglist (gfc_expr* e)
    7428              : {
    7429          594 :   gfc_expr* po;
    7430          594 :   gfc_component *ppc;
    7431          594 :   gfc_typebound_proc* tb;
    7432              : 
    7433          594 :   ppc = gfc_get_proc_ptr_comp (e);
    7434          594 :   if (!ppc)
    7435              :     return false;
    7436              : 
    7437          594 :   tb = ppc->tb;
    7438              : 
    7439          594 :   if (tb->error)
    7440              :     return false;
    7441          592 :   else if (tb->nopass)
    7442              :     return true;
    7443              : 
    7444           85 :   po = extract_ppc_passed_object (e);
    7445           85 :   if (!po)
    7446              :     return false;
    7447              : 
    7448              :   /* F08:R739.  */
    7449           85 :   if (po->rank != 0)
    7450              :     {
    7451            0 :       gfc_error ("Passed-object at %L must be scalar", &e->where);
    7452            0 :       return false;
    7453              :     }
    7454              : 
    7455              :   /* F08:C611.  */
    7456           85 :   if (po->ts.type == BT_DERIVED && po->ts.u.derived->attr.abstract)
    7457              :     {
    7458            1 :       gfc_error ("Base object for procedure-pointer component call at %L is of"
    7459              :                  " ABSTRACT type %qs", &e->where, po->ts.u.derived->name);
    7460            1 :       return false;
    7461              :     }
    7462              : 
    7463           84 :   gcc_assert (tb->pass_arg_num > 0);
    7464           84 :   e->value.compcall.actual = update_arglist_pass (e->value.compcall.actual, po,
    7465              :                                                   tb->pass_arg_num,
    7466              :                                                   tb->pass_arg);
    7467              : 
    7468           84 :   return true;
    7469              : }
    7470              : 
    7471              : 
    7472              : /* Check that the object a TBP is called on is valid, i.e. it must not be
    7473              :    of ABSTRACT type (as in subobject%abstract_parent%tbp()).  */
    7474              : 
    7475              : static bool
    7476         3431 : check_typebound_baseobject (gfc_expr* e)
    7477              : {
    7478         3431 :   gfc_expr* base;
    7479         3431 :   bool return_value = false;
    7480              : 
    7481         3431 :   base = extract_compcall_passed_object (e);
    7482         3431 :   if (!base)
    7483              :     return false;
    7484              : 
    7485         3428 :   if (base->ts.type != BT_DERIVED && base->ts.type != BT_CLASS)
    7486              :     {
    7487            1 :       gfc_error ("Error in typebound call at %L", &e->where);
    7488            1 :       goto cleanup;
    7489              :     }
    7490              : 
    7491         3427 :   if (base->ts.type == BT_CLASS && !gfc_expr_attr (base).class_ok)
    7492            1 :     return false;
    7493              : 
    7494              :   /* F08:C611.  */
    7495         3426 :   if (base->ts.type == BT_DERIVED && base->ts.u.derived->attr.abstract)
    7496              :     {
    7497            3 :       gfc_error ("Base object for type-bound procedure call at %L is of"
    7498              :                  " ABSTRACT type %qs", &e->where, base->ts.u.derived->name);
    7499            3 :       goto cleanup;
    7500              :     }
    7501              : 
    7502              :   /* F08:C1230. If the procedure called is NOPASS,
    7503              :      the base object must be scalar.  */
    7504         3423 :   if (e->value.compcall.tbp->nopass && base->rank != 0)
    7505              :     {
    7506            1 :       gfc_error ("Base object for NOPASS type-bound procedure call at %L must"
    7507              :                  " be scalar", &e->where);
    7508            1 :       goto cleanup;
    7509              :     }
    7510              : 
    7511              :   return_value = true;
    7512              : 
    7513         3427 : cleanup:
    7514         3427 :   gfc_free_expr (base);
    7515         3427 :   return return_value;
    7516              : }
    7517              : 
    7518              : 
    7519              : /* Resolve a call to a type-bound procedure, either function or subroutine,
    7520              :    statically from the data in an EXPR_COMPCALL expression.  The adapted
    7521              :    arglist and the target-procedure symtree are returned.  */
    7522              : 
    7523              : static bool
    7524         3420 : resolve_typebound_static (gfc_expr* e, gfc_symtree** target,
    7525              :                           gfc_actual_arglist** actual)
    7526              : {
    7527         3420 :   gcc_assert (e->expr_type == EXPR_COMPCALL);
    7528         3420 :   gcc_assert (!e->value.compcall.tbp->is_generic);
    7529              : 
    7530              :   /* Update the actual arglist for PASS.  */
    7531         3420 :   if (!update_compcall_arglist (e))
    7532              :     return false;
    7533              : 
    7534         3418 :   *actual = e->value.compcall.actual;
    7535         3418 :   *target = e->value.compcall.tbp->u.specific;
    7536              : 
    7537         3418 :   gfc_free_ref_list (e->ref);
    7538         3418 :   e->ref = NULL;
    7539         3418 :   e->value.compcall.actual = NULL;
    7540              : 
    7541              :   /* If we find a deferred typebound procedure, check for derived types
    7542              :      that an overriding typebound procedure has not been missed.  */
    7543         3418 :   if (e->value.compcall.name
    7544         3418 :       && !e->value.compcall.tbp->non_overridable
    7545         3400 :       && e->value.compcall.base_object
    7546          834 :       && e->value.compcall.base_object->ts.type == BT_DERIVED)
    7547              :     {
    7548          541 :       gfc_symtree *st;
    7549          541 :       gfc_symbol *derived;
    7550              : 
    7551              :       /* Use the derived type of the base_object.  */
    7552          541 :       derived = e->value.compcall.base_object->ts.u.derived;
    7553          541 :       st = NULL;
    7554              : 
    7555              :       /* If necessary, go through the inheritance chain.  */
    7556         1631 :       while (!st && derived)
    7557              :         {
    7558              :           /* Look for the typebound procedure 'name'.  */
    7559          549 :           if (derived->f2k_derived && derived->f2k_derived->tb_sym_root)
    7560          541 :             st = gfc_find_symtree (derived->f2k_derived->tb_sym_root,
    7561              :                                    e->value.compcall.name);
    7562          549 :           if (!st)
    7563            8 :             derived = gfc_get_derived_super_type (derived);
    7564              :         }
    7565              : 
    7566              :       /* Now find the specific name in the derived type namespace.  */
    7567          541 :       if (st && st->n.tb && st->n.tb->u.specific)
    7568          541 :         gfc_find_sym_tree (st->n.tb->u.specific->name,
    7569          541 :                            derived->ns, 1, &st);
    7570          541 :       if (st)
    7571          541 :         *target = st;
    7572              :     }
    7573              : 
    7574         3418 :   if (is_illegal_recursion ((*target)->n.sym, gfc_current_ns)
    7575         3418 :       && !e->value.compcall.tbp->deferred)
    7576            1 :     gfc_warning (0, "Non-RECURSIVE procedure %qs at %L is possibly calling"
    7577              :                  " itself recursively.  Declare it RECURSIVE or use"
    7578              :                  " %<-frecursive%>", (*target)->n.sym->name, &e->where);
    7579              : 
    7580              :   return true;
    7581              : }
    7582              : 
    7583              : 
    7584              : /* Get the ultimate declared type from an expression.  In addition,
    7585              :    return the last class/derived type reference and the copy of the
    7586              :    reference list.  If check_types is set true, derived types are
    7587              :    identified as well as class references.  */
    7588              : static gfc_symbol*
    7589         3333 : get_declared_from_expr (gfc_ref **class_ref, gfc_ref **new_ref,
    7590              :                         gfc_expr *e, bool check_types)
    7591              : {
    7592         3333 :   gfc_symbol *declared;
    7593         3333 :   gfc_ref *ref;
    7594              : 
    7595         3333 :   declared = NULL;
    7596         3333 :   if (class_ref)
    7597         2900 :     *class_ref = NULL;
    7598         3333 :   if (new_ref)
    7599         2607 :     *new_ref = gfc_copy_ref (e->ref);
    7600              : 
    7601         4128 :   for (ref = e->ref; ref; ref = ref->next)
    7602              :     {
    7603          795 :       if (ref->type != REF_COMPONENT)
    7604          292 :         continue;
    7605              : 
    7606          503 :       if ((ref->u.c.component->ts.type == BT_CLASS
    7607          256 :              || (check_types && gfc_bt_struct (ref->u.c.component->ts.type)))
    7608          428 :           && ref->u.c.component->attr.flavor != FL_PROCEDURE)
    7609              :         {
    7610          354 :           declared = ref->u.c.component->ts.u.derived;
    7611          354 :           if (class_ref)
    7612          332 :             *class_ref = ref;
    7613              :         }
    7614              :     }
    7615              : 
    7616         3333 :   if (declared == NULL)
    7617         3005 :     declared = e->symtree->n.sym->ts.u.derived;
    7618              : 
    7619         3333 :   return declared;
    7620              : }
    7621              : 
    7622              : 
    7623              : /* Given an EXPR_COMPCALL calling a GENERIC typebound procedure, figure out
    7624              :    which of the specific bindings (if any) matches the arglist and transform
    7625              :    the expression into a call of that binding.  */
    7626              : 
    7627              : static bool
    7628         3422 : resolve_typebound_generic_call (gfc_expr* e, const char **name)
    7629              : {
    7630         3422 :   gfc_typebound_proc* genproc;
    7631         3422 :   const char* genname;
    7632         3422 :   gfc_symtree *st;
    7633         3422 :   gfc_symbol *derived;
    7634              : 
    7635         3422 :   gcc_assert (e->expr_type == EXPR_COMPCALL);
    7636         3422 :   genname = e->value.compcall.name;
    7637         3422 :   genproc = e->value.compcall.tbp;
    7638              : 
    7639         3422 :   if (!genproc->is_generic)
    7640              :     return true;
    7641              : 
    7642              :   /* Try the bindings on this type and in the inheritance hierarchy.  */
    7643          445 :   for (; genproc; genproc = genproc->overridden)
    7644              :     {
    7645          443 :       gfc_tbp_generic* g;
    7646              : 
    7647          443 :       gcc_assert (genproc->is_generic);
    7648          677 :       for (g = genproc->u.generic; g; g = g->next)
    7649              :         {
    7650          667 :           gfc_symbol* target;
    7651          667 :           gfc_actual_arglist* args;
    7652          667 :           bool matches;
    7653              : 
    7654          667 :           gcc_assert (g->specific);
    7655              : 
    7656          667 :           if (g->specific->error)
    7657            0 :             continue;
    7658              : 
    7659          667 :           target = g->specific->u.specific->n.sym;
    7660              : 
    7661              :           /* Get the right arglist by handling PASS/NOPASS.  */
    7662          667 :           args = gfc_copy_actual_arglist (e->value.compcall.actual);
    7663          667 :           if (!g->specific->nopass)
    7664              :             {
    7665          581 :               gfc_expr* po;
    7666          581 :               po = extract_compcall_passed_object (e);
    7667          581 :               if (!po)
    7668              :                 {
    7669            0 :                   gfc_free_actual_arglist (args);
    7670            0 :                   return false;
    7671              :                 }
    7672              : 
    7673          581 :               gcc_assert (g->specific->pass_arg_num > 0);
    7674          581 :               gcc_assert (!g->specific->error);
    7675          581 :               args = update_arglist_pass (args, po, g->specific->pass_arg_num,
    7676              :                                           g->specific->pass_arg);
    7677              :             }
    7678         1339 :           resolve_actual_arglist (args, target->attr.proc,
    7679          667 :                                   is_external_proc (target)
    7680            5 :                                   && gfc_sym_get_dummy_args (target) == NULL);
    7681              : 
    7682              :           /* Check if this arglist matches the formal.  */
    7683          667 :           matches = gfc_arglist_matches_symbol (&args, target);
    7684              : 
    7685              :           /* Clean up and break out of the loop if we've found it.  */
    7686          667 :           gfc_free_actual_arglist (args);
    7687          667 :           if (matches)
    7688              :             {
    7689          433 :               e->value.compcall.tbp = g->specific;
    7690          433 :               genname = g->specific_st->name;
    7691              :               /* Pass along the name for CLASS methods, where the vtab
    7692              :                  procedure pointer component has to be referenced.  */
    7693          433 :               if (name)
    7694          161 :                 *name = genname;
    7695          433 :               goto success;
    7696              :             }
    7697              :         }
    7698              :     }
    7699              : 
    7700              :   /* Nothing matching found!  */
    7701            2 :   gfc_error ("Found no matching specific binding for the call to the GENERIC"
    7702              :              " %qs at %L", genname, &e->where);
    7703            2 :   return false;
    7704              : 
    7705          433 : success:
    7706              :   /* Make sure that we have the right specific instance for the name.  */
    7707          433 :   derived = get_declared_from_expr (NULL, NULL, e, true);
    7708              : 
    7709          433 :   st = gfc_find_typebound_proc (derived, NULL, genname, true, &e->where);
    7710          433 :   if (st)
    7711          433 :     e->value.compcall.tbp = st->n.tb;
    7712              : 
    7713              :   return true;
    7714              : }
    7715              : 
    7716              : 
    7717              : /* Resolve a call to a type-bound subroutine.  */
    7718              : 
    7719              : static bool
    7720         1768 : resolve_typebound_call (gfc_code* c, const char **name, bool *overridable)
    7721              : {
    7722         1768 :   gfc_actual_arglist* newactual;
    7723         1768 :   gfc_symtree* target;
    7724              : 
    7725              :   /* Check that's really a SUBROUTINE.  */
    7726         1768 :   if (!c->expr1->value.compcall.tbp->subroutine)
    7727              :     {
    7728           17 :       if (!c->expr1->value.compcall.tbp->is_generic
    7729           15 :           && c->expr1->value.compcall.tbp->u.specific
    7730           15 :           && c->expr1->value.compcall.tbp->u.specific->n.sym
    7731           15 :           && c->expr1->value.compcall.tbp->u.specific->n.sym->attr.subroutine)
    7732           12 :         c->expr1->value.compcall.tbp->subroutine = 1;
    7733              :       else
    7734              :         {
    7735            5 :           gfc_error ("%qs at %L should be a SUBROUTINE",
    7736              :                      c->expr1->value.compcall.name, &c->loc);
    7737            5 :           return false;
    7738              :         }
    7739              :     }
    7740              : 
    7741         1763 :   if (!check_typebound_baseobject (c->expr1))
    7742              :     return false;
    7743              : 
    7744              :   /* Pass along the name for CLASS methods, where the vtab
    7745              :      procedure pointer component has to be referenced.  */
    7746         1756 :   if (name)
    7747          480 :     *name = c->expr1->value.compcall.name;
    7748              : 
    7749         1756 :   if (!resolve_typebound_generic_call (c->expr1, name))
    7750              :     return false;
    7751              : 
    7752              :   /* Pass along the NON_OVERRIDABLE attribute of the specific TBP. */
    7753         1755 :   if (overridable)
    7754          371 :     *overridable = !c->expr1->value.compcall.tbp->non_overridable;
    7755              : 
    7756              :   /* Transform into an ordinary EXEC_CALL for now.  */
    7757              : 
    7758         1755 :   if (!resolve_typebound_static (c->expr1, &target, &newactual))
    7759              :     return false;
    7760              : 
    7761         1753 :   c->ext.actual = newactual;
    7762         1753 :   c->symtree = target;
    7763         1753 :   c->op = (c->expr1->value.compcall.assign ? EXEC_ASSIGN_CALL : EXEC_CALL);
    7764              : 
    7765         1753 :   gcc_assert (!c->expr1->ref && !c->expr1->value.compcall.actual);
    7766              : 
    7767         1753 :   gfc_free_expr (c->expr1);
    7768         1753 :   c->expr1 = gfc_get_expr ();
    7769         1753 :   c->expr1->expr_type = EXPR_FUNCTION;
    7770         1753 :   c->expr1->symtree = target;
    7771         1753 :   c->expr1->where = c->loc;
    7772              : 
    7773         1753 :   return resolve_call (c);
    7774              : }
    7775              : 
    7776              : 
    7777              : /* Resolve a component-call expression.  */
    7778              : static bool
    7779         1675 : resolve_compcall (gfc_expr* e, const char **name)
    7780              : {
    7781         1675 :   gfc_actual_arglist* newactual;
    7782         1675 :   gfc_symtree* target;
    7783              : 
    7784              :   /* Check that's really a FUNCTION.  */
    7785         1675 :   if (!e->value.compcall.tbp->function)
    7786              :     {
    7787            7 :       if (e->symtree && e->symtree->n.sym->resolve_symbol_called)
    7788            5 :         gfc_error ("%qs at %L should be a FUNCTION", e->value.compcall.name,
    7789              :                    &e->where);
    7790              :       return false;
    7791              :     }
    7792              : 
    7793              : 
    7794              :   /* These must not be assign-calls!  */
    7795         1668 :   gcc_assert (!e->value.compcall.assign);
    7796              : 
    7797         1668 :   if (!check_typebound_baseobject (e))
    7798              :     return false;
    7799              : 
    7800              :   /* Pass along the name for CLASS methods, where the vtab
    7801              :      procedure pointer component has to be referenced.  */
    7802         1666 :   if (name)
    7803          864 :     *name = e->value.compcall.name;
    7804              : 
    7805         1666 :   if (!resolve_typebound_generic_call (e, name))
    7806              :     return false;
    7807         1665 :   gcc_assert (!e->value.compcall.tbp->is_generic);
    7808              : 
    7809              :   /* Take the rank from the function's symbol.  */
    7810         1665 :   if (e->value.compcall.tbp->u.specific->n.sym->as)
    7811              :     {
    7812          155 :       e->rank = e->value.compcall.tbp->u.specific->n.sym->as->rank;
    7813          155 :       e->corank = e->value.compcall.tbp->u.specific->n.sym->as->corank;
    7814              :     }
    7815              : 
    7816              :   /* For now, we simply transform it into an EXPR_FUNCTION call with the same
    7817              :      arglist to the TBP's binding target.  */
    7818              : 
    7819         1665 :   if (!resolve_typebound_static (e, &target, &newactual))
    7820              :     return false;
    7821              : 
    7822         1665 :   e->value.function.actual = newactual;
    7823         1665 :   e->value.function.name = NULL;
    7824         1665 :   e->value.function.esym = target->n.sym;
    7825         1665 :   e->value.function.isym = NULL;
    7826         1665 :   e->symtree = target;
    7827         1665 :   e->ts = target->n.sym->ts;
    7828         1665 :   e->expr_type = EXPR_FUNCTION;
    7829              : 
    7830              :   /* Resolution is not necessary if this is a class subroutine; this
    7831              :      function only has to identify the specific proc. Resolution of
    7832              :      the call will be done next in resolve_typebound_call.  */
    7833         1665 :   return gfc_resolve_expr (e);
    7834              : }
    7835              : 
    7836              : 
    7837              : static bool resolve_fl_derived (gfc_symbol *sym);
    7838              : 
    7839              : 
    7840              : /* Resolve a typebound function, or 'method'. First separate all
    7841              :    the non-CLASS references by calling resolve_compcall directly.  */
    7842              : 
    7843              : static bool
    7844         1675 : resolve_typebound_function (gfc_expr* e)
    7845              : {
    7846         1675 :   gfc_symbol *declared;
    7847         1675 :   gfc_component *c;
    7848         1675 :   gfc_ref *new_ref;
    7849         1675 :   gfc_ref *class_ref;
    7850         1675 :   gfc_symtree *st;
    7851         1675 :   const char *name;
    7852         1675 :   gfc_typespec ts;
    7853         1675 :   gfc_expr *expr;
    7854         1675 :   bool overridable;
    7855              : 
    7856         1675 :   st = e->symtree;
    7857              : 
    7858              :   /* Deal with typebound operators for CLASS objects.  */
    7859         1675 :   expr = e->value.compcall.base_object;
    7860         1675 :   overridable = !e->value.compcall.tbp->non_overridable;
    7861         1675 :   if (expr && expr->ts.type == BT_CLASS && e->value.compcall.name)
    7862              :     {
    7863              :       /* Since the typebound operators are generic, we have to ensure
    7864              :          that any delays in resolution are corrected and that the vtab
    7865              :          is present.  */
    7866          184 :       ts = expr->ts;
    7867          184 :       declared = ts.u.derived;
    7868          184 :       if (!resolve_fl_derived (declared))
    7869              :         return false;
    7870              : 
    7871          184 :       c = gfc_find_component (declared, "_vptr", true, true, NULL);
    7872          184 :       if (c->ts.u.derived == NULL)
    7873            0 :         c->ts.u.derived = gfc_find_derived_vtab (declared);
    7874              : 
    7875          184 :       if (!resolve_compcall (e, &name))
    7876              :         return false;
    7877              : 
    7878              :       /* Use the generic name if it is there.  */
    7879          184 :       name = name ? name : e->value.function.esym->name;
    7880          184 :       e->symtree = expr->symtree;
    7881          184 :       e->ref = gfc_copy_ref (expr->ref);
    7882          184 :       get_declared_from_expr (&class_ref, NULL, e, false);
    7883              : 
    7884              :       /* Trim away the extraneous references that emerge from nested
    7885              :          use of interface.cc (extend_expr).  */
    7886          184 :       if (class_ref && class_ref->next)
    7887              :         {
    7888            0 :           gfc_free_ref_list (class_ref->next);
    7889            0 :           class_ref->next = NULL;
    7890              :         }
    7891          184 :       else if (e->ref && !class_ref && expr->ts.type != BT_CLASS)
    7892              :         {
    7893            0 :           gfc_free_ref_list (e->ref);
    7894            0 :           e->ref = NULL;
    7895              :         }
    7896              : 
    7897          184 :       gfc_add_vptr_component (e);
    7898          184 :       gfc_add_component_ref (e, name);
    7899          184 :       e->value.function.esym = NULL;
    7900          184 :       if (expr->expr_type != EXPR_VARIABLE)
    7901           80 :         e->base_expr = expr;
    7902              :       return true;
    7903              :     }
    7904              : 
    7905         1491 :   if (st == NULL)
    7906          195 :     return resolve_compcall (e, NULL);
    7907              : 
    7908         1296 :   if (!gfc_resolve_ref (e))
    7909              :     return false;
    7910              : 
    7911              :   /* It can happen that a generic, typebound procedure is marked as overridable
    7912              :      with all of the specific procedures being non-overridable. If this is the
    7913              :      case, it is safe to resolve the compcall.  */
    7914         1296 :   if (!expr && overridable
    7915         1288 :       && e->value.compcall.tbp->is_generic
    7916          198 :       && e->value.compcall.tbp->u.generic->specific
    7917          197 :       && e->value.compcall.tbp->u.generic->specific->non_overridable)
    7918              :     {
    7919              :       gfc_tbp_generic *g = e->value.compcall.tbp->u.generic;
    7920            6 :       for (; g; g = g->next)
    7921            4 :         if (!g->specific->non_overridable)
    7922              :           break;
    7923            2 :       if (g == NULL && resolve_compcall (e, &name))
    7924              :         return true;
    7925              :     }
    7926              : 
    7927              :   /* Get the CLASS declared type.  */
    7928         1294 :   declared = get_declared_from_expr (&class_ref, &new_ref, e, true);
    7929              : 
    7930         1294 :   if (!resolve_fl_derived (declared))
    7931              :     return false;
    7932              : 
    7933              :   /* Weed out cases of the ultimate component being a derived type.  */
    7934         1294 :   if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
    7935         1200 :          || (!class_ref && st->n.sym->ts.type != BT_CLASS))
    7936              :     {
    7937          614 :       gfc_free_ref_list (new_ref);
    7938          614 :       return resolve_compcall (e, NULL);
    7939              :     }
    7940              : 
    7941          680 :   c = gfc_find_component (declared, "_data", true, true, NULL);
    7942              : 
    7943              :   /* Treat the call as if it is a typebound procedure, in order to roll
    7944              :      out the correct name for the specific function.  */
    7945          680 :   if (!resolve_compcall (e, &name))
    7946              :     {
    7947            3 :       gfc_free_ref_list (new_ref);
    7948            3 :       return false;
    7949              :     }
    7950          677 :   ts = e->ts;
    7951              : 
    7952          677 :   if (overridable)
    7953              :     {
    7954              :       /* Convert the expression to a procedure pointer component call.  */
    7955          675 :       e->value.function.esym = NULL;
    7956          675 :       e->symtree = st;
    7957              : 
    7958          675 :       if (new_ref)
    7959          125 :         e->ref = new_ref;
    7960              : 
    7961              :       /* '_vptr' points to the vtab, which contains the procedure pointers.  */
    7962          675 :       gfc_add_vptr_component (e);
    7963          675 :       gfc_add_component_ref (e, name);
    7964              : 
    7965              :       /* Recover the typespec for the expression.  This is really only
    7966              :         necessary for generic procedures, where the additional call
    7967              :         to gfc_add_component_ref seems to throw the collection of the
    7968              :         correct typespec.  */
    7969          675 :       e->ts = ts;
    7970              :     }
    7971            2 :   else if (new_ref)
    7972            0 :     gfc_free_ref_list (new_ref);
    7973              : 
    7974              :   return true;
    7975              : }
    7976              : 
    7977              : /* Resolve a typebound subroutine, or 'method'. First separate all
    7978              :    the non-CLASS references by calling resolve_typebound_call
    7979              :    directly.  */
    7980              : 
    7981              : static bool
    7982         1768 : resolve_typebound_subroutine (gfc_code *code)
    7983              : {
    7984         1768 :   gfc_symbol *declared;
    7985         1768 :   gfc_component *c;
    7986         1768 :   gfc_ref *new_ref;
    7987         1768 :   gfc_ref *class_ref;
    7988         1768 :   gfc_symtree *st;
    7989         1768 :   const char *name;
    7990         1768 :   gfc_typespec ts;
    7991         1768 :   gfc_expr *expr;
    7992         1768 :   bool overridable;
    7993              : 
    7994         1768 :   st = code->expr1->symtree;
    7995              : 
    7996              :   /* Deal with typebound operators for CLASS objects.  */
    7997         1768 :   expr = code->expr1->value.compcall.base_object;
    7998         1768 :   overridable = !code->expr1->value.compcall.tbp->non_overridable;
    7999         1768 :   if (expr && expr->ts.type == BT_CLASS && code->expr1->value.compcall.name)
    8000              :     {
    8001              :       /* If the base_object is not a variable, the corresponding actual
    8002              :          argument expression must be stored in e->base_expression so
    8003              :          that the corresponding tree temporary can be used as the base
    8004              :          object in gfc_conv_procedure_call.  */
    8005          109 :       if (expr->expr_type != EXPR_VARIABLE)
    8006              :         {
    8007              :           gfc_actual_arglist *args;
    8008              : 
    8009              :           args= code->expr1->value.function.actual;
    8010              :           for (; args; args = args->next)
    8011              :             if (expr == args->expr)
    8012              :               expr = args->expr;
    8013              :         }
    8014              : 
    8015              :       /* Since the typebound operators are generic, we have to ensure
    8016              :          that any delays in resolution are corrected and that the vtab
    8017              :          is present.  */
    8018          109 :       declared = expr->ts.u.derived;
    8019          109 :       c = gfc_find_component (declared, "_vptr", true, true, NULL);
    8020          109 :       if (c->ts.u.derived == NULL)
    8021            0 :         c->ts.u.derived = gfc_find_derived_vtab (declared);
    8022              : 
    8023          109 :       if (!resolve_typebound_call (code, &name, NULL))
    8024              :         return false;
    8025              : 
    8026              :       /* Use the generic name if it is there.  */
    8027          109 :       name = name ? name : code->expr1->value.function.esym->name;
    8028          109 :       code->expr1->symtree = expr->symtree;
    8029          109 :       code->expr1->ref = gfc_copy_ref (expr->ref);
    8030              : 
    8031              :       /* Trim away the extraneous references that emerge from nested
    8032              :          use of interface.cc (extend_expr).  */
    8033          109 :       get_declared_from_expr (&class_ref, NULL, code->expr1, false);
    8034          109 :       if (class_ref && class_ref->next)
    8035              :         {
    8036            0 :           gfc_free_ref_list (class_ref->next);
    8037            0 :           class_ref->next = NULL;
    8038              :         }
    8039          109 :       else if (code->expr1->ref && !class_ref)
    8040              :         {
    8041           18 :           gfc_free_ref_list (code->expr1->ref);
    8042           18 :           code->expr1->ref = NULL;
    8043              :         }
    8044              : 
    8045              :       /* Now use the procedure in the vtable.  */
    8046          109 :       gfc_add_vptr_component (code->expr1);
    8047          109 :       gfc_add_component_ref (code->expr1, name);
    8048          109 :       code->expr1->value.function.esym = NULL;
    8049          109 :       if (expr->expr_type != EXPR_VARIABLE)
    8050            0 :         code->expr1->base_expr = expr;
    8051              :       return true;
    8052              :     }
    8053              : 
    8054         1659 :   if (st == NULL)
    8055          346 :     return resolve_typebound_call (code, NULL, NULL);
    8056              : 
    8057         1313 :   if (!gfc_resolve_ref (code->expr1))
    8058              :     return false;
    8059              : 
    8060              :   /* Get the CLASS declared type.  */
    8061         1313 :   get_declared_from_expr (&class_ref, &new_ref, code->expr1, true);
    8062              : 
    8063              :   /* Weed out cases of the ultimate component being a derived type.  */
    8064         1313 :   if ((class_ref && gfc_bt_struct (class_ref->u.c.component->ts.type))
    8065         1248 :          || (!class_ref && st->n.sym->ts.type != BT_CLASS))
    8066              :     {
    8067          937 :       gfc_free_ref_list (new_ref);
    8068          937 :       return resolve_typebound_call (code, NULL, NULL);
    8069              :     }
    8070              : 
    8071          376 :   if (!resolve_typebound_call (code, &name, &overridable))
    8072              :     {
    8073            5 :       gfc_free_ref_list (new_ref);
    8074            5 :       return false;
    8075              :     }
    8076          371 :   ts = code->expr1->ts;
    8077              : 
    8078          371 :   if (overridable)
    8079              :     {
    8080              :       /* Convert the expression to a procedure pointer component call.  */
    8081          369 :       code->expr1->value.function.esym = NULL;
    8082          369 :       code->expr1->symtree = st;
    8083              : 
    8084          369 :       if (new_ref)
    8085           93 :         code->expr1->ref = new_ref;
    8086              : 
    8087              :       /* '_vptr' points to the vtab, which contains the procedure pointers.  */
    8088          369 :       gfc_add_vptr_component (code->expr1);
    8089          369 :       gfc_add_component_ref (code->expr1, name);
    8090              : 
    8091              :       /* Recover the typespec for the expression.  This is really only
    8092              :         necessary for generic procedures, where the additional call
    8093              :         to gfc_add_component_ref seems to throw the collection of the
    8094              :         correct typespec.  */
    8095          369 :       code->expr1->ts = ts;
    8096              :     }
    8097            2 :   else if (new_ref)
    8098            0 :     gfc_free_ref_list (new_ref);
    8099              : 
    8100              :   return true;
    8101              : }
    8102              : 
    8103              : 
    8104              : /* Resolve a CALL to a Procedure Pointer Component (Subroutine).  */
    8105              : 
    8106              : static bool
    8107          124 : resolve_ppc_call (gfc_code* c)
    8108              : {
    8109          124 :   gfc_component *comp;
    8110              : 
    8111          124 :   comp = gfc_get_proc_ptr_comp (c->expr1);
    8112          124 :   gcc_assert (comp != NULL);
    8113              : 
    8114          124 :   c->resolved_sym = c->expr1->symtree->n.sym;
    8115          124 :   c->expr1->expr_type = EXPR_VARIABLE;
    8116              : 
    8117          124 :   if (!comp->attr.subroutine)
    8118            1 :     gfc_add_subroutine (&comp->attr, comp->name, &c->expr1->where);
    8119              : 
    8120          124 :   if (!gfc_resolve_ref (c->expr1))
    8121              :     return false;
    8122              : 
    8123          124 :   if (!update_ppc_arglist (c->expr1))
    8124              :     return false;
    8125              : 
    8126          123 :   c->ext.actual = c->expr1->value.compcall.actual;
    8127              : 
    8128          123 :   if (!resolve_actual_arglist (c->ext.actual, comp->attr.proc,
    8129          123 :                                !(comp->ts.interface
    8130           93 :                                  && comp->ts.interface->formal)))
    8131              :     return false;
    8132              : 
    8133          123 :   if (!pure_subroutine (comp->ts.interface, comp->name, &c->expr1->where))
    8134              :     return false;
    8135              : 
    8136          122 :   gfc_ppc_use (comp, &c->expr1->value.compcall.actual, &c->expr1->where);
    8137              : 
    8138          122 :   return true;
    8139              : }
    8140              : 
    8141              : 
    8142              : /* Resolve a Function Call to a Procedure Pointer Component (Function).  */
    8143              : 
    8144              : static bool
    8145          470 : resolve_expr_ppc (gfc_expr* e)
    8146              : {
    8147          470 :   gfc_component *comp;
    8148              : 
    8149          470 :   comp = gfc_get_proc_ptr_comp (e);
    8150          470 :   gcc_assert (comp != NULL);
    8151              : 
    8152              :   /* Convert to EXPR_FUNCTION.  */
    8153          470 :   e->expr_type = EXPR_FUNCTION;
    8154          470 :   e->value.function.isym = NULL;
    8155          470 :   e->value.function.actual = e->value.compcall.actual;
    8156          470 :   e->ts = comp->ts;
    8157          470 :   if (comp->as != NULL)
    8158              :     {
    8159           28 :       e->rank = comp->as->rank;
    8160           28 :       e->corank = comp->as->corank;
    8161              :     }
    8162              : 
    8163          470 :   if (!comp->attr.function)
    8164            3 :     gfc_add_function (&comp->attr, comp->name, &e->where);
    8165              : 
    8166          470 :   if (!gfc_resolve_ref (e))
    8167              :     return false;
    8168              : 
    8169          470 :   if (!resolve_actual_arglist (e->value.function.actual, comp->attr.proc,
    8170          470 :                                !(comp->ts.interface
    8171          469 :                                  && comp->ts.interface->formal)))
    8172              :     return false;
    8173              : 
    8174          470 :   if (!update_ppc_arglist (e))
    8175              :     return false;
    8176              : 
    8177          468 :   if (!check_pure_function(e))
    8178              :     return false;
    8179              : 
    8180          467 :   gfc_ppc_use (comp, &e->value.compcall.actual, &e->where);
    8181              : 
    8182          467 :   return true;
    8183              : }
    8184              : 
    8185              : 
    8186              : static bool
    8187        12296 : gfc_is_expandable_expr (gfc_expr *e)
    8188              : {
    8189        12296 :   gfc_constructor *con;
    8190              : 
    8191        12296 :   if (e->expr_type == EXPR_ARRAY)
    8192              :     {
    8193              :       /* Traverse the constructor looking for variables that are flavor
    8194              :          parameter.  Parameters must be expanded since they are fully used at
    8195              :          compile time.  */
    8196        12296 :       con = gfc_constructor_first (e->value.constructor);
    8197        32541 :       for (; con; con = gfc_constructor_next (con))
    8198              :         {
    8199        14243 :           if (con->expr->expr_type == EXPR_VARIABLE
    8200         5509 :               && con->expr->symtree
    8201         5509 :               && (con->expr->symtree->n.sym->attr.flavor == FL_PARAMETER
    8202         5509 :               || con->expr->symtree->n.sym->attr.flavor == FL_VARIABLE))
    8203              :             return true;
    8204         8734 :           if (con->expr->expr_type == EXPR_ARRAY
    8205         8734 :               && gfc_is_expandable_expr (con->expr))
    8206              :             return true;
    8207              :         }
    8208              :     }
    8209              : 
    8210              :   return false;
    8211              : }
    8212              : 
    8213              : 
    8214              : /* Sometimes variables in specification expressions of the result
    8215              :    of module procedures in submodules wind up not being the 'real'
    8216              :    dummy.  Find this, if possible, in the namespace of the first
    8217              :    formal argument.  */
    8218              : 
    8219              : static void
    8220         4731 : fixup_unique_dummy (gfc_expr *e)
    8221              : {
    8222         4731 :   gfc_symtree *st = NULL;
    8223         4731 :   gfc_symbol *s = NULL;
    8224              : 
    8225         4731 :   if (e->symtree->n.sym->ns->proc_name
    8226         4731 :       && e->symtree->n.sym->ns->proc_name->formal)
    8227         4731 :     s = e->symtree->n.sym->ns->proc_name->formal->sym;
    8228              : 
    8229         4731 :   if (s != NULL)
    8230         4731 :     st = gfc_find_symtree (s->ns->sym_root, e->symtree->n.sym->name);
    8231              : 
    8232         4731 :   if (st != NULL
    8233           14 :       && st->n.sym != NULL
    8234           14 :       && st->n.sym->attr.dummy)
    8235           14 :     e->symtree = st;
    8236         4731 : }
    8237              : 
    8238              : 
    8239              : /* Resolve an expression.  That is, make sure that types of operands agree
    8240              :    with their operators, intrinsic operators are converted to function calls
    8241              :    for overloaded types and unresolved function references are resolved.  */
    8242              : 
    8243              : bool
    8244      7074377 : gfc_resolve_expr (gfc_expr *e)
    8245              : {
    8246      7074377 :   bool t;
    8247      7074377 :   bool inquiry_save, actual_arg_save, first_actual_arg_save;
    8248              : 
    8249      7074377 :   if (e == NULL || e->do_not_resolve_again)
    8250              :     return true;
    8251              : 
    8252              :   /* inquiry_argument only applies to variables.  */
    8253      5122009 :   inquiry_save = inquiry_argument;
    8254      5122009 :   actual_arg_save = actual_arg;
    8255      5122009 :   first_actual_arg_save = first_actual_arg;
    8256              : 
    8257      5122009 :   if (e->expr_type != EXPR_VARIABLE)
    8258              :     {
    8259      3776096 :       inquiry_argument = false;
    8260      3776096 :       actual_arg = false;
    8261      3776096 :       first_actual_arg = false;
    8262              :     }
    8263      1345913 :   else if (e->symtree != NULL
    8264      1345438 :            && *e->symtree->name == '@'
    8265         5461 :            && e->symtree->n.sym->attr.dummy)
    8266              :     {
    8267              :       /* Deal with submodule specification expressions that are not
    8268              :          found to be referenced in module.cc(read_cleanup).  */
    8269         4731 :       fixup_unique_dummy (e);
    8270              :     }
    8271              : 
    8272      5122009 :   switch (e->expr_type)
    8273              :     {
    8274       536920 :     case EXPR_OP:
    8275       536920 :       t = resolve_operator (e);
    8276       536920 :       break;
    8277              : 
    8278          170 :     case EXPR_CONDITIONAL:
    8279          170 :       t = resolve_conditional (e);
    8280          170 :       break;
    8281              : 
    8282      1694935 :     case EXPR_FUNCTION:
    8283      1694935 :     case EXPR_VARIABLE:
    8284              : 
    8285      1694935 :       if (check_host_association (e))
    8286       349058 :         t = resolve_function (e);
    8287              :       else
    8288      1345877 :         t = resolve_variable (e);
    8289              : 
    8290      1694935 :       if (e->ts.type == BT_CHARACTER && e->ts.u.cl == NULL && e->ref
    8291         7403 :           && e->ref->type != REF_SUBSTRING)
    8292         2174 :         gfc_resolve_substring_charlen (e);
    8293              : 
    8294              :       break;
    8295              : 
    8296         1675 :     case EXPR_COMPCALL:
    8297         1675 :       t = resolve_typebound_function (e);
    8298         1675 :       break;
    8299              : 
    8300          508 :     case EXPR_SUBSTRING:
    8301          508 :       t = gfc_resolve_ref (e);
    8302          508 :       break;
    8303              : 
    8304              :     case EXPR_CONSTANT:
    8305              :     case EXPR_NULL:
    8306              :       t = true;
    8307              :       break;
    8308              : 
    8309          470 :     case EXPR_PPC:
    8310          470 :       t = resolve_expr_ppc (e);
    8311          470 :       break;
    8312              : 
    8313        73989 :     case EXPR_ARRAY:
    8314        73989 :       t = false;
    8315        73989 :       if (!gfc_resolve_ref (e))
    8316              :         break;
    8317              : 
    8318        73989 :       t = gfc_resolve_array_constructor (e);
    8319              :       /* Also try to expand a constructor.  */
    8320        73989 :       if (t)
    8321              :         {
    8322        73887 :           gfc_expression_rank (e);
    8323        73887 :           if (gfc_is_constant_expr (e) || gfc_is_expandable_expr (e))
    8324        69139 :             gfc_expand_constructor (e, false);
    8325              :         }
    8326              : 
    8327              :       /* This provides the opportunity for the length of constructors with
    8328              :          character valued function elements to propagate the string length
    8329              :          to the expression.  */
    8330        73887 :       if (t && e->ts.type == BT_CHARACTER)
    8331              :         {
    8332              :           /* For efficiency, we call gfc_expand_constructor for BT_CHARACTER
    8333              :              here rather then add a duplicate test for it above.  */
    8334        10862 :           gfc_expand_constructor (e, false);
    8335        10862 :           t = gfc_resolve_character_array_constructor (e);
    8336              :         }
    8337              : 
    8338              :       break;
    8339              : 
    8340        16788 :     case EXPR_STRUCTURE:
    8341        16788 :       t = gfc_resolve_ref (e);
    8342        16788 :       if (!t)
    8343              :         break;
    8344              : 
    8345        16788 :       t = resolve_structure_cons (e, 0);
    8346        16788 :       if (!t)
    8347              :         break;
    8348              : 
    8349        16776 :       t = gfc_simplify_expr (e, 0);
    8350        16776 :       break;
    8351              : 
    8352            0 :     default:
    8353            0 :       gfc_internal_error ("gfc_resolve_expr(): Bad expression type");
    8354              :     }
    8355              : 
    8356      5122009 :   if (e->ts.type == BT_CHARACTER && t && !e->ts.u.cl)
    8357       185413 :     fixup_charlen (e);
    8358              : 
    8359      5122009 :   inquiry_argument = inquiry_save;
    8360      5122009 :   actual_arg = actual_arg_save;
    8361      5122009 :   first_actual_arg = first_actual_arg_save;
    8362              : 
    8363              :   /* For some reason, resolving these expressions a second time mangles
    8364              :      the typespec of the expression itself.  */
    8365      5122009 :   if (t && e->expr_type == EXPR_VARIABLE
    8366      1342989 :       && e->symtree->n.sym->attr.select_rank_temporary
    8367         3470 :       && UNLIMITED_POLY (e->symtree->n.sym))
    8368           83 :     e->do_not_resolve_again = 1;
    8369              : 
    8370      5119447 :   if (t && gfc_current_ns->import_state != IMPORT_NOT_SET)
    8371         7354 :     t = check_import_status (e);
    8372              : 
    8373              :   return t;
    8374              : }
    8375              : 
    8376              : 
    8377              : /* Resolve an expression from an iterator.  They must be scalar and have
    8378              :    INTEGER or (optionally) REAL type.  */
    8379              : 
    8380              : static bool
    8381       155189 : gfc_resolve_iterator_expr (gfc_expr *expr, bool real_ok,
    8382              :                            const char *name_msgid)
    8383              : {
    8384       155189 :   if (!gfc_resolve_expr (expr))
    8385              :     return false;
    8386              : 
    8387       155184 :   if (expr->rank != 0)
    8388              :     {
    8389            0 :       gfc_error ("%s at %L must be a scalar", _(name_msgid), &expr->where);
    8390            0 :       return false;
    8391              :     }
    8392              : 
    8393       155184 :   if (expr->ts.type != BT_INTEGER)
    8394              :     {
    8395          317 :       if (expr->ts.type == BT_REAL)
    8396              :         {
    8397          317 :           if (real_ok)
    8398          314 :             return gfc_notify_std (GFC_STD_F95_DEL,
    8399              :                                    "%s at %L must be integer",
    8400          314 :                                    _(name_msgid), &expr->where);
    8401              :           else
    8402              :             {
    8403            3 :               gfc_error ("%s at %L must be INTEGER", _(name_msgid),
    8404              :                          &expr->where);
    8405            3 :               return false;
    8406              :             }
    8407              :         }
    8408              :       else
    8409              :         {
    8410            0 :           gfc_error ("%s at %L must be INTEGER", _(name_msgid), &expr->where);
    8411            0 :           return false;
    8412              :         }
    8413              :     }
    8414              :   return true;
    8415              : }
    8416              : 
    8417              : 
    8418              : /* Resolve the expressions in an iterator structure.  If REAL_OK is
    8419              :    false allow only INTEGER type iterators, otherwise allow REAL types.
    8420              :    Set own_scope to true for ac-implied-do and data-implied-do as those
    8421              :    have a separate scope such that, e.g., a INTENT(IN) doesn't apply.  */
    8422              : 
    8423              : bool
    8424        38806 : gfc_resolve_iterator (gfc_iterator *iter, bool real_ok, bool own_scope)
    8425              : {
    8426        38806 :   if (!gfc_resolve_iterator_expr (iter->var, real_ok, "Loop variable"))
    8427              :     return false;
    8428              : 
    8429        38802 :   if (!gfc_check_vardef_context (iter->var, false, false, own_scope,
    8430        38802 :                                  _("iterator variable")))
    8431              :     return false;
    8432              : 
    8433        38796 :   if (!gfc_resolve_iterator_expr (iter->start, real_ok,
    8434              :                                   "Start expression in DO loop"))
    8435              :     return false;
    8436              : 
    8437        38795 :   if (!gfc_resolve_iterator_expr (iter->end, real_ok,
    8438              :                                   "End expression in DO loop"))
    8439              :     return false;
    8440              : 
    8441        38792 :   if (!gfc_resolve_iterator_expr (iter->step, real_ok,
    8442              :                                   "Step expression in DO loop"))
    8443              :     return false;
    8444              : 
    8445              :   /* Convert start, end, and step to the same type as var.  */
    8446        38791 :   if (iter->start->ts.kind != iter->var->ts.kind
    8447        38462 :       || iter->start->ts.type != iter->var->ts.type)
    8448          393 :     gfc_convert_type (iter->start, &iter->var->ts, 1);
    8449              : 
    8450        38791 :   if (iter->end->ts.kind != iter->var->ts.kind
    8451        38489 :       || iter->end->ts.type != iter->var->ts.type)
    8452          345 :     gfc_convert_type (iter->end, &iter->var->ts, 1);
    8453              : 
    8454        38791 :   if (iter->step->ts.kind != iter->var->ts.kind
    8455        38499 :       || iter->step->ts.type != iter->var->ts.type)
    8456          358 :     gfc_convert_type (iter->step, &iter->var->ts, 1);
    8457              : 
    8458        38791 :   if (iter->step->expr_type == EXPR_CONSTANT)
    8459              :     {
    8460        37668 :       if ((iter->step->ts.type == BT_INTEGER
    8461        37555 :            && mpz_cmp_ui (iter->step->value.integer, 0) == 0)
    8462        75221 :           || (iter->step->ts.type == BT_REAL
    8463          113 :               && mpfr_sgn (iter->step->value.real) == 0))
    8464              :         {
    8465            3 :           gfc_error ("Step expression in DO loop at %L cannot be zero",
    8466            3 :                      &iter->step->where);
    8467            3 :           return false;
    8468              :         }
    8469              :     }
    8470              : 
    8471        38788 :   if (iter->start->expr_type == EXPR_CONSTANT
    8472        35644 :       && iter->end->expr_type == EXPR_CONSTANT
    8473        27834 :       && iter->step->expr_type == EXPR_CONSTANT)
    8474              :     {
    8475        27567 :       int sgn, cmp;
    8476        27567 :       if (iter->start->ts.type == BT_INTEGER)
    8477              :         {
    8478        27512 :           sgn = mpz_cmp_ui (iter->step->value.integer, 0);
    8479        27512 :           cmp = mpz_cmp (iter->end->value.integer, iter->start->value.integer);
    8480              :         }
    8481              :       else
    8482              :         {
    8483           55 :           sgn = mpfr_sgn (iter->step->value.real);
    8484           55 :           cmp = mpfr_cmp (iter->end->value.real, iter->start->value.real);
    8485              :         }
    8486        27567 :       if (warn_zerotrip && ((sgn > 0 && cmp < 0) || (sgn < 0 && cmp > 0)))
    8487          146 :         gfc_warning (OPT_Wzerotrip,
    8488              :                      "DO loop at %L will be executed zero times",
    8489          146 :                      &iter->step->where);
    8490              :     }
    8491              : 
    8492        38788 :   if (iter->end->expr_type == EXPR_CONSTANT
    8493        28202 :       && iter->end->ts.type == BT_INTEGER
    8494        28147 :       && iter->step->expr_type == EXPR_CONSTANT
    8495        27837 :       && iter->step->ts.type == BT_INTEGER
    8496        27837 :       && (mpz_cmp_si (iter->step->value.integer, -1L) == 0
    8497        27466 :           || mpz_cmp_si (iter->step->value.integer, 1L) == 0))
    8498              :     {
    8499        26680 :       bool is_step_positive = mpz_cmp_ui (iter->step->value.integer, 1) == 0;
    8500        26680 :       int k = gfc_validate_kind (BT_INTEGER, iter->end->ts.kind, false);
    8501              : 
    8502        26680 :       if (is_step_positive
    8503        26309 :           && mpz_cmp (iter->end->value.integer, gfc_integer_kinds[k].huge) == 0)
    8504            7 :         gfc_warning (OPT_Wundefined_do_loop,
    8505              :                      "DO loop at %L is undefined as it overflows",
    8506            7 :                      &iter->step->where);
    8507              :       else if (!is_step_positive
    8508          371 :                && mpz_cmp (iter->end->value.integer,
    8509          371 :                            gfc_integer_kinds[k].min_int) == 0)
    8510            7 :         gfc_warning (OPT_Wundefined_do_loop,
    8511              :                      "DO loop at %L is undefined as it underflows",
    8512            7 :                      &iter->step->where);
    8513              :     }
    8514              : 
    8515        38788 :   gfc_value_set_and_used (iter->var, &iter->var->where, VALUE_VARDEF,
    8516              :                           VALUE_USED);
    8517        38788 :   gfc_value_used_expr (iter->start, VALUE_USED);
    8518        38788 :   gfc_value_used_expr (iter->end, VALUE_USED);
    8519        38788 :   gfc_value_used_expr (iter->step, VALUE_USED);
    8520              : 
    8521        38788 :   return true;
    8522              : }
    8523              : 
    8524              : 
    8525              : /* Traversal function for find_forall_index.  f == 2 signals that
    8526              :    that variable itself is not to be checked - only the references.  */
    8527              : 
    8528              : static bool
    8529        42892 : forall_index (gfc_expr *expr, gfc_symbol *sym, int *f)
    8530              : {
    8531        42892 :   if (expr->expr_type != EXPR_VARIABLE)
    8532              :     return false;
    8533              : 
    8534              :   /* A scalar assignment  */
    8535        18243 :   if (!expr->ref || *f == 1)
    8536              :     {
    8537        12157 :       if (expr->symtree->n.sym == sym)
    8538              :         return true;
    8539              :       else
    8540         8117 :         return false;
    8541              :     }
    8542              : 
    8543         6086 :   if (*f == 2)
    8544         1731 :     *f = 1;
    8545              :   return false;
    8546              : }
    8547              : 
    8548              : 
    8549              : /* Check whether the FORALL index appears in the expression or not.
    8550              :    Returns true if SYM is found in EXPR.  */
    8551              : 
    8552              : bool
    8553        27246 : find_forall_index (gfc_expr *expr, gfc_symbol *sym, int f)
    8554              : {
    8555        27246 :   if (gfc_traverse_expr (expr, sym, forall_index, f))
    8556              :     return true;
    8557              :   else
    8558              :     return false;
    8559              : }
    8560              : 
    8561              : /* Check compliance with Fortran 2023's C1133 constraint for DO CONCURRENT
    8562              :    This constraint specifies rules for variables in locality-specs.  */
    8563              : 
    8564              : static int
    8565          927 : do_concur_locality_specs_f2023 (gfc_expr **expr, int *walk_subtrees, void *data)
    8566              : {
    8567          927 :   struct check_default_none_data *dt = (struct check_default_none_data *) data;
    8568              : 
    8569          927 :   if ((*expr)->expr_type == EXPR_VARIABLE)
    8570              :     {
    8571           22 :       gfc_symbol *sym = (*expr)->symtree->n.sym;
    8572           22 :       for (gfc_expr_list *list = dt->code->ext.concur.locality[LOCALITY_LOCAL];
    8573           24 :            list; list = list->next)
    8574              :         {
    8575            5 :           if (list->expr->symtree->n.sym == sym)
    8576              :             {
    8577            3 :               gfc_error ("Variable %qs referenced in concurrent-header at %L "
    8578              :                          "must not appear in LOCAL locality-spec at %L",
    8579              :                          sym->name, &(*expr)->where, &list->expr->where);
    8580            3 :               *walk_subtrees = 0;
    8581            3 :               return 1;
    8582              :             }
    8583              :         }
    8584              :     }
    8585              : 
    8586          924 :     *walk_subtrees = 1;
    8587          924 :     return 0;
    8588              : }
    8589              : 
    8590              : static int
    8591         4442 : check_default_none_expr (gfc_expr **e, int *, void *data)
    8592              : {
    8593         4442 :   struct check_default_none_data *d = (struct check_default_none_data*) data;
    8594              : 
    8595         4442 :   if ((*e)->expr_type == EXPR_VARIABLE)
    8596              :     {
    8597         2148 :       gfc_symbol *sym = (*e)->symtree->n.sym;
    8598              : 
    8599         2148 :       if (d->sym_hash->contains (sym))
    8600         1275 :         sym->mark = 1;
    8601              : 
    8602          873 :       else if (d->default_none)
    8603              :         {
    8604            8 :           gfc_namespace *ns2 = d->ns;
    8605           13 :           while (ns2)
    8606              :             {
    8607            8 :               if (ns2 == sym->ns)
    8608              :                 break;
    8609            5 :               ns2 = ns2->parent;
    8610              :             }
    8611              : 
    8612              :           /* A DO CONCURRENT iterator cannot appear in a locality spec.
    8613              :              Use d->code (the DO CONCURRENT node) rather than sym->ns->code,
    8614              :              which may be a different code type (e.g. EXEC_ASSOCIATE) whose
    8615              :              ext union would be read incorrectly.  */
    8616            8 :           for (gfc_forall_iterator *iter = d->code->ext.concur.forall_iterator;
    8617           17 :                iter; iter = iter->next)
    8618              :             {
    8619           10 :               if (!iter->var || !iter->var->symtree)
    8620            0 :                 continue;
    8621           10 :               const char *iter_name = iter->var->symtree->name;
    8622              :               /* Shadow iterators (from inline type-spec: integer :: i = ...)
    8623              :                  store the iterator with a leading underscore internally; the
    8624              :                  user-visible name does not have the underscore.  */
    8625           10 :               if (iter->shadow)
    8626            0 :                 iter_name++;
    8627           10 :               if (strcmp (sym->name, iter_name) == 0)
    8628            1 :                 return 0;
    8629              :             }
    8630              : 
    8631              :           /* A named constant is not a variable, so skip test.  */
    8632            7 :           if (ns2 != NULL && sym->attr.flavor != FL_PARAMETER)
    8633              :             {
    8634            2 :               gfc_error ("Variable %qs at %L not specified in a locality spec "
    8635              :                         "of DO CONCURRENT at %L but required due to "
    8636              :                         "DEFAULT (NONE)",
    8637              :                         sym->name, &(*e)->where, &d->code->loc);
    8638            2 :               d->sym_hash->add (sym);
    8639              :             }
    8640              :         }
    8641              :     }
    8642              :   return 0;
    8643              : }
    8644              : 
    8645              : static void
    8646          278 : resolve_locality_spec (gfc_code *code, gfc_namespace *ns)
    8647              : {
    8648          278 :   struct check_default_none_data data;
    8649          278 :   data.code = code;
    8650          278 :   data.sym_hash = new hash_set<gfc_symbol *>;
    8651          278 :   data.ns = ns;
    8652          278 :   data.default_none = code->ext.concur.default_none;
    8653              : 
    8654         1390 :   for (int locality = 0; locality < LOCALITY_NUM; locality++)
    8655              :     {
    8656         1112 :       const char *name;
    8657         1112 :       switch (locality)
    8658              :         {
    8659              :           case LOCALITY_LOCAL: name = "LOCAL"; break;
    8660          278 :           case LOCALITY_LOCAL_INIT: name = "LOCAL_INIT"; break;
    8661          278 :           case LOCALITY_SHARED: name = "SHARED"; break;
    8662          278 :           case LOCALITY_REDUCE: name = "REDUCE"; break;
    8663              :           default: gcc_unreachable ();
    8664              :         }
    8665              : 
    8666         1503 :       for (gfc_expr_list *list = code->ext.concur.locality[locality]; list;
    8667          391 :            list = list->next)
    8668              :         {
    8669          391 :           gfc_expr *expr = list->expr;
    8670              : 
    8671          391 :           if (locality == LOCALITY_REDUCE
    8672           72 :               && (expr->expr_type == EXPR_FUNCTION
    8673           48 :                   || expr->expr_type == EXPR_OP))
    8674           35 :             continue;
    8675              : 
    8676          367 :           if (!gfc_resolve_expr (expr))
    8677            3 :             continue;
    8678              : 
    8679          364 :           if (expr->expr_type != EXPR_VARIABLE
    8680          364 :               || expr->symtree->n.sym->attr.flavor != FL_VARIABLE
    8681          364 :               || (expr->ref
    8682          151 :                   && (expr->ref->type != REF_ARRAY
    8683          151 :                       || expr->ref->u.ar.type != AR_FULL
    8684          147 :                       || expr->ref->next)))
    8685              :             {
    8686            4 :               gfc_error ("Expected variable name in %s locality spec at %L",
    8687              :                          name, &expr->where);
    8688            4 :                 continue;
    8689              :             }
    8690              : 
    8691          360 :           gfc_symbol *sym = expr->symtree->n.sym;
    8692              : 
    8693          360 :           if (data.sym_hash->contains (sym))
    8694              :             {
    8695            4 :               gfc_error ("Variable %qs at %L has already been specified in a "
    8696              :                          "locality-spec", sym->name, &expr->where);
    8697            4 :               continue;
    8698              :             }
    8699              : 
    8700          356 :           for (gfc_forall_iterator *iter = code->ext.concur.forall_iterator;
    8701          716 :                iter; iter = iter->next)
    8702              :             {
    8703          360 :               if (iter->var->symtree->n.sym == sym)
    8704              :                 {
    8705            1 :                   gfc_error ("Index variable %qs at %L cannot be specified in a "
    8706              :                              "locality-spec", sym->name, &expr->where);
    8707            1 :                   continue;
    8708              :                 }
    8709              : 
    8710          359 :               data.sym_hash->add (iter->var->symtree->n.sym);
    8711              :             }
    8712              : 
    8713          356 :           if (locality == LOCALITY_LOCAL
    8714          356 :               || locality == LOCALITY_LOCAL_INIT
    8715          356 :               || locality == LOCALITY_REDUCE)
    8716              :             {
    8717          198 :               if (sym->attr.optional)
    8718            3 :                 gfc_error ("OPTIONAL attribute not permitted for %qs in %s "
    8719              :                            "locality-spec at %L",
    8720              :                            sym->name, name, &expr->where);
    8721              : 
    8722          198 :               if (sym->attr.dimension
    8723           66 :                   && sym->as
    8724           66 :                   && sym->as->type == AS_ASSUMED_SIZE)
    8725            0 :                 gfc_error ("Assumed-size array not permitted for %qs in %s "
    8726              :                            "locality-spec at %L",
    8727              :                            sym->name, name, &expr->where);
    8728              : 
    8729          198 :               gfc_check_vardef_context (expr, false, false, false, name);
    8730              :             }
    8731              : 
    8732          198 :           if (locality == LOCALITY_LOCAL
    8733              :               || locality == LOCALITY_LOCAL_INIT)
    8734              :             {
    8735          181 :               symbol_attribute attr = gfc_expr_attr (expr);
    8736              : 
    8737          181 :               if (attr.allocatable)
    8738            2 :                 gfc_error ("ALLOCATABLE attribute not permitted for %qs in %s "
    8739              :                            "locality-spec at %L",
    8740              :                            sym->name, name, &expr->where);
    8741              : 
    8742          179 :               else if (expr->ts.type == BT_CLASS && attr.dummy && !attr.pointer)
    8743            2 :                 gfc_error ("Nonpointer polymorphic dummy argument not permitted"
    8744              :                            " for %qs in %s locality-spec at %L",
    8745              :                            sym->name, name, &expr->where);
    8746              : 
    8747          177 :               else if (attr.codimension)
    8748            0 :                 gfc_error ("Coarray not permitted for %qs in %s locality-spec "
    8749              :                            "at %L",
    8750              :                            sym->name, name, &expr->where);
    8751              : 
    8752          177 :               else if (expr->ts.type == BT_DERIVED
    8753          177 :                        && gfc_is_finalizable (expr->ts.u.derived, NULL))
    8754            0 :                 gfc_error ("Finalizable type not permitted for %qs in %s "
    8755              :                            "locality-spec at %L",
    8756              :                            sym->name, name, &expr->where);
    8757              : 
    8758          177 :               else if (gfc_has_ultimate_allocatable (expr))
    8759            4 :                 gfc_error ("Type with ultimate allocatable component not "
    8760              :                            "permitted for %qs in %s locality-spec at %L",
    8761              :                            sym->name, name, &expr->where);
    8762              :             }
    8763              : 
    8764          175 :           else if (locality == LOCALITY_REDUCE)
    8765              :             {
    8766           17 :               if (sym->attr.asynchronous)
    8767            1 :                 gfc_error ("ASYNCHRONOUS attribute not permitted for %qs in "
    8768              :                            "REDUCE locality-spec at %L",
    8769              :                            sym->name, &expr->where);
    8770           17 :               if (sym->attr.volatile_)
    8771            1 :                 gfc_error ("VOLATILE attribute not permitted for %qs in REDUCE "
    8772              :                            "locality-spec at %L", sym->name, &expr->where);
    8773              :             }
    8774              : 
    8775          356 :           data.sym_hash->add (sym);
    8776              :         }
    8777              : 
    8778         1112 :       if (locality == LOCALITY_LOCAL)
    8779              :         {
    8780          278 :           gcc_assert (locality == 0);
    8781              : 
    8782          278 :           for (gfc_forall_iterator *iter = code->ext.concur.forall_iterator;
    8783          575 :                iter; iter = iter->next)
    8784              :             {
    8785          297 :               gfc_expr_walker (&iter->start,
    8786              :                                do_concur_locality_specs_f2023,
    8787              :                                &data);
    8788              : 
    8789          297 :               gfc_expr_walker (&iter->end,
    8790              :                                do_concur_locality_specs_f2023,
    8791              :                                &data);
    8792              : 
    8793          297 :               gfc_expr_walker (&iter->stride,
    8794              :                                do_concur_locality_specs_f2023,
    8795              :                                &data);
    8796              :             }
    8797              : 
    8798          278 :           if (code->expr1)
    8799            7 :             gfc_expr_walker (&code->expr1,
    8800              :                              do_concur_locality_specs_f2023,
    8801              :                              &data);
    8802              :         }
    8803              :     }
    8804              : 
    8805          278 :   gfc_expr *reduce_op = NULL;
    8806              : 
    8807          278 :   for (gfc_expr_list *list = code->ext.concur.locality[LOCALITY_REDUCE];
    8808          326 :        list; list = list->next)
    8809              :     {
    8810           48 :       gfc_expr *expr = list->expr;
    8811              : 
    8812           48 :       if (expr->expr_type != EXPR_VARIABLE)
    8813              :         {
    8814           24 :           reduce_op = expr;
    8815           24 :           continue;
    8816              :         }
    8817              : 
    8818           24 :       if (reduce_op->expr_type == EXPR_OP)
    8819              :         {
    8820           17 :           switch (reduce_op->value.op.op)
    8821              :             {
    8822           17 :               case INTRINSIC_PLUS:
    8823           17 :               case INTRINSIC_TIMES:
    8824           17 :                 if (!gfc_numeric_ts (&expr->ts))
    8825            3 :                   gfc_error ("Expected numeric type for %qs in REDUCE at %L, "
    8826            3 :                              "got %s", expr->symtree->n.sym->name,
    8827              :                              &expr->where, gfc_basic_typename (expr->ts.type));
    8828              :                 break;
    8829            0 :               case INTRINSIC_AND:
    8830            0 :               case INTRINSIC_OR:
    8831            0 :               case INTRINSIC_EQV:
    8832            0 :               case INTRINSIC_NEQV:
    8833            0 :                 if (expr->ts.type != BT_LOGICAL)
    8834            0 :                   gfc_error ("Expected logical type for %qs in REDUCE at %L, "
    8835            0 :                              "got %qs", expr->symtree->n.sym->name,
    8836              :                              &expr->where, gfc_basic_typename (expr->ts.type));
    8837              :                 break;
    8838            0 :               default:
    8839            0 :                 gcc_unreachable ();
    8840              :             }
    8841              :         }
    8842              : 
    8843            7 :       else if (reduce_op->expr_type == EXPR_FUNCTION)
    8844              :         {
    8845            7 :           switch (reduce_op->value.function.isym->id)
    8846              :             {
    8847            6 :               case GFC_ISYM_MIN:
    8848            6 :               case GFC_ISYM_MAX:
    8849            6 :                 if (expr->ts.type != BT_INTEGER
    8850              :                     && expr->ts.type != BT_REAL
    8851              :                     && expr->ts.type != BT_CHARACTER)
    8852            2 :                   gfc_error ("Expected INTEGER, REAL or CHARACTER type for %qs "
    8853              :                              "in REDUCE with MIN/MAX at %L, got %s",
    8854            2 :                              expr->symtree->n.sym->name, &expr->where,
    8855              :                              gfc_basic_typename (expr->ts.type));
    8856              :                 break;
    8857            1 :               case GFC_ISYM_IAND:
    8858            1 :               case GFC_ISYM_IOR:
    8859            1 :               case GFC_ISYM_IEOR:
    8860            1 :                 if (expr->ts.type != BT_INTEGER)
    8861            1 :                   gfc_error ("Expected integer type for %qs in REDUCE with "
    8862              :                              "IAND/IOR/IEOR at %L, got %s",
    8863            1 :                              expr->symtree->n.sym->name, &expr->where,
    8864              :                              gfc_basic_typename (expr->ts.type));
    8865              :                 break;
    8866            0 :               default:
    8867            0 :                 gcc_unreachable ();
    8868              :             }
    8869              :         }
    8870              : 
    8871              :       else
    8872            0 :         gcc_unreachable ();
    8873              :     }
    8874              : 
    8875         1390 :   for (int locality = 0; locality < LOCALITY_NUM; locality++)
    8876              :     {
    8877         1503 :       for (gfc_expr_list *list = code->ext.concur.locality[locality]; list;
    8878          391 :            list = list->next)
    8879              :         {
    8880          391 :           if (list->expr->expr_type == EXPR_VARIABLE)
    8881          367 :             list->expr->symtree->n.sym->mark = 0;
    8882              :         }
    8883              :     }
    8884              : 
    8885          278 :   gfc_code_walker (&code->block->next, gfc_dummy_code_callback,
    8886              :                    check_default_none_expr, &data);
    8887              : 
    8888         1668 :   for (int locality = 0; locality < LOCALITY_NUM; locality++)
    8889              :     {
    8890         1112 :       gfc_expr_list **plist = &code->ext.concur.locality[locality];
    8891         1503 :       while (*plist)
    8892              :         {
    8893          391 :           gfc_expr *expr = (*plist)->expr;
    8894          391 :           if (expr->expr_type == EXPR_VARIABLE)
    8895              :             {
    8896          367 :               gfc_symbol *sym = expr->symtree->n.sym;
    8897          367 :               if (sym->mark == 0)
    8898              :                 {
    8899           70 :                   gfc_warning (OPT_Wunused_variable, "Variable %qs in "
    8900              :                                "locality-spec at %L is not used",
    8901              :                                sym->name, &expr->where);
    8902           70 :                   gfc_expr_list *tmp = *plist;
    8903           70 :                   *plist = (*plist)->next;
    8904           70 :                   gfc_free_expr (tmp->expr);
    8905           70 :                   free (tmp);
    8906           70 :                   continue;
    8907           70 :                 }
    8908              :             }
    8909          321 :           plist = &((*plist)->next);
    8910              :         }
    8911              :     }
    8912              : 
    8913          556 :   delete data.sym_hash;
    8914          278 : }
    8915              : 
    8916              : /* Resolve a list of FORALL iterators.  The FORALL index-name is constrained
    8917              :    to be a scalar INTEGER variable.  The subscripts and stride are scalar
    8918              :    INTEGERs, and if stride is a constant it must be nonzero.
    8919              :    Furthermore "A subscript or stride in a forall-triplet-spec shall
    8920              :    not contain a reference to any index-name in the
    8921              :    forall-triplet-spec-list in which it appears." (7.5.4.1)  */
    8922              : 
    8923              : static void
    8924         2271 : resolve_forall_iterators (gfc_forall_iterator *it)
    8925              : {
    8926         2271 :   gfc_forall_iterator *iter, *iter2;
    8927              : 
    8928         6460 :   for (iter = it; iter; iter = iter->next)
    8929              :     {
    8930         4189 :       if (gfc_resolve_expr (iter->var)
    8931         4189 :           && (iter->var->ts.type != BT_INTEGER || iter->var->rank != 0))
    8932            0 :         gfc_error ("FORALL index-name at %L must be a scalar INTEGER",
    8933              :                    &iter->var->where);
    8934              : 
    8935         4189 :       if (gfc_resolve_expr (iter->start)
    8936         4189 :           && (iter->start->ts.type != BT_INTEGER || iter->start->rank != 0))
    8937            0 :         gfc_error ("FORALL start expression at %L must be a scalar INTEGER",
    8938              :                    &iter->start->where);
    8939         4189 :       if (iter->var->ts.kind != iter->start->ts.kind)
    8940            1 :         gfc_convert_type (iter->start, &iter->var->ts, 1);
    8941              : 
    8942         4189 :       if (gfc_resolve_expr (iter->end)
    8943         4189 :           && (iter->end->ts.type != BT_INTEGER || iter->end->rank != 0))
    8944            0 :         gfc_error ("FORALL end expression at %L must be a scalar INTEGER",
    8945              :                    &iter->end->where);
    8946         4189 :       if (iter->var->ts.kind != iter->end->ts.kind)
    8947            2 :         gfc_convert_type (iter->end, &iter->var->ts, 1);
    8948              : 
    8949         4189 :       if (gfc_resolve_expr (iter->stride))
    8950              :         {
    8951         4189 :           if (iter->stride->ts.type != BT_INTEGER || iter->stride->rank != 0)
    8952            0 :             gfc_error ("FORALL stride expression at %L must be a scalar %s",
    8953              :                        &iter->stride->where, "INTEGER");
    8954              : 
    8955         4189 :           if (iter->stride->expr_type == EXPR_CONSTANT
    8956         4185 :               && mpz_cmp_ui (iter->stride->value.integer, 0) == 0)
    8957            1 :             gfc_error ("FORALL stride expression at %L cannot be zero",
    8958              :                        &iter->stride->where);
    8959              :         }
    8960         4189 :       if (iter->var->ts.kind != iter->stride->ts.kind)
    8961            1 :         gfc_convert_type (iter->stride, &iter->var->ts, 1);
    8962              : 
    8963         4189 :       gfc_value_set_and_used (iter->var, &iter->var->where, VALUE_VARDEF,
    8964              :                               VALUE_USED);
    8965         4189 :       gfc_value_used_expr (iter->start, VALUE_USED);
    8966         4189 :       gfc_value_used_expr (iter->end, VALUE_USED);
    8967         4189 :       gfc_value_used_expr (iter->stride, VALUE_USED);
    8968              :     }
    8969              : 
    8970         6460 :   for (iter = it; iter; iter = iter->next)
    8971        11222 :     for (iter2 = iter; iter2; iter2 = iter2->next)
    8972              :       {
    8973         7033 :         if (find_forall_index (iter2->start, iter->var->symtree->n.sym, 0)
    8974         7031 :             || find_forall_index (iter2->end, iter->var->symtree->n.sym, 0)
    8975        14062 :             || find_forall_index (iter2->stride, iter->var->symtree->n.sym, 0))
    8976            6 :           gfc_error ("FORALL index %qs may not appear in triplet "
    8977            6 :                      "specification at %L", iter->var->symtree->name,
    8978            6 :                      &iter2->start->where);
    8979              :       }
    8980         2271 : }
    8981              : 
    8982              : 
    8983              : /* Given a pointer to a symbol that is a derived type, see if it's
    8984              :    inaccessible, i.e. if it's defined in another module and the components are
    8985              :    PRIVATE.  The search is recursive if necessary.  Returns zero if no
    8986              :    inaccessible components are found, nonzero otherwise.  */
    8987              : 
    8988              : static bool
    8989         1358 : derived_inaccessible (gfc_symbol *sym)
    8990              : {
    8991         1358 :   gfc_component *c;
    8992              : 
    8993         1358 :   if (sym->attr.use_assoc && sym->attr.private_comp)
    8994              :     return 1;
    8995              : 
    8996         4013 :   for (c = sym->components; c; c = c->next)
    8997              :     {
    8998              :         /* Prevent an infinite loop through this function.  */
    8999         2668 :         if (c->ts.type == BT_DERIVED
    9000          289 :             && (c->attr.pointer || c->attr.allocatable)
    9001           72 :             && sym == c->ts.u.derived)
    9002           72 :           continue;
    9003              : 
    9004         2596 :         if (c->ts.type == BT_DERIVED && derived_inaccessible (c->ts.u.derived))
    9005              :           return 1;
    9006              :     }
    9007              : 
    9008              :   return 0;
    9009              : }
    9010              : 
    9011              : 
    9012              : /* Resolve the argument of a deallocate expression.  The expression must be
    9013              :    a pointer or a full array.  */
    9014              : 
    9015              : static bool
    9016         8502 : resolve_deallocate_expr (gfc_expr *e)
    9017              : {
    9018         8502 :   symbol_attribute attr;
    9019         8502 :   int allocatable, pointer;
    9020         8502 :   gfc_ref *ref;
    9021         8502 :   gfc_symbol *sym;
    9022         8502 :   gfc_component *c;
    9023         8502 :   bool unlimited;
    9024              : 
    9025         8502 :   if (!gfc_resolve_expr (e))
    9026              :     return false;
    9027              : 
    9028         8502 :   if (e->expr_type != EXPR_VARIABLE)
    9029            0 :     goto bad;
    9030              : 
    9031         8502 :   sym = e->symtree->n.sym;
    9032         8502 :   unlimited = UNLIMITED_POLY(sym);
    9033              : 
    9034         8502 :   if (sym->ts.type == BT_CLASS && sym->attr.class_ok && CLASS_DATA (sym))
    9035              :     {
    9036         1604 :       allocatable = CLASS_DATA (sym)->attr.allocatable;
    9037         1604 :       pointer = CLASS_DATA (sym)->attr.class_pointer;
    9038              :     }
    9039              :   else
    9040              :     {
    9041         6898 :       allocatable = sym->attr.allocatable;
    9042         6898 :       pointer = sym->attr.pointer;
    9043              :     }
    9044        17083 :   for (ref = e->ref; ref; ref = ref->next)
    9045              :     {
    9046         8581 :       switch (ref->type)
    9047              :         {
    9048         6399 :         case REF_ARRAY:
    9049         6399 :           if (ref->u.ar.type != AR_FULL
    9050         6637 :               && !(ref->u.ar.type == AR_ELEMENT && ref->u.ar.as->rank == 0
    9051          238 :                    && ref->u.ar.codimen && gfc_ref_this_image (ref)))
    9052              :             allocatable = 0;
    9053              :           break;
    9054              : 
    9055         2182 :         case REF_COMPONENT:
    9056         2182 :           c = ref->u.c.component;
    9057         2182 :           if (c->ts.type == BT_CLASS)
    9058              :             {
    9059          303 :               allocatable = CLASS_DATA (c)->attr.allocatable;
    9060          303 :               pointer = CLASS_DATA (c)->attr.class_pointer;
    9061              :             }
    9062              :           else
    9063              :             {
    9064         1879 :               allocatable = c->attr.allocatable;
    9065         1879 :               pointer = c->attr.pointer;
    9066              :             }
    9067              :           break;
    9068              : 
    9069              :         case REF_SUBSTRING:
    9070              :         case REF_INQUIRY:
    9071         8581 :           allocatable = 0;
    9072              :           break;
    9073              :         }
    9074              :     }
    9075              : 
    9076         8502 :   attr = gfc_expr_attr (e);
    9077              : 
    9078         8502 :   if (allocatable == 0 && attr.pointer == 0 && !unlimited)
    9079              :     {
    9080            3 :     bad:
    9081            3 :       gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
    9082              :                  &e->where);
    9083            3 :       return false;
    9084              :     }
    9085              : 
    9086              :   /* F2008, C644.  */
    9087         8499 :   if (gfc_is_coindexed (e))
    9088              :     {
    9089            1 :       gfc_error ("Coindexed allocatable object at %L", &e->where);
    9090            1 :       return false;
    9091              :     }
    9092              : 
    9093         8498 :   if (pointer
    9094        10896 :       && !gfc_check_vardef_context (e, true, true, false,
    9095         2398 :                                     _("DEALLOCATE object")))
    9096              :     return false;
    9097         8496 :   if (!gfc_check_vardef_context (e, false, true, false,
    9098         8496 :                                  _("DEALLOCATE object")))
    9099              :     return false;
    9100              : 
    9101              :   return true;
    9102              : }
    9103              : 
    9104              : 
    9105              : /* Returns true if the expression e contains a reference to the symbol sym.  */
    9106              : static bool
    9107        47442 : sym_in_expr (gfc_expr *e, gfc_symbol *sym, int *f ATTRIBUTE_UNUSED)
    9108              : {
    9109        47442 :   if (e->expr_type == EXPR_VARIABLE && e->symtree->n.sym == sym)
    9110         2081 :     return true;
    9111              : 
    9112              :   return false;
    9113              : }
    9114              : 
    9115              : bool
    9116        20080 : gfc_find_sym_in_expr (gfc_symbol *sym, gfc_expr *e)
    9117              : {
    9118        20080 :   return gfc_traverse_expr (e, sym, sym_in_expr, 0);
    9119              : }
    9120              : 
    9121              : /* Same as gfc_find_sym_in_expr, but do not descend into length type parameter
    9122              :    of character expressions.  */
    9123              : static bool
    9124        20538 : gfc_find_var_in_expr (gfc_symbol *sym, gfc_expr *e)
    9125              : {
    9126            0 :   return gfc_traverse_expr (e, sym, sym_in_expr, -1);
    9127              : }
    9128              : 
    9129              : 
    9130              : /* Given the expression node e for an allocatable/pointer of derived type to be
    9131              :    allocated, get the expression node to be initialized afterwards (needed for
    9132              :    derived types with default initializers, and derived types with allocatable
    9133              :    components that need nullification.)  */
    9134              : 
    9135              : gfc_expr *
    9136         5945 : gfc_expr_to_initialize (gfc_expr *e)
    9137              : {
    9138         5945 :   gfc_expr *result;
    9139         5945 :   gfc_ref *ref;
    9140         5945 :   int i;
    9141              : 
    9142         5945 :   result = gfc_copy_expr (e);
    9143              : 
    9144              :   /* Change the last array reference from AR_ELEMENT to AR_FULL.  */
    9145        11782 :   for (ref = result->ref; ref; ref = ref->next)
    9146         9267 :     if (ref->type == REF_ARRAY && ref->next == NULL)
    9147              :       {
    9148         3430 :         if (ref->u.ar.dimen == 0
    9149           89 :             && ref->u.ar.as && ref->u.ar.as->corank)
    9150              :           return result;
    9151              : 
    9152         3341 :         ref->u.ar.type = AR_FULL;
    9153              : 
    9154         7534 :         for (i = 0; i < ref->u.ar.dimen; i++)
    9155         4193 :           ref->u.ar.start[i] = ref->u.ar.end[i] = ref->u.ar.stride[i] = NULL;
    9156              : 
    9157              :         break;
    9158              :       }
    9159              : 
    9160         5856 :   gfc_free_shape (&result->shape, result->rank);
    9161              : 
    9162              :   /* Recalculate rank, shape, etc.  */
    9163         5856 :   gfc_resolve_expr (result);
    9164         5856 :   return result;
    9165              : }
    9166              : 
    9167              : 
    9168              : /* If the last ref of an expression is an array ref, return a copy of the
    9169              :    expression with that one removed.  Otherwise, a copy of the original
    9170              :    expression.  This is used for allocate-expressions and pointer assignment
    9171              :    LHS, where there may be an array specification that needs to be stripped
    9172              :    off when using gfc_check_vardef_context.  */
    9173              : 
    9174              : static gfc_expr*
    9175        28204 : remove_last_array_ref (gfc_expr* e)
    9176              : {
    9177        28204 :   gfc_expr* e2;
    9178        28204 :   gfc_ref** r;
    9179              : 
    9180        28204 :   e2 = gfc_copy_expr (e);
    9181        36553 :   for (r = &e2->ref; *r; r = &(*r)->next)
    9182        25040 :     if ((*r)->type == REF_ARRAY && !(*r)->next)
    9183              :       {
    9184        16691 :         gfc_free_ref_list (*r);
    9185        16691 :         *r = NULL;
    9186        16691 :         break;
    9187              :       }
    9188              : 
    9189        28204 :   return e2;
    9190              : }
    9191              : 
    9192              : 
    9193              : /* Used in resolve_allocate_expr to check that a allocation-object and
    9194              :    a source-expr are conformable.  This does not catch all possible
    9195              :    cases; in particular a runtime checking is needed.  */
    9196              : 
    9197              : static bool
    9198         1952 : conformable_arrays (gfc_expr *e1, gfc_expr *e2)
    9199              : {
    9200         1952 :   gfc_ref *tail;
    9201         1952 :   bool scalar;
    9202              : 
    9203         2768 :   for (tail = e2->ref; tail && tail->next; tail = tail->next);
    9204              : 
    9205              :   /* If MOLD= is present and is not scalar, and the allocate-object has an
    9206              :      explicit-shape-spec, the ranks need not agree.  This may be unintended,
    9207              :      so let's emit a warning if -Wsurprising is given.  */
    9208         1952 :   scalar = !tail || tail->type == REF_COMPONENT;
    9209         1952 :   if (e1->mold && e1->rank > 0
    9210          166 :       && (scalar || (tail->type == REF_ARRAY && tail->u.ar.type != AR_FULL)))
    9211              :     {
    9212           27 :       if (scalar || (tail->u.ar.as && e1->rank != tail->u.ar.as->rank))
    9213           15 :         gfc_warning (OPT_Wsurprising, "Allocate-object at %L has rank %d "
    9214              :                      "but MOLD= expression at %L has rank %d",
    9215            6 :                      &e2->where, scalar ? 0 : tail->u.ar.as->rank,
    9216              :                      &e1->where, e1->rank);
    9217              :       return true;
    9218              :     }
    9219              : 
    9220              :   /* First compare rank.  */
    9221         1922 :   if ((tail && (!tail->u.ar.as || e1->rank != tail->u.ar.as->rank))
    9222            2 :       || (!tail && e1->rank != e2->rank))
    9223              :     {
    9224            7 :       gfc_error ("Source-expr at %L must be scalar or have the "
    9225              :                  "same rank as the allocate-object at %L",
    9226              :                  &e1->where, &e2->where);
    9227            7 :       return false;
    9228              :     }
    9229              : 
    9230         1915 :   if (e1->shape)
    9231              :     {
    9232         1397 :       int i;
    9233         1397 :       mpz_t s;
    9234              : 
    9235         1397 :       mpz_init (s);
    9236              : 
    9237         3237 :       for (i = 0; i < e1->rank; i++)
    9238              :         {
    9239         1403 :           if (tail->u.ar.start[i] == NULL)
    9240              :             break;
    9241              : 
    9242          443 :           if (tail->u.ar.end[i])
    9243              :             {
    9244           54 :               mpz_set (s, tail->u.ar.end[i]->value.integer);
    9245           54 :               mpz_sub (s, s, tail->u.ar.start[i]->value.integer);
    9246           54 :               mpz_add_ui (s, s, 1);
    9247              :             }
    9248              :           else
    9249              :             {
    9250          389 :               mpz_set (s, tail->u.ar.start[i]->value.integer);
    9251              :             }
    9252              : 
    9253          443 :           if (mpz_cmp (e1->shape[i], s) != 0)
    9254              :             {
    9255            0 :               gfc_error ("Source-expr at %L and allocate-object at %L must "
    9256              :                          "have the same shape", &e1->where, &e2->where);
    9257            0 :               mpz_clear (s);
    9258            0 :               return false;
    9259              :             }
    9260              :         }
    9261              : 
    9262         1397 :       mpz_clear (s);
    9263              :     }
    9264              : 
    9265              :   return true;
    9266              : }
    9267              : 
    9268              : 
    9269              : /* Resolve the expression in an ALLOCATE statement, doing the additional
    9270              :    checks to see whether the expression is OK or not.  The expression must
    9271              :    have a trailing array reference that gives the size of the array.  */
    9272              : 
    9273              : static bool
    9274        17708 : resolve_allocate_expr (gfc_expr *e, gfc_code *code, bool *array_alloc_wo_spec)
    9275              : {
    9276        17708 :   int i, pointer, allocatable, dimension, is_abstract;
    9277        17708 :   int codimension;
    9278        17708 :   bool coindexed;
    9279        17708 :   bool unlimited;
    9280        17708 :   symbol_attribute attr;
    9281        17708 :   gfc_ref *ref, *ref2;
    9282        17708 :   gfc_expr *e2;
    9283        17708 :   gfc_array_ref *ar;
    9284        17708 :   gfc_symbol *sym = NULL;
    9285        17708 :   gfc_alloc *a;
    9286        17708 :   gfc_component *c;
    9287        17708 :   bool t;
    9288              : 
    9289              :   /* Mark the utmost array component as being in allocate to allow DIMEN_STAR
    9290              :      checking of coarrays.  */
    9291        22692 :   for (ref = e->ref; ref; ref = ref->next)
    9292        18423 :     if (ref->next == NULL)
    9293              :       break;
    9294              : 
    9295        17708 :   if (ref && ref->type == REF_ARRAY)
    9296        12244 :     ref->u.ar.in_allocate = true;
    9297              : 
    9298        17708 :   if (!gfc_resolve_expr (e))
    9299            1 :     goto failure;
    9300              : 
    9301              :   /* Make sure the expression is allocatable or a pointer.  If it is
    9302              :      pointer, the next-to-last reference must be a pointer.  */
    9303              : 
    9304        17707 :   ref2 = NULL;
    9305        17707 :   if (e->symtree)
    9306        17707 :     sym = e->symtree->n.sym;
    9307              : 
    9308              :   /* Check whether ultimate component is abstract and CLASS.  */
    9309        35414 :   is_abstract = 0;
    9310              : 
    9311              :   /* Is the allocate-object unlimited polymorphic?  */
    9312        17707 :   unlimited = UNLIMITED_POLY(e);
    9313              : 
    9314        17707 :   if (e->expr_type != EXPR_VARIABLE)
    9315              :     {
    9316            0 :       allocatable = 0;
    9317            0 :       attr = gfc_expr_attr (e);
    9318            0 :       pointer = attr.pointer;
    9319            0 :       dimension = attr.dimension;
    9320            0 :       codimension = attr.codimension;
    9321              :     }
    9322              :   else
    9323              :     {
    9324        17707 :       if (sym->ts.type == BT_CLASS && CLASS_DATA (sym))
    9325              :         {
    9326         3528 :           allocatable = CLASS_DATA (sym)->attr.allocatable;
    9327         3528 :           pointer = CLASS_DATA (sym)->attr.class_pointer;
    9328         3528 :           dimension = CLASS_DATA (sym)->attr.dimension;
    9329         3528 :           codimension = CLASS_DATA (sym)->attr.codimension;
    9330         3528 :           is_abstract = CLASS_DATA (sym)->attr.abstract;
    9331              :         }
    9332              :       else
    9333              :         {
    9334        14179 :           allocatable = sym->attr.allocatable;
    9335        14179 :           pointer = sym->attr.pointer;
    9336        14179 :           dimension = sym->attr.dimension;
    9337        14179 :           codimension = sym->attr.codimension;
    9338              :         }
    9339              : 
    9340        17707 :       coindexed = false;
    9341              : 
    9342        36124 :       for (ref = e->ref; ref; ref2 = ref, ref = ref->next)
    9343              :         {
    9344        18419 :           switch (ref->type)
    9345              :             {
    9346        13769 :               case REF_ARRAY:
    9347        13769 :                 if (ref->u.ar.codimen > 0)
    9348              :                   {
    9349          806 :                     int n;
    9350         1107 :                     for (n = ref->u.ar.dimen;
    9351         1107 :                          n < ref->u.ar.dimen + ref->u.ar.codimen; n++)
    9352          847 :                       if (ref->u.ar.dimen_type[n] != DIMEN_THIS_IMAGE)
    9353              :                         {
    9354              :                           coindexed = true;
    9355              :                           break;
    9356              :                         }
    9357              :                    }
    9358              : 
    9359        13769 :                 if (ref->next != NULL)
    9360         1527 :                   pointer = 0;
    9361              :                 break;
    9362              : 
    9363         4650 :               case REF_COMPONENT:
    9364              :                 /* F2008, C644.  */
    9365         4650 :                 if (coindexed)
    9366              :                   {
    9367            2 :                     gfc_error ("Coindexed allocatable object at %L",
    9368              :                                &e->where);
    9369            2 :                     goto failure;
    9370              :                   }
    9371              : 
    9372         4648 :                 c = ref->u.c.component;
    9373         4648 :                 if (c->ts.type == BT_CLASS)
    9374              :                   {
    9375         1012 :                     allocatable = CLASS_DATA (c)->attr.allocatable;
    9376         1012 :                     pointer = CLASS_DATA (c)->attr.class_pointer;
    9377         1012 :                     dimension = CLASS_DATA (c)->attr.dimension;
    9378         1012 :                     codimension = CLASS_DATA (c)->attr.codimension;
    9379         1012 :                     is_abstract = CLASS_DATA (c)->attr.abstract;
    9380              :                   }
    9381              :                 else
    9382              :                   {
    9383         3636 :                     allocatable = c->attr.allocatable;
    9384         3636 :                     pointer = c->attr.pointer;
    9385         3636 :                     dimension = c->attr.dimension;
    9386         3636 :                     codimension = c->attr.codimension;
    9387         3636 :                     is_abstract = c->attr.abstract;
    9388              :                   }
    9389              :                 break;
    9390              : 
    9391            0 :               case REF_SUBSTRING:
    9392            0 :               case REF_INQUIRY:
    9393            0 :                 allocatable = 0;
    9394            0 :                 pointer = 0;
    9395            0 :                 break;
    9396              :             }
    9397              :         }
    9398              :     }
    9399              : 
    9400              :   /* Check for F08:C628 (F2018:C932).  Each allocate-object shall be a data
    9401              :      pointer or an allocatable variable.  */
    9402        17705 :   if (allocatable == 0 && pointer == 0)
    9403              :     {
    9404            4 :       gfc_error ("Allocate-object at %L must be ALLOCATABLE or a POINTER",
    9405              :                  &e->where);
    9406            4 :       goto failure;
    9407              :     }
    9408              : 
    9409              :   /* Some checks for the SOURCE tag.  */
    9410        17701 :   if (code->expr3)
    9411              :     {
    9412              :       /* Check F03:C632: "The source-expr shall be a scalar or have the same
    9413              :          rank as allocate-object".  This would require the MOLD argument to
    9414              :          NULL() as source-expr for subsequent checking.  However, even the
    9415              :          resulting disassociated pointer or unallocated array has no shape that
    9416              :          could be used for SOURCE= or MOLD=.  */
    9417         3948 :       if (code->expr3->expr_type == EXPR_NULL)
    9418              :         {
    9419            4 :           gfc_error ("The intrinsic NULL cannot be used as source-expr at %L",
    9420              :                      &code->expr3->where);
    9421            4 :           goto failure;
    9422              :         }
    9423              : 
    9424              :       /* Check F03:C631.  */
    9425         3944 :       if (!gfc_type_compatible (&e->ts, &code->expr3->ts))
    9426              :         {
    9427           10 :           gfc_error ("Type of entity at %L is type incompatible with "
    9428           10 :                      "source-expr at %L", &e->where, &code->expr3->where);
    9429           10 :           goto failure;
    9430              :         }
    9431              : 
    9432              :       /* Check F03:C632 and restriction following Note 6.18.  */
    9433         3934 :       if (code->expr3->rank > 0 && !conformable_arrays (code->expr3, e))
    9434            7 :         goto failure;
    9435              : 
    9436              :       /* Check F03:C633.  */
    9437         3927 :       if (code->expr3->ts.kind != e->ts.kind && !unlimited)
    9438              :         {
    9439            1 :           gfc_error ("The allocate-object at %L and the source-expr at %L "
    9440              :                      "shall have the same kind type parameter",
    9441              :                      &e->where, &code->expr3->where);
    9442            1 :           goto failure;
    9443              :         }
    9444              : 
    9445              :       /* Check F2008, C642.  */
    9446         3926 :       if (code->expr3->ts.type == BT_DERIVED
    9447         3926 :           && ((codimension && gfc_expr_attr (code->expr3).lock_comp)
    9448         1222 :               || (code->expr3->ts.u.derived->from_intmod
    9449              :                      == INTMOD_ISO_FORTRAN_ENV
    9450            0 :                   && code->expr3->ts.u.derived->intmod_sym_id
    9451              :                      == ISOFORTRAN_LOCK_TYPE)))
    9452              :         {
    9453            0 :           gfc_error ("The source-expr at %L shall neither be of type "
    9454              :                      "LOCK_TYPE nor have a LOCK_TYPE component if "
    9455              :                       "allocate-object at %L is a coarray",
    9456            0 :                       &code->expr3->where, &e->where);
    9457            0 :           goto failure;
    9458              :         }
    9459              : 
    9460              :       /* Check F2008:C639: "Corresponding kind type parameters of
    9461              :          allocate-object and source-expr shall have the same values."  */
    9462         3926 :       if (e->ts.type == BT_CHARACTER
    9463          816 :           && !e->ts.deferred
    9464          162 :           && e->ts.u.cl->length
    9465          162 :           && code->expr3->ts.type == BT_CHARACTER
    9466         4088 :           && !gfc_check_same_strlen (e, code->expr3, "ALLOCATE with "
    9467              :                                      "SOURCE= or MOLD= specifier"))
    9468           17 :             goto failure;
    9469              : 
    9470              :       /* Check TS18508, C702/C703.  */
    9471         3909 :       if (code->expr3->ts.type == BT_DERIVED
    9472         5131 :           && ((codimension && gfc_expr_attr (code->expr3).event_comp)
    9473         1222 :               || (code->expr3->ts.u.derived->from_intmod
    9474              :                      == INTMOD_ISO_FORTRAN_ENV
    9475            0 :                   && code->expr3->ts.u.derived->intmod_sym_id
    9476              :                      == ISOFORTRAN_EVENT_TYPE)))
    9477              :         {
    9478            0 :           gfc_error ("The source-expr at %L shall neither be of type "
    9479              :                      "EVENT_TYPE nor have a EVENT_TYPE component if "
    9480              :                       "allocate-object at %L is a coarray",
    9481            0 :                       &code->expr3->where, &e->where);
    9482            0 :           goto failure;
    9483              :         }
    9484              :     }
    9485              : 
    9486              :   /* Check F08:C629.  */
    9487        17662 :   if (is_abstract && code->ext.alloc.ts.type == BT_UNKNOWN
    9488          159 :       && !code->expr3)
    9489              :     {
    9490            2 :       gcc_assert (e->ts.type == BT_CLASS);
    9491            2 :       gfc_error ("Allocating %s of ABSTRACT base type at %L requires a "
    9492              :                  "type-spec or source-expr", sym->name, &e->where);
    9493            2 :       goto failure;
    9494              :     }
    9495              : 
    9496              :   /* F2003:C626 (R623) A type-param-value in a type-spec shall be an asterisk
    9497              :      if and only if each allocate-object is a dummy argument for which the
    9498              :      corresponding type parameter is assumed.  */
    9499        17660 :   if (code->ext.alloc.ts.type == BT_CHARACTER
    9500          527 :       && code->ext.alloc.ts.u.cl->length != NULL
    9501          512 :       && e->ts.type == BT_CHARACTER && !e->ts.deferred
    9502           23 :       && e->ts.u.cl->length == NULL
    9503            2 :       && e->symtree->n.sym->attr.dummy)
    9504              :     {
    9505            2 :       gfc_error ("The type parameter in ALLOCATE statement with type-spec "
    9506              :                  "shall be an asterisk as allocate object %qs at %L is a "
    9507              :                  "dummy argument with assumed type parameter",
    9508              :                  sym->name, &e->where);
    9509            2 :       goto failure;
    9510              :     }
    9511              : 
    9512              :   /* Check F08:C632.  */
    9513        17658 :   if (code->ext.alloc.ts.type == BT_CHARACTER && !e->ts.deferred
    9514           60 :       && !UNLIMITED_POLY (e))
    9515              :     {
    9516           36 :       int cmp;
    9517              : 
    9518           36 :       if (!e->ts.u.cl->length)
    9519           15 :         goto failure;
    9520              : 
    9521           42 :       cmp = gfc_dep_compare_expr (e->ts.u.cl->length,
    9522           21 :                                   code->ext.alloc.ts.u.cl->length);
    9523           21 :       if (cmp == 1 || cmp == -1 || cmp == -3)
    9524              :         {
    9525            2 :           gfc_error ("Allocating %s at %L with type-spec requires the same "
    9526              :                      "character-length parameter as in the declaration",
    9527              :                      sym->name, &e->where);
    9528            2 :           goto failure;
    9529              :         }
    9530              :     }
    9531              : 
    9532              :   /* In the variable definition context checks, gfc_expr_attr is used
    9533              :      on the expression.  This is fooled by the array specification
    9534              :      present in e, thus we have to eliminate that one temporarily.  */
    9535        17641 :   e2 = remove_last_array_ref (e);
    9536        17641 :   t = true;
    9537        17641 :   if (t && pointer)
    9538         3927 :     t = gfc_check_vardef_context (e2, true, true, false,
    9539         3927 :                                   _("ALLOCATE object"));
    9540         3927 :   if (t)
    9541        17633 :     t = gfc_check_vardef_context (e2, false, true, false,
    9542        17633 :                                   _("ALLOCATE object"));
    9543        17641 :   gfc_free_expr (e2);
    9544        17641 :   if (!t)
    9545           11 :     goto failure;
    9546              : 
    9547        17630 :   code->ext.alloc.expr3_not_explicit = 0;
    9548        17630 :   if (e->ts.type == BT_CLASS && CLASS_DATA (e)->attr.dimension
    9549         1683 :         && !code->expr3 && code->ext.alloc.ts.type == BT_DERIVED)
    9550              :     {
    9551              :       /* For class arrays, the initialization with SOURCE is done
    9552              :          using _copy and trans_call. It is convenient to exploit that
    9553              :          when the allocated type is different from the declared type but
    9554              :          no SOURCE exists by setting expr3.  */
    9555          341 :       code->expr3 = gfc_default_initializer (&code->ext.alloc.ts);
    9556          341 :       code->ext.alloc.expr3_not_explicit = 1;
    9557              :     }
    9558        17289 :   else if (flag_coarray != GFC_FCOARRAY_LIB && e->ts.type == BT_DERIVED
    9559         2689 :            && e->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
    9560            6 :            && e->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
    9561              :     {
    9562              :       /* We have to zero initialize the integer variable.  */
    9563            2 :       code->expr3 = gfc_get_int_expr (gfc_default_integer_kind, &e->where, 0);
    9564            2 :       code->ext.alloc.expr3_not_explicit = 1;
    9565              :     }
    9566              : 
    9567        17630 :   if (e->ts.type == BT_CLASS && !unlimited && !UNLIMITED_POLY (code->expr3))
    9568              :     {
    9569              :       /* Make sure the vtab symbol is present when
    9570              :          the module variables are generated.  */
    9571         3080 :       gfc_typespec ts = e->ts;
    9572         3080 :       if (code->expr3)
    9573         1343 :         ts = code->expr3->ts;
    9574         1737 :       else if (code->ext.alloc.ts.type == BT_DERIVED)
    9575          768 :         ts = code->ext.alloc.ts;
    9576              : 
    9577              :       /* Finding the vtab also publishes the type's symbol.  Therefore this
    9578              :          statement is necessary.  */
    9579         3080 :       gfc_find_derived_vtab (ts.u.derived);
    9580         3080 :     }
    9581        14550 :   else if (unlimited && !UNLIMITED_POLY (code->expr3))
    9582              :     {
    9583              :       /* Again, make sure the vtab symbol is present when
    9584              :          the module variables are generated.  */
    9585          440 :       gfc_typespec *ts = NULL;
    9586          440 :       if (code->expr3)
    9587          353 :         ts = &code->expr3->ts;
    9588              :       else
    9589           87 :         ts = &code->ext.alloc.ts;
    9590              : 
    9591          440 :       gcc_assert (ts);
    9592              : 
    9593              :       /* Finding the vtab also publishes the type's symbol.  Therefore this
    9594              :          statement is necessary.  */
    9595          440 :       gfc_find_vtab (ts);
    9596              :     }
    9597              : 
    9598        17630 :   if (dimension == 0 && codimension == 0)
    9599         5417 :     goto success;
    9600              : 
    9601              :   /* Make sure the last reference node is an array specification.  */
    9602              : 
    9603        12213 :   if (!ref2 || ref2->type != REF_ARRAY || ref2->u.ar.type == AR_FULL
    9604        10962 :       || (dimension && ref2->u.ar.dimen == 0))
    9605              :     {
    9606              :       /* F08:C633.  */
    9607         1251 :       if (code->expr3)
    9608              :         {
    9609         1250 :           if (!gfc_notify_std (GFC_STD_F2008, "Array specification required "
    9610              :                                "in ALLOCATE statement at %L", &e->where))
    9611            0 :             goto failure;
    9612         1250 :           if (code->expr3->rank != 0)
    9613         1249 :             *array_alloc_wo_spec = true;
    9614              :           else
    9615              :             {
    9616            1 :               gfc_error ("Array specification or array-valued SOURCE= "
    9617              :                          "expression required in ALLOCATE statement at %L",
    9618              :                          &e->where);
    9619            1 :               goto failure;
    9620              :             }
    9621              :         }
    9622              :       else
    9623              :         {
    9624            1 :           gfc_error ("Array specification required in ALLOCATE statement "
    9625              :                      "at %L", &e->where);
    9626            1 :           goto failure;
    9627              :         }
    9628              :     }
    9629              : 
    9630              :   /* Make sure that the array section reference makes sense in the
    9631              :      context of an ALLOCATE specification.  */
    9632              : 
    9633        12211 :   ar = &ref2->u.ar;
    9634              : 
    9635        12211 :   if (codimension)
    9636         1271 :     for (i = ar->dimen; i < ar->dimen + ar->codimen; i++)
    9637              :       {
    9638          738 :         switch (ar->dimen_type[i])
    9639              :           {
    9640            2 :           case DIMEN_THIS_IMAGE:
    9641            2 :             gfc_error ("Coarray specification required in ALLOCATE statement "
    9642              :                        "at %L", &e->where);
    9643            2 :             goto failure;
    9644              : 
    9645           98 :           case  DIMEN_RANGE:
    9646              :             /* F2018:R937:
    9647              :              * allocate-coshape-spec is [ lower-bound-expr : ] upper-bound-expr
    9648              :              */
    9649           98 :             if (ar->start[i] == 0 || ar->end[i] == 0 || ar->stride[i] != NULL)
    9650              :               {
    9651            8 :                 gfc_error ("Bad coarray specification in ALLOCATE statement "
    9652              :                            "at %L", &e->where);
    9653            8 :                 goto failure;
    9654              :               }
    9655           90 :             else if (gfc_dep_compare_expr (ar->start[i], ar->end[i]) == 1)
    9656              :               {
    9657            2 :                 gfc_error ("Upper cobound is less than lower cobound at %L",
    9658            2 :                            &ar->start[i]->where);
    9659            2 :                 goto failure;
    9660              :               }
    9661              :             break;
    9662              : 
    9663          105 :           case DIMEN_ELEMENT:
    9664          105 :             if (ar->start[i]->expr_type == EXPR_CONSTANT)
    9665              :               {
    9666           97 :                 gcc_assert (ar->start[i]->ts.type == BT_INTEGER);
    9667           97 :                 if (mpz_cmp_si (ar->start[i]->value.integer, 1) < 0)
    9668              :                   {
    9669            1 :                     gfc_error ("Upper cobound is less than lower cobound "
    9670              :                                "of 1 at %L", &ar->start[i]->where);
    9671            1 :                     goto failure;
    9672              :                   }
    9673              :               }
    9674              :             break;
    9675              : 
    9676              :           case DIMEN_STAR:
    9677              :             break;
    9678              : 
    9679            0 :           default:
    9680            0 :             gfc_error ("Bad array specification in ALLOCATE statement at %L",
    9681              :                        &e->where);
    9682            0 :             goto failure;
    9683              : 
    9684              :           }
    9685              :       }
    9686        29785 :   for (i = 0; i < ar->dimen; i++)
    9687              :     {
    9688        17591 :       if (ar->type == AR_ELEMENT || ar->type == AR_FULL)
    9689        14852 :         goto check_symbols;
    9690              : 
    9691         2739 :       switch (ar->dimen_type[i])
    9692              :         {
    9693              :         case DIMEN_ELEMENT:
    9694              :           break;
    9695              : 
    9696         2473 :         case DIMEN_RANGE:
    9697         2473 :           if (ar->start[i] != NULL
    9698         2473 :               && ar->end[i] != NULL
    9699         2472 :               && ar->stride[i] == NULL)
    9700              :             break;
    9701              : 
    9702              :           /* Fall through.  */
    9703              : 
    9704            1 :         case DIMEN_UNKNOWN:
    9705            1 :         case DIMEN_VECTOR:
    9706            1 :         case DIMEN_STAR:
    9707            1 :         case DIMEN_THIS_IMAGE:
    9708            1 :           gfc_error ("Bad array specification in ALLOCATE statement at %L",
    9709              :                      &e->where);
    9710            1 :           goto failure;
    9711              :         }
    9712              : 
    9713         2472 : check_symbols:
    9714        45617 :       for (a = code->ext.alloc.list; a; a = a->next)
    9715              :         {
    9716        28030 :           sym = a->expr->symtree->n.sym;
    9717              : 
    9718              :           /* TODO - check derived type components.  */
    9719        28030 :           if (gfc_bt_struct (sym->ts.type) || sym->ts.type == BT_CLASS)
    9720         9534 :             continue;
    9721              : 
    9722        18496 :           if ((ar->start[i] != NULL
    9723        17815 :                && gfc_find_var_in_expr (sym, ar->start[i]))
    9724        36308 :               || (ar->end[i] != NULL
    9725         2723 :                   && gfc_find_var_in_expr (sym, ar->end[i])))
    9726              :             {
    9727            3 :               gfc_error ("%qs must not appear in the array specification at "
    9728              :                          "%L in the same ALLOCATE statement where it is "
    9729              :                          "itself allocated", sym->name, &ar->where);
    9730            3 :               goto failure;
    9731              :             }
    9732              :         }
    9733              :     }
    9734              : 
    9735        12385 :   for (i = ar->dimen; i < ar->codimen + ar->dimen; i++)
    9736              :     {
    9737          914 :       if (ar->dimen_type[i] == DIMEN_ELEMENT
    9738          723 :           || ar->dimen_type[i] == DIMEN_RANGE)
    9739              :         {
    9740          191 :           if (i == (ar->dimen + ar->codimen - 1))
    9741              :             {
    9742            0 :               gfc_error ("Expected %<*%> in coindex specification in ALLOCATE "
    9743              :                          "statement at %L", &e->where);
    9744            0 :               goto failure;
    9745              :             }
    9746          191 :           continue;
    9747              :         }
    9748              : 
    9749          532 :       if (ar->dimen_type[i] == DIMEN_STAR && i == (ar->dimen + ar->codimen - 1)
    9750          532 :           && ar->stride[i] == NULL)
    9751              :         break;
    9752              : 
    9753            0 :       gfc_error ("Bad coarray specification in ALLOCATE statement at %L",
    9754              :                  &e->where);
    9755            0 :       goto failure;
    9756              :     }
    9757              : 
    9758        12194 : success:
    9759        17611 :   gfc_used_in_allocate_expr (e, &e->where, ALLOCATED_ALLOCATE_STMT);
    9760              : 
    9761        17611 :   if (code->expr3)
    9762         4104 :     gfc_value_set_at (e->symtree->n.sym, &code->expr3->where, VALUE_VARDEF);
    9763              : 
    9764              :   return true;
    9765              : 
    9766        17708 : failure:
    9767              :   return false;
    9768              : }
    9769              : 
    9770              : 
    9771              : static void
    9772        20858 : resolve_allocate_deallocate (gfc_code *code, const char *fcn)
    9773              : {
    9774        20858 :   gfc_expr *stat, *errmsg, *pe, *qe;
    9775        20858 :   gfc_alloc *a, *p, *q;
    9776              : 
    9777        20858 :   stat = code->expr1;
    9778        20858 :   errmsg = code->expr2;
    9779              : 
    9780              :   /* Check the stat variable.  */
    9781        20858 :   if (stat)
    9782              :     {
    9783          661 :       if (!gfc_check_vardef_context (stat, false, false, false,
    9784          661 :                                      _("STAT variable")))
    9785            8 :           goto done_stat;
    9786              : 
    9787          653 :       if (stat->ts.type != BT_INTEGER
    9788          644 :           || stat->rank > 0)
    9789           11 :         gfc_error ("Stat-variable at %L must be a scalar INTEGER "
    9790              :                    "variable", &stat->where);
    9791              : 
    9792          653 :       if (stat->expr_type == EXPR_CONSTANT || stat->symtree == NULL)
    9793            0 :         goto done_stat;
    9794              : 
    9795              :       /* F2018:9.7.4: The stat-variable shall not be allocated or deallocated
    9796              :        * within the ALLOCATE or DEALLOCATE statement in which it appears ...
    9797              :        */
    9798         1354 :       for (p = code->ext.alloc.list; p; p = p->next)
    9799          708 :         if (p->expr->symtree->n.sym->name == stat->symtree->n.sym->name)
    9800              :           {
    9801            9 :             gfc_ref *ref1, *ref2;
    9802            9 :             bool found = true;
    9803              : 
    9804           16 :             for (ref1 = p->expr->ref, ref2 = stat->ref; ref1 && ref2;
    9805            7 :                  ref1 = ref1->next, ref2 = ref2->next)
    9806              :               {
    9807            9 :                 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
    9808            5 :                   continue;
    9809            4 :                 if (ref1->u.c.component->name != ref2->u.c.component->name)
    9810              :                   {
    9811              :                     found = false;
    9812              :                     break;
    9813              :                   }
    9814              :               }
    9815              : 
    9816            9 :             if (found)
    9817              :               {
    9818            7 :                 gfc_error ("Stat-variable at %L shall not be %sd within "
    9819              :                            "the same %s statement", &stat->where, fcn, fcn);
    9820            7 :                 break;
    9821              :               }
    9822              :           }
    9823              :     }
    9824              : 
    9825        20197 : done_stat:
    9826              : 
    9827              :   /* Check the errmsg variable.  */
    9828        20858 :   if (errmsg)
    9829              :     {
    9830          150 :       if (!stat)
    9831            2 :         gfc_warning (0, "ERRMSG at %L is useless without a STAT tag",
    9832              :                      &errmsg->where);
    9833              : 
    9834          150 :       if (!gfc_check_vardef_context (errmsg, false, false, false,
    9835          150 :                                      _("ERRMSG variable")))
    9836            6 :           goto done_errmsg;
    9837              : 
    9838              :       /* F18:R928  alloc-opt             is ERRMSG = errmsg-variable
    9839              :          F18:R930  errmsg-variable       is scalar-default-char-variable
    9840              :          F18:R906  default-char-variable is variable
    9841              :          F18:C906  default-char-variable shall be default character.  */
    9842          144 :       if (errmsg->ts.type != BT_CHARACTER
    9843          142 :           || errmsg->rank > 0
    9844          141 :           || errmsg->ts.kind != gfc_default_character_kind)
    9845            4 :         gfc_error ("ERRMSG variable at %L shall be a scalar default CHARACTER "
    9846              :                    "variable", &errmsg->where);
    9847              : 
    9848          144 :       if (errmsg->expr_type == EXPR_CONSTANT || errmsg->symtree == NULL)
    9849            0 :         goto done_errmsg;
    9850              : 
    9851              :       /* F2018:9.7.5: The errmsg-variable shall not be allocated or deallocated
    9852              :        * within the ALLOCATE or DEALLOCATE statement in which it appears ...
    9853              :        */
    9854          286 :       for (p = code->ext.alloc.list; p; p = p->next)
    9855          147 :         if (p->expr->symtree->n.sym->name == errmsg->symtree->n.sym->name)
    9856              :           {
    9857            9 :             gfc_ref *ref1, *ref2;
    9858            9 :             bool found = true;
    9859              : 
    9860           16 :             for (ref1 = p->expr->ref, ref2 = errmsg->ref; ref1 && ref2;
    9861            7 :                  ref1 = ref1->next, ref2 = ref2->next)
    9862              :               {
    9863           11 :                 if (ref1->type != REF_COMPONENT || ref2->type != REF_COMPONENT)
    9864            4 :                   continue;
    9865            7 :                 if (ref1->u.c.component->name != ref2->u.c.component->name)
    9866              :                   {
    9867              :                     found = false;
    9868              :                     break;
    9869              :                   }
    9870              :               }
    9871              : 
    9872            9 :             if (found)
    9873              :               {
    9874            5 :                 gfc_error ("Errmsg-variable at %L shall not be %sd within "
    9875              :                            "the same %s statement", &errmsg->where, fcn, fcn);
    9876            5 :                 break;
    9877              :               }
    9878              :           }
    9879              :     }
    9880              : 
    9881        20708 : done_errmsg:
    9882              : 
    9883              :   /* Check that an allocate-object appears only once in the statement.  */
    9884              : 
    9885        47068 :   for (p = code->ext.alloc.list; p; p = p->next)
    9886              :     {
    9887        26210 :       pe = p->expr;
    9888        35558 :       for (q = p->next; q; q = q->next)
    9889              :         {
    9890         9348 :           qe = q->expr;
    9891         9348 :           if (pe->symtree->n.sym->name == qe->symtree->n.sym->name)
    9892              :             {
    9893              :               /* This is a potential collision.  */
    9894         2094 :               gfc_ref *pr = pe->ref;
    9895         2094 :               gfc_ref *qr = qe->ref;
    9896              : 
    9897              :               /* Follow the references  until
    9898              :                  a) They start to differ, in which case there is no error;
    9899              :                  you can deallocate a%b and a%c in a single statement
    9900              :                  b) Both of them stop, which is an error
    9901              :                  c) One of them stops, which is also an error.  */
    9902         4518 :               while (1)
    9903              :                 {
    9904         3306 :                   if (pr == NULL && qr == NULL)
    9905              :                     {
    9906            7 :                       gfc_error ("Allocate-object at %L also appears at %L",
    9907              :                                  &pe->where, &qe->where);
    9908            7 :                       break;
    9909              :                     }
    9910         3299 :                   else if (pr != NULL && qr == NULL)
    9911              :                     {
    9912            2 :                       gfc_error ("Allocate-object at %L is subobject of"
    9913              :                                  " object at %L", &pe->where, &qe->where);
    9914            2 :                       break;
    9915              :                     }
    9916         3297 :                   else if (pr == NULL && qr != NULL)
    9917              :                     {
    9918            2 :                       gfc_error ("Allocate-object at %L is subobject of"
    9919              :                                  " object at %L", &qe->where, &pe->where);
    9920            2 :                       break;
    9921              :                     }
    9922              :                   /* Here, pr != NULL && qr != NULL  */
    9923         3295 :                   gcc_assert(pr->type == qr->type);
    9924         3295 :                   if (pr->type == REF_ARRAY)
    9925              :                     {
    9926              :                       /* Handle cases like allocate(v(3)%x(3), v(2)%x(3)),
    9927              :                          which are legal.  */
    9928         1065 :                       gcc_assert (qr->type == REF_ARRAY);
    9929              : 
    9930         1065 :                       if (pr->next && qr->next)
    9931              :                         {
    9932              :                           int i;
    9933              :                           gfc_array_ref *par = &(pr->u.ar);
    9934              :                           gfc_array_ref *qar = &(qr->u.ar);
    9935              : 
    9936         1840 :                           for (i=0; i<par->dimen; i++)
    9937              :                             {
    9938          954 :                               if ((par->start[i] != NULL
    9939            0 :                                    || qar->start[i] != NULL)
    9940         1908 :                                   && gfc_dep_compare_expr (par->start[i],
    9941          954 :                                                            qar->start[i]) != 0)
    9942          168 :                                 goto break_label;
    9943              :                             }
    9944              :                         }
    9945              :                     }
    9946              :                   else
    9947              :                     {
    9948         2230 :                       if (pr->u.c.component->name != qr->u.c.component->name)
    9949              :                         break;
    9950              :                     }
    9951              : 
    9952         1212 :                   pr = pr->next;
    9953         1212 :                   qr = qr->next;
    9954         1212 :                 }
    9955         9348 :             break_label:
    9956              :               ;
    9957              :             }
    9958              :         }
    9959              :     }
    9960              : 
    9961        20858 :   if (strcmp (fcn, "ALLOCATE") == 0)
    9962              :     {
    9963        14650 :       bool arr_alloc_wo_spec = false;
    9964              : 
    9965              :       /* Resolve and mark as used the length of the type spec.  */
    9966        14650 :       if (code->ext.alloc.ts.type == BT_CHARACTER)
    9967              :         {
    9968          485 :           gfc_expr *length = code->ext.alloc.ts.u.cl->length;
    9969          485 :           gfc_resolve_expr (length);
    9970          485 :           gfc_value_used_expr (length, VALUE_USED);
    9971              :         }
    9972              : 
    9973              :       /* Resolving the expr3 in the loop over all objects to allocate would
    9974              :          execute loop invariant code for each loop item.  Therefore do it just
    9975              :          once here.  */
    9976        14650 :       if (code->expr3 && code->expr3->mold
    9977          363 :           && code->expr3->ts.type == BT_DERIVED
    9978           30 :           && !(code->expr3->ref && code->expr3->ref->type == REF_ARRAY))
    9979              :         {
    9980              :           /* Default initialization via MOLD (non-polymorphic).  */
    9981           28 :           gfc_expr *rhs = gfc_default_initializer (&code->expr3->ts);
    9982           28 :           if (rhs != NULL)
    9983              :             {
    9984            9 :               gfc_resolve_expr (rhs);
    9985            9 :               gfc_free_expr (code->expr3);
    9986            9 :               code->expr3 = rhs;
    9987              :             }
    9988              :         }
    9989        32358 :       for (a = code->ext.alloc.list; a; a = a->next)
    9990        17708 :         resolve_allocate_expr (a->expr, code, &arr_alloc_wo_spec);
    9991              : 
    9992        14650 :       if (arr_alloc_wo_spec && code->expr3)
    9993              :         {
    9994              :           /* Mark the allocate to have to take the array specification
    9995              :              from the expr3.  */
    9996         1243 :           code->ext.alloc.arr_spec_from_expr3 = 1;
    9997              :         }
    9998              :     }
    9999              :   else
   10000              :     {
   10001        14710 :       for (a = code->ext.alloc.list; a; a = a->next)
   10002         8502 :         resolve_deallocate_expr (a->expr);
   10003              :     }
   10004        20858 : }
   10005              : 
   10006              : 
   10007              : /************ SELECT CASE resolution subroutines ************/
   10008              : 
   10009              : /* Callback function for our mergesort variant.  Determines interval
   10010              :    overlaps for CASEs. Return <0 if op1 < op2, 0 for overlap, >0 for
   10011              :    op1 > op2.  Assumes we're not dealing with the default case.
   10012              :    We have op1 = (:L), (K:L) or (K:) and op2 = (:N), (M:N) or (M:).
   10013              :    There are nine situations to check.  */
   10014              : 
   10015              : static int
   10016         1582 : compare_cases (const gfc_case *op1, const gfc_case *op2)
   10017              : {
   10018         1582 :   int retval;
   10019              : 
   10020         1582 :   if (op1->low == NULL) /* op1 = (:L)  */
   10021              :     {
   10022              :       /* op2 = (:N), so overlap.  */
   10023           52 :       retval = 0;
   10024              :       /* op2 = (M:) or (M:N),  L < M  */
   10025           52 :       if (op2->low != NULL
   10026           52 :           && gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
   10027              :         retval = -1;
   10028              :     }
   10029         1530 :   else if (op1->high == NULL) /* op1 = (K:)  */
   10030              :     {
   10031              :       /* op2 = (M:), so overlap.  */
   10032           10 :       retval = 0;
   10033              :       /* op2 = (:N) or (M:N), K > N  */
   10034           10 :       if (op2->high != NULL
   10035           10 :           && gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
   10036              :         retval = 1;
   10037              :     }
   10038              :   else /* op1 = (K:L)  */
   10039              :     {
   10040         1520 :       if (op2->low == NULL)       /* op2 = (:N), K > N  */
   10041           18 :         retval = (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
   10042           18 :                  ? 1 : 0;
   10043         1502 :       else if (op2->high == NULL) /* op2 = (M:), L < M  */
   10044           10 :         retval = (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
   10045           10 :                  ? -1 : 0;
   10046              :       else                      /* op2 = (M:N)  */
   10047              :         {
   10048         1492 :           retval =  0;
   10049              :           /* L < M  */
   10050         1492 :           if (gfc_compare_expr (op1->high, op2->low, INTRINSIC_LT) < 0)
   10051              :             retval =  -1;
   10052              :           /* K > N  */
   10053          412 :           else if (gfc_compare_expr (op1->low, op2->high, INTRINSIC_GT) > 0)
   10054          438 :             retval =  1;
   10055              :         }
   10056              :     }
   10057              : 
   10058         1582 :   return retval;
   10059              : }
   10060              : 
   10061              : 
   10062              : /* Merge-sort a double linked case list, detecting overlap in the
   10063              :    process.  LIST is the head of the double linked case list before it
   10064              :    is sorted.  Returns the head of the sorted list if we don't see any
   10065              :    overlap, or NULL otherwise.  */
   10066              : 
   10067              : static gfc_case *
   10068          653 : check_case_overlap (gfc_case *list)
   10069              : {
   10070          653 :   gfc_case *p, *q, *e, *tail;
   10071          653 :   int insize, nmerges, psize, qsize, cmp, overlap_seen;
   10072              : 
   10073              :   /* If the passed list was empty, return immediately.  */
   10074          653 :   if (!list)
   10075              :     return NULL;
   10076              : 
   10077              :   overlap_seen = 0;
   10078              :   insize = 1;
   10079              : 
   10080              :   /* Loop unconditionally.  The only exit from this loop is a return
   10081              :      statement, when we've finished sorting the case list.  */
   10082         1359 :   for (;;)
   10083              :     {
   10084         1006 :       p = list;
   10085         1006 :       list = NULL;
   10086         1006 :       tail = NULL;
   10087              : 
   10088              :       /* Count the number of merges we do in this pass.  */
   10089         1006 :       nmerges = 0;
   10090              : 
   10091              :       /* Loop while there exists a merge to be done.  */
   10092         2540 :       while (p)
   10093              :         {
   10094         1534 :           int i;
   10095              : 
   10096              :           /* Count this merge.  */
   10097         1534 :           nmerges++;
   10098              : 
   10099              :           /* Cut the list in two pieces by stepping INSIZE places
   10100              :              forward in the list, starting from P.  */
   10101         1534 :           psize = 0;
   10102         1534 :           q = p;
   10103         3221 :           for (i = 0; i < insize; i++)
   10104              :             {
   10105         2253 :               psize++;
   10106         2253 :               q = q->right;
   10107         2253 :               if (!q)
   10108              :                 break;
   10109              :             }
   10110         1534 :           qsize = insize;
   10111              : 
   10112              :           /* Now we have two lists.  Merge them!  */
   10113         5036 :           while (psize > 0 || (qsize > 0 && q != NULL))
   10114              :             {
   10115              :               /* See from which the next case to merge comes from.  */
   10116          811 :               if (psize == 0)
   10117              :                 {
   10118              :                   /* P is empty so the next case must come from Q.  */
   10119          811 :                   e = q;
   10120          811 :                   q = q->right;
   10121          811 :                   qsize--;
   10122              :                 }
   10123         2691 :               else if (qsize == 0 || q == NULL)
   10124              :                 {
   10125              :                   /* Q is empty.  */
   10126         1109 :                   e = p;
   10127         1109 :                   p = p->right;
   10128         1109 :                   psize--;
   10129              :                 }
   10130              :               else
   10131              :                 {
   10132         1582 :                   cmp = compare_cases (p, q);
   10133         1582 :                   if (cmp < 0)
   10134              :                     {
   10135              :                       /* The whole case range for P is less than the
   10136              :                          one for Q.  */
   10137         1140 :                       e = p;
   10138         1140 :                       p = p->right;
   10139         1140 :                       psize--;
   10140              :                     }
   10141          442 :                   else if (cmp > 0)
   10142              :                     {
   10143              :                       /* The whole case range for Q is greater than
   10144              :                          the case range for P.  */
   10145          438 :                       e = q;
   10146          438 :                       q = q->right;
   10147          438 :                       qsize--;
   10148              :                     }
   10149              :                   else
   10150              :                     {
   10151              :                       /* The cases overlap, or they are the same
   10152              :                          element in the list.  Either way, we must
   10153              :                          issue an error and get the next case from P.  */
   10154              :                       /* FIXME: Sort P and Q by line number.  */
   10155            4 :                       gfc_error ("CASE label at %L overlaps with CASE "
   10156              :                                  "label at %L", &p->where, &q->where);
   10157            4 :                       overlap_seen = 1;
   10158            4 :                       e = p;
   10159            4 :                       p = p->right;
   10160            4 :                       psize--;
   10161              :                     }
   10162              :                 }
   10163              : 
   10164              :                 /* Add the next element to the merged list.  */
   10165         3502 :               if (tail)
   10166         2496 :                 tail->right = e;
   10167              :               else
   10168              :                 list = e;
   10169         3502 :               e->left = tail;
   10170         3502 :               tail = e;
   10171              :             }
   10172              : 
   10173              :           /* P has now stepped INSIZE places along, and so has Q.  So
   10174              :              they're the same.  */
   10175              :           p = q;
   10176              :         }
   10177         1006 :       tail->right = NULL;
   10178              : 
   10179              :       /* If we have done only one merge or none at all, we've
   10180              :          finished sorting the cases.  */
   10181         1006 :       if (nmerges <= 1)
   10182              :         {
   10183          653 :           if (!overlap_seen)
   10184              :             return list;
   10185              :           else
   10186            4 :             return NULL;
   10187              :         }
   10188              : 
   10189              :       /* Otherwise repeat, merging lists twice the size.  */
   10190          353 :       insize *= 2;
   10191          353 :     }
   10192              : }
   10193              : 
   10194              : 
   10195              : /* Check to see if an expression is suitable for use in a CASE statement.
   10196              :    Makes sure that all case expressions are scalar constants of the same
   10197              :    type.  Return false if anything is wrong.  */
   10198              : 
   10199              : static bool
   10200         3327 : validate_case_label_expr (gfc_expr *e, gfc_expr *case_expr)
   10201              : {
   10202         3327 :   if (e == NULL) return true;
   10203              : 
   10204         3234 :   if (e->ts.type != case_expr->ts.type)
   10205              :     {
   10206            4 :       gfc_error ("Expression in CASE statement at %L must be of type %s",
   10207              :                  &e->where, gfc_basic_typename (case_expr->ts.type));
   10208            4 :       return false;
   10209              :     }
   10210              : 
   10211              :   /* C805 (R808) For a given case-construct, each case-value shall be of
   10212              :      the same type as case-expr.  For character type, length differences
   10213              :      are allowed, but the kind type parameters shall be the same.  */
   10214              : 
   10215         3230 :   if (case_expr->ts.type == BT_CHARACTER && e->ts.kind != case_expr->ts.kind)
   10216              :     {
   10217            4 :       gfc_error ("Expression in CASE statement at %L must be of kind %d",
   10218              :                  &e->where, case_expr->ts.kind);
   10219            4 :       return false;
   10220              :     }
   10221              : 
   10222              :   /* Convert the case value kind to that of case expression kind,
   10223              :      if needed */
   10224              : 
   10225         3226 :   if (e->ts.kind != case_expr->ts.kind)
   10226           14 :     gfc_convert_type_warn (e, &case_expr->ts, 2, 0);
   10227              : 
   10228         3226 :   if (e->rank != 0)
   10229              :     {
   10230            0 :       gfc_error ("Expression in CASE statement at %L must be scalar",
   10231              :                  &e->where);
   10232            0 :       return false;
   10233              :     }
   10234              : 
   10235              :   return true;
   10236              : }
   10237              : 
   10238              : 
   10239              : /* Given a completely parsed select statement, we:
   10240              : 
   10241              :      - Validate all expressions and code within the SELECT.
   10242              :      - Make sure that the selection expression is not of the wrong type.
   10243              :      - Make sure that no case ranges overlap.
   10244              :      - Eliminate unreachable cases and unreachable code resulting from
   10245              :        removing case labels.
   10246              : 
   10247              :    The standard does allow unreachable cases, e.g. CASE (5:3).  But
   10248              :    they are a hassle for code generation, and to prevent that, we just
   10249              :    cut them out here.  This is not necessary for overlapping cases
   10250              :    because they are illegal and we never even try to generate code.
   10251              : 
   10252              :    We have the additional caveat that a SELECT construct could have
   10253              :    been a computed GOTO in the source code. Fortunately we can fairly
   10254              :    easily work around that here: The case_expr for a "real" SELECT CASE
   10255              :    is in code->expr1, but for a computed GOTO it is in code->expr2. All
   10256              :    we have to do is make sure that the case_expr is a scalar integer
   10257              :    expression.  */
   10258              : 
   10259              : static void
   10260          694 : resolve_select (gfc_code *code, bool select_type)
   10261              : {
   10262          694 :   gfc_code *body;
   10263          694 :   gfc_expr *case_expr;
   10264          694 :   gfc_case *cp, *default_case, *tail, *head;
   10265          694 :   int seen_unreachable;
   10266          694 :   int seen_logical;
   10267          694 :   int ncases;
   10268          694 :   bt type;
   10269          694 :   bool t;
   10270              : 
   10271          694 :   if (code->expr1 == NULL)
   10272              :     {
   10273              :       /* This was actually a computed GOTO statement.  */
   10274            5 :       case_expr = code->expr2;
   10275            5 :       if (case_expr->ts.type != BT_INTEGER|| case_expr->rank != 0)
   10276            3 :         gfc_error ("Selection expression in computed GOTO statement "
   10277              :                    "at %L must be a scalar integer expression",
   10278              :                    &case_expr->where);
   10279              : 
   10280              :       /* Further checking is not necessary because this SELECT was built
   10281              :          by the compiler, so it should always be OK.  Just move the
   10282              :          case_expr from expr2 to expr so that we can handle computed
   10283              :          GOTOs as normal SELECTs from here on.  */
   10284            5 :       code->expr1 = code->expr2;
   10285            5 :       code->expr2 = NULL;
   10286            5 :       gfc_value_used_expr (code->expr1, VALUE_USED);
   10287            5 :       return;
   10288              :     }
   10289              : 
   10290          689 :   case_expr = code->expr1;
   10291          689 :   type = case_expr->ts.type;
   10292              : 
   10293              :   /* F08:C830.  */
   10294          689 :   if (type != BT_LOGICAL && type != BT_INTEGER && type != BT_CHARACTER
   10295            6 :       && (!flag_unsigned || (flag_unsigned && type != BT_UNSIGNED)))
   10296              : 
   10297              :     {
   10298            0 :       gfc_error ("Argument of SELECT statement at %L cannot be %s",
   10299              :                  &case_expr->where, gfc_typename (case_expr));
   10300              : 
   10301              :       /* Punt. Going on here just produce more garbage error messages.  */
   10302            0 :       return;
   10303              :     }
   10304              : 
   10305              :   /* F08:R842.  */
   10306          689 :   if (!select_type && case_expr->rank != 0)
   10307              :     {
   10308            1 :       gfc_error ("Argument of SELECT statement at %L must be a scalar "
   10309              :                  "expression", &case_expr->where);
   10310              : 
   10311              :       /* Punt.  */
   10312            1 :       return;
   10313              :     }
   10314              : 
   10315              :   /* Raise a warning if an INTEGER case value exceeds the range of
   10316              :      the case-expr. Later, all expressions will be promoted to the
   10317              :      largest kind of all case-labels.  */
   10318              : 
   10319          688 :   if (type == BT_INTEGER)
   10320         1945 :     for (body = code->block; body; body = body->block)
   10321         2874 :       for (cp = body->ext.block.case_list; cp; cp = cp->next)
   10322              :         {
   10323         1473 :           if (cp->low
   10324         1473 :               && gfc_check_integer_range (cp->low->value.integer,
   10325              :                                           case_expr->ts.kind) != ARITH_OK)
   10326            6 :             gfc_warning (0, "Expression in CASE statement at %L is "
   10327            6 :                          "not in the range of %s", &cp->low->where,
   10328              :                          gfc_typename (case_expr));
   10329              : 
   10330         1473 :           if (cp->high
   10331         1188 :               && cp->low != cp->high
   10332         1581 :               && gfc_check_integer_range (cp->high->value.integer,
   10333              :                                           case_expr->ts.kind) != ARITH_OK)
   10334            0 :             gfc_warning (0, "Expression in CASE statement at %L is "
   10335            0 :                          "not in the range of %s", &cp->high->where,
   10336              :                          gfc_typename (case_expr));
   10337              :         }
   10338              : 
   10339              :   /* PR 19168 has a long discussion concerning a mismatch of the kinds
   10340              :      of the SELECT CASE expression and its CASE values.  Walk the lists
   10341              :      of case values, and if we find a mismatch, promote case_expr to
   10342              :      the appropriate kind.  */
   10343              : 
   10344          688 :   if (type == BT_LOGICAL || type == BT_INTEGER)
   10345              :     {
   10346         2131 :       for (body = code->block; body; body = body->block)
   10347              :         {
   10348              :           /* Walk the case label list.  */
   10349         3135 :           for (cp = body->ext.block.case_list; cp; cp = cp->next)
   10350              :             {
   10351              :               /* Intercept the DEFAULT case.  It does not have a kind.  */
   10352         1608 :               if (cp->low == NULL && cp->high == NULL)
   10353          293 :                 continue;
   10354              : 
   10355              :               /* Unreachable case ranges are discarded, so ignore.  */
   10356         1270 :               if (cp->low != NULL && cp->high != NULL
   10357         1222 :                   && cp->low != cp->high
   10358         1380 :                   && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
   10359           33 :                 continue;
   10360              : 
   10361         1282 :               if (cp->low != NULL
   10362         1282 :                   && case_expr->ts.kind != gfc_kind_max(case_expr, cp->low))
   10363           17 :                 gfc_convert_type_warn (case_expr, &cp->low->ts, 1, 0);
   10364              : 
   10365         1282 :               if (cp->high != NULL
   10366         1282 :                   && case_expr->ts.kind != gfc_kind_max(case_expr, cp->high))
   10367            4 :                 gfc_convert_type_warn (case_expr, &cp->high->ts, 1, 0);
   10368              :             }
   10369              :          }
   10370              :     }
   10371              : 
   10372              :   /* Assume there is no DEFAULT case.  */
   10373          688 :   default_case = NULL;
   10374          688 :   head = tail = NULL;
   10375          688 :   ncases = 0;
   10376          688 :   seen_logical = 0;
   10377              : 
   10378         2520 :   for (body = code->block; body; body = body->block)
   10379              :     {
   10380              :       /* Assume the CASE list is OK, and all CASE labels can be matched.  */
   10381         1832 :       t = true;
   10382         1832 :       seen_unreachable = 0;
   10383              : 
   10384              :       /* Walk the case label list, making sure that all case labels
   10385              :          are legal.  */
   10386         3851 :       for (cp = body->ext.block.case_list; cp; cp = cp->next)
   10387              :         {
   10388              :           /* Count the number of cases in the whole construct.  */
   10389         2030 :           ncases++;
   10390              : 
   10391              :           /* Intercept the DEFAULT case.  */
   10392         2030 :           if (cp->low == NULL && cp->high == NULL)
   10393              :             {
   10394          363 :               if (default_case != NULL)
   10395              :                 {
   10396            0 :                   gfc_error ("The DEFAULT CASE at %L cannot be followed "
   10397              :                              "by a second DEFAULT CASE at %L",
   10398              :                              &default_case->where, &cp->where);
   10399            0 :                   t = false;
   10400            0 :                   break;
   10401              :                 }
   10402              :               else
   10403              :                 {
   10404          363 :                   default_case = cp;
   10405          363 :                   continue;
   10406              :                 }
   10407              :             }
   10408              : 
   10409              :           /* Deal with single value cases and case ranges.  Errors are
   10410              :              issued from the validation function.  */
   10411         1667 :           if (!validate_case_label_expr (cp->low, case_expr)
   10412         1667 :               || !validate_case_label_expr (cp->high, case_expr))
   10413              :             {
   10414              :               t = false;
   10415              :               break;
   10416              :             }
   10417              : 
   10418         1659 :           if (type == BT_LOGICAL
   10419           78 :               && ((cp->low == NULL || cp->high == NULL)
   10420           76 :                   || cp->low != cp->high))
   10421              :             {
   10422            2 :               gfc_error ("Logical range in CASE statement at %L is not "
   10423              :                          "allowed",
   10424            1 :                          cp->low ? &cp->low->where : &cp->high->where);
   10425            2 :               t = false;
   10426            2 :               break;
   10427              :             }
   10428              : 
   10429           76 :           if (type == BT_LOGICAL && cp->low->expr_type == EXPR_CONSTANT)
   10430              :             {
   10431           76 :               int value;
   10432           76 :               value = cp->low->value.logical == 0 ? 2 : 1;
   10433           76 :               if (value & seen_logical)
   10434              :                 {
   10435            1 :                   gfc_error ("Constant logical value in CASE statement "
   10436              :                              "is repeated at %L",
   10437              :                              &cp->low->where);
   10438            1 :                   t = false;
   10439            1 :                   break;
   10440              :                 }
   10441           75 :               seen_logical |= value;
   10442              :             }
   10443              : 
   10444         1612 :           if (cp->low != NULL && cp->high != NULL
   10445         1565 :               && cp->low != cp->high
   10446         1768 :               && gfc_compare_expr (cp->low, cp->high, INTRINSIC_GT) > 0)
   10447              :             {
   10448           35 :               if (warn_surprising)
   10449            1 :                 gfc_warning (OPT_Wsurprising,
   10450              :                              "Range specification at %L can never be matched",
   10451              :                              &cp->where);
   10452              : 
   10453           35 :               cp->unreachable = 1;
   10454           35 :               seen_unreachable = 1;
   10455              :             }
   10456              :           else
   10457              :             {
   10458              :               /* If the case range can be matched, it can also overlap with
   10459              :                  other cases.  To make sure it does not, we put it in a
   10460              :                  double linked list here.  We sort that with a merge sort
   10461              :                  later on to detect any overlapping cases.  */
   10462         1621 :               if (!head)
   10463              :                 {
   10464          653 :                   head = tail = cp;
   10465          653 :                   head->right = head->left = NULL;
   10466              :                 }
   10467              :               else
   10468              :                 {
   10469          968 :                   tail->right = cp;
   10470          968 :                   tail->right->left = tail;
   10471          968 :                   tail = tail->right;
   10472          968 :                   tail->right = NULL;
   10473              :                 }
   10474              :             }
   10475              :         }
   10476              : 
   10477              :       /* It there was a failure in the previous case label, give up
   10478              :          for this case label list.  Continue with the next block.  */
   10479         1832 :       if (!t)
   10480           11 :         continue;
   10481              : 
   10482              :       /* See if any case labels that are unreachable have been seen.
   10483              :          If so, we eliminate them.  This is a bit of a kludge because
   10484              :          the case lists for a single case statement (label) is a
   10485              :          single forward linked lists.  */
   10486         1821 :       if (seen_unreachable)
   10487              :       {
   10488              :         /* Advance until the first case in the list is reachable.  */
   10489           69 :         while (body->ext.block.case_list != NULL
   10490           69 :                && body->ext.block.case_list->unreachable)
   10491              :           {
   10492           34 :             gfc_case *n = body->ext.block.case_list;
   10493           34 :             body->ext.block.case_list = body->ext.block.case_list->next;
   10494           34 :             n->next = NULL;
   10495           34 :             gfc_free_case_list (n);
   10496              :           }
   10497              : 
   10498              :         /* Strip all other unreachable cases.  */
   10499           35 :         if (body->ext.block.case_list)
   10500              :           {
   10501            2 :             for (cp = body->ext.block.case_list; cp && cp->next; cp = cp->next)
   10502              :               {
   10503            1 :                 if (cp->next->unreachable)
   10504              :                   {
   10505            1 :                     gfc_case *n = cp->next;
   10506            1 :                     cp->next = cp->next->next;
   10507            1 :                     n->next = NULL;
   10508            1 :                     gfc_free_case_list (n);
   10509              :                   }
   10510              :               }
   10511              :           }
   10512              :       }
   10513              :     }
   10514              : 
   10515              :   /* See if there were overlapping cases.  If the check returns NULL,
   10516              :      there was overlap.  In that case we don't do anything.  If head
   10517              :      is non-NULL, we prepend the DEFAULT case.  The sorted list can
   10518              :      then used during code generation for SELECT CASE constructs with
   10519              :      a case expression of a CHARACTER type.  */
   10520          688 :   if (head)
   10521              :     {
   10522          653 :       head = check_case_overlap (head);
   10523              : 
   10524              :       /* Prepend the default_case if it is there.  */
   10525          653 :       if (head != NULL && default_case)
   10526              :         {
   10527          346 :           default_case->left = NULL;
   10528          346 :           default_case->right = head;
   10529          346 :           head->left = default_case;
   10530              :         }
   10531              :     }
   10532              : 
   10533              :   /* Eliminate dead blocks that may be the result if we've seen
   10534              :      unreachable case labels for a block.  */
   10535         2486 :   for (body = code; body && body->block; body = body->block)
   10536              :     {
   10537         1798 :       if (body->block->ext.block.case_list == NULL)
   10538              :         {
   10539              :           /* Cut the unreachable block from the code chain.  */
   10540           34 :           gfc_code *c = body->block;
   10541           34 :           body->block = c->block;
   10542              : 
   10543              :           /* Kill the dead block, but not the blocks below it.  */
   10544           34 :           c->block = NULL;
   10545           34 :           gfc_free_statements (c);
   10546              :         }
   10547              :     }
   10548              : 
   10549              :   /* More than two cases is legal but insane for logical selects.
   10550              :      Issue a warning for it.  */
   10551          688 :   if (warn_surprising && type == BT_LOGICAL && ncases > 2)
   10552            0 :     gfc_warning (OPT_Wsurprising,
   10553              :                  "Logical SELECT CASE block at %L has more that two cases",
   10554              :                  &code->loc);
   10555              : 
   10556              :   /* Finally, mark the expression as used.  */
   10557          688 :   gfc_value_used_expr (case_expr, VALUE_USED);
   10558              : }
   10559              : 
   10560              : 
   10561              : /* Check if a derived type is extensible.  */
   10562              : 
   10563              : bool
   10564        24815 : gfc_type_is_extensible (gfc_symbol *sym)
   10565              : {
   10566        24815 :   return !(sym->attr.is_bind_c || sym->attr.sequence
   10567        24799 :            || (sym->attr.is_class
   10568         2226 :                && sym->components->ts.u.derived->attr.unlimited_polymorphic));
   10569              : }
   10570              : 
   10571              : 
   10572              : static void
   10573              : resolve_types (gfc_namespace *ns);
   10574              : 
   10575              : /* Resolve an associate-name:  Resolve target and ensure the type-spec is
   10576              :    correct as well as possibly the array-spec.  */
   10577              : 
   10578              : static void
   10579        13235 : resolve_assoc_var (gfc_symbol* sym, bool resolve_target)
   10580              : {
   10581        13235 :   gfc_expr* target;
   10582              : 
   10583        13235 :   gcc_assert (sym->assoc);
   10584        13235 :   gcc_assert (sym->attr.flavor == FL_VARIABLE);
   10585              : 
   10586        13235 :   if (sym->assoc->target
   10587         7933 :       && sym->assoc->target->expr_type == EXPR_FUNCTION
   10588          598 :       && sym->assoc->target->symtree
   10589          598 :       && sym->assoc->target->symtree->n.sym
   10590          598 :       && sym->assoc->target->symtree->n.sym->attr.generic)
   10591              :     {
   10592           33 :       if (gfc_resolve_expr (sym->assoc->target))
   10593           33 :         sym->ts = sym->assoc->target->ts;
   10594              :       else
   10595              :         {
   10596            0 :           gfc_error ("%s could not be resolved to a specific function at %L",
   10597            0 :                      sym->assoc->target->symtree->n.sym->name,
   10598            0 :                      &sym->assoc->target->where);
   10599            0 :           return;
   10600              :         }
   10601              :     }
   10602              : 
   10603              :   /* If this is for SELECT TYPE, the target may not yet be set.  In that
   10604              :      case, return.  Resolution will be called later manually again when
   10605              :      this is done.  */
   10606        13235 :   target = sym->assoc->target;
   10607        13235 :   if (!target)
   10608              :     return;
   10609         7933 :   gcc_assert (!sym->assoc->dangling);
   10610              : 
   10611         7933 :   if (resolve_target && !gfc_resolve_expr (target))
   10612              :     return;
   10613              : 
   10614         7928 :   if (sym->assoc->ar)
   10615              :     {
   10616              :       int dim;
   10617              :       gfc_array_ref *ar = sym->assoc->ar;
   10618           68 :       for (dim = 0; dim < sym->assoc->ar->dimen; dim++)
   10619              :         {
   10620           39 :           if (!(ar->start[dim] && gfc_resolve_expr (ar->start[dim])
   10621           39 :                 && ar->start[dim]->ts.type == BT_INTEGER)
   10622           78 :               || !(ar->end[dim] && gfc_resolve_expr (ar->end[dim])
   10623           39 :                    && ar->end[dim]->ts.type == BT_INTEGER))
   10624            0 :             gfc_error ("(F202y)Missing or invalid bound in ASSOCIATE rank "
   10625              :                        "remapping of associate name %s at %L",
   10626              :                        sym->name, &sym->declared_at);
   10627              :         }
   10628              :     }
   10629              : 
   10630              :   /* For variable targets, we get some attributes from the target.  */
   10631         7928 :   if (target->expr_type == EXPR_VARIABLE
   10632         1104 :       || (target->expr_type == EXPR_OP
   10633          287 :           && target->value.op.op == INTRINSIC_PARENTHESES
   10634           68 :           && target->value.op.op1->expr_type == EXPR_VARIABLE))
   10635              :     {
   10636         6879 :       gfc_symbol *tsym, *dsym;
   10637              : 
   10638         6879 :       tsym = target->expr_type == EXPR_VARIABLE ? target->symtree->n.sym :
   10639           55 :                                   target->value.op.op1->symtree->n.sym;
   10640              : 
   10641         6879 :       if (gfc_expr_attr (target).proc_pointer)
   10642              :         {
   10643            0 :           gfc_error ("Associating entity %qs at %L is a procedure pointer",
   10644              :                      tsym->name, &target->where);
   10645            0 :           return;
   10646              :         }
   10647              : 
   10648           74 :       if (tsym->attr.flavor == FL_PROCEDURE && tsym->generic
   10649            2 :           && (dsym = gfc_find_dt_in_generic (tsym)) != NULL
   10650         6880 :           && dsym->attr.flavor == FL_DERIVED)
   10651              :         {
   10652            1 :           gfc_error ("Derived type %qs cannot be used as a variable at %L",
   10653              :                      tsym->name, &target->where);
   10654            1 :           return;
   10655              :         }
   10656              : 
   10657         6878 :       if (tsym->attr.flavor == FL_PROCEDURE)
   10658              :         {
   10659           73 :           bool is_error = true;
   10660           73 :           if (tsym->attr.function && tsym->result == tsym)
   10661          141 :             for (gfc_namespace *ns = sym->ns; ns; ns = ns->parent)
   10662          137 :               if (tsym == ns->proc_name)
   10663              :                 {
   10664              :                   is_error = false;
   10665              :                   break;
   10666              :                 }
   10667           64 :           if (is_error)
   10668              :             {
   10669           13 :               gfc_error ("Associating entity %qs at %L is a procedure name",
   10670              :                          tsym->name, &target->where);
   10671           13 :               return;
   10672              :             }
   10673              :         }
   10674              : 
   10675         6865 :       if (target->expr_type == EXPR_VARIABLE)
   10676              :         {
   10677         6812 :           sym->attr.asynchronous = tsym->attr.asynchronous;
   10678         6812 :           sym->attr.volatile_ = tsym->attr.volatile_;
   10679              : 
   10680        13624 :           sym->attr.target = tsym->attr.target
   10681         6812 :                              || gfc_expr_attr (target).pointer;
   10682         6812 :           if (is_subref_array (target))
   10683          421 :             sym->attr.subref_array_pointer = 1;
   10684              :         }
   10685              :     }
   10686         1049 :   else if (target->ts.type == BT_PROCEDURE)
   10687              :     {
   10688            0 :       gfc_error ("Associating selector-expression at %L yields a procedure",
   10689              :                  &target->where);
   10690            0 :       return;
   10691              :     }
   10692              : 
   10693         7914 :   if (sym->assoc->inferred_type || IS_INFERRED_TYPE (target))
   10694              :     {
   10695              :       /* By now, the type of the target has been fixed up.  */
   10696          314 :       symbol_attribute attr;
   10697              : 
   10698          314 :       if (sym->ts.type == BT_DERIVED
   10699          181 :           && target->ts.type == BT_CLASS
   10700           31 :           && !UNLIMITED_POLY (target))
   10701              :         {
   10702              :           /* Inferred to be derived type but the target has type class.  */
   10703           31 :           sym->ts = CLASS_DATA (target)->ts;
   10704           31 :           if (!sym->as)
   10705           31 :             sym->as = gfc_copy_array_spec (CLASS_DATA (target)->as);
   10706           31 :           attr = CLASS_DATA (sym) ? CLASS_DATA (sym)->attr : sym->attr;
   10707           31 :           sym->attr.dimension = target->rank ? 1 : 0;
   10708           31 :           gfc_change_class (&sym->ts, &attr, sym->as, target->rank,
   10709              :                             target->corank);
   10710           31 :           sym->as = NULL;
   10711              :         }
   10712          283 :       else if (target->ts.type == BT_DERIVED
   10713          150 :                && target->symtree && target->symtree->n.sym
   10714          126 :                && target->symtree->n.sym->ts.type == BT_CLASS
   10715            0 :                && IS_INFERRED_TYPE (target)
   10716            0 :                && target->ref && target->ref->next
   10717            0 :                && target->ref->next->type == REF_ARRAY
   10718            0 :                && !target->ref->next->next)
   10719              :         {
   10720              :           /* A inferred type selector whose symbol has been determined to be
   10721              :              a class array but which only has an array reference. Change the
   10722              :              associate name and the selector to class type.  */
   10723            0 :           sym->ts = target->ts;
   10724            0 :           attr = CLASS_DATA (sym) ? CLASS_DATA (sym)->attr : sym->attr;
   10725            0 :           sym->attr.dimension = target->rank ? 1 : 0;
   10726            0 :           gfc_change_class (&sym->ts, &attr, sym->as, target->rank,
   10727              :                             target->corank);
   10728            0 :           sym->as = NULL;
   10729            0 :           target->ts = sym->ts;
   10730              :         }
   10731          283 :       else if ((target->ts.type == BT_DERIVED)
   10732          133 :                || (sym->ts.type == BT_CLASS && target->ts.type == BT_CLASS
   10733           61 :                    && CLASS_DATA (target)->as && !CLASS_DATA (sym)->as))
   10734              :         /* Confirmed to be either a derived type or misidentified to be a
   10735              :            scalar class object, when the selector is a class array.  */
   10736          156 :         sym->ts = target->ts;
   10737          127 :       else if (sym->assoc->inferred_type
   10738          120 :                && (sym->ts.type == BT_COMPLEX
   10739           78 :                    || sym->ts.type == BT_CHARACTER)
   10740           66 :                && target->ts.type == sym->ts.type
   10741           66 :                && sym->ts.kind != target->ts.kind)
   10742              :         /* The inferred type was set from a %re, %im or %len inquiry on
   10743              :            the associate name with the default kind, before the target's
   10744              :            actual type was known.  Now that the target has been resolved,
   10745              :            update the kind to match.  */
   10746            6 :         sym->ts = target->ts;
   10747              :     }
   10748              : 
   10749              : 
   10750         7914 :   if (target->expr_type == EXPR_NULL)
   10751              :     {
   10752            1 :       gfc_error ("Selector at %L cannot be NULL()", &target->where);
   10753            1 :       return;
   10754              :     }
   10755         7913 :   else if (target->ts.type == BT_UNKNOWN)
   10756              :     {
   10757            2 :       gfc_error ("Selector at %L has no type", &target->where);
   10758            2 :       return;
   10759              :     }
   10760              : 
   10761              :   /* Get type if this was not already set.  Note that it can be
   10762              :      some other type than the target in case this is a SELECT TYPE
   10763              :      selector!  So we must not update when the type is already there.  */
   10764         7911 :   if (sym->ts.type == BT_UNKNOWN)
   10765          259 :     sym->ts = target->ts;
   10766              : 
   10767         7911 :   gcc_assert (sym->ts.type != BT_UNKNOWN);
   10768              : 
   10769              :   /* See if this is a valid association-to-variable.  */
   10770        15822 :   sym->assoc->variable = ((target->expr_type == EXPR_VARIABLE
   10771         6812 :                            && !gfc_has_vector_subscript (target))
   10772         7938 :                           || gfc_is_ptr_fcn (target));
   10773              : 
   10774              :   /* Finally resolve if this is an array or not.  */
   10775         7911 :   if (target->expr_type == EXPR_FUNCTION && target->rank == 0
   10776          237 :       && (sym->ts.type == BT_CLASS || sym->ts.type == BT_DERIVED))
   10777              :     {
   10778          142 :       gfc_expression_rank (target);
   10779          142 :       if (target->ts.type == BT_DERIVED
   10780           95 :           && !sym->as
   10781           95 :           && target->symtree->n.sym->as)
   10782              :         {
   10783            0 :           sym->as = gfc_copy_array_spec (target->symtree->n.sym->as);
   10784            0 :           sym->attr.dimension = 1;
   10785              :         }
   10786          142 :       else if (target->ts.type == BT_CLASS
   10787           47 :                && CLASS_DATA (target)->as)
   10788              :         {
   10789            0 :           target->rank = CLASS_DATA (target)->as->rank;
   10790            0 :           target->corank = CLASS_DATA (target)->as->corank;
   10791            0 :           if (!(sym->ts.type == BT_CLASS && CLASS_DATA (sym)->as))
   10792              :             {
   10793            0 :               sym->ts = target->ts;
   10794            0 :               sym->attr.dimension = 0;
   10795              :             }
   10796              :         }
   10797              :     }
   10798              : 
   10799              : 
   10800         7911 :   if (sym->attr.dimension && target->rank == 0)
   10801              :     {
   10802              :       /* primary.cc makes the assumption that a reference to an associate
   10803              :          name followed by a left parenthesis is an array reference.  */
   10804           17 :       if (sym->assoc->inferred_type && sym->ts.type != BT_CLASS)
   10805              :         {
   10806           12 :           gfc_expression_rank (sym->assoc->target);
   10807           12 :           sym->attr.dimension = sym->assoc->target->rank ? 1 : 0;
   10808           12 :           if (!sym->attr.dimension && sym->as)
   10809            0 :             sym->as = NULL;
   10810              :         }
   10811              : 
   10812           17 :       if (sym->attr.dimension && target->rank == 0)
   10813              :         {
   10814            5 :           if (sym->ts.type != BT_CHARACTER)
   10815            5 :             gfc_error ("Associate-name %qs at %L is used as array",
   10816              :                        sym->name, &sym->declared_at);
   10817            5 :           sym->attr.dimension = 0;
   10818            5 :           return;
   10819              :         }
   10820              :     }
   10821              : 
   10822              :   /* We cannot deal with class selectors that need temporaries.  */
   10823         7906 :   if (target->ts.type == BT_CLASS
   10824         7906 :         && gfc_ref_needs_temporary_p (target->ref))
   10825              :     {
   10826            1 :       gfc_error ("CLASS selector at %L needs a temporary which is not "
   10827              :                  "yet implemented", &target->where);
   10828            1 :       return;
   10829              :     }
   10830              : 
   10831         7905 :   if (target->ts.type == BT_CLASS)
   10832         2890 :     gfc_fix_class_refs (target);
   10833              : 
   10834         7905 :   if ((target->rank > 0 || target->corank > 0)
   10835         2834 :       && !sym->attr.select_rank_temporary)
   10836              :     {
   10837         2834 :       gfc_array_spec *as;
   10838              :       /* The rank may be incorrectly guessed at parsing, therefore make sure
   10839              :          it is corrected now.  */
   10840         2834 :       if (sym->ts.type != BT_CLASS
   10841         2231 :           && (!sym->as || sym->as->corank != target->corank))
   10842              :         {
   10843          163 :           if (!sym->as)
   10844          156 :             sym->as = gfc_get_array_spec ();
   10845          163 :           as = sym->as;
   10846          163 :           as->rank = target->rank;
   10847          163 :           as->type = AS_DEFERRED;
   10848          163 :           as->corank = target->corank;
   10849          163 :           sym->attr.dimension = 1;
   10850          163 :           if (as->corank != 0)
   10851            7 :             sym->attr.codimension = 1;
   10852              :         }
   10853         2671 :       else if (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
   10854          602 :                && (!CLASS_DATA (sym)->as
   10855          602 :                    || CLASS_DATA (sym)->as->corank != target->corank))
   10856              :         {
   10857            0 :           if (!CLASS_DATA (sym)->as)
   10858            0 :             CLASS_DATA (sym)->as = gfc_get_array_spec ();
   10859            0 :           as = CLASS_DATA (sym)->as;
   10860            0 :           as->rank = target->rank;
   10861            0 :           as->type = AS_DEFERRED;
   10862            0 :           as->corank = target->corank;
   10863            0 :           CLASS_DATA (sym)->attr.dimension = 1;
   10864            0 :           if (as->corank != 0)
   10865            0 :             CLASS_DATA (sym)->attr.codimension = 1;
   10866              :         }
   10867              :     }
   10868         5071 :   else if (!sym->attr.select_rank_temporary)
   10869              :     {
   10870              :       /* target's rank is 0, but the type of the sym is still array valued,
   10871              :          which has to be corrected.  */
   10872         3646 :       if (sym->ts.type == BT_CLASS && sym->ts.u.derived
   10873          736 :           && CLASS_DATA (sym) && CLASS_DATA (sym)->as)
   10874              :         {
   10875           24 :           gfc_array_spec *as;
   10876           24 :           symbol_attribute attr;
   10877              :           /* The associated variable's type is still the array type
   10878              :              correct this now.  */
   10879           24 :           gfc_typespec *ts = &target->ts;
   10880           24 :           gfc_ref *ref;
   10881              :           /* Internal_ref is true, when this is ref'ing only _data and co-ref.
   10882              :            */
   10883           24 :           bool internal_ref = true;
   10884              : 
   10885           72 :           for (ref = target->ref; ref != NULL; ref = ref->next)
   10886              :             {
   10887           48 :               switch (ref->type)
   10888              :                 {
   10889           24 :                 case REF_COMPONENT:
   10890           24 :                   ts = &ref->u.c.component->ts;
   10891           24 :                   internal_ref
   10892           24 :                     = target->ref == ref && ref->next
   10893           48 :                       && strncmp ("_data", ref->u.c.component->name, 5) == 0;
   10894              :                   break;
   10895           24 :                 case REF_ARRAY:
   10896           24 :                   if (ts->type == BT_CLASS)
   10897            0 :                     ts = &ts->u.derived->components->ts;
   10898           24 :                   if (internal_ref && ref->u.ar.codimen > 0)
   10899            0 :                     for (int i = ref->u.ar.dimen;
   10900              :                          internal_ref
   10901            0 :                          && i < ref->u.ar.dimen + ref->u.ar.codimen;
   10902              :                          ++i)
   10903            0 :                       internal_ref
   10904            0 :                         = ref->u.ar.dimen_type[i] == DIMEN_THIS_IMAGE;
   10905              :                   break;
   10906              :                 default:
   10907              :                   break;
   10908              :                 }
   10909              :             }
   10910              :           /* Only rewrite the type of this symbol, when the refs are not the
   10911              :              internal ones for class and co-array this-image.  */
   10912           24 :           if (!internal_ref)
   10913              :             {
   10914              :               /* Create a scalar instance of the current class type.  Because
   10915              :                  the rank of a class array goes into its name, the type has to
   10916              :                  be rebuilt.  The alternative of (re-)setting just the
   10917              :                  attributes and as in the current type, destroys the type also
   10918              :                  in other places.  */
   10919            0 :               as = NULL;
   10920            0 :               sym->ts = *ts;
   10921            0 :               sym->ts.type = BT_CLASS;
   10922            0 :               attr = CLASS_DATA (sym) ? CLASS_DATA (sym)->attr : sym->attr;
   10923            0 :               gfc_change_class (&sym->ts, &attr, as, 0, 0);
   10924            0 :               sym->as = NULL;
   10925              :             }
   10926              :         }
   10927              :     }
   10928              : 
   10929              :   /* Mark this as an associate variable.  */
   10930         7905 :   sym->attr.associate_var = 1;
   10931              : 
   10932              :   /* Fix up the type-spec for CHARACTER types.  */
   10933         7905 :   if (sym->ts.type == BT_CHARACTER && !sym->attr.select_type_temporary)
   10934              :     {
   10935          527 :       gfc_ref *ref;
   10936          811 :       for (ref = target->ref; ref; ref = ref->next)
   10937          310 :         if (ref->type == REF_SUBSTRING
   10938           74 :             && (ref->u.ss.start == NULL
   10939           74 :                 || ref->u.ss.start->expr_type != EXPR_CONSTANT
   10940           74 :                 || ref->u.ss.end == NULL
   10941           54 :                 || ref->u.ss.end->expr_type != EXPR_CONSTANT))
   10942              :           break;
   10943              : 
   10944          527 :       if (!sym->ts.u.cl)
   10945          182 :         sym->ts.u.cl = target->ts.u.cl;
   10946              : 
   10947          527 :       if (sym->ts.deferred
   10948          195 :           && sym->ts.u.cl == target->ts.u.cl)
   10949              :         {
   10950          116 :           sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
   10951          116 :           sym->ts.deferred = 1;
   10952              :         }
   10953              : 
   10954          527 :       if (!sym->ts.u.cl->length
   10955          333 :           && !sym->ts.deferred
   10956          138 :           && target->expr_type == EXPR_CONSTANT)
   10957              :         {
   10958           30 :           sym->ts.u.cl->length =
   10959           30 :                 gfc_get_int_expr (gfc_charlen_int_kind, NULL,
   10960           30 :                                   target->value.character.length);
   10961              :         }
   10962          497 :       else if (((!sym->ts.u.cl->length
   10963          194 :                  || sym->ts.u.cl->length->expr_type != EXPR_CONSTANT)
   10964          309 :                 && target->expr_type != EXPR_VARIABLE)
   10965          367 :                || ref)
   10966              :         {
   10967          156 :           if (!sym->ts.deferred)
   10968              :             {
   10969           45 :               sym->ts.u.cl = gfc_new_charlen (sym->ns, NULL);
   10970           45 :               sym->ts.deferred = 1;
   10971              :             }
   10972              : 
   10973              :           /* This is reset in trans-stmt.cc after the assignment
   10974              :              of the target expression to the associate name.  */
   10975          156 :           if (ref && sym->as)
   10976           26 :             sym->attr.pointer = 1;
   10977              :           else
   10978          130 :             sym->attr.allocatable = 1;
   10979              :         }
   10980              :     }
   10981              : 
   10982         7905 :   if (sym->ts.type == BT_CLASS
   10983         1484 :       && IS_INFERRED_TYPE (target)
   10984           13 :       && target->ts.type == BT_DERIVED
   10985            0 :       && CLASS_DATA (sym)->ts.u.derived == target->ts.u.derived
   10986            0 :       && target->ref && target->ref->next && !target->ref->next->next
   10987            0 :       && target->ref->next->type == REF_ARRAY)
   10988            0 :     target->ts = target->symtree->n.sym->ts;
   10989              : 
   10990              :   /* If the target is a good class object, so is the associate variable.  */
   10991         7905 :   if (sym->ts.type == BT_CLASS && gfc_expr_attr (target).class_ok)
   10992          731 :     sym->attr.class_ok = 1;
   10993              : 
   10994              :   /* If the target is a contiguous pointer, so is the associate variable.  */
   10995         7905 :   if (gfc_expr_attr (target).pointer && gfc_expr_attr (target).contiguous)
   10996            3 :     sym->attr.contiguous = 1;
   10997              : }
   10998              : 
   10999              : 
   11000              : /* Ensure that SELECT TYPE expressions have the correct rank and a full
   11001              :    array reference, where necessary.  The symbols are artificial and so
   11002              :    the dimension attribute and arrayspec can also be set.  In addition,
   11003              :    sometimes the expr1 arrives as BT_DERIVED, when the symbol is BT_CLASS.
   11004              :    This is corrected here as well.*/
   11005              : 
   11006              : static void
   11007         1755 : fixup_array_ref (gfc_expr **expr1, gfc_expr *expr2, int rank, int corank,
   11008              :                  gfc_ref *ref)
   11009              : {
   11010         1755 :   gfc_ref *nref = (*expr1)->ref;
   11011         1755 :   gfc_symbol *sym1 = (*expr1)->symtree->n.sym;
   11012         1755 :   gfc_symbol *sym2;
   11013         1755 :   gfc_expr *selector = gfc_copy_expr (expr2);
   11014              : 
   11015         1755 :   (*expr1)->rank = rank;
   11016         1755 :   (*expr1)->corank = corank;
   11017         1755 :   if (selector)
   11018              :     {
   11019          336 :       gfc_resolve_expr (selector);
   11020          336 :       if (selector->expr_type == EXPR_OP
   11021            2 :           && selector->value.op.op == INTRINSIC_PARENTHESES)
   11022            2 :         sym2 = selector->value.op.op1->symtree->n.sym;
   11023          334 :       else if (selector->expr_type == EXPR_VARIABLE
   11024            7 :                || selector->expr_type == EXPR_FUNCTION)
   11025          334 :         sym2 = selector->symtree->n.sym;
   11026              :       else
   11027            0 :         gcc_unreachable ();
   11028              :     }
   11029              :   else
   11030              :     sym2 = NULL;
   11031              : 
   11032         1755 :   if (sym1->ts.type == BT_CLASS)
   11033              :     {
   11034         1755 :       if ((*expr1)->ts.type != BT_CLASS)
   11035           13 :         (*expr1)->ts = sym1->ts;
   11036              : 
   11037         1755 :       CLASS_DATA (sym1)->attr.dimension = rank > 0 ? 1 : 0;
   11038         1755 :       CLASS_DATA (sym1)->attr.codimension = corank > 0 ? 1 : 0;
   11039         1755 :       if (CLASS_DATA (sym1)->as == NULL && sym2)
   11040            1 :         CLASS_DATA (sym1)->as
   11041            1 :                 = gfc_copy_array_spec (CLASS_DATA (sym2)->as);
   11042              :     }
   11043              :   else
   11044              :     {
   11045            0 :       sym1->attr.dimension = rank > 0 ? 1 : 0;
   11046            0 :       sym1->attr.codimension = corank > 0 ? 1 : 0;
   11047            0 :       if (sym1->as == NULL && sym2)
   11048            0 :         sym1->as = gfc_copy_array_spec (sym2->as);
   11049              :     }
   11050              : 
   11051         3168 :   for (; nref; nref = nref->next)
   11052         2832 :     if (nref->next == NULL)
   11053              :       break;
   11054              : 
   11055         1755 :   if (ref && nref && nref->type != REF_ARRAY)
   11056            6 :     nref->next = gfc_copy_ref (ref);
   11057         1749 :   else if (ref && !nref)
   11058          327 :     (*expr1)->ref = gfc_copy_ref (ref);
   11059         1422 :   else if (ref && nref->u.ar.codimen != corank)
   11060              :     {
   11061          976 :       for (int i = nref->u.ar.dimen; i < GFC_MAX_DIMENSIONS; ++i)
   11062          915 :         nref->u.ar.dimen_type[i] = DIMEN_THIS_IMAGE;
   11063           61 :       nref->u.ar.codimen = corank;
   11064              :     }
   11065         1755 : }
   11066              : 
   11067              : 
   11068              : static gfc_expr *
   11069         6964 : build_loc_call (gfc_expr *sym_expr)
   11070              : {
   11071         6964 :   gfc_expr *loc_call;
   11072         6964 :   loc_call = gfc_get_expr ();
   11073         6964 :   loc_call->expr_type = EXPR_FUNCTION;
   11074         6964 :   gfc_get_sym_tree ("_loc", gfc_current_ns, &loc_call->symtree, false);
   11075         6964 :   loc_call->symtree->n.sym->attr.flavor = FL_PROCEDURE;
   11076         6964 :   loc_call->symtree->n.sym->attr.intrinsic = 1;
   11077         6964 :   loc_call->symtree->n.sym->result = loc_call->symtree->n.sym;
   11078         6964 :   gfc_commit_symbol (loc_call->symtree->n.sym);
   11079         6964 :   loc_call->ts.type = BT_INTEGER;
   11080         6964 :   loc_call->ts.kind = gfc_index_integer_kind;
   11081         6964 :   loc_call->value.function.isym = gfc_intrinsic_function_by_id (GFC_ISYM_LOC);
   11082         6964 :   loc_call->value.function.actual = gfc_get_actual_arglist ();
   11083         6964 :   loc_call->value.function.actual->expr = sym_expr;
   11084         6964 :   loc_call->where = sym_expr->where;
   11085         6964 :   return loc_call;
   11086              : }
   11087              : 
   11088              : /* Resolve a SELECT TYPE statement.  */
   11089              : 
   11090              : static void
   11091         3135 : resolve_select_type (gfc_code *code, gfc_namespace *old_ns)
   11092              : {
   11093         3135 :   gfc_symbol *selector_type;
   11094         3135 :   gfc_code *body, *new_st, *if_st, *tail;
   11095         3135 :   gfc_code *class_is = NULL, *default_case = NULL;
   11096         3135 :   gfc_case *c;
   11097         3135 :   gfc_symtree *st;
   11098         3135 :   char name[GFC_MAX_SYMBOL_LEN + 12 + 1];
   11099         3135 :   gfc_namespace *ns;
   11100         3135 :   int error = 0;
   11101         3135 :   int rank = 0, corank = 0;
   11102         3135 :   gfc_ref* ref = NULL;
   11103         3135 :   gfc_expr *selector_expr = NULL;
   11104         3135 :   gfc_code *old_code = code;
   11105              : 
   11106         3135 :   ns = code->ext.block.ns;
   11107         3135 :   if (code->expr2)
   11108              :     {
   11109              :       /* Set this, or coarray checks in resolve will fail.  */
   11110          688 :       code->expr1->symtree->n.sym->attr.select_type_temporary = 1;
   11111              :     }
   11112         3135 :   gfc_resolve (ns);
   11113              : 
   11114              :   /* Check for F03:C813.  */
   11115         3135 :   if (code->expr1->ts.type != BT_CLASS
   11116           36 :       && !(code->expr2 && code->expr2->ts.type == BT_CLASS))
   11117              :     {
   11118           13 :       gfc_error ("Selector shall be polymorphic in SELECT TYPE statement "
   11119              :                  "at %L", &code->loc);
   11120           42 :       return;
   11121              :     }
   11122              : 
   11123              :   /* Prevent segfault, when class type is not initialized due to previous
   11124              :      error.  */
   11125         3122 :   if (!code->expr1->symtree->n.sym->attr.class_ok
   11126         3120 :       || (code->expr1->ts.type == BT_CLASS && !code->expr1->ts.u.derived))
   11127              :     return;
   11128              : 
   11129         3115 :   if (code->expr2)
   11130              :     {
   11131          679 :       gfc_ref *ref2 = NULL;
   11132         1568 :       for (ref = code->expr2->ref; ref != NULL; ref = ref->next)
   11133          889 :          if (ref->type == REF_COMPONENT
   11134          453 :              && ref->u.c.component->ts.type == BT_CLASS)
   11135          889 :            ref2 = ref;
   11136              : 
   11137          679 :       if (ref2)
   11138              :         {
   11139          359 :           if (code->expr1->symtree->n.sym->attr.untyped)
   11140            1 :             code->expr1->symtree->n.sym->ts = ref2->u.c.component->ts;
   11141          359 :           selector_type = CLASS_DATA (ref2->u.c.component)->ts.u.derived;
   11142              :         }
   11143              :       else
   11144              :         {
   11145          320 :           if (code->expr1->symtree->n.sym->attr.untyped)
   11146           28 :             code->expr1->symtree->n.sym->ts = code->expr2->ts;
   11147              :           /* Sometimes the selector expression is given the typespec of the
   11148              :              '_data' field, which is logical enough but inappropriate here. */
   11149          320 :           if (code->expr2->ts.type == BT_DERIVED
   11150           73 :               && code->expr2->symtree
   11151           73 :               && code->expr2->symtree->n.sym->ts.type == BT_CLASS)
   11152           73 :             code->expr2->ts = code->expr2->symtree->n.sym->ts;
   11153          320 :           selector_type = CLASS_DATA (code->expr2)
   11154              :             ? CLASS_DATA (code->expr2)->ts.u.derived : code->expr2->ts.u.derived;
   11155              :         }
   11156              : 
   11157          679 :       if (code->expr1->ts.type == BT_CLASS && CLASS_DATA (code->expr1)->as)
   11158              :         {
   11159          322 :           CLASS_DATA (code->expr1)->as->rank = code->expr2->rank;
   11160          322 :           CLASS_DATA (code->expr1)->as->corank = code->expr2->corank;
   11161          322 :           CLASS_DATA (code->expr1)->as->cotype = AS_DEFERRED;
   11162              :         }
   11163              : 
   11164              :       /* F2008: C803 The selector expression must not be coindexed.  */
   11165          679 :       if (gfc_is_coindexed (code->expr2))
   11166              :         {
   11167            4 :           gfc_error ("Selector at %L must not be coindexed",
   11168            4 :                      &code->expr2->where);
   11169            4 :           return;
   11170              :         }
   11171              : 
   11172              :     }
   11173              :   else
   11174              :     {
   11175         2436 :       selector_type = CLASS_DATA (code->expr1)->ts.u.derived;
   11176              : 
   11177         2436 :       if (gfc_is_coindexed (code->expr1))
   11178              :         {
   11179            0 :           gfc_error ("Selector at %L must not be coindexed",
   11180            0 :                      &code->expr1->where);
   11181            0 :           return;
   11182              :         }
   11183              :     }
   11184              : 
   11185              :   /* Loop over TYPE IS / CLASS IS cases.  */
   11186         8651 :   for (body = code->block; body; body = body->block)
   11187              :     {
   11188         5541 :       c = body->ext.block.case_list;
   11189              : 
   11190         5541 :       if (!error)
   11191              :         {
   11192              :           /* Check for repeated cases.  */
   11193         8566 :           for (tail = code->block; tail; tail = tail->block)
   11194              :             {
   11195         8566 :               gfc_case *d = tail->ext.block.case_list;
   11196         8566 :               if (tail == body)
   11197              :                 break;
   11198              : 
   11199         3034 :               if (c->ts.type == d->ts.type
   11200          516 :                   && ((c->ts.type == BT_DERIVED
   11201          418 :                        && c->ts.u.derived && d->ts.u.derived
   11202          418 :                        && !strcmp (c->ts.u.derived->name,
   11203              :                                    d->ts.u.derived->name))
   11204          515 :                       || c->ts.type == BT_UNKNOWN
   11205          515 :                       || (!(c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
   11206           55 :                           && c->ts.kind == d->ts.kind)))
   11207              :                 {
   11208            1 :                   gfc_error ("TYPE IS at %L overlaps with TYPE IS at %L",
   11209              :                              &c->where, &d->where);
   11210            1 :                   return;
   11211              :                 }
   11212              :             }
   11213              :         }
   11214              : 
   11215              :       /* Check F03:C815.  */
   11216         3502 :       if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
   11217         2388 :           && selector_type
   11218         2388 :           && !selector_type->attr.unlimited_polymorphic
   11219         7605 :           && !gfc_type_is_extensible (c->ts.u.derived))
   11220              :         {
   11221            1 :           gfc_error ("Derived type %qs at %L must be extensible",
   11222            1 :                      c->ts.u.derived->name, &c->where);
   11223            1 :           error++;
   11224            1 :           continue;
   11225              :         }
   11226              : 
   11227              :       /* Check F03:C816.  */
   11228         5545 :       if (c->ts.type != BT_UNKNOWN
   11229         3869 :           && selector_type && !selector_type->attr.unlimited_polymorphic
   11230         7607 :           && ((c->ts.type != BT_DERIVED && c->ts.type != BT_CLASS)
   11231         2064 :               || !gfc_type_is_extension_of (selector_type, c->ts.u.derived)))
   11232              :         {
   11233            6 :           if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
   11234            2 :             gfc_error ("Derived type %qs at %L must be an extension of %qs",
   11235            2 :                        c->ts.u.derived->name, &c->where, selector_type->name);
   11236              :           else
   11237            4 :             gfc_error ("Unexpected intrinsic type %qs at %L",
   11238              :                        gfc_basic_typename (c->ts.type), &c->where);
   11239            6 :           error++;
   11240            6 :           continue;
   11241              :         }
   11242              : 
   11243              :       /* Check F03:C814.  */
   11244         5533 :       if (c->ts.type == BT_CHARACTER
   11245          742 :           && (c->ts.u.cl->length != NULL || c->ts.deferred))
   11246              :         {
   11247            0 :           gfc_error ("The type-spec at %L shall specify that each length "
   11248              :                      "type parameter is assumed", &c->where);
   11249            0 :           error++;
   11250            0 :           continue;
   11251              :         }
   11252              : 
   11253              :       /* Intercept the DEFAULT case.  */
   11254         5533 :       if (c->ts.type == BT_UNKNOWN)
   11255              :         {
   11256              :           /* Check F03:C818.  */
   11257         1670 :           if (default_case)
   11258              :             {
   11259            1 :               gfc_error ("The DEFAULT CASE at %L cannot be followed "
   11260              :                          "by a second DEFAULT CASE at %L",
   11261            1 :                          &default_case->ext.block.case_list->where, &c->where);
   11262            1 :               error++;
   11263            1 :               continue;
   11264              :             }
   11265              : 
   11266              :           default_case = body;
   11267              :         }
   11268              :     }
   11269              : 
   11270         3110 :   if (error > 0)
   11271              :     return;
   11272              : 
   11273              :   /* Transform SELECT TYPE statement to BLOCK and associate selector to
   11274              :      target if present.  If there are any EXIT statements referring to the
   11275              :      SELECT TYPE construct, this is no problem because the gfc_code
   11276              :      reference stays the same and EXIT is equally possible from the BLOCK
   11277              :      it is changed to.  */
   11278         3107 :   code->op = EXEC_BLOCK;
   11279         3107 :   if (code->expr2)
   11280              :     {
   11281          675 :       gfc_association_list* assoc;
   11282              : 
   11283          675 :       assoc = gfc_get_association_list ();
   11284          675 :       assoc->st = code->expr1->symtree;
   11285          675 :       assoc->target = gfc_copy_expr (code->expr2);
   11286          675 :       assoc->target->where = code->expr2->where;
   11287              :       /* assoc->variable will be set by resolve_assoc_var.  */
   11288              : 
   11289          675 :       code->ext.block.assoc = assoc;
   11290          675 :       code->expr1->symtree->n.sym->assoc = assoc;
   11291              : 
   11292          675 :       resolve_assoc_var (code->expr1->symtree->n.sym, false);
   11293              :     }
   11294              :   else
   11295         2432 :     code->ext.block.assoc = NULL;
   11296              : 
   11297              :   /* Ensure that the selector rank and arrayspec are available to
   11298              :      correct expressions in which they might be missing.  */
   11299         3107 :   if (code->expr2 && (code->expr2->rank || code->expr2->corank))
   11300              :     {
   11301          336 :       rank = code->expr2->rank;
   11302          336 :       corank = code->expr2->corank;
   11303          620 :       for (ref = code->expr2->ref; ref; ref = ref->next)
   11304          611 :         if (ref->next == NULL)
   11305              :           break;
   11306          336 :       if (ref && ref->type == REF_ARRAY)
   11307          327 :         ref = gfc_copy_ref (ref);
   11308              : 
   11309              :       /* Fixup expr1 if necessary.  */
   11310          336 :       if (rank || corank)
   11311          336 :         fixup_array_ref (&code->expr1, code->expr2, rank, corank, ref);
   11312              :     }
   11313         2771 :   else if (code->expr1->rank || code->expr1->corank)
   11314              :     {
   11315          904 :       rank = code->expr1->rank;
   11316          904 :       corank = code->expr1->corank;
   11317          904 :       for (ref = code->expr1->ref; ref; ref = ref->next)
   11318          904 :         if (ref->next == NULL)
   11319              :           break;
   11320          904 :       if (ref && ref->type == REF_ARRAY)
   11321          904 :         ref = gfc_copy_ref (ref);
   11322              :     }
   11323              : 
   11324         3107 :   gfc_expr *orig_expr1 = code->expr1;
   11325              : 
   11326              :   /* Add EXEC_SELECT to switch on type.  */
   11327         3107 :   new_st = gfc_get_code (code->op);
   11328         3107 :   new_st->expr1 = code->expr1;
   11329         3107 :   new_st->expr2 = code->expr2;
   11330         3107 :   new_st->block = code->block;
   11331         3107 :   code->expr1 = code->expr2 =  NULL;
   11332         3107 :   code->block = NULL;
   11333         3107 :   if (!ns->code)
   11334         3107 :     ns->code = new_st;
   11335              :   else
   11336            0 :     ns->code->next = new_st;
   11337         3107 :   code = new_st;
   11338         3107 :   code->op = EXEC_SELECT_TYPE;
   11339              : 
   11340              :   /* Use the intrinsic LOC function to generate an integer expression
   11341              :      for the vtable of the selector.  Note that the rank of the selector
   11342              :      expression has to be set to zero.  */
   11343         3107 :   gfc_add_vptr_component (code->expr1);
   11344         3107 :   code->expr1->rank = 0;
   11345         3107 :   code->expr1->corank = 0;
   11346         3107 :   code->expr1 = build_loc_call (code->expr1);
   11347         3107 :   selector_expr = code->expr1->value.function.actual->expr;
   11348              : 
   11349              :   /* Loop over TYPE IS / CLASS IS cases.  */
   11350         8632 :   for (body = code->block; body; body = body->block)
   11351              :     {
   11352         5525 :       gfc_symbol *vtab;
   11353         5525 :       c = body->ext.block.case_list;
   11354              : 
   11355              :       /* Generate an index integer expression for address of the
   11356              :          TYPE/CLASS vtable and store it in c->low.  The hash expression
   11357              :          is stored in c->high and is used to resolve intrinsic cases.  */
   11358         5525 :       if (c->ts.type != BT_UNKNOWN)
   11359              :         {
   11360         3857 :           gfc_expr *e;
   11361         3857 :           if (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
   11362              :             {
   11363         2379 :               vtab = gfc_find_derived_vtab (c->ts.u.derived);
   11364         2379 :               gcc_assert (vtab);
   11365         2379 :               c->high = gfc_get_int_expr (gfc_integer_4_kind, NULL,
   11366         2379 :                                           c->ts.u.derived->hash_value);
   11367              :             }
   11368              :           else
   11369              :             {
   11370         1478 :               vtab = gfc_find_vtab (&c->ts);
   11371         1478 :               gcc_assert (vtab && CLASS_DATA (vtab)->initializer);
   11372         1478 :               e = CLASS_DATA (vtab)->initializer;
   11373         1478 :               c->high = gfc_copy_expr (e);
   11374         1478 :               if (c->high->ts.kind != gfc_integer_4_kind)
   11375              :                 {
   11376            1 :                   gfc_typespec ts;
   11377            1 :                   ts.kind = gfc_integer_4_kind;
   11378            1 :                   ts.type = BT_INTEGER;
   11379            1 :                   gfc_convert_type_warn (c->high, &ts, 2, 0);
   11380              :                 }
   11381              :             }
   11382              : 
   11383         3857 :           e = gfc_lval_expr_from_sym (vtab);
   11384         3857 :           c->low = build_loc_call (e);
   11385              :         }
   11386              :       else
   11387         1668 :         continue;
   11388              : 
   11389              :       /* Associate temporary to selector.  This should only be done
   11390              :          when this case is actually true, so build a new ASSOCIATE
   11391              :          that does precisely this here (instead of using the
   11392              :          'global' one).  */
   11393              : 
   11394              :       /* First check the derived type import status.  */
   11395         3857 :       if (gfc_current_ns->import_state != IMPORT_NOT_SET
   11396            6 :           && (c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS))
   11397              :         {
   11398           12 :           st = gfc_find_symtree (gfc_current_ns->sym_root,
   11399            6 :                                  c->ts.u.derived->name);
   11400            6 :           if (!check_sym_import_status (c->ts.u.derived, st, NULL, old_code,
   11401              :                                         gfc_current_ns))
   11402            6 :             error++;
   11403              :         }
   11404              : 
   11405         3857 :       const char * var_name = gfc_var_name_for_select_type_temp (orig_expr1);
   11406         3857 :       if (c->ts.type == BT_CLASS)
   11407          348 :         snprintf (name, sizeof (name), "__tmp_class_%s_%s",
   11408          348 :                   c->ts.u.derived->name, var_name);
   11409         3509 :       else if (c->ts.type == BT_DERIVED)
   11410         2031 :         snprintf (name, sizeof (name), "__tmp_type_%s_%s",
   11411         2031 :                   c->ts.u.derived->name, var_name);
   11412         1478 :       else if (c->ts.type == BT_CHARACTER)
   11413              :         {
   11414          742 :           HOST_WIDE_INT charlen = 0;
   11415          742 :           if (c->ts.u.cl && c->ts.u.cl->length
   11416            0 :               && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
   11417            0 :             charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
   11418          742 :           snprintf (name, sizeof (name),
   11419              :                     "__tmp_%s_" HOST_WIDE_INT_PRINT_DEC "_%d_%s",
   11420              :                     gfc_basic_typename (c->ts.type), charlen, c->ts.kind,
   11421              :                     var_name);
   11422              :         }
   11423              :       else
   11424          736 :         snprintf (name, sizeof (name), "__tmp_%s_%d_%s",
   11425              :                   gfc_basic_typename (c->ts.type), c->ts.kind, var_name);
   11426              : 
   11427         3857 :       st = gfc_find_symtree (ns->sym_root, name);
   11428         3857 :       gcc_assert (st->n.sym->assoc);
   11429         3857 :       st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
   11430         3857 :       st->n.sym->assoc->target->where = selector_expr->where;
   11431         3857 :       if (c->ts.type != BT_CLASS && c->ts.type != BT_UNKNOWN)
   11432              :         {
   11433         3509 :           gfc_add_data_component (st->n.sym->assoc->target);
   11434              :           /* Fixup the target expression if necessary.  */
   11435         3509 :           if (rank || corank)
   11436         1419 :             fixup_array_ref (&st->n.sym->assoc->target, nullptr, rank, corank,
   11437              :                              ref);
   11438              :         }
   11439              : 
   11440         3857 :       new_st = gfc_get_code (EXEC_BLOCK);
   11441         3857 :       new_st->ext.block.ns = gfc_build_block_ns (ns);
   11442         3857 :       new_st->ext.block.ns->code = body->next;
   11443         3857 :       body->next = new_st;
   11444              : 
   11445              :       /* Chain in the new list only if it is marked as dangling.  Otherwise
   11446              :          there is a CASE label overlap and this is already used.  Just ignore,
   11447              :          the error is diagnosed elsewhere.  */
   11448         3857 :       if (st->n.sym->assoc->dangling)
   11449              :         {
   11450         3856 :           new_st->ext.block.assoc = st->n.sym->assoc;
   11451         3856 :           st->n.sym->assoc->dangling = 0;
   11452              :         }
   11453              : 
   11454         3857 :       resolve_assoc_var (st->n.sym, false);
   11455              :     }
   11456              : 
   11457              :   /* Take out CLASS IS cases for separate treatment.  */
   11458              :   body = code;
   11459         8632 :   while (body && body->block)
   11460              :     {
   11461         5525 :       if (body->block->ext.block.case_list->ts.type == BT_CLASS)
   11462              :         {
   11463              :           /* Add to class_is list.  */
   11464          348 :           if (class_is == NULL)
   11465              :             {
   11466          317 :               class_is = body->block;
   11467          317 :               tail = class_is;
   11468              :             }
   11469              :           else
   11470              :             {
   11471           43 :               for (tail = class_is; tail->block; tail = tail->block) ;
   11472           31 :               tail->block = body->block;
   11473           31 :               tail = tail->block;
   11474              :             }
   11475              :           /* Remove from EXEC_SELECT list.  */
   11476          348 :           body->block = body->block->block;
   11477          348 :           tail->block = NULL;
   11478              :         }
   11479              :       else
   11480              :         body = body->block;
   11481              :     }
   11482              : 
   11483         3107 :   if (class_is)
   11484              :     {
   11485          317 :       gfc_symbol *vtab;
   11486              : 
   11487          317 :       if (!default_case)
   11488              :         {
   11489              :           /* Add a default case to hold the CLASS IS cases.  */
   11490          315 :           for (tail = code; tail->block; tail = tail->block) ;
   11491          207 :           tail->block = gfc_get_code (EXEC_SELECT_TYPE);
   11492          207 :           tail = tail->block;
   11493          207 :           tail->ext.block.case_list = gfc_get_case ();
   11494          207 :           tail->ext.block.case_list->ts.type = BT_UNKNOWN;
   11495          207 :           tail->next = NULL;
   11496          207 :           default_case = tail;
   11497              :         }
   11498              : 
   11499              :       /* More than one CLASS IS block?  */
   11500          317 :       if (class_is->block)
   11501              :         {
   11502           37 :           gfc_code **c1,*c2;
   11503           37 :           bool swapped;
   11504              :           /* Sort CLASS IS blocks by extension level.  */
   11505           36 :           do
   11506              :             {
   11507           37 :               swapped = false;
   11508           97 :               for (c1 = &class_is; (*c1) && (*c1)->block; c1 = &((*c1)->block))
   11509              :                 {
   11510           61 :                   c2 = (*c1)->block;
   11511              :                   /* F03:C817 (check for doubles).  */
   11512           61 :                   if ((*c1)->ext.block.case_list->ts.u.derived->hash_value
   11513           61 :                       == c2->ext.block.case_list->ts.u.derived->hash_value)
   11514              :                     {
   11515            1 :                       gfc_error ("Double CLASS IS block in SELECT TYPE "
   11516              :                                  "statement at %L",
   11517              :                                  &c2->ext.block.case_list->where);
   11518            1 :                       return;
   11519              :                     }
   11520           60 :                   if ((*c1)->ext.block.case_list->ts.u.derived->attr.extension
   11521           60 :                       < c2->ext.block.case_list->ts.u.derived->attr.extension)
   11522              :                     {
   11523              :                       /* Swap.  */
   11524           24 :                       (*c1)->block = c2->block;
   11525           24 :                       c2->block = *c1;
   11526           24 :                       *c1 = c2;
   11527           24 :                       swapped = true;
   11528              :                     }
   11529              :                 }
   11530              :             }
   11531              :           while (swapped);
   11532              :         }
   11533              : 
   11534              :       /* Generate IF chain.  */
   11535          316 :       if_st = gfc_get_code (EXEC_IF);
   11536          316 :       new_st = if_st;
   11537          662 :       for (body = class_is; body; body = body->block)
   11538              :         {
   11539          346 :           new_st->block = gfc_get_code (EXEC_IF);
   11540          346 :           new_st = new_st->block;
   11541              :           /* Set up IF condition: Call _gfortran_is_extension_of.  */
   11542          346 :           new_st->expr1 = gfc_get_expr ();
   11543          346 :           new_st->expr1->expr_type = EXPR_FUNCTION;
   11544          346 :           new_st->expr1->ts.type = BT_LOGICAL;
   11545          346 :           new_st->expr1->ts.kind = 4;
   11546          346 :           new_st->expr1->value.function.name = gfc_get_string (PREFIX ("is_extension_of"));
   11547          346 :           new_st->expr1->value.function.isym = XCNEW (gfc_intrinsic_sym);
   11548          346 :           new_st->expr1->value.function.isym->id = GFC_ISYM_EXTENDS_TYPE_OF;
   11549              :           /* Set up arguments.  */
   11550          346 :           new_st->expr1->value.function.actual = gfc_get_actual_arglist ();
   11551          346 :           new_st->expr1->value.function.actual->expr = gfc_get_variable_expr (selector_expr->symtree);
   11552          346 :           new_st->expr1->value.function.actual->expr->where = code->loc;
   11553          346 :           new_st->expr1->where = code->loc;
   11554          346 :           gfc_add_vptr_component (new_st->expr1->value.function.actual->expr);
   11555          346 :           vtab = gfc_find_derived_vtab (body->ext.block.case_list->ts.u.derived);
   11556          346 :           st = gfc_find_symtree (vtab->ns->sym_root, vtab->name);
   11557          346 :           new_st->expr1->value.function.actual->next = gfc_get_actual_arglist ();
   11558          346 :           new_st->expr1->value.function.actual->next->expr = gfc_get_variable_expr (st);
   11559          346 :           new_st->expr1->value.function.actual->next->expr->where = code->loc;
   11560              :           /* Set up types in formal arg list.  */
   11561          346 :           new_st->expr1->value.function.isym->formal = XCNEW (gfc_intrinsic_arg);
   11562          346 :           new_st->expr1->value.function.isym->formal->ts = new_st->expr1->value.function.actual->expr->ts;
   11563          346 :           new_st->expr1->value.function.isym->formal->next = XCNEW (gfc_intrinsic_arg);
   11564          346 :           new_st->expr1->value.function.isym->formal->next->ts = new_st->expr1->value.function.actual->next->expr->ts;
   11565              : 
   11566          346 :           new_st->next = body->next;
   11567              :         }
   11568          316 :         if (default_case->next)
   11569              :           {
   11570          110 :             new_st->block = gfc_get_code (EXEC_IF);
   11571          110 :             new_st = new_st->block;
   11572          110 :             new_st->next = default_case->next;
   11573              :           }
   11574              : 
   11575              :         /* Replace CLASS DEFAULT code by the IF chain.  */
   11576          316 :         default_case->next = if_st;
   11577              :     }
   11578              : 
   11579              :   /* Resolve the internal code.  This cannot be done earlier because
   11580              :      it requires that the sym->assoc of selectors is set already.  */
   11581         3106 :   gfc_current_ns = ns;
   11582         3106 :   gfc_resolve_blocks (code->block, gfc_current_ns);
   11583         3106 :   gfc_current_ns = old_ns;
   11584              : 
   11585         3106 :   free (ref);
   11586              : }
   11587              : 
   11588              : 
   11589              : /* Resolve a SELECT RANK statement.  */
   11590              : 
   11591              : static void
   11592         1048 : resolve_select_rank (gfc_code *code, gfc_namespace *old_ns)
   11593              : {
   11594         1048 :   gfc_namespace *ns;
   11595         1048 :   gfc_code *body, *new_st, *tail;
   11596         1048 :   gfc_case *c;
   11597         1048 :   char tname[GFC_MAX_SYMBOL_LEN + 7];
   11598         1048 :   char name[2 * GFC_MAX_SYMBOL_LEN];
   11599         1048 :   gfc_symtree *st;
   11600         1048 :   gfc_expr *selector_expr = NULL;
   11601         1048 :   int case_value;
   11602         1048 :   HOST_WIDE_INT charlen = 0;
   11603              : 
   11604         1048 :   ns = code->ext.block.ns;
   11605         1048 :   gfc_resolve (ns);
   11606              : 
   11607         1048 :   code->op = EXEC_BLOCK;
   11608         1048 :   if (code->expr2)
   11609              :     {
   11610           42 :       gfc_association_list* assoc;
   11611              : 
   11612           42 :       assoc = gfc_get_association_list ();
   11613           42 :       assoc->st = code->expr1->symtree;
   11614           42 :       assoc->target = gfc_copy_expr (code->expr2);
   11615           42 :       assoc->target->where = code->expr2->where;
   11616              :       /* assoc->variable will be set by resolve_assoc_var.  */
   11617              : 
   11618           42 :       code->ext.block.assoc = assoc;
   11619           42 :       code->expr1->symtree->n.sym->assoc = assoc;
   11620              : 
   11621           42 :       resolve_assoc_var (code->expr1->symtree->n.sym, false);
   11622              :     }
   11623              :   else
   11624         1006 :     code->ext.block.assoc = NULL;
   11625              : 
   11626              :   /* Loop over RANK cases. Note that returning on the errors causes a
   11627              :      cascade of further errors because the case blocks do not compile
   11628              :      correctly.  */
   11629         3416 :   for (body = code->block; body; body = body->block)
   11630              :     {
   11631         2368 :       c = body->ext.block.case_list;
   11632         2368 :       if (c->low)
   11633         1425 :         case_value = (int) mpz_get_si (c->low->value.integer);
   11634              :       else
   11635              :         case_value = -2;
   11636              : 
   11637              :       /* Check for repeated cases.  */
   11638         5950 :       for (tail = code->block; tail; tail = tail->block)
   11639              :         {
   11640         5950 :           gfc_case *d = tail->ext.block.case_list;
   11641         5950 :           int case_value2;
   11642              : 
   11643         5950 :           if (tail == body)
   11644              :             break;
   11645              : 
   11646              :           /* Check F2018: C1153.  */
   11647         3582 :           if (!c->low && !d->low)
   11648            1 :             gfc_error ("RANK DEFAULT at %L is repeated at %L",
   11649              :                        &c->where, &d->where);
   11650              : 
   11651         3582 :           if (!c->low || !d->low)
   11652         1289 :             continue;
   11653              : 
   11654              :           /* Check F2018: C1153.  */
   11655         2293 :           case_value2 = (int) mpz_get_si (d->low->value.integer);
   11656         2293 :           if ((case_value == case_value2) && case_value == -1)
   11657            1 :             gfc_error ("RANK (*) at %L is repeated at %L",
   11658              :                        &c->where, &d->where);
   11659         2292 :           else if (case_value == case_value2)
   11660            1 :             gfc_error ("RANK (%i) at %L is repeated at %L",
   11661              :                        case_value, &c->where, &d->where);
   11662              :         }
   11663              : 
   11664         2368 :       if (!c->low)
   11665          943 :         continue;
   11666              : 
   11667              :       /* Check F2018: C1155.  */
   11668         1425 :       if (case_value == -1 && (gfc_expr_attr (code->expr1).allocatable
   11669         1425 :                                || gfc_expr_attr (code->expr1).pointer))
   11670            3 :         gfc_error ("RANK (*) at %L cannot be used with the pointer or "
   11671            3 :                    "allocatable selector at %L", &c->where, &code->expr1->where);
   11672              :     }
   11673              : 
   11674              :   /* Add EXEC_SELECT to switch on rank.  */
   11675         1048 :   new_st = gfc_get_code (code->op);
   11676         1048 :   new_st->expr1 = code->expr1;
   11677         1048 :   new_st->expr2 = code->expr2;
   11678         1048 :   new_st->block = code->block;
   11679         1048 :   code->expr1 = code->expr2 =  NULL;
   11680         1048 :   code->block = NULL;
   11681         1048 :   if (!ns->code)
   11682         1048 :     ns->code = new_st;
   11683              :   else
   11684            0 :     ns->code->next = new_st;
   11685         1048 :   code = new_st;
   11686         1048 :   code->op = EXEC_SELECT_RANK;
   11687              : 
   11688         1048 :   selector_expr = code->expr1;
   11689              : 
   11690              :   /* Loop over SELECT RANK cases.  */
   11691         3416 :   for (body = code->block; body; body = body->block)
   11692              :     {
   11693         2368 :       c = body->ext.block.case_list;
   11694         2368 :       int case_value;
   11695              : 
   11696              :       /* Pass on the default case.  */
   11697         2368 :       if (c->low == NULL)
   11698          943 :         continue;
   11699              : 
   11700              :       /* Associate temporary to selector.  This should only be done
   11701              :          when this case is actually true, so build a new ASSOCIATE
   11702              :          that does precisely this here (instead of using the
   11703              :          'global' one).  */
   11704         1425 :       if (c->ts.type == BT_CHARACTER && c->ts.u.cl && c->ts.u.cl->length
   11705          265 :           && c->ts.u.cl->length->expr_type == EXPR_CONSTANT)
   11706          186 :         charlen = gfc_mpz_get_hwi (c->ts.u.cl->length->value.integer);
   11707              : 
   11708         1425 :       if (c->ts.type == BT_CLASS)
   11709          145 :         sprintf (tname, "class_%s", c->ts.u.derived->name);
   11710         1280 :       else if (c->ts.type == BT_DERIVED)
   11711          116 :         sprintf (tname, "type_%s", c->ts.u.derived->name);
   11712         1164 :       else if (c->ts.type != BT_CHARACTER)
   11713          605 :         sprintf (tname, "%s_%d", gfc_basic_typename (c->ts.type), c->ts.kind);
   11714              :       else
   11715          559 :         sprintf (tname, "%s_" HOST_WIDE_INT_PRINT_DEC "_%d",
   11716              :                  gfc_basic_typename (c->ts.type), charlen, c->ts.kind);
   11717              : 
   11718         1425 :       case_value = (int) mpz_get_si (c->low->value.integer);
   11719         1425 :       if (case_value >= 0)
   11720         1392 :         sprintf (name, "__tmp_%s_rank_%d", tname, case_value);
   11721              :       else
   11722           33 :         sprintf (name, "__tmp_%s_rank_m%d", tname, -case_value);
   11723              : 
   11724         1425 :       st = gfc_find_symtree (ns->sym_root, name);
   11725         1425 :       gcc_assert (st->n.sym->assoc);
   11726              : 
   11727         1425 :       st->n.sym->assoc->target = gfc_get_variable_expr (selector_expr->symtree);
   11728         1425 :       st->n.sym->assoc->target->where = selector_expr->where;
   11729              : 
   11730         1425 :       new_st = gfc_get_code (EXEC_BLOCK);
   11731         1425 :       new_st->ext.block.ns = gfc_build_block_ns (ns);
   11732         1425 :       new_st->ext.block.ns->code = body->next;
   11733         1425 :       body->next = new_st;
   11734              : 
   11735              :       /* Chain in the new list only if it is marked as dangling.  Otherwise
   11736              :          there is a CASE label overlap and this is already used.  Just ignore,
   11737              :          the error is diagnosed elsewhere.  */
   11738         1425 :       if (st->n.sym->assoc->dangling)
   11739              :         {
   11740         1423 :           new_st->ext.block.assoc = st->n.sym->assoc;
   11741         1423 :           st->n.sym->assoc->dangling = 0;
   11742              :         }
   11743              : 
   11744         1425 :       resolve_assoc_var (st->n.sym, false);
   11745              :     }
   11746              : 
   11747         1048 :   gfc_current_ns = ns;
   11748         1048 :   gfc_resolve_blocks (code->block, gfc_current_ns);
   11749         1048 :   gfc_current_ns = old_ns;
   11750         1048 : }
   11751              : 
   11752              : 
   11753              : /* Resolve a transfer statement. This is making sure that:
   11754              :    -- a derived type being transferred has only non-pointer components
   11755              :    -- a derived type being transferred doesn't have private components, unless
   11756              :       it's being transferred from the module where the type was defined
   11757              :    -- we're not trying to transfer a whole assumed size array.  */
   11758              : 
   11759              : static void
   11760        47647 : resolve_transfer (gfc_code *code)
   11761              : {
   11762        47647 :   gfc_symbol *sym, *derived;
   11763        47647 :   gfc_ref *ref;
   11764        47647 :   gfc_expr *exp;
   11765        47647 :   bool write = false;
   11766        47647 :   bool formatted = false;
   11767        47647 :   gfc_dt *dt = code->ext.dt;
   11768        47647 :   gfc_symbol *dtio_sub = NULL;
   11769              : 
   11770        47647 :   exp = code->expr1;
   11771              : 
   11772        95300 :   while (exp != NULL && exp->expr_type == EXPR_OP
   11773        48581 :          && exp->value.op.op == INTRINSIC_PARENTHESES)
   11774            6 :     exp = exp->value.op.op1;
   11775              : 
   11776        47647 :   if (exp && exp->expr_type == EXPR_NULL
   11777            2 :       && code->ext.dt)
   11778              :     {
   11779            2 :       gfc_error ("Invalid context for NULL () intrinsic at %L",
   11780              :                  &exp->where);
   11781            2 :       return;
   11782              :     }
   11783              : 
   11784        47645 :   if (dt && (dt->dt_io_kind->value.iokind == M_WRITE
   11785        47493 :              || dt->dt_io_kind->value.iokind == M_PRINT))
   11786        39887 :     gfc_value_used_expr (exp, VALUE_USED);
   11787              : 
   11788        47645 :   if (exp == NULL || (exp->expr_type != EXPR_VARIABLE
   11789              :                       && exp->expr_type != EXPR_FUNCTION
   11790              :                       && exp->expr_type != EXPR_ARRAY
   11791              :                       && exp->expr_type != EXPR_STRUCTURE))
   11792              :     return;
   11793              : 
   11794        26431 :   if (dt && dt->dt_io_kind->value.iokind == M_READ)
   11795              :     {
   11796              :       /* If we are reading, the variable will be changed.  Note that
   11797              :          code->ext.dt may be NULL if the TRANSFER is related to an INQUIRE
   11798              :          statement -- but in this case, we are not reading, either.  */
   11799         7606 :       if (!gfc_check_vardef_context (exp, false, false, false,
   11800         7606 :                                      _("item in READ")))
   11801              :         return;
   11802              : 
   11803         7602 :       gfc_expr_set_at (exp, &exp->where, VALUE_READ);
   11804              :     }
   11805              : 
   11806        26427 :   const gfc_typespec *ts = exp->expr_type == EXPR_STRUCTURE
   11807        26427 :                         || exp->expr_type == EXPR_FUNCTION
   11808        22029 :                         || exp->expr_type == EXPR_ARRAY
   11809        48456 :                          ? &exp->ts : &exp->symtree->n.sym->ts;
   11810              : 
   11811              :   /* Go to actual component transferred.  */
   11812        34260 :   for (ref = exp->ref; ref; ref = ref->next)
   11813         7833 :     if (ref->type == REF_COMPONENT)
   11814         2211 :       ts = &ref->u.c.component->ts;
   11815              : 
   11816        26427 :   if (dt && dt->dt_io_kind->value.iokind != M_INQUIRE
   11817        26279 :       && (ts->type == BT_DERIVED || ts->type == BT_CLASS))
   11818              :     {
   11819          720 :       derived = ts->u.derived;
   11820              : 
   11821              :       /* Determine when to use the formatted DTIO procedure.  */
   11822          720 :       if (dt && (dt->format_expr || dt->format_label))
   11823          645 :         formatted = true;
   11824              : 
   11825          720 :       write = dt->dt_io_kind->value.iokind == M_WRITE
   11826          720 :               || dt->dt_io_kind->value.iokind == M_PRINT;
   11827          720 :       dtio_sub = gfc_find_specific_dtio_proc (derived, write, formatted);
   11828              : 
   11829          720 :       if (dtio_sub != NULL && exp->expr_type == EXPR_VARIABLE)
   11830              :         {
   11831          450 :           dt->udtio = exp;
   11832          450 :           sym = exp->symtree->n.sym->ns->proc_name;
   11833              :           /* Check to see if this is a nested DTIO call, with the
   11834              :              dummy as the io-list object.  */
   11835          450 :           if (sym && sym == dtio_sub && sym->formal
   11836           30 :               && sym->formal->sym == exp->symtree->n.sym
   11837           30 :               && exp->ref == NULL)
   11838              :             {
   11839            0 :               if (!sym->attr.recursive)
   11840              :                 {
   11841            0 :                   gfc_error ("DTIO %s procedure at %L must be recursive",
   11842              :                              sym->name, &sym->declared_at);
   11843            0 :                   return;
   11844              :                 }
   11845              :             }
   11846              :         }
   11847              :     }
   11848              : 
   11849        26427 :   if (ts->type == BT_CLASS && dtio_sub == NULL)
   11850              :     {
   11851            3 :       gfc_error ("Data transfer element at %L cannot be polymorphic unless "
   11852              :                 "it is processed by a defined input/output procedure",
   11853              :                 &code->loc);
   11854            3 :       return;
   11855              :     }
   11856              : 
   11857        26424 :   if (ts->type == BT_DERIVED)
   11858              :     {
   11859              :       /* Check that transferred derived type doesn't contain POINTER
   11860              :          components unless it is processed by a defined input/output
   11861              :          procedure".  */
   11862          688 :       if (ts->u.derived->attr.pointer_comp && dtio_sub == NULL)
   11863              :         {
   11864            2 :           gfc_error ("Data transfer element at %L cannot have POINTER "
   11865              :                      "components unless it is processed by a defined "
   11866              :                      "input/output procedure", &code->loc);
   11867            2 :           return;
   11868              :         }
   11869              : 
   11870              :       /* F08:C935.  */
   11871          686 :       if (ts->u.derived->attr.proc_pointer_comp)
   11872              :         {
   11873            2 :           gfc_error ("Data transfer element at %L cannot have "
   11874              :                      "procedure pointer components", &code->loc);
   11875            2 :           return;
   11876              :         }
   11877              : 
   11878          684 :       if (ts->u.derived->attr.alloc_comp && dtio_sub == NULL)
   11879              :         {
   11880            6 :           gfc_error ("Data transfer element at %L cannot have ALLOCATABLE "
   11881              :                      "components unless it is processed by a defined "
   11882              :                      "input/output procedure", &code->loc);
   11883            6 :           return;
   11884              :         }
   11885              : 
   11886              :       /* C_PTR and C_FUNPTR have private components which means they cannot
   11887              :          be printed.  However, if -std=gnu and not -pedantic, allow
   11888              :          the component to be printed to help debugging.  */
   11889          678 :       if (ts->u.derived->ts.f90_type == BT_VOID)
   11890              :         {
   11891            4 :           gfc_error ("Data transfer element at %L "
   11892              :                      "cannot have PRIVATE components", &code->loc);
   11893            4 :             return;
   11894              :         }
   11895          674 :       else if (derived_inaccessible (ts->u.derived) && dtio_sub == NULL)
   11896              :         {
   11897            4 :           gfc_error ("Data transfer element at %L cannot have "
   11898              :                      "PRIVATE components unless it is processed by "
   11899              :                      "a defined input/output procedure", &code->loc);
   11900            4 :           return;
   11901              :         }
   11902              :     }
   11903              : 
   11904        26406 :   if (exp->expr_type == EXPR_STRUCTURE)
   11905              :     return;
   11906              : 
   11907        26361 :   if (exp->expr_type == EXPR_ARRAY)
   11908              :     return;
   11909              : 
   11910        25979 :   sym = exp->symtree->n.sym;
   11911              : 
   11912        25979 :   if (sym->as != NULL && sym->as->type == AS_ASSUMED_SIZE && exp->ref
   11913           81 :       && exp->ref->type == REF_ARRAY && exp->ref->u.ar.type == AR_FULL)
   11914              :     {
   11915            1 :       gfc_error ("Data transfer element at %L cannot be a full reference to "
   11916              :                  "an assumed-size array", &code->loc);
   11917            1 :       return;
   11918              :     }
   11919              : 
   11920              : }
   11921              : 
   11922              : 
   11923              : /*********** Toplevel code resolution subroutines ***********/
   11924              : 
   11925              : /* Find the set of labels that are reachable from this block.  We also
   11926              :    record the last statement in each block.  */
   11927              : 
   11928              : static void
   11929       700397 : find_reachable_labels (gfc_code *block)
   11930              : {
   11931       700397 :   gfc_code *c;
   11932              : 
   11933       700397 :   if (!block)
   11934              :     return;
   11935              : 
   11936       432679 :   cs_base->reachable_labels = bitmap_alloc (&labels_obstack);
   11937              : 
   11938              :   /* Collect labels in this block.  We don't keep those corresponding
   11939              :      to END {IF|SELECT}, these are checked in resolve_branch by going
   11940              :      up through the code_stack.  */
   11941      1585456 :   for (c = block; c; c = c->next)
   11942              :     {
   11943      1152777 :       if (c->here && c->op != EXEC_END_NESTED_BLOCK)
   11944         3716 :         bitmap_set_bit (cs_base->reachable_labels, c->here->value);
   11945              :     }
   11946              : 
   11947              :   /* Merge with labels from parent block.  */
   11948       432679 :   if (cs_base->prev)
   11949              :     {
   11950       354698 :       gcc_assert (cs_base->prev->reachable_labels);
   11951       354698 :       bitmap_ior_into (cs_base->reachable_labels,
   11952              :                        cs_base->prev->reachable_labels);
   11953              :     }
   11954              : }
   11955              : 
   11956              : static void
   11957          197 : resolve_lock_unlock_event (gfc_code *code)
   11958              : {
   11959          197 :   if ((code->op == EXEC_LOCK || code->op == EXEC_UNLOCK)
   11960          197 :       && (code->expr1->ts.type != BT_DERIVED
   11961          137 :           || code->expr1->expr_type != EXPR_VARIABLE
   11962          137 :           || code->expr1->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
   11963          136 :           || code->expr1->ts.u.derived->intmod_sym_id != ISOFORTRAN_LOCK_TYPE
   11964          136 :           || code->expr1->rank != 0
   11965          181 :           || (!gfc_is_coarray (code->expr1) &&
   11966           46 :               !gfc_is_coindexed (code->expr1))))
   11967            4 :     gfc_error ("Lock variable at %L must be a scalar of type LOCK_TYPE",
   11968            4 :                &code->expr1->where);
   11969          193 :   else if ((code->op == EXEC_EVENT_POST || code->op == EXEC_EVENT_WAIT)
   11970           58 :            && (code->expr1->ts.type != BT_DERIVED
   11971           58 :                || code->expr1->expr_type != EXPR_VARIABLE
   11972           58 :                || code->expr1->ts.u.derived->from_intmod
   11973              :                   != INTMOD_ISO_FORTRAN_ENV
   11974           58 :                || code->expr1->ts.u.derived->intmod_sym_id
   11975              :                   != ISOFORTRAN_EVENT_TYPE
   11976           58 :                || code->expr1->rank != 0))
   11977            0 :     gfc_error ("Event variable at %L must be a scalar of type EVENT_TYPE",
   11978              :                &code->expr1->where);
   11979           34 :   else if (code->op == EXEC_EVENT_POST && !gfc_is_coarray (code->expr1)
   11980          209 :            && !gfc_is_coindexed (code->expr1))
   11981            0 :     gfc_error ("Event variable argument at %L must be a coarray or coindexed",
   11982            0 :                &code->expr1->where);
   11983          193 :   else if (code->op == EXEC_EVENT_WAIT && !gfc_is_coarray (code->expr1))
   11984            0 :     gfc_error ("Event variable argument at %L must be a coarray but not "
   11985            0 :                "coindexed", &code->expr1->where);
   11986              : 
   11987              :   /* Check STAT.  */
   11988          197 :   if (code->expr2
   11989           54 :       && (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0
   11990           54 :           || code->expr2->expr_type != EXPR_VARIABLE))
   11991            0 :     gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
   11992              :                &code->expr2->where);
   11993              : 
   11994          197 :   if (code->expr2
   11995          251 :       && !gfc_check_vardef_context (code->expr2, false, false, false,
   11996           54 :                                     _("STAT variable")))
   11997              :     return;
   11998              : 
   11999              :   /* Check ERRMSG.  */
   12000          197 :   if (code->expr3
   12001            2 :       && (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0
   12002            2 :           || code->expr3->expr_type != EXPR_VARIABLE))
   12003            0 :     gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
   12004              :                &code->expr3->where);
   12005              : 
   12006          197 :   if (code->expr3
   12007          199 :       && !gfc_check_vardef_context (code->expr3, false, false, false,
   12008            2 :                                     _("ERRMSG variable")))
   12009              :     return;
   12010              : 
   12011              :   /* Check for LOCK the ACQUIRED_LOCK.  */
   12012          197 :   if (code->op != EXEC_EVENT_WAIT && code->expr4
   12013           22 :       && (code->expr4->ts.type != BT_LOGICAL || code->expr4->rank != 0
   12014           22 :           || code->expr4->expr_type != EXPR_VARIABLE))
   12015            0 :     gfc_error ("ACQUIRED_LOCK= argument at %L must be a scalar LOGICAL "
   12016              :                "variable", &code->expr4->where);
   12017              : 
   12018          173 :   if (code->op != EXEC_EVENT_WAIT && code->expr4
   12019          219 :       && !gfc_check_vardef_context (code->expr4, false, false, false,
   12020           22 :                                     _("ACQUIRED_LOCK variable")))
   12021              :     return;
   12022              : 
   12023              :   /* Check for EVENT WAIT the UNTIL_COUNT.  */
   12024          197 :   if (code->op == EXEC_EVENT_WAIT && code->expr4)
   12025              :     {
   12026           36 :       if (!gfc_resolve_expr (code->expr4) || code->expr4->ts.type != BT_INTEGER
   12027           36 :           || code->expr4->rank != 0)
   12028            0 :         gfc_error ("UNTIL_COUNT= argument at %L must be a scalar INTEGER "
   12029            0 :                    "expression", &code->expr4->where);
   12030              :     }
   12031              : }
   12032              : 
   12033              : static void
   12034          294 : resolve_team_argument (gfc_expr *team)
   12035              : {
   12036          294 :   gfc_resolve_expr (team);
   12037          294 :   if (team->rank != 0 || team->ts.type != BT_DERIVED
   12038          287 :       || team->ts.u.derived->from_intmod != INTMOD_ISO_FORTRAN_ENV
   12039          287 :       || team->ts.u.derived->intmod_sym_id != ISOFORTRAN_TEAM_TYPE)
   12040              :     {
   12041            7 :       gfc_error ("TEAM argument at %L must be a scalar expression "
   12042              :                  "of type TEAM_TYPE from the intrinsic module ISO_FORTRAN_ENV",
   12043              :                  &team->where);
   12044              :     }
   12045          294 : }
   12046              : 
   12047              : static void
   12048         1514 : resolve_scalar_variable_as_arg (const char *name, bt exp_type, int exp_kind,
   12049              :                                 gfc_expr *e)
   12050              : {
   12051         1514 :   gfc_resolve_expr (e);
   12052         1514 :   if (e
   12053          139 :       && (e->ts.type != exp_type || e->ts.kind < exp_kind || e->rank != 0
   12054          124 :           || e->expr_type != EXPR_VARIABLE))
   12055           15 :     gfc_error ("%s argument at %L must be a scalar %s variable of at least "
   12056              :                "kind %d", name, &e->where, gfc_basic_typename (exp_type),
   12057              :                exp_kind);
   12058         1514 : }
   12059              : 
   12060              : void
   12061          757 : gfc_resolve_sync_stat (struct sync_stat *sync_stat)
   12062              : {
   12063          757 :   resolve_scalar_variable_as_arg ("STAT=", BT_INTEGER, 2, sync_stat->stat);
   12064          757 :   resolve_scalar_variable_as_arg ("ERRMSG=", BT_CHARACTER,
   12065              :                                   gfc_default_character_kind,
   12066              :                                   sync_stat->errmsg);
   12067          757 : }
   12068              : 
   12069              : static void
   12070          308 : resolve_scalar_argument (const char *name, bt exp_type, int exp_kind,
   12071              :                          gfc_expr *e)
   12072              : {
   12073          308 :   gfc_resolve_expr (e);
   12074          308 :   if (e
   12075          185 :       && (e->ts.type != exp_type || e->ts.kind < exp_kind || e->rank != 0))
   12076            3 :     gfc_error ("%s argument at %L must be a scalar %s of at least kind %d",
   12077              :                name, &e->where, gfc_basic_typename (exp_type), exp_kind);
   12078          308 : }
   12079              : 
   12080              : static void
   12081          154 : resolve_form_team (gfc_code *code)
   12082              : {
   12083          154 :   resolve_scalar_argument ("TEAM NUMBER", BT_INTEGER, gfc_default_integer_kind,
   12084              :                            code->expr1);
   12085          154 :   resolve_team_argument (code->expr2);
   12086          154 :   resolve_scalar_argument ("NEW_INDEX=", BT_INTEGER, gfc_default_integer_kind,
   12087              :                            code->expr3);
   12088          154 :   gfc_resolve_sync_stat (&code->ext.sync_stat);
   12089          154 : }
   12090              : 
   12091              : static void resolve_block_construct (gfc_code *);
   12092              : 
   12093              : static void
   12094           97 : resolve_change_team (gfc_code *code)
   12095              : {
   12096           97 :   resolve_team_argument (code->expr1);
   12097           97 :   gfc_resolve_sync_stat (&code->ext.block.sync_stat);
   12098          194 :   resolve_block_construct (code);
   12099              :   /* Map the coarray bounds as selected.  */
   12100          100 :   for (gfc_association_list *a = code->ext.block.assoc; a; a = a->next)
   12101            3 :     if (a->ar)
   12102              :       {
   12103            3 :         gfc_array_spec *src = a->ar->as, *dst;
   12104            3 :         if (a->st->n.sym->ts.type == BT_CLASS)
   12105            0 :           dst = CLASS_DATA (a->st->n.sym)->as;
   12106              :         else
   12107            3 :           dst = a->st->n.sym->as;
   12108            3 :         dst->corank = src->corank;
   12109            3 :         dst->cotype = src->cotype;
   12110            6 :         for (int i = 0; i < src->corank; ++i)
   12111              :           {
   12112            3 :             dst->lower[dst->rank + i] = src->lower[i];
   12113            3 :             dst->upper[dst->rank + i] = src->upper[i];
   12114            3 :             src->lower[i] = src->upper[i] = nullptr;
   12115              :           }
   12116            3 :         gfc_free_array_spec (src);
   12117            3 :         free (a->ar);
   12118            3 :         a->ar = nullptr;
   12119            3 :         dst->resolved = false;
   12120            3 :         gfc_resolve_array_spec (dst, 0);
   12121              :       }
   12122           97 : }
   12123              : 
   12124              : static void
   12125           43 : resolve_sync_team (gfc_code *code)
   12126              : {
   12127           43 :   resolve_team_argument (code->expr1);
   12128           43 :   gfc_resolve_sync_stat (&code->ext.sync_stat);
   12129           43 : }
   12130              : 
   12131              : static void
   12132           95 : resolve_end_team (gfc_code *code)
   12133              : {
   12134           95 :   gfc_resolve_sync_stat (&code->ext.sync_stat);
   12135           95 : }
   12136              : 
   12137              : static void
   12138           54 : resolve_critical (gfc_code *code)
   12139              : {
   12140           54 :   gfc_symtree *symtree;
   12141           54 :   gfc_symbol *lock_type;
   12142           54 :   char name[GFC_MAX_SYMBOL_LEN];
   12143           54 :   static int serial = 0;
   12144              : 
   12145           54 :   gfc_resolve_sync_stat (&code->ext.sync_stat);
   12146              : 
   12147           54 :   if (flag_coarray != GFC_FCOARRAY_LIB)
   12148           30 :     return;
   12149              : 
   12150           24 :   symtree = gfc_find_symtree (gfc_current_ns->sym_root,
   12151              :                               GFC_PREFIX ("lock_type"));
   12152           24 :   if (symtree)
   12153           12 :     lock_type = symtree->n.sym;
   12154              :   else
   12155              :     {
   12156           12 :       if (gfc_get_sym_tree (GFC_PREFIX ("lock_type"), gfc_current_ns, &symtree,
   12157              :                             false) != 0)
   12158            0 :         gcc_unreachable ();
   12159           12 :       lock_type = symtree->n.sym;
   12160           12 :       lock_type->attr.flavor = FL_DERIVED;
   12161           12 :       lock_type->attr.zero_comp = 1;
   12162           12 :       lock_type->from_intmod = INTMOD_ISO_FORTRAN_ENV;
   12163           12 :       lock_type->intmod_sym_id = ISOFORTRAN_LOCK_TYPE;
   12164              :     }
   12165              : 
   12166           24 :   sprintf(name, GFC_PREFIX ("lock_var") "%d",serial++);
   12167           24 :   if (gfc_get_sym_tree (name, gfc_current_ns, &symtree, false) != 0)
   12168            0 :     gcc_unreachable ();
   12169              : 
   12170           24 :   code->resolved_sym = symtree->n.sym;
   12171           24 :   symtree->n.sym->attr.flavor = FL_VARIABLE;
   12172           24 :   symtree->n.sym->attr.referenced = 1;
   12173           24 :   symtree->n.sym->attr.artificial = 1;
   12174           24 :   symtree->n.sym->attr.codimension = 1;
   12175           24 :   symtree->n.sym->ts.type = BT_DERIVED;
   12176           24 :   symtree->n.sym->ts.u.derived = lock_type;
   12177           24 :   symtree->n.sym->as = gfc_get_array_spec ();
   12178           24 :   symtree->n.sym->as->corank = 1;
   12179           24 :   symtree->n.sym->as->type = AS_EXPLICIT;
   12180           24 :   symtree->n.sym->as->cotype = AS_EXPLICIT;
   12181           24 :   symtree->n.sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind,
   12182              :                                                    NULL, 1);
   12183           24 :   gfc_commit_symbols();
   12184              : }
   12185              : 
   12186              : 
   12187              : static void
   12188         1317 : resolve_sync (gfc_code *code)
   12189              : {
   12190              :   /* Check imageset. The * case matches expr1 == NULL.  */
   12191         1317 :   if (code->expr1)
   12192              :     {
   12193           71 :       if (code->expr1->ts.type != BT_INTEGER || code->expr1->rank > 1)
   12194            1 :         gfc_error ("Imageset argument at %L must be a scalar or rank-1 "
   12195              :                    "INTEGER expression", &code->expr1->where);
   12196           71 :       if (code->expr1->expr_type == EXPR_CONSTANT && code->expr1->rank == 0
   12197           27 :           && mpz_cmp_si (code->expr1->value.integer, 1) < 0)
   12198            1 :         gfc_error ("Imageset argument at %L must between 1 and num_images()",
   12199              :                    &code->expr1->where);
   12200           70 :       else if (code->expr1->expr_type == EXPR_ARRAY
   12201           70 :                && gfc_simplify_expr (code->expr1, 0))
   12202              :         {
   12203           20 :            gfc_constructor *cons;
   12204           20 :            cons = gfc_constructor_first (code->expr1->value.constructor);
   12205           60 :            for (; cons; cons = gfc_constructor_next (cons))
   12206           20 :              if (cons->expr->expr_type == EXPR_CONSTANT
   12207           20 :                  &&  mpz_cmp_si (cons->expr->value.integer, 1) < 0)
   12208            0 :                gfc_error ("Imageset argument at %L must between 1 and "
   12209              :                           "num_images()", &cons->expr->where);
   12210              :         }
   12211              :     }
   12212              : 
   12213              :   /* Check STAT.  */
   12214         1317 :   gfc_resolve_expr (code->expr2);
   12215         1317 :   if (code->expr2)
   12216              :     {
   12217          108 :       if (code->expr2->ts.type != BT_INTEGER || code->expr2->rank != 0)
   12218            1 :         gfc_error ("STAT= argument at %L must be a scalar INTEGER variable",
   12219              :                    &code->expr2->where);
   12220              :       else
   12221          107 :         gfc_check_vardef_context (code->expr2, false, false, false,
   12222          107 :                                   _("STAT variable"));
   12223              :     }
   12224              : 
   12225              :   /* Check ERRMSG.  */
   12226         1317 :   gfc_resolve_expr (code->expr3);
   12227         1317 :   if (code->expr3)
   12228              :     {
   12229           90 :       if (code->expr3->ts.type != BT_CHARACTER || code->expr3->rank != 0)
   12230            4 :         gfc_error ("ERRMSG= argument at %L must be a scalar CHARACTER variable",
   12231              :                    &code->expr3->where);
   12232              :       else
   12233           86 :         gfc_check_vardef_context (code->expr3, false, false, false,
   12234           86 :                                   _("ERRMSG variable"));
   12235              :     }
   12236         1317 : }
   12237              : 
   12238              : 
   12239              : /* Given a branch to a label, see if the branch is conforming.
   12240              :    The code node describes where the branch is located.  */
   12241              : 
   12242              : static void
   12243       112243 : resolve_branch (gfc_st_label *label, gfc_code *code)
   12244              : {
   12245       112243 :   code_stack *stack;
   12246              : 
   12247       112243 :   if (label == NULL)
   12248              :     return;
   12249              : 
   12250              :   /* Step one: is this a valid branching target?  */
   12251              : 
   12252         2514 :   if (label->defined == ST_LABEL_UNKNOWN)
   12253              :     {
   12254            4 :       gfc_error ("Label %d referenced at %L is never defined", label->value,
   12255              :                  &code->loc);
   12256            4 :       return;
   12257              :     }
   12258              : 
   12259         2510 :   if (label->defined != ST_LABEL_TARGET && label->defined != ST_LABEL_DO_TARGET)
   12260              :     {
   12261            4 :       gfc_error ("Statement at %L is not a valid branch target statement "
   12262              :                  "for the branch statement at %L", &label->where, &code->loc);
   12263            4 :       return;
   12264              :     }
   12265              : 
   12266              :   /* Step two: make sure this branch is not a branch to itself ;-)  */
   12267              : 
   12268         2506 :   if (code->here == label)
   12269              :     {
   12270            0 :       gfc_warning (0, "Branch at %L may result in an infinite loop",
   12271              :                    &code->loc);
   12272            0 :       return;
   12273              :     }
   12274              : 
   12275              :   /* Step three:  See if the label is in the same block as the
   12276              :      branching statement.  The hard work has been done by setting up
   12277              :      the bitmap reachable_labels.  */
   12278              : 
   12279         2506 :   if (bitmap_bit_p (cs_base->reachable_labels, label->value))
   12280              :     {
   12281              :       /* Check now whether there is a CRITICAL construct; if so, check
   12282              :          whether the label is still visible outside of the CRITICAL block,
   12283              :          which is invalid.  */
   12284         6375 :       for (stack = cs_base; stack; stack = stack->prev)
   12285              :         {
   12286         3937 :           if (stack->current->op == EXEC_CRITICAL
   12287         3937 :               && bitmap_bit_p (stack->reachable_labels, label->value))
   12288            2 :             gfc_error ("GOTO statement at %L leaves CRITICAL construct for "
   12289              :                       "label at %L", &code->loc, &label->where);
   12290         3935 :           else if (stack->current->op == EXEC_DO_CONCURRENT
   12291         3935 :                    && bitmap_bit_p (stack->reachable_labels, label->value))
   12292            0 :             gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct "
   12293              :                       "for label at %L", &code->loc, &label->where);
   12294         3935 :           else if (stack->current->op == EXEC_CHANGE_TEAM
   12295         3935 :                    && bitmap_bit_p (stack->reachable_labels, label->value))
   12296            1 :             gfc_error ("GOTO statement at %L leaves CHANGE TEAM construct "
   12297              :                       "for label at %L", &code->loc, &label->where);
   12298              :         }
   12299              : 
   12300              :       return;
   12301              :     }
   12302              : 
   12303              :   /* Step four:  If we haven't found the label in the bitmap, it may
   12304              :     still be the label of the END of the enclosing block, in which
   12305              :     case we find it by going up the code_stack.  */
   12306              : 
   12307          167 :   for (stack = cs_base; stack; stack = stack->prev)
   12308              :     {
   12309          131 :       if (stack->current->next && stack->current->next->here == label)
   12310              :         break;
   12311          101 :       if (stack->current->op == EXEC_CRITICAL)
   12312              :         {
   12313              :           /* Note: A label at END CRITICAL does not leave the CRITICAL
   12314              :              construct as END CRITICAL is still part of it.  */
   12315            2 :           gfc_error ("GOTO statement at %L leaves CRITICAL construct for label"
   12316              :                       " at %L", &code->loc, &label->where);
   12317            2 :           return;
   12318              :         }
   12319           99 :       else if (stack->current->op == EXEC_DO_CONCURRENT)
   12320              :         {
   12321            0 :           gfc_error ("GOTO statement at %L leaves DO CONCURRENT construct for "
   12322              :                      "label at %L", &code->loc, &label->where);
   12323            0 :           return;
   12324              :         }
   12325              :     }
   12326              : 
   12327           66 :   if (stack)
   12328              :     {
   12329           30 :       gcc_assert (stack->current->next->op == EXEC_END_NESTED_BLOCK);
   12330              :       return;
   12331              :     }
   12332              : 
   12333              :   /* The label is not in an enclosing block, so illegal.  This was
   12334              :      allowed in Fortran 66, so we allow it as extension.  No
   12335              :      further checks are necessary in this case.  */
   12336           36 :   gfc_notify_std (GFC_STD_LEGACY, "Label at %L is not in the same block "
   12337              :                   "as the GOTO statement at %L", &label->where,
   12338              :                   &code->loc);
   12339           36 :   return;
   12340              : }
   12341              : 
   12342              : 
   12343              : /* Check whether EXPR1 has the same shape as EXPR2.  */
   12344              : 
   12345              : static bool
   12346         1479 : resolve_where_shape (gfc_expr *expr1, gfc_expr *expr2)
   12347              : {
   12348         1479 :   mpz_t shape[GFC_MAX_DIMENSIONS];
   12349         1479 :   mpz_t shape2[GFC_MAX_DIMENSIONS];
   12350         1479 :   bool result = false;
   12351         1479 :   int i;
   12352              : 
   12353              :   /* Compare the rank.  */
   12354         1479 :   if (expr1->rank != expr2->rank)
   12355              :     return result;
   12356              : 
   12357              :   /* Compare the size of each dimension.  */
   12358         2835 :   for (i=0; i<expr1->rank; i++)
   12359              :     {
   12360         1507 :       if (!gfc_array_dimen_size (expr1, i, &shape[i]))
   12361          151 :         goto ignore;
   12362              : 
   12363         1356 :       if (!gfc_array_dimen_size (expr2, i, &shape2[i]))
   12364            0 :         goto ignore;
   12365              : 
   12366         1356 :       if (mpz_cmp (shape[i], shape2[i]))
   12367            0 :         goto over;
   12368              :     }
   12369              : 
   12370              :   /* When either of the two expression is an assumed size array, we
   12371              :      ignore the comparison of dimension sizes.  */
   12372         1328 : ignore:
   12373              :   result = true;
   12374              : 
   12375         1479 : over:
   12376         1479 :   gfc_clear_shape (shape, i);
   12377         1479 :   gfc_clear_shape (shape2, i);
   12378         1479 :   return result;
   12379              : }
   12380              : 
   12381              : 
   12382              : /* Check whether a WHERE assignment target or a WHERE mask expression
   12383              :    has the same shape as the outermost WHERE mask expression.  */
   12384              : 
   12385              : static void
   12386          515 : resolve_where (gfc_code *code, gfc_expr *mask)
   12387              : {
   12388          515 :   gfc_code *cblock;
   12389          515 :   gfc_code *cnext;
   12390          515 :   gfc_expr *e = NULL;
   12391              : 
   12392          515 :   cblock = code->block;
   12393              : 
   12394              :   /* Store the first WHERE mask-expr of the WHERE statement or construct.
   12395              :      In case of nested WHERE, only the outermost one is stored.  */
   12396          515 :   if (mask == NULL) /* outermost WHERE */
   12397          459 :     e = cblock->expr1;
   12398              :   else /* inner WHERE */
   12399          515 :     e = mask;
   12400              : 
   12401         1399 :   while (cblock)
   12402              :     {
   12403          884 :       if (cblock->expr1)
   12404              :         {
   12405              :           /* Check if the mask-expr has a consistent shape with the
   12406              :              outermost WHERE mask-expr.  */
   12407          720 :           if (!resolve_where_shape (cblock->expr1, e))
   12408            0 :             gfc_error ("WHERE mask at %L has inconsistent shape",
   12409            0 :                        &cblock->expr1->where);
   12410              :          }
   12411              : 
   12412              :       /* the assignment statement of a WHERE statement, or the first
   12413              :          statement in where-body-construct of a WHERE construct */
   12414          884 :       cnext = cblock->next;
   12415         1745 :       while (cnext)
   12416              :         {
   12417          861 :           switch (cnext->op)
   12418              :             {
   12419              :             /* WHERE assignment statement */
   12420          759 :             case EXEC_ASSIGN:
   12421              : 
   12422              :               /* Check shape consistent for WHERE assignment target.  */
   12423          759 :               if (e && !resolve_where_shape (cnext->expr1, e))
   12424            0 :                gfc_error ("WHERE assignment target at %L has "
   12425            0 :                           "inconsistent shape", &cnext->expr1->where);
   12426              : 
   12427          759 :               if (cnext->op == EXEC_ASSIGN
   12428          759 :                   && gfc_may_be_finalized (cnext->expr1->ts))
   12429            0 :                 cnext->expr1->must_finalize = 1;
   12430              : 
   12431              :               break;
   12432              : 
   12433              : 
   12434           46 :             case EXEC_ASSIGN_CALL:
   12435           46 :               resolve_call (cnext);
   12436           46 :               if (!cnext->resolved_sym->attr.elemental)
   12437            2 :                 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
   12438            2 :                           &cnext->ext.actual->expr->where);
   12439              :               break;
   12440              : 
   12441              :             /* WHERE or WHERE construct is part of a where-body-construct */
   12442           56 :             case EXEC_WHERE:
   12443           56 :               resolve_where (cnext, e);
   12444           56 :               break;
   12445              : 
   12446            0 :             default:
   12447            0 :               gfc_error ("Unsupported statement inside WHERE at %L",
   12448              :                          &cnext->loc);
   12449              :             }
   12450              :          /* the next statement within the same where-body-construct */
   12451          861 :          cnext = cnext->next;
   12452              :        }
   12453              :     /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
   12454          884 :     cblock = cblock->block;
   12455              :   }
   12456          515 : }
   12457              : 
   12458              : 
   12459              : /* Resolve assignment in FORALL construct.
   12460              :    NVAR is the number of FORALL index variables, and VAR_EXPR records the
   12461              :    FORALL index variables.  */
   12462              : 
   12463              : static void
   12464         2400 : gfc_resolve_assign_in_forall (gfc_code *code, int nvar, gfc_expr **var_expr)
   12465              : {
   12466         2400 :   int n;
   12467         2400 :   gfc_symbol *forall_index;
   12468              : 
   12469         6822 :   for (n = 0; n < nvar; n++)
   12470              :     {
   12471         4422 :       forall_index = var_expr[n]->symtree->n.sym;
   12472              : 
   12473              :       /* Check whether the assignment target is one of the FORALL index
   12474              :          variable.  */
   12475         4422 :       if ((code->expr1->expr_type == EXPR_VARIABLE)
   12476         4422 :           && (code->expr1->symtree->n.sym == forall_index))
   12477            0 :         gfc_error ("Assignment to a FORALL index variable at %L",
   12478              :                    &code->expr1->where);
   12479              :       else
   12480              :         {
   12481              :           /* If one of the FORALL index variables doesn't appear in the
   12482              :              assignment variable, then there could be a many-to-one
   12483              :              assignment.  Emit a warning rather than an error because the
   12484              :              mask could be resolving this problem.
   12485              :              DO NOT emit this warning for DO CONCURRENT - reduction-like
   12486              :              many-to-one assignments are semantically valid (formalized with
   12487              :              the REDUCE locality-spec in Fortran 2023).  */
   12488         4422 :           if (!find_forall_index (code->expr1, forall_index, 0)
   12489         4422 :               && !gfc_do_concurrent_flag)
   12490            0 :             gfc_warning (0, "The FORALL with index %qs is not used on the "
   12491              :                          "left side of the assignment at %L and so might "
   12492              :                          "cause multiple assignment to this object",
   12493            0 :                          var_expr[n]->symtree->name, &code->expr1->where);
   12494              :         }
   12495              :     }
   12496         2400 : }
   12497              : 
   12498              : 
   12499              : /* Resolve WHERE statement in FORALL construct.  */
   12500              : 
   12501              : static void
   12502           53 : gfc_resolve_where_code_in_forall (gfc_code *code, int nvar,
   12503              :                                   gfc_expr **var_expr)
   12504              : {
   12505           53 :   gfc_code *cblock;
   12506           53 :   gfc_code *cnext;
   12507              : 
   12508           53 :   cblock = code->block;
   12509          125 :   while (cblock)
   12510              :     {
   12511              :       /* the assignment statement of a WHERE statement, or the first
   12512              :          statement in where-body-construct of a WHERE construct */
   12513           72 :       cnext = cblock->next;
   12514          144 :       while (cnext)
   12515              :         {
   12516           72 :           switch (cnext->op)
   12517              :             {
   12518              :             /* WHERE assignment statement */
   12519           72 :             case EXEC_ASSIGN:
   12520           72 :               gfc_resolve_assign_in_forall (cnext, nvar, var_expr);
   12521              : 
   12522           72 :               if (cnext->op == EXEC_ASSIGN
   12523           72 :                   && gfc_may_be_finalized (cnext->expr1->ts))
   12524            0 :                 cnext->expr1->must_finalize = 1;
   12525              : 
   12526              :               break;
   12527              : 
   12528              :             /* WHERE operator assignment statement */
   12529            0 :             case EXEC_ASSIGN_CALL:
   12530            0 :               resolve_call (cnext);
   12531            0 :               if (!cnext->resolved_sym->attr.elemental)
   12532            0 :                 gfc_error("Non-ELEMENTAL user-defined assignment in WHERE at %L",
   12533            0 :                           &cnext->ext.actual->expr->where);
   12534              :               break;
   12535              : 
   12536              :             /* WHERE or WHERE construct is part of a where-body-construct */
   12537            0 :             case EXEC_WHERE:
   12538            0 :               gfc_resolve_where_code_in_forall (cnext, nvar, var_expr);
   12539            0 :               break;
   12540              : 
   12541            0 :             default:
   12542            0 :               gfc_error ("Unsupported statement inside WHERE at %L",
   12543              :                          &cnext->loc);
   12544              :             }
   12545              :           /* the next statement within the same where-body-construct */
   12546           72 :           cnext = cnext->next;
   12547              :         }
   12548              :       /* the next masked-elsewhere-stmt, elsewhere-stmt, or end-where-stmt */
   12549           72 :       cblock = cblock->block;
   12550              :     }
   12551           53 : }
   12552              : 
   12553              : 
   12554              : /* Traverse the FORALL body to check whether the following errors exist:
   12555              :    1. For assignment, check if a many-to-one assignment happens.
   12556              :    2. For WHERE statement, check the WHERE body to see if there is any
   12557              :       many-to-one assignment.  */
   12558              : 
   12559              : static void
   12560         2271 : gfc_resolve_forall_body (gfc_code *code, int nvar, gfc_expr **var_expr)
   12561              : {
   12562         2271 :   gfc_code *c;
   12563              : 
   12564         2271 :   c = code->block->next;
   12565         4964 :   while (c)
   12566              :     {
   12567         2693 :       switch (c->op)
   12568              :         {
   12569         2328 :         case EXEC_ASSIGN:
   12570         2328 :         case EXEC_POINTER_ASSIGN:
   12571         2328 :           gfc_resolve_assign_in_forall (c, nvar, var_expr);
   12572              : 
   12573         2328 :           if (c->op == EXEC_ASSIGN
   12574         2328 :               && gfc_may_be_finalized (c->expr1->ts))
   12575            0 :             c->expr1->must_finalize = 1;
   12576              : 
   12577              :           break;
   12578              : 
   12579            0 :         case EXEC_ASSIGN_CALL:
   12580            0 :           resolve_call (c);
   12581            0 :           break;
   12582              : 
   12583              :         /* Because the gfc_resolve_blocks() will handle the nested FORALL,
   12584              :            there is no need to handle it here.  */
   12585              :         case EXEC_FORALL:
   12586              :           break;
   12587           53 :         case EXEC_WHERE:
   12588           53 :           gfc_resolve_where_code_in_forall(c, nvar, var_expr);
   12589           53 :           break;
   12590              :         default:
   12591              :           break;
   12592              :         }
   12593              :       /* The next statement in the FORALL body.  */
   12594         2693 :       c = c->next;
   12595              :     }
   12596         2271 : }
   12597              : 
   12598              : 
   12599              : /* Counts the number of iterators needed inside a forall construct, including
   12600              :    nested forall constructs. This is used to allocate the needed memory
   12601              :    in gfc_resolve_forall.  */
   12602              : 
   12603              : static int gfc_count_forall_iterators (gfc_code *code);
   12604              : 
   12605              : /* Return the deepest nested FORALL/DO CONCURRENT iterator count in CODE's
   12606              :    next-chain, descending into block arms such as IF/ELSE branches.  */
   12607              : 
   12608              : static int
   12609         2511 : gfc_max_forall_iterators_in_chain (gfc_code *code)
   12610              : {
   12611         2511 :   int max_iters = 0;
   12612              : 
   12613         5479 :   for (gfc_code *c = code; c; c = c->next)
   12614              :     {
   12615         2968 :       int sub_iters = 0;
   12616              : 
   12617         2968 :       if (c->op == EXEC_FORALL || c->op == EXEC_DO_CONCURRENT)
   12618           94 :         sub_iters = gfc_count_forall_iterators (c);
   12619         2874 :       else if (c->op == EXEC_BLOCK)
   12620              :         {
   12621              :           /* BLOCK/ASSOCIATE bodies live in the block namespace code chain,
   12622              :              not in the generic c->block arm list used by IF/SELECT.  */
   12623           40 :           if (c->ext.block.ns && c->ext.block.ns->code)
   12624           40 :             sub_iters = gfc_max_forall_iterators_in_chain (c->ext.block.ns->code);
   12625              :         }
   12626         2834 :       else if (c->block)
   12627          367 :         for (gfc_code *b = c->block; b; b = b->block)
   12628              :           {
   12629          200 :             int arm_iters = gfc_max_forall_iterators_in_chain (b->next);
   12630          200 :             if (arm_iters > sub_iters)
   12631              :               sub_iters = arm_iters;
   12632              :           }
   12633              : 
   12634         2968 :       if (sub_iters > max_iters)
   12635              :         max_iters = sub_iters;
   12636              :     }
   12637              : 
   12638         2511 :   return max_iters;
   12639              : }
   12640              : 
   12641              : 
   12642              : static int
   12643         2271 : gfc_count_forall_iterators (gfc_code *code)
   12644              : {
   12645         2271 :   int current_iters = 0;
   12646         2271 :   gfc_forall_iterator *fa;
   12647              : 
   12648         2271 :   gcc_assert (code->op == EXEC_FORALL || code->op == EXEC_DO_CONCURRENT);
   12649              : 
   12650         6460 :   for (fa = code->ext.concur.forall_iterator; fa; fa = fa->next)
   12651         4189 :     current_iters++;
   12652              : 
   12653         2271 :   return current_iters + gfc_max_forall_iterators_in_chain (code->block->next);
   12654              : }
   12655              : 
   12656              : 
   12657              : /* Given a FORALL construct.
   12658              :    1) Resolve the FORALL iterator.
   12659              :    2) Check for shadow index-name(s) and update code block.
   12660              :    3) call gfc_resolve_forall_body to resolve the FORALL body.  */
   12661              : 
   12662              : /* Shadow variable that replace_forall_var substitutes in; set by
   12663              :    replace_in_expr_recursive before each traversal.  */
   12664              : 
   12665              : static gfc_symtree *forall_shadow_st;
   12666              : 
   12667              : /* gfc_traverse_expr callback: point a reference to OLD_SYM at the
   12668              :    construct-scoped shadow variable.  */
   12669              : 
   12670              : static bool
   12671          594 : replace_forall_var (gfc_expr *expr, gfc_symbol *old_sym,
   12672              :                     int *f ATTRIBUTE_UNUSED)
   12673              : {
   12674          594 :   if (expr->expr_type == EXPR_VARIABLE && expr->symtree->n.sym == old_sym)
   12675              :     {
   12676          162 :       expr->symtree = forall_shadow_st;
   12677          162 :       expr->ts = forall_shadow_st->n.sym->ts;
   12678              :     }
   12679              : 
   12680          594 :   return false;
   12681              : }
   12682              : 
   12683              : 
   12684              : /* Replace every reference to OLD_SYM in EXPR with NEW_ST.  Traversal is
   12685              :    left to gfc_traverse_expr so that all expression forms are covered;
   12686              :    character length type parameters are skipped since those belong to
   12687              :    declarations that may be shared outside the construct.  */
   12688              : 
   12689              : static void
   12690          654 : replace_in_expr_recursive (gfc_expr *expr, gfc_symbol *old_sym,
   12691              :                            gfc_symtree *new_st)
   12692              : {
   12693          654 :   if (!expr)
   12694              :     return;
   12695              : 
   12696          264 :   forall_shadow_st = new_st;
   12697          264 :   gfc_traverse_expr (expr, old_sym, replace_forall_var, -1);
   12698              : }
   12699              : 
   12700              : 
   12701              : /* Walk code tree and replace all variable references */
   12702              : 
   12703              : static void
   12704          144 : replace_in_code_recursive (gfc_code *code, gfc_symbol *old_sym, gfc_symtree *new_st)
   12705              : {
   12706          144 :   if (!code)
   12707              :     return;
   12708              : 
   12709          294 :   for (gfc_code *c = code; c; c = c->next)
   12710              :     {
   12711              :       /* Replace in expressions associated with this code node */
   12712          150 :       replace_in_expr_recursive (c->expr1, old_sym, new_st);
   12713          150 :       replace_in_expr_recursive (c->expr2, old_sym, new_st);
   12714          150 :       replace_in_expr_recursive (c->expr3, old_sym, new_st);
   12715          150 :       replace_in_expr_recursive (c->expr4, old_sym, new_st);
   12716              : 
   12717              :       /* Handle special code types with additional expressions */
   12718          150 :       switch (c->op)
   12719              :         {
   12720            0 :         case EXEC_DO:
   12721            0 :           if (c->ext.iterator)
   12722              :             {
   12723            0 :               replace_in_expr_recursive (c->ext.iterator->start, old_sym, new_st);
   12724            0 :               replace_in_expr_recursive (c->ext.iterator->end, old_sym, new_st);
   12725            0 :               replace_in_expr_recursive (c->ext.iterator->step, old_sym, new_st);
   12726              :             }
   12727              :           break;
   12728              : 
   12729            0 :         case EXEC_CALL:
   12730            0 :         case EXEC_ASSIGN_CALL:
   12731            0 :           for (gfc_actual_arglist *a = c->ext.actual; a; a = a->next)
   12732            0 :             replace_in_expr_recursive (a->expr, old_sym, new_st);
   12733              :           break;
   12734              : 
   12735            6 :         case EXEC_SELECT:
   12736            6 :         case EXEC_SELECT_TYPE:
   12737            6 :         case EXEC_SELECT_RANK:
   12738           12 :           for (gfc_code *b = c->block; b; b = b->block)
   12739              :             {
   12740           12 :               for (gfc_case *cp = b->ext.block.case_list; cp; cp = cp->next)
   12741              :                 {
   12742            6 :                   replace_in_expr_recursive (cp->low, old_sym, new_st);
   12743            6 :                   replace_in_expr_recursive (cp->high, old_sym, new_st);
   12744              :                 }
   12745            6 :               replace_in_code_recursive (b->next, old_sym, new_st);
   12746              :             }
   12747              :           break;
   12748              : 
   12749           18 :         case EXEC_IF:
   12750           18 :         case EXEC_WHERE:
   12751              :           /* Each block in the chain holds its condition or mask in EXPR1
   12752              :              and its body in NEXT; the trailing ELSE/ELSEWHERE has no
   12753              :              condition.  The generic recursion below only reaches the first
   12754              :              branch, so walk the whole chain here.  */
   12755           48 :           for (gfc_code *b = c->block; b; b = b->block)
   12756              :             {
   12757           30 :               replace_in_expr_recursive (b->expr1, old_sym, new_st);
   12758           30 :               replace_in_code_recursive (b->next, old_sym, new_st);
   12759              :             }
   12760              :           break;
   12761              : 
   12762            6 :         case EXEC_ALLOCATE:
   12763            6 :         case EXEC_DEALLOCATE:
   12764              :           /* Bounds and lengths of the allocate-objects.  */
   12765           12 :           for (gfc_alloc *al = c->ext.alloc.list; al; al = al->next)
   12766            6 :             replace_in_expr_recursive (al->expr, old_sym, new_st);
   12767              :           break;
   12768              : 
   12769            0 :         case EXEC_FORALL:
   12770            0 :         case EXEC_DO_CONCURRENT:
   12771            0 :           for (gfc_forall_iterator *fa = c->ext.concur.forall_iterator; fa; fa = fa->next)
   12772              :             {
   12773            0 :               replace_in_expr_recursive (fa->start, old_sym, new_st);
   12774            0 :               replace_in_expr_recursive (fa->end, old_sym, new_st);
   12775            0 :               replace_in_expr_recursive (fa->stride, old_sym, new_st);
   12776              :             }
   12777              :           /* Don't recurse into nested FORALL/DO CONCURRENT bodies here,
   12778              :              they'll be handled separately */
   12779              :           break;
   12780              : 
   12781           12 :         case EXEC_BLOCK:
   12782              :           /* Replace in ASSOCIATE selector expressions and the body.
   12783              :              The body of an EXEC_BLOCK lives in c->ext.block.ns->code, not
   12784              :              c->block->next, so without this case both selectors and body
   12785              :              are silently skipped, leaving shadow iterator references unreplaced
   12786              :              and producing wrong values at runtime.  */
   12787           12 :           for (gfc_association_list *alist = c->ext.block.assoc;
   12788           18 :                alist; alist = alist->next)
   12789            6 :             replace_in_expr_recursive (alist->target, old_sym, new_st);
   12790           12 :           if (c->ext.block.ns)
   12791           12 :             replace_in_code_recursive (c->ext.block.ns->code, old_sym, new_st);
   12792              :           break;
   12793              : 
   12794              :         default:
   12795              :           break;
   12796              :         }
   12797              : 
   12798              :       /* Recurse into blocks */
   12799          150 :       if (c->block)
   12800           24 :         replace_in_code_recursive (c->block->next, old_sym, new_st);
   12801              :     }
   12802              : }
   12803              : 
   12804              : 
   12805              : /* Replace all references to outer_sym with shadow_st in the given code.  */
   12806              : 
   12807              : static void
   12808           72 : gfc_replace_forall_variable (gfc_code **code_ptr, gfc_symbol *outer_sym,
   12809              :                               gfc_symtree *shadow_st)
   12810              : {
   12811              :   /* Use custom recursive walker to ensure we visit ALL expressions */
   12812            0 :   replace_in_code_recursive (*code_ptr, outer_sym, shadow_st);
   12813            0 : }
   12814              : 
   12815              : 
   12816              : static void
   12817         2271 : gfc_resolve_forall (gfc_code *code, gfc_namespace *ns, int forall_save)
   12818              : {
   12819         2271 :   static gfc_expr **var_expr;
   12820         2271 :   static int total_var = 0;
   12821         2271 :   static int nvar = 0;
   12822         2271 :   int i, old_nvar, tmp;
   12823         2271 :   gfc_forall_iterator *fa;
   12824         2271 :   bool shadow = false;
   12825              : 
   12826         2271 :   old_nvar = nvar;
   12827              : 
   12828              :   /* Only warn about obsolescent FORALL, not DO CONCURRENT */
   12829         2271 :   if (code->op == EXEC_FORALL
   12830         2271 :       && !gfc_notify_std (GFC_STD_F2018_OBS, "FORALL construct at %L", &code->loc))
   12831              :     return;
   12832              : 
   12833              :   /* Start to resolve a FORALL construct   */
   12834              :   /* Allocate var_expr only at the truly outermost FORALL/DO CONCURRENT level.
   12835              :      forall_save==0 means we're not nested in a FORALL in the current scope,
   12836              :      but nvar==0 ensures we're not nested in a parent scope either (prevents
   12837              :      double allocation when FORALL is nested inside DO CONCURRENT).  */
   12838         2271 :   if (forall_save == 0 && nvar == 0)
   12839              :     {
   12840              :       /* Count the total number of FORALL indices in the nested FORALL
   12841              :          construct in order to allocate the VAR_EXPR with proper size.  */
   12842         2177 :       total_var = gfc_count_forall_iterators (code);
   12843              : 
   12844              :       /* Allocate VAR_EXPR with NUMBER_OF_FORALL_INDEX elements.  */
   12845         2177 :       var_expr = XCNEWVEC (gfc_expr *, total_var);
   12846              :     }
   12847              : 
   12848              :   /* The information about FORALL iterator, including FORALL indices start,
   12849              :      end and stride.  An outer FORALL indice cannot appear in start, end or
   12850              :      stride.  Check for a shadow index-name.  */
   12851         6460 :   for (fa = code->ext.concur.forall_iterator; fa; fa = fa->next)
   12852              :     {
   12853              :       /* Fortran 2008: C738 (R753).  */
   12854         4189 :       if (fa->var->ref && fa->var->ref->type == REF_ARRAY)
   12855              :         {
   12856            2 :           gfc_error ("FORALL index-name at %L must be a scalar variable "
   12857              :                      "of type integer", &fa->var->where);
   12858            2 :           continue;
   12859              :         }
   12860              : 
   12861              :       /* Check if any outer FORALL index name is the same as the current
   12862              :          one.  Skip this check if the iterator is a shadow variable (from
   12863              :          DO CONCURRENT type spec) which may not have a symtree yet.  */
   12864         7198 :       for (i = 0; i < nvar; i++)
   12865              :         {
   12866         3011 :           if (fa->var && fa->var->symtree && var_expr[i] && var_expr[i]->symtree
   12867         3011 :               && fa->var->symtree->n.sym == var_expr[i]->symtree->n.sym)
   12868            0 :             gfc_error ("An outer FORALL construct already has an index "
   12869              :                         "with this name %L", &fa->var->where);
   12870              :         }
   12871              : 
   12872         4187 :       if (fa->shadow)
   12873           72 :         shadow = true;
   12874              : 
   12875              :       /* Record the current FORALL index.  */
   12876         4187 :       var_expr[nvar] = gfc_copy_expr (fa->var);
   12877              : 
   12878         4187 :       nvar++;
   12879              : 
   12880              :       /* No memory leak.  */
   12881         4187 :       gcc_assert (nvar <= total_var);
   12882              :     }
   12883              : 
   12884              :   /* Need to walk the code and replace references to the index-name with
   12885              :      references to the shadow index-name. This must be done BEFORE resolving
   12886              :      the body so that resolution uses the correct shadow variables.  */
   12887         2271 :   if (shadow)
   12888              :     {
   12889              :       /* Walk the FORALL/DO CONCURRENT body and replace references to shadowed variables.  */
   12890          150 :       for (fa = code->ext.concur.forall_iterator; fa; fa = fa->next)
   12891              :         {
   12892           78 :           if (fa->shadow)
   12893              :             {
   12894           72 :               gfc_symtree *shadow_st;
   12895           72 :               const char *shadow_name_str;
   12896           72 :               char *outer_name;
   12897              : 
   12898              :               /* fa->var now points to the shadow variable "_name".  */
   12899           72 :               shadow_name_str = fa->var->symtree->name;
   12900           72 :               shadow_st = fa->var->symtree;
   12901              : 
   12902           72 :               if (shadow_name_str[0] != '_')
   12903            0 :                 gfc_internal_error ("Expected shadow variable name to start with _");
   12904              : 
   12905           72 :               outer_name = (char *) alloca (strlen (shadow_name_str));
   12906           72 :               strcpy (outer_name, shadow_name_str + 1);
   12907              : 
   12908              :               /* Find the ITERATOR symbol in the current namespace.
   12909              :                  This is the local DO CONCURRENT variable that body expressions reference.  */
   12910           72 :               gfc_symtree *iter_st = gfc_find_symtree (ns->sym_root, outer_name);
   12911              : 
   12912           72 :               if (!iter_st)
   12913              :                 /* No iterator variable found - this shouldn't happen */
   12914            0 :                 continue;
   12915              : 
   12916           72 :               gfc_symbol *iter_sym = iter_st->n.sym;
   12917              : 
   12918              :               /* Walk the FORALL/DO CONCURRENT body and replace all references.  */
   12919           72 :               if (code->block && code->block->next)
   12920           72 :                 gfc_replace_forall_variable (&code->block->next, iter_sym, shadow_st);
   12921              :             }
   12922              :         }
   12923              :     }
   12924              : 
   12925              :   /* Resolve the FORALL body.  */
   12926         2271 :   gfc_resolve_forall_body (code, nvar, var_expr);
   12927              : 
   12928              :   /* May call gfc_resolve_forall to resolve the inner FORALL loop.  */
   12929         2271 :   gfc_resolve_blocks (code->block, ns);
   12930              : 
   12931         2271 :   tmp = nvar;
   12932         2271 :   nvar = old_nvar;
   12933              :   /* Free only the VAR_EXPRs allocated in this frame.  */
   12934         6458 :   for (i = nvar; i < tmp; i++)
   12935         4187 :      gfc_free_expr (var_expr[i]);
   12936              : 
   12937         2271 :   if (nvar == 0)
   12938              :     {
   12939              :       /* We are in the outermost FORALL construct.  */
   12940         2177 :       gcc_assert (forall_save == 0);
   12941              : 
   12942              :       /* VAR_EXPR is not needed any more.  */
   12943         2177 :       free (var_expr);
   12944         2177 :       total_var = 0;
   12945              :     }
   12946              : }
   12947              : 
   12948              : 
   12949              : /* Resolve a BLOCK construct statement.  */
   12950              : 
   12951              : static void
   12952         8448 : resolve_block_construct (gfc_code* code)
   12953              : {
   12954         8448 :   gfc_namespace *ns = code->ext.block.ns;
   12955              : 
   12956              :   /* For an ASSOCIATE block, the associations (and their targets) will be
   12957              :      resolved by gfc_resolve_symbol, during resolution of the BLOCK's
   12958              :      namespace.  However, marking variables as used ans defined requires
   12959              :      passing ext.block.assoc.  */
   12960         8448 :   gfc_resolve (ns, code->ext.block.assoc);
   12961         8351 : }
   12962              : 
   12963              : /* Mark everything in an association list as used and set if applicable,
   12964              :    respectively.  */
   12965              : 
   12966              : static void
   12967       315246 : mark_assoc_used (gfc_association_list *a)
   12968              : {
   12969       322237 :   while (a != NULL)
   12970              :     {
   12971         6991 :       gfc_symbol *n_sym = a->st->n.sym;
   12972         6991 :       if (n_sym->attr.value_used != VALUE_UNUSED)
   12973         4943 :         gfc_value_used_expr (a->target, n_sym->attr.value_used);
   12974              : 
   12975         6991 :       if (a->variable && n_sym->attr.value_set != VALUE_UNSET)
   12976         1366 :         gfc_expr_set_at (a->target, &n_sym->other_loc, n_sym->attr.value_set);
   12977              : 
   12978         6991 :       a = a->next;
   12979              :     }
   12980       315246 : }
   12981              : 
   12982              : /* Resolve lists of blocks found in IF, SELECT CASE, WHERE, FORALL, GOTO and
   12983              :    DO code nodes.  */
   12984              : 
   12985              : void
   12986       336861 : gfc_resolve_blocks (gfc_code *b, gfc_namespace *ns)
   12987              : {
   12988       336861 :   bool t;
   12989              : 
   12990       685316 :   for (; b; b = b->block)
   12991              :     {
   12992       348455 :       t = gfc_resolve_expr (b->expr1);
   12993       348455 :       if (!gfc_resolve_expr (b->expr2))
   12994            0 :         t = false;
   12995              : 
   12996       348455 :       switch (b->op)
   12997              :         {
   12998       240563 :         case EXEC_IF:
   12999       240563 :           if (t && b->expr1 != NULL
   13000       236231 :               && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank != 0))
   13001            0 :             gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
   13002              :                        &b->expr1->where);
   13003              :           break;
   13004              : 
   13005          770 :         case EXEC_WHERE:
   13006          770 :           if (t
   13007          770 :               && b->expr1 != NULL
   13008          637 :               && (b->expr1->ts.type != BT_LOGICAL || b->expr1->rank == 0))
   13009            0 :             gfc_error ("WHERE/ELSEWHERE clause at %L requires a LOGICAL array",
   13010              :                        &b->expr1->where);
   13011              :           break;
   13012              : 
   13013           76 :         case EXEC_GOTO:
   13014           76 :           resolve_branch (b->label1, b);
   13015           76 :           break;
   13016              : 
   13017            0 :         case EXEC_BLOCK:
   13018            0 :           resolve_block_construct (b);
   13019            0 :           break;
   13020              : 
   13021              :         case EXEC_SELECT:
   13022              :         case EXEC_SELECT_TYPE:
   13023              :         case EXEC_SELECT_RANK:
   13024              :         case EXEC_FORALL:
   13025              :         case EXEC_DO:
   13026              :         case EXEC_DO_WHILE:
   13027              :         case EXEC_DO_CONCURRENT:
   13028              :         case EXEC_CRITICAL:
   13029              :         case EXEC_READ:
   13030              :         case EXEC_WRITE:
   13031              :         case EXEC_IOLENGTH:
   13032              :         case EXEC_WAIT:
   13033              :           break;
   13034              : 
   13035         2697 :         case EXEC_OMP_ATOMIC:
   13036         2697 :         case EXEC_OACC_ATOMIC:
   13037         2697 :           {
   13038              :             /* Verify this before calling gfc_resolve_code, which might
   13039              :                change it.  */
   13040         2697 :             gcc_assert (b->op == EXEC_OMP_ATOMIC
   13041              :                         || (b->next && b->next->op == EXEC_ASSIGN));
   13042              :           }
   13043              :           break;
   13044              : 
   13045              :         case EXEC_OACC_PARALLEL_LOOP:
   13046              :         case EXEC_OACC_PARALLEL:
   13047              :         case EXEC_OACC_KERNELS_LOOP:
   13048              :         case EXEC_OACC_KERNELS:
   13049              :         case EXEC_OACC_SERIAL_LOOP:
   13050              :         case EXEC_OACC_SERIAL:
   13051              :         case EXEC_OACC_DATA:
   13052              :         case EXEC_OACC_HOST_DATA:
   13053              :         case EXEC_OACC_LOOP:
   13054              :         case EXEC_OACC_UPDATE:
   13055              :         case EXEC_OACC_WAIT:
   13056              :         case EXEC_OACC_CACHE:
   13057              :         case EXEC_OACC_ENTER_DATA:
   13058              :         case EXEC_OACC_EXIT_DATA:
   13059              :         case EXEC_OACC_ROUTINE:
   13060              :         case EXEC_OACC_INIT:
   13061              :         case EXEC_OACC_SHUTDOWN:
   13062              :         case EXEC_OACC_SET:
   13063              :         case EXEC_OMP_ALLOCATE:
   13064              :         case EXEC_OMP_ALLOCATORS:
   13065              :         case EXEC_OMP_ASSUME:
   13066              :         case EXEC_OMP_CRITICAL:
   13067              :         case EXEC_OMP_DISPATCH:
   13068              :         case EXEC_OMP_DISTRIBUTE:
   13069              :         case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
   13070              :         case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
   13071              :         case EXEC_OMP_DISTRIBUTE_SIMD:
   13072              :         case EXEC_OMP_DO:
   13073              :         case EXEC_OMP_DO_SIMD:
   13074              :         case EXEC_OMP_ERROR:
   13075              :         case EXEC_OMP_LOOP:
   13076              :         case EXEC_OMP_MASKED:
   13077              :         case EXEC_OMP_MASKED_TASKLOOP:
   13078              :         case EXEC_OMP_MASKED_TASKLOOP_SIMD:
   13079              :         case EXEC_OMP_MASTER:
   13080              :         case EXEC_OMP_MASTER_TASKLOOP:
   13081              :         case EXEC_OMP_MASTER_TASKLOOP_SIMD:
   13082              :         case EXEC_OMP_ORDERED:
   13083              :         case EXEC_OMP_PARALLEL:
   13084              :         case EXEC_OMP_PARALLEL_DO:
   13085              :         case EXEC_OMP_PARALLEL_DO_SIMD:
   13086              :         case EXEC_OMP_PARALLEL_LOOP:
   13087              :         case EXEC_OMP_PARALLEL_MASKED:
   13088              :         case EXEC_OMP_PARALLEL_MASKED_TASKLOOP:
   13089              :         case EXEC_OMP_PARALLEL_MASKED_TASKLOOP_SIMD:
   13090              :         case EXEC_OMP_PARALLEL_MASTER:
   13091              :         case EXEC_OMP_PARALLEL_MASTER_TASKLOOP:
   13092              :         case EXEC_OMP_PARALLEL_MASTER_TASKLOOP_SIMD:
   13093              :         case EXEC_OMP_PARALLEL_SECTIONS:
   13094              :         case EXEC_OMP_PARALLEL_WORKSHARE:
   13095              :         case EXEC_OMP_SECTIONS:
   13096              :         case EXEC_OMP_SIMD:
   13097              :         case EXEC_OMP_SCOPE:
   13098              :         case EXEC_OMP_SINGLE:
   13099              :         case EXEC_OMP_TARGET:
   13100              :         case EXEC_OMP_TARGET_DATA:
   13101              :         case EXEC_OMP_TARGET_ENTER_DATA:
   13102              :         case EXEC_OMP_TARGET_EXIT_DATA:
   13103              :         case EXEC_OMP_TARGET_PARALLEL:
   13104              :         case EXEC_OMP_TARGET_PARALLEL_DO:
   13105              :         case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
   13106              :         case EXEC_OMP_TARGET_PARALLEL_LOOP:
   13107              :         case EXEC_OMP_TARGET_SIMD:
   13108              :         case EXEC_OMP_TARGET_TEAMS:
   13109              :         case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
   13110              :         case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
   13111              :         case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
   13112              :         case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
   13113              :         case EXEC_OMP_TARGET_TEAMS_LOOP:
   13114              :         case EXEC_OMP_TARGET_UPDATE:
   13115              :         case EXEC_OMP_TASK:
   13116              :         case EXEC_OMP_TASKGROUP:
   13117              :         case EXEC_OMP_TASKLOOP:
   13118              :         case EXEC_OMP_TASKLOOP_SIMD:
   13119              :         case EXEC_OMP_TASKWAIT:
   13120              :         case EXEC_OMP_TASKYIELD:
   13121              :         case EXEC_OMP_TEAMS:
   13122              :         case EXEC_OMP_TEAMS_DISTRIBUTE:
   13123              :         case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
   13124              :         case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
   13125              :         case EXEC_OMP_TEAMS_LOOP:
   13126              :         case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
   13127              :         case EXEC_OMP_TILE:
   13128              :         case EXEC_OMP_UNROLL:
   13129              :         case EXEC_OMP_WORKSHARE:
   13130              :           break;
   13131              : 
   13132            0 :         default:
   13133            0 :           gfc_internal_error ("gfc_resolve_blocks(): Bad block type");
   13134              :         }
   13135       348455 :       gfc_value_used_expr (b->expr1, VALUE_USED);
   13136       348455 :       gfc_value_used_expr (b->expr2, VALUE_USED);
   13137       348455 :       gfc_resolve_code (b->next, ns);
   13138              :     }
   13139       336861 : }
   13140              : 
   13141              : bool
   13142            0 : caf_possible_reallocate (gfc_expr *e)
   13143              : {
   13144            0 :   symbol_attribute caf_attr;
   13145            0 :   gfc_ref *last_arr_ref = nullptr;
   13146              : 
   13147            0 :   caf_attr = gfc_caf_attr (e);
   13148            0 :   if (!caf_attr.codimension || !caf_attr.allocatable || !caf_attr.dimension)
   13149              :     return false;
   13150              : 
   13151              :   /* Only full array refs can indicate a needed reallocation.  */
   13152            0 :   for (gfc_ref *ref = e->ref; ref; ref = ref->next)
   13153            0 :     if (ref->type == REF_ARRAY && ref->u.ar.dimen)
   13154            0 :       last_arr_ref = ref;
   13155              : 
   13156            0 :   return last_arr_ref && last_arr_ref->u.ar.type == AR_FULL;
   13157              : }
   13158              : 
   13159              : /* Does everything to resolve an ordinary assignment.  Returns true
   13160              :    if this is an interface assignment.  */
   13161              : static bool
   13162       289013 : resolve_ordinary_assign (gfc_code *code, gfc_namespace *ns)
   13163              : {
   13164       289013 :   bool rval = false;
   13165       289013 :   gfc_expr *lhs;
   13166       289013 :   gfc_expr *rhs;
   13167       289013 :   int n;
   13168       289013 :   gfc_ref *ref;
   13169       289013 :   symbol_attribute attr;
   13170              : 
   13171       289013 :   if (gfc_extend_assign (code, ns))
   13172              :     {
   13173          924 :       gfc_expr** rhsptr;
   13174              : 
   13175          924 :       if (code->op == EXEC_ASSIGN_CALL)
   13176              :         {
   13177          469 :           lhs = code->ext.actual->expr;
   13178          469 :           rhsptr = &code->ext.actual->next->expr;
   13179              :         }
   13180              :       else
   13181              :         {
   13182          455 :           gfc_actual_arglist* args;
   13183          455 :           gfc_typebound_proc* tbp;
   13184              : 
   13185          455 :           gcc_assert (code->op == EXEC_COMPCALL);
   13186              : 
   13187          455 :           args = code->expr1->value.compcall.actual;
   13188          455 :           lhs = args->expr;
   13189          455 :           rhsptr = &args->next->expr;
   13190              : 
   13191          455 :           tbp = code->expr1->value.compcall.tbp;
   13192          455 :           gcc_assert (!tbp->is_generic);
   13193              :         }
   13194              : 
   13195              :       /* Make a temporary rhs when there is a default initializer
   13196              :          and rhs is the same symbol as the lhs.  */
   13197          924 :       if ((*rhsptr)->expr_type == EXPR_VARIABLE
   13198          513 :             && (*rhsptr)->symtree->n.sym->ts.type == BT_DERIVED
   13199          442 :             && gfc_has_default_initializer ((*rhsptr)->symtree->n.sym->ts.u.derived)
   13200         1218 :             && (lhs->symtree->n.sym == (*rhsptr)->symtree->n.sym))
   13201           60 :         *rhsptr = gfc_get_parentheses (*rhsptr);
   13202              : 
   13203              :       return true;
   13204              :     }
   13205              : 
   13206       288089 :   lhs = code->expr1;
   13207       288089 :   rhs = code->expr2;
   13208              : 
   13209       288089 :   if ((lhs->symtree->n.sym->ts.type == BT_DERIVED
   13210       267396 :        || lhs->symtree->n.sym->ts.type == BT_CLASS)
   13211        23516 :       && !lhs->symtree->n.sym->attr.proc_pointer
   13212       311605 :       && gfc_expr_attr (lhs).proc_pointer)
   13213              :     {
   13214            1 :       gfc_error ("Variable in the ordinary assignment at %L is a procedure "
   13215              :                  "pointer component",
   13216              :                  &lhs->where);
   13217            1 :       return false;
   13218              :     }
   13219              : 
   13220       339717 :   if ((gfc_numeric_ts (&lhs->ts) || lhs->ts.type == BT_LOGICAL)
   13221       251971 :       && rhs->ts.type == BT_CHARACTER
   13222       288481 :       && (rhs->expr_type != EXPR_CONSTANT || !flag_dec_char_conversions))
   13223              :     {
   13224              :       /* Use of -fdec-char-conversions allows assignment of character data
   13225              :          to non-character variables.  This not permitted for nonconstant
   13226              :          strings.  */
   13227           29 :       gfc_error ("Cannot convert %s to %s at %L", gfc_typename (rhs),
   13228              :                  gfc_typename (lhs), &rhs->where);
   13229           29 :       return false;
   13230              :     }
   13231              : 
   13232       288059 :   if (flag_unsigned && gfc_invalid_unsigned_ops (lhs, rhs))
   13233              :     {
   13234            0 :       gfc_error ("Cannot assign %s to %s at %L", gfc_typename (rhs),
   13235              :                    gfc_typename (lhs), &rhs->where);
   13236            0 :       return false;
   13237              :     }
   13238              : 
   13239              :   /* Handle the case of a BOZ literal on the RHS.  */
   13240       288059 :   if (rhs->ts.type == BT_BOZ)
   13241              :     {
   13242            3 :       if (gfc_invalid_boz ("BOZ literal constant at %L is neither a DATA "
   13243              :                            "statement value nor an actual argument of "
   13244              :                            "INT/REAL/DBLE/CMPLX intrinsic subprogram",
   13245              :                            &rhs->where))
   13246              :         return false;
   13247              : 
   13248            1 :       switch (lhs->ts.type)
   13249              :         {
   13250            0 :         case BT_INTEGER:
   13251            0 :           if (!gfc_boz2int (rhs, lhs->ts.kind))
   13252              :             return false;
   13253              :           break;
   13254            1 :         case BT_REAL:
   13255            1 :           if (!gfc_boz2real (rhs, lhs->ts.kind))
   13256              :             return false;
   13257              :           break;
   13258            0 :         default:
   13259            0 :           gfc_error ("Invalid use of BOZ literal constant at %L", &rhs->where);
   13260            0 :           return false;
   13261              :         }
   13262              :     }
   13263              : 
   13264       288057 :   if (lhs->ts.type == BT_CHARACTER && warn_character_truncation)
   13265              :     {
   13266           67 :       HOST_WIDE_INT llen = 0, rlen = 0;
   13267           67 :       if (lhs->ts.u.cl != NULL
   13268           67 :             && lhs->ts.u.cl->length != NULL
   13269           56 :             && lhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
   13270           56 :         llen = gfc_mpz_get_hwi (lhs->ts.u.cl->length->value.integer);
   13271              : 
   13272           67 :       if (rhs->expr_type == EXPR_CONSTANT)
   13273           29 :         rlen = rhs->value.character.length;
   13274              : 
   13275           38 :       else if (rhs->ts.u.cl != NULL
   13276           38 :                  && rhs->ts.u.cl->length != NULL
   13277           35 :                  && rhs->ts.u.cl->length->expr_type == EXPR_CONSTANT)
   13278           35 :         rlen = gfc_mpz_get_hwi (rhs->ts.u.cl->length->value.integer);
   13279              : 
   13280           67 :       if (rlen && llen && rlen > llen)
   13281           28 :         gfc_warning_now (OPT_Wcharacter_truncation,
   13282              :                          "CHARACTER expression will be truncated "
   13283              :                          "in assignment (%wd/%wd) at %L",
   13284              :                          llen, rlen, &code->loc);
   13285              :     }
   13286              : 
   13287              :   /* Ensure that a vector index expression for the lvalue is evaluated
   13288              :      to a temporary if the lvalue symbol is referenced in it.  */
   13289       288057 :   if (lhs->rank)
   13290              :     {
   13291       114659 :       for (ref = lhs->ref; ref; ref= ref->next)
   13292        61358 :         if (ref->type == REF_ARRAY)
   13293              :           {
   13294       134736 :             for (n = 0; n < ref->u.ar.dimen; n++)
   13295        79579 :               if (ref->u.ar.dimen_type[n] == DIMEN_VECTOR
   13296        79809 :                   && gfc_find_sym_in_expr (lhs->symtree->n.sym,
   13297          230 :                                            ref->u.ar.start[n]))
   13298           14 :                 ref->u.ar.start[n]
   13299           14 :                         = gfc_get_parentheses (ref->u.ar.start[n]);
   13300              :           }
   13301              :     }
   13302              : 
   13303       288057 :   if (gfc_pure (NULL))
   13304              :     {
   13305         3609 :       if (lhs->ts.type == BT_DERIVED
   13306          136 :             && lhs->expr_type == EXPR_VARIABLE
   13307          136 :             && lhs->ts.u.derived->attr.pointer_comp
   13308            4 :             && rhs->expr_type == EXPR_VARIABLE
   13309         3612 :             && (gfc_impure_variable (rhs->symtree->n.sym)
   13310            2 :                 || gfc_is_coindexed (rhs)))
   13311              :         {
   13312              :           /* F2008, C1283.  */
   13313            2 :           if (gfc_is_coindexed (rhs))
   13314            1 :             gfc_error ("Coindexed expression at %L is assigned to "
   13315              :                         "a derived type variable with a POINTER "
   13316              :                         "component in a PURE procedure",
   13317              :                         &rhs->where);
   13318              :           else
   13319              :           /* F2008, C1283 (4).  */
   13320            1 :             gfc_error ("In a pure subprogram an INTENT(IN) dummy argument "
   13321              :                         "shall not be used as the expr at %L of an intrinsic "
   13322              :                         "assignment statement in which the variable is of a "
   13323              :                         "derived type if the derived type has a pointer "
   13324              :                         "component at any level of component selection.",
   13325              :                         &rhs->where);
   13326              :           return rval;
   13327              :         }
   13328              : 
   13329              :       /* Fortran 2008, C1283.  */
   13330         3607 :       if (gfc_is_coindexed (lhs))
   13331              :         {
   13332            1 :           gfc_error ("Assignment to coindexed variable at %L in a PURE "
   13333              :                      "procedure", &rhs->where);
   13334            1 :           return rval;
   13335              :         }
   13336              :     }
   13337              : 
   13338       288054 :   if (gfc_implicit_pure (NULL))
   13339              :     {
   13340         7498 :       if (lhs->expr_type == EXPR_VARIABLE
   13341         7498 :             && lhs->symtree->n.sym != gfc_current_ns->proc_name
   13342         5364 :             && lhs->symtree->n.sym->ns != gfc_current_ns)
   13343          256 :         gfc_unset_implicit_pure (NULL);
   13344              : 
   13345         7498 :       if (lhs->ts.type == BT_DERIVED
   13346          366 :             && lhs->expr_type == EXPR_VARIABLE
   13347          366 :             && lhs->ts.u.derived->attr.pointer_comp
   13348            7 :             && rhs->expr_type == EXPR_VARIABLE
   13349         7505 :             && (gfc_impure_variable (rhs->symtree->n.sym)
   13350            7 :                 || gfc_is_coindexed (rhs)))
   13351            0 :         gfc_unset_implicit_pure (NULL);
   13352              : 
   13353              :       /* Fortran 2008, C1283.  */
   13354         7498 :       if (gfc_is_coindexed (lhs))
   13355            0 :         gfc_unset_implicit_pure (NULL);
   13356              :     }
   13357              : 
   13358              :   /* F2008, 7.2.1.2.  */
   13359       288054 :   attr = gfc_expr_attr (lhs);
   13360       288054 :   if (lhs->ts.type == BT_CLASS && attr.allocatable)
   13361              :     {
   13362         1036 :       if (attr.codimension)
   13363              :         {
   13364            1 :           gfc_error ("Assignment to polymorphic coarray at %L is not "
   13365              :                      "permitted", &lhs->where);
   13366            1 :           return false;
   13367              :         }
   13368         1035 :       if (!gfc_notify_std (GFC_STD_F2008, "Assignment to an allocatable "
   13369              :                            "polymorphic variable at %L", &lhs->where))
   13370              :         return false;
   13371         1034 :       if (!flag_realloc_lhs)
   13372              :         {
   13373            1 :           gfc_error ("Assignment to an allocatable polymorphic variable at %L "
   13374              :                      "requires %<-frealloc-lhs%>", &lhs->where);
   13375            1 :           return false;
   13376              :         }
   13377              :     }
   13378       287018 :   else if (lhs->ts.type == BT_CLASS)
   13379              :     {
   13380            9 :       gfc_error ("Nonallocatable variable must not be polymorphic in intrinsic "
   13381              :                  "assignment at %L - check that there is a matching specific "
   13382              :                  "subroutine for %<=%> operator", &lhs->where);
   13383            9 :       return false;
   13384              :     }
   13385              : 
   13386       288042 :   bool lhs_coindexed = gfc_is_coindexed (lhs);
   13387              : 
   13388              :   /* F2008, Section 7.2.1.2.  */
   13389       288042 :   if (lhs_coindexed && gfc_has_ultimate_allocatable (lhs))
   13390              :     {
   13391            1 :       gfc_error ("Coindexed variable must not have an allocatable ultimate "
   13392              :                  "component in assignment at %L", &lhs->where);
   13393            1 :       return false;
   13394              :     }
   13395              : 
   13396              :   /* Assign the 'data' of a class object to a derived type.  */
   13397       288041 :   if (lhs->ts.type == BT_DERIVED
   13398         7424 :       && rhs->ts.type == BT_CLASS
   13399          180 :       && (rhs->expr_type != EXPR_ARRAY
   13400          174 :           && rhs->expr_type != EXPR_OP))
   13401          168 :     gfc_add_data_component (rhs);
   13402              : 
   13403              :   /* Make sure there is a vtable and, in particular, a _copy for the
   13404              :      rhs type.  */
   13405       288041 :   if (lhs->ts.type == BT_CLASS && rhs->ts.type != BT_CLASS)
   13406          622 :     gfc_find_vtab (&rhs->ts);
   13407              : 
   13408       288041 :   gfc_check_assign (lhs, rhs, 1);
   13409              : 
   13410       288041 :   return false;
   13411              : }
   13412              : 
   13413              : 
   13414              : /* Add a component reference onto an expression.  */
   13415              : 
   13416              : static void
   13417          647 : add_comp_ref (gfc_expr *e, gfc_component *c)
   13418              : {
   13419          647 :   gfc_ref **ref;
   13420          647 :   ref = &(e->ref);
   13421          871 :   while (*ref)
   13422          224 :     ref = &((*ref)->next);
   13423          647 :   *ref = gfc_get_ref ();
   13424          647 :   (*ref)->type = REF_COMPONENT;
   13425          647 :   (*ref)->u.c.sym = e->ts.u.derived;
   13426          647 :   (*ref)->u.c.component = c;
   13427          647 :   e->ts = c->ts;
   13428              : 
   13429              :   /* Add a full array ref, as necessary.  */
   13430          647 :   if (c->as)
   13431              :     {
   13432           84 :       gfc_add_full_array_ref (e, c->as);
   13433           84 :       e->rank = c->as->rank;
   13434           84 :       e->corank = c->as->corank;
   13435              :     }
   13436          647 : }
   13437              : 
   13438              : 
   13439              : /* Build an assignment.  Keep the argument 'op' for future use, so that
   13440              :    pointer assignments can be made.  */
   13441              : 
   13442              : static gfc_code *
   13443          976 : build_assignment (gfc_exec_op op, gfc_expr *expr1, gfc_expr *expr2,
   13444              :                   gfc_component *comp1, gfc_component *comp2, locus loc)
   13445              : {
   13446          976 :   gfc_code *this_code;
   13447              : 
   13448          976 :   this_code = gfc_get_code (op);
   13449          976 :   this_code->next = NULL;
   13450          976 :   this_code->expr1 = gfc_copy_expr (expr1);
   13451          976 :   this_code->expr2 = gfc_copy_expr (expr2);
   13452          976 :   this_code->loc = loc;
   13453          976 :   if (comp1 && comp2)
   13454              :     {
   13455          288 :       add_comp_ref (this_code->expr1, comp1);
   13456          288 :       add_comp_ref (this_code->expr2, comp2);
   13457              :     }
   13458              : 
   13459          976 :   return this_code;
   13460              : }
   13461              : 
   13462              : 
   13463              : /* Makes a temporary variable expression based on the characteristics of
   13464              :    a given variable expression.  If allocatable is set, the temporary is
   13465              :    unconditionally allocatable*/
   13466              : 
   13467              : static gfc_expr*
   13468          464 : get_temp_from_expr (gfc_expr *e, gfc_namespace *ns,
   13469              :                     bool allocatable = false)
   13470              : {
   13471          464 :   static int serial = 0;
   13472          464 :   char name[GFC_MAX_SYMBOL_LEN];
   13473          464 :   gfc_symtree *tmp;
   13474          464 :   gfc_array_spec *as;
   13475          464 :   gfc_array_ref *aref;
   13476          464 :   gfc_ref *ref;
   13477              : 
   13478          464 :   sprintf (name, GFC_PREFIX("DA%d"), serial++);
   13479          464 :   gfc_get_sym_tree (name, ns, &tmp, false);
   13480          464 :   gfc_add_type (tmp->n.sym, &e->ts, NULL);
   13481              : 
   13482          464 :   if (e->expr_type == EXPR_CONSTANT && e->ts.type == BT_CHARACTER)
   13483            0 :     tmp->n.sym->ts.u.cl->length = gfc_get_int_expr (gfc_charlen_int_kind,
   13484              :                                                     NULL,
   13485            0 :                                                     e->value.character.length);
   13486              : 
   13487          464 :   as = NULL;
   13488          464 :   ref = NULL;
   13489          464 :   aref = NULL;
   13490              : 
   13491              :   /* Obtain the arrayspec for the temporary.  */
   13492          464 :    if (e->rank && e->expr_type != EXPR_ARRAY
   13493              :        && e->expr_type != EXPR_FUNCTION
   13494              :        && e->expr_type != EXPR_OP)
   13495              :     {
   13496           52 :       aref = gfc_find_array_ref (e);
   13497           52 :       if (e->expr_type == EXPR_VARIABLE
   13498           52 :           && e->symtree->n.sym->as == aref->as)
   13499              :         as = aref->as;
   13500              :       else
   13501              :         {
   13502            0 :           for (ref = e->ref; ref; ref = ref->next)
   13503            0 :             if (ref->type == REF_COMPONENT
   13504            0 :                 && ref->u.c.component->as == aref->as)
   13505              :               {
   13506              :                 as = aref->as;
   13507              :                 break;
   13508              :               }
   13509              :         }
   13510              :     }
   13511              : 
   13512              :   /* Add the attributes and the arrayspec to the temporary.  */
   13513          464 :   tmp->n.sym->attr = gfc_expr_attr (e);
   13514          464 :   tmp->n.sym->attr.function = 0;
   13515          464 :   tmp->n.sym->attr.proc_pointer = 0;
   13516          464 :   tmp->n.sym->attr.result = 0;
   13517          464 :   tmp->n.sym->attr.flavor = FL_VARIABLE;
   13518          464 :   tmp->n.sym->attr.dummy = 0;
   13519          464 :   tmp->n.sym->attr.use_assoc = 0;
   13520          464 :   tmp->n.sym->attr.intent = INTENT_UNKNOWN;
   13521              : 
   13522              : 
   13523          464 :   if (as && !allocatable)
   13524              :     {
   13525           52 :       tmp->n.sym->as = gfc_copy_array_spec (as);
   13526           52 :       if (!ref)
   13527           52 :         ref = e->ref;
   13528           52 :       if (as->type == AS_DEFERRED)
   13529           46 :         tmp->n.sym->attr.allocatable = 1;
   13530              :     }
   13531          412 :   else if ((e->rank || e->corank)
   13532          130 :            && (e->expr_type == EXPR_ARRAY || e->expr_type == EXPR_FUNCTION
   13533           24 :                || e->expr_type == EXPR_OP || allocatable))
   13534              :     {
   13535          130 :       tmp->n.sym->as = gfc_get_array_spec ();
   13536          130 :       tmp->n.sym->as->type = AS_DEFERRED;
   13537          130 :       tmp->n.sym->as->rank = e->rank;
   13538          130 :       tmp->n.sym->as->corank = e->corank;
   13539          130 :       tmp->n.sym->attr.allocatable = 1;
   13540          130 :       tmp->n.sym->attr.dimension = e->rank ? 1 : 0;
   13541          260 :       tmp->n.sym->attr.codimension = e->corank ? 1 : 0;
   13542              :     }
   13543              :   else
   13544          282 :     tmp->n.sym->attr.dimension = 0;
   13545              : 
   13546          464 :   gfc_set_sym_referenced (tmp->n.sym);
   13547          464 :   gfc_commit_symbol (tmp->n.sym);
   13548          464 :   e = gfc_lval_expr_from_sym (tmp->n.sym);
   13549              : 
   13550              :   /* Should the lhs be a section, use its array ref for the
   13551              :      temporary expression.  */
   13552          464 :   if (aref && aref->type != AR_FULL && !allocatable)
   13553              :     {
   13554            6 :       gfc_free_ref_list (e->ref);
   13555            6 :       e->ref = gfc_copy_ref (ref);
   13556              :     }
   13557          464 :   return e;
   13558              : }
   13559              : 
   13560              : 
   13561              : /* Helper function to take an argument in a subroutine call with a dependency
   13562              :    on another argument, copy it to an allocatable temporary and use the
   13563              :    temporary in the call expression. The new code is embedded in a block to
   13564              :    ensure local, automatic deallocation.  */
   13565              : 
   13566              : static void
   13567           36 : add_temp_assign_before_call (gfc_code *code, gfc_namespace *ns,
   13568              :                              gfc_expr **rhsptr)
   13569              : {
   13570           36 :   gfc_namespace *block_ns;
   13571           36 :   gfc_expr *tmp_var;
   13572              : 
   13573              :   /* Wrap the new code in a block so that the temporary is deallocated.  */
   13574           36 :   block_ns = gfc_build_block_ns (ns);
   13575              : 
   13576              :   /* As it stands, the block_ns does not not stand up to resolution because the
   13577              :      the assignment would be converted to a call and, in any case, the modified
   13578              :      call fails in gfc_check_conformance.  */
   13579           36 :   block_ns->resolved = 1;
   13580              : 
   13581              :   /* Assign the original expression to the temporary.  */
   13582           36 :   tmp_var = get_temp_from_expr (*rhsptr, block_ns, true);
   13583           72 :   block_ns->code = build_assignment (EXEC_ASSIGN, tmp_var, *rhsptr,
   13584           36 :                                      NULL, NULL, (*rhsptr)->where);
   13585              : 
   13586              :   /* Transfer the call to the block and terminate block code.  */
   13587           36 :   *rhsptr = gfc_copy_expr (tmp_var);
   13588           36 :   block_ns->code->next = gfc_get_code (EXEC_NOP);
   13589           36 :   *(block_ns->code->next) = *code;
   13590           36 :   block_ns->code->next->next = NULL;
   13591              : 
   13592              :   /* Convert the original code to execute the block.  */
   13593           36 :   code->op = EXEC_BLOCK;
   13594           36 :   code->ext.block.ns = block_ns;
   13595           36 :   code->ext.block.assoc = NULL;
   13596           36 :   code->expr1 = code->expr2 = NULL;
   13597           36 : }
   13598              : 
   13599              : 
   13600              : /* Add one line of code to the code chain, making sure that 'head' and
   13601              :    'tail' are appropriately updated.  */
   13602              : 
   13603              : static void
   13604          650 : add_code_to_chain (gfc_code **this_code, gfc_code **head, gfc_code **tail)
   13605              : {
   13606          650 :   gcc_assert (this_code);
   13607          650 :   if (*head == NULL)
   13608          302 :     *head = *tail = *this_code;
   13609              :   else
   13610          348 :     *tail = gfc_append_code (*tail, *this_code);
   13611          650 :   *this_code = NULL;
   13612          650 : }
   13613              : 
   13614              : 
   13615              : /* Generate a final call from a variable expression  */
   13616              : 
   13617              : static void
   13618           81 : generate_final_call (gfc_expr *tmp_expr, gfc_code **head, gfc_code **tail)
   13619              : {
   13620           81 :   gfc_code *this_code;
   13621           81 :   gfc_expr *final_expr = NULL;
   13622           81 :   gfc_expr *size_expr;
   13623           81 :   gfc_expr *fini_coarray;
   13624              : 
   13625           81 :   gcc_assert (tmp_expr->expr_type == EXPR_VARIABLE);
   13626           81 :   if (!gfc_is_finalizable (tmp_expr->ts.u.derived, &final_expr) || !final_expr)
   13627           75 :     return;
   13628              : 
   13629              :   /* Now generate the finalizer call.  */
   13630            6 :   this_code = gfc_get_code (EXEC_CALL);
   13631            6 :   this_code->symtree = final_expr->symtree;
   13632            6 :   this_code->resolved_sym = final_expr->symtree->n.sym;
   13633              : 
   13634              :   //* Expression to be finalized  */
   13635            6 :   this_code->ext.actual = gfc_get_actual_arglist ();
   13636            6 :   this_code->ext.actual->expr = gfc_copy_expr (tmp_expr);
   13637              : 
   13638              :   /* size_expr = STORAGE_SIZE (...) / NUMERIC_STORAGE_SIZE.  */
   13639            6 :   this_code->ext.actual->next = gfc_get_actual_arglist ();
   13640            6 :   size_expr = gfc_get_expr ();
   13641            6 :   size_expr->where = gfc_current_locus;
   13642            6 :   size_expr->expr_type = EXPR_OP;
   13643            6 :   size_expr->value.op.op = INTRINSIC_DIVIDE;
   13644            6 :   size_expr->value.op.op1
   13645           12 :         = gfc_build_intrinsic_call (gfc_current_ns, GFC_ISYM_STORAGE_SIZE,
   13646              :                                     "storage_size", gfc_current_locus, 2,
   13647            6 :                                     gfc_lval_expr_from_sym (tmp_expr->symtree->n.sym),
   13648              :                                     gfc_get_int_expr (gfc_index_integer_kind,
   13649              :                                                       NULL, 0));
   13650            6 :   size_expr->value.op.op2 = gfc_get_int_expr (gfc_index_integer_kind, NULL,
   13651              :                                               gfc_character_storage_size);
   13652            6 :   size_expr->value.op.op1->ts = size_expr->value.op.op2->ts;
   13653            6 :   size_expr->ts = size_expr->value.op.op1->ts;
   13654            6 :   this_code->ext.actual->next->expr = size_expr;
   13655              : 
   13656              :   /* fini_coarray  */
   13657            6 :   this_code->ext.actual->next->next = gfc_get_actual_arglist ();
   13658            6 :   fini_coarray = gfc_get_constant_expr (BT_LOGICAL, gfc_default_logical_kind,
   13659              :                                         &tmp_expr->where);
   13660            6 :   fini_coarray->value.logical = (int)gfc_expr_attr (tmp_expr).codimension;
   13661            6 :   this_code->ext.actual->next->next->expr = fini_coarray;
   13662              : 
   13663            6 :   add_code_to_chain (&this_code, head, tail);
   13664              : 
   13665              : }
   13666              : 
   13667              : /* Counts the potential number of part array references that would
   13668              :    result from resolution of typebound defined assignments.  */
   13669              : 
   13670              : 
   13671              : static int
   13672          249 : nonscalar_typebound_assign (gfc_symbol *derived, int depth)
   13673              : {
   13674          249 :   gfc_component *c;
   13675          249 :   int c_depth = 0, t_depth;
   13676              : 
   13677          596 :   for (c= derived->components; c; c = c->next)
   13678              :     {
   13679          347 :       if ((!gfc_bt_struct (c->ts.type)
   13680          267 :             || c->attr.pointer
   13681          267 :             || c->attr.allocatable
   13682          266 :             || c->attr.proc_pointer_comp
   13683          266 :             || c->attr.class_pointer
   13684          266 :             || c->attr.proc_pointer)
   13685           81 :           && !c->attr.defined_assign_comp)
   13686           81 :         continue;
   13687              : 
   13688          266 :       if (c->as && c_depth == 0)
   13689          266 :         c_depth = 1;
   13690              : 
   13691          266 :       if (c->ts.u.derived->attr.defined_assign_comp)
   13692          110 :         t_depth = nonscalar_typebound_assign (c->ts.u.derived,
   13693              :                                               c->as ? 1 : 0);
   13694              :       else
   13695              :         t_depth = 0;
   13696              : 
   13697          266 :       c_depth = t_depth > c_depth ? t_depth : c_depth;
   13698              :     }
   13699          249 :   return depth + c_depth;
   13700              : }
   13701              : 
   13702              : 
   13703              : /* Implement 10.2.1.3 paragraph 13 of the F18 standard:
   13704              :    "An intrinsic assignment where the variable is of derived type is performed
   13705              :     as if each component of the variable were assigned from the corresponding
   13706              :     component of expr using pointer assignment (10.2.2) for each pointer
   13707              :     component, defined assignment for each nonpointer nonallocatable component
   13708              :     of a type that has a type-bound defined assignment consistent with the
   13709              :     component, intrinsic assignment for each other nonpointer nonallocatable
   13710              :     component, and intrinsic assignment for each allocated coarray component.
   13711              :     For unallocated coarray components, the corresponding component of the
   13712              :     variable shall be unallocated. For a noncoarray allocatable component the
   13713              :     following sequence of operations is applied.
   13714              :         (1) If the component of the variable is allocated, it is deallocated.
   13715              :         (2) If the component of the value of expr is allocated, the
   13716              :             corresponding component of the variable is allocated with the same
   13717              :             dynamic type and type parameters as the component of the value of
   13718              :             expr. If it is an array, it is allocated with the same bounds. The
   13719              :             value of the component of the value of expr is then assigned to the
   13720              :             corresponding component of the variable using defined assignment if
   13721              :             the declared type of the component has a type-bound defined
   13722              :             assignment consistent with the component, and intrinsic assignment
   13723              :             for the dynamic type of that component otherwise."
   13724              : 
   13725              :    The pointer assignments are taken care of by the intrinsic assignment of the
   13726              :    structure itself.  This function recursively adds defined assignments where
   13727              :    required.  The recursion is accomplished by calling gfc_resolve_code.
   13728              : 
   13729              :    When the lhs in a defined assignment has intent INOUT or is intent OUT
   13730              :    and the component of 'var' is finalizable, we need a temporary for the
   13731              :    lhs.  In pseudo-code for an assignment var = expr:
   13732              : 
   13733              :    ! Confine finalization of temporaries, as far as possible.
   13734              :      Enclose the code for the assignment in a block
   13735              :    ! Only call function 'expr' once.
   13736              :       #if ('expr is not a constant or an variable)
   13737              :         temp_expr = expr
   13738              :         expr = temp_x
   13739              :    ! Do the intrinsic assignment
   13740              :       #if typeof ('var') has a typebound final subroutine
   13741              :         finalize (var)
   13742              :       var = expr
   13743              :    ! Now do the component assignments
   13744              :       #do over derived type components [%cmp]
   13745              :         #if (cmp is a pointer of any kind)
   13746              :           continue
   13747              :         build the assignment
   13748              :         resolve the code
   13749              :         #if the code is a typebound assignment
   13750              :            #if (arg1 is INOUT or finalizable OUT && !t1)
   13751              :              t1 = var
   13752              :              arg1 = t1
   13753              :              deal with allocatation or not of var and this component
   13754              :         #elseif the code is an assignment by itself
   13755              :            #if this component does not need finalization
   13756              :              delete code and continue
   13757              :         #else
   13758              :            remove the leading assignment
   13759              :         #endif
   13760              :         commit the code
   13761              :         #if (t1 and (arg1 is INOUT or finalizable OUT))
   13762              :            var%cmp = t1%cmp
   13763              :       #enddo
   13764              :       put all code chunks involving t1 to the top of the generated code
   13765              :       insert the generated block in place of the original code
   13766              : */
   13767              : 
   13768              : static bool
   13769          393 : is_finalizable_type (gfc_typespec ts)
   13770              : {
   13771          393 :   gfc_component *c;
   13772              : 
   13773          393 :   if (ts.type != BT_DERIVED)
   13774              :     return false;
   13775              : 
   13776              :   /* (1) Check for FINAL subroutines.  */
   13777          393 :   if (ts.u.derived->f2k_derived && ts.u.derived->f2k_derived->finalizers)
   13778              :     return true;
   13779              : 
   13780              :   /* (2) Check for components of finalizable type.  */
   13781          815 :   for (c = ts.u.derived->components; c; c = c->next)
   13782          476 :     if (c->ts.type == BT_DERIVED
   13783          249 :         && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable
   13784          248 :         && c->ts.u.derived->f2k_derived
   13785          248 :         && c->ts.u.derived->f2k_derived->finalizers)
   13786              :       return true;
   13787              : 
   13788              :   return false;
   13789              : }
   13790              : 
   13791              : /* The temporary assignments have to be put on top of the additional
   13792              :    code to avoid the result being changed by the intrinsic assignment.
   13793              :    */
   13794              : static int component_assignment_level = 0;
   13795              : static gfc_code *tmp_head = NULL, *tmp_tail = NULL;
   13796              : static bool finalizable_comp;
   13797              : 
   13798              : static void
   13799          194 : generate_component_assignments (gfc_code **code, gfc_namespace *ns)
   13800              : {
   13801          194 :   gfc_component *comp1, *comp2;
   13802          194 :   gfc_code *this_code = NULL, *head = NULL, *tail = NULL;
   13803          194 :   gfc_code *tmp_code = NULL;
   13804          194 :   gfc_expr *t1 = NULL;
   13805          194 :   gfc_expr *tmp_expr = NULL;
   13806          194 :   int error_count, depth;
   13807          194 :   bool finalizable_lhs;
   13808          194 :   bool use_finalize_only;
   13809              : 
   13810          194 :   gfc_get_errors (NULL, &error_count);
   13811              : 
   13812              :   /* Filter out continuing processing after an error.  */
   13813          194 :   if (error_count
   13814          194 :       || (*code)->expr1->ts.type != BT_DERIVED
   13815          194 :       || (*code)->expr2->ts.type != BT_DERIVED)
   13816          146 :     return;
   13817              : 
   13818              :   /* TODO: Handle more than one part array reference in assignments.  */
   13819          194 :   depth = nonscalar_typebound_assign ((*code)->expr1->ts.u.derived,
   13820          194 :                                       (*code)->expr1->rank ? 1 : 0);
   13821          194 :   if (depth > 1)
   13822              :     {
   13823            6 :       gfc_warning (0, "TODO: type-bound defined assignment(s) at %L not "
   13824              :                    "done because multiple part array references would "
   13825              :                    "occur in intermediate expressions.", &(*code)->loc);
   13826            6 :       return;
   13827              :     }
   13828              : 
   13829          188 :   if (!component_assignment_level)
   13830          140 :     finalizable_comp = true;
   13831              : 
   13832              :   /* Build a block so that function result temporaries are finalized
   13833              :      locally on exiting the rather than enclosing scope.  */
   13834          188 :   if (!component_assignment_level)
   13835              :     {
   13836          140 :       ns = gfc_build_block_ns (ns);
   13837          140 :       tmp_code = gfc_get_code (EXEC_NOP);
   13838          140 :       *tmp_code = **code;
   13839          140 :       tmp_code->next = NULL;
   13840          140 :       (*code)->op = EXEC_BLOCK;
   13841          140 :       (*code)->ext.block.ns = ns;
   13842          140 :       (*code)->ext.block.assoc = NULL;
   13843          140 :       (*code)->expr1 = (*code)->expr2 = NULL;
   13844          140 :       ns->code = tmp_code;
   13845          140 :       code = &ns->code;
   13846              :     }
   13847              : 
   13848          188 :   component_assignment_level++;
   13849              : 
   13850          188 :   finalizable_lhs = is_finalizable_type ((*code)->expr1->ts);
   13851              : 
   13852              :   /* When the lhs is finalized as a whole and none of its components needs the
   13853              :      structure copy to handle it (no pointer or allocatable components), the
   13854              :      copy can be done component by component.  The whole-derived-type assignment
   13855              :      then only finalizes the lhs and a component with a defined assignment keeps
   13856              :      its post-finalization value for the INTENT (OUT) finalization in that
   13857              :      defined assignment.  */
   13858          188 :   use_finalize_only = finalizable_lhs;
   13859          188 :   if (use_finalize_only)
   13860           66 :     for (comp1 = (*code)->expr1->ts.u.derived->components; comp1;
   13861           42 :          comp1 = comp1->next)
   13862           42 :       if (comp1->attr.pointer || comp1->attr.allocatable
   13863           42 :           || comp1->attr.proc_pointer_comp || comp1->attr.class_pointer
   13864           42 :           || comp1->attr.proc_pointer)
   13865              :         {
   13866              :           use_finalize_only = false;
   13867              :           break;
   13868              :         }
   13869              : 
   13870              :   /* Create a temporary so that functions get called only once.  */
   13871          188 :   if ((*code)->expr2->expr_type != EXPR_VARIABLE
   13872          188 :       && (*code)->expr2->expr_type != EXPR_CONSTANT)
   13873              :     {
   13874              :       /* Assign the rhs to the temporary.  */
   13875           81 :       tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
   13876           81 :       if (tmp_expr->symtree->n.sym->attr.pointer)
   13877              :         {
   13878              :           /* Use allocate on assignment for the sake of simplicity. The
   13879              :              temporary must not take on the optional attribute. Assume
   13880              :              that the assignment is guarded by a PRESENT condition if the
   13881              :              lhs is optional.  */
   13882           25 :           tmp_expr->symtree->n.sym->attr.pointer = 0;
   13883           25 :           tmp_expr->symtree->n.sym->attr.optional = 0;
   13884           25 :           tmp_expr->symtree->n.sym->attr.allocatable = 1;
   13885              :         }
   13886          162 :       this_code = build_assignment (EXEC_ASSIGN,
   13887              :                                     tmp_expr, (*code)->expr2,
   13888           81 :                                     NULL, NULL, (*code)->loc);
   13889           81 :       this_code->expr2->must_finalize = 1;
   13890              :       /* Add the code and substitute the rhs expression.  */
   13891           81 :       add_code_to_chain (&this_code, &tmp_head, &tmp_tail);
   13892           81 :       gfc_free_expr ((*code)->expr2);
   13893           81 :       (*code)->expr2 = tmp_expr;
   13894              :     }
   13895              : 
   13896              :   /* Do the intrinsic assignment.  This is not needed if the lhs is one
   13897              :      of the temporaries generated here, since the intrinsic assignment
   13898              :      to the final result already does this.  */
   13899          188 :   if ((*code)->expr1->symtree->n.sym->name[2] != '.')
   13900              :     {
   13901          188 :       if (finalizable_lhs)
   13902           24 :         (*code)->expr1->must_finalize = 1;
   13903          188 :       this_code = build_assignment (EXEC_ASSIGN,
   13904              :                                     (*code)->expr1, (*code)->expr2,
   13905              :                                     NULL, NULL, (*code)->loc);
   13906          188 :       if (use_finalize_only)
   13907           24 :         this_code->expr1->finalize_only = 1;
   13908          188 :       add_code_to_chain (&this_code, &head, &tail);
   13909              :     }
   13910              : 
   13911          188 :   comp1 = (*code)->expr1->ts.u.derived->components;
   13912          188 :   comp2 = (*code)->expr2->ts.u.derived->components;
   13913              : 
   13914          461 :   for (; comp1; comp1 = comp1->next, comp2 = comp2->next)
   13915              :     {
   13916          273 :       bool inout = false;
   13917          273 :       bool finalizable_out = false;
   13918              : 
   13919              :       /* The intrinsic assignment does the right thing for pointers
   13920              :          of all kinds and allocatable components.  */
   13921          273 :       if (!gfc_bt_struct (comp1->ts.type)
   13922          206 :           || comp1->attr.pointer
   13923          206 :           || comp1->attr.allocatable
   13924          205 :           || comp1->attr.proc_pointer_comp
   13925          205 :           || comp1->attr.class_pointer
   13926          205 :           || comp1->attr.proc_pointer)
   13927              :         {
   13928              :           /* With finalize_only the whole-derived-type assignment does not copy
   13929              :              the components, so emit the copy for this one here.  Only plain
   13930              :              components reach this point, since use_finalize_only excludes
   13931              :              pointer and allocatable components.  */
   13932           68 :           if (use_finalize_only)
   13933              :             {
   13934           24 :               this_code = build_assignment (EXEC_ASSIGN,
   13935              :                                             (*code)->expr1, (*code)->expr2,
   13936           12 :                                             comp1, comp2, (*code)->loc);
   13937           12 :               add_code_to_chain (&this_code, &head, &tail);
   13938              :             }
   13939           68 :           continue;
   13940              :         }
   13941              : 
   13942          410 :       finalizable_comp = is_finalizable_type (comp1->ts)
   13943          205 :                          && !finalizable_lhs;
   13944              : 
   13945              :       /* Make an assignment for this component.  */
   13946          410 :       this_code = build_assignment (EXEC_ASSIGN,
   13947              :                                     (*code)->expr1, (*code)->expr2,
   13948          205 :                                     comp1, comp2, (*code)->loc);
   13949              : 
   13950              :       /* Convert the assignment if there is a defined assignment for
   13951              :          this type.  Otherwise, using the call from gfc_resolve_code,
   13952              :          recurse into its components.  */
   13953          205 :       gfc_resolve_code (this_code, ns);
   13954              : 
   13955          205 :       if (this_code->op == EXEC_ASSIGN_CALL)
   13956              :         {
   13957          150 :           gfc_formal_arglist *dummy_args;
   13958          150 :           gfc_symbol *rsym;
   13959              :           /* Check that there is a typebound defined assignment.  If not,
   13960              :              then this must be a module defined assignment.  We cannot
   13961              :              use the defined_assign_comp attribute here because it must
   13962              :              be this derived type that has the defined assignment and not
   13963              :              a parent type.  */
   13964          150 :           if (!(comp1->ts.u.derived->f2k_derived
   13965              :                 && comp1->ts.u.derived->f2k_derived
   13966          150 :                                         ->tb_op[INTRINSIC_ASSIGN]))
   13967              :             {
   13968            1 :               gfc_free_statements (this_code);
   13969            1 :               this_code = NULL;
   13970            1 :               continue;
   13971              :             }
   13972              : 
   13973              :           /* If the first argument of the subroutine has intent INOUT
   13974              :              a temporary must be generated and used instead.  */
   13975          149 :           rsym = this_code->resolved_sym;
   13976          149 :           dummy_args = gfc_sym_get_dummy_args (rsym);
   13977          274 :           finalizable_out = gfc_may_be_finalized (comp1->ts)
   13978           24 :                             && dummy_args
   13979          173 :                             && dummy_args->sym->attr.intent == INTENT_OUT;
   13980          274 :           inout = dummy_args
   13981          274 :                   && dummy_args->sym->attr.intent == INTENT_INOUT;
   13982              :           /* With finalize_only the lhs component keeps its post-finalization
   13983              :              value, so the defined assignment can finalize it directly through
   13984              :              its INTENT (OUT) argument and no temporary is needed.  */
   13985           78 :           if ((inout || (finalizable_out && !use_finalize_only))
   13986           71 :               && !comp1->attr.allocatable)
   13987              :             {
   13988           71 :               gfc_code *temp_code;
   13989           71 :               inout = true;
   13990              : 
   13991              :               /* Build the temporary required for the assignment and put
   13992              :                  it at the head of the generated code.  */
   13993           71 :               if (!t1)
   13994              :                 {
   13995           71 :                   gfc_namespace *tmp_ns = ns;
   13996           71 :                   if (ns->parent && gfc_may_be_finalized (comp1->ts))
   13997            0 :                     tmp_ns = (*code)->expr1->symtree->n.sym->ns;
   13998           71 :                   t1 = get_temp_from_expr ((*code)->expr1, tmp_ns);
   13999           71 :                   t1->symtree->n.sym->attr.artificial = 1;
   14000          142 :                   temp_code = build_assignment (EXEC_ASSIGN,
   14001              :                                                 t1, (*code)->expr1,
   14002           71 :                                 NULL, NULL, (*code)->loc);
   14003              : 
   14004              :                   /* For allocatable LHS, check whether it is allocated.  Note
   14005              :                      that allocatable components with defined assignment are
   14006              :                      not yet support.  See PR 57696.  */
   14007           71 :                   if ((*code)->expr1->symtree->n.sym->attr.allocatable)
   14008              :                     {
   14009           24 :                       gfc_code *block;
   14010           24 :                       gfc_expr *e =
   14011           24 :                         gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
   14012           24 :                       block = gfc_get_code (EXEC_IF);
   14013           24 :                       block->block = gfc_get_code (EXEC_IF);
   14014           24 :                       block->block->expr1
   14015           48 :                           = gfc_build_intrinsic_call (ns,
   14016              :                                     GFC_ISYM_ALLOCATED, "allocated",
   14017           24 :                                     (*code)->loc, 1, e);
   14018           24 :                       block->block->next = temp_code;
   14019           24 :                       temp_code = block;
   14020              :                     }
   14021           71 :                   add_code_to_chain (&temp_code, &tmp_head, &tmp_tail);
   14022              :                 }
   14023              : 
   14024              :               /* Replace the first actual arg with the component of the
   14025              :                  temporary.  */
   14026           71 :               gfc_free_expr (this_code->ext.actual->expr);
   14027           71 :               this_code->ext.actual->expr = gfc_copy_expr (t1);
   14028           71 :               add_comp_ref (this_code->ext.actual->expr, comp1);
   14029              : 
   14030              :               /* If the LHS variable is allocatable and wasn't allocated and
   14031              :                  the temporary is allocatable, pointer assign the address of
   14032              :                  the freshly allocated LHS to the temporary.  */
   14033           71 :               if ((*code)->expr1->symtree->n.sym->attr.allocatable
   14034           71 :                   && gfc_expr_attr ((*code)->expr1).allocatable)
   14035              :                 {
   14036           18 :                   gfc_code *block;
   14037           18 :                   gfc_expr *cond;
   14038              : 
   14039           18 :                   cond = gfc_get_expr ();
   14040           18 :                   cond->ts.type = BT_LOGICAL;
   14041           18 :                   cond->ts.kind = gfc_default_logical_kind;
   14042           18 :                   cond->expr_type = EXPR_OP;
   14043           18 :                   cond->where = (*code)->loc;
   14044           18 :                   cond->value.op.op = INTRINSIC_NOT;
   14045           18 :                   cond->value.op.op1 = gfc_build_intrinsic_call (ns,
   14046              :                                           GFC_ISYM_ALLOCATED, "allocated",
   14047           18 :                                           (*code)->loc, 1, gfc_copy_expr (t1));
   14048           18 :                   block = gfc_get_code (EXEC_IF);
   14049           18 :                   block->block = gfc_get_code (EXEC_IF);
   14050           18 :                   block->block->expr1 = cond;
   14051           36 :                   block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
   14052              :                                         t1, (*code)->expr1,
   14053           18 :                                         NULL, NULL, (*code)->loc);
   14054           18 :                   add_code_to_chain (&block, &head, &tail);
   14055              :                 }
   14056              :             }
   14057              :         }
   14058           55 :       else if (this_code->op == EXEC_ASSIGN && !this_code->next)
   14059              :         {
   14060              :           /* Don't add intrinsic assignments since they are already
   14061              :              effected by the intrinsic assignment of the structure, unless
   14062              :              finalization is required or, with finalize_only, the structure
   14063              :              assignment does not copy the components.  */
   14064            7 :           if (finalizable_comp)
   14065            0 :             this_code->expr1->must_finalize = 1;
   14066            7 :           else if (!use_finalize_only)
   14067              :             {
   14068            1 :               gfc_free_statements (this_code);
   14069            1 :               this_code = NULL;
   14070            1 :               continue;
   14071              :             }
   14072              :         }
   14073              :       else
   14074              :         {
   14075              :           /* Resolution has expanded an assignment of a derived type with
   14076              :              defined assigned components.  Remove the redundant, leading
   14077              :              assignment.  */
   14078           48 :           gcc_assert (this_code->op == EXEC_ASSIGN);
   14079           48 :           gfc_code *tmp = this_code;
   14080           48 :           this_code = this_code->next;
   14081           48 :           tmp->next = NULL;
   14082           48 :           gfc_free_statements (tmp);
   14083              :         }
   14084              : 
   14085          203 :       add_code_to_chain (&this_code, &head, &tail);
   14086              : 
   14087          203 :       if (t1 && (inout || (finalizable_out && !use_finalize_only)))
   14088              :         {
   14089              :           /* Transfer the value to the final result.  */
   14090          142 :           this_code = build_assignment (EXEC_ASSIGN,
   14091              :                                         (*code)->expr1, t1,
   14092           71 :                                         comp1, comp2, (*code)->loc);
   14093           71 :           this_code->expr1->must_finalize = 0;
   14094           71 :           add_code_to_chain (&this_code, &head, &tail);
   14095              :         }
   14096              :     }
   14097              : 
   14098              :   /* Put the temporary assignments at the top of the generated code.  */
   14099          188 :   if (tmp_head && component_assignment_level == 1)
   14100              :     {
   14101          114 :       gfc_append_code (tmp_head, head);
   14102          114 :       head = tmp_head;
   14103          114 :       tmp_head = tmp_tail = NULL;
   14104              :     }
   14105              : 
   14106              :   /* If we did a pointer assignment - thus, we need to ensure that the LHS is
   14107              :      not accidentally deallocated. Hence, nullify t1.  */
   14108           71 :   if (t1 && (*code)->expr1->symtree->n.sym->attr.allocatable
   14109          259 :       && gfc_expr_attr ((*code)->expr1).allocatable)
   14110              :     {
   14111           18 :       gfc_code *block;
   14112           18 :       gfc_expr *cond;
   14113           18 :       gfc_expr *e;
   14114              : 
   14115           18 :       e = gfc_lval_expr_from_sym ((*code)->expr1->symtree->n.sym);
   14116           18 :       cond = gfc_build_intrinsic_call (ns, GFC_ISYM_ASSOCIATED, "associated",
   14117           18 :                                        (*code)->loc, 2, gfc_copy_expr (t1), e);
   14118           18 :       block = gfc_get_code (EXEC_IF);
   14119           18 :       block->block = gfc_get_code (EXEC_IF);
   14120           18 :       block->block->expr1 = cond;
   14121           18 :       block->block->next = build_assignment (EXEC_POINTER_ASSIGN,
   14122              :                                         t1, gfc_get_null_expr (&(*code)->loc),
   14123           18 :                                         NULL, NULL, (*code)->loc);
   14124           18 :       gfc_append_code (tail, block);
   14125           18 :       tail = block;
   14126              :     }
   14127              : 
   14128          188 :   component_assignment_level--;
   14129              : 
   14130              :   /* Make an explicit final call for the function result.  */
   14131          188 :   if (tmp_expr)
   14132           81 :     generate_final_call (tmp_expr, &head, &tail);
   14133              : 
   14134          188 :   if (tmp_code)
   14135              :     {
   14136          140 :       ns->code = head;
   14137          140 :       return;
   14138              :     }
   14139              : 
   14140              :   /* Now attach the remaining code chain to the input code.  Step on
   14141              :      to the end of the new code since resolution is complete.  */
   14142           48 :   gcc_assert ((*code)->op == EXEC_ASSIGN);
   14143           48 :   tail->next = (*code)->next;
   14144              :   /* Overwrite 'code' because this would place the intrinsic assignment
   14145              :      before the temporary for the lhs is created.  */
   14146           48 :   gfc_free_expr ((*code)->expr1);
   14147           48 :   gfc_free_expr ((*code)->expr2);
   14148           48 :   **code = *head;
   14149           48 :   if (head != tail)
   14150           48 :     free (head);
   14151           48 :   *code = tail;
   14152              : }
   14153              : 
   14154              : 
   14155              : /* F2008: Pointer function assignments are of the form:
   14156              :         ptr_fcn (args) = expr
   14157              :    This function breaks these assignments into two statements:
   14158              :         temporary_pointer => ptr_fcn(args)
   14159              :         temporary_pointer = expr  */
   14160              : 
   14161              : static bool
   14162       289261 : resolve_ptr_fcn_assign (gfc_code **code, gfc_namespace *ns)
   14163              : {
   14164       289261 :   gfc_expr *tmp_ptr_expr;
   14165       289261 :   gfc_code *this_code;
   14166       289261 :   gfc_component *comp;
   14167       289261 :   gfc_symbol *s;
   14168              : 
   14169       289261 :   if ((*code)->expr1->expr_type != EXPR_FUNCTION)
   14170              :     return false;
   14171              : 
   14172              :   /* Even if standard does not support this feature, continue to build
   14173              :      the two statements to avoid upsetting frontend_passes.c.  */
   14174          205 :   gfc_notify_std (GFC_STD_F2008, "Pointer procedure assignment at "
   14175              :                   "%L", &(*code)->loc);
   14176              : 
   14177          205 :   comp = gfc_get_proc_ptr_comp ((*code)->expr1);
   14178              : 
   14179          205 :   if (comp)
   14180            6 :     s = comp->ts.interface;
   14181              :   else
   14182          199 :     s = (*code)->expr1->symtree->n.sym;
   14183              : 
   14184          205 :   if (s == NULL || !s->result->attr.pointer)
   14185              :     {
   14186            5 :       gfc_error ("The function result on the lhs of the assignment at "
   14187              :                  "%L must have the pointer attribute.",
   14188            5 :                  &(*code)->expr1->where);
   14189            5 :       (*code)->op = EXEC_NOP;
   14190            5 :       return false;
   14191              :     }
   14192              : 
   14193          200 :   tmp_ptr_expr = get_temp_from_expr ((*code)->expr1, ns);
   14194              : 
   14195              :   /* get_temp_from_expression is set up for ordinary assignments. To that
   14196              :      end, where array bounds are not known, arrays are made allocatable.
   14197              :      Change the temporary to a pointer here.  */
   14198          200 :   tmp_ptr_expr->symtree->n.sym->attr.pointer = 1;
   14199          200 :   tmp_ptr_expr->symtree->n.sym->attr.allocatable = 0;
   14200          200 :   tmp_ptr_expr->where = (*code)->loc;
   14201              : 
   14202              :   /* A new charlen is required to ensure that the variable string length
   14203              :      is different to that of the original lhs for deferred results.  */
   14204          200 :   if (s->result->ts.deferred && tmp_ptr_expr->ts.type == BT_CHARACTER)
   14205              :     {
   14206           60 :       tmp_ptr_expr->ts.u.cl = gfc_get_charlen();
   14207           60 :       tmp_ptr_expr->ts.deferred = 1;
   14208           60 :       tmp_ptr_expr->ts.u.cl->next = gfc_current_ns->cl_list;
   14209           60 :       gfc_current_ns->cl_list = tmp_ptr_expr->ts.u.cl;
   14210           60 :       tmp_ptr_expr->symtree->n.sym->ts.u.cl = tmp_ptr_expr->ts.u.cl;
   14211              :     }
   14212              : 
   14213          400 :   this_code = build_assignment (EXEC_ASSIGN,
   14214              :                                 tmp_ptr_expr, (*code)->expr2,
   14215          200 :                                 NULL, NULL, (*code)->loc);
   14216          200 :   this_code->next = (*code)->next;
   14217          200 :   (*code)->next = this_code;
   14218          200 :   (*code)->op = EXEC_POINTER_ASSIGN;
   14219          200 :   (*code)->expr2 = (*code)->expr1;
   14220          200 :   (*code)->expr1 = tmp_ptr_expr;
   14221              : 
   14222          200 :   return true;
   14223              : }
   14224              : 
   14225              : 
   14226              : /* Deferred character length assignments from an operator expression
   14227              :    require a temporary because the character length of the lhs can
   14228              :    change in the course of the assignment.  */
   14229              : 
   14230              : static bool
   14231       288089 : deferred_op_assign (gfc_code **code, gfc_namespace *ns)
   14232              : {
   14233       288089 :   gfc_expr *tmp_expr;
   14234       288089 :   gfc_code *this_code;
   14235              : 
   14236       288089 :   if (!((*code)->expr1->ts.type == BT_CHARACTER
   14237        27646 :          && (*code)->expr1->ts.deferred && (*code)->expr1->rank
   14238          848 :          && (*code)->expr2->ts.type == BT_CHARACTER
   14239          847 :          && (*code)->expr2->expr_type == EXPR_OP))
   14240              :     return false;
   14241              : 
   14242           34 :   if (!gfc_check_dependency ((*code)->expr1, (*code)->expr2, 1))
   14243              :     return false;
   14244              : 
   14245           28 :   if (gfc_expr_attr ((*code)->expr1).pointer)
   14246              :     return false;
   14247              : 
   14248           22 :   tmp_expr = get_temp_from_expr ((*code)->expr1, ns);
   14249           22 :   tmp_expr->where = (*code)->loc;
   14250              : 
   14251              :   /* A new charlen is required to ensure that the variable string
   14252              :      length is different to that of the original lhs.  */
   14253           22 :   tmp_expr->ts.u.cl = gfc_get_charlen();
   14254           22 :   tmp_expr->symtree->n.sym->ts.u.cl = tmp_expr->ts.u.cl;
   14255           22 :   tmp_expr->ts.u.cl->next = (*code)->expr2->ts.u.cl->next;
   14256           22 :   (*code)->expr2->ts.u.cl->next = tmp_expr->ts.u.cl;
   14257              : 
   14258           22 :   tmp_expr->symtree->n.sym->ts.deferred = 1;
   14259              : 
   14260           22 :   this_code = build_assignment (EXEC_ASSIGN,
   14261           22 :                                 (*code)->expr1,
   14262              :                                 gfc_copy_expr (tmp_expr),
   14263              :                                 NULL, NULL, (*code)->loc);
   14264              : 
   14265           22 :   (*code)->expr1 = tmp_expr;
   14266              : 
   14267           22 :   this_code->next = (*code)->next;
   14268           22 :   (*code)->next = this_code;
   14269              : 
   14270           22 :   return true;
   14271              : }
   14272              : 
   14273              : static void mark_lhs_assignments_set (gfc_code *code);
   14274              : 
   14275              : /* Given a block of code, recursively resolve everything pointed to by this
   14276              :    code block.  */
   14277              : 
   14278              : void
   14279       700397 : gfc_resolve_code (gfc_code *code, gfc_namespace *ns)
   14280              : {
   14281       700397 :   int omp_workshare_save;
   14282       700397 :   int forall_save, do_concurrent_save;
   14283       700397 :   code_stack frame;
   14284       700397 :   bool t;
   14285       700397 :   gfc_code *orig_code = code;
   14286              : 
   14287       700397 :   frame.prev = cs_base;
   14288       700397 :   frame.head = code;
   14289       700397 :   cs_base = &frame;
   14290              : 
   14291       700397 :   find_reachable_labels (code);
   14292              : 
   14293      2553845 :   for (; code; code = code->next)
   14294              :     {
   14295      1153052 :       frame.current = code;
   14296      1153052 :       forall_save = forall_flag;
   14297      1153052 :       do_concurrent_save = gfc_do_concurrent_flag;
   14298              : 
   14299      1153052 :       if (code->op == EXEC_FORALL || code->op == EXEC_DO_CONCURRENT)
   14300              :         {
   14301         2271 :           if (code->op == EXEC_FORALL)
   14302         1993 :             forall_flag = 1;
   14303          278 :           else if (code->op == EXEC_DO_CONCURRENT)
   14304          278 :             gfc_do_concurrent_flag = 1;
   14305         2271 :           gfc_resolve_forall (code, ns, forall_save);
   14306         2271 :           if (code->op == EXEC_FORALL)
   14307         1993 :             forall_flag = 2;
   14308          278 :           else if (code->op == EXEC_DO_CONCURRENT)
   14309          278 :             gfc_do_concurrent_flag = 2;
   14310              :         }
   14311      1150781 :       else if (code->op == EXEC_OMP_METADIRECTIVE)
   14312          138 :         for (gfc_omp_variant *variant
   14313              :                = code->ext.omp_variants;
   14314          448 :              variant; variant = variant->next)
   14315          310 :           gfc_resolve_code (variant->code, ns);
   14316      1150643 :       else if (code->block)
   14317              :         {
   14318       334593 :           omp_workshare_save = -1;
   14319       334593 :           switch (code->op)
   14320              :             {
   14321        10119 :             case EXEC_OACC_PARALLEL_LOOP:
   14322        10119 :             case EXEC_OACC_PARALLEL:
   14323        10119 :             case EXEC_OACC_KERNELS_LOOP:
   14324        10119 :             case EXEC_OACC_KERNELS:
   14325        10119 :             case EXEC_OACC_SERIAL_LOOP:
   14326        10119 :             case EXEC_OACC_SERIAL:
   14327        10119 :             case EXEC_OACC_DATA:
   14328        10119 :             case EXEC_OACC_HOST_DATA:
   14329        10119 :             case EXEC_OACC_LOOP:
   14330        10119 :               gfc_resolve_oacc_blocks (code, ns);
   14331        10119 :               break;
   14332           54 :             case EXEC_OMP_PARALLEL_WORKSHARE:
   14333           54 :               omp_workshare_save = omp_workshare_flag;
   14334           54 :               omp_workshare_flag = 1;
   14335           54 :               gfc_resolve_omp_parallel_blocks (code, ns);
   14336           54 :               break;
   14337         6050 :             case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
   14338         6050 :             case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
   14339         6050 :             case EXEC_OMP_MASKED_TASKLOOP:
   14340         6050 :             case EXEC_OMP_MASKED_TASKLOOP_SIMD:
   14341         6050 :             case EXEC_OMP_MASTER_TASKLOOP:
   14342         6050 :             case EXEC_OMP_MASTER_TASKLOOP_SIMD:
   14343         6050 :             case EXEC_OMP_PARALLEL:
   14344         6050 :             case EXEC_OMP_PARALLEL_DO:
   14345         6050 :             case EXEC_OMP_PARALLEL_DO_SIMD:
   14346         6050 :             case EXEC_OMP_PARALLEL_LOOP:
   14347         6050 :             case EXEC_OMP_PARALLEL_MASKED:
   14348         6050 :             case EXEC_OMP_PARALLEL_MASKED_TASKLOOP:
   14349         6050 :             case EXEC_OMP_PARALLEL_MASKED_TASKLOOP_SIMD:
   14350         6050 :             case EXEC_OMP_PARALLEL_MASTER:
   14351         6050 :             case EXEC_OMP_PARALLEL_MASTER_TASKLOOP:
   14352         6050 :             case EXEC_OMP_PARALLEL_MASTER_TASKLOOP_SIMD:
   14353         6050 :             case EXEC_OMP_PARALLEL_SECTIONS:
   14354         6050 :             case EXEC_OMP_TARGET_PARALLEL:
   14355         6050 :             case EXEC_OMP_TARGET_PARALLEL_DO:
   14356         6050 :             case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
   14357         6050 :             case EXEC_OMP_TARGET_PARALLEL_LOOP:
   14358         6050 :             case EXEC_OMP_TARGET_TEAMS:
   14359         6050 :             case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
   14360         6050 :             case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
   14361         6050 :             case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
   14362         6050 :             case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
   14363         6050 :             case EXEC_OMP_TARGET_TEAMS_LOOP:
   14364         6050 :             case EXEC_OMP_TASK:
   14365         6050 :             case EXEC_OMP_TASKLOOP:
   14366         6050 :             case EXEC_OMP_TASKLOOP_SIMD:
   14367         6050 :             case EXEC_OMP_TEAMS:
   14368         6050 :             case EXEC_OMP_TEAMS_DISTRIBUTE:
   14369         6050 :             case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
   14370         6050 :             case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
   14371         6050 :             case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
   14372         6050 :             case EXEC_OMP_TEAMS_LOOP:
   14373         6050 :               omp_workshare_save = omp_workshare_flag;
   14374         6050 :               omp_workshare_flag = 0;
   14375         6050 :               gfc_resolve_omp_parallel_blocks (code, ns);
   14376         6050 :               break;
   14377         3065 :             case EXEC_OMP_DISTRIBUTE:
   14378         3065 :             case EXEC_OMP_DISTRIBUTE_SIMD:
   14379         3065 :             case EXEC_OMP_DO:
   14380         3065 :             case EXEC_OMP_DO_SIMD:
   14381         3065 :             case EXEC_OMP_LOOP:
   14382         3065 :             case EXEC_OMP_SIMD:
   14383         3065 :             case EXEC_OMP_TARGET_SIMD:
   14384         3065 :             case EXEC_OMP_TILE:
   14385         3065 :             case EXEC_OMP_UNROLL:
   14386         3065 :               gfc_resolve_omp_do_blocks (code, ns);
   14387         3065 :               break;
   14388              :             case EXEC_SELECT_TYPE:
   14389              :             case EXEC_SELECT_RANK:
   14390              :               /* Blocks are handled in resolve_select_type/rank because we
   14391              :                  have to transform the SELECT TYPE into ASSOCIATE first.  */
   14392              :               break;
   14393              :             case EXEC_DO_CONCURRENT:
   14394              :               gfc_do_concurrent_flag = 1;
   14395              :               gfc_resolve_blocks (code->block, ns);
   14396              :               gfc_do_concurrent_flag = 2;
   14397              :               break;
   14398           39 :             case EXEC_OMP_WORKSHARE:
   14399           39 :               omp_workshare_save = omp_workshare_flag;
   14400           39 :               omp_workshare_flag = 1;
   14401              :               /* FALL THROUGH */
   14402       311148 :             default:
   14403       311148 :               gfc_resolve_blocks (code->block, ns);
   14404       311148 :               break;
   14405              :             }
   14406              : 
   14407       330436 :           if (omp_workshare_save != -1)
   14408         6143 :             omp_workshare_flag = omp_workshare_save;
   14409              :         }
   14410      1153052 : start:
   14411      1153257 :       t = true;
   14412      1153257 :       if (code->op != EXEC_COMPCALL && code->op != EXEC_CALL_PPC)
   14413      1151820 :           t = gfc_resolve_expr (code->expr1);
   14414              : 
   14415      1153257 :       forall_flag = forall_save;
   14416      1153257 :       gfc_do_concurrent_flag = do_concurrent_save;
   14417              : 
   14418      1153257 :       if (!gfc_resolve_expr (code->expr2))
   14419          638 :         t = false;
   14420              : 
   14421      1153257 :       if (code->op == EXEC_ALLOCATE
   14422      1153257 :           && !gfc_resolve_expr (code->expr3))
   14423              :         t = false;
   14424              : 
   14425      1153257 :       switch (code->op)
   14426              :         {
   14427              :         case EXEC_NOP:
   14428              :         case EXEC_END_BLOCK:
   14429              :         case EXEC_END_NESTED_BLOCK:
   14430              :         case EXEC_CYCLE:
   14431              :           break;
   14432              : 
   14433       220652 :         case EXEC_STOP:
   14434       220652 :         case EXEC_ERROR_STOP:
   14435       220652 :           if (code->expr1 != NULL && t)
   14436              :             {
   14437       200199 :               if (!(code->expr1->ts.type == BT_CHARACTER
   14438              :                     || code->expr1->ts.type == BT_INTEGER))
   14439            1 :                 gfc_error ("STOP code at %L must be either INTEGER or CHARACTER "
   14440              :                            "type", &code->expr1->where);
   14441       200198 :               else if (code->expr1->rank != 0)
   14442            0 :                 gfc_error ("STOP code at %L must be scalar",
   14443              :                            &code->expr1->where);
   14444       200198 :               else if (code->expr1->ts.type == BT_CHARACTER
   14445          478 :                        && code->expr1->ts.kind != gfc_default_character_kind)
   14446            0 :                 gfc_error ("STOP code at %L must be default character KIND=%d",
   14447              :                            &code->expr1->where, (int) gfc_default_character_kind);
   14448       200198 :               else if (code->expr1->ts.type == BT_INTEGER
   14449       199720 :                        && code->expr1->ts.kind != gfc_default_integer_kind)
   14450            8 :                 gfc_notify_std (GFC_STD_F2018, "STOP code at %L must be default "
   14451              :                                 "integer KIND=%d", &code->expr1->where,
   14452              :                                 (int) gfc_default_integer_kind);
   14453              :             }
   14454       220652 :           if (code->expr2 != NULL
   14455           37 :               && (code->expr2->ts.type != BT_LOGICAL
   14456           37 :                   || code->expr2->rank != 0))
   14457            0 :             gfc_error ("QUIET specifier at %L must be a scalar LOGICAL",
   14458              :                        &code->expr2->where);
   14459              : 
   14460              :           /* Fall through.  */
   14461       220682 :         case EXEC_PAUSE:
   14462       220682 :           gfc_value_used_expr (code->expr1, VALUE_USED);
   14463       220682 :           break;
   14464              : 
   14465              :         case EXEC_EXIT:
   14466              :         case EXEC_CONTINUE:
   14467              :         case EXEC_DT_END:
   14468              :         case EXEC_ASSIGN_CALL:
   14469              :           break;
   14470              : 
   14471           54 :         case EXEC_CRITICAL:
   14472           54 :           resolve_critical (code);
   14473           54 :           break;
   14474              : 
   14475         1317 :         case EXEC_SYNC_ALL:
   14476         1317 :         case EXEC_SYNC_IMAGES:
   14477         1317 :         case EXEC_SYNC_MEMORY:
   14478         1317 :           resolve_sync (code);
   14479         1317 :           break;
   14480              : 
   14481          197 :         case EXEC_LOCK:
   14482          197 :         case EXEC_UNLOCK:
   14483          197 :         case EXEC_EVENT_POST:
   14484          197 :         case EXEC_EVENT_WAIT:
   14485          197 :           resolve_lock_unlock_event (code);
   14486          197 :           break;
   14487              : 
   14488              :         case EXEC_FAIL_IMAGE:
   14489              :           break;
   14490              : 
   14491          154 :         case EXEC_FORM_TEAM:
   14492          154 :           resolve_form_team (code);
   14493          154 :           break;
   14494              : 
   14495           97 :         case EXEC_CHANGE_TEAM:
   14496           97 :           resolve_change_team (code);
   14497           97 :           break;
   14498              : 
   14499           95 :         case EXEC_END_TEAM:
   14500           95 :           resolve_end_team (code);
   14501           95 :           break;
   14502              : 
   14503           43 :         case EXEC_SYNC_TEAM:
   14504           43 :           resolve_sync_team (code);
   14505           43 :           break;
   14506              : 
   14507         1491 :         case EXEC_ENTRY:
   14508              :           /* Keep track of which entry we are up to.  */
   14509         1491 :           current_entry_id = code->ext.entry->id;
   14510         1491 :           break;
   14511              : 
   14512          459 :         case EXEC_WHERE:
   14513          459 :           resolve_where (code, NULL);
   14514          459 :           break;
   14515              : 
   14516         1304 :         case EXEC_GOTO:
   14517         1304 :           if (code->expr1 != NULL)
   14518              :             {
   14519           78 :               if (code->expr1->expr_type != EXPR_VARIABLE
   14520           76 :                   || code->expr1->ts.type != BT_INTEGER
   14521           76 :                   || (code->expr1->ref
   14522            1 :                       && code->expr1->ref->type == REF_ARRAY)
   14523           75 :                   || code->expr1->symtree == NULL
   14524           75 :                   || (code->expr1->symtree->n.sym
   14525           75 :                       && (code->expr1->symtree->n.sym->attr.flavor
   14526           75 :                           == FL_PARAMETER)))
   14527            4 :                 gfc_error ("ASSIGNED GOTO statement at %L requires a "
   14528              :                            "scalar INTEGER variable", &code->expr1->where);
   14529           74 :               else if (code->expr1->symtree->n.sym
   14530           74 :                        && code->expr1->symtree->n.sym->attr.assign != 1)
   14531            1 :                 gfc_error ("Variable %qs has not been assigned a target "
   14532              :                            "label at %L", code->expr1->symtree->n.sym->name,
   14533              :                            &code->expr1->where);
   14534              :             }
   14535              :           else
   14536         1226 :             resolve_branch (code->label1, code);
   14537              :           break;
   14538              : 
   14539         3266 :         case EXEC_RETURN:
   14540         3266 :           if (code->expr1 != NULL
   14541           53 :                 && (code->expr1->ts.type != BT_INTEGER || code->expr1->rank))
   14542            1 :             gfc_error ("Alternate RETURN statement at %L requires a SCALAR-"
   14543              :                        "INTEGER return specifier", &code->expr1->where);
   14544              :           break;
   14545              : 
   14546              :         case EXEC_INIT_ASSIGN:
   14547              :         case EXEC_END_PROCEDURE:
   14548              :           break;
   14549              : 
   14550       290437 :         case EXEC_ASSIGN:
   14551       290437 :           if (!t)
   14552              :             break;
   14553              : 
   14554       289761 :           if (flag_coarray == GFC_FCOARRAY_LIB
   14555       289761 :               && gfc_is_coindexed (code->expr1))
   14556              :             {
   14557              :               /* Insert a GFC_ISYM_CAF_SEND intrinsic, when the LHS is a
   14558              :                  coindexed variable.  */
   14559          500 :               code->op = EXEC_CALL;
   14560          500 :               gfc_get_sym_tree (GFC_PREFIX ("caf_send"), ns, &code->symtree,
   14561              :                                 true);
   14562          500 :               code->resolved_sym = code->symtree->n.sym;
   14563          500 :               code->resolved_sym->attr.flavor = FL_PROCEDURE;
   14564          500 :               code->resolved_sym->attr.intrinsic = 1;
   14565          500 :               code->resolved_sym->attr.subroutine = 1;
   14566          500 :               code->resolved_isym
   14567          500 :                 = gfc_intrinsic_subroutine_by_id (GFC_ISYM_CAF_SEND);
   14568          500 :               gfc_commit_symbol (code->resolved_sym);
   14569          500 :               code->ext.actual = gfc_get_actual_arglist ();
   14570          500 :               code->ext.actual->expr = code->expr1;
   14571          500 :               code->ext.actual->next = gfc_get_actual_arglist ();
   14572          500 :               if (code->expr2->expr_type != EXPR_VARIABLE
   14573          500 :                   && code->expr2->expr_type != EXPR_CONSTANT)
   14574              :                 {
   14575              :                   /* Convert assignments of expr1[...] = expr2 into
   14576              :                         tvar = expr2
   14577              :                         expr1[...] = tvar
   14578              :                      when expr2 is not trivial.  */
   14579           54 :                   gfc_expr *tvar = get_temp_from_expr (code->expr2, ns);
   14580           54 :                   gfc_code next_code = *code;
   14581           54 :                   gfc_code *rhs_code
   14582          108 :                     = build_assignment (EXEC_ASSIGN, tvar, code->expr2, NULL,
   14583           54 :                                         NULL, code->expr2->where);
   14584           54 :                   *code = *rhs_code;
   14585           54 :                   code->next = rhs_code;
   14586           54 :                   *rhs_code = next_code;
   14587              : 
   14588           54 :                   rhs_code->ext.actual->next->expr = tvar;
   14589           54 :                   rhs_code->expr1 = NULL;
   14590           54 :                   rhs_code->expr2 = NULL;
   14591              :                 }
   14592              :               else
   14593              :                 {
   14594          446 :                   code->ext.actual->next->expr = code->expr2;
   14595              : 
   14596          446 :                   code->expr1 = NULL;
   14597          446 :                   code->expr2 = NULL;
   14598              :                 }
   14599              :               break;
   14600              :             }
   14601              : 
   14602       289261 :           if (code->expr1->ts.type == BT_CLASS)
   14603         1163 :             gfc_find_vtab (&code->expr2->ts);
   14604              : 
   14605              :           /* If this is a pointer function in an lvalue variable context,
   14606              :              the new code will have to be resolved afresh. This is also the
   14607              :              case with an error, where the code is transformed into NOP to
   14608              :              prevent ICEs downstream.  */
   14609       289261 :           if (resolve_ptr_fcn_assign (&code, ns)
   14610       289261 :               || code->op == EXEC_NOP)
   14611          205 :             goto start;
   14612              : 
   14613       289056 :           if (!gfc_check_vardef_context (code->expr1, false, false, false,
   14614       289056 :                                          _("assignment")))
   14615              :             break;
   14616              : 
   14617       289013 :           if (resolve_ordinary_assign (code, ns))
   14618              :             {
   14619          924 :               if (omp_workshare_flag)
   14620              :                 {
   14621            1 :                   gfc_error ("Expected intrinsic assignment in OMP WORKSHARE "
   14622            1 :                              "at %L", &code->loc);
   14623            1 :                   break;
   14624              :                 }
   14625          923 :               if (code->op == EXEC_COMPCALL)
   14626          455 :                 goto compcall;
   14627              :               else
   14628          468 :                 goto call;
   14629              :             }
   14630              : 
   14631              :           /* Check for dependencies in deferred character length array
   14632              :              assignments and generate a temporary, if necessary.  */
   14633       288089 :           if (code->op == EXEC_ASSIGN && deferred_op_assign (&code, ns))
   14634              :             break;
   14635              : 
   14636              :           /* F03 7.4.1.3 for non-allocatable, non-pointer components.  */
   14637       288067 :           if (code->op != EXEC_CALL && code->expr1->ts.type == BT_DERIVED
   14638         7427 :               && code->expr1->ts.u.derived
   14639         7427 :               && code->expr1->ts.u.derived->attr.defined_assign_comp)
   14640          194 :             generate_component_assignments (&code, ns);
   14641       287873 :           else if (code->op == EXEC_ASSIGN)
   14642              :             {
   14643       287873 :               if (gfc_may_be_finalized (code->expr1->ts))
   14644         1344 :                 code->expr1->must_finalize = 1;
   14645       287873 :               if (code->expr2->expr_type == EXPR_ARRAY
   14646       287873 :                   && gfc_may_be_finalized (code->expr2->ts))
   14647           73 :                 code->expr2->must_finalize = 1;
   14648              :             }
   14649              : 
   14650              :           break;
   14651              : 
   14652          126 :         case EXEC_LABEL_ASSIGN:
   14653          126 :           if (code->label1->defined == ST_LABEL_UNKNOWN)
   14654            0 :             gfc_error ("Label %d referenced at %L is never defined",
   14655              :                        code->label1->value, &code->label1->where);
   14656          126 :           if (t
   14657          126 :               && (code->expr1->expr_type != EXPR_VARIABLE
   14658          126 :                   || code->expr1->symtree->n.sym->ts.type != BT_INTEGER
   14659          126 :                   || code->expr1->symtree->n.sym->ts.kind
   14660          126 :                      != gfc_default_integer_kind
   14661          126 :                   || code->expr1->symtree->n.sym->attr.flavor == FL_PARAMETER
   14662          125 :                   || code->expr1->symtree->n.sym->as != NULL))
   14663            2 :             gfc_error ("ASSIGN statement at %L requires a scalar "
   14664              :                        "default INTEGER variable", &code->expr1->where);
   14665              :           break;
   14666              : 
   14667        10568 :         case EXEC_POINTER_ASSIGN:
   14668        10568 :           {
   14669        10568 :             gfc_expr* e;
   14670              : 
   14671        10568 :             if (!t)
   14672              :               break;
   14673              : 
   14674              :             /* This is both a variable definition and pointer assignment
   14675              :                context, so check both of them.  For rank remapping, a final
   14676              :                array ref may be present on the LHS and fool gfc_expr_attr
   14677              :                used in gfc_check_vardef_context.  Remove it.  */
   14678        10563 :             e = remove_last_array_ref (code->expr1);
   14679        21126 :             t = gfc_check_vardef_context (e, true, false, false,
   14680        10563 :                                           _("pointer assignment"));
   14681        10563 :             if (t)
   14682        10534 :               t = gfc_check_vardef_context (e, false, false, false,
   14683        10534 :                                             _("pointer assignment"));
   14684        10563 :             gfc_free_expr (e);
   14685              : 
   14686        10563 :             t = gfc_check_pointer_assign (code->expr1, code->expr2, !t) && t;
   14687              : 
   14688        10421 :             if (!t)
   14689              :               break;
   14690              : 
   14691              :             /* Assigning a class object always is a regular assign.  */
   14692        10421 :             if (code->expr2->ts.type == BT_CLASS
   14693          582 :                 && code->expr1->ts.type == BT_CLASS
   14694          491 :                 && CLASS_DATA (code->expr2)
   14695          490 :                 && !CLASS_DATA (code->expr2)->attr.dimension
   14696        11058 :                 && !(gfc_expr_attr (code->expr1).proc_pointer
   14697           55 :                      && code->expr2->expr_type == EXPR_VARIABLE
   14698           43 :                      && code->expr2->symtree->n.sym->attr.flavor
   14699           43 :                         == FL_PROCEDURE))
   14700          340 :               code->op = EXEC_ASSIGN;
   14701              :             break;
   14702              :           }
   14703              : 
   14704           72 :         case EXEC_ARITHMETIC_IF:
   14705           72 :           {
   14706           72 :             gfc_expr *e = code->expr1;
   14707              : 
   14708           72 :             gfc_resolve_expr (e);
   14709           72 :             if (e->expr_type == EXPR_NULL)
   14710            1 :               gfc_error ("Invalid NULL at %L", &e->where);
   14711              : 
   14712           72 :             if (t && (e->rank > 0
   14713           68 :                       || !(e->ts.type == BT_REAL || e->ts.type == BT_INTEGER)))
   14714            5 :               gfc_error ("Arithmetic IF statement at %L requires a scalar "
   14715              :                          "REAL or INTEGER expression", &e->where);
   14716              : 
   14717           72 :             resolve_branch (code->label1, code);
   14718           72 :             resolve_branch (code->label2, code);
   14719           72 :             resolve_branch (code->label3, code);
   14720              :           }
   14721           72 :           break;
   14722              : 
   14723       234346 :         case EXEC_IF:
   14724       234346 :           if (t && code->expr1 != NULL
   14725            0 :               && (code->expr1->ts.type != BT_LOGICAL
   14726            0 :                   || code->expr1->rank != 0))
   14727            0 :             gfc_error ("IF clause at %L requires a scalar LOGICAL expression",
   14728              :                        &code->expr1->where);
   14729              :           break;
   14730              : 
   14731        81030 :         case EXEC_CALL:
   14732        81030 :         call:
   14733        81030 :           resolve_call (code);
   14734        81030 :           break;
   14735              : 
   14736         1768 :         case EXEC_COMPCALL:
   14737         1768 :         compcall:
   14738         1768 :           resolve_typebound_subroutine (code);
   14739         1768 :           break;
   14740              : 
   14741          124 :         case EXEC_CALL_PPC:
   14742          124 :           resolve_ppc_call (code);
   14743          124 :           break;
   14744              : 
   14745          694 :         case EXEC_SELECT:
   14746              :           /* Select is complicated. Also, a SELECT construct could be
   14747              :              a transformed computed GOTO.  */
   14748          694 :           resolve_select (code, false);
   14749          694 :           break;
   14750              : 
   14751         3135 :         case EXEC_SELECT_TYPE:
   14752         3135 :           resolve_select_type (code, ns);
   14753         3135 :           break;
   14754              : 
   14755         1048 :         case EXEC_SELECT_RANK:
   14756         1048 :           resolve_select_rank (code, ns);
   14757         1048 :           break;
   14758              : 
   14759         8351 :         case EXEC_BLOCK:
   14760         8351 :           resolve_block_construct (code);
   14761         8351 :           break;
   14762              : 
   14763        33312 :         case EXEC_DO:
   14764        33312 :           if (code->ext.iterator != NULL)
   14765              :             {
   14766        33312 :               gfc_iterator *iter = code->ext.iterator;
   14767        33312 :               if (gfc_resolve_iterator (iter, true, false))
   14768        33298 :                 gfc_resolve_do_iterator (code, iter->var->symtree->n.sym,
   14769              :                                          true);
   14770              :             }
   14771              :           break;
   14772              : 
   14773          531 :         case EXEC_DO_WHILE:
   14774          531 :           if (code->expr1 == NULL)
   14775            0 :             gfc_internal_error ("gfc_resolve_code(): No expression on "
   14776              :                                 "DO WHILE");
   14777          531 :           if (t
   14778          531 :               && (code->expr1->rank != 0
   14779          531 :                   || code->expr1->ts.type != BT_LOGICAL))
   14780            0 :             gfc_error ("Exit condition of DO WHILE loop at %L must be "
   14781              :                        "a scalar LOGICAL expression", &code->expr1->where);
   14782              :           break;
   14783              : 
   14784        14652 :         case EXEC_ALLOCATE:
   14785        14652 :           if (t)
   14786        14650 :             resolve_allocate_deallocate (code, "ALLOCATE");
   14787              : 
   14788              :           break;
   14789              : 
   14790         6208 :         case EXEC_DEALLOCATE:
   14791         6208 :           if (t)
   14792         6208 :             resolve_allocate_deallocate (code, "DEALLOCATE");
   14793              : 
   14794              :           break;
   14795              : 
   14796         3961 :         case EXEC_OPEN:
   14797         3961 :           if (!gfc_resolve_open (code->ext.open, &code->loc))
   14798              :             break;
   14799              : 
   14800         3734 :           resolve_branch (code->ext.open->err, code);
   14801         3734 :           break;
   14802              : 
   14803         3154 :         case EXEC_CLOSE:
   14804         3154 :           if (!gfc_resolve_close (code->ext.close, &code->loc))
   14805              :             break;
   14806              : 
   14807         3120 :           resolve_branch (code->ext.close->err, code);
   14808         3120 :           break;
   14809              : 
   14810         2857 :         case EXEC_BACKSPACE:
   14811         2857 :         case EXEC_ENDFILE:
   14812         2857 :         case EXEC_REWIND:
   14813         2857 :         case EXEC_FLUSH:
   14814         2857 :           if (!gfc_resolve_filepos (code->ext.filepos, &code->loc))
   14815              :             break;
   14816              : 
   14817         2791 :           resolve_branch (code->ext.filepos->err, code);
   14818         2791 :           break;
   14819              : 
   14820          838 :         case EXEC_INQUIRE:
   14821          838 :           if (!gfc_resolve_inquire (code->ext.inquire))
   14822              :               break;
   14823              : 
   14824          790 :           resolve_branch (code->ext.inquire->err, code);
   14825          790 :           break;
   14826              : 
   14827           92 :         case EXEC_IOLENGTH:
   14828           92 :           gcc_assert (code->ext.inquire != NULL);
   14829           92 :           if (!gfc_resolve_inquire (code->ext.inquire))
   14830              :             break;
   14831              : 
   14832           90 :           resolve_branch (code->ext.inquire->err, code);
   14833           90 :           break;
   14834              : 
   14835           89 :         case EXEC_WAIT:
   14836           89 :           if (!gfc_resolve_wait (code->ext.wait))
   14837              :             break;
   14838              : 
   14839           74 :           resolve_branch (code->ext.wait->err, code);
   14840           74 :           resolve_branch (code->ext.wait->end, code);
   14841           74 :           resolve_branch (code->ext.wait->eor, code);
   14842           74 :           break;
   14843              : 
   14844        33634 :         case EXEC_READ:
   14845        33634 :         case EXEC_WRITE:
   14846        33634 :           if (!gfc_resolve_dt (code, code->ext.dt, &code->loc))
   14847              :             break;
   14848              : 
   14849        33326 :           resolve_branch (code->ext.dt->err, code);
   14850        33326 :           resolve_branch (code->ext.dt->end, code);
   14851        33326 :           resolve_branch (code->ext.dt->eor, code);
   14852        33326 :           break;
   14853              : 
   14854        47647 :         case EXEC_TRANSFER:
   14855        47647 :           resolve_transfer (code);
   14856        47647 :           break;
   14857              : 
   14858         2271 :         case EXEC_DO_CONCURRENT:
   14859         2271 :         case EXEC_FORALL:
   14860         2271 :           resolve_forall_iterators (code->ext.concur.forall_iterator);
   14861              : 
   14862         2271 :           if (code->expr1 != NULL
   14863          732 :               && (code->expr1->ts.type != BT_LOGICAL || code->expr1->rank))
   14864            2 :             gfc_error ("FORALL mask clause at %L requires a scalar LOGICAL "
   14865              :                        "expression", &code->expr1->where);
   14866              : 
   14867         2271 :     if (code->op == EXEC_DO_CONCURRENT)
   14868          278 :       resolve_locality_spec (code, ns);
   14869              :           break;
   14870              : 
   14871        13538 :         case EXEC_OACC_PARALLEL_LOOP:
   14872        13538 :         case EXEC_OACC_PARALLEL:
   14873        13538 :         case EXEC_OACC_KERNELS_LOOP:
   14874        13538 :         case EXEC_OACC_KERNELS:
   14875        13538 :         case EXEC_OACC_SERIAL_LOOP:
   14876        13538 :         case EXEC_OACC_SERIAL:
   14877        13538 :         case EXEC_OACC_DATA:
   14878        13538 :         case EXEC_OACC_HOST_DATA:
   14879        13538 :         case EXEC_OACC_LOOP:
   14880        13538 :         case EXEC_OACC_UPDATE:
   14881        13538 :         case EXEC_OACC_WAIT:
   14882        13538 :         case EXEC_OACC_CACHE:
   14883        13538 :         case EXEC_OACC_ENTER_DATA:
   14884        13538 :         case EXEC_OACC_EXIT_DATA:
   14885        13538 :         case EXEC_OACC_ATOMIC:
   14886        13538 :         case EXEC_OACC_DECLARE:
   14887        13538 :         case EXEC_OACC_INIT:
   14888        13538 :         case EXEC_OACC_SHUTDOWN:
   14889        13538 :         case EXEC_OACC_SET:
   14890        13538 :           gfc_resolve_oacc_directive (code, ns);
   14891        13538 :           break;
   14892              : 
   14893        17336 :         case EXEC_OMP_ALLOCATE:
   14894        17336 :         case EXEC_OMP_ALLOCATORS:
   14895        17336 :         case EXEC_OMP_ASSUME:
   14896        17336 :         case EXEC_OMP_ATOMIC:
   14897        17336 :         case EXEC_OMP_BARRIER:
   14898        17336 :         case EXEC_OMP_CANCEL:
   14899        17336 :         case EXEC_OMP_CANCELLATION_POINT:
   14900        17336 :         case EXEC_OMP_CRITICAL:
   14901        17336 :         case EXEC_OMP_FLUSH:
   14902        17336 :         case EXEC_OMP_DEPOBJ:
   14903        17336 :         case EXEC_OMP_DISPATCH:
   14904        17336 :         case EXEC_OMP_DISTRIBUTE:
   14905        17336 :         case EXEC_OMP_DISTRIBUTE_PARALLEL_DO:
   14906        17336 :         case EXEC_OMP_DISTRIBUTE_PARALLEL_DO_SIMD:
   14907        17336 :         case EXEC_OMP_DISTRIBUTE_SIMD:
   14908        17336 :         case EXEC_OMP_DO:
   14909        17336 :         case EXEC_OMP_DO_SIMD:
   14910        17336 :         case EXEC_OMP_ERROR:
   14911        17336 :         case EXEC_OMP_INTEROP:
   14912        17336 :         case EXEC_OMP_LOOP:
   14913        17336 :         case EXEC_OMP_MASTER:
   14914        17336 :         case EXEC_OMP_MASTER_TASKLOOP:
   14915        17336 :         case EXEC_OMP_MASTER_TASKLOOP_SIMD:
   14916        17336 :         case EXEC_OMP_MASKED:
   14917        17336 :         case EXEC_OMP_MASKED_TASKLOOP:
   14918        17336 :         case EXEC_OMP_MASKED_TASKLOOP_SIMD:
   14919        17336 :         case EXEC_OMP_METADIRECTIVE:
   14920        17336 :         case EXEC_OMP_ORDERED:
   14921        17336 :         case EXEC_OMP_SCAN:
   14922        17336 :         case EXEC_OMP_SCOPE:
   14923        17336 :         case EXEC_OMP_SECTIONS:
   14924        17336 :         case EXEC_OMP_SIMD:
   14925        17336 :         case EXEC_OMP_SINGLE:
   14926        17336 :         case EXEC_OMP_TARGET:
   14927        17336 :         case EXEC_OMP_TARGET_DATA:
   14928        17336 :         case EXEC_OMP_TARGET_ENTER_DATA:
   14929        17336 :         case EXEC_OMP_TARGET_EXIT_DATA:
   14930        17336 :         case EXEC_OMP_TARGET_PARALLEL:
   14931        17336 :         case EXEC_OMP_TARGET_PARALLEL_DO:
   14932        17336 :         case EXEC_OMP_TARGET_PARALLEL_DO_SIMD:
   14933        17336 :         case EXEC_OMP_TARGET_PARALLEL_LOOP:
   14934        17336 :         case EXEC_OMP_TARGET_SIMD:
   14935        17336 :         case EXEC_OMP_TARGET_TEAMS:
   14936        17336 :         case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE:
   14937        17336 :         case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO:
   14938        17336 :         case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
   14939        17336 :         case EXEC_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD:
   14940        17336 :         case EXEC_OMP_TARGET_TEAMS_LOOP:
   14941        17336 :         case EXEC_OMP_TARGET_UPDATE:
   14942        17336 :         case EXEC_OMP_TASK:
   14943        17336 :         case EXEC_OMP_TASKGROUP:
   14944        17336 :         case EXEC_OMP_TASKLOOP:
   14945        17336 :         case EXEC_OMP_TASKLOOP_SIMD:
   14946        17336 :         case EXEC_OMP_TASKWAIT:
   14947        17336 :         case EXEC_OMP_TASKYIELD:
   14948        17336 :         case EXEC_OMP_TEAMS:
   14949        17336 :         case EXEC_OMP_TEAMS_DISTRIBUTE:
   14950        17336 :         case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO:
   14951        17336 :         case EXEC_OMP_TEAMS_DISTRIBUTE_PARALLEL_DO_SIMD:
   14952        17336 :         case EXEC_OMP_TEAMS_DISTRIBUTE_SIMD:
   14953        17336 :         case EXEC_OMP_TEAMS_LOOP:
   14954        17336 :         case EXEC_OMP_TILE:
   14955        17336 :         case EXEC_OMP_UNROLL:
   14956        17336 :         case EXEC_OMP_WORKSHARE:
   14957        17336 :           gfc_resolve_omp_directive (code, ns);
   14958        17336 :           break;
   14959              : 
   14960         3928 :         case EXEC_OMP_PARALLEL:
   14961         3928 :         case EXEC_OMP_PARALLEL_DO:
   14962         3928 :         case EXEC_OMP_PARALLEL_DO_SIMD:
   14963         3928 :         case EXEC_OMP_PARALLEL_LOOP:
   14964         3928 :         case EXEC_OMP_PARALLEL_MASKED:
   14965         3928 :         case EXEC_OMP_PARALLEL_MASKED_TASKLOOP:
   14966         3928 :         case EXEC_OMP_PARALLEL_MASKED_TASKLOOP_SIMD:
   14967         3928 :         case EXEC_OMP_PARALLEL_MASTER:
   14968         3928 :         case EXEC_OMP_PARALLEL_MASTER_TASKLOOP:
   14969         3928 :         case EXEC_OMP_PARALLEL_MASTER_TASKLOOP_SIMD:
   14970         3928 :         case EXEC_OMP_PARALLEL_SECTIONS:
   14971         3928 :         case EXEC_OMP_PARALLEL_WORKSHARE:
   14972         3928 :           omp_workshare_save = omp_workshare_flag;
   14973         3928 :           omp_workshare_flag = 0;
   14974         3928 :           gfc_resolve_omp_directive (code, ns);
   14975         3928 :           omp_workshare_flag = omp_workshare_save;
   14976         3928 :           break;
   14977              : 
   14978            0 :         default:
   14979            0 :           gfc_internal_error ("gfc_resolve_code(): Bad statement code");
   14980              :         }
   14981      1153051 :       gfc_value_used_expr (code->expr2, VALUE_USED);
   14982      1153051 :       gfc_value_used_expr (code->expr3, VALUE_USED);
   14983      1153051 :       gfc_value_used_expr (code->expr4, VALUE_USED);
   14984              :     }
   14985              : 
   14986       700396 :   mark_lhs_assignments_set (orig_code);
   14987              : 
   14988       700396 :   cs_base = frame.prev;
   14989       700396 : }
   14990              : 
   14991              : 
   14992              : /* Resolve initial values and make sure they are compatible with
   14993              :    the variable.  */
   14994              : 
   14995              : static void
   14996      1950954 : resolve_values (gfc_symbol *sym)
   14997              : {
   14998      1950954 :   bool t;
   14999              : 
   15000      1950954 :   if (sym->value == NULL)
   15001              :     return;
   15002              : 
   15003       447260 :   if (sym->attr.ext_attr & (1 << EXT_ATTR_DEPRECATED) && sym->attr.referenced)
   15004           14 :     gfc_warning (OPT_Wdeprecated_declarations,
   15005              :                  "Using parameter %qs declared at %L is deprecated",
   15006              :                  sym->name, &sym->declared_at);
   15007              : 
   15008       447260 :   if (sym->value->expr_type == EXPR_STRUCTURE)
   15009        41031 :     t= resolve_structure_cons (sym->value, 1);
   15010              :   else
   15011       406229 :     t = gfc_resolve_expr (sym->value);
   15012              : 
   15013       447260 :   if (!t)
   15014              :     return;
   15015              : 
   15016       447258 :   gfc_check_assign_symbol (sym, NULL, sym->value);
   15017              : }
   15018              : 
   15019              : 
   15020              : /* Verify any BIND(C) derived types in the namespace so we can report errors
   15021              :    for them once, rather than for each variable declared of that type.  */
   15022              : 
   15023              : static void
   15024      1920239 : resolve_bind_c_derived_types (gfc_symbol *derived_sym)
   15025              : {
   15026      1920239 :   if (derived_sym != NULL && derived_sym->attr.flavor == FL_DERIVED
   15027        86636 :       && derived_sym->attr.is_bind_c == 1)
   15028        27891 :     verify_bind_c_derived_type (derived_sym);
   15029              : 
   15030      1920239 :   return;
   15031              : }
   15032              : 
   15033              : 
   15034              : /* Check the interfaces of DTIO procedures associated with derived
   15035              :    type 'sym'.  These procedures can either have typebound bindings or
   15036              :    can appear in DTIO generic interfaces.  */
   15037              : 
   15038              : static void
   15039      1951924 : gfc_verify_DTIO_procedures (gfc_symbol *sym)
   15040              : {
   15041      1951924 :   if (!sym || sym->attr.flavor != FL_DERIVED)
   15042              :     return;
   15043              : 
   15044        96368 :   gfc_check_dtio_interfaces (sym);
   15045              : 
   15046        96368 :   return;
   15047              : }
   15048              : 
   15049              : /* Auxiliary function, checks if an argument decays to a pointer.  */
   15050              : 
   15051              : static bool
   15052        70418 : decays_to_pointer (gfc_symbol *sym)
   15053              : {
   15054        70418 :   if (!sym->as)
   15055              :     return true;
   15056              : 
   15057        19603 :   if (sym->as->type == AS_ASSUMED_SHAPE)
   15058              :     return false;
   15059              : 
   15060        15846 :   if (sym->as->type == AS_ASSUMED_RANK)
   15061              :     return false;
   15062              : 
   15063        10748 :   if (sym->as->type == AS_DEFERRED && sym->attr.dummy)
   15064          968 :     return false;
   15065              : 
   15066              :   return true;
   15067              : }
   15068              : 
   15069              : /* Helper function, returns true if the types conform according to the C
   15070              :    standard, when they are not equal on the Fortran side.  If we decide to
   15071              :    include or exclude any types from this, this is the place to change.  */
   15072              : 
   15073              : static bool
   15074          390 : c_types_conform (gfc_typespec *ts1, gfc_typespec *ts2)
   15075              : {
   15076          390 :   if (ts1->type == BT_ASSUMED || ts2->type == BT_ASSUMED)
   15077              :     return true;
   15078              : 
   15079          384 :   if (ts1->kind == ts2->kind
   15080              :       && (ts1->type == BT_CHARACTER || ts1->type == BT_INTEGER
   15081              :           || ts1->type == BT_UNSIGNED)
   15082              :       && (ts2->type == BT_CHARACTER || ts2->type == BT_INTEGER
   15083              :           || ts2->type == BT_UNSIGNED))
   15084          384 :     return true;
   15085              : 
   15086              :   return false;
   15087              : 
   15088              : }
   15089              : 
   15090              : /* Check argument lists of BIND(C) procedures against each other, return
   15091              :    false if they do not. */
   15092              : 
   15093              : static bool
   15094        12876 : compare_c_binding_arglists (gfc_symbol *osym, gfc_symbol *nsym)
   15095              : {
   15096        12876 :   gfc_formal_arglist *oarg, *narg;
   15097        12876 :   bool ret = true;
   15098        12876 :   locus *oloc, *nloc;
   15099              : 
   15100        12876 :   oarg = osym->formal;
   15101        12876 :   narg = nsym->formal;
   15102        12876 :   oloc = &osym->declared_at;
   15103        12876 :   nloc = &nsym->declared_at;
   15104        48095 :   for ( ; oarg && narg ; oarg = oarg->next, narg = narg->next)
   15105              :     {
   15106        35219 :       oloc = &oarg->sym->declared_at;
   15107        35219 :       nloc = &narg->sym->declared_at;
   15108              : 
   15109        35219 :       if (!gfc_compare_types (&oarg->sym->ts, &narg->sym->ts)
   15110        35219 :           && (pedantic || !c_types_conform (&oarg->sym->ts, &narg->sym->ts)))
   15111              :         {
   15112           24 :           gfc_error ("Type mismatch in argument %qs at %L (%s/%s) "
   15113            8 :                      "originally declared at %L", narg->sym->name,
   15114            8 :                      nloc, gfc_typename (&narg->sym->ts),
   15115            8 :                      gfc_typename (&oarg->sym->ts), oloc);
   15116            8 :                      ret = false;
   15117            8 :                      continue;
   15118              :         }
   15119        35211 :       if (oarg->sym->attr.value != narg->sym->attr.value)
   15120              :         {
   15121            1 :           gfc_error ("VALUE attribute mismatch in argument %qs at %L "
   15122              :                      "originally declared at %L",narg->sym->name,
   15123              :                      nloc, oloc);
   15124            1 :           ret = false;
   15125            1 :           continue;
   15126              :         }
   15127              : 
   15128              :       /* According to the Fortran standard, ranks have to match for arguments.
   15129              :          In this case, this makes little sense because both decay to C
   15130              :          pointers.  Only issue an error if -pedantic or if the argument does
   15131              :          not decay to a pointer.  Same thing for CFI_desc arrays, which include
   15132              :          assumed rank.  */
   15133              : 
   15134        35210 :       int orank = gfc_symbol_rank (oarg->sym);
   15135        35210 :       int nrank = gfc_symbol_rank (narg->sym);
   15136        35210 :       if (orank != nrank && pedantic)
   15137              :         {
   15138            1 :           gfc_error ("Rank mismatch in argument %qs (%d/%d) at %L originally "
   15139            1 :                      "declared at %L", narg->sym->name, nrank, orank,  nloc,
   15140              :                      oloc);
   15141            1 :           ret = false;
   15142            1 :           continue;
   15143              :         }
   15144              : 
   15145              :       /* Confusion between CFI_desc and "normal" arrays.  */
   15146              : 
   15147        35209 :       if (decays_to_pointer (oarg->sym) != decays_to_pointer (narg->sym))
   15148              :         {
   15149            1 :           gfc_error ("Array specification mismatch in argument %qs at %L "
   15150              :                      "originally declared at %L", narg->sym->name,
   15151              :                      nloc, oloc);
   15152            1 :           ret = false;
   15153            1 :           continue;
   15154              :         }
   15155              :     }
   15156              : 
   15157        12876 :   if (oarg && !narg)
   15158              :     {
   15159            0 :       gfc_error ("Not enough arguments for procedure %qs with binding label "
   15160              :                  "%qs after %L, originally declared at %L", nsym->name,
   15161            0 :                  nsym->binding_label, nloc, &oarg->sym->declared_at);
   15162            0 :       ret = false;
   15163              :     }
   15164              : 
   15165        12876 :   if (!oarg && narg)
   15166              :     {
   15167            2 :       gfc_error ("Too many arguments for procedure %qs with binding label "
   15168              :                  "%qs at %L, originally declared at %L", nsym->name,
   15169            2 :                  nsym->binding_label, &narg->sym->declared_at, oloc);
   15170            2 :       ret = false;
   15171              :     }
   15172              : 
   15173        12876 :   return ret;
   15174              : }
   15175              : 
   15176              : 
   15177              : /* Verify that any binding labels used in a given namespace do not collide
   15178              :    with the names or binding labels of any global symbols.  Multiple INTERFACE
   15179              :    for the same procedure are permitted.  Abstract interfaces and dummy
   15180              :    arguments are not checked.  */
   15181              : 
   15182              : static void
   15183      1951924 : gfc_verify_binding_labels (gfc_symbol *sym)
   15184              : {
   15185      1951924 :   gfc_gsymbol *gsym;
   15186      1951924 :   const char *module;
   15187              : 
   15188      1951924 :   if (!sym || !sym->attr.is_bind_c || sym->attr.is_iso_c
   15189        70678 :       || sym->attr.flavor == FL_DERIVED || !sym->binding_label
   15190        41846 :       || sym->attr.abstract || sym->attr.dummy)
   15191              :     return;
   15192              : 
   15193              :   /* Avoid double error reporting.  */
   15194        41710 :   if (sym->error)
   15195              :     return;
   15196              : 
   15197              :   /* TODO: Check the names of reserved external C identifiers here, see
   15198              :      PR 125251.  */
   15199              : 
   15200              :   /* According to the Fortran standard, global identifiers are case
   15201              :      insensitive, which also holds for C identifiers.  This was probably done
   15202              :      for systems which had case-insensitive linkers.  Such systems could not
   15203              :      accommodate the C standards referenced, so this restriction makes little
   15204              :      sense for modern systems. Therefore, check case-sensitive labels unless
   15205              :      -pedantic is in force.  */
   15206              : 
   15207        41710 :   if (pedantic)
   15208         4663 :     gsym = gfc_find_case_gsymbol (gfc_gsym_root, sym->binding_label);
   15209              :   else
   15210        37047 :     gsym = gfc_find_gsymbol (gfc_gsym_root, sym->binding_label);
   15211              : 
   15212        41710 :   if (sym->module)
   15213              :     module = sym->module;
   15214        13133 :   else if (sym->ns && sym->ns->proc_name
   15215        13133 :            && sym->ns->proc_name->attr.flavor == FL_MODULE)
   15216         4591 :     module = sym->ns->proc_name->name;
   15217         8542 :   else if (sym->ns && sym->ns->parent
   15218          358 :            && sym->ns && sym->ns->parent->proc_name
   15219          358 :            && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
   15220          272 :     module = sym->ns->parent->proc_name->name;
   15221              :   else
   15222              :     module = NULL;
   15223              : 
   15224        41710 :   if (gsym)
   15225              :     {
   15226        12920 :       if (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)
   15227              :         {
   15228        12879 :           gfc_symbol *global_sym;
   15229        12879 :           gfc_find_symbol (gsym->sym_name, gsym->ns, 0, &global_sym);
   15230              : 
   15231              :           /* For when the symtree does not match the symbol name, which can happen
   15232              :              in modules with PRIVATE.  */
   15233              : 
   15234        12879 :           if (global_sym == NULL)
   15235            1 :             gfc_find_symbol_by_name (gsym->sym_name, gsym->ns, &global_sym);
   15236              : 
   15237        12879 :           gcc_assert (global_sym);
   15238              : 
   15239              :           /* If subroutines and functions are conflated, there is little point
   15240              :              in continuing checks.  */
   15241        12879 :           if ((sym->attr.function && gsym->type == GSYM_SUBROUTINE)
   15242        12879 :               || (sym->attr.subroutine && gsym->type == GSYM_FUNCTION))
   15243              :             {
   15244            1 :               gfc_global_used (gsym, &sym->declared_at);
   15245            1 :               sym->binding_label = NULL;
   15246            1 :               sym->error = 1;
   15247           13 :               return;
   15248              :             }
   15249              : 
   15250         7242 :           if (gsym->type == GSYM_FUNCTION && sym->attr.function
   15251        20120 :               && !gfc_compare_types (&sym->ts, &global_sym->ts))
   15252              :             {
   15253            2 :               gfc_error ("Return type mismatch of function %qs with binding "
   15254              :                          "label %qs at %L (%s/%s), originally declared at %L",
   15255              :                          sym->name, sym->binding_label,
   15256              :                          &sym->declared_at,
   15257              :                          gfc_typename (&sym->ts),
   15258            2 :                          gfc_typename (&global_sym->ts),
   15259              :                          &gsym->where);
   15260            2 :               sym->binding_label = NULL;
   15261            2 :               sym->error = 1;
   15262            2 :               return;
   15263              :             }
   15264        12876 :           if (!compare_c_binding_arglists (global_sym, sym))
   15265              :             {
   15266           10 :               sym->binding_label = NULL;
   15267           10 :               sym->error = 1;
   15268           10 :               return;
   15269              :             }
   15270              :         }
   15271              :     }
   15272              : 
   15273        12866 :   if (!gsym
   15274        12907 :       || (!gsym->defined
   15275         9955 :           && (gsym->type == GSYM_FUNCTION || gsym->type == GSYM_SUBROUTINE)))
   15276              :     {
   15277        28790 :       if (!gsym)
   15278        28790 :         gsym = gfc_get_gsymbol (sym->binding_label, true);
   15279        38745 :       gsym->where = sym->declared_at;
   15280        38745 :       gsym->sym_name = sym->name;
   15281        38745 :       gsym->binding_label = sym->binding_label;
   15282        38745 :       gsym->ns = sym->ns;
   15283        38745 :       gsym->mod_name = module;
   15284        38745 :       if (sym->attr.function)
   15285        26322 :         gsym->type = GSYM_FUNCTION;
   15286        12423 :       else if (sym->attr.subroutine)
   15287        12283 :         gsym->type = GSYM_SUBROUTINE;
   15288              :       /* Mark as variable/procedure as defined, unless its an INTERFACE.  */
   15289        38745 :       gsym->defined = sym->attr.if_source != IFSRC_IFBODY;
   15290        38745 :       return;
   15291              :     }
   15292              : 
   15293         2952 :   if (sym->attr.flavor == FL_VARIABLE && gsym->type != GSYM_UNKNOWN)
   15294              :     {
   15295            1 :       gfc_error ("Variable %qs with binding label %qs at %L uses the same global "
   15296              :                  "identifier as entity at %L", sym->name,
   15297              :                  sym->binding_label, &sym->declared_at, &gsym->where);
   15298              :       /* Clear the binding label to prevent checking multiple times.  */
   15299            1 :       sym->binding_label = NULL;
   15300            1 :       return;
   15301              :     }
   15302              : 
   15303         2951 :   if (sym->attr.flavor == FL_VARIABLE && module
   15304           37 :       && (strcmp (module, gsym->mod_name) != 0
   15305           35 :           || strcmp (sym->name, gsym->sym_name) != 0))
   15306              :     {
   15307              :       /* This can only happen if the variable is defined in a module - if it
   15308              :          isn't the same module, reject it.  */
   15309            3 :       gfc_error ("Variable %qs from module %qs with binding label %qs at %L "
   15310              :                  "uses the same global identifier as entity at %L from module %qs",
   15311              :                  sym->name, module, sym->binding_label,
   15312              :                  &sym->declared_at, &gsym->where, gsym->mod_name);
   15313            3 :       sym->binding_label = NULL;
   15314            3 :       return;
   15315              :     }
   15316              : 
   15317         2948 :   if ((sym->attr.function || sym->attr.subroutine)
   15318         2912 :       && ((gsym->type != GSYM_SUBROUTINE && gsym->type != GSYM_FUNCTION)
   15319         2910 :            || (gsym->defined && sym->attr.if_source != IFSRC_IFBODY))
   15320         2527 :       && (sym != gsym->ns->proc_name && sym->attr.entry == 0)
   15321         2095 :       && (module != gsym->mod_name
   15322         2091 :           || strcmp (gsym->sym_name, sym->name) != 0
   15323         2091 :           || (module && strcmp (module, gsym->mod_name) != 0)))
   15324              :     {
   15325              :       /* Print an error if the procedure is defined multiple times; we have to
   15326              :          exclude references to the same procedure via module association or
   15327              :          multiple checks for the same procedure.  */
   15328            4 :       gfc_error ("Procedure %qs with binding label %qs at %L uses the same "
   15329              :                  "global identifier as entity at %L", sym->name,
   15330              :                  sym->binding_label, &sym->declared_at, &gsym->where);
   15331            4 :       sym->binding_label = NULL;
   15332            4 :       return;
   15333              :     }
   15334              : }
   15335              : 
   15336              : 
   15337              : /* Resolve an index expression.  */
   15338              : 
   15339              : static bool
   15340       268488 : resolve_index_expr (gfc_expr *e)
   15341              : {
   15342       268488 :   if (!gfc_resolve_expr (e))
   15343              :     return false;
   15344              : 
   15345       268478 :   if (!gfc_simplify_expr (e, 0))
   15346              :     return false;
   15347              : 
   15348       268476 :   if (!gfc_specification_expr (e))
   15349              :     return false;
   15350              : 
   15351              :   return true;
   15352              : }
   15353              : 
   15354              : 
   15355              : /* Resolve a charlen structure.  */
   15356              : 
   15357              : static bool
   15358       103944 : resolve_charlen (gfc_charlen *cl)
   15359              : {
   15360       103944 :   int k;
   15361       103944 :   bool saved_specification_expr;
   15362              : 
   15363       103944 :   if (cl->resolved)
   15364              :     return true;
   15365              : 
   15366        95382 :   cl->resolved = 1;
   15367        95382 :   saved_specification_expr = specification_expr;
   15368        95382 :   specification_expr = true;
   15369              : 
   15370        95382 :   if (cl->length_from_typespec)
   15371              :     {
   15372         1496 :       if (!gfc_resolve_expr (cl->length))
   15373              :         {
   15374            1 :           specification_expr = saved_specification_expr;
   15375            1 :           return false;
   15376              :         }
   15377              : 
   15378         1495 :       if (!gfc_simplify_expr (cl->length, 0))
   15379              :         {
   15380            0 :           specification_expr = saved_specification_expr;
   15381            0 :           return false;
   15382              :         }
   15383              : 
   15384              :       /* cl->length has been resolved.  It should have an integer type.  */
   15385         1495 :       if (cl->length
   15386         1494 :           && (cl->length->ts.type != BT_INTEGER || cl->length->rank != 0))
   15387              :         {
   15388            4 :           gfc_error ("Scalar INTEGER expression expected at %L",
   15389              :                      &cl->length->where);
   15390            4 :           return false;
   15391              :         }
   15392              :     }
   15393              :   else
   15394              :     {
   15395        93886 :       if (!resolve_index_expr (cl->length))
   15396              :         {
   15397           19 :           specification_expr = saved_specification_expr;
   15398           19 :           return false;
   15399              :         }
   15400              :     }
   15401              : 
   15402              :   /* F2008, 4.4.3.2:  If the character length parameter value evaluates to
   15403              :      a negative value, the length of character entities declared is zero.  */
   15404        95358 :   if (cl->length && cl->length->expr_type == EXPR_CONSTANT
   15405        57327 :       && mpz_sgn (cl->length->value.integer) < 0)
   15406            0 :     gfc_replace_expr (cl->length,
   15407              :                       gfc_get_int_expr (gfc_charlen_int_kind, NULL, 0));
   15408              : 
   15409              :   /* Check that the character length is not too large.  */
   15410        95358 :   k = gfc_validate_kind (BT_INTEGER, gfc_charlen_int_kind, false);
   15411        95358 :   if (cl->length && cl->length->expr_type == EXPR_CONSTANT
   15412        57327 :       && cl->length->ts.type == BT_INTEGER
   15413        57327 :       && mpz_cmp (cl->length->value.integer, gfc_integer_kinds[k].huge) > 0)
   15414              :     {
   15415            4 :       gfc_error ("String length at %L is too large", &cl->length->where);
   15416            4 :       specification_expr = saved_specification_expr;
   15417            4 :       return false;
   15418              :     }
   15419              : 
   15420        95354 :   specification_expr = saved_specification_expr;
   15421        95354 :   return true;
   15422              : }
   15423              : 
   15424              : 
   15425              : /* Test for non-constant shape arrays.  */
   15426              : 
   15427              : static bool
   15428       119608 : is_non_constant_shape_array (gfc_symbol *sym)
   15429              : {
   15430       119608 :   gfc_expr *e;
   15431       119608 :   int i;
   15432       119608 :   bool not_constant;
   15433              : 
   15434       119608 :   not_constant = false;
   15435       119608 :   if (sym->as != NULL)
   15436              :     {
   15437              :       /* Unfortunately, !gfc_is_compile_time_shape hits a legal case that
   15438              :          has not been simplified; parameter array references.  Do the
   15439              :          simplification now.  */
   15440       157401 :       for (i = 0; i < sym->as->rank + sym->as->corank; i++)
   15441              :         {
   15442        90802 :           if (i == GFC_MAX_DIMENSIONS)
   15443              :             break;
   15444              : 
   15445        90800 :           e = sym->as->lower[i];
   15446        90800 :           if (e && (!resolve_index_expr(e)
   15447        87901 :                     || !gfc_is_constant_expr (e)))
   15448              :             not_constant = true;
   15449        90800 :           e = sym->as->upper[i];
   15450        90800 :           if (e && (!resolve_index_expr(e)
   15451        86673 :                     || !gfc_is_constant_expr (e)))
   15452              :             not_constant = true;
   15453              :         }
   15454              :     }
   15455       119608 :   return not_constant;
   15456              : }
   15457              : 
   15458              : /* Given a symbol and an initialization expression, add code to initialize
   15459              :    the symbol to the function entry.  */
   15460              : static void
   15461         2210 : build_init_assign (gfc_symbol *sym, gfc_expr *init)
   15462              : {
   15463         2210 :   gfc_expr *lval;
   15464         2210 :   gfc_code *init_st;
   15465         2210 :   gfc_namespace *ns = sym->ns;
   15466              : 
   15467         2210 :   if (sym->attr.function && sym->result == sym && IS_PDT (sym))
   15468              :     {
   15469           46 :       gfc_free_expr (init);
   15470           46 :       return;
   15471              :     }
   15472              : 
   15473              :   /* Search for the function namespace if this is a contained
   15474              :      function without an explicit result.  */
   15475         2164 :   if (sym->attr.function && sym == sym->result
   15476          299 :       && sym->name != sym->ns->proc_name->name)
   15477              :     {
   15478          298 :       ns = ns->contained;
   15479         1376 :       for (;ns; ns = ns->sibling)
   15480         1315 :         if (strcmp (ns->proc_name->name, sym->name) == 0)
   15481              :           break;
   15482              :     }
   15483              : 
   15484         2164 :   if (ns == NULL)
   15485              :     {
   15486           61 :       gfc_free_expr (init);
   15487           61 :       return;
   15488              :     }
   15489              : 
   15490              :   /* Build an l-value expression for the result.  */
   15491         2103 :   lval = gfc_lval_expr_from_sym (sym);
   15492              : 
   15493              :   /* Add the code at scope entry.  */
   15494         2103 :   init_st = gfc_get_code (EXEC_INIT_ASSIGN);
   15495         2103 :   init_st->next = ns->code;
   15496         2103 :   ns->code = init_st;
   15497              : 
   15498              :   /* Assign the default initializer to the l-value.  */
   15499         2103 :   init_st->loc = sym->declared_at;
   15500         2103 :   init_st->expr1 = lval;
   15501         2103 :   init_st->expr2 = init;
   15502              : }
   15503              : 
   15504              : 
   15505              : /* Whether or not we can generate a default initializer for a symbol.  */
   15506              : 
   15507              : static bool
   15508        31149 : can_generate_init (gfc_symbol *sym)
   15509              : {
   15510        31149 :   symbol_attribute *a;
   15511        31149 :   if (!sym)
   15512              :     return false;
   15513        31149 :   a = &sym->attr;
   15514              : 
   15515              :   /* These symbols should never have a default initialization.  */
   15516        51324 :   return !(
   15517        31149 :        a->allocatable
   15518        31149 :     || a->external
   15519        29970 :     || a->pointer
   15520        29970 :     || (sym->ts.type == BT_CLASS && CLASS_DATA (sym)
   15521         5995 :         && (CLASS_DATA (sym)->attr.class_pointer
   15522         3977 :             || CLASS_DATA (sym)->attr.proc_pointer))
   15523        27952 :     || a->in_equivalence
   15524        27831 :     || a->in_common
   15525        27784 :     || a->data
   15526        27606 :     || sym->module
   15527        23711 :     || a->cray_pointee
   15528        23649 :     || a->cray_pointer
   15529        23649 :     || sym->assoc
   15530        20856 :     || (!a->referenced && !a->result)
   15531        20175 :     || (a->dummy && (a->intent != INTENT_OUT
   15532         1129 :                      || sym->ns->proc_name->attr.if_source == IFSRC_IFBODY))
   15533        20175 :     || (a->function && sym != sym->result)
   15534              :   );
   15535              : }
   15536              : 
   15537              : 
   15538              : /* Assign the default initializer to a derived type variable or result.  */
   15539              : 
   15540              : static void
   15541        11879 : apply_default_init (gfc_symbol *sym)
   15542              : {
   15543        11879 :   gfc_expr *init = NULL;
   15544              : 
   15545        11879 :   if (sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
   15546              :     return;
   15547              : 
   15548        11628 :   if (sym->ts.type == BT_DERIVED && sym->ts.u.derived)
   15549        10715 :     init = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
   15550              : 
   15551        11628 :   if (init == NULL && sym->ts.type != BT_CLASS)
   15552              :     return;
   15553              : 
   15554         1828 :   build_init_assign (sym, init);
   15555         1828 :   sym->attr.referenced = 1;
   15556              : }
   15557              : 
   15558              : 
   15559              : /* Build an initializer for a local. Returns null if the symbol should not have
   15560              :    a default initialization.  */
   15561              : 
   15562              : static gfc_expr *
   15563       209098 : build_default_init_expr (gfc_symbol *sym)
   15564              : {
   15565              :   /* These symbols should never have a default initialization.  */
   15566       209098 :   if (sym->attr.allocatable
   15567       195153 :       || sym->attr.external
   15568       195153 :       || sym->attr.dummy
   15569       127843 :       || sym->attr.pointer
   15570       119533 :       || sym->attr.in_equivalence
   15571       117157 :       || sym->attr.in_common
   15572       114055 :       || sym->attr.data
   15573       111757 :       || sym->module
   15574       109089 :       || sym->attr.cray_pointee
   15575       108788 :       || sym->attr.cray_pointer
   15576       108486 :       || sym->assoc)
   15577              :     return NULL;
   15578              : 
   15579              :   /* Get the appropriate init expression.  */
   15580       103566 :   return gfc_build_default_init_expr (&sym->ts, &sym->declared_at);
   15581              : }
   15582              : 
   15583              : /* Add an initialization expression to a local variable.  */
   15584              : static void
   15585       209098 : apply_default_init_local (gfc_symbol *sym)
   15586              : {
   15587       209098 :   gfc_expr *init = NULL;
   15588              : 
   15589              :   /* The symbol should be a variable or a function return value.  */
   15590       209098 :   if ((sym->attr.flavor != FL_VARIABLE && !sym->attr.function)
   15591       209098 :       || (sym->attr.function && sym->result != sym))
   15592              :     return;
   15593              : 
   15594              :   /* Try to build the initializer expression.  If we can't initialize
   15595              :      this symbol, then init will be NULL.  */
   15596       209098 :   init = build_default_init_expr (sym);
   15597       209098 :   if (init == NULL)
   15598              :     return;
   15599              : 
   15600              :   /* For saved variables, we don't want to add an initializer at function
   15601              :      entry, so we just add a static initializer. Note that automatic variables
   15602              :      are stack allocated even with -fno-automatic; we have also to exclude
   15603              :      result variable, which are also nonstatic.  */
   15604          419 :   if (!sym->attr.automatic
   15605          419 :       && (sym->attr.save || sym->ns->save_all
   15606          377 :           || (flag_max_stack_var_size == 0 && !sym->attr.result
   15607           27 :               && (sym->ns->proc_name && !sym->ns->proc_name->attr.recursive)
   15608           14 :               && (!sym->attr.dimension || !is_non_constant_shape_array (sym)))))
   15609              :     {
   15610              :       /* Don't clobber an existing initializer!  */
   15611           37 :       gcc_assert (sym->value == NULL);
   15612           37 :       sym->value = init;
   15613           37 :       return;
   15614              :     }
   15615              : 
   15616          382 :   build_init_assign (sym, init);
   15617              : }
   15618              : 
   15619              : 
   15620              : /* Resolution of common features of flavors variable and procedure.  */
   15621              : 
   15622              : static bool
   15623      1011837 : resolve_fl_var_and_proc (gfc_symbol *sym, int mp_flag)
   15624              : {
   15625      1011837 :   gfc_array_spec *as;
   15626              : 
   15627      1011837 :   if (sym->ts.type == BT_CLASS && sym->attr.class_ok
   15628        20124 :       && sym->ts.u.derived && CLASS_DATA (sym))
   15629        20119 :     as = CLASS_DATA (sym)->as;
   15630              :   else
   15631       991718 :     as = sym->as;
   15632              : 
   15633              :   /* Constraints on deferred shape variable.  */
   15634      1011837 :   if (as == NULL || as->type != AS_DEFERRED)
   15635              :     {
   15636       986953 :       bool pointer, allocatable, dimension;
   15637              : 
   15638       986953 :       if (sym->ts.type == BT_CLASS && sym->attr.class_ok
   15639        16798 :           && sym->ts.u.derived && CLASS_DATA (sym))
   15640              :         {
   15641        16793 :           pointer = CLASS_DATA (sym)->attr.class_pointer;
   15642        16793 :           allocatable = CLASS_DATA (sym)->attr.allocatable;
   15643        16793 :           dimension = CLASS_DATA (sym)->attr.dimension;
   15644              :         }
   15645              :       else
   15646              :         {
   15647       970160 :           pointer = sym->attr.pointer && !sym->attr.select_type_temporary;
   15648       970160 :           allocatable = sym->attr.allocatable;
   15649       970160 :           dimension = sym->attr.dimension;
   15650              :         }
   15651              : 
   15652       986953 :       if (allocatable)
   15653              :         {
   15654         8283 :           if (dimension
   15655         8283 :               && as
   15656          524 :               && as->type != AS_ASSUMED_RANK
   15657            5 :               && !sym->attr.select_rank_temporary)
   15658              :             {
   15659            3 :               gfc_error ("Allocatable array %qs at %L must have a deferred "
   15660              :                          "shape or assumed rank", sym->name, &sym->declared_at);
   15661            3 :               return false;
   15662              :             }
   15663         8280 :           else if (!gfc_notify_std (GFC_STD_F2003, "Scalar object "
   15664              :                                     "%qs at %L may not be ALLOCATABLE",
   15665              :                                     sym->name, &sym->declared_at))
   15666              :             return false;
   15667              :         }
   15668              : 
   15669       986949 :       if (pointer && dimension && as->type != AS_ASSUMED_RANK)
   15670              :         {
   15671            4 :           gfc_error ("Array pointer %qs at %L must have a deferred shape or "
   15672              :                      "assumed rank", sym->name, &sym->declared_at);
   15673            4 :           sym->error = 1;
   15674            4 :           return false;
   15675              :         }
   15676              :     }
   15677              :   else
   15678              :     {
   15679        24884 :       if (!mp_flag && !sym->attr.allocatable && !sym->attr.pointer
   15680         4855 :           && sym->ts.type != BT_CLASS && !sym->assoc)
   15681              :         {
   15682            3 :           gfc_error ("Array %qs at %L cannot have a deferred shape",
   15683              :                      sym->name, &sym->declared_at);
   15684            3 :           return false;
   15685              :          }
   15686              :     }
   15687              : 
   15688              :   /* Constraints on polymorphic variables.  */
   15689      1011826 :   if (sym->ts.type == BT_CLASS && !(sym->result && sym->result != sym))
   15690              :     {
   15691              :       /* F03:C502.  */
   15692        19432 :       if (sym->attr.class_ok
   15693        19376 :           && sym->ts.u.derived
   15694        19371 :           && !sym->attr.select_type_temporary
   15695        18219 :           && !UNLIMITED_POLY (sym)
   15696        15541 :           && CLASS_DATA (sym)
   15697        15541 :           && CLASS_DATA (sym)->ts.u.derived
   15698        34972 :           && !gfc_type_is_extensible (CLASS_DATA (sym)->ts.u.derived))
   15699              :         {
   15700            5 :           gfc_error ("Type %qs of CLASS variable %qs at %L is not extensible",
   15701            5 :                      CLASS_DATA (sym)->ts.u.derived->name, sym->name,
   15702              :                      &sym->declared_at);
   15703            5 :           return false;
   15704              :         }
   15705              : 
   15706              :       /* F03:C509.  */
   15707              :       /* Assume that use associated symbols were checked in the module ns.
   15708              :          Class-variables that are associate-names are also something special
   15709              :          and excepted from the test.  */
   15710        19427 :       if (!sym->attr.class_ok && !sym->attr.use_assoc && !sym->assoc
   15711           54 :           && !sym->attr.select_type_temporary
   15712           54 :           && !sym->attr.select_rank_temporary)
   15713              :         {
   15714           54 :           gfc_error ("CLASS variable %qs at %L must be dummy, allocatable "
   15715              :                      "or pointer", sym->name, &sym->declared_at);
   15716           54 :           return false;
   15717              :         }
   15718              :     }
   15719              : 
   15720              :   return true;
   15721              : }
   15722              : 
   15723              : 
   15724              : /* Additional checks for symbols with flavor variable and derived
   15725              :    type.  To be called from resolve_fl_variable.  */
   15726              : 
   15727              : static bool
   15728        84700 : resolve_fl_variable_derived (gfc_symbol *sym, int no_init_flag)
   15729              : {
   15730        84700 :   gcc_assert (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS);
   15731              : 
   15732              :   /* Check to see if a derived type is blocked from being host
   15733              :      associated by the presence of another class I symbol in the same
   15734              :      namespace.  14.6.1.3 of the standard and the discussion on
   15735              :      comp.lang.fortran.  */
   15736        84700 :   if (sym->ts.u.derived
   15737        84695 :       && sym->ns != sym->ts.u.derived->ns
   15738        48479 :       && !sym->ts.u.derived->attr.use_assoc
   15739        18079 :       && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)
   15740              :     {
   15741        17090 :       gfc_symbol *s;
   15742        17090 :       gfc_find_symbol (sym->ts.u.derived->name, sym->ns, 0, &s);
   15743        17090 :       if (s && s->attr.generic)
   15744            2 :         s = gfc_find_dt_in_generic (s);
   15745        17090 :       if (s && !gfc_fl_struct (s->attr.flavor))
   15746              :         {
   15747            2 :           gfc_error ("The type %qs cannot be host associated at %L "
   15748              :                      "because it is blocked by an incompatible object "
   15749              :                      "of the same name declared at %L",
   15750            2 :                      sym->ts.u.derived->name, &sym->declared_at,
   15751              :                      &s->declared_at);
   15752            2 :           return false;
   15753              :         }
   15754              :     }
   15755              : 
   15756              :   /* 4th constraint in section 11.3: "If an object of a type for which
   15757              :      component-initialization is specified (R429) appears in the
   15758              :      specification-part of a module and does not have the ALLOCATABLE
   15759              :      or POINTER attribute, the object shall have the SAVE attribute."
   15760              : 
   15761              :      The check for initializers is performed with
   15762              :      gfc_has_default_initializer because gfc_default_initializer generates
   15763              :      a hidden default for allocatable components.  */
   15764        84021 :   if (!(sym->value || no_init_flag) && sym->ns->proc_name
   15765        19155 :       && sym->ns->proc_name->attr.flavor == FL_MODULE
   15766          423 :       && !(sym->ns->save_all && !sym->attr.automatic) && !sym->attr.save
   15767           21 :       && !sym->attr.pointer && !sym->attr.allocatable
   15768           21 :       && gfc_has_default_initializer (sym->ts.u.derived)
   15769        84707 :       && !gfc_notify_std (GFC_STD_F2008, "Implied SAVE for module variable "
   15770              :                           "%qs at %L, needed due to the default "
   15771              :                           "initialization", sym->name, &sym->declared_at))
   15772              :     return false;
   15773              : 
   15774              :   /* Assign default initializer.  */
   15775        84696 :   if (!(sym->value || sym->attr.pointer || sym->attr.allocatable)
   15776        78309 :       && (!no_init_flag
   15777        61022 :           || (sym->attr.intent == INTENT_OUT
   15778         3321 :               && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY)))
   15779        20434 :     sym->value = gfc_generate_initializer (&sym->ts, can_generate_init (sym));
   15780              : 
   15781              :   return true;
   15782              : }
   15783              : 
   15784              : 
   15785              : /* F2008, C402 (R401):  A colon shall not be used as a type-param-value
   15786              :    except in the declaration of an entity or component that has the POINTER
   15787              :    or ALLOCATABLE attribute.  */
   15788              : 
   15789              : static bool
   15790      1591781 : deferred_requirements (gfc_symbol *sym)
   15791              : {
   15792      1591781 :   if (sym->ts.deferred
   15793         8104 :       && !(sym->attr.pointer
   15794         2442 :            || sym->attr.allocatable
   15795           91 :            || sym->attr.associate_var
   15796            7 :            || sym->attr.omp_udr_artificial_var))
   15797              :     {
   15798              :       /* If a function has a result variable, only check the variable.  */
   15799            7 :       if (sym->result && sym->name != sym->result->name)
   15800              :         return true;
   15801              : 
   15802            6 :       gfc_error ("Entity %qs at %L has a deferred type parameter and "
   15803              :                  "requires either the POINTER or ALLOCATABLE attribute",
   15804              :                  sym->name, &sym->declared_at);
   15805            6 :       return false;
   15806              :     }
   15807              :   return true;
   15808              : }
   15809              : 
   15810              : 
   15811              : /* Resolve symbols with flavor variable.  */
   15812              : 
   15813              : static bool
   15814       678819 : resolve_fl_variable (gfc_symbol *sym, int mp_flag)
   15815              : {
   15816       678819 :   const char *auto_save_msg = G_("Automatic object %qs at %L cannot have the "
   15817              :                                  "SAVE attribute");
   15818              : 
   15819       678819 :   if (!resolve_fl_var_and_proc (sym, mp_flag))
   15820              :     return false;
   15821              : 
   15822              :   /* Set this flag to check that variables are parameters of all entries.
   15823              :      This check is effected by the call to gfc_resolve_expr through
   15824              :      is_non_constant_shape_array.  */
   15825       678759 :   bool saved_specification_expr = specification_expr;
   15826       678759 :   gfc_symbol *saved_specification_expr_symbol = specification_expr_symbol;
   15827       678759 :   specification_expr = true;
   15828       678759 :   specification_expr_symbol = sym;
   15829              : 
   15830       678759 :   if (sym->ns->proc_name
   15831       678664 :       && (sym->ns->proc_name->attr.flavor == FL_MODULE
   15832       673449 :           || sym->ns->proc_name->attr.is_main_program)
   15833        84228 :       && !sym->attr.use_assoc
   15834        80884 :       && !sym->attr.allocatable
   15835        75012 :       && !sym->attr.pointer
   15836       750058 :       && is_non_constant_shape_array (sym))
   15837              :     {
   15838              :       /* F08:C541. The shape of an array defined in a main program or module
   15839              :        * needs to be constant.  */
   15840            3 :       gfc_error ("The module or main program array %qs at %L must "
   15841              :                  "have constant shape", sym->name, &sym->declared_at);
   15842            3 :       specification_expr = saved_specification_expr;
   15843            3 :       specification_expr_symbol = saved_specification_expr_symbol;
   15844            3 :       return false;
   15845              :     }
   15846              : 
   15847              :   /* Constraints on deferred type parameter.  */
   15848       678756 :   if (!deferred_requirements (sym))
   15849              :     return false;
   15850              : 
   15851       678752 :   if (sym->ts.type == BT_CHARACTER && !sym->attr.associate_var)
   15852              :     {
   15853              :       /* Make sure that character string variables with assumed length are
   15854              :          dummy arguments.  */
   15855        36582 :       gfc_expr *e = NULL;
   15856              : 
   15857        36582 :       if (sym->ts.u.cl)
   15858        36582 :         e = sym->ts.u.cl->length;
   15859              :       else
   15860              :         return false;
   15861              : 
   15862        36582 :       if (e == NULL && !sym->attr.dummy && !sym->attr.result
   15863         2652 :           && !sym->ts.deferred && !sym->attr.select_type_temporary
   15864            2 :           && !sym->attr.omp_udr_artificial_var)
   15865              :         {
   15866            2 :           gfc_error ("Entity with assumed character length at %L must be a "
   15867              :                      "dummy argument or a PARAMETER", &sym->declared_at);
   15868            2 :           specification_expr = saved_specification_expr;
   15869            2 :           specification_expr_symbol = saved_specification_expr_symbol;
   15870            2 :           return false;
   15871              :         }
   15872              : 
   15873        21174 :       if (e && sym->attr.save == SAVE_EXPLICIT && !gfc_is_constant_expr (e))
   15874              :         {
   15875            1 :           gfc_error (auto_save_msg, sym->name, &sym->declared_at);
   15876            1 :           specification_expr = saved_specification_expr;
   15877            1 :           specification_expr_symbol = saved_specification_expr_symbol;
   15878            1 :           return false;
   15879              :         }
   15880              : 
   15881        36579 :       if (!gfc_is_constant_expr (e)
   15882        36579 :           && !(e->expr_type == EXPR_VARIABLE
   15883         1436 :                && e->symtree->n.sym->attr.flavor == FL_PARAMETER))
   15884              :         {
   15885         2232 :           if (!sym->attr.use_assoc && sym->ns->proc_name
   15886         1716 :               && (sym->ns->proc_name->attr.flavor == FL_MODULE
   15887         1715 :                   || sym->ns->proc_name->attr.is_main_program))
   15888              :             {
   15889            3 :               gfc_error ("%qs at %L must have constant character length "
   15890              :                         "in this context", sym->name, &sym->declared_at);
   15891            3 :               specification_expr = saved_specification_expr;
   15892            3 :               specification_expr_symbol = saved_specification_expr_symbol;
   15893            3 :               return false;
   15894              :             }
   15895         2229 :           if (sym->attr.in_common)
   15896              :             {
   15897            1 :               gfc_error ("COMMON variable %qs at %L must have constant "
   15898              :                          "character length", sym->name, &sym->declared_at);
   15899            1 :               specification_expr = saved_specification_expr;
   15900            1 :               specification_expr_symbol = saved_specification_expr_symbol;
   15901            1 :               return false;
   15902              :             }
   15903              :         }
   15904              :     }
   15905              : 
   15906       678745 :   if (sym->value == NULL && sym->attr.referenced
   15907       211045 :       && !(sym->as && sym->as->type == AS_ASSUMED_RANK))
   15908       209098 :     apply_default_init_local (sym); /* Try to apply a default initialization.  */
   15909              : 
   15910              :   /* Determine if the symbol may not have an initializer.  */
   15911       678745 :   int no_init_flag = 0, automatic_flag = 0;
   15912       678745 :   if (sym->attr.allocatable || sym->attr.external || sym->attr.dummy
   15913       173746 :       || sym->attr.intrinsic || sym->attr.result)
   15914              :     no_init_flag = 1;
   15915       141119 :   else if ((sym->attr.dimension || sym->attr.codimension) && !sym->attr.pointer
   15916       176291 :            && is_non_constant_shape_array (sym))
   15917              :     {
   15918         1355 :       no_init_flag = automatic_flag = 1;
   15919              : 
   15920              :       /* Also, they must not have the SAVE attribute.
   15921              :          SAVE_IMPLICIT is checked below.  */
   15922         1355 :       if (sym->as && sym->attr.codimension)
   15923              :         {
   15924            7 :           int corank = sym->as->corank;
   15925            7 :           sym->as->corank = 0;
   15926            7 :           no_init_flag = automatic_flag = is_non_constant_shape_array (sym);
   15927            7 :           sym->as->corank = corank;
   15928              :         }
   15929         1355 :       if (automatic_flag && sym->attr.save == SAVE_EXPLICIT)
   15930              :         {
   15931            2 :           gfc_error (auto_save_msg, sym->name, &sym->declared_at);
   15932            2 :           specification_expr = saved_specification_expr;
   15933            2 :           specification_expr_symbol = saved_specification_expr_symbol;
   15934            2 :           return false;
   15935              :         }
   15936              :     }
   15937              : 
   15938              :   /* Ensure that any initializer is simplified.  */
   15939       678743 :   if (sym->value)
   15940         8360 :     gfc_simplify_expr (sym->value, 1);
   15941              : 
   15942              :   /* Reject illegal initializers.  */
   15943       678743 :   if (!sym->mark && sym->value)
   15944              :     {
   15945         8360 :       if (sym->attr.allocatable || (sym->ts.type == BT_CLASS
   15946           67 :                                     && CLASS_DATA (sym)->attr.allocatable))
   15947            1 :         gfc_error ("Allocatable %qs at %L cannot have an initializer",
   15948              :                    sym->name, &sym->declared_at);
   15949         8359 :       else if (sym->attr.external)
   15950            0 :         gfc_error ("External %qs at %L cannot have an initializer",
   15951              :                    sym->name, &sym->declared_at);
   15952         8359 :       else if (sym->attr.dummy)
   15953            3 :         gfc_error ("Dummy %qs at %L cannot have an initializer",
   15954              :                    sym->name, &sym->declared_at);
   15955         8356 :       else if (sym->attr.intrinsic)
   15956            0 :         gfc_error ("Intrinsic %qs at %L cannot have an initializer",
   15957              :                    sym->name, &sym->declared_at);
   15958         8356 :       else if (sym->attr.result)
   15959            1 :         gfc_error ("Function result %qs at %L cannot have an initializer",
   15960              :                    sym->name, &sym->declared_at);
   15961         8355 :       else if (automatic_flag)
   15962            5 :         gfc_error ("Automatic array %qs at %L cannot have an initializer",
   15963              :                    sym->name, &sym->declared_at);
   15964              :       else
   15965         8350 :         goto no_init_error;
   15966           10 :       specification_expr = saved_specification_expr;
   15967           10 :       specification_expr_symbol = saved_specification_expr_symbol;
   15968           10 :       return false;
   15969              :     }
   15970              : 
   15971       670383 : no_init_error:
   15972       678733 :   if (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
   15973              :     {
   15974        84700 :       bool res = resolve_fl_variable_derived (sym, no_init_flag);
   15975        84700 :       specification_expr = saved_specification_expr;
   15976        84700 :       specification_expr_symbol = saved_specification_expr_symbol;
   15977        84700 :       return res;
   15978              :     }
   15979              : 
   15980       594033 :   specification_expr = saved_specification_expr;
   15981       594033 :   specification_expr_symbol = saved_specification_expr_symbol;
   15982       594033 :   return true;
   15983              : }
   15984              : 
   15985              : 
   15986              : /* Compare the dummy characteristics of a module procedure interface
   15987              :    declaration with the corresponding declaration in a submodule.  */
   15988              : static gfc_formal_arglist *new_formal;
   15989              : static char errmsg[200];
   15990              : 
   15991              : static void
   15992         1352 : compare_fsyms (gfc_symbol *sym)
   15993              : {
   15994         1352 :   gfc_symbol *fsym;
   15995              : 
   15996         1352 :   if (sym == NULL || new_formal == NULL)
   15997              :     return;
   15998              : 
   15999         1352 :   fsym = new_formal->sym;
   16000              : 
   16001         1352 :   if (sym == fsym)
   16002              :     return;
   16003              : 
   16004         1328 :   if (strcmp (sym->name, fsym->name) == 0)
   16005              :     {
   16006          523 :       if (!gfc_check_dummy_characteristics (fsym, sym, true, errmsg, 200))
   16007            2 :         gfc_error ("%s at %L", errmsg, &fsym->declared_at);
   16008              :     }
   16009              : }
   16010              : 
   16011              : 
   16012              : /* Resolve a procedure.  */
   16013              : 
   16014              : static bool
   16015       501355 : resolve_fl_procedure (gfc_symbol *sym, int mp_flag)
   16016              : {
   16017       501355 :   gfc_formal_arglist *arg;
   16018       501355 :   bool allocatable_or_pointer = false;
   16019              : 
   16020       501355 :   if (sym->attr.function
   16021       501355 :       && !resolve_fl_var_and_proc (sym, mp_flag))
   16022              :     return false;
   16023              : 
   16024              :   /* Constraints on deferred type parameter.  */
   16025       501345 :   if (!deferred_requirements (sym))
   16026              :     return false;
   16027              : 
   16028       501344 :   if (sym->ts.type == BT_CHARACTER)
   16029              :     {
   16030        11973 :       gfc_charlen *cl = sym->ts.u.cl;
   16031              : 
   16032         7734 :       if (cl && cl->length && gfc_is_constant_expr (cl->length)
   16033        13280 :              && !resolve_charlen (cl))
   16034              :         return false;
   16035              : 
   16036        11972 :       if ((!cl || !cl->length || cl->length->expr_type != EXPR_CONSTANT)
   16037        10666 :           && sym->attr.proc == PROC_ST_FUNCTION)
   16038              :         {
   16039            0 :           gfc_error ("Character-valued statement function %qs at %L must "
   16040              :                      "have constant length", sym->name, &sym->declared_at);
   16041            0 :           return false;
   16042              :         }
   16043              :     }
   16044              : 
   16045              :   /* Ensure that derived type for are not of a private type.  Internal
   16046              :      module procedures are excluded by 2.2.3.3 - i.e., they are not
   16047              :      externally accessible and can access all the objects accessible in
   16048              :      the host.  */
   16049       115657 :   if (!(sym->ns->parent && sym->ns->parent->proc_name
   16050       115657 :         && sym->ns->parent->proc_name->attr.flavor == FL_MODULE)
   16051       590438 :       && gfc_check_symbol_access (sym))
   16052              :     {
   16053       467488 :       gfc_interface *iface;
   16054              : 
   16055       996130 :       for (arg = gfc_sym_get_dummy_args (sym); arg; arg = arg->next)
   16056              :         {
   16057       528643 :           if (arg->sym
   16058       528503 :               && arg->sym->ts.type == BT_DERIVED
   16059        43717 :               && arg->sym->ts.u.derived
   16060        43717 :               && !arg->sym->ts.u.derived->attr.use_assoc
   16061         4333 :               && !gfc_check_symbol_access (arg->sym->ts.u.derived)
   16062       528652 :               && !gfc_notify_std (GFC_STD_F2003, "%qs is of a PRIVATE type "
   16063              :                                   "and cannot be a dummy argument"
   16064              :                                   " of %qs, which is PUBLIC at %L",
   16065            9 :                                   arg->sym->name, sym->name,
   16066              :                                   &sym->declared_at))
   16067              :             {
   16068              :               /* Stop this message from recurring.  */
   16069            1 :               arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
   16070            1 :               return false;
   16071              :             }
   16072              :         }
   16073              : 
   16074              :       /* PUBLIC interfaces may expose PRIVATE procedures that take types
   16075              :          PRIVATE to the containing module.  */
   16076       664522 :       for (iface = sym->generic; iface; iface = iface->next)
   16077              :         {
   16078       463445 :           for (arg = gfc_sym_get_dummy_args (iface->sym); arg; arg = arg->next)
   16079              :             {
   16080       266410 :               if (arg->sym
   16081       266378 :                   && arg->sym->ts.type == BT_DERIVED
   16082         8033 :                   && !arg->sym->ts.u.derived->attr.use_assoc
   16083          232 :                   && !gfc_check_symbol_access (arg->sym->ts.u.derived)
   16084       266414 :                   && !gfc_notify_std (GFC_STD_F2003, "Procedure %qs in "
   16085              :                                       "PUBLIC interface %qs at %L "
   16086              :                                       "takes dummy arguments of %qs which "
   16087              :                                       "is PRIVATE", iface->sym->name,
   16088            4 :                                       sym->name, &iface->sym->declared_at,
   16089            4 :                                       gfc_typename(&arg->sym->ts)))
   16090              :                 {
   16091              :                   /* Stop this message from recurring.  */
   16092            1 :                   arg->sym->ts.u.derived->attr.access = ACCESS_PUBLIC;
   16093            1 :                   return false;
   16094              :                 }
   16095              :              }
   16096              :         }
   16097              :     }
   16098              : 
   16099       501341 :   if (sym->attr.function && sym->value && sym->attr.proc != PROC_ST_FUNCTION
   16100           86 :       && !sym->attr.proc_pointer)
   16101              :     {
   16102            2 :       gfc_error ("Function %qs at %L cannot have an initializer",
   16103              :                  sym->name, &sym->declared_at);
   16104              : 
   16105              :       /* Make sure no second error is issued for this.  */
   16106            2 :       sym->value->error = 1;
   16107            2 :       return false;
   16108              :     }
   16109              : 
   16110              :   /* An external symbol may not have an initializer because it is taken to be
   16111              :      a procedure. Exception: Procedure Pointers.  */
   16112       501339 :   if (sym->attr.external && sym->value && !sym->attr.proc_pointer)
   16113              :     {
   16114            0 :       gfc_error ("External object %qs at %L may not have an initializer",
   16115              :                  sym->name, &sym->declared_at);
   16116            0 :       return false;
   16117              :     }
   16118              : 
   16119              :   /* An elemental function is required to return a scalar 12.7.1  */
   16120       501339 :   if (sym->attr.elemental && sym->attr.function
   16121        86548 :       && (sym->as || (sym->ts.type == BT_CLASS && sym->attr.class_ok
   16122            2 :                       && CLASS_DATA (sym)->as)))
   16123              :     {
   16124            3 :       gfc_error ("ELEMENTAL function %qs at %L must have a scalar "
   16125              :                  "result", sym->name, &sym->declared_at);
   16126              :       /* Reset so that the error only occurs once.  */
   16127            3 :       sym->attr.elemental = 0;
   16128            3 :       return false;
   16129              :     }
   16130              : 
   16131       501336 :   if (sym->attr.proc == PROC_ST_FUNCTION
   16132          223 :       && (sym->attr.allocatable || sym->attr.pointer))
   16133              :     {
   16134            2 :       gfc_error ("Statement function %qs at %L may not have pointer or "
   16135              :                  "allocatable attribute", sym->name, &sym->declared_at);
   16136            2 :       return false;
   16137              :     }
   16138              : 
   16139              :   /* 5.1.1.5 of the Standard: A function name declared with an asterisk
   16140              :      char-len-param shall not be array-valued, pointer-valued, recursive
   16141              :      or pure.  ....snip... A character value of * may only be used in the
   16142              :      following ways: (i) Dummy arg of procedure - dummy associates with
   16143              :      actual length; (ii) To declare a named constant; or (iii) External
   16144              :      function - but length must be declared in calling scoping unit.  */
   16145       501334 :   if (sym->attr.function
   16146       332999 :       && sym->ts.type == BT_CHARACTER && !sym->ts.deferred
   16147         6844 :       && sym->ts.u.cl && sym->ts.u.cl->length == NULL)
   16148              :     {
   16149          180 :       if ((sym->as && sym->as->rank) || (sym->attr.pointer)
   16150          178 :           || (sym->attr.recursive) || (sym->attr.pure))
   16151              :         {
   16152            4 :           if (sym->as && sym->as->rank)
   16153            1 :             gfc_error ("CHARACTER(*) function %qs at %L cannot be "
   16154              :                        "array-valued", sym->name, &sym->declared_at);
   16155              : 
   16156            4 :           if (sym->attr.pointer)
   16157            1 :             gfc_error ("CHARACTER(*) function %qs at %L cannot be "
   16158              :                        "pointer-valued", sym->name, &sym->declared_at);
   16159              : 
   16160            4 :           if (sym->attr.pure)
   16161            1 :             gfc_error ("CHARACTER(*) function %qs at %L cannot be "
   16162              :                        "pure", sym->name, &sym->declared_at);
   16163              : 
   16164            4 :           if (sym->attr.recursive)
   16165            1 :             gfc_error ("CHARACTER(*) function %qs at %L cannot be "
   16166              :                        "recursive", sym->name, &sym->declared_at);
   16167              : 
   16168              :           return false;
   16169              :         }
   16170              : 
   16171              :       /* Appendix B.2 of the standard.  Contained functions give an
   16172              :          error anyway.  Deferred character length is an F2003 feature.
   16173              :          Don't warn on intrinsic conversion functions, which start
   16174              :          with two underscores.  */
   16175          176 :       if (!sym->attr.contained && !sym->ts.deferred
   16176          172 :           && (sym->name[0] != '_' || sym->name[1] != '_'))
   16177          172 :         gfc_notify_std (GFC_STD_F95_OBS,
   16178              :                         "CHARACTER(*) function %qs at %L",
   16179              :                         sym->name, &sym->declared_at);
   16180              :     }
   16181              : 
   16182              :   /* F2008, C1218.  */
   16183       501330 :   if (sym->attr.elemental)
   16184              :     {
   16185        89850 :       if (sym->attr.proc_pointer)
   16186              :         {
   16187            7 :           const char* name = (sym->attr.result ? sym->ns->proc_name->name
   16188              :                                                : sym->name);
   16189            7 :           gfc_error ("Procedure pointer %qs at %L shall not be elemental",
   16190              :                      name, &sym->declared_at);
   16191            7 :           return false;
   16192              :         }
   16193        89843 :       if (sym->attr.dummy)
   16194              :         {
   16195            3 :           gfc_error ("Dummy procedure %qs at %L shall not be elemental",
   16196              :                      sym->name, &sym->declared_at);
   16197            3 :           return false;
   16198              :         }
   16199              :     }
   16200              : 
   16201              :   /* F2018, C15100: "The result of an elemental function shall be scalar,
   16202              :      and shall not have the POINTER or ALLOCATABLE attribute."  The scalar
   16203              :      pointer is tested and caught elsewhere.  */
   16204       501320 :   if (sym->result)
   16205       280094 :     allocatable_or_pointer = sym->result->ts.type == BT_CLASS
   16206       280094 :                              && CLASS_DATA (sym->result) ?
   16207         1696 :                              (CLASS_DATA (sym->result)->attr.allocatable
   16208         1696 :                               || CLASS_DATA (sym->result)->attr.pointer) :
   16209       278398 :                              (sym->result->attr.allocatable
   16210       278398 :                               || sym->result->attr.pointer);
   16211              : 
   16212       501320 :   if (sym->attr.elemental && sym->result
   16213        86165 :       && allocatable_or_pointer)
   16214              :     {
   16215            4 :       gfc_error ("Function result variable %qs at %L of elemental "
   16216              :                  "function %qs shall not have an ALLOCATABLE or POINTER "
   16217              :                  "attribute", sym->result->name,
   16218              :                  &sym->result->declared_at, sym->name);
   16219            4 :       return false;
   16220              :     }
   16221              : 
   16222              :   /* F2018:C1585: "The function result of a pure function shall not be both
   16223              :      polymorphic and allocatable, or have a polymorphic allocatable ultimate
   16224              :      component."  */
   16225       501316 :   if (sym->attr.pure && sym->result && sym->ts.u.derived)
   16226              :     {
   16227         2544 :       if (sym->ts.type == BT_CLASS
   16228            5 :           && sym->attr.class_ok
   16229            4 :           && CLASS_DATA (sym->result)
   16230            4 :           && CLASS_DATA (sym->result)->attr.allocatable)
   16231              :         {
   16232            4 :           gfc_error ("Result variable %qs of pure function at %L is "
   16233              :                      "polymorphic allocatable",
   16234              :                      sym->result->name, &sym->result->declared_at);
   16235            4 :           return false;
   16236              :         }
   16237              : 
   16238         2540 :       if (sym->ts.type == BT_DERIVED && sym->ts.u.derived->components)
   16239              :         {
   16240              :           gfc_component *c = sym->ts.u.derived->components;
   16241         4805 :           for (; c; c = c->next)
   16242         2574 :             if (c->ts.type == BT_CLASS
   16243            2 :                 && CLASS_DATA (c)
   16244            2 :                 && CLASS_DATA (c)->attr.allocatable)
   16245              :               {
   16246            2 :                 gfc_error ("Result variable %qs of pure function at %L has "
   16247              :                            "polymorphic allocatable component %qs",
   16248              :                            sym->result->name, &sym->result->declared_at,
   16249              :                            c->name);
   16250            2 :                 return false;
   16251              :               }
   16252              :         }
   16253              :     }
   16254              : 
   16255       501310 :   if (sym->attr.is_bind_c && sym->attr.is_c_interop != 1)
   16256              :     {
   16257         7238 :       gfc_formal_arglist *curr_arg;
   16258         7238 :       int has_non_interop_arg = 0;
   16259              : 
   16260         7238 :       if (!verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
   16261         7238 :                               sym->common_block))
   16262              :         {
   16263              :           /* Clear these to prevent looking at them again if there was an
   16264              :              error.  */
   16265            2 :           sym->attr.is_bind_c = 0;
   16266            2 :           sym->attr.is_c_interop = 0;
   16267            2 :           sym->ts.is_c_interop = 0;
   16268              :         }
   16269              :       else
   16270              :         {
   16271              :           /* So far, no errors have been found.  */
   16272              :           sym->attr.is_c_interop = 1;
   16273              :           sym->ts.is_c_interop = 1;
   16274              :         }
   16275              : 
   16276         7238 :       curr_arg = gfc_sym_get_dummy_args (sym);
   16277        31851 :       while (curr_arg != NULL)
   16278              :         {
   16279              :           /* Skip implicitly typed dummy args here.  */
   16280        17375 :           if (curr_arg->sym && curr_arg->sym->attr.implicit_type == 0)
   16281        17318 :             if (!gfc_verify_c_interop_param (curr_arg->sym))
   16282              :               /* If something is found to fail, record the fact so we
   16283              :                  can mark the symbol for the procedure as not being
   16284              :                  BIND(C) to try and prevent multiple errors being
   16285              :                  reported.  */
   16286        17375 :               has_non_interop_arg = 1;
   16287              : 
   16288        17375 :           curr_arg = curr_arg->next;
   16289              :         }
   16290              : 
   16291              :       /* See if any of the arguments were not interoperable and if so, clear
   16292              :          the procedure symbol to prevent duplicate error messages.  */
   16293         7238 :       if (has_non_interop_arg != 0)
   16294              :         {
   16295          128 :           sym->attr.is_c_interop = 0;
   16296          128 :           sym->ts.is_c_interop = 0;
   16297          128 :           sym->attr.is_bind_c = 0;
   16298              :         }
   16299              :     }
   16300              : 
   16301       501310 :   if (!sym->attr.proc_pointer)
   16302              :     {
   16303       500203 :       if (sym->attr.save == SAVE_EXPLICIT)
   16304              :         {
   16305            5 :           gfc_error ("PROCEDURE attribute conflicts with SAVE attribute "
   16306              :                      "in %qs at %L", sym->name, &sym->declared_at);
   16307            5 :           return false;
   16308              :         }
   16309       500198 :       if (sym->attr.intent)
   16310              :         {
   16311            1 :           gfc_error ("PROCEDURE attribute conflicts with INTENT attribute "
   16312              :                      "in %qs at %L", sym->name, &sym->declared_at);
   16313            1 :           return false;
   16314              :         }
   16315       500197 :       if (sym->attr.subroutine && sym->attr.result)
   16316              :         {
   16317            2 :           gfc_error ("PROCEDURE attribute conflicts with RESULT attribute "
   16318            2 :                      "in %qs at %L", sym->ns->proc_name->name, &sym->declared_at);
   16319            2 :           return false;
   16320              :         }
   16321       500195 :       if (sym->attr.external && sym->attr.function && !sym->attr.module_procedure
   16322       145004 :           && ((sym->attr.if_source == IFSRC_DECL && !sym->attr.procedure)
   16323       145001 :               || sym->attr.contained))
   16324              :         {
   16325            3 :           gfc_error ("EXTERNAL attribute conflicts with FUNCTION attribute "
   16326              :                      "in %qs at %L", sym->name, &sym->declared_at);
   16327            3 :           return false;
   16328              :         }
   16329       500192 :       if (strcmp ("ppr@", sym->name) == 0)
   16330              :         {
   16331            0 :           gfc_error ("Procedure pointer result %qs at %L "
   16332              :                      "is missing the pointer attribute",
   16333            0 :                      sym->ns->proc_name->name, &sym->declared_at);
   16334            0 :           return false;
   16335              :         }
   16336              :     }
   16337              : 
   16338              :   /* Assume that a procedure whose body is not known has references
   16339              :      to external arrays.  */
   16340       501299 :   if (sym->attr.if_source != IFSRC_DECL)
   16341       345229 :     sym->attr.array_outer_dependency = 1;
   16342              : 
   16343              :   /* Compare the characteristics of a module procedure with the
   16344              :      interface declaration. Ideally this would be done with
   16345              :      gfc_compare_interfaces but, at present, the formal interface
   16346              :      cannot be copied to the ts.interface.  */
   16347       501299 :   if (sym->attr.module_procedure
   16348         1615 :       && sym->attr.if_source == IFSRC_DECL)
   16349              :     {
   16350          659 :       gfc_symbol *iface;
   16351          659 :       char name[2*GFC_MAX_SYMBOL_LEN + 1];
   16352          659 :       char *module_name;
   16353          659 :       char *submodule_name;
   16354          659 :       strcpy (name, sym->ns->proc_name->name);
   16355          659 :       module_name = strtok (name, ".");
   16356          659 :       submodule_name = strtok (NULL, ".");
   16357              : 
   16358          659 :       iface = sym->tlink;
   16359          659 :       sym->tlink = NULL;
   16360              : 
   16361              :       /* Make sure that the result uses the correct charlen for deferred
   16362              :          length results.  */
   16363          659 :       if (iface && sym->result
   16364          192 :           && iface->ts.type == BT_CHARACTER
   16365           19 :           && iface->ts.deferred)
   16366            6 :         sym->result->ts.u.cl = iface->ts.u.cl;
   16367              : 
   16368            6 :       if (iface == NULL)
   16369          196 :         goto check_formal;
   16370              : 
   16371              :       /* Check the procedure characteristics.  */
   16372          463 :       if (sym->attr.elemental != iface->attr.elemental)
   16373              :         {
   16374            1 :           gfc_error ("Mismatch in ELEMENTAL attribute between MODULE "
   16375              :                      "PROCEDURE at %L and its interface in %s",
   16376              :                      &sym->declared_at, module_name);
   16377           10 :           return false;
   16378              :         }
   16379              : 
   16380          462 :       if (sym->attr.pure != iface->attr.pure)
   16381              :         {
   16382            2 :           gfc_error ("Mismatch in PURE attribute between MODULE "
   16383              :                      "PROCEDURE at %L and its interface in %s",
   16384              :                      &sym->declared_at, module_name);
   16385            2 :           return false;
   16386              :         }
   16387              : 
   16388          460 :       if (sym->attr.recursive != iface->attr.recursive)
   16389              :         {
   16390            2 :           gfc_error ("Mismatch in RECURSIVE attribute between MODULE "
   16391              :                      "PROCEDURE at %L and its interface in %s",
   16392              :                      &sym->declared_at, module_name);
   16393            2 :           return false;
   16394              :         }
   16395              : 
   16396              :       /* Check the result characteristics.  */
   16397          458 :       if (!gfc_check_result_characteristics (sym, iface, errmsg, 200))
   16398              :         {
   16399            5 :           gfc_error ("%s between the MODULE PROCEDURE declaration "
   16400              :                      "in MODULE %qs and the declaration at %L in "
   16401              :                      "(SUB)MODULE %qs",
   16402              :                      errmsg, module_name, &sym->declared_at,
   16403              :                      submodule_name ? submodule_name : module_name);
   16404            5 :           return false;
   16405              :         }
   16406              : 
   16407          453 : check_formal:
   16408              :       /* Check the characteristics of the formal arguments.  */
   16409          649 :       if (sym->formal && sym->formal_ns)
   16410              :         {
   16411         1260 :           for (arg = sym->formal; arg && arg->sym; arg = arg->next)
   16412              :             {
   16413          722 :               new_formal = arg;
   16414          722 :               gfc_traverse_ns (sym->formal_ns, compare_fsyms);
   16415              :             }
   16416              :         }
   16417              :     }
   16418              : 
   16419              :   /* F2018:15.4.2.2 requires an explicit interface for procedures with the
   16420              :      BIND(C) attribute.  */
   16421       501289 :   if (sym->attr.is_bind_c && sym->attr.if_source == IFSRC_UNKNOWN)
   16422              :     {
   16423            1 :       gfc_error ("Interface of %qs at %L must be explicit",
   16424              :                  sym->name, &sym->declared_at);
   16425            1 :       return false;
   16426              :     }
   16427              : 
   16428              :   return true;
   16429              : }
   16430              : 
   16431              : 
   16432              : /* Resolve a list of finalizer procedures.  That is, after they have hopefully
   16433              :    been defined and we now know their defined arguments, check that they fulfill
   16434              :    the requirements of the standard for procedures used as finalizers.  */
   16435              : 
   16436              : static bool
   16437       116945 : gfc_resolve_finalizers (gfc_symbol* derived, bool *finalizable)
   16438              : {
   16439       116945 :   gfc_finalizer *list, *pdt_finalizers = NULL;
   16440       116945 :   gfc_finalizer** prev_link; /* For removing wrong entries from the list.  */
   16441       116945 :   bool result = true;
   16442       116945 :   bool seen_scalar = false;
   16443       116945 :   gfc_symbol *vtab;
   16444       116945 :   gfc_component *c;
   16445       116945 :   gfc_symbol *parent = gfc_get_derived_super_type (derived);
   16446              : 
   16447       116945 :   if (parent)
   16448        16466 :     gfc_resolve_finalizers (parent, finalizable);
   16449              : 
   16450              :   /* Ensure that derived-type components have a their finalizers resolved.  */
   16451       116945 :   bool has_final = derived->f2k_derived && derived->f2k_derived->finalizers;
   16452       369307 :   for (c = derived->components; c; c = c->next)
   16453       252362 :     if (c->ts.type == BT_DERIVED
   16454        70641 :         && !c->attr.pointer && !c->attr.proc_pointer && !c->attr.allocatable)
   16455              :       {
   16456         9060 :         bool has_final2 = false;
   16457         9060 :         if (!gfc_resolve_finalizers (c->ts.u.derived, &has_final2))
   16458            0 :           return false;  /* Error.  */
   16459         9060 :         has_final = has_final || has_final2;
   16460              :       }
   16461              :   /* Return early if not finalizable.  */
   16462       116945 :   if (!has_final)
   16463              :     {
   16464       114200 :       if (finalizable)
   16465         9076 :         *finalizable = false;
   16466              :       return true;
   16467              :     }
   16468              : 
   16469              :   /* If a PDT has finalizers, the pdt_type's f2k_derived is a copy of that of
   16470              :      the template. If the finalizers field has the same value, it needs to be
   16471              :      supplied with finalizers of the same pdt_type.  */
   16472         2745 :   if (derived->attr.pdt_type
   16473           54 :       && derived->template_sym
   16474           24 :       && derived->template_sym->f2k_derived
   16475           24 :       && (pdt_finalizers = derived->template_sym->f2k_derived->finalizers)
   16476         2769 :       && derived->f2k_derived->finalizers == pdt_finalizers)
   16477              :     {
   16478           24 :       gfc_finalizer *tmp = NULL;
   16479           24 :       derived->f2k_derived->finalizers = NULL;
   16480           24 :       prev_link = &derived->f2k_derived->finalizers;
   16481           84 :       for (list = pdt_finalizers; list; list = list->next)
   16482              :         {
   16483           60 :           gfc_formal_arglist *args = gfc_sym_get_dummy_args (list->proc_sym);
   16484           60 :           if (args->sym
   16485           60 :               && args->sym->ts.type == BT_DERIVED
   16486           60 :               && args->sym->ts.u.derived
   16487           60 :               && !strcmp (args->sym->ts.u.derived->name, derived->name))
   16488              :             {
   16489           36 :               tmp = gfc_get_finalizer ();
   16490           36 :               *tmp = *list;
   16491           36 :               tmp->next = NULL;
   16492           36 :               *prev_link = tmp;
   16493           36 :               prev_link = &(tmp->next);
   16494           36 :               list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
   16495              :             }
   16496              :         }
   16497              :     }
   16498              : 
   16499              :   /* Walk over the list of finalizer-procedures, check them, and if any one
   16500              :      does not fit in with the standard's definition, print an error and remove
   16501              :      it from the list.  */
   16502         2745 :   prev_link = &derived->f2k_derived->finalizers;
   16503         5638 :   for (list = derived->f2k_derived->finalizers; list; list = *prev_link)
   16504              :     {
   16505         2893 :       gfc_formal_arglist *dummy_args;
   16506         2893 :       gfc_symbol* arg;
   16507         2893 :       gfc_finalizer* i;
   16508         2893 :       int my_rank;
   16509              : 
   16510              :       /* Skip this finalizer if we already resolved it.  */
   16511         2893 :       if (list->proc_tree)
   16512              :         {
   16513         2324 :           if (list->proc_tree->n.sym->formal->sym->as == NULL
   16514          602 :               || list->proc_tree->n.sym->formal->sym->as->rank == 0)
   16515         1722 :             seen_scalar = true;
   16516         2324 :           prev_link = &(list->next);
   16517         2324 :           continue;
   16518              :         }
   16519              : 
   16520              :       /* Check this exists and is a SUBROUTINE.  */
   16521          569 :       if (!list->proc_sym->attr.subroutine)
   16522              :         {
   16523            3 :           gfc_error ("FINAL procedure %qs at %L is not a SUBROUTINE",
   16524              :                      list->proc_sym->name, &list->where);
   16525            3 :           goto error;
   16526              :         }
   16527              : 
   16528              :       /* We should have exactly one argument.  */
   16529          566 :       dummy_args = gfc_sym_get_dummy_args (list->proc_sym);
   16530          566 :       if (!dummy_args || dummy_args->next)
   16531              :         {
   16532            2 :           gfc_error ("FINAL procedure at %L must have exactly one argument",
   16533              :                      &list->where);
   16534            2 :           goto error;
   16535              :         }
   16536          564 :       arg = dummy_args->sym;
   16537              : 
   16538          564 :       if (!arg)
   16539              :         {
   16540            1 :           gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
   16541            1 :                      &list->proc_sym->declared_at, derived->name);
   16542            1 :           goto error;
   16543              :         }
   16544              : 
   16545          563 :       if (arg->as && arg->as->type == AS_ASSUMED_RANK
   16546            6 :           && ((list != derived->f2k_derived->finalizers) || list->next))
   16547              :         {
   16548            0 :           gfc_error ("FINAL procedure at %L with assumed rank argument must "
   16549              :                      "be the only finalizer with the same kind/type "
   16550              :                      "(F2018: C790)", &list->where);
   16551            0 :           goto error;
   16552              :         }
   16553              : 
   16554              :       /* This argument must be of our type.  */
   16555          563 :       if (!derived->attr.pdt_template
   16556          551 :           && (arg->ts.type != BT_DERIVED || arg->ts.u.derived != derived))
   16557              :         {
   16558            2 :           gfc_error ("Argument of FINAL procedure at %L must be of type %qs",
   16559              :                      &arg->declared_at, derived->name);
   16560            2 :           goto error;
   16561              :         }
   16562              : 
   16563              :       /* It must neither be a pointer nor allocatable nor optional.  */
   16564          561 :       if (arg->attr.pointer)
   16565              :         {
   16566            1 :           gfc_error ("Argument of FINAL procedure at %L must not be a POINTER",
   16567              :                      &arg->declared_at);
   16568            1 :           goto error;
   16569              :         }
   16570          560 :       if (arg->attr.allocatable)
   16571              :         {
   16572            1 :           gfc_error ("Argument of FINAL procedure at %L must not be"
   16573              :                      " ALLOCATABLE", &arg->declared_at);
   16574            1 :           goto error;
   16575              :         }
   16576          559 :       if (arg->attr.optional)
   16577              :         {
   16578            1 :           gfc_error ("Argument of FINAL procedure at %L must not be OPTIONAL",
   16579              :                      &arg->declared_at);
   16580            1 :           goto error;
   16581              :         }
   16582              : 
   16583              :       /* It must not be INTENT(OUT).  */
   16584          558 :       if (arg->attr.intent == INTENT_OUT)
   16585              :         {
   16586            1 :           gfc_error ("Argument of FINAL procedure at %L must not be"
   16587              :                      " INTENT(OUT)", &arg->declared_at);
   16588            1 :           goto error;
   16589              :         }
   16590              : 
   16591              :       /* Warn if the procedure is non-scalar and not assumed shape.  */
   16592          557 :       if (warn_surprising && arg->as && arg->as->rank != 0
   16593            3 :           && arg->as->type != AS_ASSUMED_SHAPE)
   16594            2 :         gfc_warning (OPT_Wsurprising,
   16595              :                      "Non-scalar FINAL procedure at %L should have assumed"
   16596              :                      " shape argument", &arg->declared_at);
   16597              : 
   16598              :       /* Check that it does not match in kind and rank with a FINAL procedure
   16599              :          defined earlier.  To really loop over the *earlier* declarations,
   16600              :          we need to walk the tail of the list as new ones were pushed at the
   16601              :          front.  */
   16602              :       /* TODO: Handle kind parameters once they are implemented.  */
   16603          557 :       my_rank = (arg->as ? arg->as->rank : 0);
   16604          664 :       for (i = list->next; i; i = i->next)
   16605              :         {
   16606          109 :           gfc_formal_arglist *dummy_args;
   16607              : 
   16608              :           /* Argument list might be empty; that is an error signalled earlier,
   16609              :              but we nevertheless continued resolving.  */
   16610          109 :           dummy_args = gfc_sym_get_dummy_args (i->proc_sym);
   16611          109 :           if (dummy_args && !derived->attr.pdt_template)
   16612              :             {
   16613          107 :               gfc_symbol* i_arg = dummy_args->sym;
   16614          107 :               const int i_rank = (i_arg->as ? i_arg->as->rank : 0);
   16615          107 :               if (i_rank == my_rank)
   16616              :                 {
   16617            2 :                   gfc_error ("FINAL procedure %qs declared at %L has the same"
   16618              :                              " rank (%d) as %qs",
   16619            2 :                              list->proc_sym->name, &list->where, my_rank,
   16620            2 :                              i->proc_sym->name);
   16621            2 :                   goto error;
   16622              :                 }
   16623              :             }
   16624              :         }
   16625              : 
   16626              :         /* Is this the/a scalar finalizer procedure?  */
   16627          555 :         if (my_rank == 0)
   16628          423 :           seen_scalar = true;
   16629              : 
   16630              :         /* Find the symtree for this procedure.  */
   16631          555 :         gcc_assert (!list->proc_tree);
   16632          555 :         list->proc_tree = gfc_find_sym_in_symtree (list->proc_sym);
   16633              : 
   16634          555 :         prev_link = &list->next;
   16635          555 :         continue;
   16636              : 
   16637              :         /* Remove wrong nodes immediately from the list so we don't risk any
   16638              :            troubles in the future when they might fail later expectations.  */
   16639           14 : error:
   16640           14 :         i = list;
   16641           14 :         *prev_link = list->next;
   16642           14 :         gfc_free_finalizer (i);
   16643           14 :         result = false;
   16644          555 :     }
   16645              : 
   16646         2745 :   if (result == false)
   16647              :     return false;
   16648              : 
   16649              :   /* Warn if we haven't seen a scalar finalizer procedure (but we know there
   16650              :      were nodes in the list, must have been for arrays.  It is surely a good
   16651              :      idea to have a scalar version there if there's something to finalize.  */
   16652         2741 :   if (warn_surprising && derived->f2k_derived->finalizers && !seen_scalar)
   16653            1 :     gfc_warning (OPT_Wsurprising,
   16654              :                  "Only array FINAL procedures declared for derived type %qs"
   16655              :                  " defined at %L, suggest also scalar one unless an assumed"
   16656              :                  " rank finalizer has been declared",
   16657              :                  derived->name, &derived->declared_at);
   16658              : 
   16659         2741 :   if (!derived->attr.pdt_template)
   16660              :     {
   16661         2693 :       vtab = gfc_find_derived_vtab (derived);
   16662         2693 :       c = vtab->ts.u.derived->components->next->next->next->next->next;
   16663         2693 :       if (c && c->initializer && c->initializer->symtree && c->initializer->symtree->n.sym)
   16664         2693 :         gfc_set_sym_referenced (c->initializer->symtree->n.sym);
   16665              :     }
   16666              : 
   16667         2741 :   if (finalizable)
   16668          676 :     *finalizable = true;
   16669              : 
   16670              :   return true;
   16671              : }
   16672              : 
   16673              : 
   16674              : static gfc_symbol * containing_dt;
   16675              : 
   16676              : /* Helper function for check_generic_tbp_ambiguity, which ensures that passed
   16677              :    arguments whose declared types are PDT instances only transmit the PASS arg
   16678              :    if they match the enclosing derived type.  */
   16679              : 
   16680              : static bool
   16681         1496 : check_pdt_args (gfc_tbp_generic* t, const char *pass)
   16682              : {
   16683         1496 :   gfc_formal_arglist *dummy_args;
   16684         1496 :   if (pass && containing_dt != NULL && containing_dt->attr.pdt_type)
   16685              :     {
   16686          532 :       dummy_args = gfc_sym_get_dummy_args (t->specific->u.specific->n.sym);
   16687         1190 :       while (dummy_args && strcmp (pass, dummy_args->sym->name))
   16688          126 :         dummy_args = dummy_args->next;
   16689          532 :       gcc_assert (strcmp (pass, dummy_args->sym->name) == 0);
   16690          532 :       if (dummy_args->sym->ts.type == BT_CLASS
   16691          532 :           && strcmp (CLASS_DATA (dummy_args->sym)->ts.u.derived->name,
   16692              :                      containing_dt->name))
   16693          356 :         return true;
   16694              :     }
   16695              :   return false;
   16696              : }
   16697              : 
   16698              : 
   16699              : /* Check if two GENERIC targets are ambiguous and emit an error is they are.  */
   16700              : 
   16701              : static bool
   16702          750 : check_generic_tbp_ambiguity (gfc_tbp_generic* t1, gfc_tbp_generic* t2,
   16703              :                              const char* generic_name, locus where)
   16704              : {
   16705          750 :   gfc_symbol *sym1, *sym2;
   16706          750 :   const char *pass1, *pass2;
   16707          750 :   gfc_formal_arglist *dummy_args;
   16708              : 
   16709          750 :   gcc_assert (t1->specific && t2->specific);
   16710          750 :   gcc_assert (!t1->specific->is_generic);
   16711          750 :   gcc_assert (!t2->specific->is_generic);
   16712          750 :   gcc_assert (t1->is_operator == t2->is_operator);
   16713              : 
   16714          750 :   sym1 = t1->specific->u.specific->n.sym;
   16715          750 :   sym2 = t2->specific->u.specific->n.sym;
   16716              : 
   16717          750 :   if (sym1 == sym2)
   16718              :     return true;
   16719              : 
   16720              :   /* Both must be SUBROUTINEs or both must be FUNCTIONs.  */
   16721          750 :   if (sym1->attr.subroutine != sym2->attr.subroutine
   16722          748 :       || sym1->attr.function != sym2->attr.function)
   16723              :     {
   16724            2 :       gfc_error ("%qs and %qs cannot be mixed FUNCTION/SUBROUTINE for"
   16725              :                  " GENERIC %qs at %L",
   16726              :                  sym1->name, sym2->name, generic_name, &where);
   16727            2 :       return false;
   16728              :     }
   16729              : 
   16730              :   /* Determine PASS arguments.  */
   16731          748 :   if (t1->specific->nopass)
   16732              :     pass1 = NULL;
   16733          697 :   else if (t1->specific->pass_arg)
   16734              :     pass1 = t1->specific->pass_arg;
   16735              :   else
   16736              :     {
   16737          438 :       dummy_args = gfc_sym_get_dummy_args (t1->specific->u.specific->n.sym);
   16738          438 :       if (dummy_args)
   16739          437 :         pass1 = dummy_args->sym->name;
   16740              :       else
   16741              :         pass1 = NULL;
   16742              :     }
   16743          748 :   if (t2->specific->nopass)
   16744              :     pass2 = NULL;
   16745          696 :   else if (t2->specific->pass_arg)
   16746              :     pass2 = t2->specific->pass_arg;
   16747              :   else
   16748              :     {
   16749          559 :       dummy_args = gfc_sym_get_dummy_args (t2->specific->u.specific->n.sym);
   16750          559 :       if (dummy_args)
   16751          558 :         pass2 = dummy_args->sym->name;
   16752              :       else
   16753              :         pass2 = NULL;
   16754              :     }
   16755              : 
   16756              :   /* Care must be taken with pdt types and templates because the declared type
   16757              :      of the argument that is not 'no_pass' need not be the same as the
   16758              :      containing derived type.  If this is the case, subject the argument to
   16759              :      the full interface check, even though it cannot be used in the type
   16760              :      bound context.  */
   16761          748 :   pass1 = check_pdt_args (t1, pass1) ? NULL : pass1;
   16762          748 :   pass2 = check_pdt_args (t2, pass2) ? NULL : pass2;
   16763              : 
   16764          748 :   if (containing_dt != NULL && containing_dt->attr.pdt_template)
   16765          748 :     pass1 = pass2 = NULL;
   16766              : 
   16767              :   /* Compare the interfaces.  */
   16768          748 :   if (gfc_compare_interfaces (sym1, sym2, sym2->name, !t1->is_operator, 0,
   16769              :                               NULL, 0, pass1, pass2))
   16770              :     {
   16771            8 :       gfc_error ("%qs and %qs for GENERIC %qs at %L are ambiguous",
   16772              :                  sym1->name, sym2->name, generic_name, &where);
   16773            8 :       return false;
   16774              :     }
   16775              : 
   16776              :   return true;
   16777              : }
   16778              : 
   16779              : 
   16780              : /* Worker function for resolving a generic procedure binding; this is used to
   16781              :    resolve GENERIC as well as user and intrinsic OPERATOR typebound procedures.
   16782              : 
   16783              :    The difference between those cases is finding possible inherited bindings
   16784              :    that are overridden, as one has to look for them in tb_sym_root,
   16785              :    tb_uop_root or tb_op, respectively.  Thus the caller must already find
   16786              :    the super-type and set p->overridden correctly.  */
   16787              : 
   16788              : static bool
   16789         2421 : resolve_tb_generic_targets (gfc_symbol* super_type,
   16790              :                             gfc_typebound_proc* p, const char* name)
   16791              : {
   16792         2421 :   gfc_tbp_generic* target;
   16793         2421 :   gfc_symtree* first_target;
   16794         2421 :   gfc_symtree* inherited;
   16795              : 
   16796         2421 :   gcc_assert (p && p->is_generic);
   16797              : 
   16798              :   /* Try to find the specific bindings for the symtrees in our target-list.  */
   16799         2421 :   gcc_assert (p->u.generic);
   16800         5446 :   for (target = p->u.generic; target; target = target->next)
   16801         3042 :     if (!target->specific)
   16802              :       {
   16803         2627 :         gfc_typebound_proc* overridden_tbp;
   16804         2627 :         gfc_tbp_generic* g;
   16805         2627 :         const char* target_name;
   16806              : 
   16807         2627 :         target_name = target->specific_st->name;
   16808              : 
   16809              :         /* Defined for this type directly.  */
   16810         2627 :         if (target->specific_st->n.tb && !target->specific_st->n.tb->error)
   16811              :           {
   16812         2618 :             target->specific = target->specific_st->n.tb;
   16813         2618 :             goto specific_found;
   16814              :           }
   16815              : 
   16816              :         /* Look for an inherited specific binding.  */
   16817            9 :         if (super_type)
   16818              :           {
   16819            5 :             inherited = gfc_find_typebound_proc (super_type, NULL, target_name,
   16820              :                                                  true, NULL);
   16821              : 
   16822            5 :             if (inherited)
   16823              :               {
   16824            5 :                 gcc_assert (inherited->n.tb);
   16825            5 :                 target->specific = inherited->n.tb;
   16826            5 :                 goto specific_found;
   16827              :               }
   16828              :           }
   16829              : 
   16830            4 :         gfc_error ("Undefined specific binding %qs as target of GENERIC %qs"
   16831              :                    " at %L", target_name, name, &p->where);
   16832            4 :         return false;
   16833              : 
   16834              :         /* Once we've found the specific binding, check it is not ambiguous with
   16835              :            other specifics already found or inherited for the same GENERIC.  */
   16836         2623 : specific_found:
   16837         2623 :         gcc_assert (target->specific);
   16838              : 
   16839              :         /* This must really be a specific binding!  */
   16840         2623 :         if (target->specific->is_generic)
   16841              :           {
   16842            3 :             gfc_error ("GENERIC %qs at %L must target a specific binding,"
   16843              :                        " %qs is GENERIC, too", name, &p->where, target_name);
   16844            3 :             return false;
   16845              :           }
   16846              : 
   16847              :         /* Check those already resolved on this type directly.  */
   16848         6690 :         for (g = p->u.generic; g; g = g->next)
   16849         1464 :           if (g != target && g->specific
   16850         4809 :               && !check_generic_tbp_ambiguity (target, g, name, p->where))
   16851              :             return false;
   16852              : 
   16853              :         /* Check for ambiguity with inherited specific targets.  */
   16854         2629 :         for (overridden_tbp = p->overridden; overridden_tbp;
   16855           16 :              overridden_tbp = overridden_tbp->overridden)
   16856           19 :           if (overridden_tbp->is_generic)
   16857              :             {
   16858           33 :               for (g = overridden_tbp->u.generic; g; g = g->next)
   16859              :                 {
   16860           18 :                   gcc_assert (g->specific);
   16861           18 :                   if (!check_generic_tbp_ambiguity (target, g, name, p->where))
   16862              :                     return false;
   16863              :                 }
   16864              :             }
   16865              :       }
   16866              : 
   16867              :   /* If we attempt to "overwrite" a specific binding, this is an error.  */
   16868         2404 :   if (p->overridden && !p->overridden->is_generic)
   16869              :     {
   16870            1 :       gfc_error ("GENERIC %qs at %L cannot overwrite specific binding with"
   16871              :                  " the same name", name, &p->where);
   16872            1 :       return false;
   16873              :     }
   16874              : 
   16875              :   /* Take the SUBROUTINE/FUNCTION attributes of the first specific target, as
   16876              :      all must have the same attributes here.  */
   16877         2403 :   first_target = p->u.generic->specific->u.specific;
   16878         2403 :   gcc_assert (first_target);
   16879         2403 :   p->subroutine = first_target->n.sym->attr.subroutine;
   16880         2403 :   p->function = first_target->n.sym->attr.function;
   16881              : 
   16882         2403 :   return true;
   16883              : }
   16884              : 
   16885              : 
   16886              : /* Resolve a GENERIC procedure binding for a derived type.  */
   16887              : 
   16888              : static bool
   16889         1249 : resolve_typebound_generic (gfc_symbol* derived, gfc_symtree* st)
   16890              : {
   16891         1249 :   gfc_symbol* super_type;
   16892              : 
   16893              :   /* Find the overridden binding if any.  */
   16894         1249 :   st->n.tb->overridden = NULL;
   16895         1249 :   super_type = gfc_get_derived_super_type (derived);
   16896         1249 :   if (super_type)
   16897              :     {
   16898           40 :       gfc_symtree* overridden;
   16899           40 :       overridden = gfc_find_typebound_proc (super_type, NULL, st->name,
   16900              :                                             true, NULL);
   16901              : 
   16902           40 :       if (overridden && overridden->n.tb)
   16903           21 :         st->n.tb->overridden = overridden->n.tb;
   16904              :     }
   16905              : 
   16906              :   /* Resolve using worker function.  */
   16907         1249 :   return resolve_tb_generic_targets (super_type, st->n.tb, st->name);
   16908              : }
   16909              : 
   16910              : 
   16911              : /* Retrieve the target-procedure of an operator binding and do some checks in
   16912              :    common for intrinsic and user-defined type-bound operators.  */
   16913              : 
   16914              : static gfc_symbol*
   16915         1244 : get_checked_tb_operator_target (gfc_tbp_generic* target, locus where)
   16916              : {
   16917         1244 :   gfc_symbol* target_proc;
   16918              : 
   16919         1244 :   gcc_assert (target->specific && !target->specific->is_generic);
   16920         1244 :   target_proc = target->specific->u.specific->n.sym;
   16921         1244 :   gcc_assert (target_proc);
   16922              : 
   16923              :   /* F08:C468. All operator bindings must have a passed-object dummy argument.  */
   16924         1244 :   if (target->specific->nopass)
   16925              :     {
   16926            2 :       gfc_error ("Type-bound operator at %L cannot be NOPASS", &where);
   16927            2 :       return NULL;
   16928              :     }
   16929              : 
   16930              :   return target_proc;
   16931              : }
   16932              : 
   16933              : 
   16934              : /* Resolve a type-bound intrinsic operator.  */
   16935              : 
   16936              : static bool
   16937         1059 : resolve_typebound_intrinsic_op (gfc_symbol* derived, gfc_intrinsic_op op,
   16938              :                                 gfc_typebound_proc* p)
   16939              : {
   16940         1059 :   gfc_symbol* super_type;
   16941         1059 :   gfc_tbp_generic* target;
   16942              : 
   16943              :   /* If there's already an error here, do nothing (but don't fail again).  */
   16944         1059 :   if (p->error)
   16945              :     return true;
   16946              : 
   16947              :   /* Operators should always be GENERIC bindings.  */
   16948         1059 :   gcc_assert (p->is_generic);
   16949              : 
   16950              :   /* Look for an overridden binding.  */
   16951         1059 :   super_type = gfc_get_derived_super_type (derived);
   16952         1059 :   if (super_type && super_type->f2k_derived)
   16953            1 :     p->overridden = gfc_find_typebound_intrinsic_op (super_type, NULL,
   16954              :                                                      op, true, NULL);
   16955              :   else
   16956         1058 :     p->overridden = NULL;
   16957              : 
   16958              :   /* Resolve general GENERIC properties using worker function.  */
   16959         1059 :   if (!resolve_tb_generic_targets (super_type, p, gfc_op2string(op)))
   16960            1 :     goto error;
   16961              : 
   16962              :   /* Check the targets to be procedures of correct interface.  */
   16963         2163 :   for (target = p->u.generic; target; target = target->next)
   16964              :     {
   16965         1130 :       gfc_symbol* target_proc;
   16966              : 
   16967         1130 :       target_proc = get_checked_tb_operator_target (target, p->where);
   16968         1130 :       if (!target_proc)
   16969            1 :         goto error;
   16970              : 
   16971         1129 :       if (!gfc_check_operator_interface (target_proc, op, p->where))
   16972            3 :         goto error;
   16973              : 
   16974              :       /* Add target to non-typebound operator list.  */
   16975         1126 :       if (!target->specific->deferred && !derived->attr.use_assoc
   16976          397 :           && p->access != ACCESS_PRIVATE && derived->ns == gfc_current_ns)
   16977              :         {
   16978          395 :           gfc_interface *head, *intr;
   16979              : 
   16980              :           /* Preempt 'gfc_check_new_interface' for submodules, where the
   16981              :              mechanism for handling module procedures winds up resolving
   16982              :              operator interfaces twice and would otherwise cause an error.
   16983              :              Likewise, new instances of PDTs can cause the operator inter-
   16984              :              faces to be resolved multiple times.  */
   16985          467 :           for (intr = derived->ns->op[op]; intr; intr = intr->next)
   16986           91 :             if (intr->sym == target_proc
   16987           21 :                 && (target_proc->attr.used_in_submodule
   16988            4 :                     || derived->attr.pdt_type
   16989            2 :                     || derived->attr.pdt_template))
   16990              :               return true;
   16991              : 
   16992          376 :           if (!gfc_check_new_interface (derived->ns->op[op],
   16993              :                                         target_proc, p->where))
   16994              :             return false;
   16995          374 :           head = derived->ns->op[op];
   16996          374 :           intr = gfc_get_interface ();
   16997          374 :           intr->sym = target_proc;
   16998          374 :           intr->where = p->where;
   16999          374 :           intr->next = head;
   17000          374 :           derived->ns->op[op] = intr;
   17001              :         }
   17002              :     }
   17003              : 
   17004              :   return true;
   17005              : 
   17006            5 : error:
   17007            5 :   p->error = 1;
   17008            5 :   return false;
   17009              : }
   17010              : 
   17011              : 
   17012              : /* Resolve a type-bound user operator (tree-walker callback).  */
   17013              : 
   17014              : static gfc_symbol* resolve_bindings_derived;
   17015              : static bool resolve_bindings_result;
   17016              : 
   17017              : static bool check_uop_procedure (gfc_symbol* sym, locus where);
   17018              : 
   17019              : static void
   17020          113 : resolve_typebound_user_op (gfc_symtree* stree)
   17021              : {
   17022          113 :   gfc_symbol* super_type;
   17023          113 :   gfc_tbp_generic* target;
   17024              : 
   17025          113 :   gcc_assert (stree && stree->n.tb);
   17026              : 
   17027          113 :   if (stree->n.tb->error)
   17028              :     return;
   17029              : 
   17030              :   /* Operators should always be GENERIC bindings.  */
   17031          113 :   gcc_assert (stree->n.tb->is_generic);
   17032              : 
   17033              :   /* Find overridden procedure, if any.  */
   17034          113 :   super_type = gfc_get_derived_super_type (resolve_bindings_derived);
   17035          113 :   if (super_type && super_type->f2k_derived)
   17036              :     {
   17037           18 :       gfc_symtree* overridden;
   17038           18 :       overridden = gfc_find_typebound_user_op (super_type, NULL,
   17039              :                                                stree->name, true, NULL);
   17040              : 
   17041           18 :       if (overridden && overridden->n.tb)
   17042            0 :         stree->n.tb->overridden = overridden->n.tb;
   17043              :     }
   17044              :   else
   17045           95 :     stree->n.tb->overridden = NULL;
   17046              : 
   17047              :   /* Resolve basically using worker function.  */
   17048          113 :   if (!resolve_tb_generic_targets (super_type, stree->n.tb, stree->name))
   17049            0 :     goto error;
   17050              : 
   17051              :   /* Check the targets to be functions of correct interface.  */
   17052          224 :   for (target = stree->n.tb->u.generic; target; target = target->next)
   17053              :     {
   17054          114 :       gfc_symbol* target_proc;
   17055              : 
   17056          114 :       target_proc = get_checked_tb_operator_target (target, stree->n.tb->where);
   17057          114 :       if (!target_proc)
   17058            1 :         goto error;
   17059              : 
   17060          113 :       if (!check_uop_procedure (target_proc, stree->n.tb->where))
   17061            2 :         goto error;
   17062              :     }
   17063              : 
   17064              :   return;
   17065              : 
   17066            3 : error:
   17067            3 :   resolve_bindings_result = false;
   17068            3 :   stree->n.tb->error = 1;
   17069              : }
   17070              : 
   17071              : 
   17072              : /* Resolve the type-bound procedures for a derived type.  */
   17073              : 
   17074              : static void
   17075        10231 : resolve_typebound_procedure (gfc_symtree* stree)
   17076              : {
   17077        10231 :   gfc_symbol* proc;
   17078        10231 :   locus where;
   17079        10231 :   gfc_symbol* me_arg;
   17080        10231 :   gfc_symbol* super_type;
   17081        10231 :   gfc_component* comp;
   17082              : 
   17083        10231 :   gcc_assert (stree);
   17084              : 
   17085              :   /* Undefined specific symbol from GENERIC target definition.  */
   17086        10231 :   if (!stree->n.tb)
   17087        10149 :     return;
   17088              : 
   17089        10225 :   if (stree->n.tb->error)
   17090              :     return;
   17091              : 
   17092              :   /* If this is a GENERIC binding, use that routine.  */
   17093        10209 :   if (stree->n.tb->is_generic)
   17094              :     {
   17095         1249 :       if (!resolve_typebound_generic (resolve_bindings_derived, stree))
   17096           17 :         goto error;
   17097              :       return;
   17098              :     }
   17099              : 
   17100              :   /* Get the target-procedure to check it.  */
   17101         8960 :   gcc_assert (!stree->n.tb->is_generic);
   17102         8960 :   gcc_assert (stree->n.tb->u.specific);
   17103         8960 :   proc = stree->n.tb->u.specific->n.sym;
   17104         8960 :   where = stree->n.tb->where;
   17105              : 
   17106              :   /* Default access should already be resolved from the parser.  */
   17107         8960 :   gcc_assert (stree->n.tb->access != ACCESS_UNKNOWN);
   17108              : 
   17109         8960 :   if (stree->n.tb->deferred)
   17110              :     {
   17111          676 :       if (!check_proc_interface (proc, &where))
   17112            5 :         goto error;
   17113              :     }
   17114              :   else
   17115              :     {
   17116              :       /* If proc has not been resolved at this point, proc->name may
   17117              :          actually be a USE associated entity. See PR fortran/89647. */
   17118         8284 :       if (!proc->resolve_symbol_called
   17119         5734 :           && proc->attr.function == 0 && proc->attr.subroutine == 0)
   17120              :         {
   17121           11 :           gfc_symbol *tmp;
   17122           11 :           gfc_find_symbol (proc->name, gfc_current_ns->parent, 1, &tmp);
   17123           11 :           if (tmp && tmp->attr.use_assoc)
   17124              :             {
   17125            1 :               proc->module = tmp->module;
   17126            1 :               proc->attr.proc = tmp->attr.proc;
   17127            1 :               proc->attr.function = tmp->attr.function;
   17128            1 :               proc->attr.subroutine = tmp->attr.subroutine;
   17129            1 :               proc->attr.use_assoc = tmp->attr.use_assoc;
   17130            1 :               proc->ts = tmp->ts;
   17131            1 :               proc->result = tmp->result;
   17132              :             }
   17133              :         }
   17134              : 
   17135              :       /* Check for F08:C465.  */
   17136         8284 :       if ((!proc->attr.subroutine && !proc->attr.function)
   17137         8274 :           || (proc->attr.proc != PROC_MODULE
   17138           70 :               && proc->attr.if_source != IFSRC_IFBODY
   17139            7 :               && !proc->attr.module_procedure)
   17140         8273 :           || proc->attr.abstract)
   17141              :         {
   17142           12 :           gfc_error ("%qs must be a module procedure or an external "
   17143              :                      "procedure with an explicit interface at %L",
   17144              :                      proc->name, &where);
   17145           12 :           goto error;
   17146              :         }
   17147              :     }
   17148              : 
   17149         8943 :   stree->n.tb->subroutine = proc->attr.subroutine;
   17150         8943 :   stree->n.tb->function = proc->attr.function;
   17151              : 
   17152              :   /* Find the super-type of the current derived type.  We could do this once and
   17153              :      store in a global if speed is needed, but as long as not I believe this is
   17154              :      more readable and clearer.  */
   17155         8943 :   super_type = gfc_get_derived_super_type (resolve_bindings_derived);
   17156              : 
   17157              :   /* If PASS, resolve and check arguments if not already resolved / loaded
   17158              :      from a .mod file.  */
   17159         8943 :   if (!stree->n.tb->nopass && stree->n.tb->pass_arg_num == 0)
   17160              :     {
   17161         2844 :       gfc_formal_arglist *dummy_args;
   17162              : 
   17163         2844 :       dummy_args = gfc_sym_get_dummy_args (proc);
   17164         2844 :       if (stree->n.tb->pass_arg)
   17165              :         {
   17166          468 :           gfc_formal_arglist *i;
   17167              : 
   17168              :           /* If an explicit passing argument name is given, walk the arg-list
   17169              :              and look for it.  */
   17170              : 
   17171          468 :           me_arg = NULL;
   17172          468 :           stree->n.tb->pass_arg_num = 1;
   17173          601 :           for (i = dummy_args; i; i = i->next)
   17174              :             {
   17175          599 :               if (!strcmp (i->sym->name, stree->n.tb->pass_arg))
   17176              :                 {
   17177              :                   me_arg = i->sym;
   17178              :                   break;
   17179              :                 }
   17180          133 :               ++stree->n.tb->pass_arg_num;
   17181              :             }
   17182              : 
   17183          468 :           if (!me_arg)
   17184              :             {
   17185            2 :               gfc_error ("Procedure %qs with PASS(%s) at %L has no"
   17186              :                          " argument %qs",
   17187              :                          proc->name, stree->n.tb->pass_arg, &where,
   17188              :                          stree->n.tb->pass_arg);
   17189            2 :               goto error;
   17190              :             }
   17191              :         }
   17192              :       else
   17193              :         {
   17194              :           /* Otherwise, take the first one; there should in fact be at least
   17195              :              one.  */
   17196         2376 :           stree->n.tb->pass_arg_num = 1;
   17197         2376 :           if (!dummy_args)
   17198              :             {
   17199            2 :               gfc_error ("Procedure %qs with PASS at %L must have at"
   17200              :                          " least one argument", proc->name, &where);
   17201            2 :               goto error;
   17202              :             }
   17203         2374 :           me_arg = dummy_args->sym;
   17204              :         }
   17205              : 
   17206              :       /* Now check that the argument-type matches and the passed-object
   17207              :          dummy argument is generally fine.  */
   17208              : 
   17209         2374 :       gcc_assert (me_arg);
   17210              : 
   17211         2840 :       if (me_arg->ts.type != BT_CLASS)
   17212              :         {
   17213            5 :           gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
   17214              :                      " at %L", proc->name, &where);
   17215            5 :           goto error;
   17216              :         }
   17217              : 
   17218              :       /* The derived type is not a PDT template or type.  Resolve as usual.  */
   17219         2835 :       if (!resolve_bindings_derived->attr.pdt_template
   17220         2826 :           && !(containing_dt && containing_dt->attr.pdt_type
   17221           60 :                && CLASS_DATA (me_arg)->ts.u.derived != containing_dt)
   17222         2806 :           && (CLASS_DATA (me_arg)->ts.u.derived != resolve_bindings_derived))
   17223              :         {
   17224            0 :           gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of "
   17225              :                      "the derived-type %qs", me_arg->name, proc->name,
   17226              :                      me_arg->name, &where, resolve_bindings_derived->name);
   17227            0 :           goto error;
   17228              :         }
   17229              : 
   17230         2835 :       if (resolve_bindings_derived->attr.pdt_template
   17231         2844 :           && !gfc_pdt_is_instance_of (resolve_bindings_derived,
   17232            9 :                                       CLASS_DATA (me_arg)->ts.u.derived))
   17233              :         {
   17234            0 :           gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of "
   17235              :                      "the parametric derived-type %qs", me_arg->name,
   17236              :                      proc->name, me_arg->name, &where,
   17237              :                      resolve_bindings_derived->name);
   17238            0 :           goto error;
   17239              :         }
   17240              : 
   17241         2835 :       if (((resolve_bindings_derived->attr.pdt_template
   17242            9 :             && gfc_pdt_is_instance_of (resolve_bindings_derived,
   17243            9 :                                        CLASS_DATA (me_arg)->ts.u.derived))
   17244         2826 :            || resolve_bindings_derived->attr.pdt_type)
   17245           69 :           && (me_arg->param_list != NULL)
   17246         2904 :           && (gfc_spec_list_type (me_arg->param_list,
   17247           69 :                                   CLASS_DATA(me_arg)->ts.u.derived)
   17248              :                                   != SPEC_ASSUMED))
   17249              :         {
   17250              : 
   17251              :           /* Add a check to verify if there are any LEN parameters in the
   17252              :              first place.  If there are LEN parameters, throw this error.
   17253              :              If there are only KIND parameters, then don't trigger
   17254              :              this error.  */
   17255            6 :           gfc_component *c;
   17256            6 :           bool seen_len_param = false;
   17257            6 :           gfc_actual_arglist *me_arg_param = me_arg->param_list;
   17258              : 
   17259            6 :           for (; me_arg_param; me_arg_param = me_arg_param->next)
   17260              :             {
   17261            6 :               c = gfc_find_component (CLASS_DATA(me_arg)->ts.u.derived,
   17262              :                                      me_arg_param->name, true, true, NULL);
   17263              : 
   17264            6 :               gcc_assert (c != NULL);
   17265              : 
   17266            6 :               if (c->attr.pdt_kind)
   17267            0 :                 continue;
   17268              : 
   17269              :               /* Getting here implies that there is a pdt_len parameter
   17270              :                  in the list.  */
   17271              :               seen_len_param = true;
   17272              :               break;
   17273              :             }
   17274              : 
   17275            6 :             if (seen_len_param)
   17276              :               {
   17277            6 :                 gfc_error ("All LEN type parameters of the passed dummy "
   17278              :                            "argument %qs of %qs at %L must be ASSUMED.",
   17279              :                            me_arg->name, proc->name, &where);
   17280            6 :                 goto error;
   17281              :               }
   17282              :         }
   17283              : 
   17284         2829 :       gcc_assert (me_arg->ts.type == BT_CLASS);
   17285         2829 :       if (CLASS_DATA (me_arg)->as && CLASS_DATA (me_arg)->as->rank != 0)
   17286              :         {
   17287            1 :           gfc_error ("Passed-object dummy argument of %qs at %L must be"
   17288              :                      " scalar", proc->name, &where);
   17289            1 :           goto error;
   17290              :         }
   17291         2828 :       if (CLASS_DATA (me_arg)->attr.allocatable)
   17292              :         {
   17293            2 :           gfc_error ("Passed-object dummy argument of %qs at %L must not"
   17294              :                      " be ALLOCATABLE", proc->name, &where);
   17295            2 :           goto error;
   17296              :         }
   17297         2826 :       if (CLASS_DATA (me_arg)->attr.class_pointer)
   17298              :         {
   17299            2 :           gfc_error ("Passed-object dummy argument of %qs at %L must not"
   17300              :                      " be POINTER", proc->name, &where);
   17301            2 :           goto error;
   17302              :         }
   17303              :     }
   17304              : 
   17305              :   /* If we are extending some type, check that we don't override a procedure
   17306              :      flagged NON_OVERRIDABLE.  */
   17307         8923 :   stree->n.tb->overridden = NULL;
   17308         8923 :   if (super_type)
   17309              :     {
   17310         1513 :       gfc_symtree* overridden;
   17311         1513 :       overridden = gfc_find_typebound_proc (super_type, NULL,
   17312              :                                             stree->name, true, NULL);
   17313              : 
   17314         1513 :       if (overridden)
   17315              :         {
   17316         1218 :           if (overridden->n.tb)
   17317         1218 :             stree->n.tb->overridden = overridden->n.tb;
   17318              : 
   17319         1218 :           if (!gfc_check_typebound_override (stree, overridden))
   17320           26 :             goto error;
   17321              :         }
   17322              :     }
   17323              : 
   17324              :   /* See if there's a name collision with a component directly in this type.  */
   17325        21297 :   for (comp = resolve_bindings_derived->components; comp; comp = comp->next)
   17326        12401 :     if (!strcmp (comp->name, stree->name))
   17327              :       {
   17328            1 :         gfc_error ("Procedure %qs at %L has the same name as a component of"
   17329              :                    " %qs",
   17330              :                    stree->name, &where, resolve_bindings_derived->name);
   17331            1 :         goto error;
   17332              :       }
   17333              : 
   17334              :   /* Try to find a name collision with an inherited component.  */
   17335         8896 :   if (super_type && gfc_find_component (super_type, stree->name, true, true,
   17336              :                                         NULL))
   17337              :     {
   17338            1 :       gfc_error ("Procedure %qs at %L has the same name as an inherited"
   17339              :                  " component of %qs",
   17340              :                  stree->name, &where, resolve_bindings_derived->name);
   17341            1 :       goto error;
   17342              :     }
   17343              : 
   17344         8895 :   stree->n.tb->error = 0;
   17345         8895 :   return;
   17346              : 
   17347           82 : error:
   17348           82 :   resolve_bindings_result = false;
   17349           82 :   stree->n.tb->error = 1;
   17350              : }
   17351              : 
   17352              : 
   17353              : static bool
   17354        89187 : resolve_typebound_procedures (gfc_symbol* derived)
   17355              : {
   17356        89187 :   int op;
   17357        89187 :   gfc_symbol* super_type;
   17358              : 
   17359              :   /* Resolve the super-type first so that inherited bindings (including
   17360              :      user operators) are fully resolved before we look them up via
   17361              :      gfc_find_typebound_user_op.  This must happen even when 'derived'
   17362              :      has no direct type-bound bindings of its own.  */
   17363        89187 :   super_type = gfc_get_derived_super_type (derived);
   17364        89187 :   if (super_type)
   17365        13882 :     resolve_symbol (super_type);
   17366              : 
   17367        89187 :   if (!derived->f2k_derived || !derived->f2k_derived->tb_sym_root)
   17368              :     return true;
   17369              : 
   17370         4900 :   resolve_bindings_derived = derived;
   17371         4900 :   resolve_bindings_result = true;
   17372              : 
   17373         4900 :   containing_dt = derived;  /* Needed for checks of PDTs.  */
   17374         4900 :   if (derived->f2k_derived->tb_sym_root)
   17375         4900 :     gfc_traverse_symtree (derived->f2k_derived->tb_sym_root,
   17376              :                           &resolve_typebound_procedure);
   17377              : 
   17378         4900 :   if (derived->f2k_derived->tb_uop_root)
   17379           91 :     gfc_traverse_symtree (derived->f2k_derived->tb_uop_root,
   17380              :                           &resolve_typebound_user_op);
   17381         4900 :   containing_dt = NULL;
   17382              : 
   17383       142100 :   for (op = 0; op != GFC_INTRINSIC_OPS; ++op)
   17384              :     {
   17385       137200 :       gfc_typebound_proc* p = derived->f2k_derived->tb_op[op];
   17386       137200 :       if (p && !resolve_typebound_intrinsic_op (derived,
   17387              :                                                 (gfc_intrinsic_op)op, p))
   17388            7 :         resolve_bindings_result = false;
   17389              :     }
   17390              : 
   17391         4900 :   return resolve_bindings_result;
   17392              : }
   17393              : 
   17394              : 
   17395              : /* Add a derived type to the dt_list.  The dt_list is used in trans-types.cc
   17396              :    to give all identical derived types the same backend_decl.  */
   17397              : static void
   17398       182643 : add_dt_to_dt_list (gfc_symbol *derived)
   17399              : {
   17400       182643 :   if (!derived->dt_next)
   17401              :     {
   17402        85593 :       if (gfc_derived_types)
   17403              :         {
   17404        70077 :           derived->dt_next = gfc_derived_types->dt_next;
   17405        70077 :           gfc_derived_types->dt_next = derived;
   17406              :         }
   17407              :       else
   17408              :         {
   17409        15516 :           derived->dt_next = derived;
   17410              :         }
   17411        85593 :       gfc_derived_types = derived;
   17412              :     }
   17413       182643 : }
   17414              : 
   17415              : 
   17416              : /* Ensure that a derived-type is really not abstract, meaning that every
   17417              :    inherited DEFERRED binding is overridden by a non-DEFERRED one.  */
   17418              : 
   17419              : static bool
   17420         7212 : ensure_not_abstract_walker (gfc_symbol* sub, gfc_symtree* st)
   17421              : {
   17422         7212 :   if (!st)
   17423              :     return true;
   17424              : 
   17425         2772 :   if (!ensure_not_abstract_walker (sub, st->left))
   17426              :     return false;
   17427         2772 :   if (!ensure_not_abstract_walker (sub, st->right))
   17428              :     return false;
   17429              : 
   17430         2771 :   if (st->n.tb && st->n.tb->deferred)
   17431              :     {
   17432         2019 :       gfc_symtree* overriding;
   17433         2019 :       overriding = gfc_find_typebound_proc (sub, NULL, st->name, true, NULL);
   17434         2019 :       if (!overriding)
   17435              :         return false;
   17436         2018 :       gcc_assert (overriding->n.tb);
   17437         2018 :       if (overriding->n.tb->deferred)
   17438              :         {
   17439            5 :           gfc_error ("Derived-type %qs declared at %L must be ABSTRACT because"
   17440              :                      " %qs is DEFERRED and not overridden",
   17441              :                      sub->name, &sub->declared_at, st->name);
   17442            5 :           return false;
   17443              :         }
   17444              :     }
   17445              : 
   17446              :   return true;
   17447              : }
   17448              : 
   17449              : static bool
   17450         1520 : ensure_not_abstract (gfc_symbol* sub, gfc_symbol* ancestor)
   17451              : {
   17452              :   /* The algorithm used here is to recursively travel up the ancestry of sub
   17453              :      and for each ancestor-type, check all bindings.  If any of them is
   17454              :      DEFERRED, look it up starting from sub and see if the found (overriding)
   17455              :      binding is not DEFERRED.
   17456              :      This is not the most efficient way to do this, but it should be ok and is
   17457              :      clearer than something sophisticated.  */
   17458              : 
   17459         1669 :   gcc_assert (ancestor && !sub->attr.abstract);
   17460              : 
   17461         1669 :   if (!ancestor->attr.abstract)
   17462              :     return true;
   17463              : 
   17464              :   /* Walk bindings of this ancestor.  */
   17465         1668 :   if (ancestor->f2k_derived)
   17466              :     {
   17467         1668 :       bool t;
   17468         1668 :       t = ensure_not_abstract_walker (sub, ancestor->f2k_derived->tb_sym_root);
   17469         1668 :       if (!t)
   17470              :         return false;
   17471              :     }
   17472              : 
   17473              :   /* Find next ancestor type and recurse on it.  */
   17474         1662 :   ancestor = gfc_get_derived_super_type (ancestor);
   17475         1662 :   if (ancestor)
   17476              :     return ensure_not_abstract (sub, ancestor);
   17477              : 
   17478              :   return true;
   17479              : }
   17480              : 
   17481              : 
   17482              : /* This check for typebound defined assignments is done recursively
   17483              :    since the order in which derived types are resolved is not always in
   17484              :    order of the declarations.  */
   17485              : 
   17486              : static void
   17487       187853 : check_defined_assignments (gfc_symbol *derived)
   17488              : {
   17489       187853 :   gfc_component *c;
   17490              : 
   17491       632110 :   for (c = derived->components; c; c = c->next)
   17492              :     {
   17493       446064 :       if (!gfc_bt_struct (c->ts.type)
   17494       107868 :           || c->attr.pointer
   17495        21893 :           || c->attr.proc_pointer_comp
   17496        21893 :           || c->attr.class_pointer
   17497        21887 :           || c->attr.proc_pointer)
   17498       424711 :         continue;
   17499              : 
   17500        21353 :       if (c->ts.u.derived->attr.defined_assign_comp
   17501        21118 :           || (c->ts.u.derived->f2k_derived
   17502        20536 :              && c->ts.u.derived->f2k_derived->tb_op[INTRINSIC_ASSIGN]))
   17503              :         {
   17504         1783 :           derived->attr.defined_assign_comp = 1;
   17505         1783 :           return;
   17506              :         }
   17507              : 
   17508        19570 :       if (c->attr.allocatable)
   17509         6950 :         continue;
   17510              : 
   17511        12620 :       check_defined_assignments (c->ts.u.derived);
   17512        12620 :       if (c->ts.u.derived->attr.defined_assign_comp)
   17513              :         {
   17514           24 :           derived->attr.defined_assign_comp = 1;
   17515           24 :           return;
   17516              :         }
   17517              :     }
   17518              : }
   17519              : 
   17520              : 
   17521              : /* Resolve a single component of a derived type or structure.  */
   17522              : 
   17523              : static bool
   17524       424118 : resolve_component (gfc_component *c, gfc_symbol *sym)
   17525              : {
   17526       424118 :   gfc_symbol *super_type;
   17527       424118 :   symbol_attribute *attr;
   17528              : 
   17529       424118 :   if (c->attr.artificial)
   17530              :     return true;
   17531              : 
   17532              :   /* Do not allow vtype components to be resolved in nameless namespaces
   17533              :      such as block data because the procedure pointers will cause ICEs
   17534              :      and vtables are not needed in these contexts.  */
   17535       289589 :   if (sym->attr.vtype && sym->attr.use_assoc
   17536        50300 :       && sym->ns->proc_name == NULL)
   17537              :     return true;
   17538              : 
   17539              :   /* F2008, C442.  */
   17540       289580 :   if ((!sym->attr.is_class || c != sym->components)
   17541       289580 :       && c->attr.codimension
   17542          230 :       && (!c->attr.allocatable || (c->as && c->as->type != AS_DEFERRED)))
   17543              :     {
   17544            4 :       gfc_error ("Coarray component %qs at %L must be allocatable with "
   17545              :                  "deferred shape", c->name, &c->loc);
   17546            4 :       return false;
   17547              :     }
   17548              : 
   17549              :   /* F2008, C443.  */
   17550       289576 :   if (c->attr.codimension && c->ts.type == BT_DERIVED
   17551           85 :       && c->ts.u.derived->ts.is_iso_c)
   17552              :     {
   17553            1 :       gfc_error ("Component %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
   17554              :                  "shall not be a coarray", c->name, &c->loc);
   17555            1 :       return false;
   17556              :     }
   17557              : 
   17558              :   /* F2008, C444.  */
   17559       289575 :   if (gfc_bt_struct (c->ts.type) && c->ts.u.derived->attr.coarray_comp
   17560           28 :       && (c->attr.codimension || c->attr.pointer || c->attr.dimension
   17561           26 :           || c->attr.allocatable))
   17562              :     {
   17563            3 :       gfc_error ("Component %qs at %L with coarray component "
   17564              :                  "shall be a nonpointer, nonallocatable scalar",
   17565              :                  c->name, &c->loc);
   17566            3 :       return false;
   17567              :     }
   17568              : 
   17569              :   /* F2008, C448.  */
   17570       289572 :   if (c->ts.type == BT_CLASS)
   17571              :     {
   17572         7274 :       if (c->attr.class_ok && CLASS_DATA (c))
   17573              :         {
   17574         7266 :           attr = &(CLASS_DATA (c)->attr);
   17575              : 
   17576              :           /* Fix up contiguous attribute.  */
   17577         7266 :           if (c->attr.contiguous)
   17578           11 :             attr->contiguous = 1;
   17579              :         }
   17580              :       else
   17581              :         attr = NULL;
   17582              :     }
   17583              :   else
   17584       282298 :     attr = &c->attr;
   17585              : 
   17586       289564 :   if (attr && attr->contiguous && (!attr->dimension || !attr->pointer))
   17587              :     {
   17588            5 :       gfc_error ("Component %qs at %L has the CONTIGUOUS attribute but "
   17589              :                  "is not an array pointer", c->name, &c->loc);
   17590            5 :       return false;
   17591              :     }
   17592              : 
   17593              :   /* F2003, 15.2.1 - length has to be one.  */
   17594        41748 :   if (sym->attr.is_bind_c && c->ts.type == BT_CHARACTER
   17595       289586 :       && (c->ts.u.cl == NULL || c->ts.u.cl->length == NULL
   17596           19 :           || !gfc_is_constant_expr (c->ts.u.cl->length)
   17597           19 :           || mpz_cmp_si (c->ts.u.cl->length->value.integer, 1) != 0))
   17598              :     {
   17599            1 :       gfc_error ("Component %qs of BIND(C) type at %L must have length one",
   17600              :                  c->name, &c->loc);
   17601            1 :       return false;
   17602              :     }
   17603              : 
   17604        54276 :   if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.pdt_template
   17605          427 :       && !sym->attr.pdt_type && !sym->attr.pdt_template
   17606       289574 :       && !(gfc_get_derived_super_type (sym)
   17607            0 :            && (gfc_get_derived_super_type (sym)->attr.pdt_type
   17608            0 :                ||  gfc_get_derived_super_type (sym)->attr.pdt_template)))
   17609              :     {
   17610            8 :       gfc_actual_arglist *type_spec_list;
   17611            8 :       if (gfc_get_pdt_instance (c->param_list, &c->ts.u.derived,
   17612              :                                 &type_spec_list)
   17613              :           != MATCH_YES)
   17614            0 :         return false;
   17615            8 :       gfc_free_actual_arglist (c->param_list);
   17616            8 :       c->param_list = type_spec_list;
   17617            8 :       if (!sym->attr.pdt_type)
   17618            8 :         sym->attr.pdt_comp = 1;
   17619              :     }
   17620       289558 :   else if (IS_PDT (c) && !sym->attr.pdt_type)
   17621           54 :     sym->attr.pdt_comp = 1;
   17622              : 
   17623       289566 :   if (c->attr.proc_pointer && c->ts.interface)
   17624              :     {
   17625        14960 :       gfc_symbol *ifc = c->ts.interface;
   17626              : 
   17627        14960 :       if (!sym->attr.vtype && !check_proc_interface (ifc, &c->loc))
   17628              :         {
   17629            6 :           c->tb->error = 1;
   17630            6 :           return false;
   17631              :         }
   17632              : 
   17633        14954 :       if (ifc->attr.if_source || ifc->attr.intrinsic)
   17634              :         {
   17635              :           /* Resolve interface and copy attributes.  */
   17636        14905 :           if (ifc->formal && !ifc->formal_ns)
   17637         2611 :             resolve_symbol (ifc);
   17638        14905 :           if (ifc->attr.intrinsic)
   17639            0 :             gfc_resolve_intrinsic (ifc, &ifc->declared_at);
   17640              : 
   17641        14905 :           if (ifc->result)
   17642              :             {
   17643         7783 :               c->ts = ifc->result->ts;
   17644         7783 :               c->attr.allocatable = ifc->result->attr.allocatable;
   17645         7783 :               c->attr.pointer = ifc->result->attr.pointer;
   17646         7783 :               c->attr.dimension = ifc->result->attr.dimension;
   17647         7783 :               c->as = gfc_copy_array_spec (ifc->result->as);
   17648         7783 :               c->attr.class_ok = ifc->result->attr.class_ok;
   17649              :             }
   17650              :           else
   17651              :             {
   17652         7122 :               c->ts = ifc->ts;
   17653         7122 :               c->attr.allocatable = ifc->attr.allocatable;
   17654         7122 :               c->attr.pointer = ifc->attr.pointer;
   17655         7122 :               c->attr.dimension = ifc->attr.dimension;
   17656         7122 :               c->as = gfc_copy_array_spec (ifc->as);
   17657         7122 :               c->attr.class_ok = ifc->attr.class_ok;
   17658              :             }
   17659        14905 :           c->ts.interface = ifc;
   17660        14905 :           c->attr.function = ifc->attr.function;
   17661        14905 :           c->attr.subroutine = ifc->attr.subroutine;
   17662              : 
   17663        14905 :           c->attr.pure = ifc->attr.pure;
   17664        14905 :           c->attr.elemental = ifc->attr.elemental;
   17665        14905 :           c->attr.recursive = ifc->attr.recursive;
   17666        14905 :           c->attr.always_explicit = ifc->attr.always_explicit;
   17667        14905 :           c->attr.ext_attr |= ifc->attr.ext_attr;
   17668              :           /* Copy char length.  */
   17669        14905 :           if (ifc->ts.type == BT_CHARACTER && ifc->ts.u.cl)
   17670              :             {
   17671          491 :               gfc_charlen *cl = gfc_new_charlen (sym->ns, ifc->ts.u.cl);
   17672          454 :               if (cl->length && !cl->resolved
   17673          601 :                   && !gfc_resolve_expr (cl->length))
   17674              :                 {
   17675            0 :                   c->tb->error = 1;
   17676            0 :                   return false;
   17677              :                 }
   17678          491 :               c->ts.u.cl = cl;
   17679              :             }
   17680              :         }
   17681              :     }
   17682       274606 :   else if (c->attr.proc_pointer && c->ts.type == BT_UNKNOWN)
   17683              :     {
   17684              :       /* Since PPCs are not implicitly typed, a PPC without an explicit
   17685              :          interface must be a subroutine.  */
   17686          116 :       gfc_add_subroutine (&c->attr, c->name, &c->loc);
   17687              :     }
   17688              : 
   17689              :   /* Procedure pointer components: Check PASS arg.  */
   17690       289560 :   if (c->attr.proc_pointer && !c->tb->nopass && c->tb->pass_arg_num == 0
   17691          578 :       && !sym->attr.vtype)
   17692              :     {
   17693           95 :       gfc_symbol* me_arg;
   17694              : 
   17695           95 :       if (c->tb->pass_arg)
   17696              :         {
   17697           20 :           gfc_formal_arglist* i;
   17698              : 
   17699              :           /* If an explicit passing argument name is given, walk the arg-list
   17700              :             and look for it.  */
   17701              : 
   17702           20 :           me_arg = NULL;
   17703           20 :           c->tb->pass_arg_num = 1;
   17704           34 :           for (i = c->ts.interface->formal; i; i = i->next)
   17705              :             {
   17706           33 :               if (!strcmp (i->sym->name, c->tb->pass_arg))
   17707              :                 {
   17708              :                   me_arg = i->sym;
   17709              :                   break;
   17710              :                 }
   17711           14 :               c->tb->pass_arg_num++;
   17712              :             }
   17713              : 
   17714           20 :           if (!me_arg)
   17715              :             {
   17716            1 :               gfc_error ("Procedure pointer component %qs with PASS(%s) "
   17717              :                          "at %L has no argument %qs", c->name,
   17718              :                          c->tb->pass_arg, &c->loc, c->tb->pass_arg);
   17719            1 :               c->tb->error = 1;
   17720            1 :               return false;
   17721              :             }
   17722              :         }
   17723              :       else
   17724              :         {
   17725              :           /* Otherwise, take the first one; there should in fact be at least
   17726              :             one.  */
   17727           75 :           c->tb->pass_arg_num = 1;
   17728           75 :           if (!c->ts.interface->formal)
   17729              :             {
   17730            3 :               gfc_error ("Procedure pointer component %qs with PASS at %L "
   17731              :                          "must have at least one argument",
   17732              :                          c->name, &c->loc);
   17733            3 :               c->tb->error = 1;
   17734            3 :               return false;
   17735              :             }
   17736           72 :           me_arg = c->ts.interface->formal->sym;
   17737              :         }
   17738              : 
   17739              :       /* Now check that the argument-type matches.  */
   17740           72 :       gcc_assert (me_arg);
   17741           91 :       if ((me_arg->ts.type != BT_DERIVED && me_arg->ts.type != BT_CLASS)
   17742           90 :           || (me_arg->ts.type == BT_DERIVED && me_arg->ts.u.derived != sym)
   17743           90 :           || (me_arg->ts.type == BT_CLASS
   17744           82 :               && CLASS_DATA (me_arg)->ts.u.derived != sym))
   17745              :         {
   17746            1 :           gfc_error ("Argument %qs of %qs with PASS(%s) at %L must be of"
   17747              :                      " the derived type %qs", me_arg->name, c->name,
   17748              :                      me_arg->name, &c->loc, sym->name);
   17749            1 :           c->tb->error = 1;
   17750            1 :           return false;
   17751              :         }
   17752              : 
   17753              :       /* Check for F03:C453.  */
   17754           90 :       if (CLASS_DATA (me_arg)->attr.dimension)
   17755              :         {
   17756            1 :           gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
   17757              :                      "must be scalar", me_arg->name, c->name, me_arg->name,
   17758              :                      &c->loc);
   17759            1 :           c->tb->error = 1;
   17760            1 :           return false;
   17761              :         }
   17762              : 
   17763           89 :       if (CLASS_DATA (me_arg)->attr.class_pointer)
   17764              :         {
   17765            1 :           gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
   17766              :                      "may not have the POINTER attribute", me_arg->name,
   17767              :                      c->name, me_arg->name, &c->loc);
   17768            1 :           c->tb->error = 1;
   17769            1 :           return false;
   17770              :         }
   17771              : 
   17772           88 :       if (CLASS_DATA (me_arg)->attr.allocatable)
   17773              :         {
   17774            1 :           gfc_error ("Argument %qs of %qs with PASS(%s) at %L "
   17775              :                      "may not be ALLOCATABLE", me_arg->name, c->name,
   17776              :                      me_arg->name, &c->loc);
   17777            1 :           c->tb->error = 1;
   17778            1 :           return false;
   17779              :         }
   17780              : 
   17781           87 :       if (gfc_type_is_extensible (sym) && me_arg->ts.type != BT_CLASS)
   17782              :         {
   17783            2 :           gfc_error ("Non-polymorphic passed-object dummy argument of %qs"
   17784              :                      " at %L", c->name, &c->loc);
   17785            2 :           return false;
   17786              :         }
   17787              : 
   17788              :     }
   17789              : 
   17790              :   /* Check type-spec if this is not the parent-type component.  */
   17791       289550 :   if (((sym->attr.is_class
   17792        12860 :         && (!sym->components->ts.u.derived->attr.extension
   17793         2400 :             || c != CLASS_DATA (sym->components)))
   17794       278041 :        || (!sym->attr.is_class
   17795       276690 :            && (!sym->attr.extension || c != sym->components)))
   17796       280928 :       && !sym->attr.vtype
   17797       458291 :       && !resolve_typespec_used (&c->ts, &c->loc, c->name))
   17798              :     return false;
   17799              : 
   17800       289549 :   super_type = gfc_get_derived_super_type (sym);
   17801              : 
   17802              :   /* If this type is an extension, set the accessibility of the parent
   17803              :      component.  */
   17804       289549 :   if (super_type
   17805        28071 :       && ((sym->attr.is_class
   17806        12860 :            && c == CLASS_DATA (sym->components))
   17807        19136 :           || (!sym->attr.is_class && c == sym->components))
   17808        16206 :       && strcmp (super_type->name, c->name) == 0)
   17809         6935 :     c->attr.access = super_type->attr.access;
   17810              : 
   17811              :   /* If this type is an extension, see if this component has the same name
   17812              :      as an inherited type-bound procedure.  */
   17813        28071 :   if (super_type && !sym->attr.is_class
   17814        15211 :       && gfc_find_typebound_proc (super_type, NULL, c->name, true, NULL))
   17815              :     {
   17816            1 :       gfc_error ("Component %qs of %qs at %L has the same name as an"
   17817              :                  " inherited type-bound procedure",
   17818              :                  c->name, sym->name, &c->loc);
   17819            1 :       return false;
   17820              :     }
   17821              : 
   17822       289548 :   if (c->ts.type == BT_CHARACTER && !c->attr.proc_pointer
   17823         9519 :       && !c->ts.deferred)
   17824              :     {
   17825         7248 :       if (sym->attr.pdt_template || c->attr.pdt_string)
   17826          258 :         gfc_correct_parm_expr (sym, &c->ts.u.cl->length);
   17827              : 
   17828         7248 :       if (c->ts.u.cl->length == NULL
   17829         7242 :           || !resolve_charlen(c->ts.u.cl)
   17830        14489 :           || !gfc_is_constant_expr (c->ts.u.cl->length))
   17831              :         {
   17832            9 :           gfc_error ("Character length of component %qs needs to "
   17833              :                      "be a constant specification expression at %L",
   17834              :                      c->name,
   17835            9 :                      c->ts.u.cl->length ? &c->ts.u.cl->length->where : &c->loc);
   17836            9 :           return false;
   17837              :         }
   17838              : 
   17839         7239 :      if (c->ts.u.cl->length && c->ts.u.cl->length->ts.type != BT_INTEGER)
   17840              :         {
   17841            2 :          if (!c->ts.u.cl->length->error)
   17842              :            {
   17843            1 :              gfc_error ("Character length expression of component %qs at %L "
   17844              :                         "must be of INTEGER type, found %s",
   17845            1 :                         c->name, &c->ts.u.cl->length->where,
   17846              :                         gfc_basic_typename (c->ts.u.cl->length->ts.type));
   17847            1 :              c->ts.u.cl->length->error = 1;
   17848              :            }
   17849              :          return false;
   17850              :        }
   17851              :     }
   17852              : 
   17853       289537 :   if (c->ts.type == BT_CHARACTER && c->ts.deferred
   17854         2307 :       && !c->attr.pointer && !c->attr.allocatable)
   17855              :     {
   17856            1 :       gfc_error ("Character component %qs of %qs at %L with deferred "
   17857              :                  "length must be a POINTER or ALLOCATABLE",
   17858              :                  c->name, sym->name, &c->loc);
   17859            1 :       return false;
   17860              :     }
   17861              : 
   17862              :   /* Add the hidden deferred length field.  */
   17863       289536 :   if (c->ts.type == BT_CHARACTER
   17864        10019 :       && (c->ts.deferred || c->attr.pdt_string)
   17865         2481 :       && !c->attr.function
   17866         2445 :       && !sym->attr.is_class)
   17867              :     {
   17868         2298 :       char name[GFC_MAX_SYMBOL_LEN+9];
   17869         2298 :       gfc_component *strlen;
   17870         2298 :       sprintf (name, "_%s_length", c->name);
   17871         2298 :       strlen = gfc_find_component (sym, name, true, true, NULL);
   17872         2298 :       if (strlen == NULL)
   17873              :         {
   17874          490 :           if (!gfc_add_component (sym, name, &strlen))
   17875            0 :             return false;
   17876          490 :           strlen->ts.type = BT_INTEGER;
   17877          490 :           strlen->ts.kind = gfc_charlen_int_kind;
   17878          490 :           strlen->attr.access = ACCESS_PRIVATE;
   17879          490 :           strlen->attr.artificial = 1;
   17880              :         }
   17881              :     }
   17882              : 
   17883       289536 :   if (c->ts.type == BT_DERIVED
   17884        54486 :       && sym->component_access != ACCESS_PRIVATE
   17885        53466 :       && gfc_check_symbol_access (sym)
   17886       104896 :       && !is_sym_host_assoc (c->ts.u.derived, sym->ns)
   17887        52389 :       && !c->ts.u.derived->attr.use_assoc
   17888        28112 :       && !gfc_check_symbol_access (c->ts.u.derived)
   17889       289733 :       && !gfc_notify_std (GFC_STD_F2003, "the component %qs is a "
   17890              :                           "PRIVATE type and cannot be a component of "
   17891              :                           "%qs, which is PUBLIC at %L", c->name,
   17892              :                           sym->name, &sym->declared_at))
   17893              :     return false;
   17894              : 
   17895       289535 :   if ((sym->attr.sequence || sym->attr.is_bind_c) && c->ts.type == BT_CLASS)
   17896              :     {
   17897            2 :       gfc_error ("Polymorphic component %s at %L in SEQUENCE or BIND(C) "
   17898              :                  "type %s", c->name, &c->loc, sym->name);
   17899            2 :       return false;
   17900              :     }
   17901              : 
   17902       289533 :   if (sym->attr.sequence)
   17903              :     {
   17904         2506 :       if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.sequence == 0)
   17905              :         {
   17906            0 :           gfc_error ("Component %s of SEQUENCE type declared at %L does "
   17907              :                      "not have the SEQUENCE attribute",
   17908              :                      c->ts.u.derived->name, &sym->declared_at);
   17909            0 :           return false;
   17910              :         }
   17911              :     }
   17912              : 
   17913       289533 :   if (c->ts.type == BT_DERIVED && c->ts.u.derived->attr.generic)
   17914            0 :     c->ts.u.derived = gfc_find_dt_in_generic (c->ts.u.derived);
   17915       289533 :   else if (c->ts.type == BT_CLASS && c->attr.class_ok
   17916         7608 :            && CLASS_DATA (c)->ts.u.derived->attr.generic)
   17917            0 :     CLASS_DATA (c)->ts.u.derived
   17918            0 :                 = gfc_find_dt_in_generic (CLASS_DATA (c)->ts.u.derived);
   17919              : 
   17920              :   /* If an allocatable component derived type is of the same type as
   17921              :      the enclosing derived type, we need a vtable generating so that
   17922              :      the __deallocate procedure is created.  */
   17923       289533 :   if ((c->ts.type == BT_DERIVED || c->ts.type == BT_CLASS)
   17924        62104 :        && c->ts.u.derived == sym && c->attr.allocatable == 1)
   17925          495 :     gfc_find_vtab (&c->ts);
   17926              : 
   17927              :   /* Ensure that all the derived type components are put on the
   17928              :      derived type list; even in formal namespaces, where derived type
   17929              :      pointer components might not have been declared.  */
   17930       289533 :   if (c->ts.type == BT_DERIVED
   17931        54485 :       && c->ts.u.derived
   17932        54485 :       && c->ts.u.derived->components
   17933        51157 :       && c->attr.pointer
   17934        34640 :       && sym != c->ts.u.derived)
   17935         4409 :     add_dt_to_dt_list (c->ts.u.derived);
   17936              : 
   17937       289533 :   if (c->as && c->as->type != AS_DEFERRED
   17938         6548 :       && (c->attr.pointer || c->attr.allocatable))
   17939              :     return false;
   17940              : 
   17941       289519 :   if (!gfc_resolve_array_spec (c->as,
   17942       289519 :                                !(c->attr.pointer || c->attr.proc_pointer
   17943       236036 :                                  || c->attr.allocatable)))
   17944              :     return false;
   17945              : 
   17946       109951 :   if (c->initializer && !sym->attr.vtype
   17947        34069 :       && !c->attr.pdt_kind && !c->attr.pdt_len
   17948       319832 :       && !gfc_check_assign_symbol (sym, c, c->initializer))
   17949              :     return false;
   17950              : 
   17951              :   return true;
   17952              : }
   17953              : 
   17954              : 
   17955              : /* Be nice about the locus for a structure expression - show the locus of the
   17956              :    first non-null sub-expression if we can.  */
   17957              : 
   17958              : static locus *
   17959            4 : cons_where (gfc_expr *struct_expr)
   17960              : {
   17961            4 :   gfc_constructor *cons;
   17962              : 
   17963            4 :   gcc_assert (struct_expr && struct_expr->expr_type == EXPR_STRUCTURE);
   17964              : 
   17965            4 :   cons = gfc_constructor_first (struct_expr->value.constructor);
   17966           12 :   for (; cons; cons = gfc_constructor_next (cons))
   17967              :     {
   17968            8 :       if (cons->expr && cons->expr->expr_type != EXPR_NULL)
   17969            4 :         return &cons->expr->where;
   17970              :     }
   17971              : 
   17972            0 :   return &struct_expr->where;
   17973              : }
   17974              : 
   17975              : /* Resolve the components of a structure type. Much less work than derived
   17976              :    types.  */
   17977              : 
   17978              : static bool
   17979          913 : resolve_fl_struct (gfc_symbol *sym)
   17980              : {
   17981          913 :   gfc_component *c;
   17982          913 :   gfc_expr *init = NULL;
   17983          913 :   bool success;
   17984              : 
   17985              :   /* Make sure UNIONs do not have overlapping initializers.  */
   17986          913 :   if (sym->attr.flavor == FL_UNION)
   17987              :     {
   17988          498 :       for (c = sym->components; c; c = c->next)
   17989              :         {
   17990          331 :           if (init && c->initializer)
   17991              :             {
   17992            2 :               gfc_error ("Conflicting initializers in union at %L and %L",
   17993              :                          cons_where (init), cons_where (c->initializer));
   17994            2 :               gfc_free_expr (c->initializer);
   17995            2 :               c->initializer = NULL;
   17996              :             }
   17997              :           if (init == NULL)
   17998          291 :             init = c->initializer;
   17999              :         }
   18000              :     }
   18001              : 
   18002          913 :   success = true;
   18003         2830 :   for (c = sym->components; c; c = c->next)
   18004         1917 :     if (!resolve_component (c, sym))
   18005            0 :       success = false;
   18006              : 
   18007          913 :   if (!success)
   18008              :     return false;
   18009              : 
   18010          913 :   if (sym->components)
   18011          862 :     add_dt_to_dt_list (sym);
   18012              : 
   18013              :   return true;
   18014              : }
   18015              : 
   18016              : /* Figure if the derived type is using itself directly in one of its components
   18017              :    or through referencing other derived types.  The information is required to
   18018              :    generate the __deallocate and __final type bound procedures to ensure
   18019              :    freeing larger hierarchies of derived types with allocatable objects.  */
   18020              : 
   18021              : static void
   18022       142063 : resolve_cyclic_derived_type (gfc_symbol *derived)
   18023              : {
   18024       142063 :   hash_set<gfc_symbol *> seen, to_examin;
   18025       142063 :   gfc_component *c;
   18026       142063 :   seen.add (derived);
   18027       142063 :   to_examin.add (derived);
   18028       476711 :   while (!to_examin.is_empty ())
   18029              :     {
   18030       194873 :       gfc_symbol *cand = *to_examin.begin ();
   18031       194873 :       to_examin.remove (cand);
   18032       526582 :       for (c = cand->components; c; c = c->next)
   18033       333997 :         if (c->ts.type == BT_DERIVED)
   18034              :           {
   18035        73861 :             if (c->ts.u.derived == derived)
   18036              :               {
   18037         1216 :                 derived->attr.recursive = 1;
   18038         2288 :                 return;
   18039              :               }
   18040        72645 :             else if (!seen.contains (c->ts.u.derived))
   18041              :               {
   18042        48178 :                 seen.add (c->ts.u.derived);
   18043        48178 :                 to_examin.add (c->ts.u.derived);
   18044              :               }
   18045              :           }
   18046       260136 :         else if (c->ts.type == BT_CLASS)
   18047              :           {
   18048         9876 :             if (!c->attr.class_ok)
   18049            7 :               continue;
   18050         9869 :             if (CLASS_DATA (c)->ts.u.derived == derived)
   18051              :               {
   18052         1072 :                 derived->attr.recursive = 1;
   18053         1072 :                 return;
   18054              :               }
   18055         8797 :             else if (!seen.contains (CLASS_DATA (c)->ts.u.derived))
   18056              :               {
   18057         4947 :                 seen.add (CLASS_DATA (c)->ts.u.derived);
   18058         4947 :                 to_examin.add (CLASS_DATA (c)->ts.u.derived);
   18059              :               }
   18060              :           }
   18061              :     }
   18062       142063 : }
   18063              : 
   18064              : /* Resolve the components of a derived type. This does not have to wait until
   18065              :    resolution stage, but can be done as soon as the dt declaration has been
   18066              :    parsed.  */
   18067              : 
   18068              : static bool
   18069       175329 : resolve_fl_derived0 (gfc_symbol *sym)
   18070              : {
   18071       175329 :   gfc_symbol* super_type;
   18072       175329 :   gfc_component *c;
   18073       175329 :   gfc_formal_arglist *f;
   18074       175329 :   bool success;
   18075              : 
   18076       175329 :   if (sym->attr.unlimited_polymorphic)
   18077              :     return true;
   18078              : 
   18079       175329 :   super_type = gfc_get_derived_super_type (sym);
   18080              : 
   18081              :   /* F2008, C432.  */
   18082       175329 :   if (super_type && sym->attr.coarray_comp && !super_type->attr.coarray_comp)
   18083              :     {
   18084            2 :       gfc_error ("As extending type %qs at %L has a coarray component, "
   18085              :                  "parent type %qs shall also have one", sym->name,
   18086              :                  &sym->declared_at, super_type->name);
   18087            2 :       return false;
   18088              :     }
   18089              : 
   18090              :   /* Ensure the extended type gets resolved before we do.  */
   18091        18282 :   if (super_type && !resolve_fl_derived0 (super_type))
   18092              :     return false;
   18093              : 
   18094              :   /* An ABSTRACT type must be extensible.  */
   18095       175321 :   if (sym->attr.abstract && !gfc_type_is_extensible (sym))
   18096              :     {
   18097            2 :       gfc_error ("Non-extensible derived-type %qs at %L must not be ABSTRACT",
   18098              :                  sym->name, &sym->declared_at);
   18099            2 :       return false;
   18100              :     }
   18101              : 
   18102              :   /* Resolving components below, may create vtabs for which the cyclic type
   18103              :      information needs to be present.  */
   18104       175319 :   if (!sym->attr.vtype)
   18105       142063 :     resolve_cyclic_derived_type (sym);
   18106              : 
   18107       175319 :   c = (sym->attr.is_class) ? CLASS_DATA (sym->components)
   18108              :                            : sym->components;
   18109              : 
   18110       175319 :   success = true;
   18111       597520 :   for ( ; c != NULL; c = c->next)
   18112       422201 :     if (!resolve_component (c, sym))
   18113           96 :       success = false;
   18114              : 
   18115       175319 :   if (!success)
   18116              :     return false;
   18117              : 
   18118              :   /* Now add the caf token field, where needed.  */
   18119       175233 :   if (flag_coarray == GFC_FCOARRAY_LIB && !sym->attr.is_class
   18120         1020 :       && !sym->attr.vtype)
   18121              :     {
   18122         2276 :       for (c = sym->components; c; c = c->next)
   18123         1459 :         if (!c->attr.dimension && !c->attr.codimension
   18124          803 :             && (c->attr.allocatable || c->attr.pointer))
   18125              :           {
   18126          146 :             char name[GFC_MAX_SYMBOL_LEN+9];
   18127          146 :             gfc_component *token;
   18128          146 :             sprintf (name, "_caf_%s", c->name);
   18129          146 :             token = gfc_find_component (sym, name, true, true, NULL);
   18130          146 :             if (token == NULL)
   18131              :               {
   18132           82 :                 if (!gfc_add_component (sym, name, &token))
   18133            0 :                   return false;
   18134           82 :                 token->ts.type = BT_VOID;
   18135           82 :                 token->ts.kind = gfc_default_integer_kind;
   18136           82 :                 token->attr.access = ACCESS_PRIVATE;
   18137           82 :                 token->attr.artificial = 1;
   18138           82 :                 token->attr.caf_token = 1;
   18139              :               }
   18140          146 :             c->caf_token = token;
   18141              :           }
   18142              :     }
   18143              : 
   18144       175233 :   check_defined_assignments (sym);
   18145              : 
   18146       175233 :   if (!sym->attr.defined_assign_comp && super_type)
   18147        17275 :     sym->attr.defined_assign_comp
   18148        17275 :                         = super_type->attr.defined_assign_comp;
   18149              : 
   18150              :   /* If this is a non-ABSTRACT type extending an ABSTRACT one, ensure that
   18151              :      all DEFERRED bindings are overridden.  */
   18152        18275 :   if (super_type && super_type->attr.abstract && !sym->attr.abstract
   18153         1523 :       && !sym->attr.is_class
   18154         3303 :       && !ensure_not_abstract (sym, super_type))
   18155              :     return false;
   18156              : 
   18157              :   /* Check that there is a component for every PDT parameter.  */
   18158       175227 :   if (sym->attr.pdt_template)
   18159              :     {
   18160         3282 :       for (f = sym->formal; f; f = f->next)
   18161              :         {
   18162         2008 :           if (!f->sym)
   18163            1 :             continue;
   18164         2007 :           c = gfc_find_component (sym, f->sym->name, true, true, NULL);
   18165         2007 :           if (c == NULL)
   18166              :             {
   18167            9 :               gfc_error ("Parameterized type %qs does not have a component "
   18168              :                          "corresponding to parameter %qs at %L", sym->name,
   18169            9 :                          f->sym->name, &sym->declared_at);
   18170            9 :               break;
   18171              :             }
   18172              :         }
   18173              :     }
   18174              : 
   18175              :   /* Add derived type to the derived type list.  */
   18176       175227 :   add_dt_to_dt_list (sym);
   18177              : 
   18178       175227 :   return true;
   18179              : }
   18180              : 
   18181              : /* The following procedure does the full resolution of a derived type,
   18182              :    including resolution of all type-bound procedures (if present). In contrast
   18183              :    to 'resolve_fl_derived0' this can only be done after the module has been
   18184              :    parsed completely.  */
   18185              : 
   18186              : static bool
   18187        91436 : resolve_fl_derived (gfc_symbol *sym)
   18188              : {
   18189        91436 :   gfc_symbol *gen_dt = NULL;
   18190              : 
   18191        91436 :   if (sym->attr.unlimited_polymorphic)
   18192              :     return true;
   18193              : 
   18194        91436 :   if (!sym->attr.is_class)
   18195        78281 :     gfc_find_symbol (sym->name, sym->ns, 0, &gen_dt);
   18196        58507 :   if (gen_dt && gen_dt->generic && gen_dt->generic->next
   18197         2315 :       && (!gen_dt->generic->sym->attr.use_assoc
   18198         2166 :           || gen_dt->generic->sym->module != gen_dt->generic->next->sym->module)
   18199        91618 :       && !gfc_notify_std (GFC_STD_F2003, "Generic name %qs of function "
   18200              :                           "%qs at %L being the same name as derived "
   18201              :                           "type at %L", sym->name,
   18202              :                           gen_dt->generic->sym == sym
   18203           11 :                           ? gen_dt->generic->next->sym->name
   18204              :                           : gen_dt->generic->sym->name,
   18205              :                           gen_dt->generic->sym == sym
   18206           11 :                           ? &gen_dt->generic->next->sym->declared_at
   18207              :                           : &gen_dt->generic->sym->declared_at,
   18208              :                           &sym->declared_at))
   18209              :     return false;
   18210              : 
   18211        91432 :   if (sym->components == NULL && !sym->attr.zero_comp && !sym->attr.use_assoc)
   18212              :     {
   18213           13 :       gfc_error ("Derived type %qs at %L has not been declared",
   18214              :                   sym->name, &sym->declared_at);
   18215           13 :       return false;
   18216              :     }
   18217              : 
   18218              :   /* Resolve the finalizer procedures.  */
   18219        91419 :   if (!gfc_resolve_finalizers (sym, NULL))
   18220              :     return false;
   18221              : 
   18222        91416 :   if (sym->attr.is_class && sym->ts.u.derived == NULL)
   18223              :     {
   18224              :       /* Fix up incomplete CLASS symbols.  */
   18225        13155 :       gfc_component *data = gfc_find_component (sym, "_data", true, true, NULL);
   18226        13155 :       gfc_component *vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
   18227              : 
   18228        13155 :       if (data->ts.u.derived->attr.pdt_template)
   18229              :         {
   18230            0 :           match m;
   18231            0 :           m = gfc_get_pdt_instance (sym->param_list, &data->ts.u.derived,
   18232              :                                     &data->param_list);
   18233            0 :           if (m != MATCH_YES
   18234            0 :               || !gfc_build_class_symbol (&sym->ts, &sym->attr, &sym->as))
   18235              :             {
   18236            0 :               gfc_error ("Failed to build PDT class component at %L",
   18237              :                          &sym->declared_at);
   18238            0 :               return false;
   18239              :             }
   18240            0 :           data = gfc_find_component (sym, "_data", true, true, NULL);
   18241            0 :           vptr = gfc_find_component (sym, "_vptr", true, true, NULL);
   18242              :         }
   18243              : 
   18244              :       /* Nothing more to do for unlimited polymorphic entities.  */
   18245        13155 :       if (data->ts.u.derived->attr.unlimited_polymorphic)
   18246              :         {
   18247         2145 :           add_dt_to_dt_list (sym);
   18248         2145 :           return true;
   18249              :         }
   18250        11010 :       else if (vptr->ts.u.derived == NULL)
   18251              :         {
   18252         6518 :           gfc_symbol *vtab = gfc_find_derived_vtab (data->ts.u.derived);
   18253         6518 :           gcc_assert (vtab);
   18254         6518 :           vptr->ts.u.derived = vtab->ts.u.derived;
   18255         6518 :           if (vptr->ts.u.derived && !resolve_fl_derived0 (vptr->ts.u.derived))
   18256              :             return false;
   18257              :         }
   18258              :     }
   18259              : 
   18260        89271 :   if (!resolve_fl_derived0 (sym))
   18261              :     return false;
   18262              : 
   18263              :   /* Resolve the type-bound procedures.  */
   18264        89187 :   if (!resolve_typebound_procedures (sym))
   18265              :     return false;
   18266              : 
   18267              :   /* Generate module vtables subject to their accessibility and their not
   18268              :      being vtables or pdt templates. If this is not done class declarations
   18269              :      in external procedures wind up with their own version and so SELECT TYPE
   18270              :      fails because the vptrs do not have the same address.  */
   18271        89146 :   if (gfc_option.allow_std & GFC_STD_F2003 && sym->ns->proc_name
   18272        89085 :       && (sym->ns->proc_name->attr.flavor == FL_MODULE
   18273        66725 :           || (sym->attr.recursive && sym->attr.alloc_comp))
   18274        22526 :       && sym->attr.access != ACCESS_PRIVATE
   18275        22493 :       && !(sym->attr.vtype || sym->attr.pdt_template))
   18276              :     {
   18277        20129 :       gfc_symbol *vtab = gfc_find_derived_vtab (sym);
   18278        20129 :       gfc_set_sym_referenced (vtab);
   18279              :     }
   18280              : 
   18281              :   return true;
   18282              : }
   18283              : 
   18284              : 
   18285              : static bool
   18286          875 : resolve_fl_namelist (gfc_symbol *sym)
   18287              : {
   18288          875 :   gfc_namelist *nl;
   18289          875 :   gfc_symbol *nlsym;
   18290              : 
   18291         3070 :   for (nl = sym->namelist; nl; nl = nl->next)
   18292              :     {
   18293              :       /* Check again, the check in match only works if NAMELIST comes
   18294              :          after the decl.  */
   18295         2200 :       if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SIZE)
   18296              :         {
   18297            1 :           gfc_error ("Assumed size array %qs in namelist %qs at %L is not "
   18298              :                      "allowed", nl->sym->name, sym->name, &sym->declared_at);
   18299            1 :           return false;
   18300              :         }
   18301              : 
   18302          678 :       if (nl->sym->as && nl->sym->as->type == AS_ASSUMED_SHAPE
   18303         2207 :           && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
   18304              :                               "with assumed shape in namelist %qs at %L",
   18305              :                               nl->sym->name, sym->name, &sym->declared_at))
   18306              :         return false;
   18307              : 
   18308         2198 :       if (is_non_constant_shape_array (nl->sym)
   18309         2248 :           && !gfc_notify_std (GFC_STD_F2003, "NAMELIST array object %qs "
   18310              :                               "with nonconstant shape in namelist %qs at %L",
   18311           50 :                               nl->sym->name, sym->name, &sym->declared_at))
   18312              :         return false;
   18313              : 
   18314         2197 :       if (nl->sym->ts.type == BT_CHARACTER
   18315          605 :           && (nl->sym->ts.u.cl->length == NULL
   18316          566 :               || !gfc_is_constant_expr (nl->sym->ts.u.cl->length))
   18317         2279 :           && !gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs with "
   18318              :                               "nonconstant character length in "
   18319           82 :                               "namelist %qs at %L", nl->sym->name,
   18320              :                               sym->name, &sym->declared_at))
   18321              :         return false;
   18322              : 
   18323              :     }
   18324              : 
   18325              :   /* Reject PRIVATE objects in a PUBLIC namelist.  */
   18326          870 :   if (gfc_check_symbol_access (sym))
   18327              :     {
   18328         3051 :       for (nl = sym->namelist; nl; nl = nl->next)
   18329              :         {
   18330         2194 :           if (!nl->sym->attr.use_assoc
   18331         4092 :               && !is_sym_host_assoc (nl->sym, sym->ns)
   18332         4218 :               && !gfc_check_symbol_access (nl->sym))
   18333              :             {
   18334            2 :               gfc_error ("NAMELIST object %qs was declared PRIVATE and "
   18335              :                          "cannot be member of PUBLIC namelist %qs at %L",
   18336            2 :                          nl->sym->name, sym->name, &sym->declared_at);
   18337            2 :               return false;
   18338              :             }
   18339              : 
   18340         2192 :           if (nl->sym->ts.type == BT_DERIVED
   18341          472 :              && (nl->sym->ts.u.derived->attr.alloc_comp
   18342          470 :                  || nl->sym->ts.u.derived->attr.pointer_comp))
   18343              :            {
   18344            5 :              if (!gfc_notify_std (GFC_STD_F2003, "NAMELIST object %qs in "
   18345              :                                   "namelist %qs at %L with ALLOCATABLE "
   18346              :                                   "or POINTER components", nl->sym->name,
   18347              :                                   sym->name, &sym->declared_at))
   18348              :                return false;
   18349              :              return true;
   18350              :            }
   18351              : 
   18352              :           /* Types with private components that came here by USE-association.  */
   18353         2187 :           if (nl->sym->ts.type == BT_DERIVED
   18354         2187 :               && derived_inaccessible (nl->sym->ts.u.derived))
   18355              :             {
   18356            6 :               gfc_error ("NAMELIST object %qs has use-associated PRIVATE "
   18357              :                          "components and cannot be member of namelist %qs at %L",
   18358              :                          nl->sym->name, sym->name, &sym->declared_at);
   18359            6 :               return false;
   18360              :             }
   18361              : 
   18362              :           /* Types with private components that are defined in the same module.  */
   18363         2181 :           if (nl->sym->ts.type == BT_DERIVED
   18364          922 :               && !is_sym_host_assoc (nl->sym->ts.u.derived, sym->ns)
   18365         2465 :               && nl->sym->ts.u.derived->attr.private_comp)
   18366              :             {
   18367            0 :               gfc_error ("NAMELIST object %qs has PRIVATE components and "
   18368              :                          "cannot be a member of PUBLIC namelist %qs at %L",
   18369              :                          nl->sym->name, sym->name, &sym->declared_at);
   18370            0 :               return false;
   18371              :             }
   18372              :         }
   18373              :     }
   18374              : 
   18375              : 
   18376              :   /* 14.1.2 A module or internal procedure represent local entities
   18377              :      of the same type as a namelist member and so are not allowed.  */
   18378         3035 :   for (nl = sym->namelist; nl; nl = nl->next)
   18379              :     {
   18380         2181 :       if (nl->sym->ts.kind != 0 && nl->sym->attr.flavor == FL_VARIABLE)
   18381         1616 :         continue;
   18382              : 
   18383          565 :       if (nl->sym->attr.function && nl->sym == nl->sym->result)
   18384            7 :         if ((nl->sym == sym->ns->proc_name)
   18385            1 :                ||
   18386            1 :             (sym->ns->parent && nl->sym == sym->ns->parent->proc_name))
   18387            6 :           continue;
   18388              : 
   18389          559 :       nlsym = NULL;
   18390          559 :       if (nl->sym->name)
   18391          559 :         gfc_find_symbol (nl->sym->name, sym->ns, 1, &nlsym);
   18392          559 :       if (nlsym && nlsym->attr.flavor == FL_PROCEDURE)
   18393              :         {
   18394            3 :           gfc_error ("PROCEDURE attribute conflicts with NAMELIST "
   18395              :                      "attribute in %qs at %L", nlsym->name,
   18396              :                      &sym->declared_at);
   18397            3 :           return false;
   18398              :         }
   18399              :     }
   18400              : 
   18401              :   return true;
   18402              : }
   18403              : 
   18404              : 
   18405              : static bool
   18406       411697 : resolve_fl_parameter (gfc_symbol *sym)
   18407              : {
   18408              :   /* A parameter array's shape needs to be constant.  */
   18409       411697 :   if (sym->as != NULL
   18410       411697 :       && (sym->as->type == AS_DEFERRED
   18411         6357 :           || is_non_constant_shape_array (sym)))
   18412              :     {
   18413           17 :       gfc_error ("Parameter array %qs at %L cannot be automatic "
   18414              :                  "or of deferred shape", sym->name, &sym->declared_at);
   18415           17 :       return false;
   18416              :     }
   18417              : 
   18418              :   /* Constraints on deferred type parameter.  */
   18419       411680 :   if (!deferred_requirements (sym))
   18420              :     return false;
   18421              : 
   18422              :   /* Make sure a parameter that has been implicitly typed still
   18423              :      matches the implicit type, since PARAMETER statements can precede
   18424              :      IMPLICIT statements.  */
   18425       411679 :   if (sym->attr.implicit_type
   18426       412392 :       && !gfc_compare_types (&sym->ts, gfc_get_default_type (sym->name,
   18427          713 :                                                              sym->ns)))
   18428              :     {
   18429            0 :       gfc_error ("Implicitly typed PARAMETER %qs at %L doesn't match a "
   18430              :                  "later IMPLICIT type", sym->name, &sym->declared_at);
   18431            0 :       return false;
   18432              :     }
   18433              : 
   18434              :   /* Make sure the types of derived parameters are consistent.  This
   18435              :      type checking is deferred until resolution because the type may
   18436              :      refer to a derived type from the host.  */
   18437       411679 :   if (sym->ts.type == BT_DERIVED
   18438       411679 :       && !gfc_compare_types (&sym->ts, &sym->value->ts))
   18439              :     {
   18440            0 :       gfc_error ("Incompatible derived type in PARAMETER at %L",
   18441            0 :                  &sym->value->where);
   18442            0 :       return false;
   18443              :     }
   18444              : 
   18445              :   /* F03:C509,C514.  */
   18446       411679 :   if (sym->ts.type == BT_CLASS)
   18447              :     {
   18448            0 :       gfc_error ("CLASS variable %qs at %L cannot have the PARAMETER attribute",
   18449              :                  sym->name, &sym->declared_at);
   18450            0 :       return false;
   18451              :     }
   18452              : 
   18453              :   /* Some programmers can have a typo when using an implied-do loop to
   18454              :      initialize an array constant.  For example,
   18455              :        INTEGER I,J
   18456              :        INTEGER, PARAMETER :: A(3) = [(I, I = 1, 3)]     ! OK
   18457              :        INTEGER, PARAMETER :: B(3) = [(A(J), I = 1, 3)]  ! Not OK, J undefined
   18458              :      This check catches the typo.  */
   18459       411679 :   if (sym->attr.dimension
   18460         6350 :       && sym->value && sym->value->expr_type == EXPR_ARRAY
   18461       418023 :       && !gfc_is_constant_expr (sym->value))
   18462              :     {
   18463              :       /* PR fortran/117070 argues a nonconstant proc pointer can appear in
   18464              :          the array constructor of a parameter.  This seems inconsistent with
   18465              :          the concept of a parameter. TODO: Needs an interpretation.  */
   18466           20 :       if (sym->value->ts.type == BT_DERIVED
   18467           18 :           && sym->value->ts.u.derived
   18468           18 :           && sym->value->ts.u.derived->attr.proc_pointer_comp)
   18469              :         return true;
   18470            2 :       gfc_error ("Expecting constant expression near %L", &sym->value->where);
   18471            2 :       return false;
   18472              :     }
   18473              : 
   18474              :   return true;
   18475              : }
   18476              : 
   18477              : 
   18478              : /* Called by resolve_symbol to check PDTs.  */
   18479              : 
   18480              : static void
   18481         1492 : resolve_pdt (gfc_symbol* sym)
   18482              : {
   18483         1492 :   gfc_symbol *derived = NULL;
   18484         1492 :   gfc_actual_arglist *param;
   18485         1492 :   gfc_component *c;
   18486         1492 :   bool const_len_exprs = true;
   18487         1492 :   bool assumed_len_exprs = false;
   18488         1492 :   symbol_attribute *attr;
   18489              : 
   18490         1492 :   if (sym->ts.type == BT_DERIVED)
   18491              :     {
   18492         1253 :       derived = sym->ts.u.derived;
   18493         1253 :       attr = &(sym->attr);
   18494              :     }
   18495          239 :   else if (sym->ts.type == BT_CLASS)
   18496              :     {
   18497          239 :       derived = CLASS_DATA (sym)->ts.u.derived;
   18498          239 :       attr = &(CLASS_DATA (sym)->attr);
   18499              :     }
   18500              :   else
   18501            0 :     gcc_unreachable ();
   18502              : 
   18503         1492 :   gcc_assert (derived->attr.pdt_type);
   18504              : 
   18505         3639 :   for (param = sym->param_list; param; param = param->next)
   18506              :     {
   18507         2147 :       c = gfc_find_component (derived, param->name, false, true, NULL);
   18508         2147 :       gcc_assert (c);
   18509         2147 :       if (c->attr.pdt_kind)
   18510         1204 :         continue;
   18511              : 
   18512          662 :       if (param->expr && !gfc_is_constant_expr (param->expr)
   18513         1039 :           && c->attr.pdt_len)
   18514              :         const_len_exprs = false;
   18515          847 :       else if (param->spec_type == SPEC_ASSUMED)
   18516          303 :         assumed_len_exprs = true;
   18517              : 
   18518          943 :       if (param->spec_type == SPEC_DEFERRED && !attr->allocatable
   18519           18 :           && ((sym->ts.type == BT_DERIVED && !attr->pointer)
   18520           16 :               || (sym->ts.type == BT_CLASS && !attr->class_pointer)))
   18521            3 :         gfc_error ("Entity %qs at %L has a deferred LEN "
   18522              :                    "parameter %qs and requires either the POINTER "
   18523              :                    "or ALLOCATABLE attribute",
   18524              :                    sym->name, &sym->declared_at,
   18525              :                    param->name);
   18526              : 
   18527              :     }
   18528              : 
   18529         1492 :   if (!const_len_exprs
   18530           96 :       && (sym->ns->proc_name->attr.is_main_program
   18531           95 :           || sym->ns->proc_name->attr.flavor == FL_MODULE
   18532           94 :           || sym->attr.save != SAVE_NONE))
   18533            2 :     gfc_error ("The AUTOMATIC object %qs at %L must not have the "
   18534              :                "SAVE attribute or be a variable declared in the "
   18535              :                "main program, a module or a submodule(F08/C513)",
   18536              :                sym->name, &sym->declared_at);
   18537              : 
   18538         1492 :   if (assumed_len_exprs && !(sym->attr.dummy
   18539            1 :       || sym->attr.select_type_temporary || sym->attr.associate_var))
   18540            1 :     gfc_error ("The object %qs at %L with ASSUMED type parameters "
   18541              :                "must be a dummy or a SELECT TYPE selector(F08/4.2)",
   18542              :                sym->name, &sym->declared_at);
   18543         1492 : }
   18544              : 
   18545              : 
   18546              : /* Resolve the symbol's array spec.  */
   18547              : 
   18548              : static bool
   18549      1785526 : resolve_symbol_array_spec (gfc_symbol *sym, int check_constant)
   18550              : {
   18551      1785526 :   gfc_namespace *orig_current_ns = gfc_current_ns;
   18552      1785526 :   gfc_current_ns = gfc_get_spec_ns (sym);
   18553              : 
   18554      1785526 :   bool saved_specification_expr = specification_expr;
   18555      1785526 :   gfc_symbol *saved_specification_expr_symbol = specification_expr_symbol;
   18556      1785526 :   specification_expr = true;
   18557      1785526 :   specification_expr_symbol = sym;
   18558              : 
   18559      1785526 :   bool result = gfc_resolve_array_spec (sym->as, check_constant);
   18560              : 
   18561      1785526 :   specification_expr = saved_specification_expr;
   18562      1785526 :   specification_expr_symbol = saved_specification_expr_symbol;
   18563      1785526 :   gfc_current_ns = orig_current_ns;
   18564              : 
   18565      1785526 :   return result;
   18566              : }
   18567              : 
   18568              : 
   18569              : /* Do anything necessary to resolve a symbol.  Right now, we just
   18570              :    assume that an otherwise unknown symbol is a variable.  This sort
   18571              :    of thing commonly happens for symbols in module.  */
   18572              : 
   18573              : static void
   18574      1948506 : resolve_symbol (gfc_symbol *sym)
   18575              : {
   18576      1948506 :   int check_constant, mp_flag;
   18577      1948506 :   gfc_symtree *symtree;
   18578      1948506 :   gfc_symtree *this_symtree;
   18579      1948506 :   gfc_namespace *ns;
   18580      1948506 :   gfc_component *c;
   18581      1948506 :   symbol_attribute class_attr;
   18582      1948506 :   gfc_array_spec *as;
   18583      1948506 :   bool declared_has_coarray_comp = false;
   18584              : 
   18585      1948506 :   if (sym->resolve_symbol_called >= 1)
   18586       194483 :     return;
   18587      1858690 :   sym->resolve_symbol_called = 1;
   18588              : 
   18589              :   /* No symbol will ever have union type; only components can be unions.
   18590              :      Union type declaration symbols have type BT_UNKNOWN but flavor FL_UNION
   18591              :      (just like derived type declaration symbols have flavor FL_DERIVED). */
   18592      1858690 :   gcc_assert (sym->ts.type != BT_UNION);
   18593              : 
   18594              :   /* Coarrayed polymorphic objects with allocatable or pointer components are
   18595              :      yet unsupported for -fcoarray=lib.  */
   18596      1858690 :   if (flag_coarray == GFC_FCOARRAY_LIB && sym->ts.type == BT_CLASS
   18597          112 :       && sym->ts.u.derived && CLASS_DATA (sym)
   18598          112 :       && CLASS_DATA (sym)->attr.codimension
   18599           94 :       && CLASS_DATA (sym)->ts.u.derived
   18600           93 :       && (CLASS_DATA (sym)->ts.u.derived->attr.alloc_comp
   18601           90 :           || CLASS_DATA (sym)->ts.u.derived->attr.pointer_comp))
   18602              :     {
   18603            6 :       gfc_error ("Sorry, allocatable/pointer components in polymorphic (CLASS) "
   18604              :                  "type coarrays at %L are unsupported", &sym->declared_at);
   18605            6 :       return;
   18606              :     }
   18607              : 
   18608      1858684 :   if (sym->attr.artificial)
   18609              :     return;
   18610              : 
   18611      1756812 :   if (sym->attr.unlimited_polymorphic)
   18612              :     return;
   18613              : 
   18614      1755273 :   if (UNLIKELY (flag_openmp && strcmp (sym->name, "omp_all_memory") == 0))
   18615              :     {
   18616            4 :       gfc_error ("%<omp_all_memory%>, declared at %L, may only be used in "
   18617              :                  "the OpenMP DEPEND clause", &sym->declared_at);
   18618            4 :       return;
   18619              :     }
   18620              : 
   18621      1755269 :   if (sym->attr.flavor == FL_UNKNOWN
   18622      1733812 :       || (sym->attr.flavor == FL_PROCEDURE && !sym->attr.intrinsic
   18623       464660 :           && !sym->attr.generic && !sym->attr.external
   18624       184029 :           && sym->attr.if_source == IFSRC_UNKNOWN
   18625        82869 :           && sym->ts.type == BT_UNKNOWN))
   18626              :     {
   18627              :       /* A symbol in a common block might not have been resolved yet properly.
   18628              :          Do not try to find an interface with the same name.  */
   18629        95735 :       if (sym->attr.flavor == FL_UNKNOWN && !sym->attr.intrinsic
   18630        21453 :           && !sym->attr.generic && !sym->attr.external
   18631        21402 :           && sym->attr.in_common)
   18632         2594 :         goto skip_interfaces;
   18633              : 
   18634              :     /* If we find that a flavorless symbol is an interface in one of the
   18635              :        parent namespaces, find its symtree in this namespace, free the
   18636              :        symbol and set the symtree to point to the interface symbol.  */
   18637       133384 :       for (ns = gfc_current_ns->parent; ns; ns = ns->parent)
   18638              :         {
   18639        40951 :           symtree = gfc_find_symtree (ns->sym_root, sym->name);
   18640        40951 :           if (symtree && (symtree->n.sym->generic ||
   18641          777 :                           (symtree->n.sym->attr.flavor == FL_PROCEDURE
   18642          681 :                            && sym->ns->construct_entities)))
   18643              :             {
   18644          716 :               this_symtree = gfc_find_symtree (gfc_current_ns->sym_root,
   18645              :                                                sym->name);
   18646          716 :               if (this_symtree->n.sym == sym)
   18647              :                 {
   18648          708 :                   symtree->n.sym->refs++;
   18649          708 :                   gfc_release_symbol (sym);
   18650          708 :                   this_symtree->n.sym = symtree->n.sym;
   18651          708 :                   return;
   18652              :                 }
   18653              :             }
   18654              :         }
   18655              : 
   18656        92433 : skip_interfaces:
   18657              :       /* Otherwise give it a flavor according to such attributes as
   18658              :          it has.  */
   18659        95027 :       if (sym->attr.flavor == FL_UNKNOWN && sym->attr.external == 0
   18660        21272 :           && sym->attr.intrinsic == 0)
   18661        21268 :         sym->attr.flavor = FL_VARIABLE;
   18662        73759 :       else if (sym->attr.flavor == FL_UNKNOWN)
   18663              :         {
   18664           55 :           sym->attr.flavor = FL_PROCEDURE;
   18665           55 :           if (sym->attr.dimension)
   18666            0 :             sym->attr.function = 1;
   18667              :         }
   18668              :     }
   18669              : 
   18670      1754561 :   if (sym->attr.external && sym->ts.type != BT_UNKNOWN && !sym->attr.function)
   18671         2384 :     gfc_add_function (&sym->attr, sym->name, &sym->declared_at);
   18672              : 
   18673         1530 :   if (sym->attr.procedure && sym->attr.if_source != IFSRC_DECL
   18674      1756091 :       && !resolve_procedure_interface (sym))
   18675              :     return;
   18676              : 
   18677      1754550 :   if (sym->attr.is_protected && !sym->attr.proc_pointer
   18678          130 :       && (sym->attr.procedure || sym->attr.external))
   18679              :     {
   18680            0 :       if (sym->attr.external)
   18681            0 :         gfc_error ("PROTECTED attribute conflicts with EXTERNAL attribute "
   18682              :                    "at %L", &sym->declared_at);
   18683              :       else
   18684            0 :         gfc_error ("PROCEDURE attribute conflicts with PROTECTED attribute "
   18685              :                    "at %L", &sym->declared_at);
   18686              : 
   18687              :       return;
   18688              :     }
   18689              : 
   18690              :   /* Ensure that variables of derived or class type having a finalizer are
   18691              :      marked used even when the variable is not used anything else in the scope.
   18692              :      This fixes PR118730.  */
   18693       678946 :   if (sym->attr.flavor == FL_VARIABLE && !sym->attr.referenced
   18694       469307 :       && (sym->ts.type == BT_DERIVED || sym->ts.type == BT_CLASS)
   18695      1805278 :       && gfc_may_be_finalized (sym->ts))
   18696         8880 :     gfc_set_sym_referenced (sym);
   18697              : 
   18698      1754550 :   if (sym->attr.flavor == FL_DERIVED && !resolve_fl_derived (sym))
   18699              :     return;
   18700              : 
   18701      1754405 :   else if ((sym->attr.flavor == FL_STRUCT || sym->attr.flavor == FL_UNION)
   18702      1754405 :            && !resolve_fl_struct (sym))
   18703              :     return;
   18704              : 
   18705              :   /* Symbols that are module procedures with results (functions) have
   18706              :      the types and array specification copied for type checking in
   18707              :      procedures that call them, as well as for saving to a module
   18708              :      file.  These symbols can't stand the scrutiny that their results
   18709              :      can.  */
   18710      1754405 :   mp_flag = (sym->result != NULL && sym->result != sym);
   18711              : 
   18712              :   /* Make sure that the intrinsic is consistent with its internal
   18713              :      representation. This needs to be done before assigning a default
   18714              :      type to avoid spurious warnings.  */
   18715      1718756 :   if (sym->attr.flavor != FL_MODULE && sym->attr.intrinsic
   18716      1791685 :       && !gfc_resolve_intrinsic (sym, &sym->declared_at))
   18717              :     return;
   18718              : 
   18719              :   /* Resolve associate names.  */
   18720      1754369 :   if (sym->assoc)
   18721         7015 :     resolve_assoc_var (sym, true);
   18722              : 
   18723              :   /* Assign default type to symbols that need one and don't have one.  */
   18724      1754369 :   if (sym->ts.type == BT_UNKNOWN)
   18725              :     {
   18726       420875 :       if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER)
   18727              :         {
   18728        11847 :           gfc_set_default_type (sym, 1, NULL);
   18729              :         }
   18730              : 
   18731       273581 :       if (sym->attr.flavor == FL_PROCEDURE && sym->attr.external
   18732        65805 :           && !sym->attr.function && !sym->attr.subroutine
   18733       422548 :           && gfc_get_default_type (sym->name, sym->ns)->type == BT_UNKNOWN)
   18734          622 :         gfc_add_subroutine (&sym->attr, sym->name, &sym->declared_at);
   18735              : 
   18736       420875 :       if (sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
   18737              :         {
   18738              :           /* The specific case of an external procedure should emit an error
   18739              :              in the case that there is no implicit type.  */
   18740       105246 :           if (!mp_flag)
   18741              :             {
   18742        99029 :               if (!sym->attr.mixed_entry_master)
   18743        98921 :                 gfc_set_default_type (sym, sym->attr.external, NULL);
   18744              :             }
   18745              :           else
   18746              :             {
   18747              :               /* Result may be in another namespace.  */
   18748         6217 :               resolve_symbol (sym->result);
   18749              : 
   18750         6217 :               if (!sym->result->attr.proc_pointer)
   18751              :                 {
   18752         6037 :                   sym->ts = sym->result->ts;
   18753         6037 :                   sym->as = gfc_copy_array_spec (sym->result->as);
   18754         6037 :                   sym->attr.dimension = sym->result->attr.dimension;
   18755         6037 :                   sym->attr.codimension = sym->result->attr.codimension;
   18756         6037 :                   sym->attr.pointer = sym->result->attr.pointer;
   18757         6037 :                   sym->attr.allocatable = sym->result->attr.allocatable;
   18758         6037 :                   sym->attr.contiguous = sym->result->attr.contiguous;
   18759              :                 }
   18760              :             }
   18761              :         }
   18762              :     }
   18763      1333494 :   else if (mp_flag && sym->attr.flavor == FL_PROCEDURE && sym->attr.function)
   18764        31500 :     resolve_symbol_array_spec (sym->result, false);
   18765              : 
   18766              :   /* For a CLASS-valued function with a result variable, affirm that it has
   18767              :      been resolved also when looking at the symbol 'sym'.  */
   18768       452375 :   if (mp_flag && sym->ts.type == BT_CLASS && sym->result->attr.class_ok)
   18769          745 :     sym->attr.class_ok = sym->result->attr.class_ok;
   18770              : 
   18771      1754369 :   if (sym->ts.type == BT_CLASS && sym->attr.class_ok && sym->ts.u.derived
   18772        20129 :       && CLASS_DATA (sym))
   18773              :     {
   18774        20129 :       as = CLASS_DATA (sym)->as;
   18775        20129 :       class_attr = CLASS_DATA (sym)->attr;
   18776        20129 :       class_attr.pointer = class_attr.class_pointer;
   18777        20129 :       declared_has_coarray_comp = CLASS_DATA (sym)->ts.u.derived
   18778        20129 :                                   && CLASS_DATA (sym)->ts.u.derived->attr.coarray_comp;
   18779              :     }
   18780              :   else
   18781              :     {
   18782      1734240 :       class_attr = sym->attr;
   18783      1734240 :       as = sym->as;
   18784              :     }
   18785              : 
   18786              :   /* F2008, C530.  */
   18787      1754369 :   if (sym->attr.contiguous
   18788         8546 :       && !sym->attr.associate_var
   18789         8545 :       && (!class_attr.dimension
   18790         8542 :           || (as->type != AS_ASSUMED_SHAPE && as->type != AS_ASSUMED_RANK
   18791          140 :               && !class_attr.pointer)))
   18792              :     {
   18793            7 :       gfc_error ("%qs at %L has the CONTIGUOUS attribute but is not an "
   18794              :                  "array pointer or an assumed-shape or assumed-rank array",
   18795              :                  sym->name, &sym->declared_at);
   18796            7 :       return;
   18797              :     }
   18798              : 
   18799              :   /* Assumed size arrays and assumed shape arrays must be dummy
   18800              :      arguments.  Array-spec's of implied-shape should have been resolved to
   18801              :      AS_EXPLICIT already.  */
   18802              : 
   18803      1745960 :   if (as)
   18804              :     {
   18805              :       /* If AS_IMPLIED_SHAPE makes it to here, it must be a bad
   18806              :          specification expression.  */
   18807       152494 :       if (as->type == AS_IMPLIED_SHAPE)
   18808              :         {
   18809              :           int i;
   18810            1 :           for (i=0; i<as->rank; i++)
   18811              :             {
   18812            1 :               if (as->lower[i] != NULL && as->upper[i] == NULL)
   18813              :                 {
   18814            1 :                   gfc_error ("Bad specification for assumed size array at %L",
   18815              :                              &as->lower[i]->where);
   18816            1 :                   return;
   18817              :                 }
   18818              :             }
   18819            0 :           gcc_unreachable();
   18820              :         }
   18821              : 
   18822       152493 :       if (((as->type == AS_ASSUMED_SIZE && !as->cp_was_assumed)
   18823       117363 :            || as->type == AS_ASSUMED_SHAPE)
   18824        47472 :           && !sym->attr.dummy && !sym->attr.select_type_temporary
   18825            8 :           && !sym->attr.associate_var)
   18826              :         {
   18827            7 :           if (as->type == AS_ASSUMED_SIZE)
   18828            7 :             gfc_error ("Assumed size array at %L must be a dummy argument",
   18829              :                        &sym->declared_at);
   18830              :           else
   18831            0 :             gfc_error ("Assumed shape array at %L must be a dummy argument",
   18832              :                        &sym->declared_at);
   18833              :           return;
   18834              :         }
   18835              :       /* TS 29113, C535a.  */
   18836       152486 :       if (as->type == AS_ASSUMED_RANK && !sym->attr.dummy
   18837           60 :           && !sym->attr.select_type_temporary
   18838           60 :           && !(cs_base && cs_base->current
   18839           45 :                && (cs_base->current->op == EXEC_SELECT_RANK
   18840            3 :                    || ((gfc_option.allow_std & GFC_STD_F202Y)
   18841            0 :                         && cs_base->current->op == EXEC_BLOCK))))
   18842              :         {
   18843           18 :           gfc_error ("Assumed-rank array at %L must be a dummy argument",
   18844              :                      &sym->declared_at);
   18845           18 :           return;
   18846              :         }
   18847       152468 :       if (as->type == AS_ASSUMED_RANK
   18848        27383 :           && (sym->attr.codimension || sym->attr.value))
   18849              :         {
   18850            5 :           gfc_error ("Assumed-rank array at %L may not have the VALUE or "
   18851              :                      "CODIMENSION attribute", &sym->declared_at);
   18852            5 :           return;
   18853              :         }
   18854              : 
   18855              :       /* F2008, C557 (F2018, C862; F2023, C867).  Assumed-shape and
   18856              :          explicit-shape array dummies may have the VALUE attribute, but
   18857              :          assumed-size arrays may not.  */
   18858       152463 :       if (as->type == AS_ASSUMED_SIZE && sym->attr.value)
   18859              :         {
   18860            1 :           gfc_error ("Assumed-size array %qs at %L may not have the VALUE "
   18861              :                      "attribute", sym->name, &sym->declared_at);
   18862            1 :           return;
   18863              :         }
   18864       152462 :       else if (sym->attr.value && sym->attr.dummy
   18865          144 :                && (as->type == AS_EXPLICIT || as->type == AS_ASSUMED_SHAPE))
   18866              :         {
   18867          144 :           if (!gfc_notify_std (GFC_STD_F2008, "Array dummy argument %qs at "
   18868              :                                "%L with VALUE attribute", sym->name,
   18869              :                                &sym->declared_at))
   18870              :             return;
   18871              : 
   18872              :           /* F2023, 18.3.6 (4): only a scalar VALUE dummy is interoperable
   18873              :              with a formal parameter of the C prototype.  */
   18874          143 :           if (sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
   18875              :             {
   18876            2 :               gfc_error ("Array dummy argument %qs at %L with VALUE attribute "
   18877              :                          "not allowed in BIND(C) procedure %qs", sym->name,
   18878              :                          &sym->declared_at, sym->ns->proc_name->name);
   18879            2 :               return;
   18880              :             }
   18881              : 
   18882          141 :           if (sym->ts.type == BT_CLASS)
   18883              :             {
   18884            1 :               gfc_error ("Sorry, polymorphic array dummy argument %qs at %L "
   18885              :                          "with VALUE attribute is not yet implemented",
   18886              :                          sym->name, &sym->declared_at);
   18887            1 :               return;
   18888              :             }
   18889              :         }
   18890              :     }
   18891              : 
   18892              :   /* Make sure symbols with known intent or optional are really dummy
   18893              :      variable.  Because of ENTRY statement, this has to be deferred
   18894              :      until resolution time.  */
   18895              : 
   18896      1754326 :   if (!sym->attr.dummy
   18897      1260513 :       && (sym->attr.optional || sym->attr.intent != INTENT_UNKNOWN))
   18898              :     {
   18899            2 :       gfc_error ("Symbol at %L is not a DUMMY variable", &sym->declared_at);
   18900            2 :       return;
   18901              :     }
   18902              : 
   18903      1754324 :   if (sym->attr.value && !sym->attr.dummy)
   18904              :     {
   18905            2 :       gfc_error ("%qs at %L cannot have the VALUE attribute because "
   18906              :                  "it is not a dummy argument", sym->name, &sym->declared_at);
   18907            2 :       return;
   18908              :     }
   18909              : 
   18910      1754322 :   if (sym->attr.value && sym->ts.type == BT_CHARACTER)
   18911              :     {
   18912          695 :       gfc_charlen *cl = sym->ts.u.cl;
   18913          695 :       if (!cl)
   18914              :         {
   18915            0 :           gfc_error ("Character dummy variable %qs at %L with VALUE "
   18916              :                      "attribute must have a length specification",
   18917              :                      sym->name, &sym->declared_at);
   18918            0 :           return;
   18919              :         }
   18920              : 
   18921              :       /* C interoperable character dummies must have length one.  */
   18922          695 :       if (sym->ts.is_c_interop
   18923          382 :           && (!cl->length
   18924          381 :               || cl->length->expr_type != EXPR_CONSTANT
   18925          381 :               || mpz_cmp_si (cl->length->value.integer, 1) != 0))
   18926              :         {
   18927            2 :           gfc_error ("C interoperable character dummy variable %qs at %L "
   18928              :                      "with VALUE attribute must have length one",
   18929              :                      sym->name, &sym->declared_at);
   18930            2 :           return;
   18931              :         }
   18932              : 
   18933              :       /* Assumed-length character dummy with VALUE, valid since F2008.  */
   18934          693 :       if (!cl->length
   18935          693 :           && !gfc_notify_std (GFC_STD_F2008, "Assumed-length character "
   18936              :                               "dummy variable %qs at %L with VALUE attribute",
   18937              :                               sym->name, &sym->declared_at))
   18938              :         return;
   18939              : 
   18940              :       /* Likewise for a specified but non-constant length.  */
   18941          643 :       if (cl->length && cl->length->expr_type != EXPR_CONSTANT
   18942          715 :           && !gfc_notify_std (GFC_STD_F2008, "Character dummy variable "
   18943              :                               "%qs at %L with VALUE attribute and "
   18944              :                               "non-constant length",
   18945           24 :                               sym->name, &sym->declared_at))
   18946              :         return;
   18947              :     }
   18948              : 
   18949      1754318 :   if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
   18950       126387 :       && sym->ts.u.derived->attr.generic)
   18951              :     {
   18952           20 :       sym->ts.u.derived = gfc_find_dt_in_generic (sym->ts.u.derived);
   18953           20 :       if (!sym->ts.u.derived)
   18954              :         {
   18955            0 :           gfc_error ("The derived type %qs at %L is of type %qs, "
   18956              :                      "which has not been defined", sym->name,
   18957              :                      &sym->declared_at, sym->ts.u.derived->name);
   18958            0 :           sym->ts.type = BT_UNKNOWN;
   18959            0 :           return;
   18960              :         }
   18961              :     }
   18962              : 
   18963              :     /* Use the same constraints as TYPE(*), except for the type check
   18964              :        and that only scalars and assumed-size arrays are permitted.  */
   18965      1754318 :     if (sym->attr.ext_attr & (1 << EXT_ATTR_NO_ARG_CHECK))
   18966              :       {
   18967        14556 :         if (!sym->attr.dummy)
   18968              :           {
   18969            1 :             gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
   18970              :                        "a dummy argument", sym->name, &sym->declared_at);
   18971            1 :             return;
   18972              :           }
   18973              : 
   18974        14555 :         if (sym->ts.type != BT_ASSUMED && sym->ts.type != BT_INTEGER
   18975            8 :             && sym->ts.type != BT_REAL && sym->ts.type != BT_LOGICAL
   18976            0 :             && sym->ts.type != BT_COMPLEX)
   18977              :           {
   18978            0 :             gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall be "
   18979              :                        "of type TYPE(*) or of an numeric intrinsic type",
   18980              :                        sym->name, &sym->declared_at);
   18981            0 :             return;
   18982              :           }
   18983              : 
   18984        14555 :       if (sym->attr.allocatable || sym->attr.codimension
   18985        14553 :           || sym->attr.pointer || sym->attr.value)
   18986              :         {
   18987            4 :           gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
   18988              :                      "have the ALLOCATABLE, CODIMENSION, POINTER or VALUE "
   18989              :                      "attribute", sym->name, &sym->declared_at);
   18990            4 :           return;
   18991              :         }
   18992              : 
   18993        14551 :       if (sym->attr.intent == INTENT_OUT)
   18994              :         {
   18995            0 :           gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute may not "
   18996              :                      "have the INTENT(OUT) attribute",
   18997              :                      sym->name, &sym->declared_at);
   18998            0 :           return;
   18999              :         }
   19000        14551 :       if (sym->attr.dimension && sym->as->type != AS_ASSUMED_SIZE)
   19001              :         {
   19002            1 :           gfc_error ("Variable %s at %L with NO_ARG_CHECK attribute shall "
   19003              :                      "either be a scalar or an assumed-size array",
   19004              :                      sym->name, &sym->declared_at);
   19005            1 :           return;
   19006              :         }
   19007              : 
   19008              :       /* Set the type to TYPE(*) and add a dimension(*) to ensure
   19009              :          NO_ARG_CHECK is correctly handled in trans*.c, e.g. with
   19010              :          packing.  */
   19011        14550 :       sym->ts.type = BT_ASSUMED;
   19012        14550 :       sym->as = gfc_get_array_spec ();
   19013        14550 :       sym->as->type = AS_ASSUMED_SIZE;
   19014        14550 :       sym->as->rank = 1;
   19015        14550 :       sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
   19016              :     }
   19017      1739762 :   else if (sym->ts.type == BT_ASSUMED)
   19018              :     {
   19019              :       /* TS 29113, C407a.  */
   19020        12350 :       if (!sym->attr.dummy)
   19021              :         {
   19022            7 :           gfc_error ("Assumed type of variable %s at %L is only permitted "
   19023              :                      "for dummy variables", sym->name, &sym->declared_at);
   19024            7 :           return;
   19025              :         }
   19026        12343 :       if (sym->attr.allocatable || sym->attr.codimension
   19027        12339 :           || sym->attr.pointer || sym->attr.value)
   19028              :         {
   19029            8 :           gfc_error ("Assumed-type variable %s at %L may not have the "
   19030              :                      "ALLOCATABLE, CODIMENSION, POINTER or VALUE attribute",
   19031              :                      sym->name, &sym->declared_at);
   19032            8 :           return;
   19033              :         }
   19034        12335 :       if (sym->attr.intent == INTENT_OUT)
   19035              :         {
   19036            2 :           gfc_error ("Assumed-type variable %s at %L may not have the "
   19037              :                      "INTENT(OUT) attribute",
   19038              :                      sym->name, &sym->declared_at);
   19039            2 :           return;
   19040              :         }
   19041        12333 :       if (sym->attr.dimension && sym->as->type == AS_EXPLICIT)
   19042              :         {
   19043            3 :           gfc_error ("Assumed-type variable %s at %L shall not be an "
   19044              :                      "explicit-shape array", sym->name, &sym->declared_at);
   19045            3 :           return;
   19046              :         }
   19047              :     }
   19048              : 
   19049              :   /* If the symbol is marked as bind(c), that it is declared at module level
   19050              :      scope and verify its type and kind.  Do not do the latter for symbols
   19051              :      that are implicitly typed because that is handled in
   19052              :      gfc_set_default_type.  Handle dummy arguments and procedure definitions
   19053              :      separately.  Also, anything that is use associated is not handled here
   19054              :      but instead is handled in the module it is declared in.  Finally, derived
   19055              :      type definitions are allowed to be BIND(C) since that only implies that
   19056              :      they're interoperable, and they are checked fully for interoperability
   19057              :      when a variable is declared of that type.  */
   19058      1754292 :   if (sym->attr.is_bind_c && sym->attr.use_assoc == 0
   19059         7814 :       && sym->attr.dummy == 0 && sym->attr.flavor != FL_PROCEDURE
   19060          568 :       && sym->attr.flavor != FL_DERIVED)
   19061              :     {
   19062          168 :       bool t = true;
   19063              : 
   19064              :       /* First, make sure the variable is declared at the
   19065              :          module-level scope (J3/04-007, Section 15.3).  */
   19066          168 :       if (!(sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE)
   19067            7 :           && !sym->attr.in_common)
   19068              :         {
   19069            6 :           gfc_error ("Variable %qs at %L cannot be BIND(C) because it "
   19070              :                      "is neither a COMMON block nor declared at the "
   19071              :                      "module level scope", sym->name, &(sym->declared_at));
   19072            6 :           t = false;
   19073              :         }
   19074          162 :       else if (sym->ts.type == BT_CHARACTER
   19075          162 :                && (sym->ts.u.cl == NULL || sym->ts.u.cl->length == NULL
   19076            1 :                    || !gfc_is_constant_expr (sym->ts.u.cl->length)
   19077            1 :                    || mpz_cmp_si (sym->ts.u.cl->length->value.integer, 1) != 0))
   19078              :         {
   19079            1 :           gfc_error ("BIND(C) Variable %qs at %L must have length one",
   19080            1 :                      sym->name, &sym->declared_at);
   19081            1 :           t = false;
   19082              :         }
   19083          161 :       else if (sym->common_head != NULL && sym->attr.implicit_type == 0)
   19084              :         {
   19085            1 :           t = verify_com_block_vars_c_interop (sym->common_head);
   19086              :         }
   19087          160 :       else if (sym->attr.implicit_type == 0)
   19088              :         {
   19089              :           /* If type() declaration, we need to verify that the components
   19090              :              of the given type are all C interoperable, etc.  */
   19091          158 :           if (sym->ts.type == BT_DERIVED &&
   19092           24 :               sym->ts.u.derived->attr.is_c_interop != 1)
   19093              :             {
   19094              :               /* Make sure the user marked the derived type as BIND(C).  If
   19095              :                  not, call the verify routine.  This could print an error
   19096              :                  for the derived type more than once if multiple variables
   19097              :                  of that type are declared.  */
   19098           14 :               if (sym->ts.u.derived->attr.is_bind_c != 1)
   19099            1 :                 verify_bind_c_derived_type (sym->ts.u.derived);
   19100          158 :               t = false;
   19101              :             }
   19102              : 
   19103              :           /* Verify the variable itself as C interoperable if it
   19104              :              is BIND(C).  It is not possible for this to succeed if
   19105              :              the verify_bind_c_derived_type failed, so don't have to handle
   19106              :              any error returned by verify_bind_c_derived_type.  */
   19107          158 :           t = verify_bind_c_sym (sym, &(sym->ts), sym->attr.in_common,
   19108          158 :                                  sym->common_block);
   19109              :         }
   19110              : 
   19111          166 :       if (!t)
   19112              :         {
   19113              :           /* clear the is_bind_c flag to prevent reporting errors more than
   19114              :              once if something failed.  */
   19115           10 :           sym->attr.is_bind_c = 0;
   19116           10 :           return;
   19117              :         }
   19118              :     }
   19119              : 
   19120              :   /* If a derived type symbol has reached this point, without its
   19121              :      type being declared, we have an error.  Notice that most
   19122              :      conditions that produce undefined derived types have already
   19123              :      been dealt with.  However, the likes of:
   19124              :      implicit type(t) (t) ..... call foo (t) will get us here if
   19125              :      the type is not declared in the scope of the implicit
   19126              :      statement. Change the type to BT_UNKNOWN, both because it is so
   19127              :      and to prevent an ICE.  */
   19128      1754282 :   if (sym->ts.type == BT_DERIVED && !sym->attr.is_iso_c
   19129       126385 :       && sym->ts.u.derived->components == NULL
   19130         1163 :       && !sym->ts.u.derived->attr.zero_comp)
   19131              :     {
   19132            3 :       gfc_error ("The derived type %qs at %L is of type %qs, "
   19133              :                  "which has not been defined", sym->name,
   19134              :                   &sym->declared_at, sym->ts.u.derived->name);
   19135            3 :       sym->ts.type = BT_UNKNOWN;
   19136            3 :       return;
   19137              :     }
   19138              : 
   19139              :   /* Make sure that the derived type has been resolved and that the
   19140              :      derived type is visible in the symbol's namespace, if it is a
   19141              :      module function and is not PRIVATE.  */
   19142      1754279 :   if (sym->ts.type == BT_DERIVED
   19143       133544 :         && sym->ts.u.derived->attr.use_assoc
   19144       115614 :         && sym->ns->proc_name
   19145       115606 :         && sym->ns->proc_name->attr.flavor == FL_MODULE
   19146      1760252 :         && !resolve_fl_derived (sym->ts.u.derived))
   19147              :     return;
   19148              : 
   19149              :   /* Unless the derived-type declaration is use associated, Fortran 95
   19150              :      does not allow public entries of private derived types.
   19151              :      See 4.4.1 (F95) and 4.5.1.1 (F2003); and related interpretation
   19152              :      161 in 95-006r3.  */
   19153      1754279 :   if (sym->ts.type == BT_DERIVED
   19154       133544 :       && sym->ns->proc_name && sym->ns->proc_name->attr.flavor == FL_MODULE
   19155         8123 :       && !sym->ts.u.derived->attr.use_assoc
   19156         2150 :       && gfc_check_symbol_access (sym)
   19157         1937 :       && !gfc_check_symbol_access (sym->ts.u.derived)
   19158      1754293 :       && !gfc_notify_std (GFC_STD_F2003, "PUBLIC %s %qs at %L of PRIVATE "
   19159              :                           "derived type %qs",
   19160           14 :                           (sym->attr.flavor == FL_PARAMETER)
   19161              :                           ? "parameter" : "variable",
   19162              :                           sym->name, &sym->declared_at,
   19163           14 :                           sym->ts.u.derived->name))
   19164              :     return;
   19165              : 
   19166              :   /* F2008, C1302.  */
   19167      1754272 :   if (sym->ts.type == BT_DERIVED
   19168       133537 :       && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
   19169          166 :            && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_LOCK_TYPE)
   19170       133506 :           || sym->ts.u.derived->attr.lock_comp)
   19171           44 :       && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
   19172              :     {
   19173            4 :       gfc_error ("Variable %s at %L of type LOCK_TYPE or with subcomponent of "
   19174              :                  "type LOCK_TYPE must be a coarray", sym->name,
   19175              :                  &sym->declared_at);
   19176            4 :       return;
   19177              :     }
   19178              : 
   19179              :   /* TS18508, C702/C703.  */
   19180      1754268 :   if (sym->ts.type == BT_DERIVED
   19181       133533 :       && ((sym->ts.u.derived->from_intmod == INTMOD_ISO_FORTRAN_ENV
   19182          165 :            && sym->ts.u.derived->intmod_sym_id == ISOFORTRAN_EVENT_TYPE)
   19183       133516 :           || sym->ts.u.derived->attr.event_comp)
   19184           17 :       && !sym->attr.codimension && !sym->ts.u.derived->attr.coarray_comp)
   19185              :     {
   19186            1 :       gfc_error ("Variable %s at %L of type EVENT_TYPE or with subcomponent of "
   19187              :                  "type EVENT_TYPE must be a coarray", sym->name,
   19188              :                  &sym->declared_at);
   19189            1 :       return;
   19190              :     }
   19191              : 
   19192              :   /* An assumed-size array with INTENT(OUT) shall not be of a type for which
   19193              :      default initialization is defined (5.1.2.4.4).  */
   19194      1754267 :   if (sym->ts.type == BT_DERIVED
   19195       133532 :       && sym->attr.dummy
   19196        45866 :       && sym->attr.intent == INTENT_OUT
   19197         2357 :       && sym->as
   19198          382 :       && sym->as->type == AS_ASSUMED_SIZE)
   19199              :     {
   19200            1 :       for (c = sym->ts.u.derived->components; c; c = c->next)
   19201              :         {
   19202            1 :           if (c->initializer)
   19203              :             {
   19204            1 :               gfc_error ("The INTENT(OUT) dummy argument %qs at %L is "
   19205              :                          "ASSUMED SIZE and so cannot have a default initializer",
   19206              :                          sym->name, &sym->declared_at);
   19207            1 :               return;
   19208              :             }
   19209              :         }
   19210              :     }
   19211              : 
   19212              :   /* F2008, C542.  */
   19213      1754266 :   if (sym->ts.type == BT_DERIVED && sym->attr.dummy
   19214        45865 :       && sym->attr.intent == INTENT_OUT && sym->attr.lock_comp)
   19215              :     {
   19216            0 :       gfc_error ("Dummy argument %qs at %L of LOCK_TYPE shall not be "
   19217              :                  "INTENT(OUT)", sym->name, &sym->declared_at);
   19218            0 :       return;
   19219              :     }
   19220              : 
   19221              :   /* TS18508.  */
   19222      1754266 :   if (sym->ts.type == BT_DERIVED && sym->attr.dummy
   19223        45865 :       && sym->attr.intent == INTENT_OUT && sym->attr.event_comp)
   19224              :     {
   19225            0 :       gfc_error ("Dummy argument %qs at %L of EVENT_TYPE shall not be "
   19226              :                  "INTENT(OUT)", sym->name, &sym->declared_at);
   19227            0 :       return;
   19228              :     }
   19229              : 
   19230              :   /* F2008, C525.  */
   19231      1754266 :   if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
   19232      1754153 :          || (sym->ts.type == BT_CLASS && sym->attr.class_ok
   19233        20131 :              && sym->ts.u.derived && CLASS_DATA (sym)
   19234        20126 :              && CLASS_DATA (sym)->attr.coarray_comp))
   19235      1754153 :        || class_attr.codimension)
   19236         1827 :       && (sym->attr.result || sym->result == sym))
   19237              :     {
   19238            8 :       gfc_error ("Function result %qs at %L shall not be a coarray or have "
   19239              :                  "a coarray component", sym->name, &sym->declared_at);
   19240            8 :       return;
   19241              :     }
   19242              : 
   19243              :   /* F2008, C524.  */
   19244      1754258 :   if (sym->attr.codimension && sym->ts.type == BT_DERIVED
   19245          420 :       && sym->ts.u.derived->ts.is_iso_c)
   19246              :     {
   19247            3 :       gfc_error ("Variable %qs at %L of TYPE(C_PTR) or TYPE(C_FUNPTR) "
   19248              :                  "shall not be a coarray", sym->name, &sym->declared_at);
   19249            3 :       return;
   19250              :     }
   19251              : 
   19252              :   /* F2008, C525.  */
   19253      1754255 :   if (((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
   19254      1754145 :         || (sym->ts.type == BT_CLASS && sym->attr.class_ok
   19255        20130 :             && sym->ts.u.derived && CLASS_DATA (sym)
   19256        20125 :             && CLASS_DATA (sym)->attr.coarray_comp))
   19257          110 :       && (class_attr.codimension || class_attr.pointer || class_attr.dimension
   19258          106 :           || class_attr.allocatable))
   19259              :     {
   19260            4 :       gfc_error ("Variable %qs at %L with coarray component shall be a "
   19261              :                  "nonpointer, nonallocatable scalar, which is not a coarray",
   19262              :                  sym->name, &sym->declared_at);
   19263            4 :       return;
   19264              :     }
   19265              : 
   19266              :   /* F2008, C526.  The function-result case was handled above.  */
   19267      1754251 :   if (class_attr.codimension
   19268         1706 :       && !(class_attr.allocatable || sym->attr.dummy || sym->attr.save
   19269          353 :            || sym->attr.select_type_temporary
   19270          277 :            || sym->attr.associate_var
   19271          259 :            || (sym->ns->save_all && !sym->attr.automatic)
   19272          259 :            || sym->ns->proc_name->attr.flavor == FL_MODULE
   19273          259 :            || sym->ns->proc_name->attr.is_main_program
   19274            5 :            || sym->attr.function || sym->attr.result || sym->attr.use_assoc))
   19275              :     {
   19276            4 :       gfc_error ("Variable %qs at %L is a coarray and is not ALLOCATABLE, SAVE "
   19277              :                  "nor a dummy argument", sym->name, &sym->declared_at);
   19278            4 :       return;
   19279              :     }
   19280              :   /* F2008, C528.  */
   19281      1754247 :   else if (class_attr.codimension && !sym->attr.select_type_temporary
   19282         1626 :            && !class_attr.allocatable && as && as->cotype == AS_DEFERRED)
   19283              :     {
   19284            6 :       gfc_error ("Coarray variable %qs at %L shall not have codimensions with "
   19285              :                  "deferred shape without allocatable", sym->name,
   19286              :                  &sym->declared_at);
   19287            6 :       return;
   19288              :     }
   19289      1754241 :   else if (class_attr.codimension && class_attr.allocatable && as
   19290          629 :            && (as->cotype != AS_DEFERRED || as->type != AS_DEFERRED))
   19291              :     {
   19292            9 :       gfc_error ("Allocatable coarray variable %qs at %L must have "
   19293              :                  "deferred shape", sym->name, &sym->declared_at);
   19294            9 :       return;
   19295              :     }
   19296              : 
   19297              :   /* F2008, C541.  */
   19298      1754232 :   if ((((sym->ts.type == BT_DERIVED && sym->ts.u.derived->attr.coarray_comp)
   19299      1754126 :         || (sym->ts.type == BT_CLASS && sym->attr.class_ok
   19300        20125 :             && declared_has_coarray_comp))
   19301      1754119 :         || (class_attr.codimension && class_attr.allocatable))
   19302          733 :       && sym->attr.dummy && sym->attr.intent == INTENT_OUT)
   19303              :     {
   19304            4 :       gfc_error ("Variable %qs at %L is INTENT(OUT) and can thus not be an "
   19305              :                  "allocatable coarray or have coarray components",
   19306              :                  sym->name, &sym->declared_at);
   19307            4 :       return;
   19308              :     }
   19309              : 
   19310      1754228 :   if (class_attr.codimension && sym->attr.dummy
   19311          469 :       && sym->ns->proc_name && sym->ns->proc_name->attr.is_bind_c)
   19312              :     {
   19313            2 :       gfc_error ("Coarray dummy variable %qs at %L not allowed in BIND(C) "
   19314              :                  "procedure %qs", sym->name, &sym->declared_at,
   19315              :                  sym->ns->proc_name->name);
   19316            2 :       return;
   19317              :     }
   19318              : 
   19319      1754226 :   if (sym->ts.type == BT_LOGICAL
   19320       114580 :       && ((sym->attr.function && sym->attr.is_bind_c && sym->result == sym)
   19321       114577 :           || ((sym->attr.dummy || sym->attr.result) && sym->ns->proc_name
   19322        32780 :               && sym->ns->proc_name->attr.is_bind_c)))
   19323              :     {
   19324              :       int i;
   19325          200 :       for (i = 0; gfc_logical_kinds[i].kind; i++)
   19326          200 :         if (gfc_logical_kinds[i].kind == sym->ts.kind)
   19327              :           break;
   19328           16 :       if (!gfc_logical_kinds[i].c_bool && sym->attr.dummy
   19329          181 :           && !gfc_notify_std (GFC_STD_GNU, "LOGICAL dummy argument %qs at "
   19330              :                               "%L with non-C_Bool kind in BIND(C) procedure "
   19331              :                               "%qs", sym->name, &sym->declared_at,
   19332           13 :                               sym->ns->proc_name->name))
   19333              :         return;
   19334          167 :       else if (!gfc_logical_kinds[i].c_bool
   19335          182 :                && !gfc_notify_std (GFC_STD_GNU, "LOGICAL result variable "
   19336              :                                    "%qs at %L with non-C_Bool kind in "
   19337              :                                    "BIND(C) procedure %qs", sym->name,
   19338              :                                    &sym->declared_at,
   19339           15 :                                    sym->attr.function ? sym->name
   19340           13 :                                    : sym->ns->proc_name->name))
   19341              :         return;
   19342              :     }
   19343              : 
   19344      1754223 :   switch (sym->attr.flavor)
   19345              :     {
   19346       678819 :     case FL_VARIABLE:
   19347       678819 :       if (!resolve_fl_variable (sym, mp_flag))
   19348              :         return;
   19349              :       break;
   19350              : 
   19351       501356 :     case FL_PROCEDURE:
   19352       501356 :       if (sym->formal && !sym->formal_ns)
   19353              :         {
   19354              :           /* Check that none of the arguments are a namelist.  */
   19355              :           gfc_formal_arglist *formal = sym->formal;
   19356              : 
   19357       107878 :           for (; formal; formal = formal->next)
   19358        73061 :             if (formal->sym && formal->sym->attr.flavor == FL_NAMELIST)
   19359              :               {
   19360            1 :                 gfc_error ("Namelist %qs cannot be an argument to "
   19361              :                            "subroutine or function at %L",
   19362              :                            formal->sym->name, &sym->declared_at);
   19363            1 :                 return;
   19364              :               }
   19365              :         }
   19366              : 
   19367       501355 :       if (!resolve_fl_procedure (sym, mp_flag))
   19368              :         return;
   19369              :       break;
   19370              : 
   19371          875 :     case FL_NAMELIST:
   19372          875 :       if (!resolve_fl_namelist (sym))
   19373              :         return;
   19374              :       break;
   19375              : 
   19376       411697 :     case FL_PARAMETER:
   19377       411697 :       if (!resolve_fl_parameter (sym))
   19378              :         return;
   19379              :       break;
   19380              : 
   19381              :     default:
   19382              :       break;
   19383              :     }
   19384              : 
   19385              :   /* Resolve array specifier. Check as well some constraints
   19386              :      on COMMON blocks.  */
   19387              : 
   19388      1754026 :   check_constant = sym->attr.in_common && !sym->attr.pointer && !sym->error;
   19389              : 
   19390      1754026 :   resolve_symbol_array_spec (sym, check_constant);
   19391              : 
   19392              :   /* Resolve formal namespaces.  */
   19393      1754026 :   if (sym->formal_ns && sym->formal_ns != gfc_current_ns
   19394       279523 :       && !sym->attr.contained && !sym->attr.intrinsic)
   19395       249759 :     gfc_resolve (sym->formal_ns);
   19396              : 
   19397              :   /* Make sure the formal namespace is present.  */
   19398      1754026 :   if (sym->formal && !sym->formal_ns)
   19399              :     {
   19400              :       gfc_formal_arglist *formal = sym->formal;
   19401        35310 :       while (formal && !formal->sym)
   19402           11 :         formal = formal->next;
   19403              : 
   19404        35299 :       if (formal)
   19405              :         {
   19406        35288 :           sym->formal_ns = formal->sym->ns;
   19407        35288 :           if (sym->formal_ns && sym->ns != formal->sym->ns)
   19408        26824 :             sym->formal_ns->refs++;
   19409              :         }
   19410              :     }
   19411              : 
   19412              :   /* Check threadprivate restrictions.  */
   19413      1754026 :   if ((sym->attr.threadprivate || sym->attr.omp_groupprivate)
   19414          384 :       && !(sym->attr.save || sym->attr.data || sym->attr.in_common)
   19415           33 :       && !(sym->ns->save_all && !sym->attr.automatic)
   19416           32 :       && sym->module == NULL
   19417           17 :       && (sym->ns->proc_name == NULL
   19418           17 :           || (sym->ns->proc_name->attr.flavor != FL_MODULE
   19419            4 :               && !sym->ns->proc_name->attr.is_main_program)))
   19420              :     {
   19421            2 :       if (sym->attr.threadprivate)
   19422            1 :         gfc_error ("Threadprivate at %L isn't SAVEd", &sym->declared_at);
   19423              :       else
   19424            1 :         gfc_error ("OpenMP groupprivate variable %qs at %L must have the SAVE "
   19425              :                    "attribute", sym->name, &sym->declared_at);
   19426              :     }
   19427              : 
   19428      1754026 :   if (sym->attr.omp_groupprivate && sym->value)
   19429            2 :     gfc_error ("!$OMP GROUPPRIVATE variable %qs at %L must not have an "
   19430              :                "initializer", sym->name, &sym->declared_at);
   19431              : 
   19432              :   /* Check omp declare target restrictions.  */
   19433      1754026 :   if ((sym->attr.omp_declare_target
   19434      1752608 :        || sym->attr.omp_declare_target_link
   19435      1752560 :        || sym->attr.omp_declare_target_local)
   19436         1506 :       && !sym->attr.omp_groupprivate  /* already warned.  */
   19437         1459 :       && sym->attr.flavor == FL_VARIABLE
   19438          616 :       && !sym->attr.save
   19439          199 :       && !(sym->ns->save_all && !sym->attr.automatic)
   19440          199 :       && (!sym->attr.in_common
   19441          186 :           && sym->module == NULL
   19442           96 :           && (sym->ns->proc_name == NULL
   19443           96 :               || (sym->ns->proc_name->attr.flavor != FL_MODULE
   19444            6 :                   && !sym->ns->proc_name->attr.is_main_program))))
   19445            4 :     gfc_error ("!$OMP DECLARE TARGET variable %qs at %L isn't SAVEd",
   19446              :                sym->name, &sym->declared_at);
   19447              : 
   19448              :   /* If we have come this far we can apply default-initializers, as
   19449              :      described in 14.7.5, to those variables that have not already
   19450              :      been assigned one.  */
   19451      1754026 :   if (sym->ts.type == BT_DERIVED
   19452       133502 :       && !sym->value
   19453       108176 :       && !sym->attr.allocatable
   19454       105127 :       && !sym->attr.alloc_comp)
   19455              :     {
   19456       105062 :       symbol_attribute *a = &sym->attr;
   19457              : 
   19458       105062 :       if ((!a->save && !a->dummy && !a->pointer
   19459        57809 :            && !a->in_common && !a->use_assoc
   19460        10723 :            && a->referenced
   19461         8428 :            && !((a->function || a->result)
   19462         1711 :                 && (!a->dimension
   19463          160 :                     || sym->ts.u.derived->attr.alloc_comp
   19464           95 :                     || sym->ts.u.derived->attr.pointer_comp))
   19465         6798 :            && !(a->function && sym != sym->result))
   19466        98284 :           || (a->dummy && !a->pointer && a->intent == INTENT_OUT
   19467         1528 :               && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY))
   19468         8207 :         apply_default_init (sym);
   19469        96855 :       else if (a->function && !a->pointer && !a->allocatable
   19470        21060 :                && !a->use_assoc && !a->used_in_submodule && sym->result)
   19471              :         /* Default initialization for function results.  */
   19472         2759 :         apply_default_init (sym->result);
   19473        94096 :       else if (a->function && sym->result && a->access != ACCESS_PRIVATE
   19474        12040 :                && (sym->ts.u.derived->attr.alloc_comp
   19475        11475 :                    || sym->ts.u.derived->attr.pointer_comp))
   19476              :         /* Mark the result symbol to be referenced, when it has allocatable
   19477              :            components.  */
   19478          624 :         sym->result->attr.referenced = 1;
   19479              :     }
   19480              : 
   19481      1754026 :   if (sym->ts.type == BT_CLASS && sym->ns == gfc_current_ns
   19482        19612 :       && sym->attr.dummy && sym->attr.intent == INTENT_OUT
   19483         1322 :       && sym->ns->proc_name->attr.if_source != IFSRC_IFBODY
   19484         1247 :       && !CLASS_DATA (sym)->attr.class_pointer
   19485         1221 :       && !CLASS_DATA (sym)->attr.allocatable)
   19486          913 :     apply_default_init (sym);
   19487              : 
   19488              :   /* If this symbol has a type-spec, check it.  */
   19489      1754026 :   if (sym->attr.flavor == FL_VARIABLE || sym->attr.flavor == FL_PARAMETER
   19490       663620 :       || (sym->attr.flavor == FL_PROCEDURE && sym->attr.function))
   19491      1423366 :     if (!resolve_typespec_used (&sym->ts, &sym->declared_at, sym->name))
   19492              :       return;
   19493              : 
   19494      1754023 :   if (sym->param_list)
   19495         1492 :     resolve_pdt (sym);
   19496              : }
   19497              : 
   19498              : 
   19499         4151 : void gfc_resolve_symbol (gfc_symbol *sym)
   19500              : {
   19501         4151 :   resolve_symbol (sym);
   19502         4151 :   return;
   19503              : }
   19504              : 
   19505              : 
   19506              : /************* Resolve DATA statements *************/
   19507              : 
   19508              : static struct
   19509              : {
   19510              :   gfc_data_value *vnode;
   19511              :   mpz_t left;
   19512              : }
   19513              : values;
   19514              : 
   19515              : 
   19516              : /* Advance the values structure to point to the next value in the data list.  */
   19517              : 
   19518              : static bool
   19519        10892 : next_data_value (void)
   19520              : {
   19521        16660 :   while (mpz_cmp_ui (values.left, 0) == 0)
   19522              :     {
   19523              : 
   19524         8198 :       if (values.vnode->next == NULL)
   19525              :         return false;
   19526              : 
   19527         5768 :       values.vnode = values.vnode->next;
   19528         5768 :       mpz_set (values.left, values.vnode->repeat);
   19529              :     }
   19530              : 
   19531              :   return true;
   19532              : }
   19533              : 
   19534              : 
   19535              : static bool
   19536         3557 : check_data_variable (gfc_data_variable *var, locus *where)
   19537              : {
   19538         3557 :   gfc_expr *e;
   19539         3557 :   mpz_t size;
   19540         3557 :   mpz_t offset;
   19541         3557 :   bool t;
   19542         3557 :   ar_type mark = AR_UNKNOWN;
   19543         3557 :   int i;
   19544         3557 :   mpz_t section_index[GFC_MAX_DIMENSIONS];
   19545         3557 :   int vector_offset[GFC_MAX_DIMENSIONS];
   19546         3557 :   gfc_ref *ref;
   19547         3557 :   gfc_array_ref *ar;
   19548         3557 :   gfc_symbol *sym;
   19549         3557 :   int has_pointer;
   19550              : 
   19551         3557 :   if (!gfc_resolve_expr (var->expr))
   19552              :     return false;
   19553              : 
   19554         3557 :   ar = NULL;
   19555         3557 :   e = var->expr;
   19556              : 
   19557         3557 :   if (e->expr_type == EXPR_FUNCTION && e->value.function.isym
   19558            0 :       && e->value.function.isym->id == GFC_ISYM_CAF_GET)
   19559            0 :     e = e->value.function.actual->expr;
   19560              : 
   19561         3557 :   if (e->expr_type != EXPR_VARIABLE)
   19562              :     {
   19563            0 :       gfc_error ("Expecting definable entity near %L", where);
   19564            0 :       return false;
   19565              :     }
   19566              : 
   19567         3557 :   sym = e->symtree->n.sym;
   19568              : 
   19569         3557 :   if (sym->ns->is_block_data && !sym->attr.in_common)
   19570              :     {
   19571            2 :       gfc_error ("BLOCK DATA element %qs at %L must be in COMMON",
   19572              :                  sym->name, &sym->declared_at);
   19573            2 :       return false;
   19574              :     }
   19575              : 
   19576         3555 :   if (e->ref == NULL && sym->as)
   19577              :     {
   19578            1 :       gfc_error ("DATA array %qs at %L must be specified in a previous"
   19579              :                  " declaration", sym->name, where);
   19580            1 :       return false;
   19581              :     }
   19582              : 
   19583         3554 :   if (gfc_is_coindexed (e))
   19584              :     {
   19585            7 :       gfc_error ("DATA element %qs at %L cannot have a coindex", sym->name,
   19586              :                  where);
   19587            7 :       return false;
   19588              :     }
   19589              : 
   19590         3547 :   has_pointer = sym->attr.pointer;
   19591              : 
   19592         5988 :   for (ref = e->ref; ref; ref = ref->next)
   19593              :     {
   19594         2445 :       if (ref->type == REF_COMPONENT && ref->u.c.component->attr.pointer)
   19595              :         has_pointer = 1;
   19596              : 
   19597         2419 :       if (has_pointer)
   19598              :         {
   19599           29 :           if (ref->type == REF_ARRAY && ref->u.ar.type != AR_FULL)
   19600              :             {
   19601            1 :               gfc_error ("DATA element %qs at %L is a pointer and so must "
   19602              :                          "be a full array", sym->name, where);
   19603            1 :               return false;
   19604              :             }
   19605              : 
   19606           28 :           if (values.vnode->expr->expr_type == EXPR_CONSTANT)
   19607              :             {
   19608            1 :               gfc_error ("DATA object near %L has the pointer attribute "
   19609              :                          "and the corresponding DATA value is not a valid "
   19610              :                          "initial-data-target", where);
   19611            1 :               return false;
   19612              :             }
   19613              :         }
   19614              : 
   19615         2443 :       if (ref->type == REF_COMPONENT && ref->u.c.component->attr.allocatable)
   19616              :         {
   19617            1 :           gfc_error ("DATA element %qs at %L cannot have the ALLOCATABLE "
   19618              :                      "attribute", ref->u.c.component->name, &e->where);
   19619            1 :           return false;
   19620              :         }
   19621              : 
   19622              :       /* Reject substrings of strings of non-constant length.  */
   19623         2442 :       if (ref->type == REF_SUBSTRING
   19624           73 :           && ref->u.ss.length
   19625           73 :           && ref->u.ss.length->length
   19626         2515 :           && !gfc_is_constant_expr (ref->u.ss.length->length))
   19627            1 :         goto bad_charlen;
   19628              :     }
   19629              : 
   19630              :   /* Reject strings with deferred length or non-constant length.  */
   19631         3543 :   if (e->ts.type == BT_CHARACTER
   19632         3543 :       && (e->ts.deferred
   19633          374 :           || (e->ts.u.cl->length
   19634          323 :               && !gfc_is_constant_expr (e->ts.u.cl->length))))
   19635            5 :     goto bad_charlen;
   19636              : 
   19637         3538 :   mpz_init_set_si (offset, 0);
   19638              : 
   19639         3538 :   if (e->rank == 0 || has_pointer)
   19640              :     {
   19641         2691 :       mpz_init_set_ui (size, 1);
   19642         2691 :       ref = NULL;
   19643              :     }
   19644              :   else
   19645              :     {
   19646          847 :       ref = e->ref;
   19647              : 
   19648              :       /* Find the array section reference.  */
   19649         1030 :       for (ref = e->ref; ref; ref = ref->next)
   19650              :         {
   19651         1030 :           if (ref->type != REF_ARRAY)
   19652           92 :             continue;
   19653          938 :           if (ref->u.ar.type == AR_ELEMENT)
   19654           91 :             continue;
   19655              :           break;
   19656              :         }
   19657          847 :       gcc_assert (ref);
   19658              : 
   19659              :       /* Set marks according to the reference pattern.  */
   19660          847 :       switch (ref->u.ar.type)
   19661              :         {
   19662              :         case AR_FULL:
   19663              :           mark = AR_FULL;
   19664              :           break;
   19665              : 
   19666          151 :         case AR_SECTION:
   19667          151 :           ar = &ref->u.ar;
   19668              :           /* Get the start position of array section.  */
   19669          151 :           gfc_get_section_index (ar, section_index, &offset, vector_offset);
   19670          151 :           mark = AR_SECTION;
   19671          151 :           break;
   19672              : 
   19673            0 :         default:
   19674            0 :           gcc_unreachable ();
   19675              :         }
   19676              : 
   19677          847 :       if (!gfc_array_size (e, &size))
   19678              :         {
   19679            1 :           gfc_error ("Nonconstant array section at %L in DATA statement",
   19680              :                      where);
   19681            1 :           mpz_clear (offset);
   19682            1 :           return false;
   19683              :         }
   19684              :     }
   19685              : 
   19686         3537 :   t = true;
   19687              : 
   19688        11937 :   while (mpz_cmp_ui (size, 0) > 0)
   19689              :     {
   19690         8463 :       if (!next_data_value ())
   19691              :         {
   19692            1 :           gfc_error ("DATA statement at %L has more variables than values",
   19693              :                      where);
   19694            1 :           t = false;
   19695            1 :           break;
   19696              :         }
   19697              : 
   19698         8462 :       t = gfc_check_assign (var->expr, values.vnode->expr, 0);
   19699         8462 :       if (!t)
   19700              :         break;
   19701              : 
   19702              :       /* If we have more than one element left in the repeat count,
   19703              :          and we have more than one element left in the target variable,
   19704              :          then create a range assignment.  */
   19705              :       /* FIXME: Only done for full arrays for now, since array sections
   19706              :          seem tricky.  */
   19707         8443 :       if (mark == AR_FULL && ref && ref->next == NULL
   19708         5364 :           && mpz_cmp_ui (values.left, 1) > 0 && mpz_cmp_ui (size, 1) > 0)
   19709              :         {
   19710          137 :           mpz_t range;
   19711              : 
   19712          137 :           if (mpz_cmp (size, values.left) >= 0)
   19713              :             {
   19714          126 :               mpz_init_set (range, values.left);
   19715          126 :               mpz_sub (size, size, values.left);
   19716          126 :               mpz_set_ui (values.left, 0);
   19717              :             }
   19718              :           else
   19719              :             {
   19720           11 :               mpz_init_set (range, size);
   19721           11 :               mpz_sub (values.left, values.left, size);
   19722           11 :               mpz_set_ui (size, 0);
   19723              :             }
   19724              : 
   19725          137 :           t = gfc_assign_data_value (var->expr, values.vnode->expr,
   19726              :                                      offset, &range);
   19727              : 
   19728          137 :           mpz_add (offset, offset, range);
   19729          137 :           mpz_clear (range);
   19730              : 
   19731          137 :           if (!t)
   19732              :             break;
   19733          129 :         }
   19734              : 
   19735              :       /* Assign initial value to symbol.  */
   19736              :       else
   19737              :         {
   19738         8306 :           mpz_sub_ui (values.left, values.left, 1);
   19739         8306 :           mpz_sub_ui (size, size, 1);
   19740              : 
   19741         8306 :           t = gfc_assign_data_value (var->expr, values.vnode->expr,
   19742              :                                      offset, NULL);
   19743         8306 :           if (!t)
   19744              :             break;
   19745              : 
   19746         8271 :           if (mark == AR_FULL)
   19747         5259 :             mpz_add_ui (offset, offset, 1);
   19748              : 
   19749              :           /* Modify the array section indexes and recalculate the offset
   19750              :              for next element.  */
   19751         3012 :           else if (mark == AR_SECTION)
   19752          366 :             gfc_advance_section (section_index, ar, &offset, vector_offset);
   19753              :         }
   19754              :     }
   19755              : 
   19756         3537 :   if (mark == AR_SECTION)
   19757              :     {
   19758          344 :       for (i = 0; i < ar->dimen; i++)
   19759          194 :         mpz_clear (section_index[i]);
   19760              :     }
   19761              : 
   19762         3537 :   mpz_clear (size);
   19763         3537 :   mpz_clear (offset);
   19764              : 
   19765         3537 :   return t;
   19766              : 
   19767            6 : bad_charlen:
   19768            6 :   gfc_error ("Non-constant character length at %L in DATA statement",
   19769              :              &e->where);
   19770            6 :   return false;
   19771              : }
   19772              : 
   19773              : 
   19774              : static bool traverse_data_var (gfc_data_variable *, locus *);
   19775              : 
   19776              : /* Iterate over a list of elements in a DATA statement.  */
   19777              : 
   19778              : static bool
   19779          237 : traverse_data_list (gfc_data_variable *var, locus *where)
   19780              : {
   19781          237 :   mpz_t trip;
   19782          237 :   iterator_stack frame;
   19783          237 :   gfc_expr *e, *start, *end, *step;
   19784          237 :   bool retval = true;
   19785              : 
   19786          237 :   mpz_init (frame.value);
   19787          237 :   mpz_init (trip);
   19788              : 
   19789          237 :   start = gfc_copy_expr (var->iter.start);
   19790          237 :   end = gfc_copy_expr (var->iter.end);
   19791          237 :   step = gfc_copy_expr (var->iter.step);
   19792              : 
   19793          237 :   if (!gfc_simplify_expr (start, 1)
   19794          237 :       || start->expr_type != EXPR_CONSTANT)
   19795              :     {
   19796            0 :       gfc_error ("start of implied-do loop at %L could not be "
   19797              :                  "simplified to a constant value", &start->where);
   19798            0 :       retval = false;
   19799            0 :       goto cleanup;
   19800              :     }
   19801          237 :   if (!gfc_simplify_expr (end, 1)
   19802          237 :       || end->expr_type != EXPR_CONSTANT)
   19803              :     {
   19804            0 :       gfc_error ("end of implied-do loop at %L could not be "
   19805              :                  "simplified to a constant value", &end->where);
   19806            0 :       retval = false;
   19807            0 :       goto cleanup;
   19808              :     }
   19809          237 :   if (!gfc_simplify_expr (step, 1)
   19810          237 :       || step->expr_type != EXPR_CONSTANT)
   19811              :     {
   19812            0 :       gfc_error ("step of implied-do loop at %L could not be "
   19813              :                  "simplified to a constant value", &step->where);
   19814            0 :       retval = false;
   19815            0 :       goto cleanup;
   19816              :     }
   19817          237 :   if (mpz_cmp_si (step->value.integer, 0) == 0)
   19818              :     {
   19819            1 :       gfc_error ("step of implied-do loop at %L shall not be zero",
   19820              :                  &step->where);
   19821            1 :       retval = false;
   19822            1 :       goto cleanup;
   19823              :     }
   19824              : 
   19825          236 :   mpz_set (trip, end->value.integer);
   19826          236 :   mpz_sub (trip, trip, start->value.integer);
   19827          236 :   mpz_add (trip, trip, step->value.integer);
   19828              : 
   19829          236 :   mpz_div (trip, trip, step->value.integer);
   19830              : 
   19831          236 :   mpz_set (frame.value, start->value.integer);
   19832              : 
   19833          236 :   frame.prev = iter_stack;
   19834          236 :   frame.variable = var->iter.var->symtree;
   19835          236 :   iter_stack = &frame;
   19836              : 
   19837         1127 :   while (mpz_cmp_ui (trip, 0) > 0)
   19838              :     {
   19839          905 :       if (!traverse_data_var (var->list, where))
   19840              :         {
   19841           14 :           retval = false;
   19842           14 :           goto cleanup;
   19843              :         }
   19844              : 
   19845          891 :       e = gfc_copy_expr (var->expr);
   19846          891 :       if (!gfc_simplify_expr (e, 1))
   19847              :         {
   19848            0 :           gfc_free_expr (e);
   19849            0 :           retval = false;
   19850            0 :           goto cleanup;
   19851              :         }
   19852              : 
   19853          891 :       mpz_add (frame.value, frame.value, step->value.integer);
   19854              : 
   19855          891 :       mpz_sub_ui (trip, trip, 1);
   19856              :     }
   19857              : 
   19858          222 : cleanup:
   19859          237 :   mpz_clear (frame.value);
   19860          237 :   mpz_clear (trip);
   19861              : 
   19862          237 :   gfc_free_expr (start);
   19863          237 :   gfc_free_expr (end);
   19864          237 :   gfc_free_expr (step);
   19865              : 
   19866          237 :   iter_stack = frame.prev;
   19867          237 :   return retval;
   19868              : }
   19869              : 
   19870              : 
   19871              : /* Type resolve variables in the variable list of a DATA statement.  */
   19872              : 
   19873              : static bool
   19874         3418 : traverse_data_var (gfc_data_variable *var, locus *where)
   19875              : {
   19876         3418 :   bool t;
   19877              : 
   19878         7114 :   for (; var; var = var->next)
   19879              :     {
   19880         3794 :       if (var->expr == NULL)
   19881          237 :         t = traverse_data_list (var, where);
   19882              :       else
   19883         3557 :         t = check_data_variable (var, where);
   19884              : 
   19885         3794 :       if (!t)
   19886              :         return false;
   19887              :     }
   19888              : 
   19889              :   return true;
   19890              : }
   19891              : 
   19892              : 
   19893              : /* Resolve the expressions and iterators associated with a data statement.
   19894              :    This is separate from the assignment checking because data lists should
   19895              :    only be resolved once.  */
   19896              : 
   19897              : static bool
   19898         2668 : resolve_data_variables (gfc_data_variable *d)
   19899              : {
   19900         5707 :   for (; d; d = d->next)
   19901              :     {
   19902         3044 :       if (d->list == NULL)
   19903              :         {
   19904         2891 :           if (!gfc_resolve_expr (d->expr))
   19905              :             return false;
   19906              :         }
   19907              :       else
   19908              :         {
   19909          153 :           if (!gfc_resolve_iterator (&d->iter, false, true))
   19910              :             return false;
   19911              : 
   19912          150 :           if (!resolve_data_variables (d->list))
   19913              :             return false;
   19914              :         }
   19915              :     }
   19916              : 
   19917              :   return true;
   19918              : }
   19919              : 
   19920              : 
   19921              : /* Resolve a single DATA statement.  We implement this by storing a pointer to
   19922              :    the value list into static variables, and then recursively traversing the
   19923              :    variables list, expanding iterators and such.  */
   19924              : 
   19925              : static void
   19926         2518 : resolve_data (gfc_data *d)
   19927              : {
   19928              : 
   19929         2518 :   if (!resolve_data_variables (d->var))
   19930              :     return;
   19931              : 
   19932         2513 :   values.vnode = d->value;
   19933         2513 :   if (d->value == NULL)
   19934            0 :     mpz_set_ui (values.left, 0);
   19935              :   else
   19936         2513 :     mpz_set (values.left, d->value->repeat);
   19937              : 
   19938         2513 :   if (!traverse_data_var (d->var, &d->where))
   19939              :     return;
   19940              : 
   19941              :   /* At this point, we better not have any values left.  */
   19942              : 
   19943         2429 :   if (next_data_value ())
   19944            0 :     gfc_error ("DATA statement at %L has more values than variables",
   19945              :                &d->where);
   19946              : }
   19947              : 
   19948              : 
   19949              : /* 12.6 Constraint: In a pure subprogram any variable which is in common or
   19950              :    accessed by host or use association, is a dummy argument to a pure function,
   19951              :    is a dummy argument with INTENT (IN) to a pure subroutine, or an object that
   19952              :    is storage associated with any such variable, shall not be used in the
   19953              :    following contexts: (clients of this function).  */
   19954              : 
   19955              : /* Determines if a variable is not 'pure', i.e., not assignable within a pure
   19956              :    procedure.  Returns zero if assignment is OK, nonzero if there is a
   19957              :    problem.  */
   19958              : bool
   19959        57245 : gfc_impure_variable (gfc_symbol *sym)
   19960              : {
   19961        57245 :   gfc_symbol *proc;
   19962        57245 :   gfc_namespace *ns;
   19963              : 
   19964        57245 :   if (sym->attr.use_assoc || sym->attr.in_common)
   19965              :     return 1;
   19966              : 
   19967              :   /* The namespace of a module procedure interface holds the arguments and
   19968              :      symbols, and so the symbol namespace can be different to that of the
   19969              :      procedure.  */
   19970        56615 :   if (sym->ns != gfc_current_ns
   19971         6061 :       && gfc_current_ns->proc_name->abr_modproc_decl
   19972           48 :       && sym->ns->proc_name->attr.function
   19973           12 :       && sym->attr.result
   19974           12 :       && !strcmp (sym->ns->proc_name->name, gfc_current_ns->proc_name->name))
   19975              :     return 0;
   19976              : 
   19977              :   /* Check if the symbol's ns is inside the pure procedure.  */
   19978        61379 :   for (ns = gfc_current_ns; ns; ns = ns->parent)
   19979              :     {
   19980        61095 :       if (ns == sym->ns)
   19981              :         break;
   19982         6380 :       if (ns->proc_name->attr.flavor == FL_PROCEDURE
   19983         5258 :           && !(sym->attr.function || sym->attr.result))
   19984              :         return 1;
   19985              :     }
   19986              : 
   19987        54999 :   proc = sym->ns->proc_name;
   19988        54999 :   if (sym->attr.dummy
   19989         6075 :       && !sym->attr.value
   19990         5953 :       && ((proc->attr.subroutine && sym->attr.intent == INTENT_IN)
   19991         5747 :           || proc->attr.function))
   19992          700 :     return 1;
   19993              : 
   19994              :   /* TODO: Sort out what can be storage associated, if anything, and include
   19995              :      it here.  In principle equivalences should be scanned but it does not
   19996              :      seem to be possible to storage associate an impure variable this way.  */
   19997              :   return 0;
   19998              : }
   19999              : 
   20000              : 
   20001              : /* Test whether a symbol is pure or not.  For a NULL pointer, checks if the
   20002              :    current namespace is inside a pure procedure.  */
   20003              : 
   20004              : bool
   20005      2389615 : gfc_pure (gfc_symbol *sym)
   20006              : {
   20007      2389615 :   symbol_attribute attr;
   20008      2389615 :   gfc_namespace *ns;
   20009              : 
   20010      2389615 :   if (sym == NULL)
   20011              :     {
   20012              :       /* Check if the current namespace or one of its parents
   20013              :         belongs to a pure procedure.  */
   20014      3224855 :       for (ns = gfc_current_ns; ns; ns = ns->parent)
   20015              :         {
   20016      1905619 :           sym = ns->proc_name;
   20017      1905619 :           if (sym == NULL)
   20018              :             return 0;
   20019      1904478 :           attr = sym->attr;
   20020      1904478 :           if (attr.flavor == FL_PROCEDURE && attr.pure)
   20021              :             return 1;
   20022              :         }
   20023              :       return 0;
   20024              :     }
   20025              : 
   20026      1061664 :   attr = sym->attr;
   20027              : 
   20028      1061664 :   return attr.flavor == FL_PROCEDURE && attr.pure;
   20029              : }
   20030              : 
   20031              : 
   20032              : /* Test whether a symbol is implicitly pure or not.  For a NULL pointer,
   20033              :    checks if the current namespace is implicitly pure.  Note that this
   20034              :    function returns false for a PURE procedure.  */
   20035              : 
   20036              : bool
   20037       733737 : gfc_implicit_pure (gfc_symbol *sym)
   20038              : {
   20039       733737 :   gfc_namespace *ns;
   20040              : 
   20041       733737 :   if (sym == NULL)
   20042              :     {
   20043              :       /* Check if the current procedure is implicit_pure.  Walk up
   20044              :          the procedure list until we find a procedure.  */
   20045      1011206 :       for (ns = gfc_current_ns; ns; ns = ns->parent)
   20046              :         {
   20047       721653 :           sym = ns->proc_name;
   20048       721653 :           if (sym == NULL)
   20049              :             return 0;
   20050              : 
   20051       721580 :           if (sym->attr.flavor == FL_PROCEDURE)
   20052              :             break;
   20053              :         }
   20054              :     }
   20055              : 
   20056       444108 :   return sym->attr.flavor == FL_PROCEDURE && sym->attr.implicit_pure
   20057       761788 :     && !sym->attr.pure;
   20058              : }
   20059              : 
   20060              : 
   20061              : void
   20062       430866 : gfc_unset_implicit_pure (gfc_symbol *sym)
   20063              : {
   20064       430866 :   gfc_namespace *ns;
   20065              : 
   20066       430866 :   if (sym == NULL)
   20067              :     {
   20068              :       /* Check if the current procedure is implicit_pure.  Walk up
   20069              :          the procedure list until we find a procedure.  */
   20070       704238 :       for (ns = gfc_current_ns; ns; ns = ns->parent)
   20071              :         {
   20072       435630 :           sym = ns->proc_name;
   20073       435630 :           if (sym == NULL)
   20074              :             return;
   20075              : 
   20076       434797 :           if (sym->attr.flavor == FL_PROCEDURE)
   20077              :             break;
   20078              :         }
   20079              :     }
   20080              : 
   20081       430033 :   if (sym->attr.flavor == FL_PROCEDURE)
   20082       152942 :     sym->attr.implicit_pure = 0;
   20083              :   else
   20084       277091 :     sym->attr.pure = 0;
   20085              : }
   20086              : 
   20087              : 
   20088              : /* Test whether the current procedure is elemental or not.  */
   20089              : 
   20090              : bool
   20091      1432295 : gfc_elemental (gfc_symbol *sym)
   20092              : {
   20093      1432295 :   symbol_attribute attr;
   20094              : 
   20095      1432295 :   if (sym == NULL)
   20096            0 :     sym = gfc_current_ns->proc_name;
   20097            0 :   if (sym == NULL)
   20098              :     return 0;
   20099      1432295 :   attr = sym->attr;
   20100              : 
   20101      1432295 :   return attr.flavor == FL_PROCEDURE && attr.elemental;
   20102              : }
   20103              : 
   20104              : 
   20105              : /* Warn about unused labels.  */
   20106              : 
   20107              : static void
   20108         4843 : warn_unused_fortran_label (gfc_st_label *label)
   20109              : {
   20110         4869 :   if (label == NULL)
   20111              :     return;
   20112              : 
   20113           27 :   warn_unused_fortran_label (label->left);
   20114              : 
   20115           27 :   if (label->defined == ST_LABEL_UNKNOWN)
   20116              :     return;
   20117              : 
   20118           26 :   switch (label->referenced)
   20119              :     {
   20120            2 :     case ST_LABEL_UNKNOWN:
   20121            2 :       gfc_warning (OPT_Wunused_label, "Label %d at %L defined but not used",
   20122              :                    label->value, &label->where);
   20123            2 :       break;
   20124              : 
   20125            1 :     case ST_LABEL_BAD_TARGET:
   20126            1 :       gfc_warning (OPT_Wunused_label,
   20127              :                    "Label %d at %L defined but cannot be used",
   20128              :                    label->value, &label->where);
   20129            1 :       break;
   20130              : 
   20131              :     default:
   20132              :       break;
   20133              :     }
   20134              : 
   20135           26 :   warn_unused_fortran_label (label->right);
   20136              : }
   20137              : 
   20138              : 
   20139              : /* Returns the sequence type of a symbol or sequence.  */
   20140              : 
   20141              : static seq_type
   20142         1076 : sequence_type (gfc_typespec ts)
   20143              : {
   20144         1076 :   seq_type result;
   20145         1076 :   gfc_component *c;
   20146              : 
   20147         1076 :   switch (ts.type)
   20148              :   {
   20149           49 :     case BT_DERIVED:
   20150              : 
   20151           49 :       if (ts.u.derived->components == NULL)
   20152              :         return SEQ_NONDEFAULT;
   20153              : 
   20154           49 :       result = sequence_type (ts.u.derived->components->ts);
   20155          103 :       for (c = ts.u.derived->components->next; c; c = c->next)
   20156           67 :         if (sequence_type (c->ts) != result)
   20157              :           return SEQ_MIXED;
   20158              : 
   20159              :       return result;
   20160              : 
   20161          129 :     case BT_CHARACTER:
   20162          129 :       if (ts.kind != gfc_default_character_kind)
   20163            0 :           return SEQ_NONDEFAULT;
   20164              : 
   20165              :       return SEQ_CHARACTER;
   20166              : 
   20167          240 :     case BT_INTEGER:
   20168          240 :       if (ts.kind != gfc_default_integer_kind)
   20169           25 :           return SEQ_NONDEFAULT;
   20170              : 
   20171              :       return SEQ_NUMERIC;
   20172              : 
   20173          559 :     case BT_REAL:
   20174          559 :       if (!(ts.kind == gfc_default_real_kind
   20175          269 :             || ts.kind == gfc_default_double_kind))
   20176            0 :           return SEQ_NONDEFAULT;
   20177              : 
   20178              :       return SEQ_NUMERIC;
   20179              : 
   20180           81 :     case BT_COMPLEX:
   20181           81 :       if (ts.kind != gfc_default_complex_kind)
   20182           48 :           return SEQ_NONDEFAULT;
   20183              : 
   20184              :       return SEQ_NUMERIC;
   20185              : 
   20186           17 :     case BT_LOGICAL:
   20187           17 :       if (ts.kind != gfc_default_logical_kind)
   20188            0 :           return SEQ_NONDEFAULT;
   20189              : 
   20190              :       return SEQ_NUMERIC;
   20191              : 
   20192              :     default:
   20193              :       return SEQ_NONDEFAULT;
   20194              :   }
   20195              : }
   20196              : 
   20197              : 
   20198              : /* Resolve derived type EQUIVALENCE object.  */
   20199              : 
   20200              : static bool
   20201           80 : resolve_equivalence_derived (gfc_symbol *derived, gfc_symbol *sym, gfc_expr *e)
   20202              : {
   20203           80 :   gfc_component *c = derived->components;
   20204              : 
   20205           80 :   if (!derived)
   20206              :     return true;
   20207              : 
   20208              :   /* Shall not be an object of nonsequence derived type.  */
   20209           80 :   if (!derived->attr.sequence)
   20210              :     {
   20211            0 :       gfc_error ("Derived type variable %qs at %L must have SEQUENCE "
   20212              :                  "attribute to be an EQUIVALENCE object", sym->name,
   20213              :                  &e->where);
   20214            0 :       return false;
   20215              :     }
   20216              : 
   20217              :   /* Shall not have allocatable components.  */
   20218           80 :   if (derived->attr.alloc_comp)
   20219              :     {
   20220            1 :       gfc_error ("Derived type variable %qs at %L cannot have ALLOCATABLE "
   20221              :                  "components to be an EQUIVALENCE object",sym->name,
   20222              :                  &e->where);
   20223            1 :       return false;
   20224              :     }
   20225              : 
   20226           79 :   if (sym->attr.in_common && gfc_has_default_initializer (sym->ts.u.derived))
   20227              :     {
   20228            1 :       gfc_error ("Derived type variable %qs at %L with default "
   20229              :                  "initialization cannot be in EQUIVALENCE with a variable "
   20230              :                  "in COMMON", sym->name, &e->where);
   20231            1 :       return false;
   20232              :     }
   20233              : 
   20234          245 :   for (; c ; c = c->next)
   20235              :     {
   20236          167 :       if (gfc_bt_struct (c->ts.type)
   20237          167 :           && (!resolve_equivalence_derived(c->ts.u.derived, sym, e)))
   20238              :         return false;
   20239              : 
   20240              :       /* Shall not be an object of sequence derived type containing a pointer
   20241              :          in the structure.  */
   20242          167 :       if (c->attr.pointer)
   20243              :         {
   20244            0 :           gfc_error ("Derived type variable %qs at %L with pointer "
   20245              :                      "component(s) cannot be an EQUIVALENCE object",
   20246              :                      sym->name, &e->where);
   20247            0 :           return false;
   20248              :         }
   20249              :     }
   20250              :   return true;
   20251              : }
   20252              : 
   20253              : 
   20254              : /* Resolve equivalence object.
   20255              :    An EQUIVALENCE object shall not be a dummy argument, a pointer, a target,
   20256              :    an allocatable array, an object of nonsequence derived type, an object of
   20257              :    sequence derived type containing a pointer at any level of component
   20258              :    selection, an automatic object, a function name, an entry name, a result
   20259              :    name, a named constant, a structure component, or a subobject of any of
   20260              :    the preceding objects.  A substring shall not have length zero.  A
   20261              :    derived type shall not have components with default initialization nor
   20262              :    shall two objects of an equivalence group be initialized.
   20263              :    Either all or none of the objects shall have an protected attribute.
   20264              :    The simple constraints are done in symbol.cc(check_conflict) and the rest
   20265              :    are implemented here.  */
   20266              : 
   20267              : static void
   20268         1565 : resolve_equivalence (gfc_equiv *eq)
   20269              : {
   20270         1565 :   gfc_symbol *sym;
   20271         1565 :   gfc_symbol *first_sym;
   20272         1565 :   gfc_expr *e;
   20273         1565 :   gfc_ref *r;
   20274         1565 :   locus *last_where = NULL;
   20275         1565 :   seq_type eq_type, last_eq_type;
   20276         1565 :   gfc_typespec *last_ts;
   20277         1565 :   int object, cnt_protected;
   20278         1565 :   const char *msg;
   20279              : 
   20280         1565 :   last_ts = &eq->expr->symtree->n.sym->ts;
   20281              : 
   20282         1565 :   first_sym = eq->expr->symtree->n.sym;
   20283              : 
   20284         1565 :   cnt_protected = 0;
   20285              : 
   20286         4727 :   for (object = 1; eq; eq = eq->eq, object++)
   20287              :     {
   20288         3171 :       e = eq->expr;
   20289              : 
   20290         3171 :       e->ts = e->symtree->n.sym->ts;
   20291              :       /* match_varspec might not know yet if it is seeing
   20292              :          array reference or substring reference, as it doesn't
   20293              :          know the types.  */
   20294         3171 :       if (e->ref && e->ref->type == REF_ARRAY)
   20295              :         {
   20296         2152 :           gfc_ref *ref = e->ref;
   20297         2152 :           sym = e->symtree->n.sym;
   20298              : 
   20299         2152 :           if (sym->attr.dimension)
   20300              :             {
   20301         1855 :               ref->u.ar.as = sym->as;
   20302         1855 :               ref = ref->next;
   20303              :             }
   20304              : 
   20305              :           /* For substrings, convert REF_ARRAY into REF_SUBSTRING.  */
   20306         2152 :           if (e->ts.type == BT_CHARACTER
   20307          592 :               && ref
   20308          371 :               && ref->type == REF_ARRAY
   20309          371 :               && ref->u.ar.dimen == 1
   20310          371 :               && ref->u.ar.dimen_type[0] == DIMEN_RANGE
   20311          371 :               && ref->u.ar.stride[0] == NULL)
   20312              :             {
   20313          370 :               gfc_expr *start = ref->u.ar.start[0];
   20314          370 :               gfc_expr *end = ref->u.ar.end[0];
   20315          370 :               void *mem = NULL;
   20316              : 
   20317              :               /* Optimize away the (:) reference.  */
   20318          370 :               if (start == NULL && end == NULL)
   20319              :                 {
   20320            9 :                   if (e->ref == ref)
   20321            0 :                     e->ref = ref->next;
   20322              :                   else
   20323            9 :                     e->ref->next = ref->next;
   20324              :                   mem = ref;
   20325              :                 }
   20326              :               else
   20327              :                 {
   20328          361 :                   ref->type = REF_SUBSTRING;
   20329          361 :                   if (start == NULL)
   20330            9 :                     start = gfc_get_int_expr (gfc_charlen_int_kind,
   20331              :                                               NULL, 1);
   20332          361 :                   ref->u.ss.start = start;
   20333          361 :                   if (end == NULL && e->ts.u.cl)
   20334           27 :                     end = gfc_copy_expr (e->ts.u.cl->length);
   20335          361 :                   ref->u.ss.end = end;
   20336          361 :                   ref->u.ss.length = e->ts.u.cl;
   20337          361 :                   e->ts.u.cl = NULL;
   20338              :                 }
   20339          370 :               ref = ref->next;
   20340          370 :               free (mem);
   20341              :             }
   20342              : 
   20343              :           /* Any further ref is an error.  */
   20344         1930 :           if (ref)
   20345              :             {
   20346            1 :               gcc_assert (ref->type == REF_ARRAY);
   20347            1 :               gfc_error ("Syntax error in EQUIVALENCE statement at %L",
   20348              :                          &ref->u.ar.where);
   20349            1 :               continue;
   20350              :             }
   20351              :         }
   20352              : 
   20353         3170 :       if (!gfc_resolve_expr (e))
   20354            2 :         continue;
   20355              : 
   20356         3168 :       sym = e->symtree->n.sym;
   20357              : 
   20358         3168 :       if (sym->attr.is_protected)
   20359            2 :         cnt_protected++;
   20360         3168 :       if (cnt_protected > 0 && cnt_protected != object)
   20361              :         {
   20362            2 :               gfc_error ("Either all or none of the objects in the "
   20363              :                          "EQUIVALENCE set at %L shall have the "
   20364              :                          "PROTECTED attribute",
   20365              :                          &e->where);
   20366            2 :               break;
   20367              :         }
   20368              : 
   20369              :       /* Shall not equivalence common block variables in a PURE procedure.  */
   20370         3166 :       if (sym->ns->proc_name
   20371         3150 :           && sym->ns->proc_name->attr.pure
   20372            7 :           && sym->attr.in_common)
   20373              :         {
   20374              :           /* Need to check for symbols that may have entered the pure
   20375              :              procedure via a USE statement.  */
   20376            7 :           bool saw_sym = false;
   20377            7 :           if (sym->ns->use_stmts)
   20378              :             {
   20379            6 :               gfc_use_rename *r;
   20380           10 :               for (r = sym->ns->use_stmts->rename; r; r = r->next)
   20381            4 :                 if (strcmp(r->use_name, sym->name) == 0) saw_sym = true;
   20382              :             }
   20383              :           else
   20384              :             saw_sym = true;
   20385              : 
   20386            6 :           if (saw_sym)
   20387            3 :             gfc_error ("COMMON block member %qs at %L cannot be an "
   20388              :                        "EQUIVALENCE object in the pure procedure %qs",
   20389              :                        sym->name, &e->where, sym->ns->proc_name->name);
   20390              :           break;
   20391              :         }
   20392              : 
   20393              :       /* Shall not be a named constant.  */
   20394         3159 :       if (e->expr_type == EXPR_CONSTANT)
   20395              :         {
   20396            0 :           gfc_error ("Named constant %qs at %L cannot be an EQUIVALENCE "
   20397              :                      "object", sym->name, &e->where);
   20398            0 :           continue;
   20399              :         }
   20400              : 
   20401         3161 :       if (e->ts.type == BT_DERIVED
   20402         3159 :           && !resolve_equivalence_derived (e->ts.u.derived, sym, e))
   20403            2 :         continue;
   20404              : 
   20405              :       /* Check that the types correspond correctly:
   20406              :          Note 5.28:
   20407              :          A numeric sequence structure may be equivalenced to another sequence
   20408              :          structure, an object of default integer type, default real type, double
   20409              :          precision real type, default logical type such that components of the
   20410              :          structure ultimately only become associated to objects of the same
   20411              :          kind. A character sequence structure may be equivalenced to an object
   20412              :          of default character kind or another character sequence structure.
   20413              :          Other objects may be equivalenced only to objects of the same type and
   20414              :          kind parameters.  */
   20415              : 
   20416              :       /* Identical types are unconditionally OK.  */
   20417         3157 :       if (object == 1 || gfc_compare_types (last_ts, &sym->ts))
   20418         2677 :         goto identical_types;
   20419              : 
   20420          480 :       last_eq_type = sequence_type (*last_ts);
   20421          480 :       eq_type = sequence_type (sym->ts);
   20422              : 
   20423              :       /* Since the pair of objects is not of the same type, mixed or
   20424              :          non-default sequences can be rejected.  */
   20425              : 
   20426          480 :       msg = G_("Sequence %s with mixed components in EQUIVALENCE "
   20427              :                "statement at %L with different type objects");
   20428          481 :       if ((object ==2
   20429          480 :            && last_eq_type == SEQ_MIXED
   20430            7 :            && last_where
   20431            7 :            && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
   20432          486 :           || (eq_type == SEQ_MIXED
   20433            6 :               && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
   20434            1 :         continue;
   20435              : 
   20436          479 :       msg = G_("Non-default type object or sequence %s in EQUIVALENCE "
   20437              :                "statement at %L with objects of different type");
   20438          483 :       if ((object ==2
   20439          479 :            && last_eq_type == SEQ_NONDEFAULT
   20440           50 :            && last_where
   20441           49 :            && !gfc_notify_std (GFC_STD_GNU, msg, first_sym->name, last_where))
   20442          525 :           || (eq_type == SEQ_NONDEFAULT
   20443           24 :               && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where)))
   20444            4 :         continue;
   20445              : 
   20446          475 :       msg = G_("Non-CHARACTER object %qs in default CHARACTER "
   20447              :                "EQUIVALENCE statement at %L");
   20448          479 :       if (last_eq_type == SEQ_CHARACTER
   20449          475 :           && eq_type != SEQ_CHARACTER
   20450          475 :           && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
   20451            4 :                 continue;
   20452              : 
   20453          471 :       msg = G_("Non-NUMERIC object %qs in default NUMERIC "
   20454              :                "EQUIVALENCE statement at %L");
   20455          473 :       if (last_eq_type == SEQ_NUMERIC
   20456          471 :           && eq_type != SEQ_NUMERIC
   20457          471 :           && !gfc_notify_std (GFC_STD_GNU, msg, sym->name, &e->where))
   20458            2 :                 continue;
   20459              : 
   20460         3146 : identical_types:
   20461              : 
   20462         3146 :       last_ts =&sym->ts;
   20463         3146 :       last_where = &e->where;
   20464              : 
   20465         3146 :       if (!e->ref)
   20466         1003 :         continue;
   20467              : 
   20468              :       /* Shall not be an automatic array.  */
   20469         2143 :       if (e->ref->type == REF_ARRAY && is_non_constant_shape_array (sym))
   20470              :         {
   20471            3 :           gfc_error ("Array %qs at %L with non-constant bounds cannot be "
   20472              :                      "an EQUIVALENCE object", sym->name, &e->where);
   20473            3 :           continue;
   20474              :         }
   20475              : 
   20476         2140 :       r = e->ref;
   20477         4326 :       while (r)
   20478              :         {
   20479              :           /* Shall not be a structure component.  */
   20480         2187 :           if (r->type == REF_COMPONENT)
   20481              :             {
   20482            0 :               gfc_error ("Structure component %qs at %L cannot be an "
   20483              :                          "EQUIVALENCE object",
   20484            0 :                          r->u.c.component->name, &e->where);
   20485            0 :               break;
   20486              :             }
   20487              : 
   20488              :           /* A substring shall not have length zero.  */
   20489         2187 :           if (r->type == REF_SUBSTRING)
   20490              :             {
   20491          341 :               if (compare_bound (r->u.ss.start, r->u.ss.end) == CMP_GT)
   20492              :                 {
   20493            1 :                   gfc_error ("Substring at %L has length zero",
   20494              :                              &r->u.ss.start->where);
   20495            1 :                   break;
   20496              :                 }
   20497              :             }
   20498         2186 :           r = r->next;
   20499              :         }
   20500              :     }
   20501         1565 : }
   20502              : 
   20503              : 
   20504              : /* Function called by resolve_fntype to flag other symbols used in the
   20505              :    length type parameter specification of function results.  */
   20506              : 
   20507              : static bool
   20508         4237 : flag_fn_result_spec (gfc_expr *expr,
   20509              :                      gfc_symbol *sym,
   20510              :                      int *f ATTRIBUTE_UNUSED)
   20511              : {
   20512         4237 :   gfc_namespace *ns;
   20513         4237 :   gfc_symbol *s;
   20514              : 
   20515         4237 :   if (expr->expr_type == EXPR_VARIABLE)
   20516              :     {
   20517         1384 :       s = expr->symtree->n.sym;
   20518         2171 :       for (ns = s->ns; ns; ns = ns->parent)
   20519         2171 :         if (!ns->parent)
   20520              :           break;
   20521              : 
   20522         1384 :       if (sym == s)
   20523              :         {
   20524            1 :           gfc_error ("Self reference in character length expression "
   20525              :                      "for %qs at %L", sym->name, &expr->where);
   20526            1 :           return true;
   20527              :         }
   20528              : 
   20529         1383 :       if (!s->fn_result_spec
   20530         1383 :           && s->attr.flavor == FL_PARAMETER)
   20531              :         {
   20532              :           /* Function contained in a module.... */
   20533           63 :           if (ns->proc_name && ns->proc_name->attr.flavor == FL_MODULE)
   20534              :             {
   20535           32 :               gfc_symtree *st;
   20536           32 :               s->fn_result_spec = 1;
   20537              :               /* Make sure that this symbol is translated as a module
   20538              :                  variable.  */
   20539           32 :               st = gfc_get_unique_symtree (ns);
   20540           32 :               st->n.sym = s;
   20541           32 :               s->refs++;
   20542           32 :             }
   20543              :           /* ... which is use associated and called.  */
   20544           31 :           else if (s->attr.use_assoc || s->attr.used_in_submodule
   20545            0 :                         ||
   20546              :                   /* External function matched with an interface.  */
   20547            0 :                   (s->ns->proc_name
   20548            0 :                    && ((s->ns == ns
   20549            0 :                          && s->ns->proc_name->attr.if_source == IFSRC_DECL)
   20550            0 :                        || s->ns->proc_name->attr.if_source == IFSRC_IFBODY)
   20551            0 :                    && s->ns->proc_name->attr.function))
   20552           31 :             s->fn_result_spec = 1;
   20553              :         }
   20554              :     }
   20555              :   return false;
   20556              : }
   20557              : 
   20558              : 
   20559              : /* Resolve function and ENTRY types, issue diagnostics if needed.  */
   20560              : 
   20561              : static void
   20562       362366 : resolve_fntype (gfc_namespace *ns)
   20563              : {
   20564       362366 :   gfc_entry_list *el;
   20565       362366 :   gfc_symbol *sym;
   20566              : 
   20567       362366 :   if (ns->proc_name == NULL || !ns->proc_name->attr.function)
   20568              :     return;
   20569              : 
   20570              :   /* If there are any entries, ns->proc_name is the entry master
   20571              :      synthetic symbol and ns->entries->sym actual FUNCTION symbol.  */
   20572       189573 :   if (ns->entries)
   20573          596 :     sym = ns->entries->sym;
   20574              :   else
   20575              :     sym = ns->proc_name;
   20576       189573 :   if (sym->result == sym
   20577       153885 :       && sym->ts.type == BT_UNKNOWN
   20578            6 :       && !gfc_set_default_type (sym, 0, NULL)
   20579       189577 :       && !sym->attr.untyped)
   20580              :     {
   20581            3 :       gfc_error ("Function %qs at %L has no IMPLICIT type",
   20582              :                  sym->name, &sym->declared_at);
   20583            3 :       sym->attr.untyped = 1;
   20584              :     }
   20585              : 
   20586        14040 :   if (sym->ts.type == BT_DERIVED && !sym->ts.u.derived->attr.use_assoc
   20587         1868 :       && !sym->attr.contained
   20588          299 :       && !gfc_check_symbol_access (sym->ts.u.derived)
   20589       189573 :       && gfc_check_symbol_access (sym))
   20590              :     {
   20591            0 :       gfc_notify_std (GFC_STD_F2003, "PUBLIC function %qs at "
   20592              :                       "%L of PRIVATE type %qs", sym->name,
   20593            0 :                       &sym->declared_at, sym->ts.u.derived->name);
   20594              :     }
   20595              : 
   20596       189573 :     if (ns->entries)
   20597         1253 :     for (el = ns->entries->next; el; el = el->next)
   20598              :       {
   20599          657 :         if (el->sym->result == el->sym
   20600          445 :             && el->sym->ts.type == BT_UNKNOWN
   20601            2 :             && !gfc_set_default_type (el->sym, 0, NULL)
   20602          659 :             && !el->sym->attr.untyped)
   20603              :           {
   20604            2 :             gfc_error ("ENTRY %qs at %L has no IMPLICIT type",
   20605              :                        el->sym->name, &el->sym->declared_at);
   20606            2 :             el->sym->attr.untyped = 1;
   20607              :           }
   20608              :       }
   20609              : 
   20610       189573 :   if (sym->ts.type == BT_CHARACTER
   20611         7086 :       && sym->ts.u.cl->length
   20612         1883 :       && sym->ts.u.cl->length->ts.type == BT_INTEGER)
   20613         1878 :     gfc_traverse_expr (sym->ts.u.cl->length, sym, flag_fn_result_spec, 0);
   20614              : }
   20615              : 
   20616              : 
   20617              : /* 12.3.2.1.1 Defined operators.  */
   20618              : 
   20619              : static bool
   20620          508 : check_uop_procedure (gfc_symbol *sym, locus where)
   20621              : {
   20622          508 :   gfc_formal_arglist *formal;
   20623              : 
   20624          508 :   if (!sym->attr.function)
   20625              :     {
   20626            4 :       gfc_error ("User operator procedure %qs at %L must be a FUNCTION",
   20627              :                  sym->name, &where);
   20628            4 :       return false;
   20629              :     }
   20630              : 
   20631          504 :   if (sym->ts.type == BT_CHARACTER
   20632           15 :       && !((sym->ts.u.cl && sym->ts.u.cl->length) || sym->ts.deferred)
   20633            2 :       && !(sym->result && ((sym->result->ts.u.cl
   20634            2 :            && sym->result->ts.u.cl->length) || sym->result->ts.deferred)))
   20635              :     {
   20636            2 :       gfc_error ("User operator procedure %qs at %L cannot be assumed "
   20637              :                  "character length", sym->name, &where);
   20638            2 :       return false;
   20639              :     }
   20640              : 
   20641          502 :   formal = gfc_sym_get_dummy_args (sym);
   20642          502 :   if (!formal || !formal->sym)
   20643              :     {
   20644            1 :       gfc_error ("User operator procedure %qs at %L must have at least "
   20645              :                  "one argument", sym->name, &where);
   20646            1 :       return false;
   20647              :     }
   20648              : 
   20649          501 :   if (formal->sym->attr.intent != INTENT_IN)
   20650              :     {
   20651            0 :       gfc_error ("First argument of operator interface at %L must be "
   20652              :                  "INTENT(IN)", &where);
   20653            0 :       return false;
   20654              :     }
   20655              : 
   20656          501 :   if (formal->sym->attr.optional)
   20657              :     {
   20658            0 :       gfc_error ("First argument of operator interface at %L cannot be "
   20659              :                  "optional", &where);
   20660            0 :       return false;
   20661              :     }
   20662              : 
   20663          501 :   formal = formal->next;
   20664          501 :   if (!formal || !formal->sym)
   20665              :     return true;
   20666              : 
   20667          297 :   if (formal->sym->attr.intent != INTENT_IN)
   20668              :     {
   20669            0 :       gfc_error ("Second argument of operator interface at %L must be "
   20670              :                  "INTENT(IN)", &where);
   20671            0 :       return false;
   20672              :     }
   20673              : 
   20674          297 :   if (formal->sym->attr.optional)
   20675              :     {
   20676            1 :       gfc_error ("Second argument of operator interface at %L cannot be "
   20677              :                  "optional", &where);
   20678            1 :       return false;
   20679              :     }
   20680              : 
   20681          296 :   if (formal->next)
   20682              :     {
   20683            2 :       gfc_error ("Operator interface at %L must have, at most, two "
   20684              :                  "arguments", &where);
   20685            2 :       return false;
   20686              :     }
   20687              : 
   20688              :   return true;
   20689              : }
   20690              : 
   20691              : static void
   20692       363172 : gfc_resolve_uops (gfc_symtree *symtree)
   20693              : {
   20694       363172 :   gfc_interface *itr;
   20695              : 
   20696       363172 :   if (symtree == NULL)
   20697              :     return;
   20698              : 
   20699          403 :   gfc_resolve_uops (symtree->left);
   20700          403 :   gfc_resolve_uops (symtree->right);
   20701              : 
   20702          798 :   for (itr = symtree->n.uop->op; itr; itr = itr->next)
   20703          395 :     check_uop_procedure (itr->sym, itr->sym->declared_at);
   20704              : }
   20705              : 
   20706              : /* Mark all lhs in assignment statement as used.  It is better to put this into
   20707              :    its own function rather than into the different switch cases in
   20708              :    gfc_resolve_code.  */
   20709              : 
   20710              : static void
   20711       700396 : mark_lhs_assignments_set (gfc_code *code)
   20712              : {
   20713              : 
   20714      1853519 :   for (; code; code = code->next)
   20715              :     {
   20716      1153123 :       gfc_expr *lvalue = code->expr1, *rvalue = code->expr2;
   20717              : 
   20718      1153123 :       if (lvalue == NULL || lvalue->symtree == NULL || rvalue == NULL)
   20719       852336 :         continue;
   20720              : 
   20721       300787 :       switch (code->op)
   20722              :         {
   20723       289083 :         case EXEC_ASSIGN:
   20724       289083 :           if (gfc_is_reallocatable_lhs (lvalue) && lvalue->rank == rvalue->rank)
   20725         8527 :             gfc_lvalue_allocated_at (lvalue->symtree->n.sym, &lvalue->where);
   20726              : 
   20727       299310 :           gcc_fallthrough();
   20728       299310 :         case EXEC_POINTER_ASSIGN:
   20729       299310 :           gfc_expr_set_at (lvalue, &rvalue->where, VALUE_VARDEF);
   20730              :         default:
   20731              :           break;
   20732              :         }
   20733              :     }
   20734       700396 : }
   20735              : 
   20736              : /* Examine all of the expressions associated with a program unit,
   20737              :    assign types to all intermediate expressions, make sure that all
   20738              :    assignments are to compatible types and figure out which names
   20739              :    refer to which functions or subroutines.  It doesn't check code
   20740              :    block, which is handled by gfc_resolve_code.  */
   20741              : 
   20742              : static void
   20743       364970 : resolve_types (gfc_namespace *ns)
   20744              : {
   20745       364970 :   gfc_namespace *n;
   20746       364970 :   gfc_charlen *cl;
   20747       364970 :   gfc_data *d;
   20748       364970 :   gfc_equiv *eq;
   20749       364970 :   gfc_namespace* old_ns = gfc_current_ns;
   20750       364970 :   bool recursive = ns->proc_name && ns->proc_name->attr.recursive;
   20751              : 
   20752       364970 :   if (ns->types_resolved)
   20753              :     return;
   20754              : 
   20755              :   /* Check that all IMPLICIT types are ok.  */
   20756       362367 :   if (!ns->seen_implicit_none)
   20757              :     {
   20758              :       unsigned letter;
   20759      9126595 :       for (letter = 0; letter != GFC_LETTERS; ++letter)
   20760      8788573 :         if (ns->set_flag[letter]
   20761      8788573 :             && !resolve_typespec_used (&ns->default_type[letter],
   20762              :                                        &ns->implicit_loc[letter], NULL))
   20763              :           return;
   20764              :     }
   20765              : 
   20766       362366 :   gfc_current_ns = ns;
   20767              : 
   20768       362366 :   resolve_entries (ns);
   20769              : 
   20770       362366 :   resolve_common_vars (&ns->blank_common, false);
   20771       362366 :   resolve_common_blocks (ns->common_root);
   20772              : 
   20773       362366 :   resolve_contained_functions (ns);
   20774              : 
   20775       362366 :   if (ns->proc_name && ns->proc_name->attr.flavor == FL_PROCEDURE
   20776       310820 :       && ns->proc_name->attr.if_source == IFSRC_IFBODY)
   20777       206397 :     gfc_resolve_formal_arglist (ns->proc_name);
   20778              : 
   20779       362366 :   gfc_traverse_ns (ns, resolve_bind_c_derived_types);
   20780              : 
   20781       457761 :   for (cl = ns->cl_list; cl; cl = cl->next)
   20782        95395 :     resolve_charlen (cl);
   20783              : 
   20784       362366 :   gfc_traverse_ns (ns, resolve_symbol);
   20785              : 
   20786       362366 :   resolve_fntype (ns);
   20787              : 
   20788       412089 :   for (n = ns->contained; n; n = n->sibling)
   20789              :     {
   20790              :       /* Exclude final wrappers with the test for the artificial attribute.  */
   20791        49723 :       if (gfc_pure (ns->proc_name)
   20792            5 :           && !gfc_pure (n->proc_name)
   20793        49723 :           && !n->proc_name->attr.artificial)
   20794            0 :         gfc_error ("Contained procedure %qs at %L of a PURE procedure must "
   20795              :                    "also be PURE", n->proc_name->name,
   20796              :                    &n->proc_name->declared_at);
   20797              : 
   20798        49723 :       resolve_types (n);
   20799              :     }
   20800              : 
   20801       362366 :   forall_flag = 0;
   20802       362366 :   gfc_do_concurrent_flag = 0;
   20803       362366 :   gfc_check_interfaces (ns);
   20804              : 
   20805       362366 :   gfc_traverse_ns (ns, resolve_values);
   20806              : 
   20807       362366 :   if (ns->save_all || (!flag_automatic && !recursive))
   20808          315 :     gfc_save_all (ns);
   20809              : 
   20810       362366 :   iter_stack = NULL;
   20811       364884 :   for (d = ns->data; d; d = d->next)
   20812         2518 :     resolve_data (d);
   20813              : 
   20814       362366 :   iter_stack = NULL;
   20815       362366 :   gfc_traverse_ns (ns, gfc_formalize_init_value);
   20816              : 
   20817       362366 :   gfc_traverse_ns (ns, gfc_verify_binding_labels);
   20818              : 
   20819       363931 :   for (eq = ns->equiv; eq; eq = eq->next)
   20820         1565 :     resolve_equivalence (eq);
   20821              : 
   20822              :   /* Warn about unused labels.  */
   20823       362366 :   if (warn_unused_label)
   20824         4816 :     warn_unused_fortran_label (ns->st_labels);
   20825              : 
   20826       362366 :   gfc_resolve_uops (ns->uop_root);
   20827              : 
   20828       362366 :   gfc_traverse_ns (ns, gfc_verify_DTIO_procedures);
   20829              : 
   20830       362366 :   gfc_resolve_omp_declare (ns);
   20831              : 
   20832       362366 :   gfc_resolve_omp_udrs (ns->omp_udr_root);
   20833              : 
   20834       362366 :   gfc_resolve_omp_udms (ns->omp_udm_root);
   20835              : 
   20836       362366 :   ns->types_resolved = 1;
   20837              : 
   20838       362366 :   gfc_current_ns = old_ns;
   20839              : }
   20840              : 
   20841              : 
   20842              : /* Call gfc_resolve_code recursively.  */
   20843              : 
   20844              : static void
   20845       365032 : resolve_codes (gfc_namespace *ns)
   20846              : {
   20847       365032 :   gfc_namespace *n;
   20848       365032 :   bitmap_obstack old_obstack;
   20849              : 
   20850       365032 :   if (ns->resolved == 1)
   20851        14717 :     return;
   20852              : 
   20853       400100 :   for (n = ns->contained; n; n = n->sibling)
   20854        49785 :     resolve_codes (n);
   20855              : 
   20856       350315 :   gfc_current_ns = ns;
   20857              : 
   20858              :   /* Don't clear 'cs_base' if this is the namespace of a BLOCK construct.  */
   20859       350315 :   if (!(ns->proc_name && ns->proc_name->attr.flavor == FL_LABEL))
   20860       337692 :     cs_base = NULL;
   20861              : 
   20862              :   /* Set to an out of range value.  */
   20863       350315 :   current_entry_id = -1;
   20864              : 
   20865       350315 :   old_obstack = labels_obstack;
   20866       350315 :   bitmap_obstack_initialize (&labels_obstack);
   20867              : 
   20868       350315 :   gfc_resolve_oacc_declare (ns);
   20869       350315 :   gfc_resolve_oacc_routines (ns);
   20870       350315 :   gfc_resolve_omp_local_vars (ns);
   20871       350315 :   if (ns->omp_allocate)
   20872           62 :     gfc_resolve_omp_allocate (ns, ns->omp_allocate);
   20873       350315 :   gfc_resolve_code (ns->code, ns);
   20874              : 
   20875       350314 :   bitmap_obstack_release (&labels_obstack);
   20876       350314 :   labels_obstack = old_obstack;
   20877              : }
   20878              : 
   20879              : /* Return true if the value of a variable can be considered used, either
   20880              :    through the value_used flag or because it is a suitable dummy argument.  */
   20881              : 
   20882              : static bool
   20883          453 : var_value_is_used (gfc_symbol *sym)
   20884              : {
   20885          453 :   if (sym->attr.value_used != VALUE_UNUSED)
   20886              :     return true;
   20887              : 
   20888          107 :   if (!sym->attr.dummy)
   20889              :     return false;
   20890              : 
   20891           90 :   if (sym->attr.value)
   20892              :     return false;
   20893              : 
   20894           90 :   switch (sym->attr.intent)
   20895              :     {
   20896              :     case INTENT_UNKNOWN:
   20897              :     case INTENT_INOUT:
   20898              :     case INTENT_OUT:
   20899              :       return true;
   20900              : 
   20901              :     case INTENT_IN:
   20902              :     default:
   20903              :       return false;
   20904              :     }
   20905              : }
   20906              : 
   20907              : /* Similar, see if the variable could have gotten its value from somewhere.  */
   20908              : 
   20909              : static bool
   20910         2381 : var_value_is_set (gfc_symbol *sym)
   20911              : {
   20912         2381 :   if (sym->attr.value_set != VALUE_UNSET)
   20913              :     return true;
   20914              : 
   20915         1684 :   if (sym->value)
   20916              :     return true;
   20917              : 
   20918         1669 :   if (sym->ts.type == BT_DERIVED
   20919         1669 :       && gfc_has_default_initializer (sym->ts.u.derived))
   20920              :     return true;
   20921              : 
   20922         1669 :   if (!sym->attr.dummy)
   20923              :     return false;
   20924              : 
   20925         1624 :   if (sym->attr.value)
   20926              :     return true;
   20927              : 
   20928         1591 :   if (sym->attr.intent == INTENT_OUT)
   20929            3 :     return false;
   20930              : 
   20931              :   return true;
   20932              : }
   20933              : 
   20934              : /* Callback function to catch set but never used variables.  */
   20935              : 
   20936              : static void
   20937        34278 : find_unused_vs_set (gfc_symbol *sym)
   20938              : {
   20939        34278 :   symbol_attribute *attr = &sym->attr;
   20940              : 
   20941        34278 :   if (attr->flavor != FL_VARIABLE)
   20942              :     return;
   20943              : 
   20944              :   /* Do not warn about anything too far out of the ordinary.  This might be
   20945              :      tightened later.  */
   20946         8605 :   if (attr->in_common || attr->in_equivalence || attr->artificial
   20947         8199 :       || attr->cray_pointer || attr->cray_pointee || attr->associate_var
   20948         8196 :       || attr->target || attr->fe_temp || attr->omp_declare_target
   20949         8193 :       || attr->omp_declare_target_link || attr->omp_declare_target_local
   20950         8184 :       || attr->omp_declare_target_indirect || attr->oacc_declare_create
   20951         8184 :       || attr->oacc_declare_copyin || attr->oacc_declare_deviceptr
   20952         8184 :       || attr->oacc_declare_device_resident || attr->oacc_declare_link
   20953         8184 :       || attr->result || attr->warning_emitted || attr->use_assoc
   20954         5645 :       || attr->volatile_ || attr->asynchronous || !attr->referenced)
   20955              :     return;
   20956              : 
   20957         2449 :   if (attr->host_assoc && attr->access != ACCESS_PRIVATE)
   20958              :     return;
   20959              : 
   20960              :   /* There is no allocation in sight, but the variable is used anyway.  This
   20961              :      might be hidden behind PRESENT, but issue a warning nonetheless.  If
   20962              :      people complain, we might want to make this to an extra option to be
   20963              :      included with -Wextra.  */
   20964              : 
   20965         2383 :   if (warn_undefined_vars && attr->allocatable && !attr->allocated
   20966         2435 :       && var_value_is_used (sym))
   20967              :     {
   20968            3 :       if (attr->dummy && attr->intent == INTENT_OUT)
   20969              :         {
   20970            0 :           gfc_warning (OPT_Wundefined_vars, "Unallocated INTENT(OUT) variable "
   20971              :                        "%qs referenced at %L", sym->name, &sym->other_loc);
   20972            0 :           attr->warning_emitted = 1;
   20973            0 :           return;
   20974              :         }
   20975              : 
   20976            3 :       if (!attr->dummy)
   20977              :         {
   20978            2 :           gfc_warning (OPT_Wundefined_vars, "Unallocated variable %qs "
   20979              :                        "referenced at %L", sym->name, &sym->other_loc);
   20980            2 :           attr->warning_emitted = 1;
   20981            2 :           return;
   20982              :         }
   20983              :     }
   20984              : 
   20985         2424 :   if (warn_undefined_vars && !var_value_is_set (sym))
   20986              :     {
   20987              :       /* Warn about variables which have been allocated and used, but never
   20988              :          set.  */
   20989           48 :       if (attr->allocated && sym->attr.value_used > VALUE_MAYBE_USED)
   20990              :         {
   20991            3 :           switch (sym->attr.value_used)
   20992              :             {
   20993            1 :             case VALUE_INTENT_IN:
   20994            1 :               gfc_warning (OPT_Wundefined_vars, "Allocated variable %qs passed "
   20995              :                            "undefined to INTENT(IN) argument at %L", sym->name,
   20996              :                            &sym->other_loc);
   20997            1 :               break;
   20998              : 
   20999            1 :             case VALUE_VALUE_ARG:
   21000            1 :               gfc_warning (OPT_Wundefined_vars, "Allocated variable %qs passed "
   21001              :                            "undefined to VALUE argument at %L", sym->name,
   21002              :                            &sym->other_loc);
   21003            1 :               break;
   21004            1 :             case VALUE_USED:
   21005            1 :               gfc_warning (OPT_Wundefined_vars, "Allocated undefined variable "
   21006              :                            "%qs used at %L", sym->name, &sym->other_loc);
   21007            1 :               break;
   21008            0 :             default:
   21009            0 :               gfc_internal_error ("Wrong value_set");
   21010            3 :               break;
   21011              :             }
   21012            3 :           attr->warning_emitted = 1;
   21013            3 :           return;
   21014              :         }
   21015              : 
   21016              :       /* Similar, when undefined variables are passed to INTENT(IN), VALUE
   21017              :          arguments or are used in general.  */
   21018              : 
   21019           45 :       if (attr->value_used == VALUE_INTENT_IN)
   21020              :         {
   21021            1 :           gfc_warning (OPT_Wundefined_vars, "Undefined variable %qs passed "
   21022              :                        "to INTENT(IN) argument at %L", sym->name, &sym->other_loc);
   21023            1 :           attr->warning_emitted = 1;
   21024            1 :           return;
   21025              :         }
   21026           44 :       else if (attr->value_used == VALUE_VALUE_ARG)
   21027              :         {
   21028            1 :           gfc_warning (OPT_Wundefined_vars, "Undefined variable %qs passed "
   21029              :                        "to VALUE argument at %L", sym->name, &sym->other_loc);
   21030            1 :           attr->warning_emitted = 1;
   21031            1 :           return;
   21032              :         }
   21033           43 :       else if (attr->value_used == VALUE_USED)
   21034              :         {
   21035            9 :           if (attr->dummy && attr->intent == INTENT_OUT)
   21036            1 :             gfc_warning (OPT_Wundefined_vars, "Undefined INTENT(OUT) variable %qs "
   21037              :                          "used at %L", sym->name, &sym->other_loc);
   21038              :           else
   21039            8 :             gfc_warning (OPT_Wundefined_vars, "Undefined variable %qs used at "
   21040              :                          "%L", sym->name, &sym->other_loc);
   21041              : 
   21042            9 :           attr->warning_emitted = 1;
   21043            9 :           return;
   21044              :         }
   21045              : 
   21046              :       /* PR 28004 - warn about INTENT(OUT) variables that are never set.  If
   21047              :          the variable or a component are allocatable, do not warn since this is
   21048              :          a frequent shortcut for deallocation.  */
   21049              : 
   21050           34 :       if (sym->attr.dummy && sym->attr.intent == INTENT_OUT
   21051            2 :           && !(attr->allocatable || attr->alloc_comp))
   21052              :         {
   21053            0 :           gfc_warning (OPT_Wundefined_vars, "INTENT(OUT) variable %qs  "
   21054              :                        "declared at %L is not assigned a value", sym->name,
   21055              :                        &sym->declared_at);
   21056            0 :           attr->warning_emitted = 1;
   21057            0 :           return;
   21058              :         }
   21059              :     }
   21060              : 
   21061              :   /* Warn for unused but defined variables.  */
   21062              : 
   21063         2410 :   if (warn_unused_but_set_variable)
   21064              :     {
   21065         2302 :       if (attr->value_set == VALUE_VARDEF && !var_value_is_used (sym))
   21066              :         {
   21067            7 :           gfc_warning (OPT_Wunused_but_set_variable_, "Variable %qs defined at "
   21068              :                        "%L but never used", sym->name, &sym->other_loc);
   21069            7 :           attr->warning_emitted = 1;
   21070            7 :           return;
   21071              :         }
   21072         2295 :       if (attr->allocatable && !var_value_is_used (sym))
   21073              :         {
   21074            2 :           if (attr->allocated == ALLOCATED_ALLOCATE_STMT)
   21075              :             {
   21076            1 :               gfc_warning (OPT_Wunused_but_set_variable_, "Variable %qs "
   21077              :                            "allocated at %L but never used", sym->name,
   21078              :                            &sym->extra_loc);
   21079            1 :               attr->warning_emitted = 1;
   21080            1 :               return;
   21081              :             }
   21082            1 :           else if (attr->allocated == ALLOCATED_ARG)
   21083              :             {
   21084            1 :               gfc_warning (OPT_Wunused_but_set_variable_, "Variable %qs maybe "
   21085              :                            "allocated as argument at %L but never used",
   21086              :                            sym->name, &sym->extra_loc);
   21087            1 :               attr->warning_emitted = 1;
   21088            1 :               return;
   21089              :             }
   21090              :         }
   21091              :     }
   21092              : 
   21093              :   /* -Wunused-intent-out and -Wunused-read are enabled with -Wextra, so
   21094              :      check for these conditions at the end.  If one of the warnings
   21095              :      with -Wall triggered, we do not want to issue a different warrning
   21096              :      for the same variable if the user supplies -Wall -Wextra instead
   21097              :      of only -Wall.  */
   21098              : 
   21099           39 :   if (warn_unused_intent_out && attr->value_set == VALUE_INTENT_OUT
   21100         2406 :       && !var_value_is_used (sym))
   21101              :     {
   21102            1 :       gfc_warning (OPT_Wunused_intent_out, "Variable %qs passed to "
   21103              :                    "INTENT(OUT) argument at %L but value never used",
   21104              :                    sym->name, &sym->other_loc);
   21105            1 :       attr->warning_emitted = 1;
   21106            1 :       return;
   21107              :     }
   21108              : 
   21109         2400 :   if (warn_unused_read && attr->value_set == VALUE_READ && !var_value_is_used (sym))
   21110              :     {
   21111            1 :       gfc_warning (OPT_Wunused_read, "Variable %qs read at %L but never "
   21112              :                    "used", sym->name, &sym->other_loc);
   21113            1 :       attr->warning_emitted = 1;
   21114            1 :       return;
   21115              :     }
   21116              : }
   21117              : 
   21118              : /* Run warn_unused_vs_set over a namespace recursively.  */
   21119              : 
   21120              : static void
   21121         4845 : warn_unused_vs_set (gfc_namespace *ns)
   21122              : {
   21123         4845 :   gfc_traverse_ns (ns, find_unused_vs_set);
   21124              : 
   21125         5368 :   for (gfc_namespace *n = ns->contained; n; n = n->sibling)
   21126          523 :     warn_unused_vs_set (n);
   21127         4845 : }
   21128              : 
   21129              : /* This function is called after a complete program unit has been compiled.
   21130              :    Its purpose is to examine all of the expressions associated with a program
   21131              :    unit, assign types to all intermediate expressions, make sure that all
   21132              :    assignments are to compatible types and figure out which names refer to
   21133              :    which functions or subroutines.  */
   21134              : 
   21135              : void
   21136       320166 : gfc_resolve (gfc_namespace *ns, gfc_association_list *a)
   21137              : {
   21138       320166 :   gfc_namespace *old_ns;
   21139       320166 :   code_stack *old_cs_base;
   21140       320166 :   struct gfc_omp_saved_state old_omp_state;
   21141              : 
   21142       320166 :   if (ns->resolved)
   21143         4919 :     return;
   21144              : 
   21145       315247 :   ns->resolved = -1;
   21146       315247 :   old_ns = gfc_current_ns;
   21147       315247 :   old_cs_base = cs_base;
   21148              : 
   21149              :   /* As gfc_resolve can be called during resolution of an OpenMP construct
   21150              :      body, we should clear any state associated to it, so that say NS's
   21151              :      DO loops are not interpreted as OpenMP loops.  */
   21152       315247 :   if (!ns->construct_entities)
   21153       302624 :     gfc_omp_save_and_clear_state (&old_omp_state);
   21154              : 
   21155       315247 :   resolve_types (ns);
   21156       315247 :   component_assignment_level = 0;
   21157       315247 :   resolve_codes (ns);
   21158       315246 :   mark_assoc_used (a);
   21159              : 
   21160       315246 :   if (warn_unused_but_set_variable || warn_unused_intent_out
   21161       310982 :       || warn_unused_read || warn_undefined_vars)
   21162              :     {
   21163         4346 :       int error_count;
   21164         4346 :       gfc_get_errors (NULL, &error_count);
   21165         4346 :       if (error_count == 0)
   21166         4322 :         warn_unused_vs_set (ns);
   21167              :     }
   21168              : 
   21169       315246 :   if (ns->omp_assumes)
   21170           14 :     gfc_resolve_omp_assumptions (ns->omp_assumes);
   21171              : 
   21172       315246 :   gfc_current_ns = old_ns;
   21173       315246 :   cs_base = old_cs_base;
   21174       315246 :   ns->resolved = 1;
   21175              : 
   21176       315246 :   gfc_run_passes (ns);
   21177              : 
   21178       315246 :   if (!ns->construct_entities)
   21179       302623 :     gfc_omp_restore_state (&old_omp_state);
   21180              : }
        

Generated by: LCOV version 2.4-beta

LCOV profile is generated on x86_64 machine using following configure options: configure --disable-bootstrap --enable-coverage=opt --enable-languages=c,c++,fortran,go,jit,lto,rust,m2 --enable-host-shared. GCC test suite is run with the built compiler.