1 /* Handle modules, which amounts to loading and saving symbols and
2 their attendant structures.
3 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
5 Free Software Foundation, Inc.
6 Contributed by Andy Vaught
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 /* The syntax of gfortran modules resembles that of lisp lists, i.e. a
25 sequence of atoms, which can be left or right parenthesis, names,
26 integers or strings. Parenthesis are always matched which allows
27 us to skip over sections at high speed without having to know
28 anything about the internal structure of the lists. A "name" is
29 usually a fortran 95 identifier, but can also start with '@' in
30 order to reference a hidden symbol.
32 The first line of a module is an informational message about what
33 created the module, the file it came from and when it was created.
34 The second line is a warning for people not to edit the module.
35 The rest of the module looks like:
37 ( ( <Interface info for UPLUS> )
38 ( <Interface info for UMINUS> )
41 ( ( <name of operator interface> <module of op interface> <i/f1> ... )
44 ( ( <name of generic interface> <module of generic interface> <i/f1> ... )
47 ( ( <common name> <symbol> <saved flag>)
53 ( <Symbol Number (in no particular order)>
55 <Module name of symbol>
56 ( <symbol information> )
65 In general, symbols refer to other symbols by their symbol number,
66 which are zero based. Symbols are written to the module in no
74 #include "parse.h" /* FIXME */
77 #define MODULE_EXTENSION ".mod"
79 /* Don't put any single quote (') in MOD_VERSION,
80 if yout want it to be recognized. */
81 #define MOD_VERSION "4"
84 /* Structure that describes a position within a module file. */
93 /* Structure for list of symbols of intrinsic modules. */
106 P_UNKNOWN = 0, P_OTHER, P_NAMESPACE, P_COMPONENT, P_SYMBOL
110 /* The fixup structure lists pointers to pointers that have to
111 be updated when a pointer value becomes known. */
113 typedef struct fixup_t
116 struct fixup_t *next;
121 /* Structure for holding extra info needed for pointers being read. */
137 typedef struct pointer_info
139 BBT_HEADER (pointer_info);
143 /* The first component of each member of the union is the pointer
150 void *pointer; /* Member for doing pointer searches. */
155 char true_name[GFC_MAX_SYMBOL_LEN + 1], module[GFC_MAX_SYMBOL_LEN + 1];
156 enum gfc_rsym_state state;
157 int ns, referenced, renamed;
160 gfc_symtree *symtree;
161 char binding_label[GFC_MAX_SYMBOL_LEN + 1];
168 enum gfc_wsym_state state;
177 #define gfc_get_pointer_info() XCNEW (pointer_info)
180 /* Local variables */
182 /* The FILE for the module we're reading or writing. */
183 static FILE *module_fp;
185 /* MD5 context structure. */
186 static struct md5_ctx ctx;
188 /* The name of the module we're reading (USE'ing) or writing. */
189 static char module_name[GFC_MAX_SYMBOL_LEN + 1];
191 /* The way the module we're reading was specified. */
192 static bool specified_nonint, specified_int;
194 static int module_line, module_column, only_flag;
196 { IO_INPUT, IO_OUTPUT }
199 static gfc_use_rename *gfc_rename_list;
200 static pointer_info *pi_root;
201 static int symbol_number; /* Counter for assigning symbol numbers */
203 /* Tells mio_expr_ref to make symbols for unused equivalence members. */
204 static bool in_load_equiv;
206 static locus use_locus;
210 /*****************************************************************/
212 /* Pointer/integer conversion. Pointers between structures are stored
213 as integers in the module file. The next couple of subroutines
214 handle this translation for reading and writing. */
216 /* Recursively free the tree of pointer structures. */
219 free_pi_tree (pointer_info *p)
224 if (p->fixup != NULL)
225 gfc_internal_error ("free_pi_tree(): Unresolved fixup");
227 free_pi_tree (p->left);
228 free_pi_tree (p->right);
234 /* Compare pointers when searching by pointer. Used when writing a
238 compare_pointers (void *_sn1, void *_sn2)
240 pointer_info *sn1, *sn2;
242 sn1 = (pointer_info *) _sn1;
243 sn2 = (pointer_info *) _sn2;
245 if (sn1->u.pointer < sn2->u.pointer)
247 if (sn1->u.pointer > sn2->u.pointer)
254 /* Compare integers when searching by integer. Used when reading a
258 compare_integers (void *_sn1, void *_sn2)
260 pointer_info *sn1, *sn2;
262 sn1 = (pointer_info *) _sn1;
263 sn2 = (pointer_info *) _sn2;
265 if (sn1->integer < sn2->integer)
267 if (sn1->integer > sn2->integer)
274 /* Initialize the pointer_info tree. */
283 compare = (iomode == IO_INPUT) ? compare_integers : compare_pointers;
285 /* Pointer 0 is the NULL pointer. */
286 p = gfc_get_pointer_info ();
291 gfc_insert_bbt (&pi_root, p, compare);
293 /* Pointer 1 is the current namespace. */
294 p = gfc_get_pointer_info ();
295 p->u.pointer = gfc_current_ns;
297 p->type = P_NAMESPACE;
299 gfc_insert_bbt (&pi_root, p, compare);
305 /* During module writing, call here with a pointer to something,
306 returning the pointer_info node. */
308 static pointer_info *
309 find_pointer (void *gp)
316 if (p->u.pointer == gp)
318 p = (gp < p->u.pointer) ? p->left : p->right;
325 /* Given a pointer while writing, returns the pointer_info tree node,
326 creating it if it doesn't exist. */
328 static pointer_info *
329 get_pointer (void *gp)
333 p = find_pointer (gp);
337 /* Pointer doesn't have an integer. Give it one. */
338 p = gfc_get_pointer_info ();
341 p->integer = symbol_number++;
343 gfc_insert_bbt (&pi_root, p, compare_pointers);
349 /* Given an integer during reading, find it in the pointer_info tree,
350 creating the node if not found. */
352 static pointer_info *
353 get_integer (int integer)
363 c = compare_integers (&t, p);
367 p = (c < 0) ? p->left : p->right;
373 p = gfc_get_pointer_info ();
374 p->integer = integer;
377 gfc_insert_bbt (&pi_root, p, compare_integers);
383 /* Recursive function to find a pointer within a tree by brute force. */
385 static pointer_info *
386 fp2 (pointer_info *p, const void *target)
393 if (p->u.pointer == target)
396 q = fp2 (p->left, target);
400 return fp2 (p->right, target);
404 /* During reading, find a pointer_info node from the pointer value.
405 This amounts to a brute-force search. */
407 static pointer_info *
408 find_pointer2 (void *p)
410 return fp2 (pi_root, p);
414 /* Resolve any fixups using a known pointer. */
417 resolve_fixups (fixup_t *f, void *gp)
430 /* Call here during module reading when we know what pointer to
431 associate with an integer. Any fixups that exist are resolved at
435 associate_integer_pointer (pointer_info *p, void *gp)
437 if (p->u.pointer != NULL)
438 gfc_internal_error ("associate_integer_pointer(): Already associated");
442 resolve_fixups (p->fixup, gp);
448 /* During module reading, given an integer and a pointer to a pointer,
449 either store the pointer from an already-known value or create a
450 fixup structure in order to store things later. Returns zero if
451 the reference has been actually stored, or nonzero if the reference
452 must be fixed later (i.e., associate_integer_pointer must be called
453 sometime later. Returns the pointer_info structure. */
455 static pointer_info *
456 add_fixup (int integer, void *gp)
462 p = get_integer (integer);
464 if (p->integer == 0 || p->u.pointer != NULL)
467 *cp = (char *) p->u.pointer;
476 f->pointer = (void **) gp;
483 /*****************************************************************/
485 /* Parser related subroutines */
487 /* Free the rename list left behind by a USE statement. */
492 gfc_use_rename *next;
494 for (; gfc_rename_list; gfc_rename_list = next)
496 next = gfc_rename_list->next;
497 gfc_free (gfc_rename_list);
502 /* Match a USE statement. */
507 char name[GFC_MAX_SYMBOL_LEN + 1], module_nature[GFC_MAX_SYMBOL_LEN + 1];
508 gfc_use_rename *tail = NULL, *new_use;
509 interface_type type, type2;
513 specified_int = false;
514 specified_nonint = false;
516 if (gfc_match (" , ") == MATCH_YES)
518 if ((m = gfc_match (" %n ::", module_nature)) == MATCH_YES)
520 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: module "
521 "nature in USE statement at %C") == FAILURE)
524 if (strcmp (module_nature, "intrinsic") == 0)
525 specified_int = true;
528 if (strcmp (module_nature, "non_intrinsic") == 0)
529 specified_nonint = true;
532 gfc_error ("Module nature in USE statement at %C shall "
533 "be either INTRINSIC or NON_INTRINSIC");
540 /* Help output a better error message than "Unclassifiable
542 gfc_match (" %n", module_nature);
543 if (strcmp (module_nature, "intrinsic") == 0
544 || strcmp (module_nature, "non_intrinsic") == 0)
545 gfc_error ("\"::\" was expected after module nature at %C "
546 "but was not found");
552 m = gfc_match (" ::");
553 if (m == MATCH_YES &&
554 gfc_notify_std (GFC_STD_F2003, "Fortran 2003: "
555 "\"USE :: module\" at %C") == FAILURE)
560 m = gfc_match ("% ");
566 use_locus = gfc_current_locus;
568 m = gfc_match_name (module_name);
575 if (gfc_match_eos () == MATCH_YES)
577 if (gfc_match_char (',') != MATCH_YES)
580 if (gfc_match (" only :") == MATCH_YES)
583 if (gfc_match_eos () == MATCH_YES)
588 /* Get a new rename struct and add it to the rename list. */
589 new_use = gfc_get_use_rename ();
590 new_use->where = gfc_current_locus;
593 if (gfc_rename_list == NULL)
594 gfc_rename_list = new_use;
596 tail->next = new_use;
599 /* See what kind of interface we're dealing with. Assume it is
601 new_use->op = INTRINSIC_NONE;
602 if (gfc_match_generic_spec (&type, name, &op) == MATCH_ERROR)
607 case INTERFACE_NAMELESS:
608 gfc_error ("Missing generic specification in USE statement at %C");
611 case INTERFACE_USER_OP:
612 case INTERFACE_GENERIC:
613 m = gfc_match (" =>");
615 if (type == INTERFACE_USER_OP && m == MATCH_YES
616 && (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Renaming "
617 "operators in USE statements at %C")
621 if (type == INTERFACE_USER_OP)
622 new_use->op = INTRINSIC_USER;
627 strcpy (new_use->use_name, name);
630 strcpy (new_use->local_name, name);
631 m = gfc_match_generic_spec (&type2, new_use->use_name, &op);
636 if (m == MATCH_ERROR)
644 strcpy (new_use->local_name, name);
646 m = gfc_match_generic_spec (&type2, new_use->use_name, &op);
651 if (m == MATCH_ERROR)
655 if (strcmp (new_use->use_name, module_name) == 0
656 || strcmp (new_use->local_name, module_name) == 0)
658 gfc_error ("The name '%s' at %C has already been used as "
659 "an external module name.", module_name);
664 case INTERFACE_INTRINSIC_OP:
672 if (gfc_match_eos () == MATCH_YES)
674 if (gfc_match_char (',') != MATCH_YES)
681 gfc_syntax_error (ST_USE);
689 /* Given a name and a number, inst, return the inst name
690 under which to load this symbol. Returns NULL if this
691 symbol shouldn't be loaded. If inst is zero, returns
692 the number of instances of this name. If interface is
693 true, a user-defined operator is sought, otherwise only
694 non-operators are sought. */
697 find_use_name_n (const char *name, int *inst, bool interface)
703 for (u = gfc_rename_list; u; u = u->next)
705 if (strcmp (u->use_name, name) != 0
706 || (u->op == INTRINSIC_USER && !interface)
707 || (u->op != INTRINSIC_USER && interface))
720 return only_flag ? NULL : name;
724 return (u->local_name[0] != '\0') ? u->local_name : name;
728 /* Given a name, return the name under which to load this symbol.
729 Returns NULL if this symbol shouldn't be loaded. */
732 find_use_name (const char *name, bool interface)
735 return find_use_name_n (name, &i, interface);
739 /* Given a real name, return the number of use names associated with it. */
742 number_use_names (const char *name, bool interface)
745 find_use_name_n (name, &i, interface);
750 /* Try to find the operator in the current list. */
752 static gfc_use_rename *
753 find_use_operator (gfc_intrinsic_op op)
757 for (u = gfc_rename_list; u; u = u->next)
765 /*****************************************************************/
767 /* The next couple of subroutines maintain a tree used to avoid a
768 brute-force search for a combination of true name and module name.
769 While symtree names, the name that a particular symbol is known by
770 can changed with USE statements, we still have to keep track of the
771 true names to generate the correct reference, and also avoid
772 loading the same real symbol twice in a program unit.
774 When we start reading, the true name tree is built and maintained
775 as symbols are read. The tree is searched as we load new symbols
776 to see if it already exists someplace in the namespace. */
778 typedef struct true_name
780 BBT_HEADER (true_name);
785 static true_name *true_name_root;
788 /* Compare two true_name structures. */
791 compare_true_names (void *_t1, void *_t2)
796 t1 = (true_name *) _t1;
797 t2 = (true_name *) _t2;
799 c = ((t1->sym->module > t2->sym->module)
800 - (t1->sym->module < t2->sym->module));
804 return strcmp (t1->sym->name, t2->sym->name);
808 /* Given a true name, search the true name tree to see if it exists
809 within the main namespace. */
812 find_true_name (const char *name, const char *module)
818 sym.name = gfc_get_string (name);
820 sym.module = gfc_get_string (module);
828 c = compare_true_names ((void *) (&t), (void *) p);
832 p = (c < 0) ? p->left : p->right;
839 /* Given a gfc_symbol pointer that is not in the true name tree, add it. */
842 add_true_name (gfc_symbol *sym)
846 t = XCNEW (true_name);
849 gfc_insert_bbt (&true_name_root, t, compare_true_names);
853 /* Recursive function to build the initial true name tree by
854 recursively traversing the current namespace. */
857 build_tnt (gfc_symtree *st)
862 build_tnt (st->left);
863 build_tnt (st->right);
865 if (find_true_name (st->n.sym->name, st->n.sym->module) != NULL)
868 add_true_name (st->n.sym);
872 /* Initialize the true name tree with the current namespace. */
875 init_true_name_tree (void)
877 true_name_root = NULL;
878 build_tnt (gfc_current_ns->sym_root);
882 /* Recursively free a true name tree node. */
885 free_true_name (true_name *t)
889 free_true_name (t->left);
890 free_true_name (t->right);
896 /*****************************************************************/
898 /* Module reading and writing. */
902 ATOM_NAME, ATOM_LPAREN, ATOM_RPAREN, ATOM_INTEGER, ATOM_STRING
906 static atom_type last_atom;
909 /* The name buffer must be at least as long as a symbol name. Right
910 now it's not clear how we're going to store numeric constants--
911 probably as a hexadecimal string, since this will allow the exact
912 number to be preserved (this can't be done by a decimal
913 representation). Worry about that later. TODO! */
915 #define MAX_ATOM_SIZE 100
918 static char *atom_string, atom_name[MAX_ATOM_SIZE];
921 /* Report problems with a module. Error reporting is not very
922 elaborate, since this sorts of errors shouldn't really happen.
923 This subroutine never returns. */
925 static void bad_module (const char *) ATTRIBUTE_NORETURN;
928 bad_module (const char *msgid)
935 gfc_fatal_error ("Reading module %s at line %d column %d: %s",
936 module_name, module_line, module_column, msgid);
939 gfc_fatal_error ("Writing module %s at line %d column %d: %s",
940 module_name, module_line, module_column, msgid);
943 gfc_fatal_error ("Module %s at line %d column %d: %s",
944 module_name, module_line, module_column, msgid);
950 /* Set the module's input pointer. */
953 set_module_locus (module_locus *m)
955 module_column = m->column;
956 module_line = m->line;
957 fsetpos (module_fp, &m->pos);
961 /* Get the module's input pointer so that we can restore it later. */
964 get_module_locus (module_locus *m)
966 m->column = module_column;
967 m->line = module_line;
968 fgetpos (module_fp, &m->pos);
972 /* Get the next character in the module, updating our reckoning of
980 c = getc (module_fp);
983 bad_module ("Unexpected EOF");
996 /* Parse a string constant. The delimiter is guaranteed to be a
1006 get_module_locus (&start);
1010 /* See how long the string is. */
1015 bad_module ("Unexpected end of module in string constant");
1033 set_module_locus (&start);
1035 atom_string = p = XCNEWVEC (char, len + 1);
1037 for (; len > 0; len--)
1041 module_char (); /* Guaranteed to be another \'. */
1045 module_char (); /* Terminating \'. */
1046 *p = '\0'; /* C-style string for debug purposes. */
1050 /* Parse a small integer. */
1053 parse_integer (int c)
1061 get_module_locus (&m);
1067 atom_int = 10 * atom_int + c - '0';
1068 if (atom_int > 99999999)
1069 bad_module ("Integer overflow");
1072 set_module_locus (&m);
1090 get_module_locus (&m);
1095 if (!ISALNUM (c) && c != '_' && c != '-')
1099 if (++len > GFC_MAX_SYMBOL_LEN)
1100 bad_module ("Name too long");
1105 fseek (module_fp, -1, SEEK_CUR);
1106 module_column = m.column + len - 1;
1113 /* Read the next atom in the module's input stream. */
1124 while (c == ' ' || c == '\r' || c == '\n');
1149 return ATOM_INTEGER;
1207 bad_module ("Bad name");
1214 /* Peek at the next atom on the input. */
1222 get_module_locus (&m);
1225 if (a == ATOM_STRING)
1226 gfc_free (atom_string);
1228 set_module_locus (&m);
1233 /* Read the next atom from the input, requiring that it be a
1237 require_atom (atom_type type)
1243 get_module_locus (&m);
1251 p = _("Expected name");
1254 p = _("Expected left parenthesis");
1257 p = _("Expected right parenthesis");
1260 p = _("Expected integer");
1263 p = _("Expected string");
1266 gfc_internal_error ("require_atom(): bad atom type required");
1269 set_module_locus (&m);
1275 /* Given a pointer to an mstring array, require that the current input
1276 be one of the strings in the array. We return the enum value. */
1279 find_enum (const mstring *m)
1283 i = gfc_string2code (m, atom_name);
1287 bad_module ("find_enum(): Enum not found");
1293 /**************** Module output subroutines ***************************/
1295 /* Output a character to a module file. */
1298 write_char (char out)
1300 if (putc (out, module_fp) == EOF)
1301 gfc_fatal_error ("Error writing modules file: %s", strerror (errno));
1303 /* Add this to our MD5. */
1304 md5_process_bytes (&out, sizeof (out), &ctx);
1316 /* Write an atom to a module. The line wrapping isn't perfect, but it
1317 should work most of the time. This isn't that big of a deal, since
1318 the file really isn't meant to be read by people anyway. */
1321 write_atom (atom_type atom, const void *v)
1331 p = (const char *) v;
1343 i = *((const int *) v);
1345 gfc_internal_error ("write_atom(): Writing negative integer");
1347 sprintf (buffer, "%d", i);
1352 gfc_internal_error ("write_atom(): Trying to write dab atom");
1356 if(p == NULL || *p == '\0')
1361 if (atom != ATOM_RPAREN)
1363 if (module_column + len > 72)
1368 if (last_atom != ATOM_LPAREN && module_column != 1)
1373 if (atom == ATOM_STRING)
1376 while (p != NULL && *p)
1378 if (atom == ATOM_STRING && *p == '\'')
1383 if (atom == ATOM_STRING)
1391 /***************** Mid-level I/O subroutines *****************/
1393 /* These subroutines let their caller read or write atoms without
1394 caring about which of the two is actually happening. This lets a
1395 subroutine concentrate on the actual format of the data being
1398 static void mio_expr (gfc_expr **);
1399 pointer_info *mio_symbol_ref (gfc_symbol **);
1400 pointer_info *mio_interface_rest (gfc_interface **);
1401 static void mio_symtree_ref (gfc_symtree **);
1403 /* Read or write an enumerated value. On writing, we return the input
1404 value for the convenience of callers. We avoid using an integer
1405 pointer because enums are sometimes inside bitfields. */
1408 mio_name (int t, const mstring *m)
1410 if (iomode == IO_OUTPUT)
1411 write_atom (ATOM_NAME, gfc_code2string (m, t));
1414 require_atom (ATOM_NAME);
1421 /* Specialization of mio_name. */
1423 #define DECL_MIO_NAME(TYPE) \
1424 static inline TYPE \
1425 MIO_NAME(TYPE) (TYPE t, const mstring *m) \
1427 return (TYPE) mio_name ((int) t, m); \
1429 #define MIO_NAME(TYPE) mio_name_##TYPE
1434 if (iomode == IO_OUTPUT)
1435 write_atom (ATOM_LPAREN, NULL);
1437 require_atom (ATOM_LPAREN);
1444 if (iomode == IO_OUTPUT)
1445 write_atom (ATOM_RPAREN, NULL);
1447 require_atom (ATOM_RPAREN);
1452 mio_integer (int *ip)
1454 if (iomode == IO_OUTPUT)
1455 write_atom (ATOM_INTEGER, ip);
1458 require_atom (ATOM_INTEGER);
1464 /* Read or write a gfc_intrinsic_op value. */
1467 mio_intrinsic_op (gfc_intrinsic_op* op)
1469 /* FIXME: Would be nicer to do this via the operators symbolic name. */
1470 if (iomode == IO_OUTPUT)
1472 int converted = (int) *op;
1473 write_atom (ATOM_INTEGER, &converted);
1477 require_atom (ATOM_INTEGER);
1478 *op = (gfc_intrinsic_op) atom_int;
1483 /* Read or write a character pointer that points to a string on the heap. */
1486 mio_allocated_string (const char *s)
1488 if (iomode == IO_OUTPUT)
1490 write_atom (ATOM_STRING, s);
1495 require_atom (ATOM_STRING);
1501 /* Functions for quoting and unquoting strings. */
1504 quote_string (const gfc_char_t *s, const size_t slength)
1506 const gfc_char_t *p;
1510 /* Calculate the length we'll need: a backslash takes two ("\\"),
1511 non-printable characters take 10 ("\Uxxxxxxxx") and others take 1. */
1512 for (p = s, i = 0; i < slength; p++, i++)
1516 else if (!gfc_wide_is_printable (*p))
1522 q = res = XCNEWVEC (char, len + 1);
1523 for (p = s, i = 0; i < slength; p++, i++)
1526 *q++ = '\\', *q++ = '\\';
1527 else if (!gfc_wide_is_printable (*p))
1529 sprintf (q, "\\U%08" HOST_WIDE_INT_PRINT "x",
1530 (unsigned HOST_WIDE_INT) *p);
1534 *q++ = (unsigned char) *p;
1542 unquote_string (const char *s)
1548 for (p = s, len = 0; *p; p++, len++)
1555 else if (p[1] == 'U')
1556 p += 9; /* That is a "\U????????". */
1558 gfc_internal_error ("unquote_string(): got bad string");
1561 res = gfc_get_wide_string (len + 1);
1562 for (i = 0, p = s; i < len; i++, p++)
1567 res[i] = (unsigned char) *p;
1568 else if (p[1] == '\\')
1570 res[i] = (unsigned char) '\\';
1575 /* We read the 8-digits hexadecimal constant that follows. */
1580 gcc_assert (p[1] == 'U');
1581 for (j = 0; j < 8; j++)
1584 gcc_assert (sscanf (&p[j+2], "%01x", &n) == 1);
1598 /* Read or write a character pointer that points to a wide string on the
1599 heap, performing quoting/unquoting of nonprintable characters using the
1600 form \U???????? (where each ? is a hexadecimal digit).
1601 Length is the length of the string, only known and used in output mode. */
1603 static const gfc_char_t *
1604 mio_allocated_wide_string (const gfc_char_t *s, const size_t length)
1606 if (iomode == IO_OUTPUT)
1608 char *quoted = quote_string (s, length);
1609 write_atom (ATOM_STRING, quoted);
1615 gfc_char_t *unquoted;
1617 require_atom (ATOM_STRING);
1618 unquoted = unquote_string (atom_string);
1619 gfc_free (atom_string);
1625 /* Read or write a string that is in static memory. */
1628 mio_pool_string (const char **stringp)
1630 /* TODO: one could write the string only once, and refer to it via a
1633 /* As a special case we have to deal with a NULL string. This
1634 happens for the 'module' member of 'gfc_symbol's that are not in a
1635 module. We read / write these as the empty string. */
1636 if (iomode == IO_OUTPUT)
1638 const char *p = *stringp == NULL ? "" : *stringp;
1639 write_atom (ATOM_STRING, p);
1643 require_atom (ATOM_STRING);
1644 *stringp = atom_string[0] == '\0' ? NULL : gfc_get_string (atom_string);
1645 gfc_free (atom_string);
1650 /* Read or write a string that is inside of some already-allocated
1654 mio_internal_string (char *string)
1656 if (iomode == IO_OUTPUT)
1657 write_atom (ATOM_STRING, string);
1660 require_atom (ATOM_STRING);
1661 strcpy (string, atom_string);
1662 gfc_free (atom_string);
1668 { AB_ALLOCATABLE, AB_DIMENSION, AB_EXTERNAL, AB_INTRINSIC, AB_OPTIONAL,
1669 AB_POINTER, AB_TARGET, AB_DUMMY, AB_RESULT, AB_DATA,
1670 AB_IN_NAMELIST, AB_IN_COMMON, AB_FUNCTION, AB_SUBROUTINE, AB_SEQUENCE,
1671 AB_ELEMENTAL, AB_PURE, AB_RECURSIVE, AB_GENERIC, AB_ALWAYS_EXPLICIT,
1672 AB_CRAY_POINTER, AB_CRAY_POINTEE, AB_THREADPRIVATE, AB_ALLOC_COMP,
1673 AB_POINTER_COMP, AB_PRIVATE_COMP, AB_VALUE, AB_VOLATILE, AB_PROTECTED,
1674 AB_IS_BIND_C, AB_IS_C_INTEROP, AB_IS_ISO_C, AB_ABSTRACT, AB_ZERO_COMP,
1675 AB_IS_CLASS, AB_PROCEDURE, AB_PROC_POINTER, AB_ASYNCHRONOUS
1679 static const mstring attr_bits[] =
1681 minit ("ALLOCATABLE", AB_ALLOCATABLE),
1682 minit ("ASYNCHRONOUS", AB_ASYNCHRONOUS),
1683 minit ("DIMENSION", AB_DIMENSION),
1684 minit ("EXTERNAL", AB_EXTERNAL),
1685 minit ("INTRINSIC", AB_INTRINSIC),
1686 minit ("OPTIONAL", AB_OPTIONAL),
1687 minit ("POINTER", AB_POINTER),
1688 minit ("VOLATILE", AB_VOLATILE),
1689 minit ("TARGET", AB_TARGET),
1690 minit ("THREADPRIVATE", AB_THREADPRIVATE),
1691 minit ("DUMMY", AB_DUMMY),
1692 minit ("RESULT", AB_RESULT),
1693 minit ("DATA", AB_DATA),
1694 minit ("IN_NAMELIST", AB_IN_NAMELIST),
1695 minit ("IN_COMMON", AB_IN_COMMON),
1696 minit ("FUNCTION", AB_FUNCTION),
1697 minit ("SUBROUTINE", AB_SUBROUTINE),
1698 minit ("SEQUENCE", AB_SEQUENCE),
1699 minit ("ELEMENTAL", AB_ELEMENTAL),
1700 minit ("PURE", AB_PURE),
1701 minit ("RECURSIVE", AB_RECURSIVE),
1702 minit ("GENERIC", AB_GENERIC),
1703 minit ("ALWAYS_EXPLICIT", AB_ALWAYS_EXPLICIT),
1704 minit ("CRAY_POINTER", AB_CRAY_POINTER),
1705 minit ("CRAY_POINTEE", AB_CRAY_POINTEE),
1706 minit ("IS_BIND_C", AB_IS_BIND_C),
1707 minit ("IS_C_INTEROP", AB_IS_C_INTEROP),
1708 minit ("IS_ISO_C", AB_IS_ISO_C),
1709 minit ("VALUE", AB_VALUE),
1710 minit ("ALLOC_COMP", AB_ALLOC_COMP),
1711 minit ("POINTER_COMP", AB_POINTER_COMP),
1712 minit ("PRIVATE_COMP", AB_PRIVATE_COMP),
1713 minit ("ZERO_COMP", AB_ZERO_COMP),
1714 minit ("PROTECTED", AB_PROTECTED),
1715 minit ("ABSTRACT", AB_ABSTRACT),
1716 minit ("IS_CLASS", AB_IS_CLASS),
1717 minit ("PROCEDURE", AB_PROCEDURE),
1718 minit ("PROC_POINTER", AB_PROC_POINTER),
1722 /* For binding attributes. */
1723 static const mstring binding_passing[] =
1726 minit ("NOPASS", 1),
1729 static const mstring binding_overriding[] =
1731 minit ("OVERRIDABLE", 0),
1732 minit ("NON_OVERRIDABLE", 1),
1733 minit ("DEFERRED", 2),
1736 static const mstring binding_generic[] =
1738 minit ("SPECIFIC", 0),
1739 minit ("GENERIC", 1),
1742 static const mstring binding_ppc[] =
1744 minit ("NO_PPC", 0),
1749 /* Specialization of mio_name. */
1750 DECL_MIO_NAME (ab_attribute)
1751 DECL_MIO_NAME (ar_type)
1752 DECL_MIO_NAME (array_type)
1754 DECL_MIO_NAME (expr_t)
1755 DECL_MIO_NAME (gfc_access)
1756 DECL_MIO_NAME (gfc_intrinsic_op)
1757 DECL_MIO_NAME (ifsrc)
1758 DECL_MIO_NAME (save_state)
1759 DECL_MIO_NAME (procedure_type)
1760 DECL_MIO_NAME (ref_type)
1761 DECL_MIO_NAME (sym_flavor)
1762 DECL_MIO_NAME (sym_intent)
1763 #undef DECL_MIO_NAME
1765 /* Symbol attributes are stored in list with the first three elements
1766 being the enumerated fields, while the remaining elements (if any)
1767 indicate the individual attribute bits. The access field is not
1768 saved-- it controls what symbols are exported when a module is
1772 mio_symbol_attribute (symbol_attribute *attr)
1775 unsigned ext_attr,extension_level;
1779 attr->flavor = MIO_NAME (sym_flavor) (attr->flavor, flavors);
1780 attr->intent = MIO_NAME (sym_intent) (attr->intent, intents);
1781 attr->proc = MIO_NAME (procedure_type) (attr->proc, procedures);
1782 attr->if_source = MIO_NAME (ifsrc) (attr->if_source, ifsrc_types);
1783 attr->save = MIO_NAME (save_state) (attr->save, save_status);
1785 ext_attr = attr->ext_attr;
1786 mio_integer ((int *) &ext_attr);
1787 attr->ext_attr = ext_attr;
1789 extension_level = attr->extension;
1790 mio_integer ((int *) &extension_level);
1791 attr->extension = extension_level;
1793 if (iomode == IO_OUTPUT)
1795 if (attr->allocatable)
1796 MIO_NAME (ab_attribute) (AB_ALLOCATABLE, attr_bits);
1797 if (attr->asynchronous)
1798 MIO_NAME (ab_attribute) (AB_ASYNCHRONOUS, attr_bits);
1799 if (attr->dimension)
1800 MIO_NAME (ab_attribute) (AB_DIMENSION, attr_bits);
1802 MIO_NAME (ab_attribute) (AB_EXTERNAL, attr_bits);
1803 if (attr->intrinsic)
1804 MIO_NAME (ab_attribute) (AB_INTRINSIC, attr_bits);
1806 MIO_NAME (ab_attribute) (AB_OPTIONAL, attr_bits);
1808 MIO_NAME (ab_attribute) (AB_POINTER, attr_bits);
1809 if (attr->is_protected)
1810 MIO_NAME (ab_attribute) (AB_PROTECTED, attr_bits);
1812 MIO_NAME (ab_attribute) (AB_VALUE, attr_bits);
1813 if (attr->volatile_)
1814 MIO_NAME (ab_attribute) (AB_VOLATILE, attr_bits);
1816 MIO_NAME (ab_attribute) (AB_TARGET, attr_bits);
1817 if (attr->threadprivate)
1818 MIO_NAME (ab_attribute) (AB_THREADPRIVATE, attr_bits);
1820 MIO_NAME (ab_attribute) (AB_DUMMY, attr_bits);
1822 MIO_NAME (ab_attribute) (AB_RESULT, attr_bits);
1823 /* We deliberately don't preserve the "entry" flag. */
1826 MIO_NAME (ab_attribute) (AB_DATA, attr_bits);
1827 if (attr->in_namelist)
1828 MIO_NAME (ab_attribute) (AB_IN_NAMELIST, attr_bits);
1829 if (attr->in_common)
1830 MIO_NAME (ab_attribute) (AB_IN_COMMON, attr_bits);
1833 MIO_NAME (ab_attribute) (AB_FUNCTION, attr_bits);
1834 if (attr->subroutine)
1835 MIO_NAME (ab_attribute) (AB_SUBROUTINE, attr_bits);
1837 MIO_NAME (ab_attribute) (AB_GENERIC, attr_bits);
1839 MIO_NAME (ab_attribute) (AB_ABSTRACT, attr_bits);
1842 MIO_NAME (ab_attribute) (AB_SEQUENCE, attr_bits);
1843 if (attr->elemental)
1844 MIO_NAME (ab_attribute) (AB_ELEMENTAL, attr_bits);
1846 MIO_NAME (ab_attribute) (AB_PURE, attr_bits);
1847 if (attr->recursive)
1848 MIO_NAME (ab_attribute) (AB_RECURSIVE, attr_bits);
1849 if (attr->always_explicit)
1850 MIO_NAME (ab_attribute) (AB_ALWAYS_EXPLICIT, attr_bits);
1851 if (attr->cray_pointer)
1852 MIO_NAME (ab_attribute) (AB_CRAY_POINTER, attr_bits);
1853 if (attr->cray_pointee)
1854 MIO_NAME (ab_attribute) (AB_CRAY_POINTEE, attr_bits);
1855 if (attr->is_bind_c)
1856 MIO_NAME(ab_attribute) (AB_IS_BIND_C, attr_bits);
1857 if (attr->is_c_interop)
1858 MIO_NAME(ab_attribute) (AB_IS_C_INTEROP, attr_bits);
1860 MIO_NAME(ab_attribute) (AB_IS_ISO_C, attr_bits);
1861 if (attr->alloc_comp)
1862 MIO_NAME (ab_attribute) (AB_ALLOC_COMP, attr_bits);
1863 if (attr->pointer_comp)
1864 MIO_NAME (ab_attribute) (AB_POINTER_COMP, attr_bits);
1865 if (attr->private_comp)
1866 MIO_NAME (ab_attribute) (AB_PRIVATE_COMP, attr_bits);
1867 if (attr->zero_comp)
1868 MIO_NAME (ab_attribute) (AB_ZERO_COMP, attr_bits);
1870 MIO_NAME (ab_attribute) (AB_IS_CLASS, attr_bits);
1871 if (attr->procedure)
1872 MIO_NAME (ab_attribute) (AB_PROCEDURE, attr_bits);
1873 if (attr->proc_pointer)
1874 MIO_NAME (ab_attribute) (AB_PROC_POINTER, attr_bits);
1884 if (t == ATOM_RPAREN)
1887 bad_module ("Expected attribute bit name");
1889 switch ((ab_attribute) find_enum (attr_bits))
1891 case AB_ALLOCATABLE:
1892 attr->allocatable = 1;
1894 case AB_ASYNCHRONOUS:
1895 attr->asynchronous = 1;
1898 attr->dimension = 1;
1904 attr->intrinsic = 1;
1913 attr->is_protected = 1;
1919 attr->volatile_ = 1;
1924 case AB_THREADPRIVATE:
1925 attr->threadprivate = 1;
1936 case AB_IN_NAMELIST:
1937 attr->in_namelist = 1;
1940 attr->in_common = 1;
1946 attr->subroutine = 1;
1958 attr->elemental = 1;
1964 attr->recursive = 1;
1966 case AB_ALWAYS_EXPLICIT:
1967 attr->always_explicit = 1;
1969 case AB_CRAY_POINTER:
1970 attr->cray_pointer = 1;
1972 case AB_CRAY_POINTEE:
1973 attr->cray_pointee = 1;
1976 attr->is_bind_c = 1;
1978 case AB_IS_C_INTEROP:
1979 attr->is_c_interop = 1;
1985 attr->alloc_comp = 1;
1987 case AB_POINTER_COMP:
1988 attr->pointer_comp = 1;
1990 case AB_PRIVATE_COMP:
1991 attr->private_comp = 1;
1994 attr->zero_comp = 1;
2000 attr->procedure = 1;
2002 case AB_PROC_POINTER:
2003 attr->proc_pointer = 1;
2011 static const mstring bt_types[] = {
2012 minit ("INTEGER", BT_INTEGER),
2013 minit ("REAL", BT_REAL),
2014 minit ("COMPLEX", BT_COMPLEX),
2015 minit ("LOGICAL", BT_LOGICAL),
2016 minit ("CHARACTER", BT_CHARACTER),
2017 minit ("DERIVED", BT_DERIVED),
2018 minit ("CLASS", BT_CLASS),
2019 minit ("PROCEDURE", BT_PROCEDURE),
2020 minit ("UNKNOWN", BT_UNKNOWN),
2021 minit ("VOID", BT_VOID),
2027 mio_charlen (gfc_charlen **clp)
2033 if (iomode == IO_OUTPUT)
2037 mio_expr (&cl->length);
2041 if (peek_atom () != ATOM_RPAREN)
2043 cl = gfc_new_charlen (gfc_current_ns, NULL);
2044 mio_expr (&cl->length);
2053 /* See if a name is a generated name. */
2056 check_unique_name (const char *name)
2058 return *name == '@';
2063 mio_typespec (gfc_typespec *ts)
2067 ts->type = MIO_NAME (bt) (ts->type, bt_types);
2069 if (ts->type != BT_DERIVED && ts->type != BT_CLASS)
2070 mio_integer (&ts->kind);
2072 mio_symbol_ref (&ts->u.derived);
2074 /* Add info for C interop and is_iso_c. */
2075 mio_integer (&ts->is_c_interop);
2076 mio_integer (&ts->is_iso_c);
2078 /* If the typespec is for an identifier either from iso_c_binding, or
2079 a constant that was initialized to an identifier from it, use the
2080 f90_type. Otherwise, use the ts->type, since it shouldn't matter. */
2082 ts->f90_type = MIO_NAME (bt) (ts->f90_type, bt_types);
2084 ts->f90_type = MIO_NAME (bt) (ts->type, bt_types);
2086 if (ts->type != BT_CHARACTER)
2088 /* ts->u.cl is only valid for BT_CHARACTER. */
2093 mio_charlen (&ts->u.cl);
2099 static const mstring array_spec_types[] = {
2100 minit ("EXPLICIT", AS_EXPLICIT),
2101 minit ("ASSUMED_SHAPE", AS_ASSUMED_SHAPE),
2102 minit ("DEFERRED", AS_DEFERRED),
2103 minit ("ASSUMED_SIZE", AS_ASSUMED_SIZE),
2109 mio_array_spec (gfc_array_spec **asp)
2116 if (iomode == IO_OUTPUT)
2124 if (peek_atom () == ATOM_RPAREN)
2130 *asp = as = gfc_get_array_spec ();
2133 mio_integer (&as->rank);
2134 as->type = MIO_NAME (array_type) (as->type, array_spec_types);
2136 for (i = 0; i < as->rank; i++)
2138 mio_expr (&as->lower[i]);
2139 mio_expr (&as->upper[i]);
2147 /* Given a pointer to an array reference structure (which lives in a
2148 gfc_ref structure), find the corresponding array specification
2149 structure. Storing the pointer in the ref structure doesn't quite
2150 work when loading from a module. Generating code for an array
2151 reference also needs more information than just the array spec. */
2153 static const mstring array_ref_types[] = {
2154 minit ("FULL", AR_FULL),
2155 minit ("ELEMENT", AR_ELEMENT),
2156 minit ("SECTION", AR_SECTION),
2162 mio_array_ref (gfc_array_ref *ar)
2167 ar->type = MIO_NAME (ar_type) (ar->type, array_ref_types);
2168 mio_integer (&ar->dimen);
2176 for (i = 0; i < ar->dimen; i++)
2177 mio_expr (&ar->start[i]);
2182 for (i = 0; i < ar->dimen; i++)
2184 mio_expr (&ar->start[i]);
2185 mio_expr (&ar->end[i]);
2186 mio_expr (&ar->stride[i]);
2192 gfc_internal_error ("mio_array_ref(): Unknown array ref");
2195 /* Unfortunately, ar->dimen_type is an anonymous enumerated type so
2196 we can't call mio_integer directly. Instead loop over each element
2197 and cast it to/from an integer. */
2198 if (iomode == IO_OUTPUT)
2200 for (i = 0; i < ar->dimen; i++)
2202 int tmp = (int)ar->dimen_type[i];
2203 write_atom (ATOM_INTEGER, &tmp);
2208 for (i = 0; i < ar->dimen; i++)
2210 require_atom (ATOM_INTEGER);
2211 ar->dimen_type[i] = (enum gfc_array_ref_dimen_type) atom_int;
2215 if (iomode == IO_INPUT)
2217 ar->where = gfc_current_locus;
2219 for (i = 0; i < ar->dimen; i++)
2220 ar->c_where[i] = gfc_current_locus;
2227 /* Saves or restores a pointer. The pointer is converted back and
2228 forth from an integer. We return the pointer_info pointer so that
2229 the caller can take additional action based on the pointer type. */
2231 static pointer_info *
2232 mio_pointer_ref (void *gp)
2236 if (iomode == IO_OUTPUT)
2238 p = get_pointer (*((char **) gp));
2239 write_atom (ATOM_INTEGER, &p->integer);
2243 require_atom (ATOM_INTEGER);
2244 p = add_fixup (atom_int, gp);
2251 /* Save and load references to components that occur within
2252 expressions. We have to describe these references by a number and
2253 by name. The number is necessary for forward references during
2254 reading, and the name is necessary if the symbol already exists in
2255 the namespace and is not loaded again. */
2258 mio_component_ref (gfc_component **cp, gfc_symbol *sym)
2260 char name[GFC_MAX_SYMBOL_LEN + 1];
2264 p = mio_pointer_ref (cp);
2265 if (p->type == P_UNKNOWN)
2266 p->type = P_COMPONENT;
2268 if (iomode == IO_OUTPUT)
2269 mio_pool_string (&(*cp)->name);
2272 mio_internal_string (name);
2274 /* It can happen that a component reference can be read before the
2275 associated derived type symbol has been loaded. Return now and
2276 wait for a later iteration of load_needed. */
2280 if (sym->components != NULL && p->u.pointer == NULL)
2282 /* Symbol already loaded, so search by name. */
2283 for (q = sym->components; q; q = q->next)
2284 if (strcmp (q->name, name) == 0)
2288 gfc_internal_error ("mio_component_ref(): Component not found");
2290 associate_integer_pointer (p, q);
2293 /* Make sure this symbol will eventually be loaded. */
2294 p = find_pointer2 (sym);
2295 if (p->u.rsym.state == UNUSED)
2296 p->u.rsym.state = NEEDED;
2301 static void mio_namespace_ref (gfc_namespace **nsp);
2302 static void mio_formal_arglist (gfc_formal_arglist **formal);
2303 static void mio_typebound_proc (gfc_typebound_proc** proc);
2306 mio_component (gfc_component *c)
2310 gfc_formal_arglist *formal;
2314 if (iomode == IO_OUTPUT)
2316 p = get_pointer (c);
2317 mio_integer (&p->integer);
2322 p = get_integer (n);
2323 associate_integer_pointer (p, c);
2326 if (p->type == P_UNKNOWN)
2327 p->type = P_COMPONENT;
2329 mio_pool_string (&c->name);
2330 mio_typespec (&c->ts);
2331 mio_array_spec (&c->as);
2333 mio_symbol_attribute (&c->attr);
2334 c->attr.access = MIO_NAME (gfc_access) (c->attr.access, access_types);
2336 mio_expr (&c->initializer);
2338 if (c->attr.proc_pointer)
2340 if (iomode == IO_OUTPUT)
2343 while (formal && !formal->sym)
2344 formal = formal->next;
2347 mio_namespace_ref (&formal->sym->ns);
2349 mio_namespace_ref (&c->formal_ns);
2353 mio_namespace_ref (&c->formal_ns);
2354 /* TODO: if (c->formal_ns)
2356 c->formal_ns->proc_name = c;
2361 mio_formal_arglist (&c->formal);
2363 mio_typebound_proc (&c->tb);
2371 mio_component_list (gfc_component **cp)
2373 gfc_component *c, *tail;
2377 if (iomode == IO_OUTPUT)
2379 for (c = *cp; c; c = c->next)
2389 if (peek_atom () == ATOM_RPAREN)
2392 c = gfc_get_component ();
2409 mio_actual_arg (gfc_actual_arglist *a)
2412 mio_pool_string (&a->name);
2413 mio_expr (&a->expr);
2419 mio_actual_arglist (gfc_actual_arglist **ap)
2421 gfc_actual_arglist *a, *tail;
2425 if (iomode == IO_OUTPUT)
2427 for (a = *ap; a; a = a->next)
2437 if (peek_atom () != ATOM_LPAREN)
2440 a = gfc_get_actual_arglist ();
2456 /* Read and write formal argument lists. */
2459 mio_formal_arglist (gfc_formal_arglist **formal)
2461 gfc_formal_arglist *f, *tail;
2465 if (iomode == IO_OUTPUT)
2467 for (f = *formal; f; f = f->next)
2468 mio_symbol_ref (&f->sym);
2472 *formal = tail = NULL;
2474 while (peek_atom () != ATOM_RPAREN)
2476 f = gfc_get_formal_arglist ();
2477 mio_symbol_ref (&f->sym);
2479 if (*formal == NULL)
2492 /* Save or restore a reference to a symbol node. */
2495 mio_symbol_ref (gfc_symbol **symp)
2499 p = mio_pointer_ref (symp);
2500 if (p->type == P_UNKNOWN)
2503 if (iomode == IO_OUTPUT)
2505 if (p->u.wsym.state == UNREFERENCED)
2506 p->u.wsym.state = NEEDS_WRITE;
2510 if (p->u.rsym.state == UNUSED)
2511 p->u.rsym.state = NEEDED;
2517 /* Save or restore a reference to a symtree node. */
2520 mio_symtree_ref (gfc_symtree **stp)
2525 if (iomode == IO_OUTPUT)
2526 mio_symbol_ref (&(*stp)->n.sym);
2529 require_atom (ATOM_INTEGER);
2530 p = get_integer (atom_int);
2532 /* An unused equivalence member; make a symbol and a symtree
2534 if (in_load_equiv && p->u.rsym.symtree == NULL)
2536 /* Since this is not used, it must have a unique name. */
2537 p->u.rsym.symtree = gfc_get_unique_symtree (gfc_current_ns);
2539 /* Make the symbol. */
2540 if (p->u.rsym.sym == NULL)
2542 p->u.rsym.sym = gfc_new_symbol (p->u.rsym.true_name,
2544 p->u.rsym.sym->module = gfc_get_string (p->u.rsym.module);
2547 p->u.rsym.symtree->n.sym = p->u.rsym.sym;
2548 p->u.rsym.symtree->n.sym->refs++;
2549 p->u.rsym.referenced = 1;
2551 /* If the symbol is PRIVATE and in COMMON, load_commons will
2552 generate a fixup symbol, which must be associated. */
2554 resolve_fixups (p->fixup, p->u.rsym.sym);
2558 if (p->type == P_UNKNOWN)
2561 if (p->u.rsym.state == UNUSED)
2562 p->u.rsym.state = NEEDED;
2564 if (p->u.rsym.symtree != NULL)
2566 *stp = p->u.rsym.symtree;
2570 f = XCNEW (fixup_t);
2572 f->next = p->u.rsym.stfixup;
2573 p->u.rsym.stfixup = f;
2575 f->pointer = (void **) stp;
2582 mio_iterator (gfc_iterator **ip)
2588 if (iomode == IO_OUTPUT)
2595 if (peek_atom () == ATOM_RPAREN)
2601 *ip = gfc_get_iterator ();
2606 mio_expr (&iter->var);
2607 mio_expr (&iter->start);
2608 mio_expr (&iter->end);
2609 mio_expr (&iter->step);
2617 mio_constructor (gfc_constructor **cp)
2619 gfc_constructor *c, *tail;
2623 if (iomode == IO_OUTPUT)
2625 for (c = *cp; c; c = c->next)
2628 mio_expr (&c->expr);
2629 mio_iterator (&c->iterator);
2638 while (peek_atom () != ATOM_RPAREN)
2640 c = gfc_get_constructor ();
2650 mio_expr (&c->expr);
2651 mio_iterator (&c->iterator);
2660 static const mstring ref_types[] = {
2661 minit ("ARRAY", REF_ARRAY),
2662 minit ("COMPONENT", REF_COMPONENT),
2663 minit ("SUBSTRING", REF_SUBSTRING),
2669 mio_ref (gfc_ref **rp)
2676 r->type = MIO_NAME (ref_type) (r->type, ref_types);
2681 mio_array_ref (&r->u.ar);
2685 mio_symbol_ref (&r->u.c.sym);
2686 mio_component_ref (&r->u.c.component, r->u.c.sym);
2690 mio_expr (&r->u.ss.start);
2691 mio_expr (&r->u.ss.end);
2692 mio_charlen (&r->u.ss.length);
2701 mio_ref_list (gfc_ref **rp)
2703 gfc_ref *ref, *head, *tail;
2707 if (iomode == IO_OUTPUT)
2709 for (ref = *rp; ref; ref = ref->next)
2716 while (peek_atom () != ATOM_RPAREN)
2719 head = tail = gfc_get_ref ();
2722 tail->next = gfc_get_ref ();
2736 /* Read and write an integer value. */
2739 mio_gmp_integer (mpz_t *integer)
2743 if (iomode == IO_INPUT)
2745 if (parse_atom () != ATOM_STRING)
2746 bad_module ("Expected integer string");
2748 mpz_init (*integer);
2749 if (mpz_set_str (*integer, atom_string, 10))
2750 bad_module ("Error converting integer");
2752 gfc_free (atom_string);
2756 p = mpz_get_str (NULL, 10, *integer);
2757 write_atom (ATOM_STRING, p);
2764 mio_gmp_real (mpfr_t *real)
2769 if (iomode == IO_INPUT)
2771 if (parse_atom () != ATOM_STRING)
2772 bad_module ("Expected real string");
2775 mpfr_set_str (*real, atom_string, 16, GFC_RND_MODE);
2776 gfc_free (atom_string);
2780 p = mpfr_get_str (NULL, &exponent, 16, 0, *real, GFC_RND_MODE);
2782 if (mpfr_nan_p (*real) || mpfr_inf_p (*real))
2784 write_atom (ATOM_STRING, p);
2789 atom_string = XCNEWVEC (char, strlen (p) + 20);
2791 sprintf (atom_string, "0.%s@%ld", p, exponent);
2793 /* Fix negative numbers. */
2794 if (atom_string[2] == '-')
2796 atom_string[0] = '-';
2797 atom_string[1] = '0';
2798 atom_string[2] = '.';
2801 write_atom (ATOM_STRING, atom_string);
2803 gfc_free (atom_string);
2809 /* Save and restore the shape of an array constructor. */
2812 mio_shape (mpz_t **pshape, int rank)
2818 /* A NULL shape is represented by (). */
2821 if (iomode == IO_OUTPUT)
2833 if (t == ATOM_RPAREN)
2840 shape = gfc_get_shape (rank);
2844 for (n = 0; n < rank; n++)
2845 mio_gmp_integer (&shape[n]);
2851 static const mstring expr_types[] = {
2852 minit ("OP", EXPR_OP),
2853 minit ("FUNCTION", EXPR_FUNCTION),
2854 minit ("CONSTANT", EXPR_CONSTANT),
2855 minit ("VARIABLE", EXPR_VARIABLE),
2856 minit ("SUBSTRING", EXPR_SUBSTRING),
2857 minit ("STRUCTURE", EXPR_STRUCTURE),
2858 minit ("ARRAY", EXPR_ARRAY),
2859 minit ("NULL", EXPR_NULL),
2860 minit ("COMPCALL", EXPR_COMPCALL),
2864 /* INTRINSIC_ASSIGN is missing because it is used as an index for
2865 generic operators, not in expressions. INTRINSIC_USER is also
2866 replaced by the correct function name by the time we see it. */
2868 static const mstring intrinsics[] =
2870 minit ("UPLUS", INTRINSIC_UPLUS),
2871 minit ("UMINUS", INTRINSIC_UMINUS),
2872 minit ("PLUS", INTRINSIC_PLUS),
2873 minit ("MINUS", INTRINSIC_MINUS),
2874 minit ("TIMES", INTRINSIC_TIMES),
2875 minit ("DIVIDE", INTRINSIC_DIVIDE),
2876 minit ("POWER", INTRINSIC_POWER),
2877 minit ("CONCAT", INTRINSIC_CONCAT),
2878 minit ("AND", INTRINSIC_AND),
2879 minit ("OR", INTRINSIC_OR),
2880 minit ("EQV", INTRINSIC_EQV),
2881 minit ("NEQV", INTRINSIC_NEQV),
2882 minit ("EQ_SIGN", INTRINSIC_EQ),
2883 minit ("EQ", INTRINSIC_EQ_OS),
2884 minit ("NE_SIGN", INTRINSIC_NE),
2885 minit ("NE", INTRINSIC_NE_OS),
2886 minit ("GT_SIGN", INTRINSIC_GT),
2887 minit ("GT", INTRINSIC_GT_OS),
2888 minit ("GE_SIGN", INTRINSIC_GE),
2889 minit ("GE", INTRINSIC_GE_OS),
2890 minit ("LT_SIGN", INTRINSIC_LT),
2891 minit ("LT", INTRINSIC_LT_OS),
2892 minit ("LE_SIGN", INTRINSIC_LE),
2893 minit ("LE", INTRINSIC_LE_OS),
2894 minit ("NOT", INTRINSIC_NOT),
2895 minit ("PARENTHESES", INTRINSIC_PARENTHESES),
2900 /* Remedy a couple of situations where the gfc_expr's can be defective. */
2903 fix_mio_expr (gfc_expr *e)
2905 gfc_symtree *ns_st = NULL;
2908 if (iomode != IO_OUTPUT)
2913 /* If this is a symtree for a symbol that came from a contained module
2914 namespace, it has a unique name and we should look in the current
2915 namespace to see if the required, non-contained symbol is available
2916 yet. If so, the latter should be written. */
2917 if (e->symtree->n.sym && check_unique_name (e->symtree->name))
2918 ns_st = gfc_find_symtree (gfc_current_ns->sym_root,
2919 e->symtree->n.sym->name);
2921 /* On the other hand, if the existing symbol is the module name or the
2922 new symbol is a dummy argument, do not do the promotion. */
2923 if (ns_st && ns_st->n.sym
2924 && ns_st->n.sym->attr.flavor != FL_MODULE
2925 && !e->symtree->n.sym->attr.dummy)
2928 else if (e->expr_type == EXPR_FUNCTION && e->value.function.name)
2932 /* In some circumstances, a function used in an initialization
2933 expression, in one use associated module, can fail to be
2934 coupled to its symtree when used in a specification
2935 expression in another module. */
2936 fname = e->value.function.esym ? e->value.function.esym->name
2937 : e->value.function.isym->name;
2938 e->symtree = gfc_find_symtree (gfc_current_ns->sym_root, fname);
2943 /* This is probably a reference to a private procedure from another
2944 module. To prevent a segfault, make a generic with no specific
2945 instances. If this module is used, without the required
2946 specific coming from somewhere, the appropriate error message
2948 gfc_get_symbol (fname, gfc_current_ns, &sym);
2949 sym->attr.flavor = FL_PROCEDURE;
2950 sym->attr.generic = 1;
2951 e->symtree = gfc_find_symtree (gfc_current_ns->sym_root, fname);
2956 /* Read and write expressions. The form "()" is allowed to indicate a
2960 mio_expr (gfc_expr **ep)
2968 if (iomode == IO_OUTPUT)
2977 MIO_NAME (expr_t) (e->expr_type, expr_types);
2982 if (t == ATOM_RPAREN)
2989 bad_module ("Expected expression type");
2991 e = *ep = gfc_get_expr ();
2992 e->where = gfc_current_locus;
2993 e->expr_type = (expr_t) find_enum (expr_types);
2996 mio_typespec (&e->ts);
2997 mio_integer (&e->rank);
3001 switch (e->expr_type)
3005 = MIO_NAME (gfc_intrinsic_op) (e->value.op.op, intrinsics);
3007 switch (e->value.op.op)
3009 case INTRINSIC_UPLUS:
3010 case INTRINSIC_UMINUS:
3012 case INTRINSIC_PARENTHESES:
3013 mio_expr (&e->value.op.op1);
3016 case INTRINSIC_PLUS:
3017 case INTRINSIC_MINUS:
3018 case INTRINSIC_TIMES:
3019 case INTRINSIC_DIVIDE:
3020 case INTRINSIC_POWER:
3021 case INTRINSIC_CONCAT:
3025 case INTRINSIC_NEQV:
3027 case INTRINSIC_EQ_OS:
3029 case INTRINSIC_NE_OS:
3031 case INTRINSIC_GT_OS:
3033 case INTRINSIC_GE_OS:
3035 case INTRINSIC_LT_OS:
3037 case INTRINSIC_LE_OS:
3038 mio_expr (&e->value.op.op1);
3039 mio_expr (&e->value.op.op2);
3043 bad_module ("Bad operator");
3049 mio_symtree_ref (&e->symtree);
3050 mio_actual_arglist (&e->value.function.actual);
3052 if (iomode == IO_OUTPUT)
3054 e->value.function.name
3055 = mio_allocated_string (e->value.function.name);
3056 flag = e->value.function.esym != NULL;
3057 mio_integer (&flag);
3059 mio_symbol_ref (&e->value.function.esym);
3061 write_atom (ATOM_STRING, e->value.function.isym->name);
3065 require_atom (ATOM_STRING);
3066 e->value.function.name = gfc_get_string (atom_string);
3067 gfc_free (atom_string);
3069 mio_integer (&flag);
3071 mio_symbol_ref (&e->value.function.esym);
3074 require_atom (ATOM_STRING);
3075 e->value.function.isym = gfc_find_function (atom_string);
3076 gfc_free (atom_string);
3083 mio_symtree_ref (&e->symtree);
3084 mio_ref_list (&e->ref);
3087 case EXPR_SUBSTRING:
3088 e->value.character.string
3089 = CONST_CAST (gfc_char_t *,
3090 mio_allocated_wide_string (e->value.character.string,
3091 e->value.character.length));
3092 mio_ref_list (&e->ref);
3095 case EXPR_STRUCTURE:
3097 mio_constructor (&e->value.constructor);
3098 mio_shape (&e->shape, e->rank);
3105 mio_gmp_integer (&e->value.integer);
3109 gfc_set_model_kind (e->ts.kind);
3110 mio_gmp_real (&e->value.real);
3114 gfc_set_model_kind (e->ts.kind);
3115 mio_gmp_real (&mpc_realref (e->value.complex));
3116 mio_gmp_real (&mpc_imagref (e->value.complex));
3120 mio_integer (&e->value.logical);
3124 mio_integer (&e->value.character.length);
3125 e->value.character.string
3126 = CONST_CAST (gfc_char_t *,
3127 mio_allocated_wide_string (e->value.character.string,
3128 e->value.character.length));
3132 bad_module ("Bad type in constant expression");
3150 /* Read and write namelists. */
3153 mio_namelist (gfc_symbol *sym)
3155 gfc_namelist *n, *m;
3156 const char *check_name;
3160 if (iomode == IO_OUTPUT)
3162 for (n = sym->namelist; n; n = n->next)
3163 mio_symbol_ref (&n->sym);
3167 /* This departure from the standard is flagged as an error.
3168 It does, in fact, work correctly. TODO: Allow it
3170 if (sym->attr.flavor == FL_NAMELIST)
3172 check_name = find_use_name (sym->name, false);
3173 if (check_name && strcmp (check_name, sym->name) != 0)
3174 gfc_error ("Namelist %s cannot be renamed by USE "
3175 "association to %s", sym->name, check_name);
3179 while (peek_atom () != ATOM_RPAREN)
3181 n = gfc_get_namelist ();
3182 mio_symbol_ref (&n->sym);
3184 if (sym->namelist == NULL)
3191 sym->namelist_tail = m;
3198 /* Save/restore lists of gfc_interface structures. When loading an
3199 interface, we are really appending to the existing list of
3200 interfaces. Checking for duplicate and ambiguous interfaces has to
3201 be done later when all symbols have been loaded. */
3204 mio_interface_rest (gfc_interface **ip)
3206 gfc_interface *tail, *p;
3207 pointer_info *pi = NULL;
3209 if (iomode == IO_OUTPUT)
3212 for (p = *ip; p; p = p->next)
3213 mio_symbol_ref (&p->sym);
3228 if (peek_atom () == ATOM_RPAREN)
3231 p = gfc_get_interface ();
3232 p->where = gfc_current_locus;
3233 pi = mio_symbol_ref (&p->sym);
3249 /* Save/restore a nameless operator interface. */
3252 mio_interface (gfc_interface **ip)
3255 mio_interface_rest (ip);
3259 /* Save/restore a named operator interface. */
3262 mio_symbol_interface (const char **name, const char **module,
3266 mio_pool_string (name);
3267 mio_pool_string (module);
3268 mio_interface_rest (ip);
3273 mio_namespace_ref (gfc_namespace **nsp)
3278 p = mio_pointer_ref (nsp);
3280 if (p->type == P_UNKNOWN)
3281 p->type = P_NAMESPACE;
3283 if (iomode == IO_INPUT && p->integer != 0)
3285 ns = (gfc_namespace *) p->u.pointer;
3288 ns = gfc_get_namespace (NULL, 0);
3289 associate_integer_pointer (p, ns);
3297 /* Save/restore the f2k_derived namespace of a derived-type symbol. */
3299 static gfc_namespace* current_f2k_derived;
3302 mio_typebound_proc (gfc_typebound_proc** proc)
3305 int overriding_flag;
3307 if (iomode == IO_INPUT)
3309 *proc = gfc_get_typebound_proc ();
3310 (*proc)->where = gfc_current_locus;
3316 (*proc)->access = MIO_NAME (gfc_access) ((*proc)->access, access_types);
3318 /* IO the NON_OVERRIDABLE/DEFERRED combination. */
3319 gcc_assert (!((*proc)->deferred && (*proc)->non_overridable));
3320 overriding_flag = ((*proc)->deferred << 1) | (*proc)->non_overridable;
3321 overriding_flag = mio_name (overriding_flag, binding_overriding);
3322 (*proc)->deferred = ((overriding_flag & 2) != 0);
3323 (*proc)->non_overridable = ((overriding_flag & 1) != 0);
3324 gcc_assert (!((*proc)->deferred && (*proc)->non_overridable));
3326 (*proc)->nopass = mio_name ((*proc)->nopass, binding_passing);
3327 (*proc)->is_generic = mio_name ((*proc)->is_generic, binding_generic);
3328 (*proc)->ppc = mio_name((*proc)->ppc, binding_ppc);
3330 mio_pool_string (&((*proc)->pass_arg));
3332 flag = (int) (*proc)->pass_arg_num;
3333 mio_integer (&flag);
3334 (*proc)->pass_arg_num = (unsigned) flag;
3336 if ((*proc)->is_generic)
3342 if (iomode == IO_OUTPUT)
3343 for (g = (*proc)->u.generic; g; g = g->next)
3344 mio_allocated_string (g->specific_st->name);
3347 (*proc)->u.generic = NULL;
3348 while (peek_atom () != ATOM_RPAREN)
3350 gfc_symtree** sym_root;
3352 g = gfc_get_tbp_generic ();
3355 require_atom (ATOM_STRING);
3356 sym_root = ¤t_f2k_derived->tb_sym_root;
3357 g->specific_st = gfc_get_tbp_symtree (sym_root, atom_string);
3358 gfc_free (atom_string);
3360 g->next = (*proc)->u.generic;
3361 (*proc)->u.generic = g;
3367 else if (!(*proc)->ppc)
3368 mio_symtree_ref (&(*proc)->u.specific);
3373 /* Walker-callback function for this purpose. */
3375 mio_typebound_symtree (gfc_symtree* st)
3377 if (iomode == IO_OUTPUT && !st->n.tb)
3380 if (iomode == IO_OUTPUT)
3383 mio_allocated_string (st->name);
3385 /* For IO_INPUT, the above is done in mio_f2k_derived. */
3387 mio_typebound_proc (&st->n.tb);
3391 /* IO a full symtree (in all depth). */
3393 mio_full_typebound_tree (gfc_symtree** root)
3397 if (iomode == IO_OUTPUT)
3398 gfc_traverse_symtree (*root, &mio_typebound_symtree);
3401 while (peek_atom () == ATOM_LPAREN)
3407 require_atom (ATOM_STRING);
3408 st = gfc_get_tbp_symtree (root, atom_string);
3409 gfc_free (atom_string);
3411 mio_typebound_symtree (st);
3419 mio_finalizer (gfc_finalizer **f)
3421 if (iomode == IO_OUTPUT)
3424 gcc_assert ((*f)->proc_tree); /* Should already be resolved. */
3425 mio_symtree_ref (&(*f)->proc_tree);
3429 *f = gfc_get_finalizer ();
3430 (*f)->where = gfc_current_locus; /* Value should not matter. */
3433 mio_symtree_ref (&(*f)->proc_tree);
3434 (*f)->proc_sym = NULL;
3439 mio_f2k_derived (gfc_namespace *f2k)
3441 current_f2k_derived = f2k;
3443 /* Handle the list of finalizer procedures. */
3445 if (iomode == IO_OUTPUT)
3448 for (f = f2k->finalizers; f; f = f->next)
3453 f2k->finalizers = NULL;
3454 while (peek_atom () != ATOM_RPAREN)
3456 gfc_finalizer *cur = NULL;
3457 mio_finalizer (&cur);
3458 cur->next = f2k->finalizers;
3459 f2k->finalizers = cur;
3464 /* Handle type-bound procedures. */
3465 mio_full_typebound_tree (&f2k->tb_sym_root);
3467 /* Type-bound user operators. */
3468 mio_full_typebound_tree (&f2k->tb_uop_root);
3470 /* Type-bound intrinsic operators. */
3472 if (iomode == IO_OUTPUT)
3475 for (op = GFC_INTRINSIC_BEGIN; op != GFC_INTRINSIC_END; ++op)
3477 gfc_intrinsic_op realop;
3479 if (op == INTRINSIC_USER || !f2k->tb_op[op])
3483 realop = (gfc_intrinsic_op) op;
3484 mio_intrinsic_op (&realop);
3485 mio_typebound_proc (&f2k->tb_op[op]);
3490 while (peek_atom () != ATOM_RPAREN)
3492 gfc_intrinsic_op op = GFC_INTRINSIC_BEGIN; /* Silence GCC. */
3495 mio_intrinsic_op (&op);
3496 mio_typebound_proc (&f2k->tb_op[op]);
3503 mio_full_f2k_derived (gfc_symbol *sym)
3507 if (iomode == IO_OUTPUT)
3509 if (sym->f2k_derived)
3510 mio_f2k_derived (sym->f2k_derived);
3514 if (peek_atom () != ATOM_RPAREN)
3516 sym->f2k_derived = gfc_get_namespace (NULL, 0);
3517 mio_f2k_derived (sym->f2k_derived);
3520 gcc_assert (!sym->f2k_derived);
3527 /* Unlike most other routines, the address of the symbol node is already
3528 fixed on input and the name/module has already been filled in. */
3531 mio_symbol (gfc_symbol *sym)
3533 int intmod = INTMOD_NONE;
3537 mio_symbol_attribute (&sym->attr);
3538 mio_typespec (&sym->ts);
3540 if (iomode == IO_OUTPUT)
3541 mio_namespace_ref (&sym->formal_ns);
3544 mio_namespace_ref (&sym->formal_ns);
3547 sym->formal_ns->proc_name = sym;
3552 /* Save/restore common block links. */
3553 mio_symbol_ref (&sym->common_next);
3555 mio_formal_arglist (&sym->formal);
3557 if (sym->attr.flavor == FL_PARAMETER)
3558 mio_expr (&sym->value);
3560 mio_array_spec (&sym->as);
3562 mio_symbol_ref (&sym->result);
3564 if (sym->attr.cray_pointee)
3565 mio_symbol_ref (&sym->cp_pointer);
3567 /* Note that components are always saved, even if they are supposed
3568 to be private. Component access is checked during searching. */
3570 mio_component_list (&sym->components);
3572 if (sym->components != NULL)
3573 sym->component_access
3574 = MIO_NAME (gfc_access) (sym->component_access, access_types);
3576 /* Load/save the f2k_derived namespace of a derived-type symbol. */
3577 mio_full_f2k_derived (sym);
3581 /* Add the fields that say whether this is from an intrinsic module,
3582 and if so, what symbol it is within the module. */
3583 /* mio_integer (&(sym->from_intmod)); */
3584 if (iomode == IO_OUTPUT)
3586 intmod = sym->from_intmod;
3587 mio_integer (&intmod);
3591 mio_integer (&intmod);
3592 sym->from_intmod = (intmod_id) intmod;
3595 mio_integer (&(sym->intmod_sym_id));
3597 if (sym->attr.flavor == FL_DERIVED)
3598 mio_integer (&(sym->hash_value));
3604 /************************* Top level subroutines *************************/
3606 /* Given a root symtree node and a symbol, try to find a symtree that
3607 references the symbol that is not a unique name. */
3609 static gfc_symtree *
3610 find_symtree_for_symbol (gfc_symtree *st, gfc_symbol *sym)
3612 gfc_symtree *s = NULL;
3617 s = find_symtree_for_symbol (st->right, sym);
3620 s = find_symtree_for_symbol (st->left, sym);
3624 if (st->n.sym == sym && !check_unique_name (st->name))
3631 /* A recursive function to look for a specific symbol by name and by
3632 module. Whilst several symtrees might point to one symbol, its
3633 is sufficient for the purposes here than one exist. Note that
3634 generic interfaces are distinguished as are symbols that have been
3635 renamed in another module. */
3636 static gfc_symtree *
3637 find_symbol (gfc_symtree *st, const char *name,
3638 const char *module, int generic)
3641 gfc_symtree *retval, *s;
3643 if (st == NULL || st->n.sym == NULL)
3646 c = strcmp (name, st->n.sym->name);
3647 if (c == 0 && st->n.sym->module
3648 && strcmp (module, st->n.sym->module) == 0
3649 && !check_unique_name (st->name))
3651 s = gfc_find_symtree (gfc_current_ns->sym_root, name);
3653 /* Detect symbols that are renamed by use association in another
3654 module by the absence of a symtree and null attr.use_rename,
3655 since the latter is not transmitted in the module file. */
3656 if (((!generic && !st->n.sym->attr.generic)
3657 || (generic && st->n.sym->attr.generic))
3658 && !(s == NULL && !st->n.sym->attr.use_rename))
3662 retval = find_symbol (st->left, name, module, generic);
3665 retval = find_symbol (st->right, name, module, generic);
3671 /* Skip a list between balanced left and right parens. */
3681 switch (parse_atom ())
3692 gfc_free (atom_string);
3704 /* Load operator interfaces from the module. Interfaces are unusual
3705 in that they attach themselves to existing symbols. */
3708 load_operator_interfaces (void)
3711 char name[GFC_MAX_SYMBOL_LEN + 1], module[GFC_MAX_SYMBOL_LEN + 1];
3713 pointer_info *pi = NULL;
3718 while (peek_atom () != ATOM_RPAREN)
3722 mio_internal_string (name);
3723 mio_internal_string (module);
3725 n = number_use_names (name, true);
3728 for (i = 1; i <= n; i++)
3730 /* Decide if we need to load this one or not. */
3731 p = find_use_name_n (name, &i, true);
3735 while (parse_atom () != ATOM_RPAREN);
3741 uop = gfc_get_uop (p);
3742 pi = mio_interface_rest (&uop->op);
3746 if (gfc_find_uop (p, NULL))
3748 uop = gfc_get_uop (p);
3749 uop->op = gfc_get_interface ();
3750 uop->op->where = gfc_current_locus;
3751 add_fixup (pi->integer, &uop->op->sym);
3760 /* Load interfaces from the module. Interfaces are unusual in that
3761 they attach themselves to existing symbols. */
3764 load_generic_interfaces (void)
3767 char name[GFC_MAX_SYMBOL_LEN + 1], module[GFC_MAX_SYMBOL_LEN + 1];
3769 gfc_interface *generic = NULL, *gen = NULL;
3771 bool ambiguous_set = false;
3775 while (peek_atom () != ATOM_RPAREN)
3779 mio_internal_string (name);
3780 mio_internal_string (module);
3782 n = number_use_names (name, false);
3783 renamed = n ? 1 : 0;
3786 for (i = 1; i <= n; i++)
3789 /* Decide if we need to load this one or not. */
3790 p = find_use_name_n (name, &i, false);
3792 st = find_symbol (gfc_current_ns->sym_root,
3793 name, module_name, 1);
3795 if (!p || gfc_find_symbol (p, NULL, 0, &sym))
3797 /* Skip the specific names for these cases. */
3798 while (i == 1 && parse_atom () != ATOM_RPAREN);
3803 /* If the symbol exists already and is being USEd without being
3804 in an ONLY clause, do not load a new symtree(11.3.2). */
3805 if (!only_flag && st)
3810 /* Make the symbol inaccessible if it has been added by a USE
3811 statement without an ONLY(11.3.2). */
3813 && !st->n.sym->attr.use_only
3814 && !st->n.sym->attr.use_rename
3815 && strcmp (st->n.sym->module, module_name) == 0)
3818 gfc_delete_symtree (&gfc_current_ns->sym_root, name);
3819 st = gfc_get_unique_symtree (gfc_current_ns);
3826 if (strcmp (st->name, p) != 0)
3828 st = gfc_new_symtree (&gfc_current_ns->sym_root, p);
3834 /* Since we haven't found a valid generic interface, we had
3838 gfc_get_symbol (p, NULL, &sym);
3839 sym->name = gfc_get_string (name);
3840 sym->module = gfc_get_string (module_name);
3841 sym->attr.flavor = FL_PROCEDURE;
3842 sym->attr.generic = 1;
3843 sym->attr.use_assoc = 1;
3848 /* Unless sym is a generic interface, this reference
3851 st = gfc_find_symtree (gfc_current_ns->sym_root, p);
3855 if (st && !sym->attr.generic
3858 && strcmp(module, sym->module))
3860 ambiguous_set = true;
3865 sym->attr.use_only = only_flag;
3866 sym->attr.use_rename = renamed;
3870 mio_interface_rest (&sym->generic);
3871 generic = sym->generic;
3873 else if (!sym->generic)
3875 sym->generic = generic;
3876 sym->attr.generic_copy = 1;
3879 /* If a procedure that is not generic has generic interfaces
3880 that include itself, it is generic! We need to take care
3881 to retain symbols ambiguous that were already so. */
3882 if (sym->attr.use_assoc
3883 && !sym->attr.generic
3884 && sym->attr.flavor == FL_PROCEDURE)
3886 for (gen = generic; gen; gen = gen->next)
3888 if (gen->sym == sym)
3890 sym->attr.generic = 1;
3905 /* Load common blocks. */
3910 char name[GFC_MAX_SYMBOL_LEN + 1];
3915 while (peek_atom () != ATOM_RPAREN)
3919 mio_internal_string (name);
3921 p = gfc_get_common (name, 1);
3923 mio_symbol_ref (&p->head);
3924 mio_integer (&flags);
3928 p->threadprivate = 1;
3931 /* Get whether this was a bind(c) common or not. */
3932 mio_integer (&p->is_bind_c);
3933 /* Get the binding label. */
3934 mio_internal_string (p->binding_label);
3943 /* Load equivalences. The flag in_load_equiv informs mio_expr_ref of this
3944 so that unused variables are not loaded and so that the expression can
3950 gfc_equiv *head, *tail, *end, *eq;
3954 in_load_equiv = true;
3956 end = gfc_current_ns->equiv;
3957 while (end != NULL && end->next != NULL)
3960 while (peek_atom () != ATOM_RPAREN) {
3964 while(peek_atom () != ATOM_RPAREN)
3967 head = tail = gfc_get_equiv ();
3970 tail->eq = gfc_get_equiv ();
3974 mio_pool_string (&tail->module);
3975 mio_expr (&tail->expr);
3978 /* Unused equivalence members have a unique name. In addition, it
3979 must be checked that the symbols are from the same module. */
3981 for (eq = head; eq; eq = eq->eq)
3983 if (eq->expr->symtree->n.sym->module
3984 && head->expr->symtree->n.sym->module
3985 && strcmp (head->expr->symtree->n.sym->module,
3986 eq->expr->symtree->n.sym->module) == 0
3987 && !check_unique_name (eq->expr->symtree->name))
3996 for (eq = head; eq; eq = head)
3999 gfc_free_expr (eq->expr);
4005 gfc_current_ns->equiv = head;
4016 in_load_equiv = false;
4020 /* This function loads the sym_root of f2k_derived with the extensions to
4021 the derived type. */
4023 load_derived_extensions (void)
4026 gfc_symbol *derived;
4030 char name[GFC_MAX_SYMBOL_LEN + 1];
4031 char module[GFC_MAX_SYMBOL_LEN + 1];
4035 while (peek_atom () != ATOM_RPAREN)
4038 mio_integer (&symbol);
4039 info = get_integer (symbol);
4040 derived = info->u.rsym.sym;
4042 /* This one is not being loaded. */
4043 if (!info || !derived)
4045 while (peek_atom () != ATOM_RPAREN)
4050 gcc_assert (derived->attr.flavor == FL_DERIVED);
4051 if (derived->f2k_derived == NULL)
4052 derived->f2k_derived = gfc_get_namespace (NULL, 0);
4054 while (peek_atom () != ATOM_RPAREN)
4057 mio_internal_string (name);
4058 mio_internal_string (module);
4060 /* Only use one use name to find the symbol. */
4062 p = find_use_name_n (name, &j, false);
4065 st = gfc_find_symtree (gfc_current_ns->sym_root, p);
4067 st = gfc_find_symtree (derived->f2k_derived->sym_root, name);
4070 /* Only use the real name in f2k_derived to ensure a single
4072 st = gfc_new_symtree (&derived->f2k_derived->sym_root, name);
4085 /* Recursive function to traverse the pointer_info tree and load a
4086 needed symbol. We return nonzero if we load a symbol and stop the
4087 traversal, because the act of loading can alter the tree. */
4090 load_needed (pointer_info *p)
4101 rv |= load_needed (p->left);
4102 rv |= load_needed (p->right);
4104 if (p->type != P_SYMBOL || p->u.rsym.state != NEEDED)
4107 p->u.rsym.state = USED;
4109 set_module_locus (&p->u.rsym.where);
4111 sym = p->u.rsym.sym;
4114 q = get_integer (p->u.rsym.ns);
4116 ns = (gfc_namespace *) q->u.pointer;
4119 /* Create an interface namespace if necessary. These are
4120 the namespaces that hold the formal parameters of module
4123 ns = gfc_get_namespace (NULL, 0);
4124 associate_integer_pointer (q, ns);
4127 /* Use the module sym as 'proc_name' so that gfc_get_symbol_decl
4128 doesn't go pear-shaped if the symbol is used. */
4130 gfc_find_symbol (p->u.rsym.module, gfc_current_ns,
4133 sym = gfc_new_symbol (p->u.rsym.true_name, ns);
4134 sym->module = gfc_get_string (p->u.rsym.module);
4135 strcpy (sym->binding_label, p->u.rsym.binding_label);
4137 associate_integer_pointer (p, sym);
4141 sym->attr.use_assoc = 1;
4143 sym->attr.use_only = 1;
4144 if (p->u.rsym.renamed)
4145 sym->attr.use_rename = 1;
4151 /* Recursive function for cleaning up things after a module has been read. */
4154 read_cleanup (pointer_info *p)
4162 read_cleanup (p->left);
4163 read_cleanup (p->right);
4165 if (p->type == P_SYMBOL && p->u.rsym.state == USED && !p->u.rsym.referenced)
4167 /* Add hidden symbols to the symtree. */
4168 q = get_integer (p->u.rsym.ns);
4169 st = gfc_get_unique_symtree ((gfc_namespace *) q->u.pointer);
4171 st->n.sym = p->u.rsym.sym;
4174 /* Fixup any symtree references. */
4175 p->u.rsym.symtree = st;
4176 resolve_fixups (p->u.rsym.stfixup, st);
4177 p->u.rsym.stfixup = NULL;
4180 /* Free unused symbols. */
4181 if (p->type == P_SYMBOL && p->u.rsym.state == UNUSED)
4182 gfc_free_symbol (p->u.rsym.sym);
4186 /* It is not quite enough to check for ambiguity in the symbols by
4187 the loaded symbol and the new symbol not being identical. */
4189 check_for_ambiguous (gfc_symbol *st_sym, pointer_info *info)
4193 symbol_attribute attr;
4195 rsym = info->u.rsym.sym;
4199 /* If the existing symbol is generic from a different module and
4200 the new symbol is generic there can be no ambiguity. */
4201 if (st_sym->attr.generic
4203 && strcmp (st_sym->module, module_name))
4205 /* The new symbol's attributes have not yet been read. Since
4206 we need attr.generic, read it directly. */
4207 get_module_locus (&locus);
4208 set_module_locus (&info->u.rsym.where);
4211 mio_symbol_attribute (&attr);
4212 set_module_locus (&locus);
4221 /* Read a module file. */
4226 module_locus operator_interfaces, user_operators, extensions;
4228 char name[GFC_MAX_SYMBOL_LEN + 1];
4230 int ambiguous, j, nuse, symbol;
4231 pointer_info *info, *q;
4236 get_module_locus (&operator_interfaces); /* Skip these for now. */
4239 get_module_locus (&user_operators);
4243 /* Skip commons, equivalences and derived type extensions for now. */
4247 get_module_locus (&extensions);
4252 /* Create the fixup nodes for all the symbols. */
4254 while (peek_atom () != ATOM_RPAREN)
4256 require_atom (ATOM_INTEGER);
4257 info = get_integer (atom_int);
4259 info->type = P_SYMBOL;
4260 info->u.rsym.state = UNUSED;
4262 mio_internal_string (info->u.rsym.true_name);
4263 mio_internal_string (info->u.rsym.module);
4264 mio_internal_string (info->u.rsym.binding_label);
4267 require_atom (ATOM_INTEGER);
4268 info->u.rsym.ns = atom_int;
4270 get_module_locus (&info->u.rsym.where);
4273 /* See if the symbol has already been loaded by a previous module.
4274 If so, we reference the existing symbol and prevent it from
4275 being loaded again. This should not happen if the symbol being
4276 read is an index for an assumed shape dummy array (ns != 1). */
4278 sym = find_true_name (info->u.rsym.true_name, info->u.rsym.module);
4281 || (sym->attr.flavor == FL_VARIABLE && info->u.rsym.ns !=1))
4284 info->u.rsym.state = USED;
4285 info->u.rsym.sym = sym;
4287 /* Some symbols do not have a namespace (eg. formal arguments),
4288 so the automatic "unique symtree" mechanism must be suppressed
4289 by marking them as referenced. */
4290 q = get_integer (info->u.rsym.ns);
4291 if (q->u.pointer == NULL)
4293 info->u.rsym.referenced = 1;
4297 /* If possible recycle the symtree that references the symbol.
4298 If a symtree is not found and the module does not import one,
4299 a unique-name symtree is found by read_cleanup. */
4300 st = find_symtree_for_symbol (gfc_current_ns->sym_root, sym);
4303 info->u.rsym.symtree = st;
4304 info->u.rsym.referenced = 1;
4310 /* Parse the symtree lists. This lets us mark which symbols need to
4311 be loaded. Renaming is also done at this point by replacing the
4316 while (peek_atom () != ATOM_RPAREN)
4318 mio_internal_string (name);
4319 mio_integer (&ambiguous);
4320 mio_integer (&symbol);
4322 info = get_integer (symbol);
4324 /* See how many use names there are. If none, go through the start
4325 of the loop at least once. */
4326 nuse = number_use_names (name, false);
4327 info->u.rsym.renamed = nuse ? 1 : 0;
4332 for (j = 1; j <= nuse; j++)
4334 /* Get the jth local name for this symbol. */
4335 p = find_use_name_n (name, &j, false);
4337 if (p == NULL && strcmp (name, module_name) == 0)
4340 /* Skip symtree nodes not in an ONLY clause, unless there
4341 is an existing symtree loaded from another USE statement. */
4344 st = gfc_find_symtree (gfc_current_ns->sym_root, name);
4346 info->u.rsym.symtree = st;
4350 /* If a symbol of the same name and module exists already,
4351 this symbol, which is not in an ONLY clause, must not be
4352 added to the namespace(11.3.2). Note that find_symbol
4353 only returns the first occurrence that it finds. */
4354 if (!only_flag && !info->u.rsym.renamed
4355 && strcmp (name, module_name) != 0
4356 && find_symbol (gfc_current_ns->sym_root, name,
4360 st = gfc_find_symtree (gfc_current_ns->sym_root, p);
4364 /* Check for ambiguous symbols. */
4365 if (check_for_ambiguous (st->n.sym, info))
4367 info->u.rsym.symtree = st;
4371 st = gfc_find_symtree (gfc_current_ns->sym_root, name);
4373 /* Delete the symtree if the symbol has been added by a USE
4374 statement without an ONLY(11.3.2). Remember that the rsym
4375 will be the same as the symbol found in the symtree, for
4377 if (st && (only_flag || info->u.rsym.renamed)
4378 && !st->n.sym->attr.use_only
4379 && !st->n.sym->attr.use_rename
4380 && info->u.rsym.sym == st->n.sym)
4381 gfc_delete_symtree (&gfc_current_ns->sym_root, name);
4383 /* Create a symtree node in the current namespace for this
4385 st = check_unique_name (p)
4386 ? gfc_get_unique_symtree (gfc_current_ns)
4387 : gfc_new_symtree (&gfc_current_ns->sym_root, p);
4388 st->ambiguous = ambiguous;
4390 sym = info->u.rsym.sym;
4392 /* Create a symbol node if it doesn't already exist. */
4395 info->u.rsym.sym = gfc_new_symbol (info->u.rsym.true_name,
4397 sym = info->u.rsym.sym;
4398 sym->module = gfc_get_string (info->u.rsym.module);
4400 /* TODO: hmm, can we test this? Do we know it will be
4401 initialized to zeros? */
4402 if (info->u.rsym.binding_label[0] != '\0')
4403 strcpy (sym->binding_label, info->u.rsym.binding_label);
4409 if (strcmp (name, p) != 0)
4410 sym->attr.use_rename = 1;
4412 /* We need to set the only_flag here so that symbols from the