LCOV - code coverage report
Current view: top level - gcc/fortran - module.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 93.4 % 4046 3779
Test Date: 2026-08-01 15:33:25 Functions: 99.3 % 152 151
Legend: Lines:     hit not hit

            Line data    Source code
       1              : /* Handle modules, which amounts to loading and saving symbols and
       2              :    their attendant structures.
       3              :    Copyright (C) 2000-2026 Free Software Foundation, Inc.
       4              :    Contributed by Andy Vaught
       5              : 
       6              : This file is part of GCC.
       7              : 
       8              : GCC is free software; you can redistribute it and/or modify it under
       9              : the terms of the GNU General Public License as published by the Free
      10              : Software Foundation; either version 3, or (at your option) any later
      11              : version.
      12              : 
      13              : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
      14              : WARRANTY; without even the implied warranty of MERCHANTABILITY or
      15              : FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      16              : for more details.
      17              : 
      18              : You should have received a copy of the GNU General Public License
      19              : along with GCC; see the file COPYING3.  If not see
      20              : <http://www.gnu.org/licenses/>.  */
      21              : 
      22              : /* The syntax of gfortran modules resembles that of lisp lists, i.e. a
      23              :    sequence of atoms, which can be left or right parenthesis, names,
      24              :    integers or strings.  Parenthesis are always matched which allows
      25              :    us to skip over sections at high speed without having to know
      26              :    anything about the internal structure of the lists.  A "name" is
      27              :    usually a fortran 95 identifier, but can also start with '@' in
      28              :    order to reference a hidden symbol.
      29              : 
      30              :    The first line of a module is an informational message about what
      31              :    created the module, the file it came from and when it was created.
      32              :    The second line is a warning for people not to edit the module.
      33              :    The rest of the module looks like:
      34              : 
      35              :    ( ( <Interface info for UPLUS> )
      36              :      ( <Interface info for UMINUS> )
      37              :      ...
      38              :    )
      39              :    ( ( <name of operator interface> <module of op interface> <i/f1> ... )
      40              :      ...
      41              :    )
      42              :    ( ( <name of generic interface> <module of generic interface> <i/f1> ... )
      43              :      ...
      44              :    )
      45              :    ( ( <common name> <symbol> <saved flag>)
      46              :      ...
      47              :    )
      48              : 
      49              :    ( equivalence list )
      50              : 
      51              :    ( <Symbol Number (in no particular order)>
      52              :      <True name of symbol>
      53              :      <Module name of symbol>
      54              :      ( <symbol information> )
      55              :      ...
      56              :    )
      57              :    ( <Symtree name>
      58              :      <Ambiguous flag>
      59              :      <Symbol number>
      60              :      ...
      61              :    )
      62              : 
      63              :    In general, symbols refer to other symbols by their symbol number,
      64              :    which are zero based.  Symbols are written to the module in no
      65              :    particular order.  */
      66              : 
      67              : #include "config.h"
      68              : #include "system.h"
      69              : #include "coretypes.h"
      70              : #include "options.h"
      71              : #include "tree.h"
      72              : #include "gfortran.h"
      73              : #include "stringpool.h"
      74              : #include "arith.h"
      75              : #include "match.h"
      76              : #include "parse.h" /* FIXME */
      77              : #include "constructor.h"
      78              : #include "cpp.h"
      79              : #include "diagnostic-core.h"
      80              : #include "scanner.h"
      81              : #include <zlib.h>
      82              : 
      83              : #define MODULE_EXTENSION ".mod"
      84              : #define SUBMODULE_EXTENSION ".smod"
      85              : 
      86              : /* Don't put any single quote (') in MOD_VERSION, if you want it to be
      87              :    recognized.  */
      88              : #define MOD_VERSION "16"
      89              : #define MOD_VERSION_NUMERIC 16
      90              : /* Older mod versions we can still parse.  */
      91              : #define COMPAT_MOD_VERSIONS { "15" }
      92              : 
      93              : 
      94              : /* Structure that describes a position within a module file.  */
      95              : 
      96              : typedef struct
      97              : {
      98              :   int column, line;
      99              :   long pos;
     100              : }
     101              : module_locus;
     102              : 
     103              : /* Structure for list of symbols of intrinsic modules.  */
     104              : typedef struct
     105              : {
     106              :   int id;
     107              :   const char *name;
     108              :   int value;
     109              :   int standard;
     110              : }
     111              : intmod_sym;
     112              : 
     113              : 
     114              : typedef enum
     115              : {
     116              :   P_UNKNOWN = 0, P_OTHER, P_NAMESPACE, P_COMPONENT, P_SYMBOL
     117              : }
     118              : pointer_t;
     119              : 
     120              : /* The fixup structure lists pointers to pointers that have to
     121              :    be updated when a pointer value becomes known.  */
     122              : 
     123              : typedef struct fixup_t
     124              : {
     125              :   void **pointer;
     126              :   struct fixup_t *next;
     127              : }
     128              : fixup_t;
     129              : 
     130              : 
     131              : /* Structure for holding extra info needed for pointers being read.  */
     132              : 
     133              : enum gfc_rsym_state
     134              : {
     135              :   UNUSED,
     136              :   NEEDED,
     137              :   USED
     138              : };
     139              : 
     140              : enum gfc_wsym_state
     141              : {
     142              :   UNREFERENCED = 0,
     143              :   NEEDS_WRITE,
     144              :   WRITTEN
     145              : };
     146              : 
     147              : typedef struct pointer_info
     148              : {
     149              :   BBT_HEADER (pointer_info);
     150              :   HOST_WIDE_INT integer;
     151              :   pointer_t type;
     152              : 
     153              :   /* The first component of each member of the union is the pointer
     154              :      being stored.  */
     155              : 
     156              :   fixup_t *fixup;
     157              : 
     158              :   union
     159              :   {
     160              :     void *pointer;      /* Member for doing pointer searches.  */
     161              : 
     162              :     struct
     163              :     {
     164              :       gfc_symbol *sym;
     165              :       char *true_name, *module, *binding_label;
     166              :       fixup_t *stfixup;
     167              :       gfc_symtree *symtree;
     168              :       enum gfc_rsym_state state;
     169              :       int ns, referenced, renamed;
     170              :       module_locus where;
     171              :     }
     172              :     rsym;
     173              : 
     174              :     struct
     175              :     {
     176              :       gfc_symbol *sym;
     177              :       enum gfc_wsym_state state;
     178              :     }
     179              :     wsym;
     180              :   }
     181              :   u;
     182              : 
     183              : }
     184              : pointer_info;
     185              : 
     186              : #define gfc_get_pointer_info() XCNEW (pointer_info)
     187              : 
     188              : 
     189              : /* Local variables */
     190              : 
     191              : /* The gzFile for the module we're reading or writing.  */
     192              : static gzFile module_fp;
     193              : 
     194              : /* Fully qualified module path */
     195              : static char *module_fullpath = NULL;
     196              : 
     197              : /* The name of the module we're reading (USE'ing) or writing.  */
     198              : static const char *module_name;
     199              : /* The name of the .smod file that the submodule will write to.  */
     200              : static const char *submodule_name;
     201              : 
     202              : /* The list of use statements to apply to the current namespace
     203              :    before parsing the non-use statements.  */
     204              : static gfc_use_list *module_list;
     205              : /* The end of the MODULE_LIST list above at the time the recognition
     206              :    of the current statement started.  */
     207              : static gfc_use_list **old_module_list_tail;
     208              : 
     209              : /* If we're reading an intrinsic module, this is its ID.  */
     210              : static intmod_id current_intmod;
     211              : 
     212              : /* Content of module.  */
     213              : static char* module_content;
     214              : 
     215              : static long module_pos;
     216              : static int module_line, module_column, only_flag;
     217              : static int prev_module_line, prev_module_column;
     218              : 
     219              : static enum
     220              : { IO_INPUT, IO_OUTPUT }
     221              : iomode;
     222              : 
     223              : static gfc_use_rename *gfc_rename_list;
     224              : static pointer_info *pi_root;
     225              : static int symbol_number;       /* Counter for assigning symbol numbers */
     226              : 
     227              : /* Tells mio_expr_ref to make symbols for unused equivalence members.  */
     228              : static bool in_load_equiv;
     229              : 
     230              : 
     231              : 
     232              : /*****************************************************************/
     233              : 
     234              : /* Pointer/integer conversion.  Pointers between structures are stored
     235              :    as integers in the module file.  The next couple of subroutines
     236              :    handle this translation for reading and writing.  */
     237              : 
     238              : /* Recursively free the tree of pointer structures.  */
     239              : 
     240              : static void
     241      4304057 : free_pi_tree (pointer_info *p)
     242              : {
     243      4304057 :   if (p == NULL)
     244              :     return;
     245              : 
     246      2140187 :   if (p->fixup != NULL)
     247            0 :     gfc_internal_error ("free_pi_tree(): Unresolved fixup");
     248              : 
     249      2140187 :   free_pi_tree (p->left);
     250      2140187 :   free_pi_tree (p->right);
     251              : 
     252      2140187 :   if (iomode == IO_INPUT)
     253              :     {
     254      1726775 :       XDELETEVEC (p->u.rsym.true_name);
     255      1726775 :       XDELETEVEC (p->u.rsym.module);
     256      1726775 :       XDELETEVEC (p->u.rsym.binding_label);
     257              :     }
     258              : 
     259      2140187 :   free (p);
     260              : }
     261              : 
     262              : 
     263              : /* Compare pointers when searching by pointer.  Used when writing a
     264              :    module.  */
     265              : 
     266              : static int
     267      2404978 : compare_pointers (void *_sn1, void *_sn2)
     268              : {
     269      2404978 :   pointer_info *sn1, *sn2;
     270              : 
     271      2404978 :   sn1 = (pointer_info *) _sn1;
     272      2404978 :   sn2 = (pointer_info *) _sn2;
     273              : 
     274      2404978 :   if (sn1->u.pointer < sn2->u.pointer)
     275              :     return -1;
     276      1414800 :   if (sn1->u.pointer > sn2->u.pointer)
     277      1414800 :     return 1;
     278              : 
     279              :   return 0;
     280              : }
     281              : 
     282              : 
     283              : /* Compare integers when searching by integer.  Used when reading a
     284              :    module.  */
     285              : 
     286              : static int
     287     81227993 : compare_integers (void *_sn1, void *_sn2)
     288              : {
     289     81227993 :   pointer_info *sn1, *sn2;
     290              : 
     291     81227993 :   sn1 = (pointer_info *) _sn1;
     292     81227993 :   sn2 = (pointer_info *) _sn2;
     293              : 
     294     13336846 :   if (sn1->integer < sn2->integer)
     295              :     return -1;
     296     37594772 :   if (sn1->integer > sn2->integer)
     297      9064135 :     return 1;
     298              : 
     299              :   return 0;
     300              : }
     301              : 
     302              : 
     303              : /* Initialize the pointer_info tree.  */
     304              : 
     305              : static void
     306        23683 : init_pi_tree (void)
     307              : {
     308        23683 :   compare_fn compare;
     309        23683 :   pointer_info *p;
     310              : 
     311        23683 :   pi_root = NULL;
     312        23683 :   compare = (iomode == IO_INPUT) ? compare_integers : compare_pointers;
     313              : 
     314              :   /* Pointer 0 is the NULL pointer.  */
     315        23683 :   p = gfc_get_pointer_info ();
     316        23683 :   p->u.pointer = NULL;
     317        23683 :   p->integer = 0;
     318        23683 :   p->type = P_OTHER;
     319              : 
     320        23683 :   gfc_insert_bbt (&pi_root, p, compare);
     321              : 
     322              :   /* Pointer 1 is the current namespace.  */
     323        23683 :   p = gfc_get_pointer_info ();
     324        23683 :   p->u.pointer = gfc_current_ns;
     325        23683 :   p->integer = 1;
     326        23683 :   p->type = P_NAMESPACE;
     327              : 
     328        23683 :   gfc_insert_bbt (&pi_root, p, compare);
     329              : 
     330        23683 :   symbol_number = 2;
     331        23683 : }
     332              : 
     333              : 
     334              : /* During module writing, call here with a pointer to something,
     335              :    returning the pointer_info node.  */
     336              : 
     337              : static pointer_info *
     338      2016856 : find_pointer (void *gp)
     339              : {
     340      2016856 :   pointer_info *p;
     341              : 
     342      2016856 :   p = pi_root;
     343     10645432 :   while (p != NULL)
     344              :     {
     345     10251970 :       if (p->u.pointer == gp)
     346              :         break;
     347      8628576 :       p = (gp < p->u.pointer) ? p->left : p->right;
     348              :     }
     349              : 
     350      2016856 :   return p;
     351              : }
     352              : 
     353              : 
     354              : /* Given a pointer while writing, returns the pointer_info tree node,
     355              :    creating it if it doesn't exist.  */
     356              : 
     357              : static pointer_info *
     358      1889570 : get_pointer (void *gp)
     359              : {
     360      1889570 :   pointer_info *p;
     361              : 
     362      1889570 :   p = find_pointer (gp);
     363      1889570 :   if (p != NULL)
     364              :     return p;
     365              : 
     366              :   /* Pointer doesn't have an integer.  Give it one.  */
     367       393462 :   p = gfc_get_pointer_info ();
     368              : 
     369       393462 :   p->u.pointer = gp;
     370       393462 :   p->integer = symbol_number++;
     371              : 
     372       393462 :   gfc_insert_bbt (&pi_root, p, compare_pointers);
     373              : 
     374       393462 :   return p;
     375              : }
     376              : 
     377              : 
     378              : /* Given an integer during reading, find it in the pointer_info tree,
     379              :    creating the node if not found.  */
     380              : 
     381              : static pointer_info *
     382      8913495 : get_integer (HOST_WIDE_INT integer)
     383              : {
     384      8913495 :   pointer_info *p, t;
     385      8913495 :   int c;
     386              : 
     387      8913495 :   t.integer = integer;
     388              : 
     389      8913495 :   p = pi_root;
     390     69590506 :   while (p != NULL)
     391              :     {
     392     67891147 :       c = compare_integers (&t, p);
     393              :       if (c == 0)
     394              :         break;
     395              : 
     396     60677011 :       p = (c < 0) ? p->left : p->right;
     397              :     }
     398              : 
     399      8913495 :   if (p != NULL)
     400              :     return p;
     401              : 
     402      1699359 :   p = gfc_get_pointer_info ();
     403      1699359 :   p->integer = integer;
     404      1699359 :   p->u.pointer = NULL;
     405              : 
     406      1699359 :   gfc_insert_bbt (&pi_root, p, compare_integers);
     407              : 
     408      1699359 :   return p;
     409              : }
     410              : 
     411              : 
     412              : /* Resolve any fixups using a known pointer.  */
     413              : 
     414              : static void
     415      1743148 : resolve_fixups (fixup_t *f, void *gp)
     416              : {
     417      1743148 :   fixup_t *next;
     418              : 
     419      2632341 :   for (; f; f = next)
     420              :     {
     421       889193 :       next = f->next;
     422       889193 :       *(f->pointer) = gp;
     423       889193 :       free (f);
     424              :     }
     425      1743148 : }
     426              : 
     427              : 
     428              : /* Convert a string such that it starts with a lower-case character. Used
     429              :    to convert the symtree name of a derived-type to the symbol name or to
     430              :    the name of the associated generic function.  */
     431              : 
     432              : const char *
     433      1094700 : gfc_dt_lower_string (const char *name)
     434              : {
     435      1094700 :   if (name[0] != (char) TOLOWER ((unsigned char) name[0]))
     436        63807 :     return gfc_get_string ("%c%s", (char) TOLOWER ((unsigned char) name[0]),
     437        63807 :                            &name[1]);
     438      1030893 :   return gfc_get_string ("%s", name);
     439              : }
     440              : 
     441              : 
     442              : /* Convert a string such that it starts with an upper-case character. Used to
     443              :    return the symtree-name for a derived type; the symbol name itself and the
     444              :    symtree/symbol name of the associated generic function start with a lower-
     445              :    case character.  */
     446              : 
     447              : const char *
     448      1521565 : gfc_dt_upper_string (const char *name)
     449              : {
     450      1521565 :   if (name[0] != (char) TOUPPER ((unsigned char) name[0]))
     451      1496260 :     return gfc_get_string ("%c%s", (char) TOUPPER ((unsigned char) name[0]),
     452      1496260 :                            &name[1]);
     453        25305 :   return gfc_get_string ("%s", name);
     454              : }
     455              : 
     456              : /* Call here during module reading when we know what pointer to
     457              :    associate with an integer.  Any fixups that exist are resolved at
     458              :    this time.  */
     459              : 
     460              : static void
     461      1062546 : associate_integer_pointer (pointer_info *p, void *gp)
     462              : {
     463      1062546 :   if (p->u.pointer != NULL)
     464            0 :     gfc_internal_error ("associate_integer_pointer(): Already associated");
     465              : 
     466      1062546 :   p->u.pointer = gp;
     467              : 
     468      1062546 :   resolve_fixups (p->fixup, gp);
     469              : 
     470      1062546 :   p->fixup = NULL;
     471      1062546 : }
     472              : 
     473              : 
     474              : /* During module reading, given an integer and a pointer to a pointer,
     475              :    either store the pointer from an already-known value or create a
     476              :    fixup structure in order to store things later.  Returns zero if
     477              :    the reference has been actually stored, or nonzero if the reference
     478              :    must be fixed later (i.e., associate_integer_pointer must be called
     479              :    sometime later.  Returns the pointer_info structure.  */
     480              : 
     481              : static pointer_info *
     482      5567711 : add_fixup (HOST_WIDE_INT integer, void *gp)
     483              : {
     484      5567711 :   pointer_info *p;
     485      5567711 :   fixup_t *f;
     486      5567711 :   char **cp;
     487              : 
     488      5567711 :   p = get_integer (integer);
     489              : 
     490      5567711 :   if (p->integer == 0 || p->u.pointer != NULL)
     491              :     {
     492      4689924 :       cp = (char **) gp;
     493      4689924 :       *cp = (char *) p->u.pointer;
     494              :     }
     495              :   else
     496              :     {
     497       877787 :       f = XCNEW (fixup_t);
     498              : 
     499       877787 :       f->next = p->fixup;
     500       877787 :       p->fixup = f;
     501              : 
     502       877787 :       f->pointer = (void **) gp;
     503              :     }
     504              : 
     505      5567711 :   return p;
     506              : }
     507              : 
     508              : 
     509              : /*****************************************************************/
     510              : 
     511              : /* Parser related subroutines */
     512              : 
     513              : /* Free the rename list left behind by a USE statement.  */
     514              : 
     515              : static void
     516        92890 : free_rename (gfc_use_rename *list)
     517              : {
     518        92890 :   gfc_use_rename *next;
     519              : 
     520       103624 :   for (; list; list = next)
     521              :     {
     522        10734 :       next = list->next;
     523        10734 :       free (list);
     524              :     }
     525            0 : }
     526              : 
     527              : 
     528              : /* Match a USE statement.  */
     529              : 
     530              : match
     531        24222 : gfc_match_use (void)
     532              : {
     533        24222 :   char name[GFC_MAX_SYMBOL_LEN + 1], module_nature[GFC_MAX_SYMBOL_LEN + 1];
     534        24222 :   gfc_use_rename *tail = NULL, *new_use;
     535        24222 :   interface_type type, type2;
     536        24222 :   gfc_intrinsic_op op;
     537        24222 :   match m;
     538        24222 :   gfc_use_list *use_list;
     539        24222 :   gfc_symtree *st;
     540        24222 :   locus loc;
     541              : 
     542        24222 :   use_list = gfc_get_use_list ();
     543              : 
     544        24222 :   if (gfc_match (" , ") == MATCH_YES)
     545              :     {
     546         3984 :       if ((m = gfc_match (" %n ::", module_nature)) == MATCH_YES)
     547              :         {
     548         3982 :           if (!gfc_notify_std (GFC_STD_F2003, "module "
     549              :                                "nature in USE statement at %C"))
     550            0 :             goto cleanup;
     551              : 
     552         3982 :           if (strcmp (module_nature, "intrinsic") == 0)
     553         3968 :             use_list->intrinsic = true;
     554              :           else
     555              :             {
     556           14 :               if (strcmp (module_nature, "non_intrinsic") == 0)
     557           13 :                 use_list->non_intrinsic = true;
     558              :               else
     559              :                 {
     560            1 :                   gfc_error ("Module nature in USE statement at %C shall "
     561              :                              "be either INTRINSIC or NON_INTRINSIC");
     562            1 :                   goto cleanup;
     563              :                 }
     564              :             }
     565              :         }
     566              :       else
     567              :         {
     568              :           /* Help output a better error message than "Unclassifiable
     569              :              statement".  */
     570            2 :           gfc_match (" %n", module_nature);
     571            2 :           if (strcmp (module_nature, "intrinsic") == 0
     572            1 :               || strcmp (module_nature, "non_intrinsic") == 0)
     573            2 :             gfc_error ("\"::\" was expected after module nature at %C "
     574              :                        "but was not found");
     575            2 :           free (use_list);
     576            2 :           return m;
     577              :         }
     578              :     }
     579              :   else
     580              :     {
     581        20238 :       m = gfc_match (" ::");
     582        20570 :       if (m == MATCH_YES &&
     583          332 :           !gfc_notify_std(GFC_STD_F2003, "\"USE :: module\" at %C"))
     584            0 :         goto cleanup;
     585              : 
     586        20238 :       if (m != MATCH_YES)
     587              :         {
     588        19906 :           m = gfc_match ("% ");
     589        19906 :           if (m != MATCH_YES)
     590              :             {
     591           17 :               free (use_list);
     592           17 :               return m;
     593              :             }
     594              :         }
     595              :     }
     596              : 
     597        24202 :   use_list->where = gfc_current_locus;
     598              : 
     599        24202 :   m = gfc_match_name (name);
     600        24202 :   if (m != MATCH_YES)
     601              :     {
     602           12 :       free (use_list);
     603           12 :       return m;
     604              :     }
     605              : 
     606        24190 :   use_list->module_name = gfc_get_string ("%s", name);
     607              : 
     608        24190 :   if (gfc_match_eos () == MATCH_YES)
     609        14992 :     goto done;
     610              : 
     611         9198 :   if (gfc_match_char (',') != MATCH_YES)
     612            0 :     goto syntax;
     613              : 
     614         9198 :   if (gfc_match (" only :") == MATCH_YES)
     615         8951 :     use_list->only_flag = true;
     616              : 
     617         9198 :   if (gfc_match_eos () == MATCH_YES)
     618            1 :     goto done;
     619              : 
     620        13696 :   for (;;)
     621              :     {
     622              :       /* Get a new rename struct and add it to the rename list.  */
     623        13696 :       new_use = gfc_get_use_rename ();
     624        13696 :       new_use->where = gfc_current_locus;
     625        13696 :       new_use->found = 0;
     626              : 
     627        13696 :       if (use_list->rename == NULL)
     628         9197 :         use_list->rename = new_use;
     629              :       else
     630         4499 :         tail->next = new_use;
     631        13696 :       tail = new_use;
     632              : 
     633              :       /* See what kind of interface we're dealing with.  Assume it is
     634              :          not an operator.  */
     635        13696 :       new_use->op = INTRINSIC_NONE;
     636        13696 :       if (gfc_match_generic_spec (&type, name, &op) == MATCH_ERROR)
     637            0 :         goto cleanup;
     638              : 
     639        13696 :       switch (type)
     640              :         {
     641            1 :         case INTERFACE_NAMELESS:
     642            1 :           gfc_error ("Missing generic specification in USE statement at %C");
     643            1 :           goto cleanup;
     644              : 
     645        13578 :         case INTERFACE_USER_OP:
     646        13578 :         case INTERFACE_GENERIC:
     647        13578 :         case INTERFACE_DTIO:
     648        13578 :           loc = gfc_current_locus;
     649              : 
     650        13578 :           m = gfc_match (" =>");
     651              : 
     652           80 :           if (type == INTERFACE_USER_OP && m == MATCH_YES
     653        13624 :               && (!gfc_notify_std(GFC_STD_F2003, "Renaming "
     654              :                                   "operators in USE statements at %C")))
     655            2 :             goto cleanup;
     656              : 
     657        13576 :           if (type == INTERFACE_USER_OP)
     658           78 :             new_use->op = INTRINSIC_USER;
     659              : 
     660        13576 :           if (use_list->only_flag)
     661              :             {
     662        13226 :               if (m != MATCH_YES)
     663        12891 :                 strcpy (new_use->use_name, name);
     664              :               else
     665              :                 {
     666          335 :                   strcpy (new_use->local_name, name);
     667          335 :                   m = gfc_match_generic_spec (&type2, new_use->use_name, &op);
     668          335 :                   if (type != type2)
     669            1 :                     goto syntax;
     670          334 :                   if (m == MATCH_NO)
     671            0 :                     goto syntax;
     672          334 :                   if (m == MATCH_ERROR)
     673            0 :                     goto cleanup;
     674              :                 }
     675              :             }
     676              :           else
     677              :             {
     678          350 :               if (m != MATCH_YES)
     679            0 :                 goto syntax;
     680          350 :               strcpy (new_use->local_name, name);
     681              : 
     682          350 :               m = gfc_match_generic_spec (&type2, new_use->use_name, &op);
     683          350 :               if (type != type2)
     684            2 :                 goto syntax;
     685          348 :               if (m == MATCH_NO)
     686            0 :                 goto syntax;
     687          348 :               if (m == MATCH_ERROR)
     688            0 :                 goto cleanup;
     689              :             }
     690              : 
     691        13573 :           st = gfc_find_symtree (gfc_current_ns->sym_root, name);
     692        13573 :           if (st && type != INTERFACE_USER_OP
     693           13 :               && (st->n.sym->module != use_list->module_name
     694            3 :                   || strcmp (st->n.sym->name, new_use->use_name) != 0))
     695              :             {
     696           10 :               if (m == MATCH_YES)
     697            7 :                 gfc_error ("Symbol %qs at %L conflicts with the rename symbol "
     698              :                            "at %L", name, &st->n.sym->declared_at, &loc);
     699              :               else
     700            3 :                 gfc_error ("Symbol %qs at %L conflicts with the symbol "
     701              :                            "at %L", name, &st->n.sym->declared_at, &loc);
     702           10 :               goto cleanup;
     703              :             }
     704              : 
     705        13563 :           if (strcmp (new_use->use_name, use_list->module_name) == 0
     706        13561 :               || strcmp (new_use->local_name, use_list->module_name) == 0)
     707              :             {
     708            3 :               gfc_error ("The name %qs at %C has already been used as "
     709              :                          "an external module name", use_list->module_name);
     710            3 :               goto cleanup;
     711              :             }
     712              :           break;
     713              : 
     714          117 :         case INTERFACE_INTRINSIC_OP:
     715          117 :           new_use->op = op;
     716          117 :           break;
     717              : 
     718            0 :         default:
     719            0 :           gcc_unreachable ();
     720              :         }
     721              : 
     722        13677 :       if (gfc_match_eos () == MATCH_YES)
     723              :         break;
     724         4501 :       if (gfc_match_char (',') != MATCH_YES)
     725            2 :         goto syntax;
     726              :     }
     727              : 
     728         9176 : done:
     729        24169 :   if (module_list)
     730              :     {
     731              :       gfc_use_list *last = module_list;
     732         4182 :       while (last->next)
     733              :         last = last->next;
     734         3342 :       last->next = use_list;
     735              :     }
     736              :   else
     737        20827 :     module_list = use_list;
     738              : 
     739              :   return MATCH_YES;
     740              : 
     741            5 : syntax:
     742            5 :   gfc_syntax_error (ST_USE);
     743              : 
     744           22 : cleanup:
     745           22 :   free_rename (use_list->rename);
     746           22 :   free (use_list);
     747           22 :   return MATCH_ERROR;
     748              : }
     749              : 
     750              : 
     751              : /* Match a SUBMODULE statement.
     752              : 
     753              :    According to F2008:11.2.3.2, "The submodule identifier is the
     754              :    ordered pair whose first element is the ancestor module name and
     755              :    whose second element is the submodule name. 'Submodule_name' is
     756              :    used for the submodule filename and uses '@' as a separator, whilst
     757              :    the name of the symbol for the module uses '.' as a separator.
     758              :    The reasons for these choices are:
     759              :    (i) To follow another leading brand in the submodule filenames;
     760              :    (ii) Since '.' is not particularly visible in the filenames; and
     761              :    (iii) The linker does not permit '@' in mnemonics.  */
     762              : 
     763              : match
     764          270 : gfc_match_submodule (void)
     765              : {
     766          270 :   match m;
     767          270 :   char name[GFC_MAX_SYMBOL_LEN + 1];
     768          270 :   gfc_use_list *use_list;
     769          270 :   bool seen_colon = false;
     770              : 
     771          270 :   if (!gfc_notify_std (GFC_STD_F2008, "SUBMODULE declaration at %C"))
     772              :     return MATCH_ERROR;
     773              : 
     774          269 :   if (gfc_current_state () != COMP_NONE)
     775              :     {
     776            3 :       gfc_error ("SUBMODULE declaration at %C cannot appear within "
     777              :                  "another scoping unit");
     778            3 :       return MATCH_ERROR;
     779              :     }
     780              : 
     781          266 :   gfc_new_block = NULL;
     782          266 :   gcc_assert (module_list == NULL);
     783              : 
     784          266 :   if (gfc_match_char ('(') != MATCH_YES)
     785            0 :     goto syntax;
     786              : 
     787          293 :   while (1)
     788              :     {
     789          293 :       m = gfc_match (" %n", name);
     790          293 :       if (m != MATCH_YES)
     791            0 :         goto syntax;
     792              : 
     793          293 :       use_list = gfc_get_use_list ();
     794          293 :       use_list->where = gfc_current_locus;
     795              : 
     796          293 :       if (module_list)
     797              :         {
     798              :           gfc_use_list *last = module_list;
     799           27 :           while (last->next)
     800              :             last = last->next;
     801           27 :           last->next = use_list;
     802           27 :           use_list->module_name
     803           27 :                 = gfc_get_string ("%s.%s", module_list->module_name, name);
     804           27 :           use_list->submodule_name
     805           27 :                 = gfc_get_string ("%s@%s", module_list->module_name, name);
     806              :         }
     807              :       else
     808              :         {
     809          266 :           module_list = use_list;
     810          266 :           use_list->module_name = gfc_get_string ("%s", name);
     811          266 :           use_list->submodule_name = use_list->module_name;
     812              :         }
     813              : 
     814          293 :       if (gfc_match_char (')') == MATCH_YES)
     815              :         break;
     816              : 
     817           56 :       if (gfc_match_char (':') != MATCH_YES
     818           28 :           || seen_colon)
     819            1 :         goto syntax;
     820              : 
     821              :       seen_colon = true;
     822              :     }
     823              : 
     824          265 :   m = gfc_match (" %s%t", &gfc_new_block);
     825          265 :   if (m != MATCH_YES)
     826            0 :     goto syntax;
     827              : 
     828          265 :   submodule_name = gfc_get_string ("%s@%s", module_list->module_name,
     829              :                                    gfc_new_block->name);
     830              : 
     831          265 :   gfc_new_block->name = gfc_get_string ("%s.%s",
     832              :                                         module_list->module_name,
     833              :                                         gfc_new_block->name);
     834              : 
     835          265 :   if (!gfc_add_flavor (&gfc_new_block->attr, FL_MODULE,
     836              :                        gfc_new_block->name, NULL))
     837              :     return MATCH_ERROR;
     838              : 
     839              :   /* Just retain the ultimate .(s)mod file for reading, since it
     840              :      contains all the information in its ancestors.  */
     841          265 :   use_list = module_list;
     842          291 :   for (; module_list->next; use_list = module_list)
     843              :     {
     844           26 :       module_list = use_list->next;
     845           26 :       free (use_list);
     846              :     }
     847              : 
     848              :   return MATCH_YES;
     849              : 
     850            1 : syntax:
     851            1 :   gfc_error ("Syntax error in SUBMODULE statement at %C");
     852            1 :   return MATCH_ERROR;
     853              : }
     854              : 
     855              : 
     856              : /* Given a name and a number, inst, return the inst name
     857              :    under which to load this symbol. Returns NULL if this
     858              :    symbol shouldn't be loaded. If inst is zero, returns
     859              :    the number of instances of this name. If interface is
     860              :    true, a user-defined operator is sought, otherwise only
     861              :    non-operators are sought.  */
     862              : 
     863              : static const char *
     864      1177849 : find_use_name_n (const char *name, int *inst, bool interface)
     865              : {
     866      1177849 :   gfc_use_rename *u;
     867      1177849 :   const char *low_name = NULL;
     868      1177849 :   int i;
     869              : 
     870              :   /* For derived types.  */
     871      1177849 :   if (name[0] != (char) TOLOWER ((unsigned char) name[0]))
     872        29202 :     low_name = gfc_dt_lower_string (name);
     873              : 
     874      1177849 :   i = 0;
     875      1321607 :   for (u = gfc_rename_list; u; u = u->next)
     876              :     {
     877       148079 :       if ((!low_name && strcmp (u->use_name, name) != 0)
     878         3632 :           || (low_name && strcmp (u->use_name, low_name) != 0)
     879         8683 :           || (u->op == INTRINSIC_USER && !interface)
     880         8681 :           || (u->op != INTRINSIC_USER &&  interface))
     881       139398 :         continue;
     882         8681 :       if (++i == *inst)
     883              :         break;
     884              :     }
     885              : 
     886      1177849 :   if (!*inst)
     887              :     {
     888       588853 :       *inst = i;
     889       588853 :       return NULL;
     890              :     }
     891              : 
     892       588996 :   if (u == NULL)
     893       640060 :     return only_flag ? NULL : name;
     894              : 
     895         4321 :   u->found = 1;
     896              : 
     897         4321 :   if (low_name)
     898              :     {
     899          720 :       if (u->local_name[0] == '\0')
     900              :         return name;
     901          108 :       return gfc_dt_upper_string (u->local_name);
     902              :     }
     903              : 
     904         3601 :   return (u->local_name[0] != '\0') ? u->local_name : name;
     905              : }
     906              : 
     907              : 
     908              : /* Given a name, return the name under which to load this symbol.
     909              :    Returns NULL if this symbol shouldn't be loaded.  */
     910              : 
     911              : static const char *
     912           86 : find_use_name (const char *name, bool interface)
     913              : {
     914           86 :   int i = 1;
     915           50 :   return find_use_name_n (name, &i, interface);
     916              : }
     917              : 
     918              : 
     919              : /* Given a real name, return the number of use names associated with it.  */
     920              : 
     921              : static int
     922       588853 : number_use_names (const char *name, bool interface)
     923              : {
     924       588853 :   int i = 0;
     925            0 :   find_use_name_n (name, &i, interface);
     926       588853 :   return i;
     927              : }
     928              : 
     929              : 
     930              : /* Try to find the operator in the current list.  */
     931              : 
     932              : static gfc_use_rename *
     933        70440 : find_use_operator (gfc_intrinsic_op op)
     934              : {
     935        70440 :   gfc_use_rename *u;
     936              : 
     937       173304 :   for (u = gfc_rename_list; u; u = u->next)
     938       103072 :     if (u->op == op)
     939              :       return u;
     940              : 
     941              :   return NULL;
     942              : }
     943              : 
     944              : 
     945              : /*****************************************************************/
     946              : 
     947              : /* The next couple of subroutines maintain a tree used to avoid a
     948              :    brute-force search for a combination of true name and module name.
     949              :    While symtree names, the name that a particular symbol is known by
     950              :    can changed with USE statements, we still have to keep track of the
     951              :    true names to generate the correct reference, and also avoid
     952              :    loading the same real symbol twice in a program unit.
     953              : 
     954              :    When we start reading, the true name tree is built and maintained
     955              :    as symbols are read.  The tree is searched as we load new symbols
     956              :    to see if it already exists someplace in the namespace.  */
     957              : 
     958              : typedef struct true_name
     959              : {
     960              :   BBT_HEADER (true_name);
     961              :   const char *name;
     962              :   gfc_symbol *sym;
     963              : }
     964              : true_name;
     965              : 
     966              : static true_name *true_name_root;
     967              : 
     968              : 
     969              : /* Compare two true_name structures.  */
     970              : 
     971              : static int
     972      3318837 : compare_true_names (void *_t1, void *_t2)
     973              : {
     974      3318837 :   true_name *t1, *t2;
     975      3318837 :   int c;
     976              : 
     977      3318837 :   t1 = (true_name *) _t1;
     978      3318837 :   t2 = (true_name *) _t2;
     979              : 
     980      3318837 :   c = ((t1->sym->module > t2->sym->module)
     981      3318837 :        - (t1->sym->module < t2->sym->module));
     982      3318837 :   if (c != 0)
     983              :     return c;
     984              : 
     985      1038867 :   return strcmp (t1->name, t2->name);
     986              : }
     987              : 
     988              : 
     989              : /* Given a true name, search the true name tree to see if it exists
     990              :    within the main namespace.  */
     991              : 
     992              : static gfc_symbol *
     993      1373929 : find_true_name (const char *name, const char *module)
     994              : {
     995      1373929 :   true_name t, *p;
     996      1373929 :   gfc_symbol sym;
     997      1373929 :   int c;
     998              : 
     999      1373929 :   t.name = gfc_get_string ("%s", name);
    1000      1373929 :   if (module != NULL)
    1001      1352695 :     sym.module = gfc_get_string ("%s", module);
    1002              :   else
    1003        21234 :     sym.module = NULL;
    1004      1373929 :   t.sym = &sym;
    1005              : 
    1006      1373929 :   p = true_name_root;
    1007      4224510 :   while (p != NULL)
    1008              :     {
    1009      2901196 :       c = compare_true_names ((void *) (&t), (void *) p);
    1010      2901196 :       if (c == 0)
    1011        50615 :         return p->sym;
    1012              : 
    1013      2850581 :       p = (c < 0) ? p->left : p->right;
    1014              :     }
    1015              : 
    1016              :   return NULL;
    1017              : }
    1018              : 
    1019              : 
    1020              : /* Given a gfc_symbol pointer that is not in the true name tree, add it.  */
    1021              : 
    1022              : static void
    1023       104127 : add_true_name (gfc_symbol *sym)
    1024              : {
    1025       104127 :   true_name *t;
    1026              : 
    1027       104127 :   t = XCNEW (true_name);
    1028       104127 :   t->sym = sym;
    1029       104127 :   if (gfc_fl_struct (sym->attr.flavor))
    1030         5742 :     t->name = gfc_dt_upper_string (sym->name);
    1031              :   else
    1032        98385 :     t->name = sym->name;
    1033              : 
    1034       104127 :   gfc_insert_bbt (&true_name_root, t, compare_true_names);
    1035       104127 : }
    1036              : 
    1037              : 
    1038              : /* Recursive function to build the initial true name tree by
    1039              :    recursively traversing the current namespace.  */
    1040              : 
    1041              : static void
    1042       223502 : build_tnt (gfc_symtree *st)
    1043              : {
    1044       223502 :   const char *name;
    1045       223502 :   if (st == NULL)
    1046              :     return;
    1047              : 
    1048       104897 :   build_tnt (st->left);
    1049       104897 :   build_tnt (st->right);
    1050              : 
    1051       104897 :   if (gfc_fl_struct (st->n.sym->attr.flavor))
    1052         6184 :     name = gfc_dt_upper_string (st->n.sym->name);
    1053              :   else
    1054        98713 :     name = st->n.sym->name;
    1055              : 
    1056       104897 :   if (find_true_name (name, st->n.sym->module) != NULL)
    1057              :     return;
    1058              : 
    1059       104127 :   add_true_name (st->n.sym);
    1060              : }
    1061              : 
    1062              : 
    1063              : /* Initialize the true name tree with the current namespace.  */
    1064              : 
    1065              : static void
    1066        13708 : init_true_name_tree (void)
    1067              : {
    1068        13708 :   true_name_root = NULL;
    1069        13708 :   build_tnt (gfc_current_ns->sym_root);
    1070        13708 : }
    1071              : 
    1072              : 
    1073              : /* Recursively free a true name tree node.  */
    1074              : 
    1075              : static void
    1076       221962 : free_true_name (true_name *t)
    1077              : {
    1078       221962 :   if (t == NULL)
    1079              :     return;
    1080       104127 :   free_true_name (t->left);
    1081       104127 :   free_true_name (t->right);
    1082              : 
    1083       104127 :   free (t);
    1084              : }
    1085              : 
    1086              : 
    1087              : /*****************************************************************/
    1088              : 
    1089              : /* Module reading and writing.  */
    1090              : 
    1091              : /* The following are versions similar to the ones in scanner.cc, but
    1092              :    for dealing with compressed module files.  */
    1093              : 
    1094              : static gzFile
    1095        10103 : gzopen_included_file_1 (const char *name, gfc_directorylist *list,
    1096              :                      bool module, bool system)
    1097              : {
    1098        10103 :   char *fullname;
    1099        10103 :   gfc_directorylist *p;
    1100        10103 :   gzFile f;
    1101              : 
    1102        35178 :   for (p = list; p; p = p->next)
    1103              :     {
    1104        27319 :       if (module && !p->use_for_modules)
    1105         4275 :        continue;
    1106              : 
    1107        23044 :       fullname = (char *) alloca(strlen (p->path) + strlen (name) + 2);
    1108        23044 :       strcpy (fullname, p->path);
    1109        23044 :       strcat (fullname, "/");
    1110        23044 :       strcat (fullname, name);
    1111              : 
    1112        23044 :       f = gzopen (fullname, "r");
    1113        23044 :       if (f != NULL)
    1114              :        {
    1115         2244 :          if (gfc_cpp_makedep ())
    1116            0 :            gfc_cpp_add_dep (fullname, system);
    1117              : 
    1118         2244 :          free (module_fullpath);
    1119         2244 :          module_fullpath = xstrdup (fullname);
    1120         2244 :          return f;
    1121              :        }
    1122              :     }
    1123              : 
    1124              :   return NULL;
    1125              : }
    1126              : 
    1127              : static gzFile
    1128        20330 : gzopen_included_file (const char *name, bool include_cwd, bool module)
    1129              : {
    1130        20330 :   gzFile f = NULL;
    1131              : 
    1132        20330 :   if (IS_ABSOLUTE_PATH (name) || include_cwd)
    1133              :     {
    1134        20330 :       f = gzopen (name, "r");
    1135        20330 :       if (f)
    1136              :         {
    1137        11464 :           if (gfc_cpp_makedep ())
    1138            0 :             gfc_cpp_add_dep (name, false);
    1139              : 
    1140        11464 :           free (module_fullpath);
    1141        11464 :           module_fullpath = xstrdup (name);
    1142              :         }
    1143              :     }
    1144              : 
    1145        11464 :   if (!f)
    1146         8866 :     f = gzopen_included_file_1 (name, include_dirs, module, false);
    1147              : 
    1148        20330 :   return f;
    1149              : }
    1150              : 
    1151              : static gzFile
    1152         1237 : gzopen_intrinsic_module (const char* name)
    1153              : {
    1154         1237 :   gzFile f = NULL;
    1155              : 
    1156         1237 :   if (IS_ABSOLUTE_PATH (name))
    1157              :     {
    1158            0 :       f = gzopen (name, "r");
    1159            0 :       if (f)
    1160              :         {
    1161            0 :           if (gfc_cpp_makedep ())
    1162            0 :             gfc_cpp_add_dep (name, true);
    1163              : 
    1164            0 :           free (module_fullpath);
    1165            0 :           module_fullpath = xstrdup (name);
    1166              :         }
    1167              :     }
    1168              : 
    1169            0 :   if (!f)
    1170         1237 :     f = gzopen_included_file_1 (name, intrinsic_modules_dirs, true, true);
    1171              : 
    1172         1237 :   return f;
    1173              : }
    1174              : 
    1175              : 
    1176              : enum atom_type
    1177              : {
    1178              :   ATOM_NAME, ATOM_LPAREN, ATOM_RPAREN, ATOM_INTEGER, ATOM_STRING
    1179              : };
    1180              : 
    1181              : static atom_type last_atom;
    1182              : 
    1183              : 
    1184              : /* The name buffer must be at least as long as a symbol name.  Right
    1185              :    now it's not clear how we're going to store numeric constants--
    1186              :    probably as a hexadecimal string, since this will allow the exact
    1187              :    number to be preserved (this can't be done by a decimal
    1188              :    representation).  Worry about that later.  TODO!  */
    1189              : 
    1190              : #define MAX_ATOM_SIZE 100
    1191              : 
    1192              : static HOST_WIDE_INT atom_int;
    1193              : static char *atom_string, atom_name[MAX_ATOM_SIZE];
    1194              : 
    1195              : 
    1196              : /* Report problems with a module.  Error reporting is not very
    1197              :    elaborate, since this sorts of errors shouldn't really happen.
    1198              :    This subroutine never returns.  */
    1199              : 
    1200              : static void bad_module (const char *) ATTRIBUTE_NORETURN;
    1201              : 
    1202              : static void
    1203            0 : bad_module (const char *msgid)
    1204              : {
    1205            0 :   XDELETEVEC (module_content);
    1206            0 :   module_content = NULL;
    1207              : 
    1208            0 :   switch (iomode)
    1209              :     {
    1210            0 :     case IO_INPUT:
    1211            0 :       gfc_fatal_error ("Reading module %qs at line %d column %d: %s",
    1212              :                        module_fullpath, module_line, module_column, msgid);
    1213            0 :       break;
    1214            0 :     case IO_OUTPUT:
    1215            0 :       gfc_fatal_error ("Writing module %qs at line %d column %d: %s",
    1216              :                        module_name, module_line, module_column, msgid);
    1217            0 :       break;
    1218            0 :     default:
    1219            0 :       gfc_fatal_error ("Module %qs at line %d column %d: %s",
    1220              :                        module_name, module_line, module_column, msgid);
    1221              :       break;
    1222              :     }
    1223              : }
    1224              : 
    1225              : 
    1226              : /* Set the module's input pointer.  */
    1227              : 
    1228              : static void
    1229      1118367 : set_module_locus (module_locus *m)
    1230              : {
    1231      1118367 :   module_column = m->column;
    1232      1118367 :   module_line = m->line;
    1233      1118367 :   module_pos = m->pos;
    1234            0 : }
    1235              : 
    1236              : 
    1237              : /* Get the module's input pointer so that we can restore it later.  */
    1238              : 
    1239              : static void
    1240      1323884 : get_module_locus (module_locus *m)
    1241              : {
    1242      1323884 :   m->column = module_column;
    1243      1323884 :   m->line = module_line;
    1244      1323884 :   m->pos = module_pos;
    1245            0 : }
    1246              : 
    1247              : /* Peek at the next character in the module.  */
    1248              : 
    1249              : static int
    1250          616 : module_peek_char (void)
    1251              : {
    1252          616 :   return module_content[module_pos];
    1253              : }
    1254              : 
    1255              : /* Get the next character in the module, updating our reckoning of
    1256              :    where we are.  */
    1257              : 
    1258              : static int
    1259    564751973 : module_char (void)
    1260              : {
    1261    564751973 :   const char c = module_content[module_pos++];
    1262    564751973 :   if (c == '\0')
    1263            0 :     bad_module ("Unexpected EOF");
    1264              : 
    1265    564751973 :   prev_module_line = module_line;
    1266    564751973 :   prev_module_column = module_column;
    1267              : 
    1268    564751973 :   if (c == '\n')
    1269              :     {
    1270     12114460 :       module_line++;
    1271     12114460 :       module_column = 0;
    1272              :     }
    1273              : 
    1274    564751973 :   module_column++;
    1275    564751973 :   return c;
    1276              : }
    1277              : 
    1278              : /* Unget a character while remembering the line and column.  Works for
    1279              :    a single character only.  */
    1280              : 
    1281              : static void
    1282     83363134 : module_unget_char (void)
    1283              : {
    1284     83363134 :   module_line = prev_module_line;
    1285     83363134 :   module_column = prev_module_column;
    1286     83363134 :   module_pos--;
    1287            0 : }
    1288              : 
    1289              : /* Parse a string constant.  The delimiter is guaranteed to be a
    1290              :    single quote.  */
    1291              : 
    1292              : static void
    1293      5744070 : parse_string (void)
    1294              : {
    1295      5744070 :   int c;
    1296      5744070 :   size_t cursz = 30;
    1297      5744070 :   size_t len = 0;
    1298              : 
    1299      5744070 :   atom_string = XNEWVEC (char, cursz);
    1300              : 
    1301     86833324 :   for ( ; ; )
    1302              :     {
    1303     46288697 :       c = module_char ();
    1304              : 
    1305     46288697 :       if (c == '\'')
    1306              :         {
    1307      5744070 :           int c2 = module_char ();
    1308      5744070 :           if (c2 != '\'')
    1309              :             {
    1310      5744070 :               module_unget_char ();
    1311      5744070 :               break;
    1312              :             }
    1313              :         }
    1314              : 
    1315     40544627 :       if (len >= cursz)
    1316              :         {
    1317        66296 :           cursz *= 2;
    1318        66296 :           atom_string = XRESIZEVEC (char, atom_string, cursz);
    1319              :         }
    1320     40544627 :       atom_string[len] = c;
    1321     40544627 :       len++;
    1322     40544627 :     }
    1323              : 
    1324      5744070 :   atom_string = XRESIZEVEC (char, atom_string, len + 1);
    1325      5744070 :   atom_string[len] = '\0';      /* C-style string for debug purposes.  */
    1326      5744070 : }
    1327              : 
    1328              : 
    1329              : /* Parse an integer. Should fit in a HOST_WIDE_INT.  */
    1330              : 
    1331              : static void
    1332     37292277 : parse_integer (int c)
    1333              : {
    1334     37292277 :   int sign = 1;
    1335              : 
    1336     37292277 :   atom_int = 0;
    1337     37292277 :   switch (c)
    1338              :     {
    1339              :     case ('-'):
    1340     37292277 :       sign = -1;
    1341              :     case ('+'):
    1342              :       break;
    1343     37291661 :     default:
    1344     37291661 :       atom_int = c - '0';
    1345     37291661 :       break;
    1346              :     }
    1347              : 
    1348     55694017 :   for (;;)
    1349              :     {
    1350     46493147 :       c = module_char ();
    1351     46493147 :       if (!ISDIGIT (c))
    1352              :         {
    1353     37292277 :           module_unget_char ();
    1354     37292277 :           break;
    1355              :         }
    1356              : 
    1357      9200870 :       atom_int = 10 * atom_int + c - '0';
    1358              :     }
    1359              : 
    1360     37292277 :   atom_int *= sign;
    1361     37292277 : }
    1362              : 
    1363              : 
    1364              : /* Parse a name.  */
    1365              : 
    1366              : static void
    1367     27099541 : parse_name (int c)
    1368              : {
    1369     27099541 :   char *p;
    1370     27099541 :   int len;
    1371              : 
    1372     27099541 :   p = atom_name;
    1373              : 
    1374     27099541 :   *p++ = c;
    1375     27099541 :   len = 1;
    1376              : 
    1377    231088959 :   for (;;)
    1378              :     {
    1379    231088959 :       c = module_char ();
    1380    231088959 :       if (!ISALNUM (c) && c != '_' && c != '-')
    1381              :         {
    1382     27099541 :           module_unget_char ();
    1383     27099541 :           break;
    1384              :         }
    1385              : 
    1386    203989418 :       *p++ = c;
    1387    203989418 :       if (++len > GFC_MAX_SYMBOL_LEN)
    1388            0 :         bad_module ("Name too long");
    1389              :     }
    1390              : 
    1391     27099541 :   *p = '\0';
    1392              : 
    1393     27099541 : }
    1394              : 
    1395              : 
    1396              : /* Read the next atom in the module's input stream.  */
    1397              : 
    1398              : static atom_type
    1399    131063986 : parse_atom (void)
    1400              : {
    1401    219014366 :   int c;
    1402              : 
    1403    219014366 :   do
    1404              :     {
    1405    219014366 :       c = module_char ();
    1406              :     }
    1407    219014366 :   while (c == ' ' || c == '\r' || c == '\n');
    1408              : 
    1409    131063986 :   switch (c)
    1410              :     {
    1411              :     case '(':
    1412              :       return ATOM_LPAREN;
    1413              : 
    1414     30477747 :     case ')':
    1415     30477747 :       return ATOM_RPAREN;
    1416              : 
    1417      5744070 :     case '\'':
    1418      5744070 :       parse_string ();
    1419      5744070 :       return ATOM_STRING;
    1420              : 
    1421     37291661 :     case '0':
    1422     37291661 :     case '1':
    1423     37291661 :     case '2':
    1424     37291661 :     case '3':
    1425     37291661 :     case '4':
    1426     37291661 :     case '5':
    1427     37291661 :     case '6':
    1428     37291661 :     case '7':
    1429     37291661 :     case '8':
    1430     37291661 :     case '9':
    1431     37291661 :       parse_integer (c);
    1432     37291661 :       return ATOM_INTEGER;
    1433              : 
    1434          616 :     case '+':
    1435          616 :     case '-':
    1436          616 :       if (ISDIGIT (module_peek_char ()))
    1437              :         {
    1438          616 :           parse_integer (c);
    1439          616 :           return ATOM_INTEGER;
    1440              :         }
    1441              :       else
    1442            0 :         bad_module ("Bad name");
    1443              : 
    1444     27058417 :     case 'a':
    1445     27058417 :     case 'b':
    1446     27058417 :     case 'c':
    1447     27058417 :     case 'd':
    1448     27058417 :     case 'e':
    1449     27058417 :     case 'f':
    1450     27058417 :     case 'g':
    1451     27058417 :     case 'h':
    1452     27058417 :     case 'i':
    1453     27058417 :     case 'j':
    1454     27058417 :     case 'k':
    1455     27058417 :     case 'l':
    1456     27058417 :     case 'm':
    1457     27058417 :     case 'n':
    1458     27058417 :     case 'o':
    1459     27058417 :     case 'p':
    1460     27058417 :     case 'q':
    1461     27058417 :     case 'r':
    1462     27058417 :     case 's':
    1463     27058417 :     case 't':
    1464     27058417 :     case 'u':
    1465     27058417 :     case 'v':
    1466     27058417 :     case 'w':
    1467     27058417 :     case 'x':
    1468     27058417 :     case 'y':
    1469     27058417 :     case 'z':
    1470     27058417 :     case 'A':
    1471     27058417 :     case 'B':
    1472     27058417 :     case 'C':
    1473     27058417 :     case 'D':
    1474     27058417 :     case 'E':
    1475     27058417 :     case 'F':
    1476     27058417 :     case 'G':
    1477     27058417 :     case 'H':
    1478     27058417 :     case 'I':
    1479     27058417 :     case 'J':
    1480     27058417 :     case 'K':
    1481     27058417 :     case 'L':
    1482     27058417 :     case 'M':
    1483     27058417 :     case 'N':
    1484     27058417 :     case 'O':
    1485     27058417 :     case 'P':
    1486     27058417 :     case 'Q':
    1487     27058417 :     case 'R':
    1488     27058417 :     case 'S':
    1489     27058417 :     case 'T':
    1490     27058417 :     case 'U':
    1491     27058417 :     case 'V':
    1492     27058417 :     case 'W':
    1493     27058417 :     case 'X':
    1494     27058417 :     case 'Y':
    1495     27058417 :     case 'Z':
    1496     27058417 :       parse_name (c);
    1497     27058417 :       return ATOM_NAME;
    1498              : 
    1499            0 :     default:
    1500            0 :       bad_module ("Bad name");
    1501              :     }
    1502              : 
    1503              :   /* Not reached.  */
    1504              : }
    1505              : 
    1506              : 
    1507              : /* Peek at the next atom on the input.  */
    1508              : 
    1509              : static atom_type
    1510     13227246 : peek_atom (void)
    1511              : {
    1512     15616470 :   int c;
    1513              : 
    1514     15616470 :   do
    1515              :     {
    1516     15616470 :       c = module_char ();
    1517              :     }
    1518     15616470 :   while (c == ' ' || c == '\r' || c == '\n');
    1519              : 
    1520     13227246 :   switch (c)
    1521              :     {
    1522       310577 :     case '(':
    1523       310577 :       module_unget_char ();
    1524       310577 :       return ATOM_LPAREN;
    1525              : 
    1526     10437918 :     case ')':
    1527     10437918 :       module_unget_char ();
    1528     10437918 :       return ATOM_RPAREN;
    1529              : 
    1530       528947 :     case '\'':
    1531       528947 :       module_unget_char ();
    1532       528947 :       return ATOM_STRING;
    1533              : 
    1534      1944686 :     case '0':
    1535      1944686 :     case '1':
    1536      1944686 :     case '2':
    1537      1944686 :     case '3':
    1538      1944686 :     case '4':
    1539      1944686 :     case '5':
    1540      1944686 :     case '6':
    1541      1944686 :     case '7':
    1542      1944686 :     case '8':
    1543      1944686 :     case '9':
    1544      1944686 :       module_unget_char ();
    1545      1944686 :       return ATOM_INTEGER;
    1546              : 
    1547            0 :     case '+':
    1548            0 :     case '-':
    1549            0 :       if (ISDIGIT (module_peek_char ()))
    1550              :         {
    1551            0 :           module_unget_char ();
    1552            0 :           return ATOM_INTEGER;
    1553              :         }
    1554              :       else
    1555            0 :         bad_module ("Bad name");
    1556              : 
    1557         5118 :     case 'a':
    1558         5118 :     case 'b':
    1559         5118 :     case 'c':
    1560         5118 :     case 'd':
    1561         5118 :     case 'e':
    1562         5118 :     case 'f':
    1563         5118 :     case 'g':
    1564         5118 :     case 'h':
    1565         5118 :     case 'i':
    1566         5118 :     case 'j':
    1567         5118 :     case 'k':
    1568         5118 :     case 'l':
    1569         5118 :     case 'm':
    1570         5118 :     case 'n':
    1571         5118 :     case 'o':
    1572         5118 :     case 'p':
    1573         5118 :     case 'q':
    1574         5118 :     case 'r':
    1575         5118 :     case 's':
    1576         5118 :     case 't':
    1577         5118 :     case 'u':
    1578         5118 :     case 'v':
    1579         5118 :     case 'w':
    1580         5118 :     case 'x':
    1581         5118 :     case 'y':
    1582         5118 :     case 'z':
    1583         5118 :     case 'A':
    1584         5118 :     case 'B':
    1585         5118 :     case 'C':
    1586         5118 :     case 'D':
    1587         5118 :     case 'E':
    1588         5118 :     case 'F':
    1589         5118 :     case 'G':
    1590         5118 :     case 'H':
    1591         5118 :     case 'I':
    1592         5118 :     case 'J':
    1593         5118 :     case 'K':
    1594         5118 :     case 'L':
    1595         5118 :     case 'M':
    1596         5118 :     case 'N':
    1597         5118 :     case 'O':
    1598         5118 :     case 'P':
    1599         5118 :     case 'Q':
    1600         5118 :     case 'R':
    1601         5118 :     case 'S':
    1602         5118 :     case 'T':
    1603         5118 :     case 'U':
    1604         5118 :     case 'V':
    1605         5118 :     case 'W':
    1606         5118 :     case 'X':
    1607         5118 :     case 'Y':
    1608         5118 :     case 'Z':
    1609         5118 :       module_unget_char ();
    1610         5118 :       return ATOM_NAME;
    1611              : 
    1612            0 :     default:
    1613            0 :       bad_module ("Bad name");
    1614              :     }
    1615              : }
    1616              : 
    1617              : 
    1618              : /* Read the next atom from the input, requiring that it be a
    1619              :    particular kind.  */
    1620              : 
    1621              : static void
    1622     59960885 : require_atom (atom_type type)
    1623              : {
    1624     59960885 :   atom_type t;
    1625     59960885 :   const char *p;
    1626     59960885 :   int column, line;
    1627              : 
    1628     59960885 :   column = module_column;
    1629     59960885 :   line = module_line;
    1630              : 
    1631     59960885 :   t = parse_atom ();
    1632     59960885 :   if (t != type)
    1633              :     {
    1634            0 :       switch (type)
    1635              :         {
    1636            0 :         case ATOM_NAME:
    1637            0 :           p = _("Expected name");
    1638            0 :           break;
    1639            0 :         case ATOM_LPAREN:
    1640            0 :           p = _("Expected left parenthesis");
    1641            0 :           break;
    1642            0 :         case ATOM_RPAREN:
    1643            0 :           p = _("Expected right parenthesis");
    1644            0 :           break;
    1645            0 :         case ATOM_INTEGER:
    1646            0 :           p = _("Expected integer");
    1647            0 :           break;
    1648            0 :         case ATOM_STRING:
    1649            0 :           p = _("Expected string");
    1650            0 :           break;
    1651            0 :         default:
    1652            0 :           gfc_internal_error ("require_atom(): bad atom type required");
    1653              :         }
    1654              : 
    1655            0 :       module_column = column;
    1656            0 :       module_line = line;
    1657            0 :       bad_module (p);
    1658              :     }
    1659     59960885 : }
    1660              : 
    1661              : 
    1662              : /* Given a pointer to an mstring array, require that the current input
    1663              :    be one of the strings in the array.  We return the enum value.  */
    1664              : 
    1665              : static int
    1666     12381602 : find_enum (const mstring *m)
    1667              : {
    1668     12381602 :   int i;
    1669              : 
    1670     12381602 :   i = gfc_string2code (m, atom_name);
    1671     12381602 :   if (i >= 0)
    1672     12381602 :     return i;
    1673              : 
    1674            0 :   bad_module ("find_enum(): Enum not found");
    1675              : 
    1676              :   /* Not reached.  */
    1677              : }
    1678              : 
    1679              : 
    1680              : /* Read a string. The caller is responsible for freeing.  */
    1681              : 
    1682              : static char*
    1683      3807304 : read_string (void)
    1684              : {
    1685      3807304 :   char* p;
    1686            0 :   require_atom (ATOM_STRING);
    1687      3807304 :   p = atom_string;
    1688      3807304 :   atom_string = NULL;
    1689      3807304 :   return p;
    1690              : }
    1691              : 
    1692              : 
    1693              : /**************** Module output subroutines ***************************/
    1694              : 
    1695              : /* Output a character to a module file.  */
    1696              : 
    1697              : static void
    1698     67983730 : write_char (char out)
    1699              : {
    1700     67983730 :   if (gzputc (module_fp, out) == EOF)
    1701            0 :     gfc_fatal_error ("Error writing modules file: %s", xstrerror (errno));
    1702              : 
    1703     67983730 :   if (out != '\n')
    1704     66745463 :     module_column++;
    1705              :   else
    1706              :     {
    1707      1238267 :       module_column = 1;
    1708      1238267 :       module_line++;
    1709              :     }
    1710     67983730 : }
    1711              : 
    1712              : 
    1713              : /* Write an atom to a module.  The line wrapping isn't perfect, but it
    1714              :    should work most of the time.  This isn't that big of a deal, since
    1715              :    the file really isn't meant to be read by people anyway.  */
    1716              : 
    1717              : static void
    1718     18085558 : write_atom (atom_type atom, const void *v)
    1719              : {
    1720     18085558 :   char buffer[32];
    1721              : 
    1722              :   /* Workaround -Wmaybe-uninitialized false positive during
    1723              :      profiledbootstrap by initializing them.  */
    1724     18085558 :   int len;
    1725     18085558 :   HOST_WIDE_INT i = 0;
    1726     18085558 :   const char *p;
    1727              : 
    1728     18085558 :   switch (atom)
    1729              :     {
    1730              :     case ATOM_STRING:
    1731              :     case ATOM_NAME:
    1732              :       p = (const char *) v;
    1733              :       break;
    1734              : 
    1735              :     case ATOM_LPAREN:
    1736              :       p = "(";
    1737              :       break;
    1738              : 
    1739              :     case ATOM_RPAREN:
    1740              :       p = ")";
    1741              :       break;
    1742              : 
    1743      4915783 :     case ATOM_INTEGER:
    1744      4915783 :       i = *((const HOST_WIDE_INT *) v);
    1745              : 
    1746      4915783 :       snprintf (buffer, sizeof (buffer), HOST_WIDE_INT_PRINT_DEC, i);
    1747      4915783 :       p = buffer;
    1748      4915783 :       break;
    1749              : 
    1750            0 :     default:
    1751            0 :       gfc_internal_error ("write_atom(): Trying to write dab atom");
    1752              : 
    1753              :     }
    1754              : 
    1755     18085558 :   if(p == NULL || *p == '\0')
    1756              :      len = 0;
    1757              :   else
    1758     17706946 :   len = strlen (p);
    1759              : 
    1760     18085558 :   if (atom != ATOM_RPAREN)
    1761              :     {
    1762     13938443 :       if (module_column + len > 72)
    1763       844133 :         write_char ('\n');
    1764              :       else
    1765              :         {
    1766              : 
    1767     13094310 :           if (last_atom != ATOM_LPAREN && module_column != 1)
    1768     11375550 :             write_char (' ');
    1769              :         }
    1770              :     }
    1771              : 
    1772     13938443 :   if (atom == ATOM_STRING)
    1773      1125072 :     write_char ('\'');
    1774              : 
    1775     71205327 :   while (p != NULL && *p)
    1776              :     {
    1777     53119769 :       if (atom == ATOM_STRING && *p == '\'')
    1778            0 :         write_char ('\'');
    1779     53119769 :       write_char (*p++);
    1780              :     }
    1781              : 
    1782     18085558 :   if (atom == ATOM_STRING)
    1783      1125072 :     write_char ('\'');
    1784              : 
    1785     18085558 :   last_atom = atom;
    1786     18085558 : }
    1787              : 
    1788              : 
    1789              : 
    1790              : /***************** Mid-level I/O subroutines *****************/
    1791              : 
    1792              : /* These subroutines let their caller read or write atoms without
    1793              :    caring about which of the two is actually happening.  This lets a
    1794              :    subroutine concentrate on the actual format of the data being
    1795              :    written.  */
    1796              : 
    1797              : static void mio_expr (gfc_expr **);
    1798              : pointer_info *mio_symbol_ref (gfc_symbol **);
    1799              : pointer_info *mio_interface_rest (gfc_interface **);
    1800              : static void mio_symtree_ref (gfc_symtree **);
    1801              : 
    1802              : /* Read or write an enumerated value.  On writing, we return the input
    1803              :    value for the convenience of callers.  We avoid using an integer
    1804              :    pointer because enums are sometimes inside bitfields.  */
    1805              : 
    1806              : static int
    1807     13553694 : mio_name (int t, const mstring *m)
    1808              : {
    1809     13553694 :   if (iomode == IO_OUTPUT)
    1810      3749161 :     write_atom (ATOM_NAME, gfc_code2string (m, t));
    1811              :   else
    1812              :     {
    1813      9804533 :       require_atom (ATOM_NAME);
    1814      9804533 :       t = find_enum (m);
    1815              :     }
    1816              : 
    1817     13553694 :   return t;
    1818              : }
    1819              : 
    1820              : /* Specialization of mio_name.  */
    1821              : 
    1822              : #define DECL_MIO_NAME(TYPE) \
    1823              :  static inline TYPE \
    1824              :  MIO_NAME(TYPE) (TYPE t, const mstring *m) \
    1825              :  { \
    1826              :    return (TYPE) mio_name ((int) t, m); \
    1827              :  }
    1828              : #define MIO_NAME(TYPE) mio_name_##TYPE
    1829              : 
    1830              : static void
    1831     18122990 : mio_lparen (void)
    1832              : {
    1833     18122990 :   if (iomode == IO_OUTPUT)
    1834      4147115 :     write_atom (ATOM_LPAREN, NULL);
    1835              :   else
    1836     13975875 :     require_atom (ATOM_LPAREN);
    1837     18122990 : }
    1838              : 
    1839              : 
    1840              : static void
    1841     16618786 : mio_rparen (void)
    1842              : {
    1843     16618786 :   if (iomode == IO_OUTPUT)
    1844      4147115 :     write_atom (ATOM_RPAREN, NULL);
    1845              :   else
    1846     12471671 :     require_atom (ATOM_RPAREN);
    1847     16618786 : }
    1848              : 
    1849              : 
    1850              : static void
    1851     13749847 : mio_integer (int *ip)
    1852              : {
    1853     13749847 :   if (iomode == IO_OUTPUT)
    1854              :     {
    1855      3027430 :       HOST_WIDE_INT hwi = *ip;
    1856      3027430 :       write_atom (ATOM_INTEGER, &hwi);
    1857              :     }
    1858              :   else
    1859              :     {
    1860     10722417 :       require_atom (ATOM_INTEGER);
    1861     10722417 :       *ip = atom_int;
    1862              :     }
    1863     13749847 : }
    1864              : 
    1865              : static void
    1866       399992 : mio_hwi (HOST_WIDE_INT *hwi)
    1867              : {
    1868       399992 :   if (iomode == IO_OUTPUT)
    1869       237778 :     write_atom (ATOM_INTEGER, hwi);
    1870              :   else
    1871              :     {
    1872       162214 :       require_atom (ATOM_INTEGER);
    1873       162214 :       *hwi = atom_int;
    1874              :     }
    1875       399992 : }
    1876              : 
    1877              : 
    1878              : /* Read or write a gfc_intrinsic_op value.  */
    1879              : 
    1880              : static void
    1881         1332 : mio_intrinsic_op (gfc_intrinsic_op* op)
    1882              : {
    1883              :   /* FIXME: Would be nicer to do this via the operators symbolic name.  */
    1884         1332 :   if (iomode == IO_OUTPUT)
    1885              :     {
    1886          708 :       HOST_WIDE_INT converted = (HOST_WIDE_INT) *op;
    1887          708 :       write_atom (ATOM_INTEGER, &converted);
    1888              :     }
    1889              :   else
    1890              :     {
    1891          624 :       require_atom (ATOM_INTEGER);
    1892          624 :       *op = (gfc_intrinsic_op) atom_int;
    1893              :     }
    1894         1332 : }
    1895              : 
    1896              : 
    1897              : /* Read or write a character pointer that points to a string on the heap.  */
    1898              : 
    1899              : static const char *
    1900         9393 : mio_allocated_string (const char *s)
    1901              : {
    1902         9393 :   if (iomode == IO_OUTPUT)
    1903              :     {
    1904         9393 :       write_atom (ATOM_STRING, s);
    1905         9393 :       return s;
    1906              :     }
    1907              :   else
    1908              :     {
    1909            0 :       require_atom (ATOM_STRING);
    1910            0 :       return atom_string;
    1911              :     }
    1912              : }
    1913              : 
    1914              : 
    1915              : /* Functions for quoting and unquoting strings.  */
    1916              : 
    1917              : static char *
    1918         5542 : quote_string (const gfc_char_t *s, const size_t slength)
    1919              : {
    1920         5542 :   const gfc_char_t *p;
    1921         5542 :   char *res, *q;
    1922         5542 :   size_t len = 0, i;
    1923              : 
    1924              :   /* Calculate the length we'll need: a backslash takes two ("\\"),
    1925              :      non-printable characters take 10 ("\Uxxxxxxxx") and others take 1.  */
    1926        20637 :   for (p = s, i = 0; i < slength; p++, i++)
    1927              :     {
    1928        15095 :       if (*p == '\\')
    1929            1 :         len += 2;
    1930        15094 :       else if (!gfc_wide_is_printable (*p))
    1931         4787 :         len += 10;
    1932              :       else
    1933        10307 :         len++;
    1934              :     }
    1935              : 
    1936         5542 :   q = res = XCNEWVEC (char, len + 1);
    1937        26179 :   for (p = s, i = 0; i < slength; p++, i++)
    1938              :     {
    1939        15095 :       if (*p == '\\')
    1940            1 :         *q++ = '\\', *q++ = '\\';
    1941        15094 :       else if (!gfc_wide_is_printable (*p))
    1942              :         {
    1943         4787 :           sprintf (q, "\\U%08" HOST_WIDE_INT_PRINT "x",
    1944         4787 :                    (unsigned HOST_WIDE_INT) *p);
    1945         4787 :           q += 10;
    1946              :         }
    1947              :       else
    1948        10307 :         *q++ = (unsigned char) *p;
    1949              :     }
    1950              : 
    1951         5542 :   res[len] = '\0';
    1952         5542 :   return res;
    1953              : }
    1954              : 
    1955              : static gfc_char_t *
    1956         3010 : unquote_string (const char *s)
    1957              : {
    1958         3010 :   size_t len, i;
    1959         3010 :   const char *p;
    1960         3010 :   gfc_char_t *res;
    1961              : 
    1962        14746 :   for (p = s, len = 0; *p; p++, len++)
    1963              :     {
    1964        11736 :       if (*p != '\\')
    1965         9534 :         continue;
    1966              : 
    1967         2202 :       if (p[1] == '\\')
    1968            0 :         p++;
    1969         2202 :       else if (p[1] == 'U')
    1970         2202 :         p += 9; /* That is a "\U????????".  */
    1971              :       else
    1972            0 :         gfc_internal_error ("unquote_string(): got bad string");
    1973              :     }
    1974              : 
    1975         3010 :   res = gfc_get_wide_string (len + 1);
    1976        14746 :   for (i = 0, p = s; i < len; i++, p++)
    1977              :     {
    1978        11736 :       gcc_assert (*p);
    1979              : 
    1980        11736 :       if (*p != '\\')
    1981         9534 :         res[i] = (unsigned char) *p;
    1982         2202 :       else if (p[1] == '\\')
    1983              :         {
    1984            0 :           res[i] = (unsigned char) '\\';
    1985            0 :           p++;
    1986              :         }
    1987              :       else
    1988              :         {
    1989              :           /* We read the 8-digits hexadecimal constant that follows.  */
    1990         2202 :           int j;
    1991         2202 :           unsigned n;
    1992         2202 :           gfc_char_t c = 0;
    1993              : 
    1994         2202 :           gcc_assert (p[1] == 'U');
    1995        19818 :           for (j = 0; j < 8; j++)
    1996              :             {
    1997        17616 :               c = c << 4;
    1998        17616 :               gcc_assert (sscanf (&p[j+2], "%01x", &n) == 1);
    1999        17616 :               c += n;
    2000              :             }
    2001              : 
    2002         2202 :           res[i] = c;
    2003         2202 :           p += 9;
    2004              :         }
    2005              :     }
    2006              : 
    2007         3010 :   res[len] = '\0';
    2008         3010 :   return res;
    2009              : }
    2010              : 
    2011              : 
    2012              : /* Read or write a character pointer that points to a wide string on the
    2013              :    heap, performing quoting/unquoting of nonprintable characters using the
    2014              :    form \U???????? (where each ? is a hexadecimal digit).
    2015              :    Length is the length of the string, only known and used in output mode.  */
    2016              : 
    2017              : static const gfc_char_t *
    2018         8552 : mio_allocated_wide_string (const gfc_char_t *s, const size_t length)
    2019              : {
    2020         8552 :   if (iomode == IO_OUTPUT)
    2021              :     {
    2022         5542 :       char *quoted = quote_string (s, length);
    2023         5542 :       write_atom (ATOM_STRING, quoted);
    2024         5542 :       free (quoted);
    2025         5542 :       return s;
    2026              :     }
    2027              :   else
    2028              :     {
    2029         3010 :       gfc_char_t *unquoted;
    2030              : 
    2031         3010 :       require_atom (ATOM_STRING);
    2032         3010 :       unquoted = unquote_string (atom_string);
    2033         3010 :       free (atom_string);
    2034         3010 :       return unquoted;
    2035              :     }
    2036              : }
    2037              : 
    2038              : 
    2039              : /* Read or write a string that is in static memory.  */
    2040              : 
    2041              : static void
    2042      1026301 : mio_pool_string (const char **stringp)
    2043              : {
    2044              :   /* TODO: one could write the string only once, and refer to it via a
    2045              :      fixup pointer.  */
    2046              : 
    2047              :   /* As a special case we have to deal with a NULL string.  This
    2048              :      happens for the 'module' member of 'gfc_symbol's that are not in a
    2049              :      module.  We read / write these as the empty string.  */
    2050      1026301 :   if (iomode == IO_OUTPUT)
    2051              :     {
    2052       794950 :       const char *p = *stringp == NULL ? "" : *stringp;
    2053       794950 :       write_atom (ATOM_STRING, p);
    2054              :     }
    2055              :   else
    2056              :     {
    2057       231351 :       require_atom (ATOM_STRING);
    2058       462702 :       *stringp = (atom_string[0] == '\0'
    2059       231351 :                   ? NULL : gfc_get_string ("%s", atom_string));
    2060       231351 :       free (atom_string);
    2061              :     }
    2062      1026301 : }
    2063              : 
    2064              : 
    2065              : /* Read or write a string that is inside of some already-allocated
    2066              :    structure.  */
    2067              : 
    2068              : static void
    2069       650563 : mio_internal_string (char *string)
    2070              : {
    2071       650563 :   if (iomode == IO_OUTPUT)
    2072            0 :     write_atom (ATOM_STRING, string);
    2073              :   else
    2074              :     {
    2075       650563 :       require_atom (ATOM_STRING);
    2076       650563 :       strcpy (string, atom_string);
    2077       650563 :       free (atom_string);
    2078              :     }
    2079       650563 : }
    2080              : 
    2081              : 
    2082              : enum ab_attribute
    2083              : { AB_ALLOCATABLE, AB_DIMENSION, AB_EXTERNAL, AB_INTRINSIC, AB_OPTIONAL,
    2084              :   AB_POINTER, AB_TARGET, AB_DUMMY, AB_RESULT, AB_DATA,
    2085              :   AB_IN_NAMELIST, AB_IN_COMMON, AB_FUNCTION, AB_SUBROUTINE, AB_SEQUENCE,
    2086              :   AB_ELEMENTAL, AB_PURE, AB_RECURSIVE, AB_GENERIC, AB_ALWAYS_EXPLICIT,
    2087              :   AB_CRAY_POINTER, AB_CRAY_POINTEE, AB_THREADPRIVATE,
    2088              :   AB_ALLOC_COMP, AB_POINTER_COMP, AB_PROC_POINTER_COMP, AB_PRIVATE_COMP,
    2089              :   AB_VALUE, AB_VOLATILE, AB_PROTECTED, AB_LOCK_COMP, AB_EVENT_COMP,
    2090              :   AB_IS_BIND_C, AB_IS_C_INTEROP, AB_IS_ISO_C, AB_ABSTRACT, AB_ZERO_COMP,
    2091              :   AB_IS_CLASS, AB_PROCEDURE, AB_PROC_POINTER, AB_ASYNCHRONOUS, AB_CODIMENSION,
    2092              :   AB_COARRAY_COMP, AB_VTYPE, AB_VTAB, AB_CONTIGUOUS, AB_CLASS_POINTER,
    2093              :   AB_IMPLICIT_PURE, AB_ARTIFICIAL, AB_UNLIMITED_POLY, AB_OMP_DECLARE_TARGET,
    2094              :   AB_ARRAY_OUTER_DEPENDENCY, AB_MODULE_PROCEDURE, AB_OACC_DECLARE_CREATE,
    2095              :   AB_OACC_DECLARE_COPYIN, AB_OACC_DECLARE_DEVICEPTR,
    2096              :   AB_OACC_DECLARE_DEVICE_RESIDENT, AB_OACC_DECLARE_LINK,
    2097              :   AB_OMP_DECLARE_TARGET_LINK, AB_OMP_DECLARE_TARGET_LOCAL,
    2098              :   AB_PDT_KIND, AB_PDT_LEN, AB_PDT_TYPE,
    2099              :   AB_PDT_COMP, AB_PDT_TEMPLATE, AB_PDT_ARRAY, AB_PDT_STRING,
    2100              :   AB_OACC_ROUTINE_LOP_GANG, AB_OACC_ROUTINE_LOP_WORKER,
    2101              :   AB_OACC_ROUTINE_LOP_VECTOR, AB_OACC_ROUTINE_LOP_SEQ,
    2102              :   AB_OACC_ROUTINE_NOHOST,
    2103              :   AB_OMP_REQ_REVERSE_OFFLOAD, AB_OMP_REQ_UNIFIED_ADDRESS, AB_OMP_REQ_SELF_MAPS,
    2104              :   AB_OMP_REQ_UNIFIED_SHARED_MEMORY, AB_OMP_REQ_DYNAMIC_ALLOCATORS,
    2105              :   AB_OMP_REQ_MEM_ORDER_SEQ_CST, AB_OMP_REQ_MEM_ORDER_ACQ_REL,
    2106              :   AB_OMP_REQ_MEM_ORDER_ACQUIRE, AB_OMP_REQ_MEM_ORDER_RELEASE,
    2107              :   AB_OMP_REQ_MEM_ORDER_RELAXED, AB_OMP_DEVICE_TYPE_NOHOST,
    2108              :   AB_OMP_DEVICE_TYPE_HOST, AB_OMP_DEVICE_TYPE_ANY, AB_OMP_GROUPPRIVATE
    2109              : };
    2110              : 
    2111              : static const mstring attr_bits[] =
    2112              : {
    2113              :     minit ("ALLOCATABLE", AB_ALLOCATABLE),
    2114              :     minit ("ARTIFICIAL", AB_ARTIFICIAL),
    2115              :     minit ("ASYNCHRONOUS", AB_ASYNCHRONOUS),
    2116              :     minit ("DIMENSION", AB_DIMENSION),
    2117              :     minit ("CODIMENSION", AB_CODIMENSION),
    2118              :     minit ("CONTIGUOUS", AB_CONTIGUOUS),
    2119              :     minit ("EXTERNAL", AB_EXTERNAL),
    2120              :     minit ("INTRINSIC", AB_INTRINSIC),
    2121              :     minit ("OPTIONAL", AB_OPTIONAL),
    2122              :     minit ("POINTER", AB_POINTER),
    2123              :     minit ("VOLATILE", AB_VOLATILE),
    2124              :     minit ("TARGET", AB_TARGET),
    2125              :     minit ("THREADPRIVATE", AB_THREADPRIVATE),
    2126              :     minit ("DUMMY", AB_DUMMY),
    2127              :     minit ("RESULT", AB_RESULT),
    2128              :     minit ("DATA", AB_DATA),
    2129              :     minit ("IN_NAMELIST", AB_IN_NAMELIST),
    2130              :     minit ("IN_COMMON", AB_IN_COMMON),
    2131              :     minit ("FUNCTION", AB_FUNCTION),
    2132              :     minit ("SUBROUTINE", AB_SUBROUTINE),
    2133              :     minit ("SEQUENCE", AB_SEQUENCE),
    2134              :     minit ("ELEMENTAL", AB_ELEMENTAL),
    2135              :     minit ("PURE", AB_PURE),
    2136              :     minit ("RECURSIVE", AB_RECURSIVE),
    2137              :     minit ("GENERIC", AB_GENERIC),
    2138              :     minit ("ALWAYS_EXPLICIT", AB_ALWAYS_EXPLICIT),
    2139              :     minit ("CRAY_POINTER", AB_CRAY_POINTER),
    2140              :     minit ("CRAY_POINTEE", AB_CRAY_POINTEE),
    2141              :     minit ("IS_BIND_C", AB_IS_BIND_C),
    2142              :     minit ("IS_C_INTEROP", AB_IS_C_INTEROP),
    2143              :     minit ("IS_ISO_C", AB_IS_ISO_C),
    2144              :     minit ("VALUE", AB_VALUE),
    2145              :     minit ("ALLOC_COMP", AB_ALLOC_COMP),
    2146              :     minit ("COARRAY_COMP", AB_COARRAY_COMP),
    2147              :     minit ("LOCK_COMP", AB_LOCK_COMP),
    2148              :     minit ("EVENT_COMP", AB_EVENT_COMP),
    2149              :     minit ("POINTER_COMP", AB_POINTER_COMP),
    2150              :     minit ("PROC_POINTER_COMP", AB_PROC_POINTER_COMP),
    2151              :     minit ("PRIVATE_COMP", AB_PRIVATE_COMP),
    2152              :     minit ("ZERO_COMP", AB_ZERO_COMP),
    2153              :     minit ("PROTECTED", AB_PROTECTED),
    2154              :     minit ("ABSTRACT", AB_ABSTRACT),
    2155              :     minit ("IS_CLASS", AB_IS_CLASS),
    2156              :     minit ("PROCEDURE", AB_PROCEDURE),
    2157              :     minit ("PROC_POINTER", AB_PROC_POINTER),
    2158              :     minit ("VTYPE", AB_VTYPE),
    2159              :     minit ("VTAB", AB_VTAB),
    2160              :     minit ("CLASS_POINTER", AB_CLASS_POINTER),
    2161              :     minit ("IMPLICIT_PURE", AB_IMPLICIT_PURE),
    2162              :     minit ("UNLIMITED_POLY", AB_UNLIMITED_POLY),
    2163              :     minit ("OMP_DECLARE_TARGET", AB_OMP_DECLARE_TARGET),
    2164              :     minit ("ARRAY_OUTER_DEPENDENCY", AB_ARRAY_OUTER_DEPENDENCY),
    2165              :     minit ("MODULE_PROCEDURE", AB_MODULE_PROCEDURE),
    2166              :     minit ("OACC_DECLARE_CREATE", AB_OACC_DECLARE_CREATE),
    2167              :     minit ("OACC_DECLARE_COPYIN", AB_OACC_DECLARE_COPYIN),
    2168              :     minit ("OACC_DECLARE_DEVICEPTR", AB_OACC_DECLARE_DEVICEPTR),
    2169              :     minit ("OACC_DECLARE_DEVICE_RESIDENT", AB_OACC_DECLARE_DEVICE_RESIDENT),
    2170              :     minit ("OACC_DECLARE_LINK", AB_OACC_DECLARE_LINK),
    2171              :     minit ("OMP_DECLARE_TARGET_LINK", AB_OMP_DECLARE_TARGET_LINK),
    2172              :     minit ("OMP_DECLARE_TARGET_LOCAL", AB_OMP_DECLARE_TARGET_LOCAL),
    2173              :     minit ("OMP_GROUPPRIVATE", AB_OMP_GROUPPRIVATE),
    2174              :     minit ("PDT_KIND", AB_PDT_KIND),
    2175              :     minit ("PDT_LEN", AB_PDT_LEN),
    2176              :     minit ("PDT_TYPE", AB_PDT_TYPE),
    2177              :     minit ("PDT_TEMPLATE", AB_PDT_TEMPLATE),
    2178              :     minit ("PDT_ARRAY", AB_PDT_ARRAY),
    2179              :     minit ("PDT_STRING", AB_PDT_STRING),
    2180              :     minit ("PDT_COMP", AB_PDT_COMP),
    2181              :     minit ("OACC_ROUTINE_LOP_GANG", AB_OACC_ROUTINE_LOP_GANG),
    2182              :     minit ("OACC_ROUTINE_LOP_WORKER", AB_OACC_ROUTINE_LOP_WORKER),
    2183              :     minit ("OACC_ROUTINE_LOP_VECTOR", AB_OACC_ROUTINE_LOP_VECTOR),
    2184              :     minit ("OACC_ROUTINE_LOP_SEQ", AB_OACC_ROUTINE_LOP_SEQ),
    2185              :     minit ("OACC_ROUTINE_NOHOST", AB_OACC_ROUTINE_NOHOST),
    2186              :     minit ("OMP_REQ_REVERSE_OFFLOAD", AB_OMP_REQ_REVERSE_OFFLOAD),
    2187              :     minit ("OMP_REQ_UNIFIED_ADDRESS", AB_OMP_REQ_UNIFIED_ADDRESS),
    2188              :     minit ("OMP_REQ_UNIFIED_SHARED_MEMORY", AB_OMP_REQ_UNIFIED_SHARED_MEMORY),
    2189              :     minit ("OMP_REQ_SELF_MAPS", AB_OMP_REQ_SELF_MAPS),
    2190              :     minit ("OMP_REQ_DYNAMIC_ALLOCATORS", AB_OMP_REQ_DYNAMIC_ALLOCATORS),
    2191              :     minit ("OMP_REQ_MEM_ORDER_SEQ_CST", AB_OMP_REQ_MEM_ORDER_SEQ_CST),
    2192              :     minit ("OMP_REQ_MEM_ORDER_ACQ_REL", AB_OMP_REQ_MEM_ORDER_ACQ_REL),
    2193              :     minit ("OMP_REQ_MEM_ORDER_ACQUIRE", AB_OMP_REQ_MEM_ORDER_ACQUIRE),
    2194              :     minit ("OMP_REQ_MEM_ORDER_RELAXED", AB_OMP_REQ_MEM_ORDER_RELAXED),
    2195              :     minit ("OMP_REQ_MEM_ORDER_RELEASE", AB_OMP_REQ_MEM_ORDER_RELEASE),
    2196              :     minit ("OMP_DEVICE_TYPE_HOST", AB_OMP_DEVICE_TYPE_HOST),
    2197              :     minit ("OMP_DEVICE_TYPE_NOHOST", AB_OMP_DEVICE_TYPE_NOHOST),
    2198              :     minit ("OMP_DEVICE_TYPE_ANYHOST", AB_OMP_DEVICE_TYPE_ANY),
    2199              :     minit (NULL, -1)
    2200              : };
    2201              : 
    2202              : /* For binding attributes.  */
    2203              : static const mstring binding_passing[] =
    2204              : {
    2205              :     minit ("PASS", 0),
    2206              :     minit ("NOPASS", 1),
    2207              :     minit (NULL, -1)
    2208              : };
    2209              : static const mstring binding_overriding[] =
    2210              : {
    2211              :     minit ("OVERRIDABLE", 0),
    2212              :     minit ("NON_OVERRIDABLE", 1),
    2213              :     minit ("DEFERRED", 2),
    2214              :     minit (NULL, -1)
    2215              : };
    2216              : static const mstring binding_generic[] =
    2217              : {
    2218              :     minit ("SPECIFIC", 0),
    2219              :     minit ("GENERIC", 1),
    2220              :     minit (NULL, -1)
    2221              : };
    2222              : static const mstring binding_ppc[] =
    2223              : {
    2224              :     minit ("NO_PPC", 0),
    2225              :     minit ("PPC", 1),
    2226              :     minit (NULL, -1)
    2227              : };
    2228              : 
    2229              : /* Specialization of mio_name.  */
    2230       625739 : DECL_MIO_NAME (ab_attribute)
    2231         3614 : DECL_MIO_NAME (ar_type)
    2232       172576 : DECL_MIO_NAME (array_type)
    2233      8066556 : DECL_MIO_NAME (bt)
    2234       101473 : DECL_MIO_NAME (expr_t)
    2235       615428 : DECL_MIO_NAME (gfc_access)
    2236         1629 : DECL_MIO_NAME (gfc_intrinsic_op)
    2237      1572210 : DECL_MIO_NAME (ifsrc)
    2238      1572210 : DECL_MIO_NAME (save_state)
    2239      1572210 : DECL_MIO_NAME (procedure_type)
    2240         5276 : DECL_MIO_NAME (ref_type)
    2241      1572210 : DECL_MIO_NAME (sym_flavor)
    2242      1572210 : DECL_MIO_NAME (sym_intent)
    2243            0 : DECL_MIO_NAME (inquiry_type)
    2244              : #undef DECL_MIO_NAME
    2245              : 
    2246              : /* Verify OACC_ROUTINE_LOP_NONE.  */
    2247              : 
    2248              : static void
    2249           96 : verify_OACC_ROUTINE_LOP_NONE (enum oacc_routine_lop lop)
    2250              : {
    2251            0 :   if (lop != OACC_ROUTINE_LOP_NONE)
    2252            0 :     bad_module ("Unsupported: multiple OpenACC 'routine' levels of parallelism");
    2253            0 : }
    2254              : 
    2255              : /* Symbol attributes are stored in list with the first three elements
    2256              :    being the enumerated fields, while the remaining elements (if any)
    2257              :    indicate the individual attribute bits.  The access field is not
    2258              :    saved-- it controls what symbols are exported when a module is
    2259              :    written.  */
    2260              : 
    2261              : static void
    2262      1572210 : mio_symbol_attribute (symbol_attribute *attr)
    2263              : {
    2264      1572210 :   atom_type t;
    2265      1572210 :   unsigned ext_attr,extension_level;
    2266              : 
    2267      1572210 :   mio_lparen ();
    2268              : 
    2269      1572210 :   attr->flavor = MIO_NAME (sym_flavor) (attr->flavor, flavors);
    2270      1572210 :   attr->intent = MIO_NAME (sym_intent) (attr->intent, intents);
    2271      1572210 :   attr->proc = MIO_NAME (procedure_type) (attr->proc, procedures);
    2272      1572210 :   attr->if_source = MIO_NAME (ifsrc) (attr->if_source, ifsrc_types);
    2273      1572210 :   attr->save = MIO_NAME (save_state) (attr->save, save_status);
    2274              : 
    2275      1572210 :   ext_attr = attr->ext_attr;
    2276      1572210 :   mio_integer ((int *) &ext_attr);
    2277      1572210 :   attr->ext_attr = ext_attr;
    2278              : 
    2279      1572210 :   extension_level = attr->extension;
    2280      1572210 :   mio_integer ((int *) &extension_level);
    2281      1572210 :   attr->extension = extension_level;
    2282              : 
    2283      1572210 :   if (iomode == IO_OUTPUT)
    2284              :     {
    2285       349481 :       if (attr->allocatable)
    2286         4957 :         MIO_NAME (ab_attribute) (AB_ALLOCATABLE, attr_bits);
    2287       349481 :       if (attr->artificial)
    2288       102876 :         MIO_NAME (ab_attribute) (AB_ARTIFICIAL, attr_bits);
    2289       349481 :       if (attr->asynchronous)
    2290            0 :         MIO_NAME (ab_attribute) (AB_ASYNCHRONOUS, attr_bits);
    2291       349481 :       if (attr->dimension)
    2292        18690 :         MIO_NAME (ab_attribute) (AB_DIMENSION, attr_bits);
    2293       349481 :       if (attr->codimension)
    2294          107 :         MIO_NAME (ab_attribute) (AB_CODIMENSION, attr_bits);
    2295       349481 :       if (attr->contiguous)
    2296         3247 :         MIO_NAME (ab_attribute) (AB_CONTIGUOUS, attr_bits);
    2297       349481 :       if (attr->external)
    2298        15451 :         MIO_NAME (ab_attribute) (AB_EXTERNAL, attr_bits);
    2299       349481 :       if (attr->intrinsic)
    2300         5580 :         MIO_NAME (ab_attribute) (AB_INTRINSIC, attr_bits);
    2301       349481 :       if (attr->optional)
    2302         5170 :         MIO_NAME (ab_attribute) (AB_OPTIONAL, attr_bits);
    2303       349481 :       if (attr->pointer)
    2304        32471 :         MIO_NAME (ab_attribute) (AB_POINTER, attr_bits);
    2305       349481 :       if (attr->class_pointer)
    2306          477 :         MIO_NAME (ab_attribute) (AB_CLASS_POINTER, attr_bits);
    2307       349481 :       if (attr->is_protected)
    2308           70 :         MIO_NAME (ab_attribute) (AB_PROTECTED, attr_bits);
    2309       349481 :       if (attr->value)
    2310        11194 :         MIO_NAME (ab_attribute) (AB_VALUE, attr_bits);
    2311       349481 :       if (attr->volatile_)
    2312           14 :         MIO_NAME (ab_attribute) (AB_VOLATILE, attr_bits);
    2313       349481 :       if (attr->target)
    2314        19772 :         MIO_NAME (ab_attribute) (AB_TARGET, attr_bits);
    2315       349481 :       if (attr->threadprivate)
    2316           42 :         MIO_NAME (ab_attribute) (AB_THREADPRIVATE, attr_bits);
    2317       349481 :       if (attr->dummy)
    2318        83036 :         MIO_NAME (ab_attribute) (AB_DUMMY, attr_bits);
    2319       349481 :       if (attr->result)
    2320         7188 :         MIO_NAME (ab_attribute) (AB_RESULT, attr_bits);
    2321              :       /* We deliberately don't preserve the "entry" flag.  */
    2322              : 
    2323       349481 :       if (attr->data)
    2324           22 :         MIO_NAME (ab_attribute) (AB_DATA, attr_bits);
    2325       349481 :       if (attr->in_namelist)
    2326           78 :         MIO_NAME (ab_attribute) (AB_IN_NAMELIST, attr_bits);
    2327       349481 :       if (attr->in_common)
    2328          392 :         MIO_NAME (ab_attribute) (AB_IN_COMMON, attr_bits);
    2329              : 
    2330       349481 :       if (attr->function)
    2331        34392 :         MIO_NAME (ab_attribute) (AB_FUNCTION, attr_bits);
    2332       349481 :       if (attr->subroutine)
    2333        29531 :         MIO_NAME (ab_attribute) (AB_SUBROUTINE, attr_bits);
    2334       349481 :       if (attr->generic)
    2335         9591 :         MIO_NAME (ab_attribute) (AB_GENERIC, attr_bits);
    2336       349481 :       if (attr->abstract)
    2337         3023 :         MIO_NAME (ab_attribute) (AB_ABSTRACT, attr_bits);
    2338              : 
    2339       349481 :       if (attr->sequence)
    2340          125 :         MIO_NAME (ab_attribute) (AB_SEQUENCE, attr_bits);
    2341       349481 :       if (attr->elemental)
    2342        15822 :         MIO_NAME (ab_attribute) (AB_ELEMENTAL, attr_bits);
    2343       349481 :       if (attr->pure)
    2344        19320 :         MIO_NAME (ab_attribute) (AB_PURE, attr_bits);
    2345       349481 :       if (attr->implicit_pure)
    2346         4273 :         MIO_NAME (ab_attribute) (AB_IMPLICIT_PURE, attr_bits);
    2347       349481 :       if (attr->unlimited_polymorphic)
    2348          358 :         MIO_NAME (ab_attribute) (AB_UNLIMITED_POLY, attr_bits);
    2349       349481 :       if (attr->recursive)
    2350         2967 :         MIO_NAME (ab_attribute) (AB_RECURSIVE, attr_bits);
    2351       349481 :       if (attr->always_explicit)
    2352        30293 :         MIO_NAME (ab_attribute) (AB_ALWAYS_EXPLICIT, attr_bits);
    2353       349481 :       if (attr->cray_pointer)
    2354           13 :         MIO_NAME (ab_attribute) (AB_CRAY_POINTER, attr_bits);
    2355       349481 :       if (attr->cray_pointee)
    2356           13 :         MIO_NAME (ab_attribute) (AB_CRAY_POINTEE, attr_bits);
    2357       349481 :       if (attr->is_bind_c)
    2358         6672 :         MIO_NAME(ab_attribute) (AB_IS_BIND_C, attr_bits);
    2359       349481 :       if (attr->is_c_interop)
    2360        30601 :         MIO_NAME(ab_attribute) (AB_IS_C_INTEROP, attr_bits);
    2361       349481 :       if (attr->is_iso_c)
    2362        26654 :         MIO_NAME(ab_attribute) (AB_IS_ISO_C, attr_bits);
    2363       349481 :       if (attr->alloc_comp)
    2364         3013 :         MIO_NAME (ab_attribute) (AB_ALLOC_COMP, attr_bits);
    2365       349481 :       if (attr->pointer_comp)
    2366          946 :         MIO_NAME (ab_attribute) (AB_POINTER_COMP, attr_bits);
    2367       349481 :       if (attr->proc_pointer_comp)
    2368          263 :         MIO_NAME (ab_attribute) (AB_PROC_POINTER_COMP, attr_bits);
    2369       349481 :       if (attr->private_comp)
    2370         3281 :         MIO_NAME (ab_attribute) (AB_PRIVATE_COMP, attr_bits);
    2371       349481 :       if (attr->coarray_comp)
    2372           33 :         MIO_NAME (ab_attribute) (AB_COARRAY_COMP, attr_bits);
    2373       349481 :       if (attr->lock_comp)
    2374            4 :         MIO_NAME (ab_attribute) (AB_LOCK_COMP, attr_bits);
    2375       349481 :       if (attr->event_comp)
    2376            0 :         MIO_NAME (ab_attribute) (AB_EVENT_COMP, attr_bits);
    2377       349481 :       if (attr->zero_comp)
    2378         2207 :         MIO_NAME (ab_attribute) (AB_ZERO_COMP, attr_bits);
    2379       349481 :       if (attr->is_class)
    2380         4754 :         MIO_NAME (ab_attribute) (AB_IS_CLASS, attr_bits);
    2381       349481 :       if (attr->procedure)
    2382         5734 :         MIO_NAME (ab_attribute) (AB_PROCEDURE, attr_bits);
    2383       349481 :       if (attr->proc_pointer)
    2384        37465 :         MIO_NAME (ab_attribute) (AB_PROC_POINTER, attr_bits);
    2385       349481 :       if (attr->vtype)
    2386        10710 :         MIO_NAME (ab_attribute) (AB_VTYPE, attr_bits);
    2387       349481 :       if (attr->vtab)
    2388        10165 :         MIO_NAME (ab_attribute) (AB_VTAB, attr_bits);
    2389       349481 :       if (attr->omp_declare_target)
    2390          423 :         MIO_NAME (ab_attribute) (AB_OMP_DECLARE_TARGET, attr_bits);
    2391       349481 :       if (attr->array_outer_dependency)
    2392        18116 :         MIO_NAME (ab_attribute) (AB_ARRAY_OUTER_DEPENDENCY, attr_bits);
    2393       349481 :       if (attr->module_procedure)
    2394         1636 :         MIO_NAME (ab_attribute) (AB_MODULE_PROCEDURE, attr_bits);
    2395       349481 :       if (attr->oacc_declare_create)
    2396           39 :         MIO_NAME (ab_attribute) (AB_OACC_DECLARE_CREATE, attr_bits);
    2397       349481 :       if (attr->oacc_declare_copyin)
    2398            7 :         MIO_NAME (ab_attribute) (AB_OACC_DECLARE_COPYIN, attr_bits);
    2399       349481 :       if (attr->oacc_declare_deviceptr)
    2400            1 :         MIO_NAME (ab_attribute) (AB_OACC_DECLARE_DEVICEPTR, attr_bits);
    2401       349481 :       if (attr->oacc_declare_device_resident)
    2402           33 :         MIO_NAME (ab_attribute) (AB_OACC_DECLARE_DEVICE_RESIDENT, attr_bits);
    2403       349481 :       if (attr->oacc_declare_link)
    2404            1 :         MIO_NAME (ab_attribute) (AB_OACC_DECLARE_LINK, attr_bits);
    2405       349481 :       if (attr->omp_declare_target_link)
    2406           15 :         MIO_NAME (ab_attribute) (AB_OMP_DECLARE_TARGET_LINK, attr_bits);
    2407       349481 :       if (attr->omp_declare_target_local)
    2408           12 :         MIO_NAME (ab_attribute) (AB_OMP_DECLARE_TARGET_LOCAL, attr_bits);
    2409       349481 :       if (attr->omp_groupprivate)
    2410           12 :         MIO_NAME (ab_attribute) (AB_OMP_GROUPPRIVATE, attr_bits);
    2411       349481 :       if (attr->pdt_kind)
    2412          682 :         MIO_NAME (ab_attribute) (AB_PDT_KIND, attr_bits);
    2413       349481 :       if (attr->pdt_len)
    2414          464 :         MIO_NAME (ab_attribute) (AB_PDT_LEN, attr_bits);
    2415       349481 :       if (attr->pdt_type)
    2416          348 :         MIO_NAME (ab_attribute) (AB_PDT_TYPE, attr_bits);
    2417       349481 :       if (attr->pdt_comp)
    2418           27 :         MIO_NAME (ab_attribute) (AB_PDT_COMP , attr_bits);
    2419       349481 :       if (attr->pdt_template)
    2420          313 :         MIO_NAME (ab_attribute) (AB_PDT_TEMPLATE, attr_bits);
    2421       349481 :       if (attr->pdt_array)
    2422           75 :         MIO_NAME (ab_attribute) (AB_PDT_ARRAY, attr_bits);
    2423       349481 :       if (attr->pdt_string)
    2424            2 :         MIO_NAME (ab_attribute) (AB_PDT_STRING, attr_bits);
    2425       349481 :       switch (attr->oacc_routine_lop)
    2426              :         {
    2427              :         case OACC_ROUTINE_LOP_NONE:
    2428              :           /* This is the default anyway, and for maintaining compatibility with
    2429              :              the current MOD_VERSION, we're not emitting anything in that
    2430              :              case.  */
    2431              :           break;
    2432           12 :         case OACC_ROUTINE_LOP_GANG:
    2433           12 :           MIO_NAME (ab_attribute) (AB_OACC_ROUTINE_LOP_GANG, attr_bits);
    2434           12 :           break;
    2435           10 :         case OACC_ROUTINE_LOP_WORKER:
    2436           10 :           MIO_NAME (ab_attribute) (AB_OACC_ROUTINE_LOP_WORKER, attr_bits);
    2437           10 :           break;
    2438            8 :         case OACC_ROUTINE_LOP_VECTOR:
    2439            8 :           MIO_NAME (ab_attribute) (AB_OACC_ROUTINE_LOP_VECTOR, attr_bits);
    2440            8 :           break;
    2441           81 :         case OACC_ROUTINE_LOP_SEQ:
    2442           81 :           MIO_NAME (ab_attribute) (AB_OACC_ROUTINE_LOP_SEQ, attr_bits);
    2443           81 :           break;
    2444            0 :         case OACC_ROUTINE_LOP_ERROR:
    2445              :           /* ... intentionally omitted here; it's only used internally.  */
    2446            0 :         default:
    2447            0 :           gcc_unreachable ();
    2448              :         }
    2449       349481 :       if (attr->oacc_routine_nohost)
    2450           21 :         MIO_NAME (ab_attribute) (AB_OACC_ROUTINE_NOHOST, attr_bits);
    2451              : 
    2452       349481 :       if (attr->flavor == FL_MODULE && gfc_current_ns->omp_requires)
    2453              :         {
    2454           29 :           if (gfc_current_ns->omp_requires & OMP_REQ_REVERSE_OFFLOAD)
    2455           15 :             MIO_NAME (ab_attribute) (AB_OMP_REQ_REVERSE_OFFLOAD, attr_bits);
    2456           29 :           if (gfc_current_ns->omp_requires & OMP_REQ_UNIFIED_ADDRESS)
    2457            1 :             MIO_NAME (ab_attribute) (AB_OMP_REQ_UNIFIED_ADDRESS, attr_bits);
    2458           29 :           if (gfc_current_ns->omp_requires & OMP_REQ_UNIFIED_SHARED_MEMORY)
    2459            3 :             MIO_NAME (ab_attribute) (AB_OMP_REQ_UNIFIED_SHARED_MEMORY, attr_bits);
    2460           29 :           if (gfc_current_ns->omp_requires & OMP_REQ_SELF_MAPS)
    2461            1 :             MIO_NAME (ab_attribute) (AB_OMP_REQ_SELF_MAPS, attr_bits);
    2462           29 :           if (gfc_current_ns->omp_requires & OMP_REQ_DYNAMIC_ALLOCATORS)
    2463            2 :             MIO_NAME (ab_attribute) (AB_OMP_REQ_DYNAMIC_ALLOCATORS, attr_bits);
    2464           29 :           if ((gfc_current_ns->omp_requires & OMP_REQ_ATOMIC_MEM_ORDER_MASK)
    2465              :               == OMP_REQ_ATOMIC_MEM_ORDER_SEQ_CST)
    2466            3 :             MIO_NAME (ab_attribute) (AB_OMP_REQ_MEM_ORDER_SEQ_CST, attr_bits);
    2467           29 :           if ((gfc_current_ns->omp_requires & OMP_REQ_ATOMIC_MEM_ORDER_MASK)
    2468              :               == OMP_REQ_ATOMIC_MEM_ORDER_ACQ_REL)
    2469            3 :             MIO_NAME (ab_attribute) (AB_OMP_REQ_MEM_ORDER_ACQ_REL, attr_bits);
    2470           29 :           if ((gfc_current_ns->omp_requires & OMP_REQ_ATOMIC_MEM_ORDER_MASK)
    2471              :               == OMP_REQ_ATOMIC_MEM_ORDER_ACQUIRE)
    2472            0 :             MIO_NAME (ab_attribute) (AB_OMP_REQ_MEM_ORDER_ACQUIRE, attr_bits);
    2473           29 :           if ((gfc_current_ns->omp_requires & OMP_REQ_ATOMIC_MEM_ORDER_MASK)
    2474              :               == OMP_REQ_ATOMIC_MEM_ORDER_RELAXED)
    2475            3 :             MIO_NAME (ab_attribute) (AB_OMP_REQ_MEM_ORDER_RELAXED, attr_bits);
    2476           29 :           if ((gfc_current_ns->omp_requires & OMP_REQ_ATOMIC_MEM_ORDER_MASK)
    2477              :               == OMP_REQ_ATOMIC_MEM_ORDER_RELEASE)
    2478            0 :             MIO_NAME (ab_attribute) (AB_OMP_REQ_MEM_ORDER_RELEASE, attr_bits);
    2479              :         }
    2480       349481 :       switch (attr->omp_device_type)
    2481              :         {
    2482              :         case OMP_DEVICE_TYPE_UNSET:
    2483              :           break;
    2484           16 :         case OMP_DEVICE_TYPE_HOST:
    2485           16 :           MIO_NAME (ab_attribute) (AB_OMP_DEVICE_TYPE_HOST, attr_bits);
    2486           16 :           break;
    2487            9 :         case OMP_DEVICE_TYPE_NOHOST:
    2488            9 :           MIO_NAME (ab_attribute) (AB_OMP_DEVICE_TYPE_NOHOST, attr_bits);
    2489            9 :           break;
    2490          288 :         case OMP_DEVICE_TYPE_ANY:
    2491          288 :           MIO_NAME (ab_attribute) (AB_OMP_DEVICE_TYPE_ANY, attr_bits);
    2492          288 :           break;
    2493            0 :         default:
    2494            0 :           gcc_unreachable ();
    2495              :         }
    2496       349481 :       mio_rparen ();
    2497              :     }
    2498              :   else
    2499              :     {
    2500      3457008 :       for (;;)
    2501              :         {
    2502      3457008 :           t = parse_atom ();
    2503      3457008 :           if (t == ATOM_RPAREN)
    2504              :             break;
    2505      2234279 :           if (t != ATOM_NAME)
    2506            0 :             bad_module ("Expected attribute bit name");
    2507              : 
    2508      2234279 :           switch ((ab_attribute) find_enum (attr_bits))
    2509              :             {
    2510         4796 :             case AB_ALLOCATABLE:
    2511         4796 :               attr->allocatable = 1;
    2512         4796 :               break;
    2513       142784 :             case AB_ARTIFICIAL:
    2514       142784 :               attr->artificial = 1;
    2515       142784 :               break;
    2516            0 :             case AB_ASYNCHRONOUS:
    2517            0 :               attr->asynchronous = 1;
    2518            0 :               break;
    2519        67450 :             case AB_DIMENSION:
    2520        67450 :               attr->dimension = 1;
    2521        67450 :               break;
    2522          103 :             case AB_CODIMENSION:
    2523          103 :               attr->codimension = 1;
    2524          103 :               break;
    2525         8733 :             case AB_CONTIGUOUS:
    2526         8733 :               attr->contiguous = 1;
    2527         8733 :               break;
    2528       196554 :             case AB_EXTERNAL:
    2529       196554 :               attr->external = 1;
    2530       196554 :               break;
    2531         3663 :             case AB_INTRINSIC:
    2532         3663 :               attr->intrinsic = 1;
    2533         3663 :               break;
    2534         9304 :             case AB_OPTIONAL:
    2535         9304 :               attr->optional = 1;
    2536         9304 :               break;
    2537        44321 :             case AB_POINTER:
    2538        44321 :               attr->pointer = 1;
    2539        44321 :               break;
    2540          417 :             case AB_CLASS_POINTER:
    2541          417 :               attr->class_pointer = 1;
    2542          417 :               break;
    2543           62 :             case AB_PROTECTED:
    2544           62 :               attr->is_protected = 1;
    2545           62 :               break;
    2546        88875 :             case AB_VALUE:
    2547        88875 :               attr->value = 1;
    2548        88875 :               break;
    2549           15 :             case AB_VOLATILE:
    2550           15 :               attr->volatile_ = 1;
    2551           15 :               break;
    2552        27778 :             case AB_TARGET:
    2553        27778 :               attr->target = 1;
    2554        27778 :               break;
    2555           52 :             case AB_THREADPRIVATE:
    2556           52 :               attr->threadprivate = 1;
    2557           52 :               break;
    2558       433583 :             case AB_DUMMY:
    2559       433583 :               attr->dummy = 1;
    2560       433583 :               break;
    2561        34017 :             case AB_RESULT:
    2562        34017 :               attr->result = 1;
    2563        34017 :               break;
    2564           22 :             case AB_DATA:
    2565           22 :               attr->data = 1;
    2566           22 :               break;
    2567           83 :             case AB_IN_NAMELIST:
    2568           83 :               attr->in_namelist = 1;
    2569           83 :               break;
    2570          301 :             case AB_IN_COMMON:
    2571          301 :               attr->in_common = 1;
    2572          301 :               break;
    2573       191110 :             case AB_FUNCTION:
    2574       191110 :               attr->function = 1;
    2575       191110 :               break;
    2576        87545 :             case AB_SUBROUTINE:
    2577        87545 :               attr->subroutine = 1;
    2578        87545 :               break;
    2579        28291 :             case AB_GENERIC:
    2580        28291 :               attr->generic = 1;
    2581        28291 :               break;
    2582         2296 :             case AB_ABSTRACT:
    2583         2296 :               attr->abstract = 1;
    2584         2296 :               break;
    2585          137 :             case AB_SEQUENCE:
    2586          137 :               attr->sequence = 1;
    2587          137 :               break;
    2588        93073 :             case AB_ELEMENTAL:
    2589        93073 :               attr->elemental = 1;
    2590        93073 :               break;
    2591       118501 :             case AB_PURE:
    2592       118501 :               attr->pure = 1;
    2593       118501 :               break;
    2594         4292 :             case AB_IMPLICIT_PURE:
    2595         4292 :               attr->implicit_pure = 1;
    2596         4292 :               break;
    2597          323 :             case AB_UNLIMITED_POLY:
    2598          323 :               attr->unlimited_polymorphic = 1;
    2599          323 :               break;
    2600         2941 :             case AB_RECURSIVE:
    2601         2941 :               attr->recursive = 1;
    2602         2941 :               break;
    2603       156282 :             case AB_ALWAYS_EXPLICIT:
    2604       156282 :               attr->always_explicit = 1;
    2605       156282 :               break;
    2606           13 :             case AB_CRAY_POINTER:
    2607           13 :               attr->cray_pointer = 1;
    2608           13 :               break;
    2609           13 :             case AB_CRAY_POINTEE:
    2610           13 :               attr->cray_pointee = 1;
    2611           13 :               break;
    2612        47409 :             case AB_IS_BIND_C:
    2613        47409 :               attr->is_bind_c = 1;
    2614        47409 :               break;
    2615        80067 :             case AB_IS_C_INTEROP:
    2616        80067 :               attr->is_c_interop = 1;
    2617        80067 :               break;
    2618        28506 :             case AB_IS_ISO_C:
    2619        28506 :               attr->is_iso_c = 1;
    2620        28506 :               break;
    2621         2830 :             case AB_ALLOC_COMP:
    2622         2830 :               attr->alloc_comp = 1;
    2623         2830 :               break;
    2624           22 :             case AB_COARRAY_COMP:
    2625           22 :               attr->coarray_comp = 1;
    2626           22 :               break;
    2627            4 :             case AB_LOCK_COMP:
    2628            4 :               attr->lock_comp = 1;
    2629            4 :               break;
    2630            0 :             case AB_EVENT_COMP:
    2631            0 :               attr->event_comp = 1;
    2632            0 :               break;
    2633          884 :             case AB_POINTER_COMP:
    2634          884 :               attr->pointer_comp = 1;
    2635          884 :               break;
    2636          251 :             case AB_PROC_POINTER_COMP:
    2637          251 :               attr->proc_pointer_comp = 1;
    2638          251 :               break;
    2639        20593 :             case AB_PRIVATE_COMP:
    2640        20593 :               attr->private_comp = 1;
    2641        20593 :               break;
    2642         1853 :             case AB_ZERO_COMP:
    2643         1853 :               attr->zero_comp = 1;
    2644         1853 :               break;
    2645         4222 :             case AB_IS_CLASS:
    2646         4222 :               attr->is_class = 1;
    2647         4222 :               break;
    2648         5107 :             case AB_PROCEDURE:
    2649         5107 :               attr->procedure = 1;
    2650         5107 :               break;
    2651        50264 :             case AB_PROC_POINTER:
    2652        50264 :               attr->proc_pointer = 1;
    2653        50264 :               break;
    2654        15162 :             case AB_VTYPE:
    2655        15162 :               attr->vtype = 1;
    2656        15162 :               break;
    2657        14856 :             case AB_VTAB:
    2658        14856 :               attr->vtab = 1;
    2659        14856 :               break;
    2660          444 :             case AB_OMP_DECLARE_TARGET:
    2661          444 :               attr->omp_declare_target = 1;
    2662          444 :               break;
    2663           10 :             case AB_OMP_DECLARE_TARGET_LINK:
    2664           10 :               attr->omp_declare_target_link = 1;
    2665           10 :               break;
    2666            0 :             case AB_OMP_DECLARE_TARGET_LOCAL:
    2667            0 :               attr->omp_declare_target_local = 1;
    2668            0 :               break;
    2669            0 :             case AB_OMP_GROUPPRIVATE:
    2670            0 :               attr->omp_groupprivate = 1;
    2671            0 :               break;
    2672       210743 :             case AB_ARRAY_OUTER_DEPENDENCY:
    2673       210743 :               attr->array_outer_dependency =1;
    2674       210743 :               break;
    2675         1092 :             case AB_MODULE_PROCEDURE:
    2676         1092 :               attr->module_procedure =1;
    2677         1092 :               break;
    2678          110 :             case AB_OACC_DECLARE_CREATE:
    2679          110 :               attr->oacc_declare_create = 1;
    2680          110 :               break;
    2681            2 :             case AB_OACC_DECLARE_COPYIN:
    2682            2 :               attr->oacc_declare_copyin = 1;
    2683            2 :               break;
    2684            0 :             case AB_OACC_DECLARE_DEVICEPTR:
    2685            0 :               attr->oacc_declare_deviceptr = 1;
    2686            0 :               break;
    2687           34 :             case AB_OACC_DECLARE_DEVICE_RESIDENT:
    2688           34 :               attr->oacc_declare_device_resident = 1;
    2689           34 :               break;
    2690            2 :             case AB_OACC_DECLARE_LINK:
    2691            2 :               attr->oacc_declare_link = 1;
    2692            2 :               break;
    2693          514 :             case AB_PDT_KIND:
    2694          514 :               attr->pdt_kind = 1;
    2695          514 :               break;
    2696          466 :             case AB_PDT_LEN:
    2697          466 :               attr->pdt_len = 1;
    2698          466 :               break;
    2699          284 :             case AB_PDT_TYPE:
    2700          284 :               attr->pdt_type = 1;
    2701          284 :               break;
    2702           16 :             case AB_PDT_COMP:
    2703           16 :               attr->pdt_comp = 1;
    2704           16 :               break;
    2705          270 :             case AB_PDT_TEMPLATE:
    2706          270 :               attr->pdt_template = 1;
    2707          270 :               break;
    2708           75 :             case AB_PDT_ARRAY:
    2709           75 :               attr->pdt_array = 1;
    2710           75 :               break;
    2711            0 :             case AB_PDT_STRING:
    2712            0 :               attr->pdt_string = 1;
    2713            0 :               break;
    2714            8 :             case AB_OACC_ROUTINE_LOP_GANG:
    2715            8 :               verify_OACC_ROUTINE_LOP_NONE (attr->oacc_routine_lop);
    2716            8 :               attr->oacc_routine_lop = OACC_ROUTINE_LOP_GANG;
    2717            8 :               break;
    2718            8 :             case AB_OACC_ROUTINE_LOP_WORKER:
    2719            8 :               verify_OACC_ROUTINE_LOP_NONE (attr->oacc_routine_lop);
    2720            8 :               attr->oacc_routine_lop = OACC_ROUTINE_LOP_WORKER;
    2721            8 :               break;
    2722            8 :             case AB_OACC_ROUTINE_LOP_VECTOR:
    2723            8 :               verify_OACC_ROUTINE_LOP_NONE (attr->oacc_routine_lop);
    2724            8 :               attr->oacc_routine_lop = OACC_ROUTINE_LOP_VECTOR;
    2725            8 :               break;
    2726           72 :             case AB_OACC_ROUTINE_LOP_SEQ:
    2727           72 :               verify_OACC_ROUTINE_LOP_NONE (attr->oacc_routine_lop);
    2728           72 :               attr->oacc_routine_lop = OACC_ROUTINE_LOP_SEQ;
    2729           72 :               break;
    2730           20 :             case AB_OACC_ROUTINE_NOHOST:
    2731           20 :               attr->oacc_routine_nohost = 1;
    2732           20 :               break;
    2733           24 :             case AB_OMP_REQ_REVERSE_OFFLOAD:
    2734           24 :               gfc_omp_requires_add_clause (OMP_REQ_REVERSE_OFFLOAD,
    2735              :                                            "reverse_offload",
    2736              :                                            &gfc_current_locus,
    2737              :                                            module_name);
    2738           24 :               break;
    2739            0 :             case AB_OMP_REQ_UNIFIED_ADDRESS:
    2740            0 :               gfc_omp_requires_add_clause (OMP_REQ_UNIFIED_ADDRESS,
    2741              :                                            "unified_address",
    2742              :                                            &gfc_current_locus,
    2743              :                                            module_name);
    2744            0 :               break;
    2745            0 :             case AB_OMP_REQ_UNIFIED_SHARED_MEMORY:
    2746            0 :               gfc_omp_requires_add_clause (OMP_REQ_UNIFIED_SHARED_MEMORY,
    2747              :                                            "unified_shared_memory",
    2748              :                                            &gfc_current_locus,
    2749              :                                            module_name);
    2750            0 :               break;
    2751            1 :             case AB_OMP_REQ_SELF_MAPS:
    2752            1 :               gfc_omp_requires_add_clause (OMP_REQ_SELF_MAPS,
    2753              :                                            "self_maps",
    2754              :                                            &gfc_current_locus,
    2755              :                                            module_name);
    2756            1 :               break;
    2757            0 :             case AB_OMP_REQ_DYNAMIC_ALLOCATORS:
    2758            0 :               gfc_omp_requires_add_clause (OMP_REQ_DYNAMIC_ALLOCATORS,
    2759              :                                            "dynamic_allocators",
    2760              :                                            &gfc_current_locus,
    2761              :                                            module_name);
    2762            0 :               break;
    2763            2 :             case AB_OMP_REQ_MEM_ORDER_SEQ_CST:
    2764            2 :               gfc_omp_requires_add_clause (OMP_REQ_ATOMIC_MEM_ORDER_SEQ_CST,
    2765              :                                            "seq_cst", &gfc_current_locus,
    2766              :                                            module_name);
    2767            2 :               break;
    2768            2 :             case AB_OMP_REQ_MEM_ORDER_ACQ_REL:
    2769            2 :               gfc_omp_requires_add_clause (OMP_REQ_ATOMIC_MEM_ORDER_ACQ_REL,
    2770              :                                            "acq_rel", &gfc_current_locus,
    2771              :                                            module_name);
    2772            2 :               break;
    2773            0 :             case AB_OMP_REQ_MEM_ORDER_ACQUIRE:
    2774            0 :               gfc_omp_requires_add_clause (OMP_REQ_ATOMIC_MEM_ORDER_ACQUIRE,
    2775              :                                            "acquires", &gfc_current_locus,
    2776              :                                            module_name);
    2777            0 :               break;
    2778            2 :             case AB_OMP_REQ_MEM_ORDER_RELAXED:
    2779            2 :               gfc_omp_requires_add_clause (OMP_REQ_ATOMIC_MEM_ORDER_RELAXED,
    2780              :                                            "relaxed", &gfc_current_locus,
    2781              :                                            module_name);
    2782            2 :               break;
    2783            0 :             case AB_OMP_REQ_MEM_ORDER_RELEASE:
    2784            0 :               gfc_omp_requires_add_clause (OMP_REQ_ATOMIC_MEM_ORDER_RELEASE,
    2785              :                                            "release", &gfc_current_locus,
    2786              :                                            module_name);
    2787            0 :               break;
    2788            8 :             case AB_OMP_DEVICE_TYPE_HOST:
    2789            8 :               attr->omp_device_type = OMP_DEVICE_TYPE_HOST;
    2790            8 :               break;
    2791            5 :             case AB_OMP_DEVICE_TYPE_NOHOST:
    2792            5 :               attr->omp_device_type = OMP_DEVICE_TYPE_NOHOST;
    2793            5 :               break;
    2794          297 :             case AB_OMP_DEVICE_TYPE_ANY:
    2795          297 :               attr->omp_device_type = OMP_DEVICE_TYPE_ANY;
    2796          297 :               break;
    2797              :             }
    2798              :         }
    2799              :     }
    2800      1572210 : }
    2801              : 
    2802              : 
    2803              : static const mstring bt_types[] = {
    2804              :     minit ("INTEGER", BT_INTEGER),
    2805              :     minit ("REAL", BT_REAL),
    2806              :     minit ("COMPLEX", BT_COMPLEX),
    2807              :     minit ("LOGICAL", BT_LOGICAL),
    2808              :     minit ("CHARACTER", BT_CHARACTER),
    2809              :     minit ("UNION", BT_UNION),
    2810              :     minit ("DERIVED", BT_DERIVED),
    2811              :     minit ("CLASS", BT_CLASS),
    2812              :     minit ("PROCEDURE", BT_PROCEDURE),
    2813              :     minit ("UNKNOWN", BT_UNKNOWN),
    2814              :     minit ("VOID", BT_VOID),
    2815              :     minit ("ASSUMED", BT_ASSUMED),
    2816              :     minit ("UNSIGNED", BT_UNSIGNED),
    2817              :     minit (NULL, -1)
    2818              : };
    2819              : 
    2820              : 
    2821              : static void
    2822        41534 : mio_charlen (gfc_charlen **clp)
    2823              : {
    2824        41534 :   gfc_charlen *cl;
    2825              : 
    2826        41534 :   mio_lparen ();
    2827              : 
    2828        41534 :   if (iomode == IO_OUTPUT)
    2829              :     {
    2830        19511 :       cl = *clp;
    2831        19511 :       if (cl != NULL)
    2832        18746 :         mio_expr (&cl->length);
    2833              :     }
    2834              :   else
    2835              :     {
    2836        22023 :       if (peek_atom () != ATOM_RPAREN)
    2837              :         {
    2838        21559 :           cl = gfc_new_charlen (gfc_current_ns, NULL);
    2839        21559 :           mio_expr (&cl->length);
    2840        21559 :           *clp = cl;
    2841              :         }
    2842              :     }
    2843              : 
    2844        41534 :   mio_rparen ();
    2845        41534 : }
    2846              : 
    2847              : 
    2848              : /* See if a name is a generated name.  */
    2849              : 
    2850              : static int
    2851       774549 : check_unique_name (const char *name)
    2852              : {
    2853       774549 :   return *name == '@';
    2854              : }
    2855              : 
    2856              : 
    2857              : static void
    2858      2016639 : mio_typespec (gfc_typespec *ts)
    2859              : {
    2860      2016639 :   mio_lparen ();
    2861              : 
    2862      2016639 :   ts->type = MIO_NAME (bt) (ts->type, bt_types);
    2863              : 
    2864      2016639 :   if (!gfc_bt_struct (ts->type) && ts->type != BT_CLASS)
    2865      1709469 :     mio_integer (&ts->kind);
    2866              :   else
    2867       307170 :     mio_symbol_ref (&ts->u.derived);
    2868              : 
    2869      2016639 :   mio_symbol_ref (&ts->interface);
    2870              : 
    2871              :   /* Add info for C interop and is_iso_c.  */
    2872      2016639 :   mio_integer (&ts->is_c_interop);
    2873      2016639 :   mio_integer (&ts->is_iso_c);
    2874              : 
    2875              :   /* If the typespec is for an identifier either from iso_c_binding, or
    2876              :      a constant that was initialized to an identifier from it, use the
    2877              :      f90_type.  Otherwise, use the ts->type, since it shouldn't matter.  */
    2878      2016639 :   if (ts->is_iso_c)
    2879       126637 :     ts->f90_type = MIO_NAME (bt) (ts->f90_type, bt_types);
    2880              :   else
    2881      1890002 :     ts->f90_type = MIO_NAME (bt) (ts->type, bt_types);
    2882              : 
    2883      2016639 :   if (ts->type != BT_CHARACTER)
    2884              :     {
    2885              :       /* ts->u.cl is only valid for BT_CHARACTER.  */
    2886      1975111 :       mio_lparen ();
    2887      1975111 :       mio_rparen ();
    2888              :     }
    2889              :   else
    2890        41528 :     mio_charlen (&ts->u.cl);
    2891              : 
    2892              :   /* So as not to disturb the existing API, use an ATOM_NAME to
    2893              :      transmit deferred characteristic for characters (F2003).  */
    2894      2016639 :   if (iomode == IO_OUTPUT)
    2895              :     {
    2896       451043 :       if (ts->type == BT_CHARACTER && ts->deferred)
    2897          742 :         write_atom (ATOM_NAME, "DEFERRED_CL");
    2898              :     }
    2899      1565596 :   else if (peek_atom () != ATOM_RPAREN)
    2900              :     {
    2901         4879 :       if (parse_atom () != ATOM_NAME)
    2902            0 :         bad_module ("Expected string");
    2903         4879 :       ts->deferred = 1;
    2904              :     }
    2905              : 
    2906      2016639 :   mio_rparen ();
    2907      2016639 : }
    2908              : 
    2909              : 
    2910              : static const mstring array_spec_types[] = {
    2911              :     minit ("EXPLICIT", AS_EXPLICIT),
    2912              :     minit ("ASSUMED_RANK", AS_ASSUMED_RANK),
    2913              :     minit ("ASSUMED_SHAPE", AS_ASSUMED_SHAPE),
    2914              :     minit ("DEFERRED", AS_DEFERRED),
    2915              :     minit ("ASSUMED_SIZE", AS_ASSUMED_SIZE),
    2916              :     minit (NULL, -1)
    2917              : };
    2918              : 
    2919              : 
    2920              : static void
    2921      1572190 : mio_array_spec (gfc_array_spec **asp)
    2922              : {
    2923      1572190 :   gfc_array_spec *as;
    2924      1572190 :   int i;
    2925              : 
    2926      1572190 :   mio_lparen ();
    2927              : 
    2928      1572190 :   if (iomode == IO_OUTPUT)
    2929              :     {
    2930       349481 :       int rank;
    2931              : 
    2932       349481 :       if (*asp == NULL)
    2933       330720 :         goto done;
    2934        18761 :       as = *asp;
    2935              : 
    2936              :       /* mio_integer expects nonnegative values.  */
    2937        18761 :       rank = as->rank > 0 ? as->rank : 0;
    2938        18761 :       mio_integer (&rank);
    2939              :     }
    2940              :   else
    2941              :     {
    2942      1222709 :       if (peek_atom () == ATOM_RPAREN)
    2943              :         {
    2944      1155182 :           *asp = NULL;
    2945      1155182 :           goto done;
    2946              :         }
    2947              : 
    2948        67527 :       *asp = as = gfc_get_array_spec ();
    2949        67527 :       mio_integer (&as->rank);
    2950              :     }
    2951              : 
    2952        86288 :   mio_integer (&as->corank);
    2953        86288 :   as->type = MIO_NAME (array_type) (as->type, array_spec_types);
    2954              : 
    2955        86288 :   if (iomode == IO_INPUT && as->type == AS_ASSUMED_RANK)
    2956        24874 :     as->rank = -1;
    2957        86288 :   if (iomode == IO_INPUT && as->corank)
    2958          166 :     as->cotype = (as->type == AS_DEFERRED) ? AS_DEFERRED : AS_EXPLICIT;
    2959              : 
    2960        86288 :   if (as->rank + as->corank > 0)
    2961       120114 :     for (i = 0; i < as->rank + as->corank; i++)
    2962              :       {
    2963        62813 :         mio_expr (&as->lower[i]);
    2964        62813 :         mio_expr (&as->upper[i]);
    2965              :       }
    2966              : 
    2967        28987 : done:
    2968      1572190 :   mio_rparen ();
    2969      1572190 : }
    2970              : 
    2971              : 
    2972              : /* Given a pointer to an array reference structure (which lives in a
    2973              :    gfc_ref structure), find the corresponding array specification
    2974              :    structure.  Storing the pointer in the ref structure doesn't quite
    2975              :    work when loading from a module. Generating code for an array
    2976              :    reference also needs more information than just the array spec.  */
    2977              : 
    2978              : static const mstring array_ref_types[] = {
    2979              :     minit ("FULL", AR_FULL),
    2980              :     minit ("ELEMENT", AR_ELEMENT),
    2981              :     minit ("SECTION", AR_SECTION),
    2982              :     minit (NULL, -1)
    2983              : };
    2984              : 
    2985              : 
    2986              : static void
    2987         1807 : mio_array_ref (gfc_array_ref *ar)
    2988              : {
    2989         1807 :   int i;
    2990              : 
    2991         1807 :   mio_lparen ();
    2992         1807 :   ar->type = MIO_NAME (ar_type) (ar->type, array_ref_types);
    2993         1807 :   mio_integer (&ar->dimen);
    2994              : 
    2995         1807 :   switch (ar->type)
    2996              :     {
    2997              :     case AR_FULL:
    2998              :       break;
    2999              : 
    3000              :     case AR_ELEMENT:
    3001          982 :       for (i = 0; i < ar->dimen; i++)
    3002          505 :         mio_expr (&ar->start[i]);
    3003              : 
    3004              :       break;
    3005              : 
    3006              :     case AR_SECTION:
    3007            0 :       for (i = 0; i < ar->dimen; i++)
    3008              :         {
    3009            0 :           mio_expr (&ar->start[i]);
    3010            0 :           mio_expr (&ar->end[i]);
    3011            0 :           mio_expr (&ar->stride[i]);
    3012              :         }
    3013              : 
    3014              :       break;
    3015              : 
    3016            0 :     case AR_UNKNOWN:
    3017            0 :       gfc_internal_error ("mio_array_ref(): Unknown array ref");
    3018              :     }
    3019              : 
    3020              :   /* Unfortunately, ar->dimen_type is an anonymous enumerated type so
    3021              :      we can't call mio_integer directly.  Instead loop over each element
    3022              :      and cast it to/from an integer.  */
    3023         1807 :   if (iomode == IO_OUTPUT)
    3024              :     {
    3025         2030 :       for (i = 0; i < ar->dimen; i++)
    3026              :         {
    3027         1132 :           HOST_WIDE_INT tmp = (HOST_WIDE_INT)ar->dimen_type[i];
    3028         1132 :           write_atom (ATOM_INTEGER, &tmp);
    3029              :         }
    3030              :     }
    3031              :   else
    3032              :     {
    3033         2084 :       for (i = 0; i < ar->dimen; i++)
    3034              :         {
    3035         1175 :           require_atom (ATOM_INTEGER);
    3036         1175 :           ar->dimen_type[i] = (enum gfc_array_ref_dimen_type) atom_int;
    3037              :         }
    3038              :     }
    3039              : 
    3040         1807 :   if (iomode == IO_INPUT)
    3041              :     {
    3042          909 :       ar->where = gfc_current_locus;
    3043              : 
    3044         2084 :       for (i = 0; i < ar->dimen; i++)
    3045         1175 :         ar->c_where[i] = gfc_current_locus;
    3046              :     }
    3047              : 
    3048         1807 :   mio_rparen ();
    3049         1807 : }
    3050              : 
    3051              : 
    3052              : /* Saves or restores a pointer.  The pointer is converted back and
    3053              :    forth from an integer.  We return the pointer_info pointer so that
    3054              :    the caller can take additional action based on the pointer type.  */
    3055              : 
    3056              : static pointer_info *
    3057      7216434 : mio_pointer_ref (void *gp)
    3058              : {
    3059      7216434 :   pointer_info *p;
    3060              : 
    3061      7216434 :   if (iomode == IO_OUTPUT)
    3062              :     {
    3063      1648735 :       p = get_pointer (*((char **) gp));
    3064      1648735 :       HOST_WIDE_INT hwi = p->integer;
    3065      1648735 :       write_atom (ATOM_INTEGER, &hwi);
    3066              :     }
    3067              :   else
    3068              :     {
    3069      5567699 :       require_atom (ATOM_INTEGER);
    3070      5567699 :       p = add_fixup (atom_int, gp);
    3071              :     }
    3072              : 
    3073      7216434 :   return p;
    3074              : }
    3075              : 
    3076              : 
    3077              : /* Save and load references to components that occur within
    3078              :    expressions.  We have to describe these references by a number and
    3079              :    by name.  The number is necessary for forward references during
    3080              :    reading, and the name is necessary if the symbol already exists in
    3081              :    the namespace and is not loaded again.  */
    3082              : 
    3083              : static void
    3084          825 : mio_component_ref (gfc_component **cp)
    3085              : {
    3086          825 :   pointer_info *p;
    3087              : 
    3088          825 :   p = mio_pointer_ref (cp);
    3089          825 :   if (p->type == P_UNKNOWN)
    3090          180 :     p->type = P_COMPONENT;
    3091          825 : }
    3092              : 
    3093              : 
    3094              : static void mio_namespace_ref (gfc_namespace **nsp);
    3095              : static void mio_formal_arglist (gfc_formal_arglist **formal);
    3096              : static void mio_typebound_proc (gfc_typebound_proc** proc);
    3097              : static void mio_actual_arglist (gfc_actual_arglist **ap, bool pdt);
    3098              : 
    3099              : static void
    3100       264210 : mio_component (gfc_component *c, int vtype)
    3101              : {
    3102       264210 :   pointer_info *p;
    3103              : 
    3104       264210 :   mio_lparen ();
    3105              : 
    3106       264210 :   if (iomode == IO_OUTPUT)
    3107              :     {
    3108       104988 :       p = get_pointer (c);
    3109       104988 :       mio_hwi (&p->integer);
    3110              :     }
    3111              :   else
    3112              :     {
    3113       159222 :       HOST_WIDE_INT n;
    3114       159222 :       mio_hwi (&n);
    3115       159222 :       p = get_integer (n);
    3116       159222 :       associate_integer_pointer (p, c);
    3117              :     }
    3118              : 
    3119       264210 :   if (p->type == P_UNKNOWN)
    3120       264060 :     p->type = P_COMPONENT;
    3121              : 
    3122       264210 :   mio_pool_string (&c->name);
    3123       264210 :   mio_typespec (&c->ts);
    3124       264210 :   mio_array_spec (&c->as);
    3125              : 
    3126              :   /* PDT templates store the expression for the kind of a component here.  */
    3127       264210 :   mio_expr (&c->kind_expr);
    3128              : 
    3129              :   /* PDT types store the component specification list here. */
    3130       264210 :   mio_actual_arglist (&c->param_list, true);
    3131              : 
    3132       264210 :   mio_symbol_attribute (&c->attr);
    3133       264210 :   if (c->ts.type == BT_CLASS)
    3134         2149 :     c->attr.class_ok = 1;
    3135       264210 :   c->attr.access = MIO_NAME (gfc_access) (c->attr.access, access_types);
    3136              : 
    3137       264210 :   if (!vtype || strcmp (c->name, "_final") == 0
    3138       164538 :       || strcmp (c->name, "_hash") == 0)
    3139       125544 :     mio_expr (&c->initializer);
    3140              : 
    3141       264210 :   if (c->attr.proc_pointer)
    3142        87376 :     mio_typebound_proc (&c->tb);
    3143              : 
    3144       264210 :   c->loc = gfc_current_locus;
    3145              : 
    3146       264210 :   mio_rparen ();
    3147       264210 : }
    3148              : 
    3149              : 
    3150              : static void
    3151      1307980 : mio_component_list (gfc_component **cp, int vtype)
    3152              : {
    3153      1307980 :   gfc_component *c, *tail;
    3154              : 
    3155      1307980 :   mio_lparen ();
    3156              : 
    3157      1307980 :   if (iomode == IO_OUTPUT)
    3158              :     {
    3159       349481 :       for (c = *cp; c; c = c->next)
    3160       104988 :         mio_component (c, vtype);
    3161              :     }
    3162              :   else
    3163              :     {
    3164      1063487 :       *cp = NULL;
    3165      1063487 :       tail = NULL;
    3166              : 
    3167      1222709 :       for (;;)
    3168              :         {
    3169      1222709 :           if (peek_atom () == ATOM_RPAREN)
    3170              :             break;
    3171              : 
    3172       159222 :           c = gfc_get_component ();
    3173       159222 :           mio_component (c, vtype);
    3174              : 
    3175       159222 :           if (tail == NULL)
    3176        50170 :             *cp = c;
    3177              :           else
    3178       109052 :             tail->next = c;
    3179              : 
    3180              :           tail = c;
    3181              :         }
    3182              :     }
    3183              : 
    3184      1307980 :   mio_rparen ();
    3185      1307980 : }
    3186              : 
    3187              : 
    3188              : static void
    3189         7499 : mio_actual_arg (gfc_actual_arglist *a, bool pdt)
    3190              : {
    3191         7499 :   mio_lparen ();
    3192         7499 :   mio_pool_string (&a->name);
    3193         7499 :   mio_expr (&a->expr);
    3194         7499 :   if (pdt)
    3195         1535 :     mio_integer ((int *)&a->spec_type);
    3196         7499 :   mio_rparen ();
    3197         7499 : }
    3198              : 
    3199              : 
    3200              : static void
    3201      2019233 : mio_actual_arglist (gfc_actual_arglist **ap, bool pdt)
    3202              : {
    3203      2019233 :   gfc_actual_arglist *a, *tail;
    3204              : 
    3205      2019233 :   mio_lparen ();
    3206              : 
    3207      2019233 :   if (iomode == IO_OUTPUT)
    3208              :     {
    3209       456252 :       for (a = *ap; a; a = a->next)
    3210         3861 :         mio_actual_arg (a, pdt);
    3211              : 
    3212              :     }
    3213              :   else
    3214              :     {
    3215              :       tail = NULL;
    3216              : 
    3217      1574118 :       for (;;)
    3218              :         {
    3219      1570480 :           if (peek_atom () != ATOM_LPAREN)
    3220              :             break;
    3221              : 
    3222         3638 :           a = gfc_get_actual_arglist ();
    3223              : 
    3224         3638 :           if (tail == NULL)
    3225         1907 :             *ap = a;
    3226              :           else
    3227         1731 :             tail->next = a;
    3228              : 
    3229         3638 :           tail = a;
    3230         3638 :           mio_actual_arg (a, pdt);
    3231              :         }
    3232              :     }
    3233              : 
    3234      2019233 :   mio_rparen ();
    3235      2019233 : }
    3236              : 
    3237              : 
    3238              : /* Read and write formal argument lists.  */
    3239              : 
    3240              : static void
    3241      1307980 : mio_formal_arglist (gfc_formal_arglist **formal)
    3242              : {
    3243      1307980 :   gfc_formal_arglist *f, *tail;
    3244              : 
    3245      1307980 :   mio_lparen ();
    3246              : 
    3247      1307980 :   if (iomode == IO_OUTPUT)
    3248              :     {
    3249       327711 :       for (f = *formal; f; f = f->next)
    3250        83218 :         mio_symbol_ref (&f->sym);
    3251              :     }
    3252              :   else
    3253              :     {
    3254      1063487 :       *formal = tail = NULL;
    3255              : 
    3256      1497169 :       while (peek_atom () != ATOM_RPAREN)
    3257              :         {
    3258       433682 :           f = gfc_get_formal_arglist ();
    3259       433682 :           mio_symbol_ref (&f->sym);
    3260              : 
    3261       433682 :           if (*formal == NULL)
    3262       229429 :             *formal = f;
    3263              :           else
    3264       204253 :             tail->next = f;
    3265              : 
    3266              :           tail = f;
    3267              :         }
    3268              :     }
    3269              : 
    3270      1307980 :   mio_rparen ();
    3271      1307980 : }
    3272              : 
    3273              : 
    3274              : /* Save or restore a reference to a symbol node.  */
    3275              : 
    3276              : pointer_info *
    3277      5663113 : mio_symbol_ref (gfc_symbol **symp)
    3278              : {
    3279      5663113 :   pointer_info *p;
    3280              : 
    3281      5663113 :   p = mio_pointer_ref (symp);
    3282      5663113 :   if (p->type == P_UNKNOWN)
    3283       141033 :     p->type = P_SYMBOL;
    3284              : 
    3285      5663113 :   if (iomode == IO_OUTPUT)
    3286              :     {
    3287      1159247 :       if (p->u.wsym.state == UNREFERENCED)
    3288       158556 :         p->u.wsym.state = NEEDS_WRITE;
    3289              :     }
    3290              :   else
    3291              :     {
    3292      4503866 :       if (p->u.rsym.state == UNUSED)
    3293       643753 :         p->u.rsym.state = NEEDED;
    3294              :     }
    3295      5663113 :   return p;
    3296              : }
    3297              : 
    3298              : 
    3299              : /* Save or restore a reference to a symtree node.  */
    3300              : 
    3301              : static void
    3302        30228 : mio_symtree_ref (gfc_symtree **stp)
    3303              : {
    3304        30228 :   pointer_info *p;
    3305        30228 :   fixup_t *f;
    3306              : 
    3307        30228 :   if (iomode == IO_OUTPUT)
    3308        15126 :     mio_symbol_ref (&(*stp)->n.sym);
    3309              :   else
    3310              :     {
    3311        15102 :       require_atom (ATOM_INTEGER);
    3312        15102 :       p = get_integer (atom_int);
    3313              : 
    3314              :       /* An unused equivalence member; make a symbol and a symtree
    3315              :          for it.  */
    3316        15102 :       if (in_load_equiv && p->u.rsym.symtree == NULL)
    3317              :         {
    3318              :           /* Since this is not used, it must have a unique name.  */
    3319           87 :           p->u.rsym.symtree = gfc_get_unique_symtree (gfc_current_ns);
    3320              : 
    3321              :           /* Make the symbol.  */
    3322           87 :           if (p->u.rsym.sym == NULL)
    3323              :             {
    3324           75 :               p->u.rsym.sym = gfc_new_symbol (p->u.rsym.true_name,
    3325              :                                               gfc_current_ns);
    3326           75 :               p->u.rsym.sym->module = gfc_get_string ("%s", p->u.rsym.module);
    3327              :             }
    3328              : 
    3329           87 :           p->u.rsym.symtree->n.sym = p->u.rsym.sym;
    3330           87 :           p->u.rsym.symtree->n.sym->refs++;
    3331           87 :           p->u.rsym.referenced = 1;
    3332              : 
    3333              :           /* If the symbol is PRIVATE and in COMMON, load_commons will
    3334              :              generate a fixup symbol, which must be associated.  */
    3335           87 :           if (p->fixup)
    3336            2 :             resolve_fixups (p->fixup, p->u.rsym.sym);
    3337           87 :           p->fixup = NULL;
    3338              :         }
    3339              : 
    3340        15102 :       if (p->type == P_UNKNOWN)
    3341            0 :         p->type = P_SYMBOL;
    3342              : 
    3343        15102 :       if (p->u.rsym.state == UNUSED)
    3344         2609 :         p->u.rsym.state = NEEDED;
    3345              : 
    3346        15102 :       if (p->u.rsym.symtree != NULL)
    3347              :         {
    3348         3692 :           *stp = p->u.rsym.symtree;
    3349              :         }
    3350              :       else
    3351              :         {
    3352        11410 :           f = XCNEW (fixup_t);
    3353              : 
    3354        11410 :           f->next = p->u.rsym.stfixup;
    3355        11410 :           p->u.rsym.stfixup = f;
    3356              : 
    3357        11410 :           f->pointer = (void **) stp;
    3358              :         }
    3359              :     }
    3360        30228 : }
    3361              : 
    3362              : 
    3363              : static void
    3364        34405 : mio_iterator (gfc_iterator **ip)
    3365              : {
    3366        34405 :   gfc_iterator *iter;
    3367              : 
    3368        34405 :   mio_lparen ();
    3369              : 
    3370        34405 :   if (iomode == IO_OUTPUT)
    3371              :     {
    3372         9638 :       if (*ip == NULL)
    3373         9632 :         goto done;
    3374              :     }
    3375              :   else
    3376              :     {
    3377        24767 :       if (peek_atom () == ATOM_RPAREN)
    3378              :         {
    3379        24761 :           *ip = NULL;
    3380        24761 :           goto done;
    3381              :         }
    3382              : 
    3383            6 :       *ip = gfc_get_iterator ();
    3384              :     }
    3385              : 
    3386           12 :   iter = *ip;
    3387              : 
    3388           12 :   mio_expr (&iter->var);
    3389           12 :   mio_expr (&iter->start);
    3390           12 :   mio_expr (&iter->end);
    3391           12 :   mio_expr (&iter->step);
    3392              : 
    3393        34405 : done:
    3394        34405 :   mio_rparen ();
    3395        34405 : }
    3396              : 
    3397              : 
    3398              : static void
    3399        21140 : mio_constructor (gfc_constructor_base *cp)
    3400              : {
    3401        21140 :   gfc_constructor *c;
    3402              : 
    3403        21140 :   mio_lparen ();
    3404              : 
    3405        21140 :   if (iomode == IO_OUTPUT)
    3406              :     {
    3407        13759 :       for (c = gfc_constructor_first (*cp); c; c = gfc_constructor_next (c))
    3408              :         {
    3409         9638 :           mio_lparen ();
    3410         9638 :           mio_expr (&c->expr);
    3411         9638 :           mio_iterator (&c->iterator);
    3412         9638 :           mio_rparen ();
    3413              :         }
    3414              :     }
    3415              :   else
    3416              :     {
    3417        41786 :       while (peek_atom () != ATOM_RPAREN)
    3418              :         {
    3419        24767 :           c = gfc_constructor_append_expr (cp, NULL, NULL);
    3420              : 
    3421        24767 :           mio_lparen ();
    3422        24767 :           mio_expr (&c->expr);
    3423        24767 :           mio_iterator (&c->iterator);
    3424        24767 :           mio_rparen ();
    3425              :         }
    3426              :     }
    3427              : 
    3428        21140 :   mio_rparen ();
    3429        21140 : }
    3430              : 
    3431              : 
    3432              : static const mstring ref_types[] = {
    3433              :     minit ("ARRAY", REF_ARRAY),
    3434              :     minit ("COMPONENT", REF_COMPONENT),
    3435              :     minit ("SUBSTRING", REF_SUBSTRING),
    3436              :     minit ("INQUIRY", REF_INQUIRY),
    3437              :     minit (NULL, -1)
    3438              : };
    3439              : 
    3440              : static const mstring inquiry_types[] = {
    3441              :     minit ("RE", INQUIRY_RE),
    3442              :     minit ("IM", INQUIRY_IM),
    3443              :     minit ("KIND", INQUIRY_KIND),
    3444              :     minit ("LEN", INQUIRY_LEN),
    3445              :     minit (NULL, -1)
    3446              : };
    3447              : 
    3448              : 
    3449              : static void
    3450         2638 : mio_ref (gfc_ref **rp)
    3451              : {
    3452         2638 :   gfc_ref *r;
    3453              : 
    3454         2638 :   mio_lparen ();
    3455              : 
    3456         2638 :   r = *rp;
    3457         2638 :   r->type = MIO_NAME (ref_type) (r->type, ref_types);
    3458              : 
    3459         2638 :   switch (r->type)
    3460              :     {
    3461         1807 :     case REF_ARRAY:
    3462         1807 :       mio_array_ref (&r->u.ar);
    3463         1807 :       break;
    3464              : 
    3465          825 :     case REF_COMPONENT:
    3466          825 :       mio_symbol_ref (&r->u.c.sym);
    3467          825 :       mio_component_ref (&r->u.c.component);
    3468          825 :       break;
    3469              : 
    3470            6 :     case REF_SUBSTRING:
    3471            6 :       mio_expr (&r->u.ss.start);
    3472            6 :       mio_expr (&r->u.ss.end);
    3473            6 :       mio_charlen (&r->u.ss.length);
    3474            6 :       break;
    3475              : 
    3476            0 :     case REF_INQUIRY:
    3477            0 :       r->u.i = MIO_NAME (inquiry_type) (r->u.i, inquiry_types);
    3478            0 :       break;
    3479              :     }
    3480              : 
    3481         2638 :   mio_rparen ();
    3482         2638 : }
    3483              : 
    3484              : 
    3485              : static void
    3486        16361 : mio_ref_list (gfc_ref **rp)
    3487              : {
    3488        16361 :   gfc_ref *ref, *head, *tail;
    3489              : 
    3490        16361 :   mio_lparen ();
    3491              : 
    3492        16361 :   if (iomode == IO_OUTPUT)
    3493              :     {
    3494         9179 :       for (ref = *rp; ref; ref = ref->next)
    3495         1388 :         mio_ref (&ref);
    3496              :     }
    3497              :   else
    3498              :     {
    3499         8570 :       head = tail = NULL;
    3500              : 
    3501         9820 :       while (peek_atom () != ATOM_RPAREN)
    3502              :         {
    3503         1250 :           if (head == NULL)
    3504         1093 :             head = tail = gfc_get_ref ();
    3505              :           else
    3506              :             {
    3507          157 :               tail->next = gfc_get_ref ();
    3508          157 :               tail = tail->next;
    3509              :             }
    3510              : 
    3511         1250 :           mio_ref (&tail);
    3512              :         }
    3513              : 
    3514         8570 :       *rp = head;
    3515              :     }
    3516              : 
    3517        16361 :   mio_rparen ();
    3518        16361 : }
    3519              : 
    3520              : 
    3521              : /* Read and write an integer value.  */
    3522              : 
    3523              : static void
    3524       370025 : mio_gmp_integer (mpz_t *integer)
    3525              : {
    3526       370025 :   char *p;
    3527              : 
    3528       370025 :   if (iomode == IO_INPUT)
    3529              :     {
    3530       298462 :       if (parse_atom () != ATOM_STRING)
    3531            0 :         bad_module ("Expected integer string");
    3532              : 
    3533       298462 :       mpz_init (*integer);
    3534       298462 :       if (mpz_set_str (*integer, atom_string, 10))
    3535            0 :         bad_module ("Error converting integer");
    3536              : 
    3537       298462 :       free (atom_string);
    3538              :     }
    3539              :   else
    3540              :     {
    3541        71563 :       p = mpz_get_str (NULL, 10, *integer);
    3542        71563 :       write_atom (ATOM_STRING, p);
    3543        71563 :       free (p);
    3544              :     }
    3545       370025 : }
    3546              : 
    3547              : 
    3548              : static void
    3549         2075 : mio_gmp_real (mpfr_t *real)
    3550              : {
    3551         2075 :   mpfr_exp_t exponent;
    3552         2075 :   char *p;
    3553              : 
    3554         2075 :   if (iomode == IO_INPUT)
    3555              :     {
    3556          968 :       if (parse_atom () != ATOM_STRING)
    3557            0 :         bad_module ("Expected real string");
    3558              : 
    3559          968 :       mpfr_init (*real);
    3560          968 :       mpfr_set_str (*real, atom_string, 16, GFC_RND_MODE);
    3561          968 :       free (atom_string);
    3562              :     }
    3563              :   else
    3564              :     {
    3565         1107 :       p = mpfr_get_str (NULL, &exponent, 16, 0, *real, GFC_RND_MODE);
    3566              : 
    3567         1107 :       if (mpfr_nan_p (*real) || mpfr_inf_p (*real))
    3568              :         {
    3569           18 :           write_atom (ATOM_STRING, p);
    3570           18 :           free (p);
    3571           18 :           return;
    3572              :         }
    3573              : 
    3574         1089 :       atom_string = XCNEWVEC (char, strlen (p) + 20);
    3575              : 
    3576         1089 :       sprintf (atom_string, "0.%s@%ld", p, exponent);
    3577              : 
    3578              :       /* Fix negative numbers.  */
    3579         1089 :       if (atom_string[2] == '-')
    3580              :         {
    3581           45 :           atom_string[0] = '-';
    3582           45 :           atom_string[1] = '0';
    3583           45 :           atom_string[2] = '.';
    3584              :         }
    3585              : 
    3586         1089 :       write_atom (ATOM_STRING, atom_string);
    3587              : 
    3588         1089 :       free (atom_string);
    3589         1089 :       free (p);
    3590              :     }
    3591              : }
    3592              : 
    3593              : 
    3594              : /* Save and restore the shape of an array constructor.  */
    3595              : 
    3596              : static void
    3597        21140 : mio_shape (mpz_t **pshape, int rank)
    3598              : {
    3599        21140 :   mpz_t *shape;
    3600        21140 :   atom_type t;
    3601        21140 :   int n;
    3602              : 
    3603              :   /* A NULL shape is represented by ().  */
    3604        21140 :   mio_lparen ();
    3605              : 
    3606        21140 :   if (iomode == IO_OUTPUT)
    3607              :     {
    3608         4121 :       shape = *pshape;
    3609         4121 :       if (!shape)
    3610              :         {
    3611         3535 :           mio_rparen ();
    3612         3535 :           return;
    3613              :         }
    3614              :     }
    3615              :   else
    3616              :     {
    3617        17019 :       t = peek_atom ();
    3618        17019 :       if (t == ATOM_RPAREN)
    3619              :         {
    3620        15658 :           *pshape = NULL;
    3621        15658 :           mio_rparen ();
    3622        15658 :           return;
    3623              :         }
    3624              : 
    3625         1361 :       shape = gfc_get_shape (rank);
    3626         1361 :       *pshape = shape;
    3627              :     }
    3628              : 
    3629         4033 :   for (n = 0; n < rank; n++)
    3630         2086 :     mio_gmp_integer (&shape[n]);
    3631              : 
    3632         1947 :   mio_rparen ();
    3633              : }
    3634              : 
    3635              : 
    3636              : static const mstring expr_types[] = {
    3637              :     minit ("OP", EXPR_OP),
    3638              :     minit ("FUNCTION", EXPR_FUNCTION),
    3639              :     minit ("CONSTANT", EXPR_CONSTANT),
    3640              :     minit ("VARIABLE", EXPR_VARIABLE),
    3641              :     minit ("SUBSTRING", EXPR_SUBSTRING),
    3642              :     minit ("STRUCTURE", EXPR_STRUCTURE),
    3643              :     minit ("ARRAY", EXPR_ARRAY),
    3644              :     minit ("NULL", EXPR_NULL),
    3645              :     minit ("COMPCALL", EXPR_COMPCALL),
    3646              :     minit ("PPC", EXPR_PPC),
    3647              :     minit ("CONDITIONAL", EXPR_CONDITIONAL),
    3648              :     minit (NULL, -1),
    3649              : };
    3650              : 
    3651              : /* INTRINSIC_ASSIGN is missing because it is used as an index for
    3652              :    generic operators, not in expressions.  INTRINSIC_USER is also
    3653              :    replaced by the correct function name by the time we see it.  */
    3654              : 
    3655              : static const mstring intrinsics[] =
    3656              : {
    3657              :     minit ("UPLUS", INTRINSIC_UPLUS),
    3658              :     minit ("UMINUS", INTRINSIC_UMINUS),
    3659              :     minit ("PLUS", INTRINSIC_PLUS),
    3660              :     minit ("MINUS", INTRINSIC_MINUS),
    3661              :     minit ("TIMES", INTRINSIC_TIMES),
    3662              :     minit ("DIVIDE", INTRINSIC_DIVIDE),
    3663              :     minit ("POWER", INTRINSIC_POWER),
    3664              :     minit ("CONCAT", INTRINSIC_CONCAT),
    3665              :     minit ("AND", INTRINSIC_AND),
    3666              :     minit ("OR", INTRINSIC_OR),
    3667              :     minit ("EQV", INTRINSIC_EQV),
    3668              :     minit ("NEQV", INTRINSIC_NEQV),
    3669              :     minit ("EQ_SIGN", INTRINSIC_EQ),
    3670              :     minit ("EQ", INTRINSIC_EQ_OS),
    3671              :     minit ("NE_SIGN", INTRINSIC_NE),
    3672              :     minit ("NE", INTRINSIC_NE_OS),
    3673              :     minit ("GT_SIGN", INTRINSIC_GT),
    3674              :     minit ("GT", INTRINSIC_GT_OS),
    3675              :     minit ("GE_SIGN", INTRINSIC_GE),
    3676              :     minit ("GE", INTRINSIC_GE_OS),
    3677              :     minit ("LT_SIGN", INTRINSIC_LT),
    3678              :     minit ("LT", INTRINSIC_LT_OS),
    3679              :     minit ("LE_SIGN", INTRINSIC_LE),
    3680              :     minit ("LE", INTRINSIC_LE_OS),
    3681              :     minit ("NOT", INTRINSIC_NOT),
    3682              :     minit ("PARENTHESES", INTRINSIC_PARENTHESES),
    3683              :     minit ("USER", INTRINSIC_USER),
    3684              :     minit (NULL, -1)
    3685              : };
    3686              : 
    3687              : 
    3688              : /* Remedy a couple of situations where the gfc_expr's can be defective.  */
    3689              : 
    3690              : static void
    3691       444263 : fix_mio_expr (gfc_expr *e)
    3692              : {
    3693       444263 :   gfc_symtree *ns_st = NULL;
    3694       444263 :   const char *fname;
    3695              : 
    3696       444263 :   if (iomode != IO_OUTPUT)
    3697              :     return;
    3698              : 
    3699       101473 :   if (e->symtree)
    3700              :     {
    3701              :       /* If this is a symtree for a symbol that came from a contained module
    3702              :          namespace, it has a unique name and we should look in the current
    3703              :          namespace to see if the required, non-contained symbol is available
    3704              :          yet. If so, the latter should be written.  */
    3705        10449 :       if (e->symtree->n.sym && check_unique_name (e->symtree->name))
    3706              :         {
    3707          740 :           const char *name = e->symtree->n.sym->name;
    3708          740 :           if (gfc_fl_struct (e->symtree->n.sym->attr.flavor))
    3709            0 :             name = gfc_dt_upper_string (name);
    3710          740 :           ns_st = gfc_find_symtree (gfc_current_ns->sym_root, name);
    3711              :         }
    3712              : 
    3713              :       /* On the other hand, if the existing symbol is the module name or the
    3714              :          new symbol is a dummy argument, do not do the promotion.  */
    3715          740 :       if (ns_st && ns_st->n.sym
    3716           23 :           && ns_st->n.sym->attr.flavor != FL_MODULE
    3717           22 :           && !e->symtree->n.sym->attr.dummy)
    3718           21 :         e->symtree = ns_st;
    3719              :     }
    3720        91024 :   else if (e->expr_type == EXPR_FUNCTION
    3721            2 :            && (e->value.function.name || e->value.function.isym))
    3722              :     {
    3723            2 :       gfc_symbol *sym;
    3724              : 
    3725              :       /* In some circumstances, a function used in an initialization
    3726              :          expression, in one use associated module, can fail to be
    3727              :          coupled to its symtree when used in a specification
    3728              :          expression in another module.  */
    3729            2 :       fname = e->value.function.esym ? e->value.function.esym->name
    3730            2 :                                      : e->value.function.isym->name;
    3731            2 :       e->symtree = gfc_find_symtree (gfc_current_ns->sym_root, fname);
    3732              : 
    3733            2 :       if (e->symtree)
    3734            1 :         return;
    3735              : 
    3736              :       /* This is probably a reference to a private procedure from another
    3737              :          module.  To prevent a segfault, make a generic with no specific
    3738              :          instances.  If this module is used, without the required
    3739              :          specific coming from somewhere, the appropriate error message
    3740              :          is issued.  */
    3741            1 :       gfc_get_symbol (fname, gfc_current_ns, &sym);
    3742            1 :       sym->attr.flavor = FL_PROCEDURE;
    3743            1 :       sym->attr.generic = 1;
    3744            1 :       e->symtree = gfc_find_symtree (gfc_current_ns->sym_root, fname);
    3745            1 :       gfc_commit_symbol (sym);
    3746              :     }
    3747              : }
    3748              : 
    3749              : 
    3750              : /* Read and write expressions.  The form "()" is allowed to indicate a
    3751              :    NULL expression.  */
    3752              : 
    3753              : static void
    3754       860630 : mio_expr (gfc_expr **ep)
    3755              : {
    3756       860630 :   HOST_WIDE_INT hwi;
    3757       860630 :   gfc_expr *e;
    3758       860630 :   atom_type t;
    3759       860630 :   int flag;
    3760              : 
    3761       860630 :   mio_lparen ();
    3762              : 
    3763       860630 :   if (iomode == IO_OUTPUT)
    3764              :     {
    3765       255184 :       if (*ep == NULL)
    3766              :         {
    3767       153711 :           mio_rparen ();
    3768       570078 :           return;
    3769              :         }
    3770              : 
    3771       101473 :       e = *ep;
    3772       101473 :       MIO_NAME (expr_t) (e->expr_type, expr_types);
    3773              :     }
    3774              :   else
    3775              :     {
    3776       605446 :       t = parse_atom ();
    3777       605446 :       if (t == ATOM_RPAREN)
    3778              :         {
    3779       262656 :           *ep = NULL;
    3780       262656 :           return;
    3781              :         }
    3782              : 
    3783       342790 :       if (t != ATOM_NAME)
    3784            0 :         bad_module ("Expected expression type");
    3785              : 
    3786       342790 :       e = *ep = gfc_get_expr ();
    3787       342790 :       e->where = gfc_current_locus;
    3788       342790 :       e->expr_type = (expr_t) find_enum (expr_types);
    3789              :     }
    3790              : 
    3791       444263 :   mio_typespec (&e->ts);
    3792       444263 :   mio_integer (&e->rank);
    3793              : 
    3794       444263 :   fix_mio_expr (e);
    3795              : 
    3796       444263 :   switch (e->expr_type)
    3797              :     {
    3798         1629 :     case EXPR_OP:
    3799         1629 :       e->value.op.op
    3800         1629 :         = MIO_NAME (gfc_intrinsic_op) (e->value.op.op, intrinsics);
    3801              : 
    3802         1629 :       switch (e->value.op.op)
    3803              :         {
    3804          447 :         case INTRINSIC_UPLUS:
    3805          447 :         case INTRINSIC_UMINUS:
    3806          447 :         case INTRINSIC_NOT:
    3807          447 :         case INTRINSIC_PARENTHESES:
    3808          447 :           mio_expr (&e->value.op.op1);
    3809          447 :           break;
    3810              : 
    3811         1112 :         case INTRINSIC_PLUS:
    3812         1112 :         case INTRINSIC_MINUS:
    3813         1112 :         case INTRINSIC_TIMES:
    3814         1112 :         case INTRINSIC_DIVIDE:
    3815         1112 :         case INTRINSIC_POWER:
    3816         1112 :         case INTRINSIC_CONCAT:
    3817         1112 :         case INTRINSIC_AND:
    3818         1112 :         case INTRINSIC_OR:
    3819         1112 :         case INTRINSIC_EQV:
    3820         1112 :         case INTRINSIC_NEQV:
    3821         1112 :         case INTRINSIC_EQ:
    3822         1112 :         case INTRINSIC_EQ_OS:
    3823         1112 :         case INTRINSIC_NE:
    3824         1112 :         case INTRINSIC_NE_OS:
    3825         1112 :         case INTRINSIC_GT:
    3826         1112 :         case INTRINSIC_GT_OS:
    3827         1112 :         case INTRINSIC_GE:
    3828         1112 :         case INTRINSIC_GE_OS:
    3829         1112 :         case INTRINSIC_LT:
    3830         1112 :         case INTRINSIC_LT_OS:
    3831         1112 :         case INTRINSIC_LE:
    3832         1112 :         case INTRINSIC_LE_OS:
    3833         1112 :           mio_expr (&e->value.op.op1);
    3834         1112 :           mio_expr (&e->value.op.op2);
    3835         1112 :           break;
    3836              : 
    3837           70 :         case INTRINSIC_USER:
    3838              :           /* INTRINSIC_USER should not appear in resolved expressions,
    3839              :              though for UDRs we need to stream unresolved ones.  */
    3840           70 :           if (iomode == IO_OUTPUT)
    3841           34 :             write_atom (ATOM_STRING, e->value.op.uop->name);
    3842              :           else
    3843              :             {
    3844           36 :               char *name = read_string ();
    3845           36 :               const char *uop_name = find_use_name (name, true);
    3846           36 :               if (uop_name == NULL)
    3847              :                 {
    3848            0 :                   size_t len = strlen (name);
    3849            0 :                   char *name2 = XCNEWVEC (char, len + 2);
    3850            0 :                   memcpy (name2, name, len);
    3851            0 :                   name2[len] = ' ';
    3852            0 :                   name2[len + 1] = '\0';
    3853            0 :                   free (name);
    3854            0 :                   uop_name = name = name2;
    3855              :                 }
    3856           36 :               e->value.op.uop = gfc_get_uop (uop_name);
    3857           36 :               free (name);
    3858              :             }
    3859           70 :           mio_expr (&e->value.op.op1);
    3860           70 :           mio_expr (&e->value.op.op2);
    3861           70 :           break;
    3862              : 
    3863            0 :         default:
    3864            0 :           bad_module ("Bad operator");
    3865              :         }
    3866              : 
    3867              :       break;
    3868              : 
    3869            2 :     case EXPR_CONDITIONAL:
    3870            2 :       mio_expr (&e->value.conditional.condition);
    3871            2 :       mio_expr (&e->value.conditional.true_expr);
    3872            2 :       mio_expr (&e->value.conditional.false_expr);
    3873            2 :       break;
    3874              : 
    3875         2672 :     case EXPR_FUNCTION:
    3876         2672 :       mio_symtree_ref (&e->symtree);
    3877         2672 :       mio_actual_arglist (&e->value.function.actual, false);
    3878              : 
    3879         2672 :       if (iomode == IO_OUTPUT)
    3880              :         {
    3881         1383 :           e->value.function.name
    3882         1383 :             = mio_allocated_string (e->value.function.name);
    3883         1383 :           if (e->value.function.esym)
    3884          131 :             flag = 1;
    3885         1252 :           else if (e->ref)
    3886          104 :             flag = 2;
    3887         1148 :           else if (e->value.function.isym == NULL)
    3888          250 :             flag = 3;
    3889              :           else
    3890          898 :             flag = 0;
    3891         1383 :           mio_integer (&flag);
    3892         1383 :           switch (flag)
    3893              :             {
    3894          131 :             case 1:
    3895          131 :               mio_symbol_ref (&e->value.function.esym);
    3896          131 :               break;
    3897          104 :             case 2:
    3898          104 :               mio_ref_list (&e->ref);
    3899          104 :               break;
    3900              :             case 3:
    3901              :               break;
    3902          898 :             default:
    3903          898 :               write_atom (ATOM_STRING, e->value.function.isym->name);
    3904              :             }
    3905              :         }
    3906              :       else
    3907              :         {
    3908         1289 :           require_atom (ATOM_STRING);
    3909         1289 :           if (atom_string[0] == '\0')
    3910          723 :             e->value.function.name = NULL;
    3911              :           else
    3912          566 :             e->value.function.name = gfc_get_string ("%s", atom_string);
    3913         1289 :           free (atom_string);
    3914              : 
    3915         1289 :           mio_integer (&flag);
    3916         1289 :           switch (flag)
    3917              :             {
    3918          138 :             case 1:
    3919          138 :               mio_symbol_ref (&e->value.function.esym);
    3920          138 :               break;
    3921           72 :             case 2:
    3922           72 :               mio_ref_list (&e->ref);
    3923           72 :               break;
    3924              :             case 3:
    3925              :               break;
    3926          880 :             default:
    3927          880 :               require_atom (ATOM_STRING);
    3928          880 :               e->value.function.isym = gfc_find_function (atom_string);
    3929          880 :               free (atom_string);
    3930              :             }
    3931              :         }
    3932              : 
    3933              :       break;
    3934              : 
    3935        16185 :     case EXPR_VARIABLE:
    3936        16185 :       mio_symtree_ref (&e->symtree);
    3937        16185 :       mio_ref_list (&e->ref);
    3938        16185 :       break;
    3939              : 
    3940            0 :     case EXPR_SUBSTRING:
    3941            0 :       e->value.character.string = const_cast<gfc_char_t *>
    3942            0 :         (mio_allocated_wide_string (e->value.character.string,
    3943            0 :                                     e->value.character.length));
    3944            0 :       mio_ref_list (&e->ref);
    3945            0 :       break;
    3946              : 
    3947        21140 :     case EXPR_STRUCTURE:
    3948        21140 :     case EXPR_ARRAY:
    3949        21140 :       mio_constructor (&e->value.constructor);
    3950        21140 :       mio_shape (&e->shape, e->rank);
    3951        21140 :       break;
    3952              : 
    3953       378599 :     case EXPR_CONSTANT:
    3954       378599 :       switch (e->ts.type)
    3955              :         {
    3956       367939 :         case BT_INTEGER:
    3957       367939 :         case BT_UNSIGNED:
    3958       367939 :           mio_gmp_integer (&e->value.integer);
    3959       367939 :           break;
    3960              : 
    3961         1939 :         case BT_REAL:
    3962         1939 :           gfc_set_model_kind (e->ts.kind);
    3963         1939 :           mio_gmp_real (&e->value.real);
    3964         1939 :           break;
    3965              : 
    3966           68 :         case BT_COMPLEX:
    3967           68 :           gfc_set_model_kind (e->ts.kind);
    3968           68 :           mio_gmp_real (&mpc_realref (e->value.complex));
    3969           68 :           mio_gmp_real (&mpc_imagref (e->value.complex));
    3970           68 :           break;
    3971              : 
    3972          157 :         case BT_LOGICAL:
    3973          157 :           mio_integer (&e->value.logical);
    3974          157 :           break;
    3975              : 
    3976         8496 :         case BT_CHARACTER:
    3977         8496 :           hwi = e->value.character.length;
    3978         8496 :           mio_hwi (&hwi);
    3979         8496 :           e->value.character.length = hwi;
    3980        16992 :           e->value.character.string = const_cast<gfc_char_t *>
    3981         8496 :             (mio_allocated_wide_string (e->value.character.string,
    3982              :                                         e->value.character.length));
    3983         8496 :           break;
    3984              : 
    3985            0 :         default:
    3986            0 :           bad_module ("Bad type in constant expression");
    3987              :         }
    3988              : 
    3989              :       break;
    3990              : 
    3991              :     case EXPR_NULL:
    3992              :       break;
    3993              : 
    3994            0 :     case EXPR_COMPCALL:
    3995            0 :     case EXPR_PPC:
    3996            0 :     case EXPR_UNKNOWN:
    3997            0 :       gcc_unreachable ();
    3998       444263 :       break;
    3999              :     }
    4000              : 
    4001              :   /* PDT types store the expression specification list here. */
    4002       444263 :   mio_actual_arglist (&e->param_list, true);
    4003              : 
    4004       444263 :   mio_rparen ();
    4005              : }
    4006              : 
    4007              : 
    4008              : /* Read and write namelists.  */
    4009              : 
    4010              : static void
    4011      1307980 : mio_namelist (gfc_symbol *sym)
    4012              : {
    4013      1307980 :   gfc_namelist *n, *m;
    4014              : 
    4015      1307980 :   mio_lparen ();
    4016              : 
    4017      1307980 :   if (iomode == IO_OUTPUT)
    4018              :     {
    4019       244577 :       for (n = sym->namelist; n; n = n->next)
    4020           84 :         mio_symbol_ref (&n->sym);
    4021              :     }
    4022              :   else
    4023              :     {
    4024              :       m = NULL;
    4025      1063576 :       while (peek_atom () != ATOM_RPAREN)
    4026              :         {
    4027           89 :           n = gfc_get_namelist ();
    4028           89 :           mio_symbol_ref (&n->sym);
    4029              : 
    4030           89 :           if (sym->namelist == NULL)
    4031           53 :             sym->namelist = n;
    4032              :           else
    4033           36 :             m->next = n;
    4034              : 
    4035              :           m = n;
    4036              :         }
    4037      1063487 :       sym->namelist_tail = m;
    4038              :     }
    4039              : 
    4040      1307980 :   mio_rparen ();
    4041      1307980 : }
    4042              : 
    4043              : 
    4044              : /* Save/restore lists of gfc_interface structures.  When loading an
    4045              :    interface, we are really appending to the existing list of
    4046              :    interfaces.  Checking for duplicate and ambiguous interfaces has to
    4047              :    be done later when all symbols have been loaded.  */
    4048              : 
    4049              : pointer_info *
    4050       661787 : mio_interface_rest (gfc_interface **ip)
    4051              : {
    4052       661787 :   gfc_interface *tail, *p;
    4053       661787 :   pointer_info *pi = NULL;
    4054              : 
    4055       661787 :   if (iomode == IO_OUTPUT)
    4056              :     {
    4057       280548 :       if (ip != NULL)
    4058       271381 :         for (p = *ip; p; p = p->next)
    4059        16983 :           mio_symbol_ref (&p->sym);
    4060              :     }
    4061              :   else
    4062              :     {
    4063       381239 :       if (*ip == NULL)
    4064              :         tail = NULL;
    4065              :       else
    4066              :         {
    4067              :           tail = *ip;
    4068         5182 :           while (tail->next)
    4069              :             tail = tail->next;
    4070              :         }
    4071              : 
    4072       552952 :       for (;;)
    4073              :         {
    4074       552952 :           if (peek_atom () == ATOM_RPAREN)
    4075              :             break;
    4076              : 
    4077       171713 :           p = gfc_get_interface ();
    4078       171713 :           p->where = gfc_current_locus;
    4079       171713 :           pi = mio_symbol_ref (&p->sym);
    4080              : 
    4081       171713 :           if (tail == NULL)
    4082        58943 :             *ip = p;
    4083              :           else
    4084       112770 :             tail->next = p;
    4085              : 
    4086              :           tail = p;
    4087              :         }
    4088              :     }
    4089              : 
    4090       661787 :   mio_rparen ();
    4091       661787 :   return pi;
    4092              : }
    4093              : 
    4094              : 
    4095              : /* Save/restore a nameless operator interface.  */
    4096              : 
    4097              : static void
    4098       590829 : mio_interface (gfc_interface **ip)
    4099              : {
    4100       269325 :   mio_lparen ();
    4101       321504 :   mio_interface_rest (ip);
    4102       269325 : }
    4103              : 
    4104              : 
    4105              : /* Save/restore a named operator interface.  */
    4106              : 
    4107              : static void
    4108        11223 : mio_symbol_interface (const char **name, const char **module,
    4109              :                       gfc_interface **ip)
    4110              : {
    4111        11223 :   mio_lparen ();
    4112        11223 :   mio_pool_string (name);
    4113        11223 :   mio_pool_string (module);
    4114        11223 :   mio_interface_rest (ip);
    4115        11223 : }
    4116              : 
    4117              : 
    4118              : static void
    4119      1307980 : mio_namespace_ref (gfc_namespace **nsp)
    4120              : {
    4121      1307980 :   gfc_namespace *ns;
    4122      1307980 :   pointer_info *p;
    4123              : 
    4124      1307980 :   p = mio_pointer_ref (nsp);
    4125              : 
    4126      1307980 :   if (p->type == P_UNKNOWN)
    4127       266441 :     p->type = P_NAMESPACE;
    4128              : 
    4129      1307980 :   if (iomode == IO_INPUT && p->integer != 0)
    4130              :     {
    4131       236834 :       ns = (gfc_namespace *) p->u.pointer;
    4132       236834 :       if (ns == NULL)
    4133              :         {
    4134       236558 :           ns = gfc_get_namespace (NULL, 0);
    4135       236558 :           associate_integer_pointer (p, ns);
    4136              :         }
    4137              :       else
    4138          276 :         ns->refs++;
    4139              :     }
    4140      1307980 : }
    4141              : 
    4142              : 
    4143              : /* Save/restore the f2k_derived namespace of a derived-type symbol.  */
    4144              : 
    4145              : static gfc_namespace* current_f2k_derived;
    4146              : 
    4147              : static void
    4148        99838 : mio_typebound_proc (gfc_typebound_proc** proc)
    4149              : {
    4150        99838 :   int flag;
    4151        99838 :   int overriding_flag;
    4152              : 
    4153        99838 :   if (iomode == IO_INPUT)
    4154              :     {
    4155        55923 :       *proc = gfc_get_typebound_proc (NULL);
    4156        55923 :       (*proc)->where = gfc_current_locus;
    4157              :     }
    4158        99838 :   gcc_assert (*proc);
    4159              : 
    4160        99838 :   mio_lparen ();
    4161              : 
    4162        99838 :   (*proc)->access = MIO_NAME (gfc_access) ((*proc)->access, access_types);
    4163              : 
    4164              :   /* IO the NON_OVERRIDABLE/DEFERRED combination.  */
    4165        99838 :   gcc_assert (!((*proc)->deferred && (*proc)->non_overridable));
    4166        99838 :   overriding_flag = ((*proc)->deferred << 1) | (*proc)->non_overridable;
    4167        99838 :   overriding_flag = mio_name (overriding_flag, binding_overriding);
    4168        99838 :   (*proc)->deferred = ((overriding_flag & 2) != 0);
    4169        99838 :   (*proc)->non_overridable = ((overriding_flag & 1) != 0);
    4170        99838 :   gcc_assert (!((*proc)->deferred && (*proc)->non_overridable));
    4171              : 
    4172        99838 :   (*proc)->nopass = mio_name ((*proc)->nopass, binding_passing);
    4173        99838 :   (*proc)->is_generic = mio_name ((*proc)->is_generic, binding_generic);
    4174        99838 :   (*proc)->ppc = mio_name((*proc)->ppc, binding_ppc);
    4175              : 
    4176        99838 :   mio_pool_string (&((*proc)->pass_arg));
    4177              : 
    4178        99838 :   flag = (int) (*proc)->pass_arg_num;
    4179        99838 :   mio_integer (&flag);
    4180        99838 :   (*proc)->pass_arg_num = (unsigned) flag;
    4181              : 
    4182        99838 :   if ((*proc)->is_generic)
    4183              :     {
    4184         2878 :       gfc_tbp_generic* g;
    4185         2878 :       int iop;
    4186              : 
    4187         2878 :       mio_lparen ();
    4188              : 
    4189         2878 :       if (iomode == IO_OUTPUT)
    4190         3440 :         for (g = (*proc)->u.generic; g; g = g->next)
    4191              :           {
    4192         1925 :             iop = (int) g->is_operator;
    4193         1925 :             mio_integer (&iop);
    4194         1925 :             mio_allocated_string (g->specific_st->name);
    4195              :           }
    4196              :       else
    4197              :         {
    4198         1363 :           (*proc)->u.generic = NULL;
    4199         3039 :           while (peek_atom () != ATOM_RPAREN)
    4200              :             {
    4201         1676 :               gfc_symtree** sym_root;
    4202              : 
    4203         1676 :               g = gfc_get_tbp_generic ();
    4204         1676 :               g->specific = NULL;
    4205              : 
    4206         1676 :               mio_integer (&iop);
    4207         1676 :               g->is_operator = (bool) iop;
    4208              : 
    4209         1676 :               require_atom (ATOM_STRING);
    4210         1676 :               sym_root = &current_f2k_derived->tb_sym_root;
    4211         1676 :               g->specific_st = gfc_get_tbp_symtree (sym_root, atom_string);
    4212         1676 :               free (atom_string);
    4213              : 
    4214         1676 :               g->next = (*proc)->u.generic;
    4215         1676 :               (*proc)->u.generic = g;
    4216              :             }
    4217              :         }
    4218              : 
    4219         2878 :       mio_rparen ();
    4220              :     }
    4221        96960 :   else if (!(*proc)->ppc)
    4222         9584 :     mio_symtree_ref (&(*proc)->u.specific);
    4223              : 
    4224        99838 :   mio_rparen ();
    4225        99838 : }
    4226              : 
    4227              : /* Walker-callback function for this purpose.  */
    4228              : static void
    4229        11130 : mio_typebound_symtree (gfc_symtree* st)
    4230              : {
    4231        11130 :   if (iomode == IO_OUTPUT && !st->n.tb)
    4232              :     return;
    4233              : 
    4234        11130 :   if (iomode == IO_OUTPUT)
    4235              :     {
    4236         5921 :       mio_lparen ();
    4237         5921 :       mio_allocated_string (st->name);
    4238              :     }
    4239              :   /* For IO_INPUT, the above is done in mio_f2k_derived.  */
    4240              : 
    4241        11130 :   mio_typebound_proc (&st->n.tb);
    4242        11130 :   mio_rparen ();
    4243              : }
    4244              : 
    4245              : /* IO a full symtree (in all depth).  */
    4246              : static void
    4247        64854 : mio_full_typebound_tree (gfc_symtree** root)
    4248              : {
    4249        64854 :   mio_lparen ();
    4250              : 
    4251        64854 :   if (iomode == IO_OUTPUT)
    4252        27880 :     gfc_traverse_symtree (*root, &mio_typebound_symtree);
    4253              :   else
    4254              :     {
    4255        42183 :       while (peek_atom () == ATOM_LPAREN)
    4256              :         {
    4257         5209 :           gfc_symtree* st;
    4258              : 
    4259         5209 :           mio_lparen ();
    4260              : 
    4261         5209 :           require_atom (ATOM_STRING);
    4262         5209 :           st = gfc_get_tbp_symtree (root, atom_string);
    4263         5209 :           free (atom_string);
    4264              : 
    4265         5209 :           mio_typebound_symtree (st);
    4266              :         }
    4267              :     }
    4268              : 
    4269        64854 :   mio_rparen ();
    4270        64854 : }
    4271              : 
    4272              : static void
    4273         1365 : mio_finalizer (gfc_finalizer **f)
    4274              : {
    4275         1365 :   if (iomode == IO_OUTPUT)
    4276              :     {
    4277          654 :       gcc_assert (*f);
    4278          654 :       gcc_assert ((*f)->proc_tree); /* Should already be resolved.  */
    4279          654 :       mio_symtree_ref (&(*f)->proc_tree);
    4280              :     }
    4281              :   else
    4282              :     {
    4283          711 :       *f = gfc_get_finalizer ();
    4284          711 :       (*f)->where = gfc_current_locus; /* Value should not matter.  */
    4285          711 :       (*f)->next = NULL;
    4286              : 
    4287          711 :       mio_symtree_ref (&(*f)->proc_tree);
    4288          711 :       (*f)->proc_sym = NULL;
    4289              :     }
    4290         1365 : }
    4291              : 
    4292              : static void
    4293        32427 : mio_f2k_derived (gfc_namespace *f2k)
    4294              : {
    4295        32427 :   current_f2k_derived = f2k;
    4296              : 
    4297              :   /* Handle the list of finalizer procedures.  */
    4298        32427 :   mio_lparen ();
    4299        32427 :   if (iomode == IO_OUTPUT)
    4300              :     {
    4301        13940 :       gfc_finalizer *f;
    4302        14594 :       for (f = f2k->finalizers; f; f = f->next)
    4303          654 :         mio_finalizer (&f);
    4304              :     }
    4305              :   else
    4306              :     {
    4307        18487 :       f2k->finalizers = NULL;
    4308        19198 :       while (peek_atom () != ATOM_RPAREN)
    4309              :         {
    4310          711 :           gfc_finalizer *cur = NULL;
    4311          711 :           mio_finalizer (&cur);
    4312          711 :           cur->next = f2k->finalizers;
    4313          711 :           f2k->finalizers = cur;
    4314              :         }
    4315              :     }
    4316        32427 :   mio_rparen ();
    4317              : 
    4318              :   /* Handle type-bound procedures.  */
    4319        32427 :   mio_full_typebound_tree (&f2k->tb_sym_root);
    4320              : 
    4321              :   /* Type-bound user operators.  */
    4322        32427 :   mio_full_typebound_tree (&f2k->tb_uop_root);
    4323              : 
    4324              :   /* Type-bound intrinsic operators.  */
    4325        32427 :   mio_lparen ();
    4326        32427 :   if (iomode == IO_OUTPUT)
    4327              :     {
    4328              :       int op;
    4329       404260 :       for (op = GFC_INTRINSIC_BEGIN; op != GFC_INTRINSIC_END; ++op)
    4330              :         {
    4331       390320 :           gfc_intrinsic_op realop;
    4332              : 
    4333       390320 :           if (op == INTRINSIC_USER || !f2k->tb_op[op])
    4334       389612 :             continue;
    4335              : 
    4336          708 :           mio_lparen ();
    4337          708 :           realop = (gfc_intrinsic_op) op;
    4338          708 :           mio_intrinsic_op (&realop);
    4339          708 :           mio_typebound_proc (&f2k->tb_op[op]);
    4340          708 :           mio_rparen ();
    4341              :         }
    4342              :     }
    4343              :   else
    4344        19111 :     while (peek_atom () != ATOM_RPAREN)
    4345              :       {
    4346          624 :         gfc_intrinsic_op op = GFC_INTRINSIC_BEGIN; /* Silence GCC.  */
    4347              : 
    4348          624 :         mio_lparen ();
    4349          624 :         mio_intrinsic_op (&op);
    4350          624 :         mio_typebound_proc (&f2k->tb_op[op]);
    4351          624 :         mio_rparen ();
    4352              :       }
    4353        32427 :   mio_rparen ();
    4354        32427 : }
    4355              : 
    4356              : static void
    4357      1307980 : mio_full_f2k_derived (gfc_symbol *sym)
    4358              : {
    4359      1307980 :   mio_lparen ();
    4360              : 
    4361      1307980 :   if (iomode == IO_OUTPUT)
    4362              :     {
    4363       244493 :       if (sym->f2k_derived)
    4364        13940 :         mio_f2k_derived (sym->f2k_derived);
    4365              :     }
    4366              :   else
    4367              :     {
    4368      1063487 :       if (peek_atom () != ATOM_RPAREN)
    4369              :         {
    4370        18487 :           gfc_namespace *ns;
    4371              : 
    4372        18487 :           sym->f2k_derived = gfc_get_namespace (NULL, 0);
    4373              : 
    4374              :           /* PDT templates make use of the mechanisms for formal args
    4375              :              and so the parameter symbols are stored in the formal
    4376              :              namespace.  Transfer the sym_root to f2k_derived and then
    4377              :              free the formal namespace since it is unneeded.  */
    4378        18487 :           if (sym->attr.pdt_template && sym->formal && sym->formal->sym)
    4379              :             {
    4380            6 :               ns = sym->formal->sym->ns;
    4381            6 :               sym->f2k_derived->sym_root = ns->sym_root;
    4382            6 :               ns->sym_root = NULL;
    4383            6 :               ns->refs++;
    4384            6 :               gfc_free_namespace (ns);
    4385            6 :               ns = NULL;
    4386              :             }
    4387              : 
    4388        18487 :           mio_f2k_derived (sym->f2k_derived);
    4389              :         }
    4390              :       else
    4391      1045000 :         gcc_assert (!sym->f2k_derived);
    4392              :     }
    4393              : 
    4394      1307980 :   mio_rparen ();
    4395      1307980 : }
    4396              : 
    4397              : static const mstring omp_declare_simd_clauses[] =
    4398              : {
    4399              :     minit ("INBRANCH", 0),
    4400              :     minit ("NOTINBRANCH", 1),
    4401              :     minit ("SIMDLEN", 2),
    4402              :     minit ("UNIFORM", 3),
    4403              :     minit ("LINEAR", 4),
    4404              :     minit ("ALIGNED", 5),
    4405              :     minit ("LINEAR_REF", 33),
    4406              :     minit ("LINEAR_VAL", 34),
    4407              :     minit ("LINEAR_UVAL", 35),
    4408              :     minit (NULL, -1)
    4409              : };
    4410              : 
    4411              : /* Handle OpenMP's declare-simd clauses.  */
    4412              : 
    4413              : static void
    4414          148 : mio_omp_declare_simd_clauses (gfc_omp_clauses **clausesp)
    4415              : {
    4416          148 :   if (iomode == IO_OUTPUT)
    4417              :     {
    4418           94 :       gfc_omp_clauses *clauses = *clausesp;
    4419           94 :       gfc_omp_namelist *n;
    4420              : 
    4421           94 :       write_atom (ATOM_NAME, "OMP_DECLARE_SIMD");
    4422           94 :       if (clauses->inbranch)
    4423           10 :         mio_name (0, omp_declare_simd_clauses);
    4424           94 :       if (clauses->notinbranch)
    4425           23 :         mio_name (1, omp_declare_simd_clauses);
    4426           94 :       if (clauses->simdlen_expr)
    4427              :         {
    4428           37 :           mio_name (2, omp_declare_simd_clauses);
    4429           37 :           mio_expr (&clauses->simdlen_expr);
    4430              :         }
    4431          151 :       for (n = clauses->lists[OMP_LIST_UNIFORM]; n; n = n->next)
    4432              :         {
    4433           57 :           mio_name (3, omp_declare_simd_clauses);
    4434           57 :           mio_symbol_ref (&n->sym);
    4435              :         }
    4436          146 :       for (n = clauses->lists[OMP_LIST_LINEAR]; n; n = n->next)
    4437              :         {
    4438           52 :           if (n->u.linear.op == OMP_LINEAR_DEFAULT)
    4439           33 :             mio_name (4, omp_declare_simd_clauses);
    4440              :           else
    4441           19 :             mio_name (32 + n->u.linear.op, omp_declare_simd_clauses);
    4442           52 :           mio_symbol_ref (&n->sym);
    4443           52 :           mio_expr (&n->expr);
    4444              :         }
    4445          100 :       for (n = clauses->lists[OMP_LIST_ALIGNED]; n; n = n->next)
    4446              :         {
    4447            6 :           mio_name (5, omp_declare_simd_clauses);
    4448            6 :           mio_symbol_ref (&n->sym);
    4449            6 :           mio_expr (&n->expr);
    4450              :         }
    4451              :     }
    4452              :   else
    4453              :     {
    4454           54 :       if (peek_atom () != ATOM_NAME)
    4455           18 :         return;
    4456              : 
    4457           36 :       gfc_omp_namelist **ptrs[3] = { NULL, NULL, NULL };
    4458           36 :       gfc_omp_clauses *clauses = *clausesp = gfc_get_omp_clauses ();
    4459           36 :       ptrs[0] = &clauses->lists[OMP_LIST_UNIFORM];
    4460           36 :       ptrs[1] = &clauses->lists[OMP_LIST_LINEAR];
    4461           36 :       ptrs[2] = &clauses->lists[OMP_LIST_ALIGNED];
    4462              : 
    4463          181 :       while (peek_atom () == ATOM_NAME)
    4464              :         {
    4465          109 :           gfc_omp_namelist *n;
    4466          109 :           int t = mio_name (0, omp_declare_simd_clauses);
    4467              : 
    4468          109 :           switch (t)
    4469              :             {
    4470            0 :             case 0: clauses->inbranch = true; break;
    4471           10 :             case 1: clauses->notinbranch = true; break;
    4472           19 :             case 2: mio_expr (&clauses->simdlen_expr); break;
    4473           77 :             case 3:
    4474           77 :             case 4:
    4475           77 :             case 5:
    4476           77 :               *ptrs[t - 3] = n = gfc_get_omp_namelist ();
    4477           80 :             finish_namelist:
    4478           80 :               n->where = gfc_current_locus;
    4479           80 :               ptrs[t - 3] = &n->next;
    4480           80 :               mio_symbol_ref (&n->sym);
    4481           80 :               if (t != 3)
    4482           32 :                 mio_expr (&n->expr);
    4483              :               break;
    4484            3 :             case 33:
    4485            3 :             case 34:
    4486            3 :             case 35:
    4487            3 :               *ptrs[1] = n = gfc_get_omp_namelist ();
    4488            3 :               n->u.linear.op = (enum gfc_omp_linear_op) (t - 32);
    4489            3 :               t = 4;
    4490            3 :               goto finish_namelist;
    4491              :             }
    4492              :         }
    4493              :     }
    4494              : }
    4495              : 
    4496              : 
    4497              : /* Handle !$omp declare simd.  */
    4498              : 
    4499              : static void
    4500       266312 : mio_omp_declare_simd (gfc_namespace *ns, gfc_omp_declare_simd **odsp)
    4501              : {
    4502       266312 :   if (iomode == IO_OUTPUT)
    4503              :     {
    4504        29424 :       if (*odsp == NULL)
    4505              :         {
    4506        29344 :           if (ns->omp_declare_variant)
    4507              :             {
    4508           98 :               mio_lparen ();
    4509           98 :               mio_rparen ();
    4510              :             }
    4511        29344 :           return;
    4512              :         }
    4513              :     }
    4514       236888 :   else if (peek_atom () != ATOM_LPAREN)
    4515              :     return;
    4516              : 
    4517          169 :   gfc_omp_declare_simd *ods = *odsp;
    4518              : 
    4519          169 :   mio_lparen ();
    4520          169 :   if (iomode == IO_OUTPUT)
    4521              :     {
    4522           80 :       if (ods->clauses)
    4523           80 :         mio_omp_declare_simd_clauses (&ods->clauses);
    4524              :     }
    4525              :   else
    4526              :     {
    4527           89 :       if (peek_atom () == ATOM_RPAREN)
    4528              :         {
    4529           35 :           mio_rparen ();
    4530           35 :           return;
    4531              :         }
    4532              : 
    4533           54 :       require_atom (ATOM_NAME);
    4534           54 :       *odsp = ods = gfc_get_omp_declare_simd ();
    4535           54 :       ods->where = gfc_current_locus;
    4536           54 :       ods->proc_name = ns->proc_name;
    4537           54 :       mio_omp_declare_simd_clauses (&ods->clauses);
    4538              :     }
    4539              : 
    4540          134 :   mio_omp_declare_simd (ns, &ods->next);
    4541              : 
    4542          134 :   mio_rparen ();
    4543              : }
    4544              : 
    4545              : /* Handle !$omp declare variant.  */
    4546              : 
    4547              : static void
    4548       285947 : mio_omp_declare_variant (gfc_namespace *ns, gfc_omp_declare_variant **odvp)
    4549              : {
    4550       285947 :   if (iomode == IO_OUTPUT)
    4551              :     {
    4552        49070 :       if (*odvp == NULL)
    4553              :         return;
    4554              :     }
    4555       236877 :   else if (peek_atom () != ATOM_LPAREN)
    4556              :     return;
    4557              : 
    4558          157 :   gfc_omp_declare_variant *odv;
    4559              : 
    4560          157 :   mio_lparen ();
    4561          157 :   if (iomode == IO_OUTPUT)
    4562              :     {
    4563          117 :       odv = *odvp;
    4564          117 :       write_atom (ATOM_NAME, "OMP_DECLARE_VARIANT");
    4565          117 :       gfc_symtree *st;
    4566          234 :       st = (odv->base_proc_symtree
    4567          117 :             ? odv->base_proc_symtree
    4568          108 :             : gfc_find_symtree (ns->sym_root, ns->proc_name->name));
    4569          117 :       mio_symtree_ref (&st);
    4570          234 :       st = (st->n.sym->attr.if_source == IFSRC_IFBODY
    4571           31 :             && st->n.sym->formal_ns == ns
    4572          118 :             ? gfc_find_symtree (ns->parent->sym_root,
    4573           30 :                                 odv->variant_proc_symtree->name)
    4574              :             : odv->variant_proc_symtree);
    4575          117 :       mio_symtree_ref (&st);
    4576              : 
    4577          117 :       mio_lparen ();
    4578          117 :       write_atom (ATOM_NAME, "SEL");
    4579          253 :       for (gfc_omp_set_selector *set = odv->set_selectors; set; set = set->next)
    4580              :         {
    4581          136 :           int set_code = set->code;
    4582          136 :           mio_integer (&set_code);
    4583          136 :           mio_lparen ();
    4584          312 :           for (gfc_omp_selector *sel = set->trait_selectors; sel;
    4585          176 :                sel = sel->next)
    4586              :             {
    4587          176 :               int sel_code = sel->code;
    4588          176 :               mio_integer (&sel_code);
    4589          176 :               mio_expr (&sel->score);
    4590          176 :               mio_lparen ();
    4591          232 :               for (gfc_omp_trait_property *prop = sel->properties; prop;
    4592           56 :                    prop = prop->next)
    4593              :                 {
    4594           56 :                   int kind = prop->property_kind;
    4595           56 :                   mio_integer (&kind);
    4596           56 :                   int is_name = prop->is_name;
    4597           56 :                   mio_integer (&is_name);
    4598           56 :                   switch (prop->property_kind)
    4599              :                     {
    4600           11 :                     case OMP_TRAIT_PROPERTY_DEV_NUM_EXPR:
    4601           11 :                     case OMP_TRAIT_PROPERTY_BOOL_EXPR:
    4602           11 :                       mio_expr (&prop->expr);
    4603           11 :                       break;
    4604            3 :                     case OMP_TRAIT_PROPERTY_ID:
    4605            3 :                       write_atom (ATOM_STRING, prop->name);
    4606            3 :                       break;
    4607           28 :                     case OMP_TRAIT_PROPERTY_NAME_LIST:
    4608           28 :                       if (prop->is_name)
    4609           25 :                         write_atom (ATOM_STRING, prop->name);
    4610              :                       else
    4611            3 :                         mio_expr (&prop->expr);
    4612              :                       break;
    4613           14 :                     case OMP_TRAIT_PROPERTY_CLAUSE_LIST:
    4614           14 :                       {
    4615              :                         /* Currently only declare simd.  */
    4616           14 :                         mio_lparen ();
    4617           14 :                         mio_omp_declare_simd_clauses (&prop->clauses);
    4618           14 :                         mio_rparen ();
    4619              :                       }
    4620           14 :                       break;
    4621            0 :                     default:
    4622            0 :                       gcc_unreachable ();
    4623              :                     }
    4624              :                 }
    4625          176 :               mio_rparen ();
    4626              :             }
    4627          136 :           mio_rparen ();
    4628              :         }
    4629          117 :       mio_rparen ();
    4630              : 
    4631          117 :       mio_lparen ();
    4632          117 :       write_atom (ATOM_NAME, "ADJ");
    4633          225 :       for (gfc_omp_namelist *arg = odv->adjust_args_list; arg; arg = arg->next)
    4634              :         {
    4635          108 :           int need_ptr = arg->u.adj_args.need_ptr;
    4636          108 :           int need_addr = arg->u.adj_args.need_addr;
    4637          108 :           int range_start = arg->u.adj_args.range_start;
    4638          108 :           int omp_num_args_plus = arg->u.adj_args.omp_num_args_plus;
    4639          108 :           int omp_num_args_minus = arg->u.adj_args.omp_num_args_minus;
    4640          108 :           mio_integer (&need_ptr);
    4641          108 :           mio_integer (&need_addr);
    4642          108 :           mio_integer (&range_start);
    4643          108 :           mio_integer (&omp_num_args_plus);
    4644          108 :           mio_integer (&omp_num_args_minus);
    4645          108 :           mio_expr (&arg->expr);
    4646              :         }
    4647          117 :       mio_rparen ();
    4648              : 
    4649          117 :       mio_lparen ();
    4650          117 :       write_atom (ATOM_NAME, "APP");
    4651          155 :       for (gfc_omp_namelist *arg = odv->append_args_list; arg; arg = arg->next)
    4652              :         {
    4653           38 :           int target = arg->u.init.target;
    4654           38 :           int targetsync = arg->u.init.targetsync;
    4655           38 :           mio_integer (&target);
    4656           38 :           mio_integer (&targetsync);
    4657           38 :           mio_integer (&arg->u.init.len);
    4658           38 :           gfc_char_t *p = XALLOCAVEC (gfc_char_t, arg->u.init.len);
    4659          409 :           for (int i = 0; i < arg->u.init.len; i++)
    4660          371 :             p[i] = arg->u2.init_interop[i];
    4661           38 :           mio_allocated_wide_string (p, arg->u.init.len);
    4662              :         }
    4663          117 :       mio_rparen ();
    4664              :     }
    4665              :   else
    4666              :     {
    4667           40 :       if (peek_atom () == ATOM_RPAREN)
    4668              :         {
    4669            0 :           mio_rparen ();
    4670            0 :           return;
    4671              :         }
    4672              : 
    4673           40 :       require_atom (ATOM_NAME);
    4674           40 :       odv = *odvp = gfc_get_omp_declare_variant ();
    4675           40 :       odv->where = gfc_current_locus;
    4676              : 
    4677           40 :       mio_symtree_ref (&odv->base_proc_symtree);
    4678           40 :       mio_symtree_ref (&odv->variant_proc_symtree);
    4679              : 
    4680           40 :       mio_lparen ();
    4681           40 :       require_atom (ATOM_NAME);  /* SEL */
    4682           40 :       gfc_omp_set_selector **set = &odv->set_selectors;
    4683           82 :       while (peek_atom () != ATOM_RPAREN)
    4684              :         {
    4685           42 :           *set = gfc_get_omp_set_selector ();
    4686           42 :           int set_code;
    4687           42 :           mio_integer (&set_code);
    4688           42 :           (*set)->code = (enum omp_tss_code) set_code;
    4689              : 
    4690           42 :           mio_lparen ();
    4691           42 :           gfc_omp_selector **sel = &(*set)->trait_selectors;
    4692           86 :           while (peek_atom () != ATOM_RPAREN)
    4693              :             {
    4694           44 :               *sel = gfc_get_omp_selector ();
    4695           44 :               int sel_code = 0;
    4696           44 :               mio_integer (&sel_code);
    4697           44 :               (*sel)->code = (enum omp_ts_code) sel_code;
    4698           44 :               mio_expr (&(*sel)->score);
    4699              : 
    4700           44 :               mio_lparen ();
    4701           44 :               gfc_omp_trait_property **prop = &(*sel)->properties;
    4702           47 :               while (peek_atom () != ATOM_RPAREN)
    4703              :                 {
    4704            3 :                   *prop = gfc_get_omp_trait_property ();
    4705            3 :                   int kind = 0, is_name = 0;
    4706            3 :                   mio_integer (&kind);
    4707            3 :                   mio_integer (&is_name);
    4708            3 :                   (*prop)->property_kind = (enum omp_tp_type) kind;
    4709            3 :                   (*prop)->is_name = is_name;
    4710            3 :                   switch ((*prop)->property_kind)
    4711              :                     {
    4712            0 :                     case OMP_TRAIT_PROPERTY_DEV_NUM_EXPR:
    4713            0 :                     case OMP_TRAIT_PROPERTY_BOOL_EXPR:
    4714            0 :                       mio_expr (&(*prop)->expr);
    4715            0 :                       break;
    4716            0 :                     case OMP_TRAIT_PROPERTY_ID:
    4717            0 :                       (*prop)->name = read_string ();
    4718            0 :                       break;
    4719            3 :                     case OMP_TRAIT_PROPERTY_NAME_LIST:
    4720            3 :                       if ((*prop)->is_name)
    4721            2 :                         (*prop)->name = read_string ();
    4722              :                       else
    4723            1 :                         mio_expr (&(*prop)->expr);
    4724              :                       break;
    4725            0 :                     case OMP_TRAIT_PROPERTY_CLAUSE_LIST:
    4726            0 :                       {
    4727              :                         /* Currently only declare simd.  */
    4728            0 :                         mio_lparen ();
    4729            0 :                         mio_omp_declare_simd_clauses (&(*prop)->clauses);
    4730            0 :                         mio_rparen ();
    4731              :                       }
    4732            0 :                       break;
    4733            0 :                     default:
    4734            0 :                       gcc_unreachable ();
    4735              :                     }
    4736            3 :                   prop = &(*prop)->next;
    4737              :                 }
    4738           44 :               mio_rparen ();
    4739           44 :               sel = &(*sel)->next;
    4740              :             }
    4741           42 :           mio_rparen ();
    4742           42 :           set = &(*set)->next;
    4743              :         }
    4744           40 :       mio_rparen ();
    4745              : 
    4746           40 :       mio_lparen ();
    4747           40 :       require_atom (ATOM_NAME);  /* ADJ */
    4748           40 :       gfc_omp_namelist **nl = &odv->adjust_args_list;
    4749          122 :       while (peek_atom () != ATOM_RPAREN)
    4750              :         {
    4751           82 :           *nl = gfc_get_omp_namelist ();
    4752           82 :           (*nl)->where = gfc_current_locus;
    4753           82 :           int need_ptr, need_addr, range_start;
    4754           82 :           int omp_num_args_plus, omp_num_args_minus;
    4755           82 :           mio_integer (&need_ptr);
    4756           82 :           mio_integer (&need_addr);
    4757           82 :           mio_integer (&range_start);
    4758           82 :           mio_integer (&omp_num_args_plus);
    4759           82 :           mio_integer (&omp_num_args_minus);
    4760           82 :           (*nl)->u.adj_args.need_ptr = need_ptr;
    4761           82 :           (*nl)->u.adj_args.need_addr = need_addr;
    4762           82 :           (*nl)->u.adj_args.range_start = range_start;
    4763           82 :           (*nl)->u.adj_args.omp_num_args_plus = omp_num_args_minus;
    4764           82 :           (*nl)->u.adj_args.omp_num_args_plus = omp_num_args_minus;
    4765           82 :           mio_expr (&(*nl)->expr);
    4766           82 :           nl = &(*nl)->next;
    4767              :         }
    4768           40 :       mio_rparen ();
    4769              : 
    4770           40 :       mio_lparen ();
    4771           40 :       require_atom (ATOM_NAME);  /* APP */
    4772           40 :       nl = &odv->append_args_list;
    4773           58 :       while (peek_atom () != ATOM_RPAREN)
    4774              :         {
    4775           18 :           *nl = gfc_get_omp_namelist ();
    4776           18 :           (*nl)->where = gfc_current_locus;
    4777           18 :           int target, targetsync;
    4778           18 :           mio_integer (&target);
    4779           18 :           mio_integer (&targetsync);
    4780           18 :           mio_integer (&(*nl)->u.init.len);
    4781           18 :           (*nl)->u.init.target = target;
    4782           18 :           (*nl)->u.init.targetsync = targetsync;
    4783           18 :           const gfc_char_t *p = XALLOCAVEC (gfc_char_t, (*nl)->u.init.len); // FIXME: memory handling?
    4784           18 :           (*nl)->u2.init_interop = XCNEWVEC (char,  (*nl)->u.init.len);
    4785           18 :           p = mio_allocated_wide_string (NULL, (*nl)->u.init.len);
    4786          101 :           for (int i = 0; i < (*nl)->u.init.len; i++)
    4787           83 :             (*nl)->u2.init_interop[i] = p[i];
    4788           18 :           nl = &(*nl)->next;
    4789              :         }
    4790           40 :       mio_rparen ();
    4791              :     }
    4792              : 
    4793          157 :   mio_omp_declare_variant (ns, &odv->next);
    4794              : 
    4795          157 :   mio_rparen ();
    4796              : }
    4797              : 
    4798              : static const mstring omp_declare_reduction_stmt[] =
    4799              : {
    4800              :     minit ("ASSIGN", 0),
    4801              :     minit ("CALL", 1),
    4802              :     minit (NULL, -1)
    4803              : };
    4804              : 
    4805              : 
    4806              : static void
    4807          293 : mio_omp_udr_expr (gfc_omp_udr *udr, gfc_symbol **sym1, gfc_symbol **sym2,
    4808              :                   gfc_namespace *ns, bool is_initializer)
    4809              : {
    4810          293 :   if (iomode == IO_OUTPUT)
    4811              :     {
    4812          144 :       if ((*sym1)->module == NULL)
    4813              :         {
    4814          108 :           (*sym1)->module = module_name;
    4815          108 :           (*sym2)->module = module_name;
    4816              :         }
    4817          144 :       mio_symbol_ref (sym1);
    4818          144 :       mio_symbol_ref (sym2);
    4819          144 :       if (ns->code->op == EXEC_ASSIGN)
    4820              :         {
    4821           90 :           mio_name (0, omp_declare_reduction_stmt);
    4822           90 :           mio_expr (&ns->code->expr1);
    4823           90 :           mio_expr (&ns->code->expr2);
    4824              :         }
    4825              :       else
    4826              :         {
    4827           54 :           int flag;
    4828           54 :           mio_name (1, omp_declare_reduction_stmt);
    4829           54 :           mio_symtree_ref (&ns->code->symtree);
    4830           54 :           mio_actual_arglist (&ns->code->ext.actual, false);
    4831              : 
    4832           54 :           flag = ns->code->resolved_isym != NULL;
    4833           54 :           mio_integer (&flag);
    4834           54 :           if (flag)
    4835            0 :             write_atom (ATOM_STRING, ns->code->resolved_isym->name);
    4836              :           else
    4837           54 :             mio_symbol_ref (&ns->code->resolved_sym);
    4838              :         }
    4839              :     }
    4840              :   else
    4841              :     {
    4842          149 :       pointer_info *p1 = mio_symbol_ref (sym1);
    4843          149 :       pointer_info *p2 = mio_symbol_ref (sym2);
    4844          149 :       gfc_symbol *sym;
    4845          149 :       gcc_assert (p1->u.rsym.ns == p2->u.rsym.ns);
    4846          149 :       gcc_assert (p1->u.rsym.sym == NULL);
    4847              :       /* Add hidden symbols to the symtree.  */
    4848          149 :       pointer_info *q = get_integer (p1->u.rsym.ns);
    4849          149 :       q->u.pointer = (void *) ns;
    4850          231 :       sym = gfc_new_symbol (is_initializer ? "omp_priv" : "omp_out", ns);
    4851          149 :       sym->ts = udr->ts;
    4852          149 :       sym->module = gfc_get_string ("%s", p1->u.rsym.module);
    4853          149 :       associate_integer_pointer (p1, sym);
    4854          149 :       sym->attr.omp_udr_artificial_var = 1;
    4855          149 :       gcc_assert (p2->u.rsym.sym == NULL);
    4856          231 :       sym = gfc_new_symbol (is_initializer ? "omp_orig" : "omp_in", ns);
    4857          149 :       sym->ts = udr->ts;
    4858          149 :       sym->module = gfc_get_string ("%s", p2->u.rsym.module);
    4859          149 :       associate_integer_pointer (p2, sym);
    4860          149 :       sym->attr.omp_udr_artificial_var = 1;
    4861          149 :       if (mio_name (0, omp_declare_reduction_stmt) == 0)
    4862              :         {
    4863           95 :           ns->code = gfc_get_code (EXEC_ASSIGN);
    4864           95 :           mio_expr (&ns->code->expr1);
    4865           95 :           mio_expr (&ns->code->expr2);
    4866              :         }
    4867              :       else
    4868              :         {
    4869           54 :           int flag;
    4870           54 :           ns->code = gfc_get_code (EXEC_CALL);
    4871           54 :           mio_symtree_ref (&ns->code->symtree);
    4872           54 :           mio_actual_arglist (&ns->code->ext.actual, false);
    4873              : 
    4874           54 :           mio_integer (&flag);
    4875           54 :           if (flag)
    4876              :             {
    4877            0 :               require_atom (ATOM_STRING);
    4878            0 :               ns->code->resolved_isym = gfc_find_subroutine (atom_string);
    4879            0 :               free (atom_string);
    4880              :             }
    4881              :           else
    4882           54 :             mio_symbol_ref (&ns->code->resolved_sym);
    4883              :         }
    4884          149 :       ns->code->loc = gfc_current_locus;
    4885          149 :       ns->omp_udr_ns = 1;
    4886              :     }
    4887          293 : }
    4888              : 
    4889              : 
    4890              : /* Unlike most other routines, the address of the symbol node is already
    4891              :    fixed on input and the name/module has already been filled in.
    4892              :    If you update the symbol format here, don't forget to update read_module
    4893              :    as well (look for "seek to the symbol's component list").   */
    4894              : 
    4895              : static void
    4896      1307980 : mio_symbol (gfc_symbol *sym)
    4897              : {
    4898      1307980 :   int intmod = INTMOD_NONE;
    4899              : 
    4900      1307980 :   mio_lparen ();
    4901              : 
    4902      1307980 :   mio_symbol_attribute (&sym->attr);
    4903              : 
    4904      1307980 :   if (sym->attr.pdt_type)
    4905          632 :     sym->name = gfc_dt_upper_string (sym->name);
    4906              : 
    4907              :   /* Note that components are always saved, even if they are supposed
    4908              :      to be private.  Component access is checked during searching.  */
    4909      1307980 :   mio_component_list (&sym->components, sym->attr.vtype);
    4910      1307980 :   if (sym->components != NULL)
    4911        75771 :     sym->component_access
    4912        75771 :       = MIO_NAME (gfc_access) (sym->component_access, access_types);
    4913              : 
    4914      1307980 :   mio_typespec (&sym->ts);
    4915      1307980 :   if (sym->ts.type == BT_CLASS)
    4916        15326 :     sym->attr.class_ok = 1;
    4917              : 
    4918      1307980 :   if (iomode == IO_OUTPUT)
    4919       244493 :     mio_namespace_ref (&sym->formal_ns);
    4920              :   else
    4921              :     {
    4922      1063487 :       mio_namespace_ref (&sym->formal_ns);
    4923      1063487 :       if (sym->formal_ns)
    4924       236834 :         sym->formal_ns->proc_name = sym;
    4925              :     }
    4926              : 
    4927              :   /* Save/restore common block links.  */
    4928      1307980 :   mio_symbol_ref (&sym->common_next);
    4929              : 
    4930      1307980 :   mio_formal_arglist (&sym->formal);
    4931              : 
    4932      1307980 :   if (sym->attr.flavor == FL_PARAMETER)
    4933       258254 :     mio_expr (&sym->value);
    4934              : 
    4935      1307980 :   mio_array_spec (&sym->as);
    4936              : 
    4937      1307980 :   mio_symbol_ref (&sym->result);
    4938              : 
    4939      1307980 :   if (sym->attr.cray_pointee)
    4940           26 :     mio_symbol_ref (&sym->cp_pointer);
    4941              : 
    4942              :   /* Load/save the f2k_derived namespace of a derived-type symbol.  */
    4943      1307980 :   mio_full_f2k_derived (sym);
    4944              : 
    4945              :   /* PDT types store the symbol specification list here. */
    4946      1307980 :   mio_actual_arglist (&sym->param_list, true);
    4947              : 
    4948      1307980 :   mio_namelist (sym);
    4949              : 
    4950              :   /* Add the fields that say whether this is from an intrinsic module,
    4951              :      and if so, what symbol it is within the module.  */
    4952              : /*   mio_integer (&(sym->from_intmod)); */
    4953      1307980 :   if (iomode == IO_OUTPUT)
    4954              :     {
    4955       244493 :       intmod = sym->from_intmod;
    4956       244493 :       mio_integer (&intmod);
    4957              :     }
    4958              :   else
    4959              :     {
    4960      1063487 :       mio_integer (&intmod);
    4961      1063487 :       if (current_intmod)
    4962       317169 :         sym->from_intmod = current_intmod;
    4963              :       else
    4964       746318 :         sym->from_intmod = (intmod_id) intmod;
    4965              :     }
    4966              : 
    4967      1307980 :   mio_integer (&(sym->intmod_sym_id));
    4968              : 
    4969      1307980 :   if (gfc_fl_struct (sym->attr.flavor))
    4970        79150 :     mio_integer (&(sym->hash_value));
    4971              : 
    4972      1307980 :   if (sym->formal_ns
    4973       266739 :       && sym->formal_ns->proc_name == sym
    4974       266178 :       && sym->formal_ns->entries == NULL)
    4975              :     {
    4976       266178 :       mio_omp_declare_simd (sym->formal_ns, &sym->formal_ns->omp_declare_simd);
    4977       266178 :       mio_omp_declare_variant (sym->formal_ns,
    4978       266178 :                                &sym->formal_ns->omp_declare_variant);
    4979              :     }
    4980       215149 :   else if ((iomode == IO_OUTPUT && sym->ns->proc_name == sym)
    4981      1237342 :            || (iomode == IO_INPUT && peek_atom () == ATOM_LPAREN))
    4982        19612 :     mio_omp_declare_variant (sym->ns, &sym->ns->omp_declare_variant);
    4983              : 
    4984      1307980 :   mio_rparen ();
    4985      1307980 : }
    4986              : 
    4987              : 
    4988              : /************************* Top level subroutines *************************/
    4989              : 
    4990              : /* A recursive function to look for a specific symbol by name and by
    4991              :    module.  Whilst several symtrees might point to one symbol, its
    4992              :    is sufficient for the purposes here than one exist.  Note that
    4993              :    generic interfaces are distinguished as are symbols that have been
    4994              :    renamed in another module.  */
    4995              : static gfc_symtree *
    4996     47268383 : find_symbol (gfc_symtree *st, const char *name,
    4997              :              const char *module, int generic)
    4998              : {
    4999     94015331 :   int c;
    5000     94015331 :   gfc_symtree *retval, *s;
    5001              : 
    5002     94015331 :   if (st == NULL || st->n.sym == NULL)
    5003              :     return NULL;
    5004              : 
    5005     46749362 :   c = strcmp (name, st->n.sym->name);
    5006        98330 :   if (c == 0 && st->n.sym->module
    5007        98324 :              && strcmp (module, st->n.sym->module) == 0
    5008     46790536 :              && !check_unique_name (st->name))
    5009              :     {
    5010        41090 :       s = gfc_find_symtree (gfc_current_ns->sym_root, name);
    5011              : 
    5012              :       /* Detect symbols that are renamed by use association in another
    5013              :          module by the absence of a symtree and null attr.use_rename,
    5014              :          since the latter is not transmitted in the module file.  */
    5015        41090 :       if (((!generic && !st->n.sym->attr.generic)
    5016        32921 :                 || (generic && st->n.sym->attr.generic))
    5017         8209 :             && !(s == NULL && !st->n.sym->attr.use_rename))
    5018              :         return st;
    5019              :     }
    5020              : 
    5021     46748768 :   retval = find_symbol (st->left, name, module, generic);
    5022              : 
    5023     46748768 :   if (retval == NULL)
    5024     46746948 :     retval = find_symbol (st->right, name, module, generic);
    5025              : 
    5026              :   return retval;
    5027              : }
    5028              : 
    5029              : 
    5030              : /* Skip a list between balanced left and right parens.
    5031              :    By setting NEST_LEVEL one assumes that a number of NEST_LEVEL opening parens
    5032              :    have been already parsed by hand, and the remaining of the content is to be
    5033              :    skipped here.  The default value is 0 (balanced parens).  */
    5034              : 
    5035              : static void
    5036      1416894 : skip_list (int nest_level = 0)
    5037              : {
    5038      1416894 :   int level;
    5039              : 
    5040      1416894 :   level = nest_level;
    5041     66701015 :   do
    5042              :     {
    5043     66701015 :       switch (parse_atom ())
    5044              :         {
    5045     16501892 :         case ATOM_LPAREN:
    5046     16501892 :           level++;
    5047     16501892 :           break;
    5048              : 
    5049     16518886 :         case ATOM_RPAREN:
    5050     16518886 :           level--;
    5051     16518886 :           break;
    5052              : 
    5053       729650 :         case ATOM_STRING:
    5054       729650 :           free (atom_string);
    5055       729650 :           break;
    5056              : 
    5057              :         case ATOM_NAME:
    5058              :         case ATOM_INTEGER:
    5059              :           break;
    5060              :         }
    5061              :     }
    5062     66701015 :   while (level > 0);
    5063      1416894 : }
    5064              : 
    5065              : 
    5066              : /* Load operator interfaces from the module.  Interfaces are unusual
    5067              :    in that they attach themselves to existing symbols.  */
    5068              : 
    5069              : static void
    5070        13708 : load_operator_interfaces (void)
    5071              : {
    5072        13708 :   const char *p;
    5073              :   /* "module" must be large enough for the case of submodules in which the name
    5074              :      has the form module.submodule */
    5075        13708 :   char name[GFC_MAX_SYMBOL_LEN + 1], module[2 * GFC_MAX_SYMBOL_LEN + 2];
    5076        13708 :   gfc_user_op *uop;
    5077        13708 :   pointer_info *pi = NULL;
    5078        13708 :   int n, i;
    5079              : 
    5080        13708 :   mio_lparen ();
    5081              : 
    5082        27580 :   while (peek_atom () != ATOM_RPAREN)
    5083              :     {
    5084          164 :       mio_lparen ();
    5085              : 
    5086          164 :       mio_internal_string (name);
    5087          164 :       mio_internal_string (module);
    5088              : 
    5089          164 :       n = number_use_names (name, true);
    5090          164 :       n = n ? n : 1;
    5091              : 
    5092          346 :       for (i = 1; i <= n; i++)
    5093              :         {
    5094              :           /* Decide if we need to load this one or not.  */
    5095          182 :           p = find_use_name_n (name, &i, true);
    5096              : 
    5097          182 :           if (p == NULL)
    5098              :             {
    5099           14 :               while (parse_atom () != ATOM_RPAREN);
    5100            7 :               continue;
    5101              :             }
    5102              : 
    5103          175 :           if (i == 1)
    5104              :             {
    5105          157 :               uop = gfc_get_uop (p);
    5106          157 :               pi = mio_interface_rest (&uop->op);
    5107              :             }
    5108              :           else
    5109              :             {
    5110           18 :               if (gfc_find_uop (p, NULL))
    5111            6 :                 continue;
    5112           12 :               uop = gfc_get_uop (p);
    5113           12 :               uop->op = gfc_get_interface ();
    5114           12 :               uop->op->where = gfc_current_locus;
    5115           12 :               add_fixup (pi->integer, &uop->op->sym);
    5116              :             }
    5117              :         }
    5118              :     }
    5119              : 
    5120        13708 :   mio_rparen ();
    5121        13708 : }
    5122              : 
    5123              : 
    5124              : /* Load interfaces from the module.  Interfaces are unusual in that
    5125              :    they attach themselves to existing symbols.  */
    5126              : 
    5127              : static void
    5128        13708 : load_generic_interfaces (void)
    5129              : {
    5130        13708 :   const char *p;
    5131              :   /* "module" must be large enough for the case of submodules in which the name
    5132              :      has the form module.submodule */
    5133        13708 :   char name[GFC_MAX_SYMBOL_LEN + 1], module[2 * GFC_MAX_SYMBOL_LEN + 2];
    5134        13708 :   gfc_symbol *sym;
    5135        13708 :   gfc_interface *generic = NULL, *gen = NULL;
    5136        13708 :   int n, i, renamed;
    5137        13708 :   bool ambiguous_set = false;
    5138              : 
    5139        13708 :   mio_lparen ();
    5140              : 
    5141        88792 :   while (peek_atom () != ATOM_RPAREN)
    5142              :     {
    5143        61376 :       mio_lparen ();
    5144              : 
    5145        61376 :       mio_internal_string (name);
    5146        61376 :       mio_internal_string (module);
    5147              : 
    5148        61376 :       n = number_use_names (name, false);
    5149        61376 :       renamed = n ? 1 : 0;
    5150        60599 :       n = n ? n : 1;
    5151              : 
    5152       122756 :       for (i = 1; i <= n; i++)
    5153              :         {
    5154        61380 :           gfc_symtree *st;
    5155              :           /* Decide if we need to load this one or not.  */
    5156        61380 :           p = find_use_name_n (name, &i, false);
    5157              : 
    5158        61380 :           if (!p || gfc_find_symbol (p, NULL, 0, &sym))
    5159              :             {
    5160              :               /* Skip the specific names for these cases.  */
    5161         9691 :               while (i == 1 && parse_atom () != ATOM_RPAREN);
    5162              : 
    5163         1798 :               continue;
    5164              :             }
    5165              : 
    5166        59582 :           st = find_symbol (gfc_current_ns->sym_root,
    5167              :                             name, module_name, 1);
    5168              : 
    5169              :           /* If the symbol exists already and is being USEd without being
    5170              :              in an ONLY clause, do not load a new symtree(11.3.2).  */
    5171        59582 :           if (!only_flag && st)
    5172           44 :             sym = st->n.sym;
    5173              : 
    5174        59582 :           if (!sym)
    5175              :             {
    5176        28961 :               if (st)
    5177              :                 {
    5178            1 :                   sym = st->n.sym;
    5179            1 :                   if (strcmp (st->name, p) != 0)
    5180              :                     {
    5181            1 :                       st = gfc_new_symtree (&gfc_current_ns->sym_root, p);
    5182            1 :                       st->n.sym = sym;
    5183            1 :                       sym->refs++;
    5184              :                     }
    5185              :                 }
    5186              : 
    5187              :               /* Since we haven't found a valid generic interface, we had
    5188              :                  better make one.  */
    5189        28961 :               if (!sym)
    5190              :                 {
    5191        28960 :                   gfc_get_symbol (p, NULL, &sym);
    5192        28960 :                   sym->name = gfc_get_string ("%s", name);
    5193        28960 :                   sym->module = module_name;
    5194        28960 :                   sym->attr.flavor = FL_PROCEDURE;
    5195        28960 :                   sym->attr.generic = 1;
    5196        28960 :                   sym->attr.use_assoc = 1;
    5197              :                 }
    5198              :             }
    5199              :           else
    5200              :             {
    5201              :               /* Unless sym is a generic interface, this reference
    5202              :                  is ambiguous.  */
    5203        30621 :               if (st == NULL)
    5204        30576 :                 st = gfc_find_symtree (gfc_current_ns->sym_root, p);
    5205              : 
    5206        30621 :               sym = st->n.sym;
    5207              : 
    5208        30621 :               if (st && !sym->attr.generic
    5209        28248 :                      && !st->ambiguous
    5210        28248 :                      && sym->module
    5211        28247 :                      && strcmp (module, sym->module))
    5212              :                 {
    5213            1 :                   ambiguous_set = true;
    5214            1 :                   st->ambiguous = 1;
    5215              :                 }
    5216              :             }
    5217              : 
    5218        59582 :           sym->attr.use_only = only_flag;
    5219        59582 :           sym->attr.use_rename = renamed;
    5220              : 
    5221        59582 :           if (i == 1)
    5222              :             {
    5223        59578 :               mio_interface_rest (&sym->generic);
    5224        59578 :               generic = sym->generic;
    5225              :             }
    5226            4 :           else if (!sym->generic)
    5227              :             {
    5228            0 :               sym->generic = generic;
    5229            0 :               sym->attr.generic_copy = 1;
    5230              :             }
    5231              : 
    5232              :           /* If a procedure that is not generic has generic interfaces
    5233              :              that include itself, it is generic! We need to take care
    5234              :              to retain symbols ambiguous that were already so.  */
    5235        59582 :           if (sym->attr.use_assoc
    5236        31335 :                 && !sym->attr.generic
    5237            2 :                 && sym->attr.flavor == FL_PROCEDURE)
    5238              :             {
    5239            4 :               for (gen = generic; gen; gen = gen->next)
    5240              :                 {
    5241            3 :                   if (gen->sym == sym)
    5242              :                     {
    5243            1 :                       sym->attr.generic = 1;
    5244            1 :                       if (ambiguous_set)
    5245            0 :                         st->ambiguous = 0;
    5246              :                       break;
    5247              :                     }
    5248              :                 }
    5249              :             }
    5250              : 
    5251              :         }
    5252              :     }
    5253              : 
    5254        13708 :   mio_rparen ();
    5255        13708 : }
    5256              : 
    5257              : 
    5258              : /* Load common blocks.  */
    5259              : 
    5260              : static void
    5261        13708 : load_commons (void)
    5262              : {
    5263        13708 :   char name[GFC_MAX_SYMBOL_LEN + 1];
    5264        13708 :   gfc_common_head *p;
    5265              : 
    5266        13708 :   mio_lparen ();
    5267              : 
    5268        27586 :   while (peek_atom () != ATOM_RPAREN)
    5269              :     {
    5270          170 :       int flags = 0;
    5271          170 :       char* label;
    5272          170 :       mio_lparen ();
    5273          170 :       mio_internal_string (name);
    5274              : 
    5275          170 :       p = gfc_get_common (name, 1);
    5276              : 
    5277          170 :       mio_symbol_ref (&p->head);
    5278          170 :       mio_integer (&flags);
    5279          170 :       if (flags & 1)
    5280            0 :         p->saved = 1;
    5281          170 :       if (flags & 2)
    5282            0 :         p->threadprivate = 1;
    5283          170 :       p->omp_device_type = (gfc_omp_device_type) ((flags >> 2) & 3);
    5284          170 :       if ((flags >> 4) & 1)
    5285            0 :         p->omp_groupprivate = 1;
    5286          170 :       p->use_assoc = 1;
    5287              : 
    5288              :       /* Get whether this was a bind(c) common or not.  */
    5289          170 :       mio_integer (&p->is_bind_c);
    5290              :       /* Get the binding label.  */
    5291          170 :       label = read_string ();
    5292          170 :       if (strlen (label))
    5293           22 :         p->binding_label = IDENTIFIER_POINTER (get_identifier (label));
    5294          170 :       XDELETEVEC (label);
    5295              : 
    5296          170 :       mio_rparen ();
    5297              :     }
    5298              : 
    5299        13708 :   mio_rparen ();
    5300        13708 : }
    5301              : 
    5302              : 
    5303              : /* Load equivalences.  The flag in_load_equiv informs mio_expr_ref of this
    5304              :    so that unused variables are not loaded and so that the expression can
    5305              :    be safely freed.  */
    5306              : 
    5307              : static void
    5308        13708 : load_equiv (void)
    5309              : {
    5310        13708 :   gfc_equiv *head, *tail, *end, *eq, *equiv;
    5311        13708 :   bool duplicate;
    5312              : 
    5313        13708 :   mio_lparen ();
    5314        13708 :   in_load_equiv = true;
    5315              : 
    5316        13708 :   end = gfc_current_ns->equiv;
    5317        13714 :   while (end != NULL && end->next != NULL)
    5318              :     end = end->next;
    5319              : 
    5320        13841 :   while (peek_atom () != ATOM_RPAREN) {
    5321          133 :     mio_lparen ();
    5322          133 :     head = tail = NULL;
    5323              : 
    5324          532 :     while(peek_atom () != ATOM_RPAREN)
    5325              :       {
    5326          266 :         if (head == NULL)
    5327          133 :           head = tail = gfc_get_equiv ();
    5328              :         else
    5329              :           {
    5330          133 :             tail->eq = gfc_get_equiv ();
    5331          133 :             tail = tail->eq;
    5332              :           }
    5333              : 
    5334          266 :         mio_pool_string (&tail->module);
    5335          266 :         mio_expr (&tail->expr);
    5336              :       }
    5337              : 
    5338              :     /* Check for duplicate equivalences being loaded from different modules */
    5339          133 :     duplicate = false;
    5340          192 :     for (equiv = gfc_current_ns->equiv; equiv; equiv = equiv->next)
    5341              :       {
    5342           65 :         if (equiv->module && head->module
    5343           65 :             && strcmp (equiv->module, head->module) == 0)
    5344              :           {
    5345              :             duplicate = true;
    5346              :             break;
    5347              :           }
    5348              :       }
    5349              : 
    5350          133 :     if (duplicate)
    5351              :       {
    5352           18 :         for (eq = head; eq; eq = head)
    5353              :           {
    5354           12 :             head = eq->eq;
    5355           12 :             gfc_free_expr (eq->expr);
    5356           12 :             free (eq);
    5357              :           }
    5358              :       }
    5359              : 
    5360          133 :     if (end == NULL)
    5361           80 :       gfc_current_ns->equiv = head;
    5362              :     else
    5363           53 :       end->next = head;
    5364              : 
    5365          133 :     if (head != NULL)
    5366          127 :       end = head;
    5367              : 
    5368          133 :     mio_rparen ();
    5369              :   }
    5370              : 
    5371        13708 :   mio_rparen ();
    5372        13708 :   in_load_equiv = false;
    5373        13708 : }
    5374              : 
    5375              : 
    5376              : /* This function loads OpenMP user defined reductions.  */
    5377              : static void
    5378        13708 : load_omp_udrs (void)
    5379              : {
    5380        13708 :   mio_lparen ();
    5381        27504 :   while (peek_atom () != ATOM_RPAREN)
    5382              :     {
    5383           88 :       const char *name = NULL, *newname;
    5384           88 :       char *altname;
    5385           88 :       gfc_typespec ts;
    5386           88 :       gfc_symtree *st;
    5387           88 :       gfc_omp_reduction_op rop = OMP_REDUCTION_USER;
    5388              : 
    5389           88 :       mio_lparen ();
    5390           88 :       mio_pool_string (&name);
    5391           88 :       gfc_clear_ts (&ts);
    5392           88 :       mio_typespec (&ts);
    5393           88 :       if (startswith (name, "operator "))
    5394              :         {
    5395           38 :           const char *p = name + sizeof ("operator ") - 1;
    5396           38 :           if (strcmp (p, "+") == 0)
    5397              :             rop = OMP_REDUCTION_PLUS;
    5398            0 :           else if (strcmp (p, "*") == 0)
    5399              :             rop = OMP_REDUCTION_TIMES;
    5400            0 :           else if (strcmp (p, "-") == 0)
    5401              :             rop = OMP_REDUCTION_MINUS;
    5402            0 :           else if (strcmp (p, ".and.") == 0)
    5403              :             rop = OMP_REDUCTION_AND;
    5404            0 :           else if (strcmp (p, ".or.") == 0)
    5405              :             rop = OMP_REDUCTION_OR;
    5406            0 :           else if (strcmp (p, ".eqv.") == 0)
    5407              :             rop = OMP_REDUCTION_EQV;
    5408            0 :           else if (strcmp (p, ".neqv.") == 0)
    5409              :             rop = OMP_REDUCTION_NEQV;
    5410              :         }
    5411           50 :       altname = NULL;
    5412           50 :       if (rop == OMP_REDUCTION_USER && name[0] == '.')
    5413              :         {
    5414           50 :           size_t len = strlen (name + 1);
    5415           50 :           altname = XALLOCAVEC (char, len);
    5416           50 :           gcc_assert (name[len] == '.');
    5417           50 :           memcpy (altname, name + 1, len - 1);
    5418           50 :           altname[len - 1] = '\0';
    5419              :         }
    5420           88 :       newname = name;
    5421           88 :       if (rop == OMP_REDUCTION_USER)
    5422          100 :         newname = find_use_name (altname ? altname : name, !!altname);
    5423           44 :       else if (only_flag && find_use_operator ((gfc_intrinsic_op) rop) == NULL)
    5424              :         newname = NULL;
    5425           88 :       if (newname == NULL)
    5426              :         {
    5427            0 :           skip_list (1);
    5428            6 :           continue;
    5429              :         }
    5430           88 :       if (altname && newname != altname)
    5431              :         {
    5432           18 :           size_t len = strlen (newname);
    5433           18 :           altname = XALLOCAVEC (char, len + 3);
    5434           18 :           altname[0] = '.';
    5435           18 :           memcpy (altname + 1, newname, len);
    5436           18 :           altname[len + 1] = '.';
    5437           18 :           altname[len + 2] = '\0';
    5438           18 :           name = gfc_get_string ("%s", altname);
    5439              :         }
    5440           88 :       st = gfc_find_symtree (gfc_current_ns->omp_udr_root, name);
    5441           88 :       gfc_omp_udr *udr = gfc_omp_udr_find (st, &ts);
    5442           88 :       if (udr)
    5443              :         {
    5444            6 :           require_atom (ATOM_INTEGER);
    5445            6 :           pointer_info *p = get_integer (atom_int);
    5446            6 :           if (strcmp (p->u.rsym.module, udr->omp_out->module))
    5447              :             {
    5448            6 :               gcc_assert (!gfc_buffered_p ());  /* Cf. PR80012 comment 15.  */
    5449            6 :               auto_diagnostic_group d;
    5450            6 :               gfc_error ("Ambiguous !$OMP DECLARE REDUCTION %qs for type %qs "
    5451              :                          "from module %qs at %L", udr->name,
    5452              :                          gfc_typename (&ts), module_name, &gfc_current_locus);
    5453            6 :               inform (gfc_get_location (&udr->where),
    5454              :                       "Previous !$OMP DECLARE REDUCTION from module %qs",
    5455            6 :                       udr->omp_out->module);
    5456            6 :             }
    5457            6 :           skip_list (1);
    5458            6 :           continue;
    5459            6 :         }
    5460           82 :       udr = gfc_get_omp_udr ();
    5461           82 :       udr->name = name;
    5462           82 :       udr->rop = rop;
    5463           82 :       udr->ts = ts;
    5464           82 :       udr->where = gfc_current_locus;
    5465           82 :       udr->combiner_ns = gfc_get_namespace (gfc_current_ns, 1);
    5466           82 :       udr->combiner_ns->proc_name = gfc_current_ns->proc_name;
    5467           82 :       mio_omp_udr_expr (udr, &udr->omp_out, &udr->omp_in, udr->combiner_ns,
    5468              :                         false);
    5469           82 :       if (peek_atom () != ATOM_RPAREN)
    5470              :         {
    5471           67 :           udr->initializer_ns = gfc_get_namespace (gfc_current_ns, 1);
    5472           67 :           udr->initializer_ns->proc_name = gfc_current_ns->proc_name;
    5473           67 :           mio_omp_udr_expr (udr, &udr->omp_priv, &udr->omp_orig,
    5474              :                             udr->initializer_ns, true);
    5475              :         }
    5476           82 :       if (st)
    5477              :         {
    5478            1 :           udr->next = st->n.omp_udr;
    5479            1 :           st->n.omp_udr = udr;
    5480              :         }
    5481              :       else
    5482              :         {
    5483           81 :           st = gfc_new_symtree (&gfc_current_ns->omp_udr_root, name);
    5484           81 :           st->n.omp_udr = udr;
    5485              :         }
    5486           82 :       mio_rparen ();
    5487              :     }
    5488        13708 :   mio_rparen ();
    5489        13708 : }
    5490              : 
    5491              : 
    5492              : /* In declare mapper, not all map types are permitted; hence, only
    5493              :    a subset is needed.  */
    5494              : 
    5495              : static const mstring omp_map_clause_ops[] =
    5496              : {
    5497              :     minit ("ALLOC", OMP_MAP_ALLOC),
    5498              :     minit ("TO", OMP_MAP_TO),
    5499              :     minit ("FROM", OMP_MAP_FROM),
    5500              :     minit ("TOFROM", OMP_MAP_TOFROM),
    5501              :     minit ("ALWAYS_TO", OMP_MAP_ALWAYS_TO),
    5502              :     minit ("ALWAYS_FROM", OMP_MAP_ALWAYS_FROM),
    5503              :     minit ("ALWAYS_TOFROM", OMP_MAP_ALWAYS_TOFROM),
    5504              :     minit ("UNSET", OMP_MAP_UNSET),
    5505              :     minit (NULL, -1)
    5506              : };
    5507              : 
    5508              : /* This function loads OpenMP user-defined mappers.  */
    5509              : 
    5510              : static void
    5511            8 : load_omp_udms (void)
    5512              : {
    5513           17 :   while (peek_atom () != ATOM_RPAREN)
    5514              :     {
    5515            9 :       const char *mapper_id = NULL;
    5516            9 :       gfc_symtree *st;
    5517              : 
    5518            9 :       mio_lparen ();
    5519            9 :       gfc_omp_udm *udm = gfc_get_omp_udm ();
    5520              : 
    5521            9 :       require_atom (ATOM_INTEGER);
    5522            9 :       pointer_info *udmpi = get_integer (atom_int);
    5523            9 :       associate_integer_pointer (udmpi, udm);
    5524              : 
    5525            9 :       mio_pool_string (&mapper_id);
    5526              : 
    5527              :       /* Note: for a derived-type typespec, we might not have loaded the
    5528              :          "u.derived" symbol yet.  Defer checking duplicates until
    5529              :          check_omp_declare_mappers is called after loading all symbols.  */
    5530            9 :       mio_typespec (&udm->ts);
    5531              : 
    5532            9 :       if (mapper_id == NULL)
    5533            8 :         mapper_id = gfc_get_string ("%s", "");
    5534              : 
    5535            9 :       st = gfc_find_symtree (gfc_current_ns->omp_udm_root, mapper_id);
    5536              : 
    5537            9 :       pointer_info *p = mio_symbol_ref (&udm->var_sym);
    5538            9 :       pointer_info *q = get_integer (p->u.rsym.ns);
    5539              : 
    5540            9 :       udm->where = gfc_current_locus;
    5541            9 :       udm->mapper_id = mapper_id;
    5542            9 :       udm->mapper_ns = gfc_get_namespace (gfc_current_ns, 1);
    5543            9 :       udm->mapper_ns->proc_name = gfc_current_ns->proc_name;
    5544            9 :       udm->mapper_ns->omp_udm_ns = 1;
    5545              : 
    5546            9 :       associate_integer_pointer (q, udm->mapper_ns);
    5547              : 
    5548            9 :       gfc_omp_namelist *clauses = NULL;
    5549            9 :       gfc_omp_namelist **clausep = &clauses;
    5550              : 
    5551            9 :       mio_lparen ();
    5552           35 :       while (peek_atom () != ATOM_RPAREN)
    5553              :         {
    5554              :           /* Read each map clause.  */
    5555           17 :           gfc_omp_namelist *n = gfc_get_omp_namelist ();
    5556              : 
    5557           17 :           mio_lparen ();
    5558              : 
    5559           17 :           n->u.map.op = (gfc_omp_map_op) mio_name (0, omp_map_clause_ops);
    5560           17 :           mio_symbol_ref (&n->sym);
    5561           17 :           mio_expr (&n->expr);
    5562              : 
    5563           17 :           mio_lparen ();
    5564              : 
    5565           17 :           if (peek_atom () != ATOM_RPAREN)
    5566              :             {
    5567            7 :               n->u3.udm = gfc_get_omp_namelist_udm ();
    5568            7 :               mio_pool_string (&n->u3.udm->requested_mapper_id);
    5569              : 
    5570            7 :               if (n->u3.udm->requested_mapper_id == NULL)
    5571            7 :                 n->u3.udm->requested_mapper_id = gfc_get_string ("%s", "");
    5572              : 
    5573            7 :               mio_pointer_ref (&n->u3.udm->resolved_udm);
    5574              :             }
    5575              : 
    5576           17 :           mio_rparen ();
    5577              : 
    5578           17 :           n->where = gfc_current_locus;
    5579              : 
    5580           17 :           mio_rparen ();
    5581              : 
    5582           17 :           *clausep = n;
    5583           17 :           clausep = &n->next;
    5584              :         }
    5585            9 :       mio_rparen ();
    5586              : 
    5587            9 :       udm->clauses = gfc_get_omp_clauses ();
    5588            9 :       udm->clauses->lists[OMP_LIST_MAP] = clauses;
    5589              : 
    5590            9 :       if (st)
    5591              :         {
    5592            3 :           udm->next = st->n.omp_udm;
    5593            3 :           st->n.omp_udm = udm;
    5594              :         }
    5595              :       else
    5596              :         {
    5597            6 :           st = gfc_new_symtree (&gfc_current_ns->omp_udm_root, mapper_id);
    5598            6 :           st->n.omp_udm = udm;
    5599              :         }
    5600              : 
    5601            9 :       mio_rparen ();
    5602              :     }
    5603            8 : }
    5604              : 
    5605              : 
    5606              : /* Recursive function to traverse the pointer_info tree and load a
    5607              :    needed symbol.  We return nonzero if we load a symbol and stop the
    5608              :    traversal, because the act of loading can alter the tree.  */
    5609              : 
    5610              : static int
    5611     10230190 : load_needed (pointer_info *p)
    5612              : {
    5613     10230190 :   gfc_namespace *ns;
    5614     10230190 :   pointer_info *q;
    5615     10230190 :   gfc_symbol *sym;
    5616     10230190 :   int rv;
    5617              : 
    5618     10230190 :   rv = 0;
    5619     10230190 :   if (p == NULL)
    5620              :     return rv;
    5621              : 
    5622      5095742 :   rv |= load_needed (p->left);
    5623      5095742 :   rv |= load_needed (p->right);
    5624              : 
    5625      5095742 :   if (p->type != P_SYMBOL || p->u.rsym.state != NEEDED)
    5626              :     return rv;
    5627              : 
    5628      1063487 :   p->u.rsym.state = USED;
    5629              : 
    5630      1063487 :   set_module_locus (&p->u.rsym.where);
    5631              : 
    5632      1063487 :   sym = p->u.rsym.sym;
    5633      1063487 :   if (sym == NULL)
    5634              :     {
    5635       632324 :       q = get_integer (p->u.rsym.ns);
    5636              : 
    5637       632324 :       ns = (gfc_namespace *) q->u.pointer;
    5638       632324 :       if (ns == NULL)
    5639              :         {
    5640              :           /* Create an interface namespace if necessary.  These are
    5641              :              the namespaces that hold the formal parameters of module
    5642              :              procedures.  */
    5643              : 
    5644        21928 :           ns = gfc_get_namespace (NULL, 0);
    5645        21928 :           associate_integer_pointer (q, ns);
    5646              :         }
    5647              : 
    5648              :       /* Use the module sym as 'proc_name' so that gfc_get_symbol_decl
    5649              :          doesn't go pear-shaped if the symbol is used.  */
    5650       632324 :       if (!ns->proc_name)
    5651        30663 :         gfc_find_symbol (p->u.rsym.module, gfc_current_ns,
    5652              :                                  1, &ns->proc_name);
    5653              : 
    5654       632324 :       sym = gfc_new_symbol (p->u.rsym.true_name, ns);
    5655       632324 :       sym->name = gfc_dt_lower_string (p->u.rsym.true_name);
    5656       632324 :       sym->module = gfc_get_string ("%s", p->u.rsym.module);
    5657       632324 :       if (p->u.rsym.binding_label)
    5658           21 :         sym->binding_label = IDENTIFIER_POINTER (get_identifier
    5659              :                                                  (p->u.rsym.binding_label));
    5660              : 
    5661       632324 :       associate_integer_pointer (p, sym);
    5662              :     }
    5663              : 
    5664      1063487 :   mio_symbol (sym);
    5665      1063487 :   sym->attr.use_assoc = 1;
    5666              : 
    5667              :   /* Unliked derived types, a STRUCTURE may share names with other symbols.
    5668              :      We greedily converted the symbol name to lowercase before we knew its
    5669              :      type, so now we must fix it. */
    5670      1063487 :   if (sym->attr.flavor == FL_STRUCT)
    5671           60 :     sym->name = gfc_dt_upper_string (sym->name);
    5672              : 
    5673              :   /* Mark as only or rename for later diagnosis for explicitly imported
    5674              :      but not used warnings; don't mark internal symbols such as __vtab,
    5675              :      __def_init etc. Only mark them if they have been explicitly loaded.  */
    5676              : 
    5677      1063487 :   if (only_flag && sym->name[0] != '_' && sym->name[1] != '_')
    5678              :     {
    5679        12245 :       gfc_use_rename *u;
    5680              : 
    5681              :       /* Search the use/rename list for the variable; if the variable is
    5682              :          found, mark it.  */
    5683        30131 :       for (u = gfc_rename_list; u; u = u->next)
    5684              :         {
    5685        20873 :           if (strcmp (u->use_name, sym->name) == 0)
    5686              :             {
    5687         2987 :               sym->attr.use_only = 1;
    5688         2987 :               break;
    5689              :             }
    5690              :         }
    5691              :     }
    5692              : 
    5693      1063487 :   if (p->u.rsym.renamed)
    5694         3372 :     sym->attr.use_rename = 1;
    5695              : 
    5696              :   return 1;
    5697              : }
    5698              : 
    5699              : 
    5700              : /* Recursive function for cleaning up things after a module has been read.  */
    5701              : 
    5702              : static void
    5703      3467258 : read_cleanup (pointer_info *p)
    5704              : {
    5705      3467258 :   gfc_symtree *st;
    5706      3467258 :   pointer_info *q;
    5707              : 
    5708      3467258 :   if (p == NULL)
    5709              :     return;
    5710              : 
    5711      1726775 :   read_cleanup (p->left);
    5712      1726775 :   read_cleanup (p->right);
    5713              : 
    5714      1726775 :   if (p->type == P_SYMBOL && p->u.rsym.state == USED && !p->u.rsym.referenced)
    5715              :     {
    5716       680600 :       gfc_namespace *ns;
    5717              :       /* Add hidden symbols to the symtree.  */
    5718       680600 :       q = get_integer (p->u.rsym.ns);
    5719       680600 :       ns = (gfc_namespace *) q->u.pointer;
    5720              : 
    5721       680600 :       if (!p->u.rsym.sym->attr.vtype
    5722       677882 :             && !p->u.rsym.sym->attr.vtab)
    5723       677006 :         st = gfc_get_unique_symtree (ns);
    5724              :       else
    5725              :         {
    5726              :           /* There is no reason to use 'unique_symtrees' for vtabs or
    5727              :              vtypes - their name is fine for a symtree and reduces the
    5728              :              namespace pollution.  */
    5729         3594 :           st = gfc_find_symtree (ns->sym_root, p->u.rsym.sym->name);
    5730         3594 :           if (!st)
    5731         1912 :             st = gfc_new_symtree (&ns->sym_root, p->u.rsym.sym->name);
    5732              :         }
    5733              : 
    5734       680600 :       st->n.sym = p->u.rsym.sym;
    5735       680600 :       st->n.sym->refs++;
    5736              : 
    5737              :       /* Fixup any symtree references.  */
    5738       680600 :       p->u.rsym.symtree = st;
    5739       680600 :       resolve_fixups (p->u.rsym.stfixup, st);
    5740       680600 :       p->u.rsym.stfixup = NULL;
    5741              :     }
    5742              : 
    5743              :   /* Free unused symbols.  */
    5744      1726775 :   if (p->type == P_SYMBOL && p->u.rsym.state == UNUSED)
    5745       155725 :     gfc_free_symbol (p->u.rsym.sym);
    5746              : }
    5747              : 
    5748              : 
    5749              : /* It is not quite enough to check for ambiguity in the symbols by
    5750              :    the loaded symbol and the new symbol not being identical.  */
    5751              : static bool
    5752        43547 : check_for_ambiguous (gfc_symtree *st, pointer_info *info)
    5753              : {
    5754        43547 :   gfc_symbol *rsym;
    5755        43547 :   module_locus locus;
    5756        43547 :   symbol_attribute attr;
    5757        43547 :   gfc_symbol *st_sym;
    5758              : 
    5759        43547 :   if (gfc_current_ns->proc_name && st->name == gfc_current_ns->proc_name->name)
    5760              :     {
    5761            6 :       gfc_error ("%qs of module %qs, imported at %C, is also the name of the "
    5762              :                  "current program unit", st->name, module_name);
    5763            6 :       return true;
    5764              :     }
    5765              : 
    5766        43541 :   st_sym = st->n.sym;
    5767        43541 :   rsym = info->u.rsym.sym;
    5768        43541 :   if (st_sym == rsym)
    5769              :     return false;
    5770              : 
    5771          516 :   if (st_sym->attr.vtab || st_sym->attr.vtype)
    5772              :     return false;
    5773              : 
    5774              :   /* If the existing symbol is generic from a different module and
    5775              :      the new symbol is generic there can be no ambiguity.  */
    5776          416 :   if (st_sym->attr.generic
    5777           20 :         && st_sym->module
    5778           20 :         && st_sym->module != module_name)
    5779              :     {
    5780              :       /* The new symbol's attributes have not yet been read.  Since
    5781              :          we need attr.generic, read it directly.  */
    5782           20 :       get_module_locus (&locus);
    5783           20 :       set_module_locus (&info->u.rsym.where);
    5784           20 :       mio_lparen ();
    5785           20 :       attr.generic = 0;
    5786           20 :       mio_symbol_attribute (&attr);
    5787           20 :       set_module_locus (&locus);
    5788           20 :       if (attr.generic)
    5789              :         return false;
    5790              :     }
    5791              : 
    5792              :   return true;
    5793              : }
    5794              : 
    5795              : 
    5796              : static void
    5797        13726 : check_omp_declare_mappers (gfc_symtree *st)
    5798              : {
    5799        13726 :   if (!st)
    5800        13717 :     return;
    5801              : 
    5802            9 :   check_omp_declare_mappers (st->left);
    5803            9 :   check_omp_declare_mappers (st->right);
    5804              : 
    5805            9 :   gfc_omp_udm **udmp = &st->n.omp_udm;
    5806            9 :   gfc_symtree tmp_st;
    5807              : 
    5808           21 :   while (*udmp)
    5809              :     {
    5810           12 :       gfc_omp_udm *udm = *udmp;
    5811           12 :       tmp_st.n.omp_udm = udm->next;
    5812           12 :       gfc_omp_udm *prev_udm = gfc_omp_udm_find (&tmp_st, &udm->ts);
    5813           12 :       if (prev_udm)
    5814              :         {
    5815            2 :           gcc_assert (!gfc_buffered_p ());  /* Cf. PR80012 comment 15.  */
    5816            2 :           auto_diagnostic_group d;
    5817            2 :           gfc_error ("Ambiguous !$OMP DECLARE MAPPER %qs for type %qs from "
    5818              :                      "module %qs at %L",
    5819            2 :                      st->n.omp_udm->mapper_id[0] != '\0'
    5820              :                      ? st->n.omp_udm->mapper_id : "default",
    5821            2 :                      udm->ts.u.derived->name, module_name,
    5822              :                      &udm->where);
    5823            2 :           inform (gfc_get_location (&prev_udm->where),
    5824              :                   "Previous !$OMP DECLARE MAPPER from module %qs",
    5825            2 :                   prev_udm->var_sym->module);
    5826              :           /* Delete the duplicate.  */
    5827            2 :           *udmp = (*udmp)->next;
    5828            2 :         }
    5829              :       else
    5830           10 :         udmp = &(*udmp)->next;
    5831              :     }
    5832              : }
    5833              : 
    5834              : 
    5835              : /* Read a module file.  */
    5836              : 
    5837              : static void
    5838        13708 : read_module (void)
    5839              : {
    5840        13708 :   module_locus operator_interfaces, user_operators, omp_udrs, omp_udms;
    5841        13708 :   bool has_omp_udms = false;
    5842        13708 :   const char *p;
    5843        13708 :   char name[GFC_MAX_SYMBOL_LEN + 1];
    5844        13708 :   int i;
    5845              :   /* Workaround -Wmaybe-uninitialized false positive during
    5846              :      profiledbootstrap by initializing them.  */
    5847        13708 :   int ambiguous = 0, j, nuse, symbol = 0;
    5848        13708 :   pointer_info *info, *q;
    5849        13708 :   gfc_use_rename *u = NULL;
    5850        13708 :   gfc_symtree *st;
    5851        13708 :   gfc_symbol *sym;
    5852              : 
    5853        13708 :   get_module_locus (&operator_interfaces);  /* Skip these for now.  */
    5854        13708 :   skip_list ();
    5855              : 
    5856        13708 :   get_module_locus (&user_operators);
    5857        13708 :   skip_list ();
    5858        13708 :   skip_list ();
    5859              : 
    5860              :   /* Skip commons and equivalences for now.  */
    5861        13708 :   skip_list ();
    5862        13708 :   skip_list ();
    5863              : 
    5864              :   /* Skip OpenMP UDRs.  */
    5865        13708 :   get_module_locus (&omp_udrs);
    5866        13708 :   skip_list ();
    5867              : 
    5868              :   /* Skip OpenMP's user-defined 'declare mapper' (UDM); some extra code is
    5869              :      required to permit reading files without USM; see write_module for
    5870              :      details.  */
    5871        13708 :   get_module_locus (&omp_udms);
    5872        13708 :   if (peek_atom () == ATOM_LPAREN
    5873        13708 :       && parse_atom ()
    5874        13708 :       && module_char () == 'U'
    5875            8 :       && module_char () == 'D'
    5876        13716 :       && module_char () == 'M')
    5877              :     has_omp_udms = true;
    5878        13708 :   set_module_locus (&omp_udms);
    5879        13708 :   if (has_omp_udms)
    5880            8 :     skip_list ();
    5881              : 
    5882        13708 :   mio_lparen ();
    5883              : 
    5884              :   /* Create the fixup nodes for all the symbols.  */
    5885              : 
    5886      1296448 :   while (peek_atom () != ATOM_RPAREN)
    5887              :     {
    5888      1269032 :       char* bind_label;
    5889      1269032 :       require_atom (ATOM_INTEGER);
    5890      1269032 :       info = get_integer (atom_int);
    5891              : 
    5892      1269032 :       info->type = P_SYMBOL;
    5893      1269032 :       info->u.rsym.state = UNUSED;
    5894              : 
    5895      1269032 :       info->u.rsym.true_name = read_string ();
    5896      1269032 :       info->u.rsym.module = read_string ();
    5897      1269032 :       bind_label = read_string ();
    5898      1269032 :       if (strlen (bind_label))
    5899        39400 :         info->u.rsym.binding_label = bind_label;
    5900              :       else
    5901      1229632 :         XDELETEVEC (bind_label);
    5902              : 
    5903      1269032 :       require_atom (ATOM_INTEGER);
    5904      1269032 :       info->u.rsym.ns = atom_int;
    5905              : 
    5906      1269032 :       get_module_locus (&info->u.rsym.where);
    5907              : 
    5908              :       /* See if the symbol has already been loaded by a previous module.
    5909              :          If so, we reference the existing symbol and prevent it from
    5910              :          being loaded again.  This should not happen if the symbol being
    5911              :          read is an index for an assumed shape dummy array (ns != 1).  */
    5912              : 
    5913      1269032 :       sym = find_true_name (info->u.rsym.true_name, info->u.rsym.module);
    5914              : 
    5915      1269032 :       if (sym == NULL
    5916        49845 :           || (sym->attr.flavor == FL_VARIABLE && info->u.rsym.ns !=1))
    5917              :         {
    5918      1219212 :           skip_list ();
    5919      1219212 :           continue;
    5920              :         }
    5921              : 
    5922        49820 :       info->u.rsym.state = USED;
    5923        49820 :       info->u.rsym.sym = sym;
    5924              :       /* The current symbol has already been loaded, so we can avoid loading
    5925              :          it again.  However, if it is a derived type, some of its components
    5926              :          can be used in expressions in the module.  To avoid the module loading
    5927              :          failing, we need to associate the module's component pointer indexes
    5928              :          with the existing symbol's component pointers.  */
    5929        49820 :       if (gfc_fl_struct (sym->attr.flavor))
    5930              :         {
    5931         4790 :           gfc_component *c;
    5932              : 
    5933              :           /* First seek to the symbol's component list.  */
    5934         4790 :           mio_lparen (); /* symbol opening.  */
    5935         4790 :           skip_list (); /* skip symbol attribute.  */
    5936              : 
    5937         4790 :           mio_lparen (); /* component list opening.  */
    5938        16988 :           for (c = sym->components; c; c = c->next)
    5939              :             {
    5940        12198 :               pointer_info *p;
    5941        12198 :               const char *comp_name = NULL;
    5942        12198 :               int n = 0;
    5943              : 
    5944        12198 :               mio_lparen (); /* component opening.  */
    5945        12198 :               mio_integer (&n);
    5946        12198 :               p = get_integer (n);
    5947        12198 :               if (p->u.pointer == NULL)
    5948        12198 :                 associate_integer_pointer (p, c);
    5949        12198 :               mio_pool_string (&comp_name);
    5950        12198 :               if (comp_name != c->name)
    5951              :                 {
    5952            0 :                   gfc_fatal_error ("Mismatch in components of derived type "
    5953              :                                    "%qs from %qs at %C: expecting %qs, "
    5954              :                                    "but got %qs", sym->name, sym->module,
    5955              :                                    c->name, comp_name);
    5956              :                 }
    5957        12198 :               skip_list (1); /* component end.  */
    5958              :             }
    5959         4790 :           mio_rparen (); /* component list closing.  */
    5960              : 
    5961         4790 :           skip_list (1); /* symbol end.  */
    5962         4790 :         }
    5963              :       else
    5964        45030 :         skip_list ();
    5965              : 
    5966              :       /* Some symbols do not have a namespace (eg. formal arguments),
    5967              :          so the automatic "unique symtree" mechanism must be suppressed
    5968              :          by marking them as referenced.  */
    5969        49820 :       q = get_integer (info->u.rsym.ns);
    5970        49820 :       if (q->u.pointer == NULL)
    5971              :         {
    5972         1718 :           info->u.rsym.referenced = 1;
    5973         1718 :           continue;
    5974              :         }
    5975              :     }
    5976              : 
    5977        13708 :   mio_rparen ();
    5978              : 
    5979              :   /* Parse the symtree lists.  This lets us mark which symbols need to
    5980              :      be loaded.  Renaming is also done at this point by replacing the
    5981              :      symtree name.  */
    5982              : 
    5983        13708 :   mio_lparen ();
    5984              : 
    5985       554729 :   while (peek_atom () != ATOM_RPAREN)
    5986              :     {
    5987       527313 :       mio_internal_string (name);
    5988       527313 :       mio_integer (&ambiguous);
    5989       527313 :       mio_integer (&symbol);
    5990              : 
    5991       527313 :       info = get_integer (symbol);
    5992              : 
    5993              :       /* See how many use names there are.  If none, go through the start
    5994              :          of the loop at least once.  */
    5995       527313 :       nuse = number_use_names (name, false);
    5996       527313 :       info->u.rsym.renamed = nuse ? 1 : 0;
    5997              : 
    5998         3395 :       if (nuse == 0)
    5999       523918 :         nuse = 1;
    6000              : 
    6001      1054661 :       for (j = 1; j <= nuse; j++)
    6002              :         {
    6003              :           /* Get the jth local name for this symbol.  */
    6004       527348 :           p = find_use_name_n (name, &j, false);
    6005              : 
    6006       527348 :           if (p == NULL && strcmp (name, module_name) == 0)
    6007              :             p = name;
    6008              : 
    6009              :           /* Exception: Always import vtabs & vtypes.  */
    6010        52160 :           if (p == NULL && name[0] == '_'
    6011         3403 :               && (startswith (name, "__vtab_")
    6012         2246 :                   || startswith (name, "__vtype_")))
    6013              :             p = name;
    6014              : 
    6015              :           /* Include pdt_types if their associated pdt_template is in a
    6016              :              USE, ONLY list.  */
    6017        49846 :           if (p == NULL && name[0] == 'P'
    6018           52 :               && startswith (name, PDT_PREFIX)
    6019       525050 :               && module_list)
    6020              :             {
    6021           32 :               gfc_use_list *ml = module_list;
    6022           32 :               for (; ml; ml = ml->next)
    6023           16 :                 if (ml->rename
    6024           16 :                     && !strncmp (&name[PDT_PREFIX_LEN],
    6025              :                                  ml->rename->use_name,
    6026           16 :                                  strlen (ml->rename->use_name)))
    6027           16 :                   p = name;
    6028              :             }
    6029              : 
    6030              :           /* Skip symtree nodes not in an ONLY clause, unless there
    6031              :              is an existing symtree loaded from another USE statement.  */
    6032       527348 :           if (p == NULL)
    6033              :             {
    6034        49830 :               st = gfc_find_symtree (gfc_current_ns->sym_root, name);
    6035        49830 :               if (st != NULL
    6036          564 :                   && strcmp (st->n.sym->name, info->u.rsym.true_name) == 0
    6037          504 :                   && st->n.sym->module != NULL
    6038          202 :                   && strcmp (st->n.sym->module, info->u.rsym.module) == 0)
    6039              :                 {
    6040          194 :                   info->u.rsym.symtree = st;
    6041          194 :                   info->u.rsym.sym = st->n.sym;
    6042              :                 }
    6043        49830 :               continue;
    6044              :             }
    6045              : 
    6046              :           /* If a symbol of the same name and module exists already,
    6047              :              this symbol, which is not in an ONLY clause, must not be
    6048              :              added to the namespace(11.3.2).  Note that find_symbol
    6049              :              only returns the first occurrence that it finds.  */
    6050       470691 :           if (!only_flag && !info->u.rsym.renamed
    6051       470338 :                 && strcmp (name, module_name) != 0
    6052       937551 :                 && find_symbol (gfc_current_ns->sym_root, name,
    6053              :                                 module_name, 0))
    6054          548 :             continue;
    6055              : 
    6056              :           /* Skip re-importing a derived type already visible via host
    6057              :              association from the same module.  Walk the symtree since
    6058              :              using gfc_find_symbol can give a wrong error.  */
    6059       476970 :           if (!only_flag && !info->u.rsym.renamed
    6060       469790 :                 && strcmp (name, module_name) != 0
    6061       459485 :                 && gfc_current_ns->parent)
    6062              :             {
    6063       364775 :               gfc_symbol *host_sym = NULL;
    6064       364775 :               for (gfc_namespace *pns = gfc_current_ns; pns; pns = pns->parent)
    6065              :                 {
    6066       328120 :                   gfc_symtree *host_st = gfc_find_symtree (pns->sym_root, name);
    6067       328120 :                   if (host_st)
    6068              :                     {
    6069       137433 :                       host_sym = host_st->n.sym;
    6070       137433 :                       break;
    6071              :                     }
    6072              :                 }
    6073       174088 :               if (host_sym && host_sym->attr.flavor == FL_DERIVED
    6074         4233 :                   && host_sym->module
    6075         3512 :                   && strcmp (host_sym->module, module_name) == 0)
    6076         2470 :                 continue;
    6077              :             }
    6078              : 
    6079       474500 :           st = gfc_find_symtree (gfc_current_ns->sym_root, p);
    6080              : 
    6081       474500 :           if (st != NULL
    6082        43583 :               && !(st->n.sym && st->n.sym->attr.used_in_submodule))
    6083              :             {
    6084              :               /* Check for ambiguous symbols.  */
    6085        43547 :               if (check_for_ambiguous (st, info))
    6086          403 :                 st->ambiguous = 1;
    6087              :               else
    6088        43144 :                 info->u.rsym.symtree = st;
    6089              :             }
    6090              :           else
    6091              :             {
    6092       430953 :               if (st)
    6093              :                 {
    6094              :                   /* This symbol is host associated from a module in a
    6095              :                      submodule.  Hide it with a unique symtree.  */
    6096           36 :                   gfc_symtree *s = gfc_get_unique_symtree (gfc_current_ns);
    6097           36 :                   s->n.sym = st->n.sym;
    6098           36 :                   st->n.sym = NULL;
    6099              :                 }
    6100              :               else
    6101              :                 {
    6102              :                   /* Create a symtree node in the current namespace for this
    6103              :                      symbol.  */
    6104       430917 :                   st = check_unique_name (p)
    6105       430917 :                        ? gfc_get_unique_symtree (gfc_current_ns)
    6106       430917 :                        : gfc_new_symtree (&gfc_current_ns->sym_root, p);
    6107       430917 :                   st->ambiguous = ambiguous;
    6108              :                 }
    6109              : 
    6110       430953 :               sym = info->u.rsym.sym;
    6111              : 
    6112              :               /* Create a symbol node if it doesn't already exist.  */
    6113       430953 :               if (sym == NULL)
    6114              :                 {
    6115       430790 :                   info->u.rsym.sym = gfc_new_symbol (info->u.rsym.true_name,
    6116              :                                                      gfc_current_ns);
    6117       430790 :                   info->u.rsym.sym->name = gfc_dt_lower_string (info->u.rsym.true_name);
    6118       430790 :                   sym = info->u.rsym.sym;
    6119       430790 :                   sym->module = gfc_get_string ("%s", info->u.rsym.module);
    6120              : 
    6121       430790 :                   if (info->u.rsym.binding_label)
    6122              :                     {
    6123        28567 :                       tree id = get_identifier (info->u.rsym.binding_label);
    6124        28567 :                       sym->binding_label = IDENTIFIER_POINTER (id);
    6125              :                     }
    6126              :                 }
    6127              : 
    6128       430953 :               st->n.sym = sym;
    6129       430953 :               st->n.sym->refs++;
    6130              : 
    6131       430953 :               if (strcmp (name, p) != 0)
    6132          536 :                 sym->attr.use_rename = 1;
    6133              : 
    6134       430953 :               if (name[0] != '_'
    6135       430953 :                   || (!startswith (name, "__vtab_")
    6136        29535 :                       && !startswith (name, "__vtype_")))
    6137       402853 :                 sym->attr.use_only = only_flag;
    6138              : 
    6139              :               /* Store the symtree pointing to this symbol.  */
    6140       430953 :               info->u.rsym.symtree = st;
    6141              : 
    6142       430953 :               if (info->u.rsym.state == UNUSED)
    6143       430790 :                 info->u.rsym.state = NEEDED;
    6144       430953 :               info->u.rsym.referenced = 1;
    6145              :             }
    6146              :         }
    6147              :     }
    6148              : 
    6149        13708 :   mio_rparen ();
    6150              : 
    6151              :   /* Load intrinsic operator interfaces.  */
    6152        13708 :   set_module_locus (&operator_interfaces);
    6153        13708 :   mio_lparen ();
    6154              : 
    6155       397532 :   for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
    6156              :     {
    6157       383824 :       gfc_use_rename *u = NULL, *v = NULL;
    6158       383824 :       int j = i;
    6159              : 
    6160       383824 :       if (i == INTRINSIC_USER)
    6161        13708 :         continue;
    6162              : 
    6163       370116 :       if (only_flag)
    6164              :         {
    6165        48762 :           u = find_use_operator ((gfc_intrinsic_op) i);
    6166              : 
    6167              :           /* F2018:10.1.5.5.1 requires same interpretation of old and new-style
    6168              :              relational operators.  Special handling for USE, ONLY.  */
    6169        48762 :           switch (i)
    6170              :             {
    6171              :             case INTRINSIC_EQ:
    6172              :               j = INTRINSIC_EQ_OS;
    6173              :               break;
    6174              :             case INTRINSIC_EQ_OS:
    6175              :               j = INTRINSIC_EQ;
    6176              :               break;
    6177              :             case INTRINSIC_NE:
    6178              :               j = INTRINSIC_NE_OS;
    6179              :               break;
    6180              :             case INTRINSIC_NE_OS:
    6181              :               j = INTRINSIC_NE;
    6182              :               break;
    6183              :             case INTRINSIC_GT:
    6184              :               j = INTRINSIC_GT_OS;
    6185              :               break;
    6186              :             case INTRINSIC_GT_OS:
    6187              :               j = INTRINSIC_GT;
    6188              :               break;
    6189              :             case INTRINSIC_GE:
    6190              :               j = INTRINSIC_GE_OS;
    6191              :               break;
    6192              :             case INTRINSIC_GE_OS:
    6193              :               j = INTRINSIC_GE;
    6194              :               break;
    6195              :             case INTRINSIC_LT:
    6196              :               j = INTRINSIC_LT_OS;
    6197              :               break;
    6198              :             case INTRINSIC_LT_OS:
    6199              :               j = INTRINSIC_LT;
    6200              :               break;
    6201              :             case INTRINSIC_LE:
    6202              :               j = INTRINSIC_LE_OS;
    6203              :               break;
    6204              :             case INTRINSIC_LE_OS:
    6205              :               j = INTRINSIC_LE;
    6206              :               break;
    6207              :             default:
    6208              :               break;
    6209              :             }
    6210              : 
    6211              :           if (j != i)
    6212        21672 :             v = find_use_operator ((gfc_intrinsic_op) j);
    6213              : 
    6214        48762 :           if (u == NULL && v == NULL)
    6215              :             {
    6216        48612 :               skip_list ();
    6217        48612 :               continue;
    6218              :             }
    6219              : 
    6220          150 :           if (u)
    6221          113 :             u->found = 1;
    6222          150 :           if (v)
    6223           89 :             v->found = 1;
    6224              :         }
    6225              : 
    6226       321504 :       mio_interface (&gfc_current_ns->op[i]);
    6227       321504 :       if (!gfc_current_ns->op[i] && !gfc_current_ns->op[j])
    6228              :         {
    6229       319804 :           if (u)
    6230           15 :             u->found = 0;
    6231       319804 :           if (v)
    6232           26 :             v->found = 0;
    6233              :         }
    6234              :     }
    6235              : 
    6236        13708 :   mio_rparen ();
    6237              : 
    6238              :   /* Load generic and user operator interfaces.  These must follow the
    6239              :      loading of symtree because otherwise symbols can be marked as
    6240              :      ambiguous.  */
    6241              : 
    6242        13708 :   set_module_locus (&user_operators);
    6243              : 
    6244        13708 :   load_operator_interfaces ();
    6245        13708 :   load_generic_interfaces ();
    6246              : 
    6247        13708 :   load_commons ();
    6248        13708 :   load_equiv ();
    6249              : 
    6250              :   /* Load OpenMP user defined reductions.  */
    6251        13708 :   set_module_locus (&omp_udrs);
    6252        13708 :   load_omp_udrs ();
    6253              : 
    6254              :   /* Load OpenMP user defined mappers.  */
    6255        13708 :   if (has_omp_udms)
    6256              :     {
    6257            8 :       set_module_locus (&omp_udms);
    6258            8 :       mio_lparen ();
    6259              :       /* Skip 'UDM' marker, cf. above.  */
    6260            8 :       (void) module_char ();
    6261            8 :       (void) module_char ();
    6262            8 :       (void) module_char ();
    6263            8 :       load_omp_udms ();
    6264            8 :       mio_rparen ();
    6265              :     }
    6266              : 
    6267              :   /* At this point, we read those symbols that are needed but haven't
    6268              :      been loaded yet.  If one symbol requires another, the other gets
    6269              :      marked as NEEDED if its previous state was UNUSED.  */
    6270              : 
    6271        38706 :   while (load_needed (pi_root));
    6272              : 
    6273              :   /* Make sure all elements of the rename-list were found in the module.  */
    6274              : 
    6275        16668 :   for (u = gfc_rename_list; u; u = u->next)
    6276              :     {
    6277         2960 :       if (u->found)
    6278         2952 :         continue;
    6279              : 
    6280            8 :       if (u->op == INTRINSIC_NONE)
    6281              :         {
    6282            3 :           gfc_error ("Symbol %qs referenced at %L not found in module %qs",
    6283            3 :                      u->use_name, &u->where, module_name);
    6284            3 :           continue;
    6285              :         }
    6286              : 
    6287            5 :       if (u->op == INTRINSIC_USER)
    6288              :         {
    6289            2 :           gfc_error ("User operator %qs referenced at %L not found "
    6290            2 :                      "in module %qs", u->use_name, &u->where, module_name);
    6291            2 :           continue;
    6292              :         }
    6293              : 
    6294            3 :       gfc_error ("Intrinsic operator %qs referenced at %L not found "
    6295              :                  "in module %qs", gfc_op2string (u->op), &u->where,
    6296              :                  module_name);
    6297              :     }
    6298              : 
    6299              :   /* Check "omp declare mappers" for duplicates from different modules.  */
    6300        13708 :   check_omp_declare_mappers (gfc_current_ns->omp_udm_root);
    6301              : 
    6302              :   /* Clean up symbol nodes that were never loaded, create references
    6303              :      to hidden symbols.  */
    6304              : 
    6305        13708 :   read_cleanup (pi_root);
    6306        13708 : }
    6307              : 
    6308              : 
    6309              : /* Given an access type that is specific to an entity and the default
    6310              :    access, return nonzero if the entity is publicly accessible.  If the
    6311              :    element is declared as PUBLIC, then it is public; if declared
    6312              :    PRIVATE, then private, and otherwise it is public unless the default
    6313              :    access in this context has been declared PRIVATE.  */
    6314              : 
    6315              : static bool dump_smod = false;
    6316              : 
    6317              : static bool
    6318      1066198 : check_access (gfc_access specific_access, gfc_access default_access)
    6319              : {
    6320      1066198 :   if (dump_smod)
    6321              :     return true;
    6322              : 
    6323      1041363 :   if (specific_access == ACCESS_PUBLIC)
    6324              :     return true;
    6325      1010956 :   if (specific_access == ACCESS_PRIVATE)
    6326              :     return false;
    6327              : 
    6328      1008607 :   if (flag_module_private)
    6329           91 :     return default_access == ACCESS_PUBLIC;
    6330              :   else
    6331      1008516 :     return default_access != ACCESS_PRIVATE;
    6332              : }
    6333              : 
    6334              : 
    6335              : bool
    6336       887721 : gfc_check_symbol_access (gfc_symbol *sym)
    6337              : {
    6338       887721 :   if (sym->attr.vtab || sym->attr.vtype)
    6339              :     return true;
    6340              :   else
    6341       796669 :     return check_access (sym->attr.access, sym->ns->default_access);
    6342              : }
    6343              : 
    6344              : 
    6345              : /* A structure to remember which commons we've already written.  */
    6346              : 
    6347              : struct written_common
    6348              : {
    6349              :   BBT_HEADER(written_common);
    6350              :   const char *name, *label;
    6351              : };
    6352              : 
    6353              : static struct written_common *written_commons = NULL;
    6354              : 
    6355              : /* Comparison function used for balancing the binary tree.  */
    6356              : 
    6357              : static int
    6358          127 : compare_written_commons (void *a1, void *b1)
    6359              : {
    6360          127 :   const char *aname = ((struct written_common *) a1)->name;
    6361          127 :   const char *alabel = ((struct written_common *) a1)->label;
    6362          127 :   const char *bname = ((struct written_common *) b1)->name;
    6363          127 :   const char *blabel = ((struct written_common *) b1)->label;
    6364          127 :   int c = strcmp (aname, bname);
    6365              : 
    6366          127 :   return (c != 0 ? c : strcmp (alabel, blabel));
    6367              : }
    6368              : 
    6369              : /* Free a list of written commons.  */
    6370              : 
    6371              : static void
    6372        10044 : free_written_common (struct written_common *w)
    6373              : {
    6374        10044 :   if (!w)
    6375              :     return;
    6376              : 
    6377          211 :   if (w->left)
    6378           27 :     free_written_common (w->left);
    6379          211 :   if (w->right)
    6380           42 :     free_written_common (w->right);
    6381              : 
    6382          211 :   free (w);
    6383              : }
    6384              : 
    6385              : /* Write a common block to the module -- recursive helper function.  */
    6386              : 
    6387              : static void
    6388        20890 : write_common_0 (gfc_symtree *st, bool this_module)
    6389              : {
    6390        20890 :   gfc_common_head *p;
    6391        20890 :   const char * name;
    6392        20890 :   int flags;
    6393        20890 :   const char *label;
    6394        20890 :   struct written_common *w;
    6395        20890 :   bool write_me = true;
    6396              : 
    6397        20890 :   if (st == NULL)
    6398        20420 :     return;
    6399              : 
    6400          470 :   write_common_0 (st->left, this_module);
    6401              : 
    6402              :   /* We will write out the binding label, or "" if no label given.  */
    6403          470 :   name = st->n.common->name;
    6404          470 :   p = st->n.common;
    6405          470 :   label = (p->is_bind_c && p->binding_label) ? p->binding_label : "";
    6406              : 
    6407              :   /* Check if we've already output this common.  */
    6408          470 :   w = written_commons;
    6409          988 :   while (w)
    6410              :     {
    6411          518 :       int c = strcmp (name, w->name);
    6412          518 :       c = (c != 0 ? c : strcmp (label, w->label));
    6413          206 :       if (c == 0)
    6414              :         write_me = false;
    6415              : 
    6416          518 :       w = (c < 0) ? w->left : w->right;
    6417              :     }
    6418              : 
    6419          470 :   if (this_module && p->use_assoc)
    6420              :     write_me = false;
    6421              : 
    6422          417 :   if (write_me)
    6423              :     {
    6424              :       /* Write the common to the module.  */
    6425          211 :       mio_lparen ();
    6426          211 :       mio_pool_string (&name);
    6427              : 
    6428          211 :       mio_symbol_ref (&p->head);
    6429          211 :       flags = p->saved ? 1 : 0;
    6430          211 :       if (p->threadprivate)
    6431            0 :         flags |= 2;
    6432          211 :       flags |= p->omp_device_type << 2;
    6433          211 :       flags |= p->omp_groupprivate << 4;
    6434          211 :       mio_integer (&flags);
    6435              : 
    6436              :       /* Write out whether the common block is bind(c) or not.  */
    6437          211 :       mio_integer (&(p->is_bind_c));
    6438              : 
    6439          211 :       mio_pool_string (&label);
    6440          211 :       mio_rparen ();
    6441              : 
    6442              :       /* Record that we have written this common.  */
    6443          211 :       w = XCNEW (struct written_common);
    6444          211 :       w->name = p->name;
    6445          211 :       w->label = label;
    6446          211 :       gfc_insert_bbt (&written_commons, w, compare_written_commons);
    6447              :     }
    6448              : 
    6449          470 :   write_common_0 (st->right, this_module);
    6450              : }
    6451              : 
    6452              : 
    6453              : /* Write a common, by initializing the list of written commons, calling
    6454              :    the recursive function write_common_0() and cleaning up afterwards.  */
    6455              : 
    6456              : static void
    6457         9975 : write_common (gfc_symtree *st)
    6458              : {
    6459         9975 :   written_commons = NULL;
    6460         9975 :   write_common_0 (st, true);
    6461         9975 :   write_common_0 (st, false);
    6462         9975 :   free_written_common (written_commons);
    6463         9975 :   written_commons = NULL;
    6464         9975 : }
    6465              : 
    6466              : 
    6467              : /* Write the blank common block to the module.  */
    6468              : 
    6469              : static void
    6470         9975 : write_blank_common (void)
    6471              : {
    6472         9975 :   const char * name = BLANK_COMMON_NAME;
    6473         9975 :   int saved;
    6474              :   /* TODO: Blank commons are not bind(c).  The F2003 standard probably says
    6475              :      this, but it hasn't been checked.  Just making it so for now.  */
    6476         9975 :   int is_bind_c = 0;
    6477              : 
    6478         9975 :   if (gfc_current_ns->blank_common.head == NULL)
    6479         9968 :     return;
    6480              : 
    6481            7 :   mio_lparen ();
    6482              : 
    6483            7 :   mio_pool_string (&name);
    6484              : 
    6485            7 :   mio_symbol_ref (&gfc_current_ns->blank_common.head);
    6486            7 :   saved = gfc_current_ns->blank_common.saved;
    6487            7 :   mio_integer (&saved);
    6488              : 
    6489              :   /* Write out whether the common block is bind(c) or not.  */
    6490            7 :   mio_integer (&is_bind_c);
    6491              : 
    6492              :   /* Write out an empty binding label.  */
    6493            7 :   write_atom (ATOM_STRING, "");
    6494              : 
    6495            7 :   mio_rparen ();
    6496              : }
    6497              : 
    6498              : 
    6499              : /* Write equivalences to the module.  */
    6500              : 
    6501              : static void
    6502         9975 : write_equiv (void)
    6503              : {
    6504         9975 :   gfc_equiv *eq, *e;
    6505         9975 :   int num;
    6506              : 
    6507         9975 :   num = 0;
    6508        10057 :   for (eq = gfc_current_ns->equiv; eq; eq = eq->next)
    6509              :     {
    6510           82 :       mio_lparen ();
    6511              : 
    6512          328 :       for (e = eq; e; e = e->eq)
    6513              :         {
    6514          164 :           if (e->module == NULL)
    6515          142 :             e->module = gfc_get_string ("%s.eq.%d", module_name, num);
    6516          164 :           mio_allocated_string (e->module);
    6517          164 :           mio_expr (&e->expr);
    6518              :         }
    6519              : 
    6520           82 :       num++;
    6521           82 :       mio_rparen ();
    6522              :     }
    6523         9975 : }
    6524              : 
    6525              : 
    6526              : /* Write a symbol to the module.  */
    6527              : 
    6528              : static void
    6529       244493 : write_symbol (int n, gfc_symbol *sym)
    6530              : {
    6531       244493 :   const char *label;
    6532              : 
    6533       244493 :   if (sym->attr.flavor == FL_UNKNOWN || sym->attr.flavor == FL_LABEL)
    6534            0 :     gfc_internal_error ("write_symbol(): bad module symbol %qs", sym->name);
    6535              : 
    6536       244493 :   mio_integer (&n);
    6537              : 
    6538       244493 :   if (gfc_fl_struct (sym->attr.flavor))
    6539              :     {
    6540        27445 :       const char *name;
    6541        27445 :       name = gfc_dt_upper_string (sym->name);
    6542        27445 :       mio_pool_string (&name);
    6543        27445 :     }
    6544              :   else
    6545       217048 :     mio_pool_string (&sym->name);
    6546              : 
    6547       244493 :   mio_pool_string (&sym->module);
    6548       244493 :   if ((sym->attr.is_bind_c || sym->attr.is_iso_c) && sym->binding_label)
    6549              :     {
    6550         2943 :       label = sym->binding_label;
    6551         2943 :       mio_pool_string (&label);
    6552              :     }
    6553              :   else
    6554       241550 :     write_atom (ATOM_STRING, "");
    6555              : 
    6556       244493 :   mio_pointer_ref (&sym->ns);
    6557              : 
    6558       244493 :   mio_symbol (sym);
    6559       244493 :   write_char ('\n');
    6560       244493 : }
    6561              : 
    6562              : 
    6563              : /* Recursive traversal function to write the initial set of symbols to
    6564              :    the module.  We check to see if the symbol should be written
    6565              :    according to the access specification.  */
    6566              : 
    6567              : static void
    6568       166137 : write_symbol0 (gfc_symtree *st)
    6569              : {
    6570       322299 :   gfc_symbol *sym;
    6571       322299 :   pointer_info *p;
    6572       322299 :   bool dont_write = false;
    6573              : 
    6574       322299 :   if (st == NULL)
    6575       166137 :     return;
    6576              : 
    6577       156162 :   write_symbol0 (st->left);
    6578              : 
    6579       156162 :   sym = st->n.sym;
    6580       156162 :   if (sym->module == NULL)
    6581        70709 :     sym->module = module_name;
    6582              : 
    6583       156162 :   if (sym->attr.flavor == FL_PROCEDURE && sym->attr.generic
    6584        12089 :       && !sym->attr.subroutine && !sym->attr.function)
    6585       156162 :     dont_write = true;
    6586              : 
    6587       156162 :   if (!gfc_check_symbol_access (sym))
    6588              :     dont_write = true;
    6589              : 
    6590       137325 :   if (!dont_write)
    6591              :     {
    6592       135847 :       p = get_pointer (sym);
    6593       135847 :       if (p->type == P_UNKNOWN)
    6594       103460 :         p->type = P_SYMBOL;
    6595              : 
    6596       135847 :       if (p->u.wsym.state != WRITTEN)
    6597              :         {
    6598       132976 :           write_symbol (p->integer, sym);
    6599       132976 :           p->u.wsym.state = WRITTEN;
    6600              :         }
    6601              :     }
    6602              : 
    6603       156162 :   write_symbol0 (st->right);
    6604              : }
    6605              : 
    6606              : 
    6607              : static void
    6608          100 : write_omp_udr (gfc_omp_udr *udr)
    6609              : {
    6610          100 :   switch (udr->rop)
    6611              :     {
    6612           65 :     case OMP_REDUCTION_USER:
    6613              :       /* Non-operators can't be used outside of the module.  */
    6614           65 :       if (udr->name[0] != '.')
    6615              :         return;
    6616              :       else
    6617              :         {
    6618           47 :           gfc_symtree *st;
    6619           47 :           size_t len = strlen (udr->name + 1);
    6620           47 :           char *name = XALLOCAVEC (char, len);
    6621           47 :           memcpy (name, udr->name, len - 1);
    6622           47 :           name[len - 1] = '\0';
    6623           47 :           st = gfc_find_symtree (gfc_current_ns->uop_root, name);
    6624              :           /* If corresponding user operator is private, don't write
    6625              :              the UDR.  */
    6626           47 :           if (st != NULL)
    6627              :             {
    6628            0 :               gfc_user_op *uop = st->n.uop;
    6629            0 :               if (!check_access (uop->access, uop->ns->default_access))
    6630              :                 return;
    6631              :             }
    6632              :         }
    6633              :       break;
    6634           35 :     case OMP_REDUCTION_PLUS:
    6635           35 :     case OMP_REDUCTION_MINUS:
    6636           35 :     case OMP_REDUCTION_TIMES:
    6637           35 :     case OMP_REDUCTION_AND:
    6638           35 :     case OMP_REDUCTION_OR:
    6639           35 :     case OMP_REDUCTION_EQV:
    6640           35 :     case OMP_REDUCTION_NEQV:
    6641              :       /* If corresponding operator is private, don't write the UDR.  */
    6642           35 :       if (!check_access (gfc_current_ns->operator_access[udr->rop],
    6643              :                          gfc_current_ns->default_access))
    6644              :         return;
    6645              :       break;
    6646              :     default:
    6647              :       break;
    6648              :     }
    6649           81 :   if (udr->ts.type == BT_DERIVED || udr->ts.type == BT_CLASS)
    6650              :     {
    6651              :       /* If derived type is private, don't write the UDR.  */
    6652           45 :       if (!gfc_check_symbol_access (udr->ts.u.derived))
    6653              :         return;
    6654              :     }
    6655              : 
    6656           80 :   mio_lparen ();
    6657           80 :   mio_pool_string (&udr->name);
    6658           80 :   mio_typespec (&udr->ts);
    6659           80 :   mio_omp_udr_expr (udr, &udr->omp_out, &udr->omp_in, udr->combiner_ns, false);
    6660           80 :   if (udr->initializer_ns)
    6661           64 :     mio_omp_udr_expr (udr, &udr->omp_priv, &udr->omp_orig,
    6662              :                       udr->initializer_ns, true);
    6663           80 :   mio_rparen ();
    6664              : }
    6665              : 
    6666              : 
    6667              : /* Write OpenMP's declare reduction (used defined reductions). */
    6668              : 
    6669              : static void
    6670        10075 : write_omp_udrs (gfc_symtree *st)
    6671              : {
    6672        10175 :   if (st == NULL)
    6673        10075 :     return;
    6674              : 
    6675          100 :   write_omp_udrs (st->left);
    6676          100 :   gfc_omp_udr *udr;
    6677          200 :   for (udr = st->n.omp_udr; udr; udr = udr->next)
    6678          100 :     write_omp_udr (udr);
    6679          100 :   write_omp_udrs (st->right);
    6680              : }
    6681              : 
    6682              : 
    6683              : /* Write OpenMP's declare mapper (used defined mapper). */
    6684              : 
    6685              : static void
    6686            9 : write_omp_udm (gfc_omp_udm *udm)
    6687              : {
    6688            9 :   mio_lparen ();
    6689              :   /* We need this pointer ref to identify this mapper so that other mappers
    6690              :      can refer to it.  */
    6691            9 :   mio_pointer_ref (&udm);
    6692            9 :   mio_pool_string (&udm->mapper_id);
    6693            9 :   mio_typespec (&udm->ts);
    6694              : 
    6695            9 :   if (udm->var_sym->module == NULL)
    6696            9 :     udm->var_sym->module = module_name;
    6697              : 
    6698            9 :   mio_symbol_ref (&udm->var_sym);
    6699            9 :   mio_lparen ();
    6700            9 :   gfc_omp_namelist *n;
    6701           26 :   for (n = udm->clauses->lists[OMP_LIST_MAP]; n; n = n->next)
    6702              :     {
    6703           17 :       mio_lparen ();
    6704              : 
    6705           17 :       mio_name (n->u.map.op, omp_map_clause_ops);
    6706           17 :       mio_symbol_ref (&n->sym);
    6707           17 :       mio_expr (&n->expr);
    6708              : 
    6709           17 :       mio_lparen ();
    6710              : 
    6711           17 :       if (n->u3.udm)
    6712              :         {
    6713            7 :           mio_pool_string (&n->u3.udm->requested_mapper_id);
    6714            7 :           mio_pointer_ref (&n->u3.udm->resolved_udm);
    6715              :         }
    6716              : 
    6717           17 :       mio_rparen ();
    6718              : 
    6719           17 :       mio_rparen ();
    6720              :     }
    6721            9 :   mio_rparen ();
    6722            9 :   mio_rparen ();
    6723            9 : }
    6724              : 
    6725              : 
    6726              : static void
    6727           17 : write_omp_udms (gfc_symtree *st)
    6728              : {
    6729           26 :   if (st == NULL)
    6730           17 :     return;
    6731              : 
    6732            9 :   write_omp_udms (st->left);
    6733            9 :   gfc_omp_udm *udm;
    6734           18 :   for (udm = st->n.omp_udm; udm; udm = udm->next)
    6735            9 :     write_omp_udm (udm);
    6736            9 :   write_omp_udms (st->right);
    6737              : }
    6738              : 
    6739              : 
    6740              : /* Type for the temporary tree used when writing secondary symbols.  */
    6741              : 
    6742              : struct sorted_pointer_info
    6743              : {
    6744              :   BBT_HEADER (sorted_pointer_info);
    6745              : 
    6746              :   pointer_info *p;
    6747              : };
    6748              : 
    6749              : #define gfc_get_sorted_pointer_info() XCNEW (sorted_pointer_info)
    6750              : 
    6751              : /* Recursively traverse the temporary tree, free its contents.  */
    6752              : 
    6753              : static void
    6754       238460 : free_sorted_pointer_info_tree (sorted_pointer_info *p)
    6755              : {
    6756       238460 :   if (!p)
    6757              :     return;
    6758              : 
    6759       111517 :   free_sorted_pointer_info_tree (p->left);
    6760       111517 :   free_sorted_pointer_info_tree (p->right);
    6761              : 
    6762       111517 :   free (p);
    6763              : }
    6764              : 
    6765              : /* Comparison function for the temporary tree.  */
    6766              : 
    6767              : static int
    6768       380559 : compare_sorted_pointer_info (void *_spi1, void *_spi2)
    6769              : {
    6770       380559 :   sorted_pointer_info *spi1, *spi2;
    6771       380559 :   spi1 = (sorted_pointer_info *)_spi1;
    6772       380559 :   spi2 = (sorted_pointer_info *)_spi2;
    6773              : 
    6774       380559 :   if (spi1->p->integer < spi2->p->integer)
    6775              :     return -1;
    6776       216681 :   if (spi1->p->integer > spi2->p->integer)
    6777       216681 :     return 1;
    6778              :   return 0;
    6779              : }
    6780              : 
    6781              : 
    6782              : /* Finds the symbols that need to be written and collects them in the
    6783              :    sorted_pi tree so that they can be traversed in an order
    6784              :    independent of memory addresses.  */
    6785              : 
    6786              : static void
    6787      1244882 : find_symbols_to_write(sorted_pointer_info **tree, pointer_info *p)
    6788              : {
    6789      2464363 :   if (!p)
    6790      1244882 :     return;
    6791              : 
    6792      1219481 :   if (p->type == P_SYMBOL && p->u.wsym.state == NEEDS_WRITE)
    6793              :     {
    6794       111517 :       sorted_pointer_info *sp = gfc_get_sorted_pointer_info();
    6795       111517 :       sp->p = p;
    6796              : 
    6797       111517 :       gfc_insert_bbt (tree, sp, compare_sorted_pointer_info);
    6798              :    }
    6799              : 
    6800      1219481 :   find_symbols_to_write (tree, p->left);
    6801      1219481 :   find_symbols_to_write (tree, p->right);
    6802              : }
    6803              : 
    6804              : 
    6805              : /* Recursive function that traverses the tree of symbols that need to be
    6806              :    written and writes them in order.  */
    6807              : 
    6808              : static void
    6809       126943 : write_symbol1_recursion (sorted_pointer_info *sp)
    6810              : {
    6811       238460 :   if (!sp)
    6812       126943 :     return;
    6813              : 
    6814       111517 :   write_symbol1_recursion (sp->left);
    6815              : 
    6816       111517 :   pointer_info *p1 = sp->p;
    6817       111517 :   gcc_assert (p1->type == P_SYMBOL && p1->u.wsym.state == NEEDS_WRITE);
    6818              : 
    6819       111517 :   p1->u.wsym.state = WRITTEN;
    6820       111517 :   write_symbol (p1->integer, p1->u.wsym.sym);
    6821       111517 :   p1->u.wsym.sym->attr.public_used = 1;
    6822              : 
    6823       111517 :   write_symbol1_recursion (sp->right);
    6824              : }
    6825              : 
    6826              : 
    6827              : /* Write the secondary set of symbols to the module file.  These are
    6828              :    symbols that were not public yet are needed by the public symbols
    6829              :    or another dependent symbol.  The act of writing a symbol can add
    6830              :    symbols to the pointer_info tree, so we return nonzero if a symbol
    6831              :    was written and pass that information upwards.  The caller will
    6832              :    then call this function again until nothing was written.  It uses
    6833              :    the utility functions and a temporary tree to ensure a reproducible
    6834              :    ordering of the symbol output and thus the module file.  */
    6835              : 
    6836              : static int
    6837        25401 : write_symbol1 (pointer_info *p)
    6838              : {
    6839        25401 :   if (!p)
    6840              :     return 0;
    6841              : 
    6842              :   /* Put symbols that need to be written into a tree sorted on the
    6843              :      integer field.  */
    6844              : 
    6845        25401 :   sorted_pointer_info *spi_root = NULL;
    6846        25401 :   find_symbols_to_write (&spi_root, p);
    6847              : 
    6848              :   /* No symbols to write, return.  */
    6849        25401 :   if (!spi_root)
    6850              :     return 0;
    6851              : 
    6852              :   /* Otherwise, write and free the tree again.  */
    6853        15426 :   write_symbol1_recursion (spi_root);
    6854        15426 :   free_sorted_pointer_info_tree (spi_root);
    6855              : 
    6856        15426 :   return 1;
    6857              : }
    6858              : 
    6859              : 
    6860              : /* Write operator interfaces associated with a symbol.  */
    6861              : 
    6862              : static void
    6863          169 : write_operator (gfc_user_op *uop)
    6864              : {
    6865          169 :   static char nullstring[] = "";
    6866          169 :   const char *p = nullstring;
    6867              : 
    6868          169 :   if (uop->op == NULL || !check_access (uop->access, uop->ns->default_access))
    6869            1 :     return;
    6870              : 
    6871          168 :   mio_symbol_interface (&uop->name, &p, &uop->op);
    6872              : }
    6873              : 
    6874              : 
    6875              : /* Write generic interfaces from the namespace sym_root.  */
    6876              : 
    6877              : static void
    6878       166137 : write_generic (gfc_symtree *st)
    6879              : {
    6880       322299 :   gfc_symbol *sym;
    6881              : 
    6882       322299 :   if (st == NULL)
    6883       166137 :     return;
    6884              : 
    6885       156162 :   write_generic (st->left);
    6886              : 
    6887       156162 :   sym = st->n.sym;
    6888       156162 :   if (sym && !check_unique_name (st->name)
    6889       304955 :       && sym->generic && gfc_check_symbol_access (sym))
    6890              :     {
    6891        11055 :       if (!sym->module)
    6892         7193 :         sym->module = module_name;
    6893              : 
    6894        11055 :       mio_symbol_interface (&st->name, &sym->module, &sym->generic);
    6895              :     }
    6896              : 
    6897       156162 :   write_generic (st->right);
    6898              : }
    6899              : 
    6900              : 
    6901              : static void
    6902       156163 : write_symtree (gfc_symtree *st)
    6903              : {
    6904       156163 :   gfc_symbol *sym;
    6905       156163 :   pointer_info *p;
    6906              : 
    6907       156163 :   sym = st->n.sym;
    6908              : 
    6909              :   /* A symbol in an interface body must not be visible in the
    6910              :      module file.  */
    6911       156163 :   if (sym->ns != gfc_current_ns
    6912          450 :         && sym->ns->proc_name
    6913          450 :         && sym->ns->proc_name->attr.if_source == IFSRC_IFBODY)
    6914              :     return;
    6915              : 
    6916       156163 :   if ((!gfc_check_symbol_access (sym)
    6917        18837 :        && (!sym->attr.public_used || submodule_name == NULL))
    6918       156163 :       || (sym->attr.flavor == FL_PROCEDURE && sym->attr.generic
    6919        11183 :           && !sym->attr.subroutine && !sym->attr.function))
    6920              :     return;
    6921              : 
    6922       135847 :   if (check_unique_name (st->name))
    6923              :     return;
    6924              : 
    6925              :   /* From F2003 onwards, intrinsic procedures are no longer subject to
    6926              :      the restriction, "that an elemental intrinsic function here be of
    6927              :      type integer or character and each argument must be an initialization
    6928              :      expr of type integer or character" is lifted so that intrinsic
    6929              :      procedures can be over-ridden. This requires that the intrinsic
    6930              :      symbol not appear in the module file, thereby preventing ambiguity
    6931              :      when USEd.  */
    6932       129451 :   if (strcmp (sym->module, "(intrinsic)") == 0
    6933         2166 :       && (gfc_option.allow_std & GFC_STD_F2003))
    6934              :     return;
    6935              : 
    6936       127286 :   p = find_pointer (sym);
    6937       127286 :   if (p == NULL)
    6938            0 :     gfc_internal_error ("write_symtree(): Symbol not written");
    6939              : 
    6940       127286 :   mio_pool_string (&st->name);
    6941       127286 :   mio_integer (&st->ambiguous);
    6942       127286 :   mio_hwi (&p->integer);
    6943              : }
    6944              : 
    6945              : 
    6946              : static void
    6947         9975 : write_module (void)
    6948              : {
    6949         9975 :   int i;
    6950              : 
    6951              :   /* Initialize the column counter. */
    6952         9975 :   module_column = 1;
    6953              : 
    6954              :   /* Write the operator interfaces.  */
    6955         9975 :   mio_lparen ();
    6956              : 
    6957       299250 :   for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
    6958              :     {
    6959       279300 :       if (i == INTRINSIC_USER)
    6960         9975 :         continue;
    6961              : 
    6962       538650 :       mio_interface (check_access (gfc_current_ns->operator_access[i],
    6963              :                                    gfc_current_ns->default_access)
    6964              :                      ? &gfc_current_ns->op[i] : NULL);
    6965              :     }
    6966              : 
    6967         9975 :   mio_rparen ();
    6968         9975 :   write_char ('\n');
    6969         9975 :   write_char ('\n');
    6970              : 
    6971         9975 :   mio_lparen ();
    6972         9975 :   gfc_traverse_user_op (gfc_current_ns, write_operator);
    6973         9975 :   mio_rparen ();
    6974         9975 :   write_char ('\n');
    6975         9975 :   write_char ('\n');
    6976              : 
    6977         9975 :   mio_lparen ();
    6978         9975 :   write_generic (gfc_current_ns->sym_root);
    6979         9975 :   mio_rparen ();
    6980         9975 :   write_char ('\n');
    6981         9975 :   write_char ('\n');
    6982              : 
    6983         9975 :   mio_lparen ();
    6984         9975 :   write_blank_common ();
    6985         9975 :   write_common (gfc_current_ns->common_root);
    6986         9975 :   mio_rparen ();
    6987         9975 :   write_char ('\n');
    6988         9975 :   write_char ('\n');
    6989              : 
    6990         9975 :   mio_lparen ();
    6991         9975 :   write_equiv ();
    6992         9975 :   mio_rparen ();
    6993         9975 :   write_char ('\n');
    6994         9975 :   write_char ('\n');
    6995              : 
    6996         9975 :   mio_lparen ();
    6997         9975 :   write_omp_udrs (gfc_current_ns->omp_udr_root);
    6998         9975 :   mio_rparen ();
    6999         9975 :   write_char ('\n');
    7000         9975 :   write_char ('\n');
    7001              : 
    7002              :   /* Condition can be removed if version is bumped.  Note that
    7003              :      write_symbol0 starts with an integer.  Keep in sync with read_module;
    7004              :      The 'UDM' tag can be only removed when changing COMPAT_MOD_VERSIONS.  */
    7005         9975 :   STATIC_ASSERT (MOD_VERSION_NUMERIC == 16);
    7006         9975 :   if (gfc_current_ns->omp_udm_root)
    7007              :     {
    7008            8 :       mio_lparen ();
    7009            8 :       write_atom (ATOM_NAME, "UDM");  /* Marker. */
    7010            8 :       write_omp_udms (gfc_current_ns->omp_udm_root);
    7011            8 :       mio_rparen ();
    7012            8 :       write_char ('\n');
    7013            8 :       write_char ('\n');
    7014              :     }
    7015              : 
    7016              :   /* Write symbol information.  First we traverse all symbols in the
    7017              :      primary namespace, writing those that need to be written.
    7018              :      Sometimes writing one symbol will cause another to need to be
    7019              :      written.  A list of these symbols ends up on the write stack, and
    7020              :      we end by popping the bottom of the stack and writing the symbol
    7021              :      until the stack is empty.  */
    7022              : 
    7023         9975 :   mio_lparen ();
    7024              : 
    7025         9975 :   write_symbol0 (gfc_current_ns->sym_root);
    7026        35376 :   while (write_symbol1 (pi_root))
    7027              :     /* Nothing.  */;
    7028              : 
    7029         9975 :   mio_rparen ();
    7030              : 
    7031         9975 :   write_char ('\n');
    7032         9975 :   write_char ('\n');
    7033              : 
    7034         9975 :   mio_lparen ();
    7035         9975 :   gfc_traverse_symtree (gfc_current_ns->sym_root, write_symtree);
    7036         9975 :   mio_rparen ();
    7037         9975 : }
    7038              : 
    7039              : 
    7040              : /* Read a CRC32 sum from the gzip trailer of a module file.  Returns
    7041              :    true on success, false on failure.  */
    7042              : 
    7043              : static bool
    7044        19950 : read_crc32_from_module_file (const char* filename, uLong* crc)
    7045              : {
    7046        19950 :   FILE *file;
    7047        19950 :   char buf[4];
    7048        19950 :   unsigned int val;
    7049              : 
    7050              :   /* Open the file in binary mode.  */
    7051        19950 :   if ((file = fopen (filename, "rb")) == NULL)
    7052              :     return false;
    7053              : 
    7054              :   /* The gzip crc32 value is found in the [END-8, END-4] bytes of the
    7055              :      file. See RFC 1952.  */
    7056        10192 :   if (fseek (file, -8, SEEK_END) != 0)
    7057              :     {
    7058            0 :       fclose (file);
    7059            0 :       return false;
    7060              :     }
    7061              : 
    7062              :   /* Read the CRC32.  */
    7063        10192 :   if (fread (buf, 1, 4, file) != 4)
    7064              :     {
    7065            0 :       fclose (file);
    7066            0 :       return false;
    7067              :     }
    7068              : 
    7069              :   /* Close the file.  */
    7070        10192 :   fclose (file);
    7071              : 
    7072        10192 :   val = (buf[0] & 0xFF) + ((buf[1] & 0xFF) << 8) + ((buf[2] & 0xFF) << 16)
    7073        10192 :     + ((buf[3] & 0xFF) << 24);
    7074        10192 :   *crc = val;
    7075              : 
    7076              :   /* For debugging, the CRC value printed in hexadecimal should match
    7077              :      the CRC printed by "zcat -l -v filename".
    7078              :      printf("CRC of file %s is %x\n", filename, val); */
    7079              : 
    7080        10192 :   return true;
    7081              : }
    7082              : 
    7083              : 
    7084              : /* Given module, dump it to disk.  If there was an error while
    7085              :    processing the module, dump_flag will be set to zero and we delete
    7086              :    the module file, even if it was already there.  */
    7087              : 
    7088              : static void
    7089        10462 : dump_module (const char *name, int dump_flag)
    7090              : {
    7091        10462 :   int n;
    7092        10462 :   char *filename, *filename_tmp;
    7093        10462 :   uLong crc, crc_old;
    7094              : 
    7095        10462 :   module_name = gfc_get_string ("%s", name);
    7096              : 
    7097        10462 :   if (dump_smod)
    7098              :     {
    7099          563 :       name = submodule_name;
    7100          563 :       n = strlen (name) + strlen (SUBMODULE_EXTENSION) + 1;
    7101              :     }
    7102              :   else
    7103         9899 :     n = strlen (name) + strlen (MODULE_EXTENSION) + 1;
    7104              : 
    7105        10462 :   if (gfc_option.module_dir != NULL)
    7106              :     {
    7107            0 :       n += strlen (gfc_option.module_dir);
    7108            0 :       filename = (char *) alloca (n);
    7109            0 :       strcpy (filename, gfc_option.module_dir);
    7110            0 :       strcat (filename, name);
    7111              :     }
    7112              :   else
    7113              :     {
    7114        10462 :       filename = (char *) alloca (n);
    7115        10462 :       strcpy (filename, name);
    7116              :     }
    7117              : 
    7118        10462 :   if (dump_smod)
    7119          563 :     strcat (filename, SUBMODULE_EXTENSION);
    7120              :   else
    7121         9899 :   strcat (filename, MODULE_EXTENSION);
    7122              : 
    7123              :   /* Name of the temporary file used to write the module.  */
    7124        10462 :   filename_tmp = (char *) alloca (n + 1);
    7125        10462 :   strcpy (filename_tmp, filename);
    7126        10462 :   strcat (filename_tmp, "0");
    7127              : 
    7128              :   /* There was an error while processing the module.  We delete the
    7129              :      module file, even if it was already there.  */
    7130        10462 :   if (!dump_flag)
    7131              :     {
    7132          487 :       remove (filename);
    7133          487 :       return;
    7134              :     }
    7135              : 
    7136         9975 :   if (gfc_cpp_makedep ())
    7137            0 :     gfc_cpp_add_target (filename);
    7138              : 
    7139              :   /* Write the module to the temporary file.  */
    7140         9975 :   module_fp = gzopen (filename_tmp, "w");
    7141         9975 :   if (module_fp == NULL)
    7142            0 :     gfc_fatal_error ("Cannot open module file %qs for writing at %C: %s",
    7143            0 :                      filename_tmp, xstrerror (errno));
    7144              : 
    7145              :   /* Use lbasename to ensure module files are reproducible regardless
    7146              :      of the build path (see the reproducible builds project).  */
    7147         9975 :   gzprintf (module_fp, "GFORTRAN module version '%s' created from %s\n",
    7148              :             MOD_VERSION, lbasename (gfc_source_file));
    7149              : 
    7150              :   /* Write the module itself.  */
    7151         9975 :   iomode = IO_OUTPUT;
    7152              : 
    7153         9975 :   init_pi_tree ();
    7154              : 
    7155         9975 :   write_module ();
    7156              : 
    7157         9975 :   free_pi_tree (pi_root);
    7158         9975 :   pi_root = NULL;
    7159              : 
    7160         9975 :   write_char ('\n');
    7161              : 
    7162         9975 :   if (gzclose (module_fp))
    7163            0 :     gfc_fatal_error ("Error writing module file %qs for writing: %s",
    7164            0 :                      filename_tmp, xstrerror (errno));
    7165              : 
    7166              :   /* Read the CRC32 from the gzip trailers of the module files and
    7167              :      compare.  */
    7168         9975 :   if (!read_crc32_from_module_file (filename_tmp, &crc)
    7169         9975 :       || !read_crc32_from_module_file (filename, &crc_old)
    7170        10192 :       || crc_old != crc)
    7171              :     {
    7172              :       /* Module file have changed, replace the old one.  */
    7173         9762 :       if (remove (filename) && errno != ENOENT)
    7174            0 :         gfc_fatal_error ("Cannot delete module file %qs: %s", filename,
    7175              :                          xstrerror (errno));
    7176         9762 :       if (rename (filename_tmp, filename))
    7177            0 :         gfc_fatal_error ("Cannot rename module file %qs to %qs: %s",
    7178            0 :                          filename_tmp, filename, xstrerror (errno));
    7179              :     }
    7180              :   else
    7181              :     {
    7182          213 :       if (remove (filename_tmp))
    7183            0 :         gfc_fatal_error ("Cannot delete temporary module file %qs: %s",
    7184            0 :                          filename_tmp, xstrerror (errno));
    7185              :     }
    7186              : }
    7187              : 
    7188              : 
    7189              : /* Suppress the output of a .smod file by module, if no module
    7190              :    procedures have been seen.  */
    7191              : static bool no_module_procedures;
    7192              : 
    7193              : static void
    7194       155935 : check_for_module_procedures (gfc_symbol *sym)
    7195              : {
    7196       155935 :   if (sym && sym->attr.module_procedure)
    7197         1162 :     no_module_procedures = false;
    7198       155935 : }
    7199              : 
    7200              : 
    7201              : void
    7202        10163 : gfc_dump_module (const char *name, int dump_flag)
    7203              : {
    7204        10163 :   if (gfc_state_stack->state == COMP_SUBMODULE)
    7205          264 :     dump_smod = true;
    7206              :   else
    7207         9899 :     dump_smod =false;
    7208              : 
    7209        10163 :   no_module_procedures = true;
    7210        10163 :   gfc_traverse_ns (gfc_current_ns, check_for_module_procedures);
    7211              : 
    7212        10163 :   dump_module (name, dump_flag);
    7213              : 
    7214        10163 :   if (no_module_procedures || dump_smod)
    7215              :     return;
    7216              : 
    7217              :   /* Write a submodule file from a module.  The 'dump_smod' flag switches
    7218              :      off the check for PRIVATE entities.  */
    7219          299 :   dump_smod = true;
    7220          299 :   submodule_name = module_name;
    7221          299 :   dump_module (name, dump_flag);
    7222          299 :   dump_smod = false;
    7223              : }
    7224              : 
    7225              : static void
    7226        26979 : create_intrinsic_function (const char *name, int id,
    7227              :                            const char *modname, intmod_id module,
    7228              :                            bool subroutine, gfc_symbol *result_type)
    7229              : {
    7230        26979 :   gfc_intrinsic_sym *isym;
    7231        26979 :   gfc_symtree *tmp_symtree;
    7232        26979 :   gfc_symbol *sym;
    7233              : 
    7234        26979 :   tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
    7235        26979 :   if (tmp_symtree)
    7236              :     {
    7237           48 :       if (tmp_symtree->n.sym && tmp_symtree->n.sym->module
    7238           48 :           && strcmp (modname, tmp_symtree->n.sym->module) == 0)
    7239           48 :         return;
    7240            0 :       gfc_error ("Symbol %qs at %C already declared", name);
    7241            0 :       return;
    7242              :     }
    7243              : 
    7244        26931 :   gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree, false);
    7245        26931 :   sym = tmp_symtree->n.sym;
    7246              : 
    7247        26931 :   if (subroutine)
    7248              :     {
    7249         9786 :       gfc_isym_id isym_id = gfc_isym_id_by_intmod (module, id);
    7250         9786 :       isym = gfc_intrinsic_subroutine_by_id (isym_id);
    7251         9786 :       sym->attr.subroutine = 1;
    7252              :     }
    7253              :   else
    7254              :     {
    7255        17145 :       gfc_isym_id isym_id = gfc_isym_id_by_intmod (module, id);
    7256        17145 :       isym = gfc_intrinsic_function_by_id (isym_id);
    7257              : 
    7258        17145 :       sym->attr.function = 1;
    7259        17145 :       if (result_type)
    7260              :         {
    7261         6680 :           sym->ts.type = BT_DERIVED;
    7262         6680 :           sym->ts.u.derived = result_type;
    7263         6680 :           sym->ts.is_c_interop = 1;
    7264         6680 :           isym->ts.f90_type = BT_VOID;
    7265         6680 :           isym->ts.type = BT_DERIVED;
    7266         6680 :           isym->ts.f90_type = BT_VOID;
    7267         6680 :           isym->ts.u.derived = result_type;
    7268         6680 :           isym->ts.is_c_interop = 1;
    7269              :         }
    7270              :     }
    7271        26931 :   gcc_assert (isym);
    7272              : 
    7273        26931 :   sym->attr.flavor = FL_PROCEDURE;
    7274        26931 :   sym->attr.intrinsic = 1;
    7275              : 
    7276        26931 :   sym->module = gfc_get_string ("%s", modname);
    7277        26931 :   sym->attr.use_assoc = 1;
    7278        26931 :   sym->from_intmod = module;
    7279        26931 :   sym->intmod_sym_id = id;
    7280              : }
    7281              : 
    7282              : 
    7283              : /* Import the intrinsic ISO_C_BINDING module, generating symbols in
    7284              :    the current namespace for all named constants, pointer types, and
    7285              :    procedures in the module unless the only clause was used or a rename
    7286              :    list was provided.  */
    7287              : 
    7288              : static void
    7289         9930 : import_iso_c_binding_module (void)
    7290              : {
    7291         9930 :   gfc_symbol *mod_sym = NULL, *return_type;
    7292         9930 :   gfc_symtree *mod_symtree = NULL, *tmp_symtree;
    7293         9930 :   gfc_symtree *c_ptr = NULL, *c_funptr = NULL;
    7294         9930 :   const char *iso_c_module_name = "__iso_c_binding";
    7295         9930 :   gfc_use_rename *u;
    7296         9930 :   int i;
    7297         9930 :   bool want_c_ptr = false, want_c_funptr = false;
    7298              : 
    7299              :   /* Look only in the current namespace.  */
    7300         9930 :   mod_symtree = gfc_find_symtree (gfc_current_ns->sym_root, iso_c_module_name);
    7301              : 
    7302         9930 :   if (mod_symtree == NULL)
    7303              :     {
    7304              :       /* symtree doesn't already exist in current namespace.  */
    7305         9855 :       gfc_get_sym_tree (iso_c_module_name, gfc_current_ns, &mod_symtree,
    7306              :                         false);
    7307              : 
    7308         9855 :       if (mod_symtree != NULL)
    7309         9855 :         mod_sym = mod_symtree->n.sym;
    7310              :       else
    7311            0 :         gfc_internal_error ("import_iso_c_binding_module(): Unable to "
    7312              :                             "create symbol for %s", iso_c_module_name);
    7313              : 
    7314         9855 :       mod_sym->attr.flavor = FL_MODULE;
    7315         9855 :       mod_sym->attr.intrinsic = 1;
    7316         9855 :       mod_sym->module = gfc_get_string ("%s", iso_c_module_name);
    7317         9855 :       mod_sym->from_intmod = INTMOD_ISO_C_BINDING;
    7318              :     }
    7319              : 
    7320              :   /* Check whether C_PTR or C_FUNPTR are in the include list, if so, load it;
    7321              :      check also whether C_NULL_(FUN)PTR or C_(FUN)LOC are requested, which
    7322              :      need C_(FUN)PTR.  */
    7323        20126 :   for (u = gfc_rename_list; u; u = u->next)
    7324              :     {
    7325        10196 :       if (strcmp (c_interop_kinds_table[ISOCBINDING_NULL_PTR].name,
    7326        10196 :                   u->use_name) == 0)
    7327              :         want_c_ptr = true;
    7328        10135 :       else if (strcmp (c_interop_kinds_table[ISOCBINDING_LOC].name,
    7329              :                        u->use_name) == 0)
    7330              :         want_c_ptr = true;
    7331        10005 :       else if (strcmp (c_interop_kinds_table[ISOCBINDING_NULL_FUNPTR].name,
    7332              :                        u->use_name) == 0)
    7333              :         want_c_funptr = true;
    7334         9996 :       else if (strcmp (c_interop_kinds_table[ISOCBINDING_FUNLOC].name,
    7335              :                        u->use_name) == 0)
    7336              :         want_c_funptr = true;
    7337         9960 :       else if (strcmp (c_interop_kinds_table[ISOCBINDING_PTR].name,
    7338              :                        u->use_name) == 0)
    7339              :         {
    7340         2268 :           c_ptr = generate_isocbinding_symbol (iso_c_module_name,
    7341              :                                                (iso_c_binding_symbol)
    7342              :                                                         ISOCBINDING_PTR,
    7343         2268 :                                                u->local_name[0] ? u->local_name
    7344              :                                                                 : u->use_name,
    7345              :                                                NULL, false);
    7346              :         }
    7347         7692 :       else if (strcmp (c_interop_kinds_table[ISOCBINDING_FUNPTR].name,
    7348              :                        u->use_name) == 0)
    7349              :         {
    7350          107 :           c_funptr
    7351          107 :              = generate_isocbinding_symbol (iso_c_module_name,
    7352              :                                             (iso_c_binding_symbol)
    7353              :                                                         ISOCBINDING_FUNPTR,
    7354          107 :                                              u->local_name[0] ? u->local_name
    7355              :                                                               : u->use_name,
    7356              :                                              NULL, false);
    7357              :         }
    7358              :     }
    7359              : 
    7360         9930 :   if ((want_c_ptr || !only_flag) && !c_ptr)
    7361         3300 :     c_ptr = generate_isocbinding_symbol (iso_c_module_name,
    7362              :                                          (iso_c_binding_symbol)
    7363              :                                                         ISOCBINDING_PTR,
    7364              :                                          NULL, NULL, only_flag);
    7365         9930 :   if ((want_c_funptr || !only_flag) && !c_funptr)
    7366         3264 :     c_funptr = generate_isocbinding_symbol (iso_c_module_name,
    7367              :                                             (iso_c_binding_symbol)
    7368              :                                                         ISOCBINDING_FUNPTR,
    7369              :                                             NULL, NULL, only_flag);
    7370              : 
    7371              :   /* Generate the symbols for the named constants representing
    7372              :      the kinds for intrinsic data types.  */
    7373       754680 :   for (i = 0; i < ISOCBINDING_NUMBER; i++)
    7374              :     {
    7375       744750 :       bool found = false;
    7376      1509450 :       for (u = gfc_rename_list; u; u = u->next)
    7377       764700 :         if (strcmp (c_interop_kinds_table[i].name, u->use_name) == 0)
    7378              :           {
    7379        10194 :             bool not_in_std;
    7380        10194 :             const char *name;
    7381        10194 :             u->found = 1;
    7382        10194 :             found = true;
    7383              : 
    7384        10194 :             switch (i)
    7385              :               {
    7386              : #define NAMED_FUNCTION(a,b,c,d) \
    7387              :                 case a: \
    7388              :                   not_in_std = (gfc_option.allow_std & d) == 0; \
    7389              :                   name = b; \
    7390              :                   break;
    7391              : #define NAMED_SUBROUTINE(a,b,c,d) \
    7392              :                 case a: \
    7393              :                   not_in_std = (gfc_option.allow_std & d) == 0; \
    7394              :                   name = b; \
    7395              :                   break;
    7396              : #define NAMED_INTCST(a,b,c,d) \
    7397              :                 case a: \
    7398              :                   not_in_std = (gfc_option.allow_std & d) == 0; \
    7399              :                   name = b; \
    7400              :                   break;
    7401              : #define NAMED_UINTCST(a,b,c,d) \
    7402              :                 case a: \
    7403              :                   not_in_std = (gfc_option.allow_std & d) == 0; \
    7404              :                   name = b; \
    7405              :                   break;
    7406              : #define NAMED_REALCST(a,b,c,d)                  \
    7407              :                 case a: \
    7408              :                   not_in_std = (gfc_option.allow_std & d) == 0; \
    7409              :                   name = b; \
    7410              :                   break;
    7411              : #define NAMED_CMPXCST(a,b,c,d) \
    7412              :                 case a: \
    7413              :                   not_in_std = (gfc_option.allow_std & d) == 0; \
    7414              :                   name = b; \
    7415              :                   break;
    7416              : #include "iso-c-binding.def"
    7417              :                 default:
    7418              :                   not_in_std = false;
    7419              :                   name = "";
    7420              :               }
    7421              : 
    7422         7403 :             if (not_in_std)
    7423              :               {
    7424            6 :                 gfc_error ("The symbol %qs, referenced at %L, is not "
    7425              :                            "in the selected standard", name, &u->where);
    7426            6 :                 continue;
    7427              :               }
    7428              : 
    7429        10188 :             switch (i)
    7430              :               {
    7431              : #define NAMED_FUNCTION(a,b,c,d) \
    7432              :                 case a: \
    7433              :                   if (a == ISOCBINDING_LOC) \
    7434              :                     return_type = c_ptr->n.sym; \
    7435              :                   else if (a == ISOCBINDING_FUNLOC) \
    7436              :                     return_type = c_funptr->n.sym; \
    7437              :                   else \
    7438              :                     return_type = NULL; \
    7439              :                   create_intrinsic_function (u->local_name[0] \
    7440              :                                              ? u->local_name : u->use_name, \
    7441              :                                              a, iso_c_module_name, \
    7442              :                                              INTMOD_ISO_C_BINDING, false, \
    7443              :                                              return_type); \
    7444              :                   break;
    7445              : #define NAMED_SUBROUTINE(a,b,c,d) \
    7446              :                 case a: \
    7447              :                   create_intrinsic_function (u->local_name[0] ? u->local_name \
    7448              :                                                               : u->use_name, \
    7449              :                                              a, iso_c_module_name, \
    7450              :                                              INTMOD_ISO_C_BINDING, true, NULL); \
    7451              :                   break;
    7452              : #include "iso-c-binding.def"
    7453              : 
    7454              :                 case ISOCBINDING_PTR:
    7455              :                 case ISOCBINDING_FUNPTR:
    7456              :                   /* Already handled above.  */
    7457              :                   break;
    7458         7440 :                 default:
    7459         7440 :                   if (i == ISOCBINDING_NULL_PTR)
    7460              :                     tmp_symtree = c_ptr;
    7461         7379 :                   else if (i == ISOCBINDING_NULL_FUNPTR)
    7462              :                     tmp_symtree = c_funptr;
    7463              :                   else
    7464         7370 :                     tmp_symtree = NULL;
    7465         7440 :                   generate_isocbinding_symbol (iso_c_module_name,
    7466              :                                                (iso_c_binding_symbol) i,
    7467         7440 :                                                u->local_name[0]
    7468              :                                                ? u->local_name : u->use_name,
    7469              :                                                tmp_symtree, false);
    7470              :               }
    7471              :           }
    7472              : 
    7473       744750 :       if (!found && !only_flag)
    7474              :         {
    7475              :           /* Skip, if the symbol is not in the enabled standard.  */
    7476       244684 :           switch (i)
    7477              :             {
    7478              : #define NAMED_FUNCTION(a,b,c,d) \
    7479              :               case a: \
    7480              :                 if ((gfc_option.allow_std & d) == 0) \
    7481              :                   continue; \
    7482              :                 break;
    7483              : #define NAMED_SUBROUTINE(a,b,c,d) \
    7484              :               case a: \
    7485              :                 if ((gfc_option.allow_std & d) == 0) \
    7486              :                   continue; \
    7487              :                 break;
    7488              : #define NAMED_INTCST(a,b,c,d) \
    7489              :               case a: \
    7490              :                 if ((gfc_option.allow_std & d) == 0) \
    7491              :                   continue; \
    7492              :                 break;
    7493              : #define NAMED_UINTCST(a,b,c,d) \
    7494              :               case a: \
    7495              :                 if ((gfc_option.allow_std & d) == 0) \
    7496              :                   continue; \
    7497              :                 break;
    7498              : #define NAMED_REALCST(a,b,c,d)                  \
    7499              :               case a: \
    7500              :                 if ((gfc_option.allow_std & d) == 0) \
    7501              :                   continue; \
    7502              :                 break;
    7503              : #define NAMED_CMPXCST(a,b,c,d) \
    7504              :               case a: \
    7505              :                 if ((gfc_option.allow_std & d) == 0) \
    7506              :                   continue; \
    7507              :                 break;
    7508              : #include "iso-c-binding.def"
    7509       175773 :               default:
    7510       175773 :                 ; /* Not GFC_STD_* versioned.  */
    7511              :             }
    7512              : 
    7513       175773 :           switch (i)
    7514              :             {
    7515              : #define NAMED_FUNCTION(a,b,c,d) \
    7516              :               case a: \
    7517              :                 if (a == ISOCBINDING_LOC) \
    7518              :                   return_type = c_ptr->n.sym; \
    7519              :                 else if (a == ISOCBINDING_FUNLOC) \
    7520              :                   return_type = c_funptr->n.sym; \
    7521              :                 else \
    7522              :                   return_type = NULL; \
    7523              :                 create_intrinsic_function (b, a, iso_c_module_name, \
    7524              :                                            INTMOD_ISO_C_BINDING, false, \
    7525              :                                            return_type); \
    7526              :                 break;
    7527              : #define NAMED_SUBROUTINE(a,b,c,d) \
    7528              :               case a: \
    7529              :                 create_intrinsic_function (b, a, iso_c_module_name, \
    7530              :                                            INTMOD_ISO_C_BINDING, true, NULL); \
    7531              :                   break;
    7532              : #include "iso-c-binding.def"
    7533              : 
    7534              :               case ISOCBINDING_PTR:
    7535              :               case ISOCBINDING_FUNPTR:
    7536              :                 /* Already handled above.  */
    7537              :                 break;
    7538       143277 :               default:
    7539       143277 :                 if (i == ISOCBINDING_NULL_PTR)
    7540              :                   tmp_symtree = c_ptr;
    7541       140014 :                 else if (i == ISOCBINDING_NULL_FUNPTR)
    7542              :                   tmp_symtree = c_funptr;
    7543              :                 else
    7544       136751 :                   tmp_symtree = NULL;
    7545       143277 :                 generate_isocbinding_symbol (iso_c_module_name,
    7546              :                                              (iso_c_binding_symbol) i, NULL,
    7547              :                                              tmp_symtree, false);
    7548              :             }
    7549              :         }
    7550              :    }
    7551              : 
    7552        20126 :    for (u = gfc_rename_list; u; u = u->next)
    7553              :      {
    7554        10196 :       if (u->found)
    7555        10194 :         continue;
    7556              : 
    7557            2 :       gfc_error ("Symbol %qs referenced at %L not found in intrinsic "
    7558            2 :                  "module ISO_C_BINDING", u->use_name, &u->where);
    7559              :      }
    7560         9930 : }
    7561              : 
    7562              : 
    7563              : /* Add an integer named constant from a given module.  */
    7564              : 
    7565              : static void
    7566         9861 : create_int_parameter (const char *name, int value, const char *modname,
    7567              :                       intmod_id module, int id)
    7568              : {
    7569         9861 :   gfc_symtree *tmp_symtree;
    7570         9861 :   gfc_symbol *sym;
    7571              : 
    7572         9861 :   tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
    7573         9861 :   if (tmp_symtree != NULL)
    7574              :     {
    7575            0 :       if (strcmp (modname, tmp_symtree->n.sym->module) == 0)
    7576            0 :         return;
    7577              :       else
    7578            0 :         gfc_error ("Symbol %qs already declared", name);
    7579              :     }
    7580              : 
    7581         9861 :   gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree, false);
    7582         9861 :   sym = tmp_symtree->n.sym;
    7583              : 
    7584         9861 :   sym->module = gfc_get_string ("%s", modname);
    7585         9861 :   sym->attr.flavor = FL_PARAMETER;
    7586         9861 :   sym->ts.type = BT_INTEGER;
    7587         9861 :   sym->ts.kind = gfc_default_integer_kind;
    7588         9861 :   sym->value = gfc_get_int_expr (gfc_default_integer_kind, NULL, value);
    7589         9861 :   sym->attr.use_assoc = 1;
    7590         9861 :   sym->from_intmod = module;
    7591         9861 :   sym->intmod_sym_id = id;
    7592              : }
    7593              : 
    7594              : 
    7595              : /* Value is already contained by the array constructor, but not
    7596              :    yet the shape.  */
    7597              : 
    7598              : static void
    7599         1260 : create_int_parameter_array (const char *name, int size, gfc_expr *value,
    7600              :                             const char *modname, intmod_id module, int id)
    7601              : {
    7602         1260 :   gfc_symtree *tmp_symtree;
    7603         1260 :   gfc_symbol *sym;
    7604              : 
    7605         1260 :   tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
    7606         1260 :   if (tmp_symtree != NULL)
    7607              :     {
    7608            1 :       if (tmp_symtree->n.sym->module &&
    7609            0 :           strcmp (modname, tmp_symtree->n.sym->module) == 0)
    7610            0 :         return;
    7611              :       else
    7612            1 :         gfc_error ("Symbol %qs already declared at %L conflicts with "
    7613              :                    "symbol in %qs at %C", name,
    7614              :                    &tmp_symtree->n.sym->declared_at, modname);
    7615              :     }
    7616              : 
    7617         1260 :   gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree, false);
    7618         1260 :   sym = tmp_symtree->n.sym;
    7619              : 
    7620         1260 :   sym->module = gfc_get_string ("%s", modname);
    7621         1260 :   sym->attr.flavor = FL_PARAMETER;
    7622         1260 :   sym->ts.type = BT_INTEGER;
    7623         1260 :   sym->ts.kind = gfc_default_integer_kind;
    7624         1260 :   sym->attr.use_assoc = 1;
    7625         1260 :   sym->from_intmod = module;
    7626         1260 :   sym->intmod_sym_id = id;
    7627         1260 :   sym->attr.dimension = 1;
    7628         1260 :   sym->as = gfc_get_array_spec ();
    7629         1260 :   sym->as->rank = 1;
    7630         1260 :   sym->as->type = AS_EXPLICIT;
    7631         1260 :   sym->as->lower[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, 1);
    7632         1260 :   sym->as->upper[0] = gfc_get_int_expr (gfc_default_integer_kind, NULL, size);
    7633              : 
    7634         1260 :   sym->value = value;
    7635         1260 :   sym->value->shape = gfc_get_shape (1);
    7636         1260 :   mpz_init_set_ui (sym->value->shape[0], size);
    7637              : }
    7638              : 
    7639              : 
    7640              : /* Add an derived type for a given module.  */
    7641              : 
    7642              : static void
    7643         1006 : create_derived_type (const char *name, const char *modname,
    7644              :                       intmod_id module, int id)
    7645              : {
    7646         1006 :   gfc_symtree *tmp_symtree;
    7647         1006 :   gfc_symbol *sym, *dt_sym;
    7648         1006 :   gfc_interface *intr, *head;
    7649              : 
    7650         1006 :   tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
    7651         1006 :   if (tmp_symtree != NULL)
    7652              :     {
    7653            0 :       if (strcmp (modname, tmp_symtree->n.sym->module) == 0)
    7654            0 :         return;
    7655              :       else
    7656            0 :         gfc_error ("Symbol %qs already declared", name);
    7657              :     }
    7658              : 
    7659         1006 :   gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree, false);
    7660         1006 :   sym = tmp_symtree->n.sym;
    7661         1006 :   sym->module = gfc_get_string ("%s", modname);
    7662         1006 :   sym->from_intmod = module;
    7663         1006 :   sym->intmod_sym_id = id;
    7664         1006 :   sym->attr.flavor = FL_PROCEDURE;
    7665         1006 :   sym->attr.function = 1;
    7666         1006 :   sym->attr.generic = 1;
    7667              : 
    7668         1006 :   gfc_get_sym_tree (gfc_dt_upper_string (sym->name),
    7669              :                     gfc_current_ns, &tmp_symtree, false);
    7670         1006 :   dt_sym = tmp_symtree->n.sym;
    7671         1006 :   dt_sym->name = gfc_get_string ("%s", sym->name);
    7672         1006 :   dt_sym->attr.flavor = FL_DERIVED;
    7673         1006 :   dt_sym->attr.private_comp = 1;
    7674         1006 :   dt_sym->attr.zero_comp = 1;
    7675         1006 :   dt_sym->attr.use_assoc = 1;
    7676         1006 :   dt_sym->module = gfc_get_string ("%s", modname);
    7677         1006 :   dt_sym->from_intmod = module;
    7678         1006 :   dt_sym->intmod_sym_id = id;
    7679              : 
    7680         1006 :   head = sym->generic;
    7681         1006 :   intr = gfc_get_interface ();
    7682         1006 :   intr->sym = dt_sym;
    7683         1006 :   intr->where = gfc_current_locus;
    7684         1006 :   intr->next = head;
    7685         1006 :   sym->generic = intr;
    7686         1006 :   sym->attr.if_source = IFSRC_DECL;
    7687              : }
    7688              : 
    7689              : 
    7690              : /* Read the contents of the module file into a temporary buffer.  */
    7691              : 
    7692              : static void
    7693        13708 : read_module_to_tmpbuf ()
    7694              : {
    7695              :   /* We don't know the uncompressed size, so enlarge the buffer as
    7696              :      needed.  */
    7697        13708 :   int cursz = 4096;
    7698        13708 :   int rsize = cursz;
    7699        13708 :   int len = 0;
    7700              : 
    7701        13708 :   module_content = XNEWVEC (char, cursz);
    7702              : 
    7703        57766 :   while (1)
    7704              :     {
    7705        35737 :       int nread = gzread (module_fp, module_content + len, rsize);
    7706        35737 :       len += nread;
    7707        35737 :       if (nread < rsize)
    7708              :         break;
    7709        22029 :       cursz *= 2;
    7710        22029 :       module_content = XRESIZEVEC (char, module_content, cursz);
    7711        22029 :       rsize = cursz - len;
    7712        22029 :     }
    7713              : 
    7714        13708 :   module_content = XRESIZEVEC (char, module_content, len + 1);
    7715        13708 :   module_content[len] = '\0';
    7716              : 
    7717        13708 :   module_pos = 0;
    7718        13708 : }
    7719              : 
    7720              : 
    7721              : /* USE the ISO_FORTRAN_ENV intrinsic module.  */
    7722              : 
    7723              : static void
    7724          614 : use_iso_fortran_env_module (void)
    7725              : {
    7726          614 :   static char mod[] = "iso_fortran_env";
    7727          614 :   gfc_use_rename *u;
    7728          614 :   gfc_symbol *mod_sym;
    7729          614 :   gfc_symtree *mod_symtree;
    7730          614 :   gfc_expr *expr;
    7731          614 :   int i, j;
    7732              : 
    7733          614 :   intmod_sym symbol[] = {
    7734              : #define NAMED_INTCST(a,b,c,d) { a, b, 0, d },
    7735              : #define NAMED_UINTCST(a,b,c,d) { a, b, 0, d },
    7736              : #define NAMED_KINDARRAY(a,b,c,d) { a, b, 0, d },
    7737              : #define NAMED_DERIVED_TYPE(a,b,c,d) { a, b, 0, d },
    7738              : #define NAMED_FUNCTION(a,b,c,d) { a, b, c, d },
    7739              : #define NAMED_SUBROUTINE(a,b,c,d) { a, b, c, d },
    7740              : #include "iso-fortran-env.def"
    7741              :     { ISOFORTRANENV_INVALID, NULL, -1234, 0 } };
    7742              : 
    7743              :   /* We could have used c in the NAMED_{,U}INTCST macros
    7744              :      instead of 0, but then current g++ expands the initialization
    7745              :      as clearing the whole object followed by explicit stores of
    7746              :      all the non-zero elements (over 150), while by using 0s for
    7747              :      the non-constant initializers and initializing them afterwards
    7748              :      g++ will often copy everything from .rodata and then only override
    7749              :      over 30 non-constant ones.  */
    7750          614 :   i = 0;
    7751              : #define NAMED_INTCST(a,b,c,d) symbol[i++].value = c;
    7752              : #define NAMED_UINTCST(a,b,c,d) symbol[i++].value = c;
    7753              : #define NAMED_KINDARRAY(a,b,c,d) i++;
    7754              : #define NAMED_DERIVED_TYPE(a,b,c,d) i++;
    7755              : #define NAMED_FUNCTION(a,b,c,d) i++;
    7756              : #define NAMED_SUBROUTINE(a,b,c,d) i++;
    7757              : #include "iso-fortran-env.def"
    7758          614 :   gcc_checking_assert (i == (int) ARRAY_SIZE (symbol) - 1);
    7759              : 
    7760              :   /* Generate the symbol for the module itself.  */
    7761          614 :   mod_symtree = gfc_find_symtree (gfc_current_ns->sym_root, mod);
    7762          614 :   if (mod_symtree == NULL)
    7763              :     {
    7764          613 :       gfc_get_sym_tree (mod, gfc_current_ns, &mod_symtree, false);
    7765          613 :       gcc_assert (mod_symtree);
    7766          613 :       mod_sym = mod_symtree->n.sym;
    7767              : 
    7768          613 :       mod_sym->attr.flavor = FL_MODULE;
    7769          613 :       mod_sym->attr.intrinsic = 1;
    7770          613 :       mod_sym->module = gfc_get_string ("%s", mod);
    7771          613 :       mod_sym->from_intmod = INTMOD_ISO_FORTRAN_ENV;
    7772              :     }
    7773              :   else
    7774            1 :     if (!mod_symtree->n.sym->attr.intrinsic)
    7775            1 :       gfc_error ("Use of intrinsic module %qs at %C conflicts with "
    7776              :                  "non-intrinsic module name used previously", mod);
    7777              : 
    7778              :   /* Generate the symbols for the module integer named constants.  */
    7779              : 
    7780        27630 :   for (i = 0; symbol[i].name; i++)
    7781              :     {
    7782        27016 :       bool found = false;
    7783        49676 :       for (u = gfc_rename_list; u; u = u->next)
    7784              :         {
    7785        22660 :           if (strcmp (symbol[i].name, u->use_name) == 0)
    7786              :             {
    7787          515 :               found = true;
    7788          515 :               u->found = 1;
    7789              : 
    7790          515 :               if (!gfc_notify_std (symbol[i].standard, "The symbol %qs, "
    7791              :                                    "referenced at %L, is not in the selected "
    7792              :                                    "standard", symbol[i].name, &u->where))
    7793           11 :                 continue;
    7794              : 
    7795          504 :               if ((flag_default_integer || flag_default_real_8)
    7796            2 :                   && symbol[i].id == ISOFORTRANENV_NUMERIC_STORAGE_SIZE)
    7797            0 :                 gfc_warning_now (0, "Use of the NUMERIC_STORAGE_SIZE named "
    7798              :                                  "constant from intrinsic module "
    7799              :                                  "ISO_FORTRAN_ENV at %L is incompatible with "
    7800              :                                  "option %qs", &u->where,
    7801              :                                  flag_default_integer
    7802              :                                    ? "-fdefault-integer-8"
    7803              :                                    : "-fdefault-real-8");
    7804          504 :               switch (symbol[i].id)
    7805              :                 {
    7806              : #define NAMED_INTCST(a,b,c,d) \
    7807              :                 case a:
    7808              : #include "iso-fortran-env.def"
    7809          335 :                   create_int_parameter (u->local_name[0] ? u->local_name
    7810              :                                                          : u->use_name,
    7811              :                                         symbol[i].value, mod,
    7812              :                                         INTMOD_ISO_FORTRAN_ENV, symbol[i].id);
    7813          335 :                   break;
    7814              : 
    7815              : #define NAMED_UINTCST(a,b,c,d) \
    7816              :                 case a:
    7817              : #include "iso-fortran-env.def"
    7818           30 :                   create_int_parameter (u->local_name[0] ? u->local_name
    7819              :                                                          : u->use_name,
    7820              :                                         symbol[i].value, mod,
    7821              :                                         INTMOD_ISO_FORTRAN_ENV, symbol[i].id);
    7822           30 :                   break;
    7823              : 
    7824              : #define NAMED_KINDARRAY(a,b,KINDS,d) \
    7825              :                 case a:\
    7826              :                   expr = gfc_get_array_expr (BT_INTEGER, \
    7827              :                                              gfc_default_integer_kind,\
    7828              :                                              NULL); \
    7829              :                   for (j = 0; KINDS[j].kind != 0; j++) \
    7830              :                     gfc_constructor_append_expr (&expr->value.constructor, \
    7831              :                         gfc_get_int_expr (gfc_default_integer_kind, NULL, \
    7832              :                                           KINDS[j].kind), NULL); \
    7833              :                   create_int_parameter_array (u->local_name[0] ? u->local_name \
    7834              :                                                          : u->use_name, \
    7835              :                                               j, expr, mod, \
    7836              :                                               INTMOD_ISO_FORTRAN_ENV, \
    7837              :                                               symbol[i].id); \
    7838              :                   break;
    7839              : #include "iso-fortran-env.def"
    7840              : 
    7841              : #define NAMED_DERIVED_TYPE(a,b,TYPE,STD) \
    7842              :                 case a:
    7843              : #include "iso-fortran-env.def"
    7844           88 :                   create_derived_type (u->local_name[0] ? u->local_name
    7845              :                                                         : u->use_name,
    7846              :                                        mod, INTMOD_ISO_FORTRAN_ENV,
    7847              :                                        symbol[i].id);
    7848           88 :                   break;
    7849              : 
    7850              : #define NAMED_FUNCTION(a,b,c,d) \
    7851              :                 case a:
    7852              : #include "iso-fortran-env.def"
    7853           15 :                   create_intrinsic_function (u->local_name[0] ? u->local_name
    7854              :                                                               : u->use_name,
    7855              :                                              symbol[i].id, mod,
    7856              :                                              INTMOD_ISO_FORTRAN_ENV, false,
    7857              :                                              NULL);
    7858           15 :                   break;
    7859              : 
    7860            0 :                 default:
    7861            0 :                   gcc_unreachable ();
    7862              :                 }
    7863              :             }
    7864              :         }
    7865              : 
    7866        27016 :       if (!found && !only_flag)
    7867              :         {
    7868        13581 :           if ((gfc_option.allow_std & symbol[i].standard) == 0)
    7869         1332 :             continue;
    7870              : 
    7871        12249 :           if ((flag_default_integer || flag_default_real_8)
    7872            0 :               && symbol[i].id == ISOFORTRANENV_NUMERIC_STORAGE_SIZE)
    7873            0 :             gfc_warning_now (0,
    7874              :                              "Use of the NUMERIC_STORAGE_SIZE named constant "
    7875              :                              "from intrinsic module ISO_FORTRAN_ENV at %C is "
    7876              :                              "incompatible with option %s",
    7877              :                              flag_default_integer
    7878              :                                 ? "-fdefault-integer-8" : "-fdefault-real-8");
    7879              : 
    7880        12249 :           switch (symbol[i].id)
    7881              :             {
    7882              : #define NAMED_INTCST(a,b,c,d) \
    7883              :             case a:
    7884              : #include "iso-fortran-env.def"
    7885         9492 :               create_int_parameter (symbol[i].name, symbol[i].value, mod,
    7886              :                                     INTMOD_ISO_FORTRAN_ENV, symbol[i].id);
    7887         9492 :               break;
    7888              : 
    7889              : #define NAMED_UINTCST(a,b,c,d)                  \
    7890              :             case a:
    7891              : #include "iso-fortran-env.def"
    7892            4 :               create_int_parameter (symbol[i].name, symbol[i].value, mod,
    7893              :                                     INTMOD_ISO_FORTRAN_ENV, symbol[i].id);
    7894            4 :               break;
    7895              : 
    7896              : #define NAMED_KINDARRAY(a,b,KINDS,d) \
    7897              :             case a:\
    7898              :               expr = gfc_get_array_expr (BT_INTEGER, gfc_default_integer_kind, \
    7899              :                                          NULL); \
    7900              :               for (j = 0; KINDS[j].kind != 0; j++) \
    7901              :                 gfc_constructor_append_expr (&expr->value.constructor, \
    7902              :                       gfc_get_int_expr (gfc_default_integer_kind, NULL, \
    7903              :                                         KINDS[j].kind), NULL); \
    7904              :             create_int_parameter_array (symbol[i].name, j, expr, mod, \
    7905              :                                         INTMOD_ISO_FORTRAN_ENV, symbol[i].id);\
    7906              :             break;
    7907              : #include "iso-fortran-env.def"
    7908              : 
    7909              : #define NAMED_DERIVED_TYPE(a,b,TYPE,STD) \
    7910              :           case a:
    7911              : #include "iso-fortran-env.def"
    7912          918 :             create_derived_type (symbol[i].name, mod, INTMOD_ISO_FORTRAN_ENV,
    7913              :                                  symbol[i].id);
    7914          918 :             break;
    7915              : 
    7916              : #define NAMED_FUNCTION(a,b,c,d) \
    7917              :           case a:
    7918              : #include "iso-fortran-env.def"
    7919          611 :             create_intrinsic_function (symbol[i].name, symbol[i].id, mod,
    7920              :                                        INTMOD_ISO_FORTRAN_ENV, false, NULL);
    7921          611 :             break;
    7922              : 
    7923            0 :           default:
    7924            0 :             gcc_unreachable ();
    7925              :           }
    7926              :         }
    7927              :     }
    7928              : 
    7929         1129 :   for (u = gfc_rename_list; u; u = u->next)
    7930              :     {
    7931          515 :       if (u->found)
    7932          515 :         continue;
    7933              : 
    7934            0 :       gfc_error ("Symbol %qs referenced at %L not found in intrinsic "
    7935            0 :                      "module ISO_FORTRAN_ENV", u->use_name, &u->where);
    7936              :     }
    7937          614 : }
    7938              : 
    7939              : 
    7940              : /* Process a USE directive.  */
    7941              : 
    7942              : static void
    7943        24256 : gfc_use_module (gfc_use_list *module)
    7944              : {
    7945        24256 :   char *filename;
    7946        24256 :   gfc_state_data *p;
    7947        24256 :   int c, line, start;
    7948        24256 :   gfc_symtree *mod_symtree;
    7949        24256 :   gfc_use_list *use_stmt;
    7950        24256 :   locus old_locus = gfc_current_locus;
    7951              : 
    7952        24256 :   gfc_current_locus = module->where;
    7953        24256 :   module_name = module->module_name;
    7954        24256 :   gfc_rename_list = module->rename;
    7955        24256 :   only_flag = module->only_flag;
    7956        24256 :   current_intmod = INTMOD_NONE;
    7957              : 
    7958        24256 :   if (!only_flag && gfc_state_stack->state != COMP_SUBMODULE)
    7959        15193 :     gfc_warning_now (OPT_Wuse_without_only,
    7960              :                      "USE statement at %C has no ONLY qualifier");
    7961              : 
    7962        24256 :   if (gfc_state_stack->state == COMP_MODULE
    7963        21695 :       || module->submodule_name == NULL)
    7964              :     {
    7965        23991 :       filename = XALLOCAVEC (char, strlen (module_name)
    7966              :                                    + strlen (MODULE_EXTENSION) + 1);
    7967        23991 :       strcpy (filename, module_name);
    7968        23991 :       strcat (filename, MODULE_EXTENSION);
    7969              :     }
    7970              :   else
    7971              :     {
    7972          265 :       filename = XALLOCAVEC (char, strlen (module->submodule_name)
    7973              :                                    + strlen (SUBMODULE_EXTENSION) + 1);
    7974          265 :       strcpy (filename, module->submodule_name);
    7975          265 :       strcat (filename, SUBMODULE_EXTENSION);
    7976              :     }
    7977              : 
    7978              :   /* First, try to find an non-intrinsic module, unless the USE statement
    7979              :      specified that the module is intrinsic.  */
    7980        24256 :   module_fp = NULL;
    7981        24256 :   if (!module->intrinsic)
    7982        20330 :     module_fp = gzopen_included_file (filename, true, true);
    7983              : 
    7984              :   /* Then, see if it's an intrinsic one, unless the USE statement
    7985              :      specified that the module is non-intrinsic.  */
    7986        24256 :   if (module_fp == NULL && !module->non_intrinsic)
    7987              :     {
    7988        11781 :       if (strcmp (module_name, "iso_fortran_env") == 0
    7989        11781 :           && gfc_notify_std (GFC_STD_F2003, "ISO_FORTRAN_ENV "
    7990              :                              "intrinsic module at %C"))
    7991              :        {
    7992          614 :          use_iso_fortran_env_module ();
    7993          614 :          free_rename (module->rename);
    7994          614 :          module->rename = NULL;
    7995          614 :          gfc_current_locus = old_locus;
    7996          614 :          module->intrinsic = true;
    7997        10544 :          return;
    7998              :        }
    7999              : 
    8000        11167 :       if (strcmp (module_name, "iso_c_binding") == 0
    8001        11167 :           && gfc_notify_std (GFC_STD_F2003, "ISO_C_BINDING module at %C"))
    8002              :         {
    8003         9930 :           import_iso_c_binding_module();
    8004         9930 :           free_rename (module->rename);
    8005         9930 :           module->rename = NULL;
    8006         9930 :           gfc_current_locus = old_locus;
    8007         9930 :           module->intrinsic = true;
    8008         9930 :           return;
    8009              :         }
    8010              : 
    8011         1237 :       module_fp = gzopen_intrinsic_module (filename);
    8012              : 
    8013         1237 :       if (module_fp == NULL && module->intrinsic)
    8014            0 :         gfc_fatal_error ("Cannot find an intrinsic module named %qs at %C",
    8015              :                          module_name);
    8016              : 
    8017              :       /* Check for the IEEE modules, so we can mark their symbols
    8018              :          accordingly when we read them.  */
    8019         1237 :       if (strcmp (module_name, "ieee_features") == 0
    8020         1237 :           && gfc_notify_std (GFC_STD_F2003, "IEEE_FEATURES module at %C"))
    8021              :         {
    8022           51 :           current_intmod = INTMOD_IEEE_FEATURES;
    8023              :         }
    8024         1186 :       else if (strcmp (module_name, "ieee_exceptions") == 0
    8025         1186 :                && gfc_notify_std (GFC_STD_F2003,
    8026              :                                   "IEEE_EXCEPTIONS module at %C"))
    8027              :         {
    8028           60 :           current_intmod = INTMOD_IEEE_EXCEPTIONS;
    8029              :         }
    8030         1126 :       else if (strcmp (module_name, "ieee_arithmetic") == 0
    8031         1126 :                && gfc_notify_std (GFC_STD_F2003,
    8032              :                                   "IEEE_ARITHMETIC module at %C"))
    8033              :         {
    8034          405 :           current_intmod = INTMOD_IEEE_ARITHMETIC;
    8035              :         }
    8036              :     }
    8037              : 
    8038        13712 :   if (module_fp == NULL)
    8039              :     {
    8040            4 :       if (gfc_state_stack->state != COMP_SUBMODULE
    8041            3 :           && module->submodule_name == NULL)
    8042            3 :         gfc_fatal_error ("Cannot open module file %qs for reading at %C: %s",
    8043            3 :                          filename, xstrerror (errno));
    8044              :       else
    8045            1 :         gfc_fatal_error ("Module file %qs has not been generated, either "
    8046              :                          "because the module does not contain a MODULE "
    8047              :                          "PROCEDURE or there is an error in the module.",
    8048              :                          filename);
    8049              :     }
    8050              : 
    8051              :   /* Check that we haven't already USEd an intrinsic module with the
    8052              :      same name.  */
    8053              : 
    8054        13708 :   mod_symtree = gfc_find_symtree (gfc_current_ns->sym_root, module_name);
    8055        13708 :   if (mod_symtree && mod_symtree->n.sym->attr.intrinsic)
    8056            1 :     gfc_error ("Use of non-intrinsic module %qs at %C conflicts with "
    8057              :                "intrinsic module name used previously", module_name);
    8058              : 
    8059        13708 :   iomode = IO_INPUT;
    8060        13708 :   module_line = 1;
    8061        13708 :   module_column = 1;
    8062        13708 :   start = 0;
    8063              : 
    8064        13708 :   read_module_to_tmpbuf ();
    8065        13708 :   gzclose (module_fp);
    8066              : 
    8067              :   /* Skip the first line of the module, after checking that this is
    8068              :      a gfortran module file.  */
    8069        13708 :   line = 0;
    8070       506224 :   while (line < 1)
    8071              :     {
    8072       478808 :       c = module_char ();
    8073       478808 :       if (c == EOF)
    8074            0 :         bad_module ("Unexpected end of module");
    8075       478808 :       if (start++ < 3)
    8076        41124 :         parse_name (c);
    8077       478808 :       if ((start == 1 && strcmp (atom_name, "GFORTRAN") != 0)
    8078       478808 :           || (start == 2 && strcmp (atom_name, " module") != 0))
    8079            0 :         gfc_fatal_error ("File %qs opened at %C is not a GNU Fortran"
    8080              :                          " module file", module_fullpath);
    8081       478808 :       if (start == 3)
    8082              :         {
    8083        13708 :           bool fatal = false;
    8084        13708 :           if (strcmp (atom_name, " version") != 0
    8085        13708 :               || module_char () != ' '
    8086        27416 :               || parse_atom () != ATOM_STRING)
    8087              :             fatal = true;
    8088        13708 :           else if (strcmp (atom_string, MOD_VERSION))
    8089              :             {
    8090              :               static const char *compat_mod_versions[] = COMPAT_MOD_VERSIONS;
    8091            0 :               fatal = true;
    8092            0 :               for (unsigned i = 0; i < ARRAY_SIZE (compat_mod_versions); ++i)
    8093            0 :                 if (!strcmp (atom_string, compat_mod_versions[i]))
    8094              :                   {
    8095              :                     fatal = false;
    8096              :                     break;
    8097              :                   }
    8098              :             }
    8099            0 :           if (fatal)
    8100            0 :             gfc_fatal_error ("Cannot read module file %qs opened at %C,"
    8101              :                              " because it was created by a different"
    8102              :                              " version of GNU Fortran", module_fullpath);
    8103              : 
    8104        13708 :           free (atom_string);
    8105              :         }
    8106              : 
    8107       478808 :       if (c == '\n')
    8108        13708 :         line++;
    8109              :     }
    8110              : 
    8111              :   /* Make sure we're not reading the same module that we may be building.  */
    8112        46143 :   for (p = gfc_state_stack; p; p = p->previous)
    8113        32435 :     if ((p->state == COMP_MODULE || p->state == COMP_SUBMODULE)
    8114         2348 :          && strcmp (p->sym->name, module_name) == 0)
    8115              :       {
    8116            0 :         if (p->state == COMP_SUBMODULE)
    8117            0 :           gfc_fatal_error ("Cannot USE a submodule that is currently built");
    8118              :         else
    8119            0 :           gfc_fatal_error ("Cannot USE a module that is currently built");
    8120              :       }
    8121              : 
    8122        13708 :   init_pi_tree ();
    8123        13708 :   init_true_name_tree ();
    8124              : 
    8125        13708 :   read_module ();
    8126              : 
    8127        13708 :   free_true_name (true_name_root);
    8128        13708 :   true_name_root = NULL;
    8129              : 
    8130        13708 :   free_pi_tree (pi_root);
    8131        13708 :   pi_root = NULL;
    8132              : 
    8133        13708 :   XDELETEVEC (module_content);
    8134        13708 :   module_content = NULL;
    8135              : 
    8136        13708 :   use_stmt = gfc_get_use_list ();
    8137        13708 :   *use_stmt = *module;
    8138        13708 :   use_stmt->next = gfc_current_ns->use_stmts;
    8139        13708 :   gfc_current_ns->use_stmts = use_stmt;
    8140              : 
    8141        13708 :   gfc_current_locus = old_locus;
    8142              : }
    8143              : 
    8144              : 
    8145              : /* Remove duplicated intrinsic operators from the rename list.  */
    8146              : 
    8147              : static void
    8148        24256 : rename_list_remove_duplicate (gfc_use_rename *list)
    8149              : {
    8150        24256 :   gfc_use_rename *seek, *last;
    8151              : 
    8152        37927 :   for (; list; list = list->next)
    8153        13671 :     if (list->op != INTRINSIC_USER && list->op != INTRINSIC_NONE)
    8154              :       {
    8155          113 :         last = list;
    8156          459 :         for (seek = list->next; seek; seek = last->next)
    8157              :           {
    8158          346 :             if (list->op == seek->op)
    8159              :               {
    8160            2 :                 last->next = seek->next;
    8161            2 :                 free (seek);
    8162              :               }
    8163              :             else
    8164              :               last = seek;
    8165              :           }
    8166              :       }
    8167        24256 : }
    8168              : 
    8169              : 
    8170              : /* Process all USE directives.  */
    8171              : 
    8172              : void
    8173        21092 : gfc_use_modules (void)
    8174              : {
    8175        21092 :   gfc_use_list *next, *seek, *last;
    8176              : 
    8177        45348 :   for (next = module_list; next; next = next->next)
    8178              :     {
    8179        24256 :       bool non_intrinsic = next->non_intrinsic;
    8180        24256 :       bool intrinsic = next->intrinsic;
    8181        24256 :       bool neither = !non_intrinsic && !intrinsic;
    8182              : 
    8183        28214 :       for (seek = next->next; seek; seek = seek->next)
    8184              :         {
    8185         3958 :           if (next->module_name != seek->module_name)
    8186         3783 :             continue;
    8187              : 
    8188          175 :           if (seek->non_intrinsic)
    8189              :             non_intrinsic = true;
    8190          174 :           else if (seek->intrinsic)
    8191              :             intrinsic = true;
    8192              :           else
    8193          134 :             neither = true;
    8194              :         }
    8195              : 
    8196        24256 :       if (intrinsic && neither && !non_intrinsic)
    8197              :         {
    8198            1 :           char *filename;
    8199            1 :           FILE *fp;
    8200              : 
    8201            1 :           filename = XALLOCAVEC (char,
    8202              :                                  strlen (next->module_name)
    8203              :                                  + strlen (MODULE_EXTENSION) + 1);
    8204            1 :           strcpy (filename, next->module_name);
    8205            1 :           strcat (filename, MODULE_EXTENSION);
    8206            1 :           fp = gfc_open_included_file (filename, true, true);
    8207            1 :           if (fp != NULL)
    8208              :             {
    8209            0 :               non_intrinsic = true;
    8210            0 :               fclose (fp);
    8211              :             }
    8212              :         }
    8213              : 
    8214        24256 :       last = next;
    8215        28214 :       for (seek = next->next; seek; seek = last->next)
    8216              :         {
    8217         3958 :           if (next->module_name != seek->module_name)
    8218              :             {
    8219         3783 :               last = seek;
    8220         3783 :               continue;
    8221              :             }
    8222              : 
    8223          175 :           if ((!next->intrinsic && !seek->intrinsic)
    8224           41 :               || (next->intrinsic && seek->intrinsic)
    8225            3 :               || !non_intrinsic)
    8226              :             {
    8227          173 :               if (!seek->only_flag)
    8228           18 :                 next->only_flag = false;
    8229          173 :               if (seek->rename)
    8230              :                 {
    8231              :                   gfc_use_rename *r = seek->rename;
    8232          310 :                   while (r->next)
    8233              :                     r = r->next;
    8234          168 :                   r->next = next->rename;
    8235          168 :                   next->rename = seek->rename;
    8236              :                 }
    8237          173 :               last->next = seek->next;
    8238          173 :               free (seek);
    8239          173 :             }
    8240              :           else
    8241              :             last = seek;
    8242              :         }
    8243              :     }
    8244              : 
    8245        45344 :   for (; module_list; module_list = next)
    8246              :     {
    8247        24256 :       next = module_list->next;
    8248        24256 :       rename_list_remove_duplicate (module_list->rename);
    8249        24256 :       gfc_use_module (module_list);
    8250        24252 :       free (module_list);
    8251              :     }
    8252        21088 :   module_list = NULL;
    8253        21088 :   old_module_list_tail = &module_list;
    8254        21088 :   gfc_rename_list = NULL;
    8255        21088 : }
    8256              : 
    8257              : 
    8258              : void
    8259      9688228 : gfc_free_use_stmts (gfc_use_list *use_stmts)
    8260              : {
    8261      9688228 :   gfc_use_list *next;
    8262      9701940 :   for (; use_stmts; use_stmts = next)
    8263              :     {
    8264              :       gfc_use_rename *next_rename;
    8265              : 
    8266        16672 :       for (; use_stmts->rename; use_stmts->rename = next_rename)
    8267              :         {
    8268         2960 :           next_rename = use_stmts->rename->next;
    8269         2960 :           free (use_stmts->rename);
    8270              :         }
    8271        13712 :       next = use_stmts->next;
    8272        13712 :       free (use_stmts);
    8273              :     }
    8274      9688228 : }
    8275              : 
    8276              : 
    8277              : /* Remember the end of the MODULE_LIST list, so that the list can be restored
    8278              :    to its previous state if the current statement is erroneous.  */
    8279              : 
    8280              : void
    8281      1464029 : gfc_save_module_list ()
    8282              : {
    8283      1464029 :   gfc_use_list **tail = &module_list;
    8284      1494331 :   while (*tail != NULL)
    8285        30302 :     tail = &(*tail)->next;
    8286      1464029 :   old_module_list_tail = tail;
    8287      1464029 : }
    8288              : 
    8289              : 
    8290              : /* Restore the MODULE_LIST list to its previous value and free the use
    8291              :    statements that are no longer part of the list.  */
    8292              : 
    8293              : void
    8294      9144837 : gfc_restore_old_module_list ()
    8295              : {
    8296      9144837 :   gfc_free_use_stmts (*old_module_list_tail);
    8297      9144837 :   *old_module_list_tail = NULL;
    8298      9144837 : }
    8299              : 
    8300              : 
    8301              : void
    8302        81961 : gfc_module_init_2 (void)
    8303              : {
    8304        81961 :   last_atom = ATOM_LPAREN;
    8305        81961 :   gfc_rename_list = NULL;
    8306        81961 :   module_list = NULL;
    8307        81961 : }
    8308              : 
    8309              : 
    8310              : void
    8311        82324 : gfc_module_done_2 (void)
    8312              : {
    8313        82324 :   free_rename (gfc_rename_list);
    8314        82324 :   gfc_rename_list = NULL;
    8315        82324 : }
        

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.