re PR testsuite/40567 (Revision 149002 caused many failures)
[official-gcc.git] / gcc / fortran / module.c
blob15b1b5da6c806b1cf08669809ac862b0fad42d9e
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, 2009
4 Free Software Foundation, Inc.
5 Contributed by Andy Vaught
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 /* The syntax of gfortran modules resembles that of lisp lists, i.e. a
24 sequence of atoms, which can be left or right parenthesis, names,
25 integers or strings. Parenthesis are always matched which allows
26 us to skip over sections at high speed without having to know
27 anything about the internal structure of the lists. A "name" is
28 usually a fortran 95 identifier, but can also start with '@' in
29 order to reference a hidden symbol.
31 The first line of a module is an informational message about what
32 created the module, the file it came from and when it was created.
33 The second line is a warning for people not to edit the module.
34 The rest of the module looks like:
36 ( ( <Interface info for UPLUS> )
37 ( <Interface info for UMINUS> )
38 ...
40 ( ( <name of operator interface> <module of op interface> <i/f1> ... )
41 ...
43 ( ( <name of generic interface> <module of generic interface> <i/f1> ... )
44 ...
46 ( ( <common name> <symbol> <saved flag>)
47 ...
50 ( equivalence list )
52 ( <Symbol Number (in no particular order)>
53 <True name of symbol>
54 <Module name of symbol>
55 ( <symbol information> )
56 ...
58 ( <Symtree name>
59 <Ambiguous flag>
60 <Symbol number>
61 ...
64 In general, symbols refer to other symbols by their symbol number,
65 which are zero based. Symbols are written to the module in no
66 particular order. */
68 #include "config.h"
69 #include "system.h"
70 #include "gfortran.h"
71 #include "arith.h"
72 #include "match.h"
73 #include "parse.h" /* FIXME */
74 #include "md5.h"
76 #define MODULE_EXTENSION ".mod"
78 /* Don't put any single quote (') in MOD_VERSION,
79 if yout want it to be recognized. */
80 #define MOD_VERSION "1"
83 /* Structure that describes a position within a module file. */
85 typedef struct
87 int column, line;
88 fpos_t pos;
90 module_locus;
92 /* Structure for list of symbols of intrinsic modules. */
93 typedef struct
95 int id;
96 const char *name;
97 int value;
98 int standard;
100 intmod_sym;
103 typedef enum
105 P_UNKNOWN = 0, P_OTHER, P_NAMESPACE, P_COMPONENT, P_SYMBOL
107 pointer_t;
109 /* The fixup structure lists pointers to pointers that have to
110 be updated when a pointer value becomes known. */
112 typedef struct fixup_t
114 void **pointer;
115 struct fixup_t *next;
117 fixup_t;
120 /* Structure for holding extra info needed for pointers being read. */
122 enum gfc_rsym_state
124 UNUSED,
125 NEEDED,
126 USED
129 enum gfc_wsym_state
131 UNREFERENCED = 0,
132 NEEDS_WRITE,
133 WRITTEN
136 typedef struct pointer_info
138 BBT_HEADER (pointer_info);
139 int integer;
140 pointer_t type;
142 /* The first component of each member of the union is the pointer
143 being stored. */
145 fixup_t *fixup;
147 union
149 void *pointer; /* Member for doing pointer searches. */
151 struct
153 gfc_symbol *sym;
154 char true_name[GFC_MAX_SYMBOL_LEN + 1], module[GFC_MAX_SYMBOL_LEN + 1];
155 enum gfc_rsym_state state;
156 int ns, referenced, renamed;
157 module_locus where;
158 fixup_t *stfixup;
159 gfc_symtree *symtree;
160 char binding_label[GFC_MAX_SYMBOL_LEN + 1];
162 rsym;
164 struct
166 gfc_symbol *sym;
167 enum gfc_wsym_state state;
169 wsym;
174 pointer_info;
176 #define gfc_get_pointer_info() XCNEW (pointer_info)
179 /* Local variables */
181 /* The FILE for the module we're reading or writing. */
182 static FILE *module_fp;
184 /* MD5 context structure. */
185 static struct md5_ctx ctx;
187 /* The name of the module we're reading (USE'ing) or writing. */
188 static char module_name[GFC_MAX_SYMBOL_LEN + 1];
190 /* The way the module we're reading was specified. */
191 static bool specified_nonint, specified_int;
193 static int module_line, module_column, only_flag;
194 static enum
195 { IO_INPUT, IO_OUTPUT }
196 iomode;
198 static gfc_use_rename *gfc_rename_list;
199 static pointer_info *pi_root;
200 static int symbol_number; /* Counter for assigning symbol numbers */
202 /* Tells mio_expr_ref to make symbols for unused equivalence members. */
203 static bool in_load_equiv;
205 static locus use_locus;
209 /*****************************************************************/
211 /* Pointer/integer conversion. Pointers between structures are stored
212 as integers in the module file. The next couple of subroutines
213 handle this translation for reading and writing. */
215 /* Recursively free the tree of pointer structures. */
217 static void
218 free_pi_tree (pointer_info *p)
220 if (p == NULL)
221 return;
223 if (p->fixup != NULL)
224 gfc_internal_error ("free_pi_tree(): Unresolved fixup");
226 free_pi_tree (p->left);
227 free_pi_tree (p->right);
229 gfc_free (p);
233 /* Compare pointers when searching by pointer. Used when writing a
234 module. */
236 static int
237 compare_pointers (void *_sn1, void *_sn2)
239 pointer_info *sn1, *sn2;
241 sn1 = (pointer_info *) _sn1;
242 sn2 = (pointer_info *) _sn2;
244 if (sn1->u.pointer < sn2->u.pointer)
245 return -1;
246 if (sn1->u.pointer > sn2->u.pointer)
247 return 1;
249 return 0;
253 /* Compare integers when searching by integer. Used when reading a
254 module. */
256 static int
257 compare_integers (void *_sn1, void *_sn2)
259 pointer_info *sn1, *sn2;
261 sn1 = (pointer_info *) _sn1;
262 sn2 = (pointer_info *) _sn2;
264 if (sn1->integer < sn2->integer)
265 return -1;
266 if (sn1->integer > sn2->integer)
267 return 1;
269 return 0;
273 /* Initialize the pointer_info tree. */
275 static void
276 init_pi_tree (void)
278 compare_fn compare;
279 pointer_info *p;
281 pi_root = NULL;
282 compare = (iomode == IO_INPUT) ? compare_integers : compare_pointers;
284 /* Pointer 0 is the NULL pointer. */
285 p = gfc_get_pointer_info ();
286 p->u.pointer = NULL;
287 p->integer = 0;
288 p->type = P_OTHER;
290 gfc_insert_bbt (&pi_root, p, compare);
292 /* Pointer 1 is the current namespace. */
293 p = gfc_get_pointer_info ();
294 p->u.pointer = gfc_current_ns;
295 p->integer = 1;
296 p->type = P_NAMESPACE;
298 gfc_insert_bbt (&pi_root, p, compare);
300 symbol_number = 2;
304 /* During module writing, call here with a pointer to something,
305 returning the pointer_info node. */
307 static pointer_info *
308 find_pointer (void *gp)
310 pointer_info *p;
312 p = pi_root;
313 while (p != NULL)
315 if (p->u.pointer == gp)
316 break;
317 p = (gp < p->u.pointer) ? p->left : p->right;
320 return p;
324 /* Given a pointer while writing, returns the pointer_info tree node,
325 creating it if it doesn't exist. */
327 static pointer_info *
328 get_pointer (void *gp)
330 pointer_info *p;
332 p = find_pointer (gp);
333 if (p != NULL)
334 return p;
336 /* Pointer doesn't have an integer. Give it one. */
337 p = gfc_get_pointer_info ();
339 p->u.pointer = gp;
340 p->integer = symbol_number++;
342 gfc_insert_bbt (&pi_root, p, compare_pointers);
344 return p;
348 /* Given an integer during reading, find it in the pointer_info tree,
349 creating the node if not found. */
351 static pointer_info *
352 get_integer (int integer)
354 pointer_info *p, t;
355 int c;
357 t.integer = integer;
359 p = pi_root;
360 while (p != NULL)
362 c = compare_integers (&t, p);
363 if (c == 0)
364 break;
366 p = (c < 0) ? p->left : p->right;
369 if (p != NULL)
370 return p;
372 p = gfc_get_pointer_info ();
373 p->integer = integer;
374 p->u.pointer = NULL;
376 gfc_insert_bbt (&pi_root, p, compare_integers);
378 return p;
382 /* Recursive function to find a pointer within a tree by brute force. */
384 static pointer_info *
385 fp2 (pointer_info *p, const void *target)
387 pointer_info *q;
389 if (p == NULL)
390 return NULL;
392 if (p->u.pointer == target)
393 return p;
395 q = fp2 (p->left, target);
396 if (q != NULL)
397 return q;
399 return fp2 (p->right, target);
403 /* During reading, find a pointer_info node from the pointer value.
404 This amounts to a brute-force search. */
406 static pointer_info *
407 find_pointer2 (void *p)
409 return fp2 (pi_root, p);
413 /* Resolve any fixups using a known pointer. */
415 static void
416 resolve_fixups (fixup_t *f, void *gp)
418 fixup_t *next;
420 for (; f; f = next)
422 next = f->next;
423 *(f->pointer) = gp;
424 gfc_free (f);
429 /* Call here during module reading when we know what pointer to
430 associate with an integer. Any fixups that exist are resolved at
431 this time. */
433 static void
434 associate_integer_pointer (pointer_info *p, void *gp)
436 if (p->u.pointer != NULL)
437 gfc_internal_error ("associate_integer_pointer(): Already associated");
439 p->u.pointer = gp;
441 resolve_fixups (p->fixup, gp);
443 p->fixup = NULL;
447 /* During module reading, given an integer and a pointer to a pointer,
448 either store the pointer from an already-known value or create a
449 fixup structure in order to store things later. Returns zero if
450 the reference has been actually stored, or nonzero if the reference
451 must be fixed later (i.e., associate_integer_pointer must be called
452 sometime later. Returns the pointer_info structure. */
454 static pointer_info *
455 add_fixup (int integer, void *gp)
457 pointer_info *p;
458 fixup_t *f;
459 char **cp;
461 p = get_integer (integer);
463 if (p->integer == 0 || p->u.pointer != NULL)
465 cp = (char **) gp;
466 *cp = (char *) p->u.pointer;
468 else
470 f = XCNEW (fixup_t);
472 f->next = p->fixup;
473 p->fixup = f;
475 f->pointer = (void **) gp;
478 return p;
482 /*****************************************************************/
484 /* Parser related subroutines */
486 /* Free the rename list left behind by a USE statement. */
488 static void
489 free_rename (void)
491 gfc_use_rename *next;
493 for (; gfc_rename_list; gfc_rename_list = next)
495 next = gfc_rename_list->next;
496 gfc_free (gfc_rename_list);
501 /* Match a USE statement. */
503 match
504 gfc_match_use (void)
506 char name[GFC_MAX_SYMBOL_LEN + 1], module_nature[GFC_MAX_SYMBOL_LEN + 1];
507 gfc_use_rename *tail = NULL, *new_use;
508 interface_type type, type2;
509 gfc_intrinsic_op op;
510 match m;
512 specified_int = false;
513 specified_nonint = false;
515 if (gfc_match (" , ") == MATCH_YES)
517 if ((m = gfc_match (" %n ::", module_nature)) == MATCH_YES)
519 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: module "
520 "nature in USE statement at %C") == FAILURE)
521 return MATCH_ERROR;
523 if (strcmp (module_nature, "intrinsic") == 0)
524 specified_int = true;
525 else
527 if (strcmp (module_nature, "non_intrinsic") == 0)
528 specified_nonint = true;
529 else
531 gfc_error ("Module nature in USE statement at %C shall "
532 "be either INTRINSIC or NON_INTRINSIC");
533 return MATCH_ERROR;
537 else
539 /* Help output a better error message than "Unclassifiable
540 statement". */
541 gfc_match (" %n", module_nature);
542 if (strcmp (module_nature, "intrinsic") == 0
543 || strcmp (module_nature, "non_intrinsic") == 0)
544 gfc_error ("\"::\" was expected after module nature at %C "
545 "but was not found");
546 return m;
549 else
551 m = gfc_match (" ::");
552 if (m == MATCH_YES &&
553 gfc_notify_std (GFC_STD_F2003, "Fortran 2003: "
554 "\"USE :: module\" at %C") == FAILURE)
555 return MATCH_ERROR;
557 if (m != MATCH_YES)
559 m = gfc_match ("% ");
560 if (m != MATCH_YES)
561 return m;
565 use_locus = gfc_current_locus;
567 m = gfc_match_name (module_name);
568 if (m != MATCH_YES)
569 return m;
571 free_rename ();
572 only_flag = 0;
574 if (gfc_match_eos () == MATCH_YES)
575 return MATCH_YES;
576 if (gfc_match_char (',') != MATCH_YES)
577 goto syntax;
579 if (gfc_match (" only :") == MATCH_YES)
580 only_flag = 1;
582 if (gfc_match_eos () == MATCH_YES)
583 return MATCH_YES;
585 for (;;)
587 /* Get a new rename struct and add it to the rename list. */
588 new_use = gfc_get_use_rename ();
589 new_use->where = gfc_current_locus;
590 new_use->found = 0;
592 if (gfc_rename_list == NULL)
593 gfc_rename_list = new_use;
594 else
595 tail->next = new_use;
596 tail = new_use;
598 /* See what kind of interface we're dealing with. Assume it is
599 not an operator. */
600 new_use->op = INTRINSIC_NONE;
601 if (gfc_match_generic_spec (&type, name, &op) == MATCH_ERROR)
602 goto cleanup;
604 switch (type)
606 case INTERFACE_NAMELESS:
607 gfc_error ("Missing generic specification in USE statement at %C");
608 goto cleanup;
610 case INTERFACE_USER_OP:
611 case INTERFACE_GENERIC:
612 m = gfc_match (" =>");
614 if (type == INTERFACE_USER_OP && m == MATCH_YES
615 && (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: Renaming "
616 "operators in USE statements at %C")
617 == FAILURE))
618 goto cleanup;
620 if (type == INTERFACE_USER_OP)
621 new_use->op = INTRINSIC_USER;
623 if (only_flag)
625 if (m != MATCH_YES)
626 strcpy (new_use->use_name, name);
627 else
629 strcpy (new_use->local_name, name);
630 m = gfc_match_generic_spec (&type2, new_use->use_name, &op);
631 if (type != type2)
632 goto syntax;
633 if (m == MATCH_NO)
634 goto syntax;
635 if (m == MATCH_ERROR)
636 goto cleanup;
639 else
641 if (m != MATCH_YES)
642 goto syntax;
643 strcpy (new_use->local_name, name);
645 m = gfc_match_generic_spec (&type2, new_use->use_name, &op);
646 if (type != type2)
647 goto syntax;
648 if (m == MATCH_NO)
649 goto syntax;
650 if (m == MATCH_ERROR)
651 goto cleanup;
654 if (strcmp (new_use->use_name, module_name) == 0
655 || strcmp (new_use->local_name, module_name) == 0)
657 gfc_error ("The name '%s' at %C has already been used as "
658 "an external module name.", module_name);
659 goto cleanup;
661 break;
663 case INTERFACE_INTRINSIC_OP:
664 new_use->op = op;
665 break;
667 default:
668 gcc_unreachable ();
671 if (gfc_match_eos () == MATCH_YES)
672 break;
673 if (gfc_match_char (',') != MATCH_YES)
674 goto syntax;
677 return MATCH_YES;
679 syntax:
680 gfc_syntax_error (ST_USE);
682 cleanup:
683 free_rename ();
684 return MATCH_ERROR;
688 /* Given a name and a number, inst, return the inst name
689 under which to load this symbol. Returns NULL if this
690 symbol shouldn't be loaded. If inst is zero, returns
691 the number of instances of this name. If interface is
692 true, a user-defined operator is sought, otherwise only
693 non-operators are sought. */
695 static const char *
696 find_use_name_n (const char *name, int *inst, bool interface)
698 gfc_use_rename *u;
699 int i;
701 i = 0;
702 for (u = gfc_rename_list; u; u = u->next)
704 if (strcmp (u->use_name, name) != 0
705 || (u->op == INTRINSIC_USER && !interface)
706 || (u->op != INTRINSIC_USER && interface))
707 continue;
708 if (++i == *inst)
709 break;
712 if (!*inst)
714 *inst = i;
715 return NULL;
718 if (u == NULL)
719 return only_flag ? NULL : name;
721 u->found = 1;
723 return (u->local_name[0] != '\0') ? u->local_name : name;
727 /* Given a name, return the name under which to load this symbol.
728 Returns NULL if this symbol shouldn't be loaded. */
730 static const char *
731 find_use_name (const char *name, bool interface)
733 int i = 1;
734 return find_use_name_n (name, &i, interface);
738 /* Given a real name, return the number of use names associated with it. */
740 static int
741 number_use_names (const char *name, bool interface)
743 int i = 0;
744 const char *c;
745 c = find_use_name_n (name, &i, interface);
746 return i;
750 /* Try to find the operator in the current list. */
752 static gfc_use_rename *
753 find_use_operator (gfc_intrinsic_op op)
755 gfc_use_rename *u;
757 for (u = gfc_rename_list; u; u = u->next)
758 if (u->op == op)
759 return u;
761 return NULL;
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);
781 gfc_symbol *sym;
783 true_name;
785 static true_name *true_name_root;
788 /* Compare two true_name structures. */
790 static int
791 compare_true_names (void *_t1, void *_t2)
793 true_name *t1, *t2;
794 int c;
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));
801 if (c != 0)
802 return c;
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. */
811 static gfc_symbol *
812 find_true_name (const char *name, const char *module)
814 true_name t, *p;
815 gfc_symbol sym;
816 int c;
818 sym.name = gfc_get_string (name);
819 if (module != NULL)
820 sym.module = gfc_get_string (module);
821 else
822 sym.module = NULL;
823 t.sym = &sym;
825 p = true_name_root;
826 while (p != NULL)
828 c = compare_true_names ((void *) (&t), (void *) p);
829 if (c == 0)
830 return p->sym;
832 p = (c < 0) ? p->left : p->right;
835 return NULL;
839 /* Given a gfc_symbol pointer that is not in the true name tree, add it. */
841 static void
842 add_true_name (gfc_symbol *sym)
844 true_name *t;
846 t = XCNEW (true_name);
847 t->sym = sym;
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. */
856 static void
857 build_tnt (gfc_symtree *st)
859 if (st == NULL)
860 return;
862 build_tnt (st->left);
863 build_tnt (st->right);
865 if (find_true_name (st->n.sym->name, st->n.sym->module) != NULL)
866 return;
868 add_true_name (st->n.sym);
872 /* Initialize the true name tree with the current namespace. */
874 static void
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. */
884 static void
885 free_true_name (true_name *t)
887 if (t == NULL)
888 return;
889 free_true_name (t->left);
890 free_true_name (t->right);
892 gfc_free (t);
896 /*****************************************************************/
898 /* Module reading and writing. */
900 typedef enum
902 ATOM_NAME, ATOM_LPAREN, ATOM_RPAREN, ATOM_INTEGER, ATOM_STRING
904 atom_type;
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
917 static int atom_int;
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;
927 static void
928 bad_module (const char *msgid)
930 fclose (module_fp);
932 switch (iomode)
934 case IO_INPUT:
935 gfc_fatal_error ("Reading module %s at line %d column %d: %s",
936 module_name, module_line, module_column, msgid);
937 break;
938 case IO_OUTPUT:
939 gfc_fatal_error ("Writing module %s at line %d column %d: %s",
940 module_name, module_line, module_column, msgid);
941 break;
942 default:
943 gfc_fatal_error ("Module %s at line %d column %d: %s",
944 module_name, module_line, module_column, msgid);
945 break;
950 /* Set the module's input pointer. */
952 static void
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. */
963 static void
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
973 where we are. */
975 static int
976 module_char (void)
978 int c;
980 c = getc (module_fp);
982 if (c == EOF)
983 bad_module ("Unexpected EOF");
985 if (c == '\n')
987 module_line++;
988 module_column = 0;
991 module_column++;
992 return c;
996 /* Parse a string constant. The delimiter is guaranteed to be a
997 single quote. */
999 static void
1000 parse_string (void)
1002 module_locus start;
1003 int len, c;
1004 char *p;
1006 get_module_locus (&start);
1008 len = 0;
1010 /* See how long the string is. */
1011 for ( ; ; )
1013 c = module_char ();
1014 if (c == EOF)
1015 bad_module ("Unexpected end of module in string constant");
1017 if (c != '\'')
1019 len++;
1020 continue;
1023 c = module_char ();
1024 if (c == '\'')
1026 len++;
1027 continue;
1030 break;
1033 set_module_locus (&start);
1035 atom_string = p = XCNEWVEC (char, len + 1);
1037 for (; len > 0; len--)
1039 c = module_char ();
1040 if (c == '\'')
1041 module_char (); /* Guaranteed to be another \'. */
1042 *p++ = c;
1045 module_char (); /* Terminating \'. */
1046 *p = '\0'; /* C-style string for debug purposes. */
1050 /* Parse a small integer. */
1052 static void
1053 parse_integer (int c)
1055 module_locus m;
1057 atom_int = c - '0';
1059 for (;;)
1061 get_module_locus (&m);
1063 c = module_char ();
1064 if (!ISDIGIT (c))
1065 break;
1067 atom_int = 10 * atom_int + c - '0';
1068 if (atom_int > 99999999)
1069 bad_module ("Integer overflow");
1072 set_module_locus (&m);
1076 /* Parse a name. */
1078 static void
1079 parse_name (int c)
1081 module_locus m;
1082 char *p;
1083 int len;
1085 p = atom_name;
1087 *p++ = c;
1088 len = 1;
1090 get_module_locus (&m);
1092 for (;;)
1094 c = module_char ();
1095 if (!ISALNUM (c) && c != '_' && c != '-')
1096 break;
1098 *p++ = c;
1099 if (++len > GFC_MAX_SYMBOL_LEN)
1100 bad_module ("Name too long");
1103 *p = '\0';
1105 fseek (module_fp, -1, SEEK_CUR);
1106 module_column = m.column + len - 1;
1108 if (c == '\n')
1109 module_line--;
1113 /* Read the next atom in the module's input stream. */
1115 static atom_type
1116 parse_atom (void)
1118 int c;
1122 c = module_char ();
1124 while (c == ' ' || c == '\r' || c == '\n');
1126 switch (c)
1128 case '(':
1129 return ATOM_LPAREN;
1131 case ')':
1132 return ATOM_RPAREN;
1134 case '\'':
1135 parse_string ();
1136 return ATOM_STRING;
1138 case '0':
1139 case '1':
1140 case '2':
1141 case '3':
1142 case '4':
1143 case '5':
1144 case '6':
1145 case '7':
1146 case '8':
1147 case '9':
1148 parse_integer (c);
1149 return ATOM_INTEGER;
1151 case 'a':
1152 case 'b':
1153 case 'c':
1154 case 'd':
1155 case 'e':
1156 case 'f':
1157 case 'g':
1158 case 'h':
1159 case 'i':
1160 case 'j':
1161 case 'k':
1162 case 'l':
1163 case 'm':
1164 case 'n':
1165 case 'o':
1166 case 'p':
1167 case 'q':
1168 case 'r':
1169 case 's':
1170 case 't':
1171 case 'u':
1172 case 'v':
1173 case 'w':
1174 case 'x':
1175 case 'y':
1176 case 'z':
1177 case 'A':
1178 case 'B':
1179 case 'C':
1180 case 'D':
1181 case 'E':
1182 case 'F':
1183 case 'G':
1184 case 'H':
1185 case 'I':
1186 case 'J':
1187 case 'K':
1188 case 'L':
1189 case 'M':
1190 case 'N':
1191 case 'O':
1192 case 'P':
1193 case 'Q':
1194 case 'R':
1195 case 'S':
1196 case 'T':
1197 case 'U':
1198 case 'V':
1199 case 'W':
1200 case 'X':
1201 case 'Y':
1202 case 'Z':
1203 parse_name (c);
1204 return ATOM_NAME;
1206 default:
1207 bad_module ("Bad name");
1210 /* Not reached. */
1214 /* Peek at the next atom on the input. */
1216 static atom_type
1217 peek_atom (void)
1219 module_locus m;
1220 atom_type a;
1222 get_module_locus (&m);
1224 a = parse_atom ();
1225 if (a == ATOM_STRING)
1226 gfc_free (atom_string);
1228 set_module_locus (&m);
1229 return a;
1233 /* Read the next atom from the input, requiring that it be a
1234 particular kind. */
1236 static void
1237 require_atom (atom_type type)
1239 module_locus m;
1240 atom_type t;
1241 const char *p;
1243 get_module_locus (&m);
1245 t = parse_atom ();
1246 if (t != type)
1248 switch (type)
1250 case ATOM_NAME:
1251 p = _("Expected name");
1252 break;
1253 case ATOM_LPAREN:
1254 p = _("Expected left parenthesis");
1255 break;
1256 case ATOM_RPAREN:
1257 p = _("Expected right parenthesis");
1258 break;
1259 case ATOM_INTEGER:
1260 p = _("Expected integer");
1261 break;
1262 case ATOM_STRING:
1263 p = _("Expected string");
1264 break;
1265 default:
1266 gfc_internal_error ("require_atom(): bad atom type required");
1269 set_module_locus (&m);
1270 bad_module (p);
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. */
1278 static int
1279 find_enum (const mstring *m)
1281 int i;
1283 i = gfc_string2code (m, atom_name);
1284 if (i >= 0)
1285 return i;
1287 bad_module ("find_enum(): Enum not found");
1289 /* Not reached. */
1293 /**************** Module output subroutines ***************************/
1295 /* Output a character to a module file. */
1297 static void
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);
1306 if (out != '\n')
1307 module_column++;
1308 else
1310 module_column = 1;
1311 module_line++;
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. */
1320 static void
1321 write_atom (atom_type atom, const void *v)
1323 char buffer[20];
1324 int i, len;
1325 const char *p;
1327 switch (atom)
1329 case ATOM_STRING:
1330 case ATOM_NAME:
1331 p = (const char *) v;
1332 break;
1334 case ATOM_LPAREN:
1335 p = "(";
1336 break;
1338 case ATOM_RPAREN:
1339 p = ")";
1340 break;
1342 case ATOM_INTEGER:
1343 i = *((const int *) v);
1344 if (i < 0)
1345 gfc_internal_error ("write_atom(): Writing negative integer");
1347 sprintf (buffer, "%d", i);
1348 p = buffer;
1349 break;
1351 default:
1352 gfc_internal_error ("write_atom(): Trying to write dab atom");
1356 if(p == NULL || *p == '\0')
1357 len = 0;
1358 else
1359 len = strlen (p);
1361 if (atom != ATOM_RPAREN)
1363 if (module_column + len > 72)
1364 write_char ('\n');
1365 else
1368 if (last_atom != ATOM_LPAREN && module_column != 1)
1369 write_char (' ');
1373 if (atom == ATOM_STRING)
1374 write_char ('\'');
1376 while (p != NULL && *p)
1378 if (atom == ATOM_STRING && *p == '\'')
1379 write_char ('\'');
1380 write_char (*p++);
1383 if (atom == ATOM_STRING)
1384 write_char ('\'');
1386 last_atom = atom;
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
1396 written. */
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. */
1407 static int
1408 mio_name (int t, const mstring *m)
1410 if (iomode == IO_OUTPUT)
1411 write_atom (ATOM_NAME, gfc_code2string (m, t));
1412 else
1414 require_atom (ATOM_NAME);
1415 t = find_enum (m);
1418 return t;
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
1431 static void
1432 mio_lparen (void)
1434 if (iomode == IO_OUTPUT)
1435 write_atom (ATOM_LPAREN, NULL);
1436 else
1437 require_atom (ATOM_LPAREN);
1441 static void
1442 mio_rparen (void)
1444 if (iomode == IO_OUTPUT)
1445 write_atom (ATOM_RPAREN, NULL);
1446 else
1447 require_atom (ATOM_RPAREN);
1451 static void
1452 mio_integer (int *ip)
1454 if (iomode == IO_OUTPUT)
1455 write_atom (ATOM_INTEGER, ip);
1456 else
1458 require_atom (ATOM_INTEGER);
1459 *ip = atom_int;
1464 /* Read or write a character pointer that points to a string on the heap. */
1466 static const char *
1467 mio_allocated_string (const char *s)
1469 if (iomode == IO_OUTPUT)
1471 write_atom (ATOM_STRING, s);
1472 return s;
1474 else
1476 require_atom (ATOM_STRING);
1477 return atom_string;
1482 /* Functions for quoting and unquoting strings. */
1484 static char *
1485 quote_string (const gfc_char_t *s, const size_t slength)
1487 const gfc_char_t *p;
1488 char *res, *q;
1489 size_t len = 0, i;
1491 /* Calculate the length we'll need: a backslash takes two ("\\"),
1492 non-printable characters take 10 ("\Uxxxxxxxx") and others take 1. */
1493 for (p = s, i = 0; i < slength; p++, i++)
1495 if (*p == '\\')
1496 len += 2;
1497 else if (!gfc_wide_is_printable (*p))
1498 len += 10;
1499 else
1500 len++;
1503 q = res = XCNEWVEC (char, len + 1);
1504 for (p = s, i = 0; i < slength; p++, i++)
1506 if (*p == '\\')
1507 *q++ = '\\', *q++ = '\\';
1508 else if (!gfc_wide_is_printable (*p))
1510 sprintf (q, "\\U%08" HOST_WIDE_INT_PRINT "x",
1511 (unsigned HOST_WIDE_INT) *p);
1512 q += 10;
1514 else
1515 *q++ = (unsigned char) *p;
1518 res[len] = '\0';
1519 return res;
1522 static gfc_char_t *
1523 unquote_string (const char *s)
1525 size_t len, i;
1526 const char *p;
1527 gfc_char_t *res;
1529 for (p = s, len = 0; *p; p++, len++)
1531 if (*p != '\\')
1532 continue;
1534 if (p[1] == '\\')
1535 p++;
1536 else if (p[1] == 'U')
1537 p += 9; /* That is a "\U????????". */
1538 else
1539 gfc_internal_error ("unquote_string(): got bad string");
1542 res = gfc_get_wide_string (len + 1);
1543 for (i = 0, p = s; i < len; i++, p++)
1545 gcc_assert (*p);
1547 if (*p != '\\')
1548 res[i] = (unsigned char) *p;
1549 else if (p[1] == '\\')
1551 res[i] = (unsigned char) '\\';
1552 p++;
1554 else
1556 /* We read the 8-digits hexadecimal constant that follows. */
1557 int j;
1558 unsigned n;
1559 gfc_char_t c = 0;
1561 gcc_assert (p[1] == 'U');
1562 for (j = 0; j < 8; j++)
1564 c = c << 4;
1565 gcc_assert (sscanf (&p[j+2], "%01x", &n) == 1);
1566 c += n;
1569 res[i] = c;
1570 p += 9;
1574 res[len] = '\0';
1575 return res;
1579 /* Read or write a character pointer that points to a wide string on the
1580 heap, performing quoting/unquoting of nonprintable characters using the
1581 form \U???????? (where each ? is a hexadecimal digit).
1582 Length is the length of the string, only known and used in output mode. */
1584 static const gfc_char_t *
1585 mio_allocated_wide_string (const gfc_char_t *s, const size_t length)
1587 if (iomode == IO_OUTPUT)
1589 char *quoted = quote_string (s, length);
1590 write_atom (ATOM_STRING, quoted);
1591 gfc_free (quoted);
1592 return s;
1594 else
1596 gfc_char_t *unquoted;
1598 require_atom (ATOM_STRING);
1599 unquoted = unquote_string (atom_string);
1600 gfc_free (atom_string);
1601 return unquoted;
1606 /* Read or write a string that is in static memory. */
1608 static void
1609 mio_pool_string (const char **stringp)
1611 /* TODO: one could write the string only once, and refer to it via a
1612 fixup pointer. */
1614 /* As a special case we have to deal with a NULL string. This
1615 happens for the 'module' member of 'gfc_symbol's that are not in a
1616 module. We read / write these as the empty string. */
1617 if (iomode == IO_OUTPUT)
1619 const char *p = *stringp == NULL ? "" : *stringp;
1620 write_atom (ATOM_STRING, p);
1622 else
1624 require_atom (ATOM_STRING);
1625 *stringp = atom_string[0] == '\0' ? NULL : gfc_get_string (atom_string);
1626 gfc_free (atom_string);
1631 /* Read or write a string that is inside of some already-allocated
1632 structure. */
1634 static void
1635 mio_internal_string (char *string)
1637 if (iomode == IO_OUTPUT)
1638 write_atom (ATOM_STRING, string);
1639 else
1641 require_atom (ATOM_STRING);
1642 strcpy (string, atom_string);
1643 gfc_free (atom_string);
1648 typedef enum
1649 { AB_ALLOCATABLE, AB_DIMENSION, AB_EXTERNAL, AB_INTRINSIC, AB_OPTIONAL,
1650 AB_POINTER, AB_TARGET, AB_DUMMY, AB_RESULT, AB_DATA,
1651 AB_IN_NAMELIST, AB_IN_COMMON, AB_FUNCTION, AB_SUBROUTINE, AB_SEQUENCE,
1652 AB_ELEMENTAL, AB_PURE, AB_RECURSIVE, AB_GENERIC, AB_ALWAYS_EXPLICIT,
1653 AB_CRAY_POINTER, AB_CRAY_POINTEE, AB_THREADPRIVATE, AB_ALLOC_COMP,
1654 AB_POINTER_COMP, AB_PRIVATE_COMP, AB_VALUE, AB_VOLATILE, AB_PROTECTED,
1655 AB_IS_BIND_C, AB_IS_C_INTEROP, AB_IS_ISO_C, AB_ABSTRACT, AB_ZERO_COMP,
1656 AB_EXTENSION, AB_PROCEDURE, AB_PROC_POINTER
1658 ab_attribute;
1660 static const mstring attr_bits[] =
1662 minit ("ALLOCATABLE", AB_ALLOCATABLE),
1663 minit ("DIMENSION", AB_DIMENSION),
1664 minit ("EXTERNAL", AB_EXTERNAL),
1665 minit ("INTRINSIC", AB_INTRINSIC),
1666 minit ("OPTIONAL", AB_OPTIONAL),
1667 minit ("POINTER", AB_POINTER),
1668 minit ("VOLATILE", AB_VOLATILE),
1669 minit ("TARGET", AB_TARGET),
1670 minit ("THREADPRIVATE", AB_THREADPRIVATE),
1671 minit ("DUMMY", AB_DUMMY),
1672 minit ("RESULT", AB_RESULT),
1673 minit ("DATA", AB_DATA),
1674 minit ("IN_NAMELIST", AB_IN_NAMELIST),
1675 minit ("IN_COMMON", AB_IN_COMMON),
1676 minit ("FUNCTION", AB_FUNCTION),
1677 minit ("SUBROUTINE", AB_SUBROUTINE),
1678 minit ("SEQUENCE", AB_SEQUENCE),
1679 minit ("ELEMENTAL", AB_ELEMENTAL),
1680 minit ("PURE", AB_PURE),
1681 minit ("RECURSIVE", AB_RECURSIVE),
1682 minit ("GENERIC", AB_GENERIC),
1683 minit ("ALWAYS_EXPLICIT", AB_ALWAYS_EXPLICIT),
1684 minit ("CRAY_POINTER", AB_CRAY_POINTER),
1685 minit ("CRAY_POINTEE", AB_CRAY_POINTEE),
1686 minit ("IS_BIND_C", AB_IS_BIND_C),
1687 minit ("IS_C_INTEROP", AB_IS_C_INTEROP),
1688 minit ("IS_ISO_C", AB_IS_ISO_C),
1689 minit ("VALUE", AB_VALUE),
1690 minit ("ALLOC_COMP", AB_ALLOC_COMP),
1691 minit ("POINTER_COMP", AB_POINTER_COMP),
1692 minit ("PRIVATE_COMP", AB_PRIVATE_COMP),
1693 minit ("ZERO_COMP", AB_ZERO_COMP),
1694 minit ("PROTECTED", AB_PROTECTED),
1695 minit ("ABSTRACT", AB_ABSTRACT),
1696 minit ("EXTENSION", AB_EXTENSION),
1697 minit ("PROCEDURE", AB_PROCEDURE),
1698 minit ("PROC_POINTER", AB_PROC_POINTER),
1699 minit (NULL, -1)
1702 /* For binding attributes. */
1703 static const mstring binding_passing[] =
1705 minit ("PASS", 0),
1706 minit ("NOPASS", 1),
1707 minit (NULL, -1)
1709 static const mstring binding_overriding[] =
1711 minit ("OVERRIDABLE", 0),
1712 minit ("NON_OVERRIDABLE", 1),
1713 minit ("DEFERRED", 2),
1714 minit (NULL, -1)
1716 static const mstring binding_generic[] =
1718 minit ("SPECIFIC", 0),
1719 minit ("GENERIC", 1),
1720 minit (NULL, -1)
1724 /* Specialization of mio_name. */
1725 DECL_MIO_NAME (ab_attribute)
1726 DECL_MIO_NAME (ar_type)
1727 DECL_MIO_NAME (array_type)
1728 DECL_MIO_NAME (bt)
1729 DECL_MIO_NAME (expr_t)
1730 DECL_MIO_NAME (gfc_access)
1731 DECL_MIO_NAME (gfc_intrinsic_op)
1732 DECL_MIO_NAME (ifsrc)
1733 DECL_MIO_NAME (save_state)
1734 DECL_MIO_NAME (procedure_type)
1735 DECL_MIO_NAME (ref_type)
1736 DECL_MIO_NAME (sym_flavor)
1737 DECL_MIO_NAME (sym_intent)
1738 #undef DECL_MIO_NAME
1740 /* Symbol attributes are stored in list with the first three elements
1741 being the enumerated fields, while the remaining elements (if any)
1742 indicate the individual attribute bits. The access field is not
1743 saved-- it controls what symbols are exported when a module is
1744 written. */
1746 static void
1747 mio_symbol_attribute (symbol_attribute *attr)
1749 atom_type t;
1751 mio_lparen ();
1753 attr->flavor = MIO_NAME (sym_flavor) (attr->flavor, flavors);
1754 attr->intent = MIO_NAME (sym_intent) (attr->intent, intents);
1755 attr->proc = MIO_NAME (procedure_type) (attr->proc, procedures);
1756 attr->if_source = MIO_NAME (ifsrc) (attr->if_source, ifsrc_types);
1757 attr->save = MIO_NAME (save_state) (attr->save, save_status);
1759 if (iomode == IO_OUTPUT)
1761 if (attr->allocatable)
1762 MIO_NAME (ab_attribute) (AB_ALLOCATABLE, attr_bits);
1763 if (attr->dimension)
1764 MIO_NAME (ab_attribute) (AB_DIMENSION, attr_bits);
1765 if (attr->external)
1766 MIO_NAME (ab_attribute) (AB_EXTERNAL, attr_bits);
1767 if (attr->intrinsic)
1768 MIO_NAME (ab_attribute) (AB_INTRINSIC, attr_bits);
1769 if (attr->optional)
1770 MIO_NAME (ab_attribute) (AB_OPTIONAL, attr_bits);
1771 if (attr->pointer)
1772 MIO_NAME (ab_attribute) (AB_POINTER, attr_bits);
1773 if (attr->is_protected)
1774 MIO_NAME (ab_attribute) (AB_PROTECTED, attr_bits);
1775 if (attr->value)
1776 MIO_NAME (ab_attribute) (AB_VALUE, attr_bits);
1777 if (attr->volatile_)
1778 MIO_NAME (ab_attribute) (AB_VOLATILE, attr_bits);
1779 if (attr->target)
1780 MIO_NAME (ab_attribute) (AB_TARGET, attr_bits);
1781 if (attr->threadprivate)
1782 MIO_NAME (ab_attribute) (AB_THREADPRIVATE, attr_bits);
1783 if (attr->dummy)
1784 MIO_NAME (ab_attribute) (AB_DUMMY, attr_bits);
1785 if (attr->result)
1786 MIO_NAME (ab_attribute) (AB_RESULT, attr_bits);
1787 /* We deliberately don't preserve the "entry" flag. */
1789 if (attr->data)
1790 MIO_NAME (ab_attribute) (AB_DATA, attr_bits);
1791 if (attr->in_namelist)
1792 MIO_NAME (ab_attribute) (AB_IN_NAMELIST, attr_bits);
1793 if (attr->in_common)
1794 MIO_NAME (ab_attribute) (AB_IN_COMMON, attr_bits);
1796 if (attr->function)
1797 MIO_NAME (ab_attribute) (AB_FUNCTION, attr_bits);
1798 if (attr->subroutine)
1799 MIO_NAME (ab_attribute) (AB_SUBROUTINE, attr_bits);
1800 if (attr->generic)
1801 MIO_NAME (ab_attribute) (AB_GENERIC, attr_bits);
1802 if (attr->abstract)
1803 MIO_NAME (ab_attribute) (AB_ABSTRACT, attr_bits);
1805 if (attr->sequence)
1806 MIO_NAME (ab_attribute) (AB_SEQUENCE, attr_bits);
1807 if (attr->elemental)
1808 MIO_NAME (ab_attribute) (AB_ELEMENTAL, attr_bits);
1809 if (attr->pure)
1810 MIO_NAME (ab_attribute) (AB_PURE, attr_bits);
1811 if (attr->recursive)
1812 MIO_NAME (ab_attribute) (AB_RECURSIVE, attr_bits);
1813 if (attr->always_explicit)
1814 MIO_NAME (ab_attribute) (AB_ALWAYS_EXPLICIT, attr_bits);
1815 if (attr->cray_pointer)
1816 MIO_NAME (ab_attribute) (AB_CRAY_POINTER, attr_bits);
1817 if (attr->cray_pointee)
1818 MIO_NAME (ab_attribute) (AB_CRAY_POINTEE, attr_bits);
1819 if (attr->is_bind_c)
1820 MIO_NAME(ab_attribute) (AB_IS_BIND_C, attr_bits);
1821 if (attr->is_c_interop)
1822 MIO_NAME(ab_attribute) (AB_IS_C_INTEROP, attr_bits);
1823 if (attr->is_iso_c)
1824 MIO_NAME(ab_attribute) (AB_IS_ISO_C, attr_bits);
1825 if (attr->alloc_comp)
1826 MIO_NAME (ab_attribute) (AB_ALLOC_COMP, attr_bits);
1827 if (attr->pointer_comp)
1828 MIO_NAME (ab_attribute) (AB_POINTER_COMP, attr_bits);
1829 if (attr->private_comp)
1830 MIO_NAME (ab_attribute) (AB_PRIVATE_COMP, attr_bits);
1831 if (attr->zero_comp)
1832 MIO_NAME (ab_attribute) (AB_ZERO_COMP, attr_bits);
1833 if (attr->extension)
1834 MIO_NAME (ab_attribute) (AB_EXTENSION, attr_bits);
1835 if (attr->procedure)
1836 MIO_NAME (ab_attribute) (AB_PROCEDURE, attr_bits);
1837 if (attr->proc_pointer)
1838 MIO_NAME (ab_attribute) (AB_PROC_POINTER, attr_bits);
1840 mio_rparen ();
1843 else
1845 for (;;)
1847 t = parse_atom ();
1848 if (t == ATOM_RPAREN)
1849 break;
1850 if (t != ATOM_NAME)
1851 bad_module ("Expected attribute bit name");
1853 switch ((ab_attribute) find_enum (attr_bits))
1855 case AB_ALLOCATABLE:
1856 attr->allocatable = 1;
1857 break;
1858 case AB_DIMENSION:
1859 attr->dimension = 1;
1860 break;
1861 case AB_EXTERNAL:
1862 attr->external = 1;
1863 break;
1864 case AB_INTRINSIC:
1865 attr->intrinsic = 1;
1866 break;
1867 case AB_OPTIONAL:
1868 attr->optional = 1;
1869 break;
1870 case AB_POINTER:
1871 attr->pointer = 1;
1872 break;
1873 case AB_PROTECTED:
1874 attr->is_protected = 1;
1875 break;
1876 case AB_VALUE:
1877 attr->value = 1;
1878 break;
1879 case AB_VOLATILE:
1880 attr->volatile_ = 1;
1881 break;
1882 case AB_TARGET:
1883 attr->target = 1;
1884 break;
1885 case AB_THREADPRIVATE:
1886 attr->threadprivate = 1;
1887 break;
1888 case AB_DUMMY:
1889 attr->dummy = 1;
1890 break;
1891 case AB_RESULT:
1892 attr->result = 1;
1893 break;
1894 case AB_DATA:
1895 attr->data = 1;
1896 break;
1897 case AB_IN_NAMELIST:
1898 attr->in_namelist = 1;
1899 break;
1900 case AB_IN_COMMON:
1901 attr->in_common = 1;
1902 break;
1903 case AB_FUNCTION:
1904 attr->function = 1;
1905 break;
1906 case AB_SUBROUTINE:
1907 attr->subroutine = 1;
1908 break;
1909 case AB_GENERIC:
1910 attr->generic = 1;
1911 break;
1912 case AB_ABSTRACT:
1913 attr->abstract = 1;
1914 break;
1915 case AB_SEQUENCE:
1916 attr->sequence = 1;
1917 break;
1918 case AB_ELEMENTAL:
1919 attr->elemental = 1;
1920 break;
1921 case AB_PURE:
1922 attr->pure = 1;
1923 break;
1924 case AB_RECURSIVE:
1925 attr->recursive = 1;
1926 break;
1927 case AB_ALWAYS_EXPLICIT:
1928 attr->always_explicit = 1;
1929 break;
1930 case AB_CRAY_POINTER:
1931 attr->cray_pointer = 1;
1932 break;
1933 case AB_CRAY_POINTEE:
1934 attr->cray_pointee = 1;
1935 break;
1936 case AB_IS_BIND_C:
1937 attr->is_bind_c = 1;
1938 break;
1939 case AB_IS_C_INTEROP:
1940 attr->is_c_interop = 1;
1941 break;
1942 case AB_IS_ISO_C:
1943 attr->is_iso_c = 1;
1944 break;
1945 case AB_ALLOC_COMP:
1946 attr->alloc_comp = 1;
1947 break;
1948 case AB_POINTER_COMP:
1949 attr->pointer_comp = 1;
1950 break;
1951 case AB_PRIVATE_COMP:
1952 attr->private_comp = 1;
1953 break;
1954 case AB_ZERO_COMP:
1955 attr->zero_comp = 1;
1956 break;
1957 case AB_EXTENSION:
1958 attr->extension = 1;
1959 break;
1960 case AB_PROCEDURE:
1961 attr->procedure = 1;
1962 break;
1963 case AB_PROC_POINTER:
1964 attr->proc_pointer = 1;
1965 break;
1972 static const mstring bt_types[] = {
1973 minit ("INTEGER", BT_INTEGER),
1974 minit ("REAL", BT_REAL),
1975 minit ("COMPLEX", BT_COMPLEX),
1976 minit ("LOGICAL", BT_LOGICAL),
1977 minit ("CHARACTER", BT_CHARACTER),
1978 minit ("DERIVED", BT_DERIVED),
1979 minit ("PROCEDURE", BT_PROCEDURE),
1980 minit ("UNKNOWN", BT_UNKNOWN),
1981 minit ("VOID", BT_VOID),
1982 minit (NULL, -1)
1986 static void
1987 mio_charlen (gfc_charlen **clp)
1989 gfc_charlen *cl;
1991 mio_lparen ();
1993 if (iomode == IO_OUTPUT)
1995 cl = *clp;
1996 if (cl != NULL)
1997 mio_expr (&cl->length);
1999 else
2001 if (peek_atom () != ATOM_RPAREN)
2003 cl = gfc_get_charlen ();
2004 mio_expr (&cl->length);
2006 *clp = cl;
2008 cl->next = gfc_current_ns->cl_list;
2009 gfc_current_ns->cl_list = cl;
2013 mio_rparen ();
2017 /* See if a name is a generated name. */
2019 static int
2020 check_unique_name (const char *name)
2022 return *name == '@';
2026 static void
2027 mio_typespec (gfc_typespec *ts)
2029 mio_lparen ();
2031 ts->type = MIO_NAME (bt) (ts->type, bt_types);
2033 if (ts->type != BT_DERIVED)
2034 mio_integer (&ts->kind);
2035 else
2036 mio_symbol_ref (&ts->derived);
2038 /* Add info for C interop and is_iso_c. */
2039 mio_integer (&ts->is_c_interop);
2040 mio_integer (&ts->is_iso_c);
2042 /* If the typespec is for an identifier either from iso_c_binding, or
2043 a constant that was initialized to an identifier from it, use the
2044 f90_type. Otherwise, use the ts->type, since it shouldn't matter. */
2045 if (ts->is_iso_c)
2046 ts->f90_type = MIO_NAME (bt) (ts->f90_type, bt_types);
2047 else
2048 ts->f90_type = MIO_NAME (bt) (ts->type, bt_types);
2050 if (ts->type != BT_CHARACTER)
2052 /* ts->cl is only valid for BT_CHARACTER. */
2053 mio_lparen ();
2054 mio_rparen ();
2056 else
2057 mio_charlen (&ts->cl);
2059 mio_rparen ();
2063 static const mstring array_spec_types[] = {
2064 minit ("EXPLICIT", AS_EXPLICIT),
2065 minit ("ASSUMED_SHAPE", AS_ASSUMED_SHAPE),
2066 minit ("DEFERRED", AS_DEFERRED),
2067 minit ("ASSUMED_SIZE", AS_ASSUMED_SIZE),
2068 minit (NULL, -1)
2072 static void
2073 mio_array_spec (gfc_array_spec **asp)
2075 gfc_array_spec *as;
2076 int i;
2078 mio_lparen ();
2080 if (iomode == IO_OUTPUT)
2082 if (*asp == NULL)
2083 goto done;
2084 as = *asp;
2086 else
2088 if (peek_atom () == ATOM_RPAREN)
2090 *asp = NULL;
2091 goto done;
2094 *asp = as = gfc_get_array_spec ();
2097 mio_integer (&as->rank);
2098 as->type = MIO_NAME (array_type) (as->type, array_spec_types);
2100 for (i = 0; i < as->rank; i++)
2102 mio_expr (&as->lower[i]);
2103 mio_expr (&as->upper[i]);
2106 done:
2107 mio_rparen ();
2111 /* Given a pointer to an array reference structure (which lives in a
2112 gfc_ref structure), find the corresponding array specification
2113 structure. Storing the pointer in the ref structure doesn't quite
2114 work when loading from a module. Generating code for an array
2115 reference also needs more information than just the array spec. */
2117 static const mstring array_ref_types[] = {
2118 minit ("FULL", AR_FULL),
2119 minit ("ELEMENT", AR_ELEMENT),
2120 minit ("SECTION", AR_SECTION),
2121 minit (NULL, -1)
2125 static void
2126 mio_array_ref (gfc_array_ref *ar)
2128 int i;
2130 mio_lparen ();
2131 ar->type = MIO_NAME (ar_type) (ar->type, array_ref_types);
2132 mio_integer (&ar->dimen);
2134 switch (ar->type)
2136 case AR_FULL:
2137 break;
2139 case AR_ELEMENT:
2140 for (i = 0; i < ar->dimen; i++)
2141 mio_expr (&ar->start[i]);
2143 break;
2145 case AR_SECTION:
2146 for (i = 0; i < ar->dimen; i++)
2148 mio_expr (&ar->start[i]);
2149 mio_expr (&ar->end[i]);
2150 mio_expr (&ar->stride[i]);
2153 break;
2155 case AR_UNKNOWN:
2156 gfc_internal_error ("mio_array_ref(): Unknown array ref");
2159 /* Unfortunately, ar->dimen_type is an anonymous enumerated type so
2160 we can't call mio_integer directly. Instead loop over each element
2161 and cast it to/from an integer. */
2162 if (iomode == IO_OUTPUT)
2164 for (i = 0; i < ar->dimen; i++)
2166 int tmp = (int)ar->dimen_type[i];
2167 write_atom (ATOM_INTEGER, &tmp);
2170 else
2172 for (i = 0; i < ar->dimen; i++)
2174 require_atom (ATOM_INTEGER);
2175 ar->dimen_type[i] = (enum gfc_array_ref_dimen_type) atom_int;
2179 if (iomode == IO_INPUT)
2181 ar->where = gfc_current_locus;
2183 for (i = 0; i < ar->dimen; i++)
2184 ar->c_where[i] = gfc_current_locus;
2187 mio_rparen ();
2191 /* Saves or restores a pointer. The pointer is converted back and
2192 forth from an integer. We return the pointer_info pointer so that
2193 the caller can take additional action based on the pointer type. */
2195 static pointer_info *
2196 mio_pointer_ref (void *gp)
2198 pointer_info *p;
2200 if (iomode == IO_OUTPUT)
2202 p = get_pointer (*((char **) gp));
2203 write_atom (ATOM_INTEGER, &p->integer);
2205 else
2207 require_atom (ATOM_INTEGER);
2208 p = add_fixup (atom_int, gp);
2211 return p;
2215 /* Save and load references to components that occur within
2216 expressions. We have to describe these references by a number and
2217 by name. The number is necessary for forward references during
2218 reading, and the name is necessary if the symbol already exists in
2219 the namespace and is not loaded again. */
2221 static void
2222 mio_component_ref (gfc_component **cp, gfc_symbol *sym)
2224 char name[GFC_MAX_SYMBOL_LEN + 1];
2225 gfc_component *q;
2226 pointer_info *p;
2228 p = mio_pointer_ref (cp);
2229 if (p->type == P_UNKNOWN)
2230 p->type = P_COMPONENT;
2232 if (iomode == IO_OUTPUT)
2233 mio_pool_string (&(*cp)->name);
2234 else
2236 mio_internal_string (name);
2238 /* It can happen that a component reference can be read before the
2239 associated derived type symbol has been loaded. Return now and
2240 wait for a later iteration of load_needed. */
2241 if (sym == NULL)
2242 return;
2244 if (sym->components != NULL && p->u.pointer == NULL)
2246 /* Symbol already loaded, so search by name. */
2247 for (q = sym->components; q; q = q->next)
2248 if (strcmp (q->name, name) == 0)
2249 break;
2251 if (q == NULL)
2252 gfc_internal_error ("mio_component_ref(): Component not found");
2254 associate_integer_pointer (p, q);
2257 /* Make sure this symbol will eventually be loaded. */
2258 p = find_pointer2 (sym);
2259 if (p->u.rsym.state == UNUSED)
2260 p->u.rsym.state = NEEDED;
2265 static void mio_namespace_ref (gfc_namespace **nsp);
2266 static void mio_formal_arglist (gfc_formal_arglist **formal);
2269 static void
2270 mio_component (gfc_component *c)
2272 pointer_info *p;
2273 int n;
2274 gfc_formal_arglist *formal;
2276 mio_lparen ();
2278 if (iomode == IO_OUTPUT)
2280 p = get_pointer (c);
2281 mio_integer (&p->integer);
2283 else
2285 mio_integer (&n);
2286 p = get_integer (n);
2287 associate_integer_pointer (p, c);
2290 if (p->type == P_UNKNOWN)
2291 p->type = P_COMPONENT;
2293 mio_pool_string (&c->name);
2294 mio_typespec (&c->ts);
2295 mio_array_spec (&c->as);
2297 mio_symbol_attribute (&c->attr);
2298 c->attr.access = MIO_NAME (gfc_access) (c->attr.access, access_types);
2300 mio_expr (&c->initializer);
2302 if (iomode == IO_OUTPUT)
2304 formal = c->formal;
2305 while (formal && !formal->sym)
2306 formal = formal->next;
2308 if (formal)
2309 mio_namespace_ref (&formal->sym->ns);
2310 else
2311 mio_namespace_ref (&c->formal_ns);
2313 else
2315 mio_namespace_ref (&c->formal_ns);
2316 /* TODO: if (c->formal_ns)
2318 c->formal_ns->proc_name = c;
2319 c->refs++;
2323 mio_formal_arglist (&c->formal);
2325 mio_rparen ();
2329 static void
2330 mio_component_list (gfc_component **cp)
2332 gfc_component *c, *tail;
2334 mio_lparen ();
2336 if (iomode == IO_OUTPUT)
2338 for (c = *cp; c; c = c->next)
2339 mio_component (c);
2341 else
2343 *cp = NULL;
2344 tail = NULL;
2346 for (;;)
2348 if (peek_atom () == ATOM_RPAREN)
2349 break;
2351 c = gfc_get_component ();
2352 mio_component (c);
2354 if (tail == NULL)
2355 *cp = c;
2356 else
2357 tail->next = c;
2359 tail = c;
2363 mio_rparen ();
2367 static void
2368 mio_actual_arg (gfc_actual_arglist *a)
2370 mio_lparen ();
2371 mio_pool_string (&a->name);
2372 mio_expr (&a->expr);
2373 mio_rparen ();
2377 static void
2378 mio_actual_arglist (gfc_actual_arglist **ap)
2380 gfc_actual_arglist *a, *tail;
2382 mio_lparen ();
2384 if (iomode == IO_OUTPUT)
2386 for (a = *ap; a; a = a->next)
2387 mio_actual_arg (a);
2390 else
2392 tail = NULL;
2394 for (;;)
2396 if (peek_atom () != ATOM_LPAREN)
2397 break;
2399 a = gfc_get_actual_arglist ();
2401 if (tail == NULL)
2402 *ap = a;
2403 else
2404 tail->next = a;
2406 tail = a;
2407 mio_actual_arg (a);
2411 mio_rparen ();
2415 /* Read and write formal argument lists. */
2417 static void
2418 mio_formal_arglist (gfc_formal_arglist **formal)
2420 gfc_formal_arglist *f, *tail;
2422 mio_lparen ();
2424 if (iomode == IO_OUTPUT)
2426 for (f = *formal; f; f = f->next)
2427 mio_symbol_ref (&f->sym);
2429 else
2431 *formal = tail = NULL;
2433 while (peek_atom () != ATOM_RPAREN)
2435 f = gfc_get_formal_arglist ();
2436 mio_symbol_ref (&f->sym);
2438 if (*formal == NULL)
2439 *formal = f;
2440 else
2441 tail->next = f;
2443 tail = f;
2447 mio_rparen ();
2451 /* Save or restore a reference to a symbol node. */
2453 pointer_info *
2454 mio_symbol_ref (gfc_symbol **symp)
2456 pointer_info *p;
2458 p = mio_pointer_ref (symp);
2459 if (p->type == P_UNKNOWN)
2460 p->type = P_SYMBOL;
2462 if (iomode == IO_OUTPUT)
2464 if (p->u.wsym.state == UNREFERENCED)
2465 p->u.wsym.state = NEEDS_WRITE;
2467 else
2469 if (p->u.rsym.state == UNUSED)
2470 p->u.rsym.state = NEEDED;
2472 return p;
2476 /* Save or restore a reference to a symtree node. */
2478 static void
2479 mio_symtree_ref (gfc_symtree **stp)
2481 pointer_info *p;
2482 fixup_t *f;
2484 if (iomode == IO_OUTPUT)
2485 mio_symbol_ref (&(*stp)->n.sym);
2486 else
2488 require_atom (ATOM_INTEGER);
2489 p = get_integer (atom_int);
2491 /* An unused equivalence member; make a symbol and a symtree
2492 for it. */
2493 if (in_load_equiv && p->u.rsym.symtree == NULL)
2495 /* Since this is not used, it must have a unique name. */
2496 p->u.rsym.symtree = gfc_get_unique_symtree (gfc_current_ns);
2498 /* Make the symbol. */
2499 if (p->u.rsym.sym == NULL)
2501 p->u.rsym.sym = gfc_new_symbol (p->u.rsym.true_name,
2502 gfc_current_ns);
2503 p->u.rsym.sym->module = gfc_get_string (p->u.rsym.module);
2506 p->u.rsym.symtree->n.sym = p->u.rsym.sym;
2507 p->u.rsym.symtree->n.sym->refs++;
2508 p->u.rsym.referenced = 1;
2510 /* If the symbol is PRIVATE and in COMMON, load_commons will
2511 generate a fixup symbol, which must be associated. */
2512 if (p->fixup)
2513 resolve_fixups (p->fixup, p->u.rsym.sym);
2514 p->fixup = NULL;
2517 if (p->type == P_UNKNOWN)
2518 p->type = P_SYMBOL;
2520 if (p->u.rsym.state == UNUSED)
2521 p->u.rsym.state = NEEDED;
2523 if (p->u.rsym.symtree != NULL)
2525 *stp = p->u.rsym.symtree;
2527 else
2529 f = XCNEW (fixup_t);
2531 f->next = p->u.rsym.stfixup;
2532 p->u.rsym.stfixup = f;
2534 f->pointer = (void **) stp;
2540 static void
2541 mio_iterator (gfc_iterator **ip)
2543 gfc_iterator *iter;
2545 mio_lparen ();
2547 if (iomode == IO_OUTPUT)
2549 if (*ip == NULL)
2550 goto done;
2552 else
2554 if (peek_atom () == ATOM_RPAREN)
2556 *ip = NULL;
2557 goto done;
2560 *ip = gfc_get_iterator ();
2563 iter = *ip;
2565 mio_expr (&iter->var);
2566 mio_expr (&iter->start);
2567 mio_expr (&iter->end);
2568 mio_expr (&iter->step);
2570 done:
2571 mio_rparen ();
2575 static void
2576 mio_constructor (gfc_constructor **cp)
2578 gfc_constructor *c, *tail;
2580 mio_lparen ();
2582 if (iomode == IO_OUTPUT)
2584 for (c = *cp; c; c = c->next)
2586 mio_lparen ();
2587 mio_expr (&c->expr);
2588 mio_iterator (&c->iterator);
2589 mio_rparen ();
2592 else
2594 *cp = NULL;
2595 tail = NULL;
2597 while (peek_atom () != ATOM_RPAREN)
2599 c = gfc_get_constructor ();
2601 if (tail == NULL)
2602 *cp = c;
2603 else
2604 tail->next = c;
2606 tail = c;
2608 mio_lparen ();
2609 mio_expr (&c->expr);
2610 mio_iterator (&c->iterator);
2611 mio_rparen ();
2615 mio_rparen ();
2619 static const mstring ref_types[] = {
2620 minit ("ARRAY", REF_ARRAY),
2621 minit ("COMPONENT", REF_COMPONENT),
2622 minit ("SUBSTRING", REF_SUBSTRING),
2623 minit (NULL, -1)
2627 static void
2628 mio_ref (gfc_ref **rp)
2630 gfc_ref *r;
2632 mio_lparen ();
2634 r = *rp;
2635 r->type = MIO_NAME (ref_type) (r->type, ref_types);
2637 switch (r->type)
2639 case REF_ARRAY:
2640 mio_array_ref (&r->u.ar);
2641 break;
2643 case REF_COMPONENT:
2644 mio_symbol_ref (&r->u.c.sym);
2645 mio_component_ref (&r->u.c.component, r->u.c.sym);
2646 break;
2648 case REF_SUBSTRING:
2649 mio_expr (&r->u.ss.start);
2650 mio_expr (&r->u.ss.end);
2651 mio_charlen (&r->u.ss.length);
2652 break;
2655 mio_rparen ();
2659 static void
2660 mio_ref_list (gfc_ref **rp)
2662 gfc_ref *ref, *head, *tail;
2664 mio_lparen ();
2666 if (iomode == IO_OUTPUT)
2668 for (ref = *rp; ref; ref = ref->next)
2669 mio_ref (&ref);
2671 else
2673 head = tail = NULL;
2675 while (peek_atom () != ATOM_RPAREN)
2677 if (head == NULL)
2678 head = tail = gfc_get_ref ();
2679 else
2681 tail->next = gfc_get_ref ();
2682 tail = tail->next;
2685 mio_ref (&tail);
2688 *rp = head;
2691 mio_rparen ();
2695 /* Read and write an integer value. */
2697 static void
2698 mio_gmp_integer (mpz_t *integer)
2700 char *p;
2702 if (iomode == IO_INPUT)
2704 if (parse_atom () != ATOM_STRING)
2705 bad_module ("Expected integer string");
2707 mpz_init (*integer);
2708 if (mpz_set_str (*integer, atom_string, 10))
2709 bad_module ("Error converting integer");
2711 gfc_free (atom_string);
2713 else
2715 p = mpz_get_str (NULL, 10, *integer);
2716 write_atom (ATOM_STRING, p);
2717 gfc_free (p);
2722 static void
2723 mio_gmp_real (mpfr_t *real)
2725 mp_exp_t exponent;
2726 char *p;
2728 if (iomode == IO_INPUT)
2730 if (parse_atom () != ATOM_STRING)
2731 bad_module ("Expected real string");
2733 mpfr_init (*real);
2734 mpfr_set_str (*real, atom_string, 16, GFC_RND_MODE);
2735 gfc_free (atom_string);
2737 else
2739 p = mpfr_get_str (NULL, &exponent, 16, 0, *real, GFC_RND_MODE);
2741 if (mpfr_nan_p (*real) || mpfr_inf_p (*real))
2743 write_atom (ATOM_STRING, p);
2744 gfc_free (p);
2745 return;
2748 atom_string = XCNEWVEC (char, strlen (p) + 20);
2750 sprintf (atom_string, "0.%s@%ld", p, exponent);
2752 /* Fix negative numbers. */
2753 if (atom_string[2] == '-')
2755 atom_string[0] = '-';
2756 atom_string[1] = '0';
2757 atom_string[2] = '.';
2760 write_atom (ATOM_STRING, atom_string);
2762 gfc_free (atom_string);
2763 gfc_free (p);
2768 /* Save and restore the shape of an array constructor. */
2770 static void
2771 mio_shape (mpz_t **pshape, int rank)
2773 mpz_t *shape;
2774 atom_type t;
2775 int n;
2777 /* A NULL shape is represented by (). */
2778 mio_lparen ();
2780 if (iomode == IO_OUTPUT)
2782 shape = *pshape;
2783 if (!shape)
2785 mio_rparen ();
2786 return;
2789 else
2791 t = peek_atom ();
2792 if (t == ATOM_RPAREN)
2794 *pshape = NULL;
2795 mio_rparen ();
2796 return;
2799 shape = gfc_get_shape (rank);
2800 *pshape = shape;
2803 for (n = 0; n < rank; n++)
2804 mio_gmp_integer (&shape[n]);
2806 mio_rparen ();
2810 static const mstring expr_types[] = {
2811 minit ("OP", EXPR_OP),
2812 minit ("FUNCTION", EXPR_FUNCTION),
2813 minit ("CONSTANT", EXPR_CONSTANT),
2814 minit ("VARIABLE", EXPR_VARIABLE),
2815 minit ("SUBSTRING", EXPR_SUBSTRING),
2816 minit ("STRUCTURE", EXPR_STRUCTURE),
2817 minit ("ARRAY", EXPR_ARRAY),
2818 minit ("NULL", EXPR_NULL),
2819 minit ("COMPCALL", EXPR_COMPCALL),
2820 minit (NULL, -1)
2823 /* INTRINSIC_ASSIGN is missing because it is used as an index for
2824 generic operators, not in expressions. INTRINSIC_USER is also
2825 replaced by the correct function name by the time we see it. */
2827 static const mstring intrinsics[] =
2829 minit ("UPLUS", INTRINSIC_UPLUS),
2830 minit ("UMINUS", INTRINSIC_UMINUS),
2831 minit ("PLUS", INTRINSIC_PLUS),
2832 minit ("MINUS", INTRINSIC_MINUS),
2833 minit ("TIMES", INTRINSIC_TIMES),
2834 minit ("DIVIDE", INTRINSIC_DIVIDE),
2835 minit ("POWER", INTRINSIC_POWER),
2836 minit ("CONCAT", INTRINSIC_CONCAT),
2837 minit ("AND", INTRINSIC_AND),
2838 minit ("OR", INTRINSIC_OR),
2839 minit ("EQV", INTRINSIC_EQV),
2840 minit ("NEQV", INTRINSIC_NEQV),
2841 minit ("EQ_SIGN", INTRINSIC_EQ),
2842 minit ("EQ", INTRINSIC_EQ_OS),
2843 minit ("NE_SIGN", INTRINSIC_NE),
2844 minit ("NE", INTRINSIC_NE_OS),
2845 minit ("GT_SIGN", INTRINSIC_GT),
2846 minit ("GT", INTRINSIC_GT_OS),
2847 minit ("GE_SIGN", INTRINSIC_GE),
2848 minit ("GE", INTRINSIC_GE_OS),
2849 minit ("LT_SIGN", INTRINSIC_LT),
2850 minit ("LT", INTRINSIC_LT_OS),
2851 minit ("LE_SIGN", INTRINSIC_LE),
2852 minit ("LE", INTRINSIC_LE_OS),
2853 minit ("NOT", INTRINSIC_NOT),
2854 minit ("PARENTHESES", INTRINSIC_PARENTHESES),
2855 minit (NULL, -1)
2859 /* Remedy a couple of situations where the gfc_expr's can be defective. */
2861 static void
2862 fix_mio_expr (gfc_expr *e)
2864 gfc_symtree *ns_st = NULL;
2865 const char *fname;
2867 if (iomode != IO_OUTPUT)
2868 return;
2870 if (e->symtree)
2872 /* If this is a symtree for a symbol that came from a contained module
2873 namespace, it has a unique name and we should look in the current
2874 namespace to see if the required, non-contained symbol is available
2875 yet. If so, the latter should be written. */
2876 if (e->symtree->n.sym && check_unique_name (e->symtree->name))
2877 ns_st = gfc_find_symtree (gfc_current_ns->sym_root,
2878 e->symtree->n.sym->name);
2880 /* On the other hand, if the existing symbol is the module name or the
2881 new symbol is a dummy argument, do not do the promotion. */
2882 if (ns_st && ns_st->n.sym
2883 && ns_st->n.sym->attr.flavor != FL_MODULE
2884 && !e->symtree->n.sym->attr.dummy)
2885 e->symtree = ns_st;
2887 else if (e->expr_type == EXPR_FUNCTION && e->value.function.name)
2889 /* In some circumstances, a function used in an initialization
2890 expression, in one use associated module, can fail to be
2891 coupled to its symtree when used in a specification
2892 expression in another module. */
2893 fname = e->value.function.esym ? e->value.function.esym->name
2894 : e->value.function.isym->name;
2895 e->symtree = gfc_find_symtree (gfc_current_ns->sym_root, fname);
2900 /* Read and write expressions. The form "()" is allowed to indicate a
2901 NULL expression. */
2903 static void
2904 mio_expr (gfc_expr **ep)
2906 gfc_expr *e;
2907 atom_type t;
2908 int flag;
2910 mio_lparen ();
2912 if (iomode == IO_OUTPUT)
2914 if (*ep == NULL)
2916 mio_rparen ();
2917 return;
2920 e = *ep;
2921 MIO_NAME (expr_t) (e->expr_type, expr_types);
2923 else
2925 t = parse_atom ();
2926 if (t == ATOM_RPAREN)
2928 *ep = NULL;
2929 return;
2932 if (t != ATOM_NAME)
2933 bad_module ("Expected expression type");
2935 e = *ep = gfc_get_expr ();
2936 e->where = gfc_current_locus;
2937 e->expr_type = (expr_t) find_enum (expr_types);
2940 mio_typespec (&e->ts);
2941 mio_integer (&e->rank);
2943 fix_mio_expr (e);
2945 switch (e->expr_type)
2947 case EXPR_OP:
2948 e->value.op.op
2949 = MIO_NAME (gfc_intrinsic_op) (e->value.op.op, intrinsics);
2951 switch (e->value.op.op)
2953 case INTRINSIC_UPLUS:
2954 case INTRINSIC_UMINUS:
2955 case INTRINSIC_NOT:
2956 case INTRINSIC_PARENTHESES:
2957 mio_expr (&e->value.op.op1);
2958 break;
2960 case INTRINSIC_PLUS:
2961 case INTRINSIC_MINUS:
2962 case INTRINSIC_TIMES:
2963 case INTRINSIC_DIVIDE:
2964 case INTRINSIC_POWER:
2965 case INTRINSIC_CONCAT:
2966 case INTRINSIC_AND:
2967 case INTRINSIC_OR:
2968 case INTRINSIC_EQV:
2969 case INTRINSIC_NEQV:
2970 case INTRINSIC_EQ:
2971 case INTRINSIC_EQ_OS:
2972 case INTRINSIC_NE:
2973 case INTRINSIC_NE_OS:
2974 case INTRINSIC_GT:
2975 case INTRINSIC_GT_OS:
2976 case INTRINSIC_GE:
2977 case INTRINSIC_GE_OS:
2978 case INTRINSIC_LT:
2979 case INTRINSIC_LT_OS:
2980 case INTRINSIC_LE:
2981 case INTRINSIC_LE_OS:
2982 mio_expr (&e->value.op.op1);
2983 mio_expr (&e->value.op.op2);
2984 break;
2986 default:
2987 bad_module ("Bad operator");
2990 break;
2992 case EXPR_FUNCTION:
2993 mio_symtree_ref (&e->symtree);
2994 mio_actual_arglist (&e->value.function.actual);
2996 if (iomode == IO_OUTPUT)
2998 e->value.function.name
2999 = mio_allocated_string (e->value.function.name);
3000 flag = e->value.function.esym != NULL;
3001 mio_integer (&flag);
3002 if (flag)
3003 mio_symbol_ref (&e->value.function.esym);
3004 else
3005 write_atom (ATOM_STRING, e->value.function.isym->name);
3007 else
3009 require_atom (ATOM_STRING);
3010 e->value.function.name = gfc_get_string (atom_string);
3011 gfc_free (atom_string);
3013 mio_integer (&flag);
3014 if (flag)
3015 mio_symbol_ref (&e->value.function.esym);
3016 else
3018 require_atom (ATOM_STRING);
3019 e->value.function.isym = gfc_find_function (atom_string);
3020 gfc_free (atom_string);
3024 break;
3026 case EXPR_VARIABLE:
3027 mio_symtree_ref (&e->symtree);
3028 mio_ref_list (&e->ref);
3029 break;
3031 case EXPR_SUBSTRING:
3032 e->value.character.string
3033 = CONST_CAST (gfc_char_t *,
3034 mio_allocated_wide_string (e->value.character.string,
3035 e->value.character.length));
3036 mio_ref_list (&e->ref);
3037 break;
3039 case EXPR_STRUCTURE:
3040 case EXPR_ARRAY:
3041 mio_constructor (&e->value.constructor);
3042 mio_shape (&e->shape, e->rank);
3043 break;
3045 case EXPR_CONSTANT:
3046 switch (e->ts.type)
3048 case BT_INTEGER:
3049 mio_gmp_integer (&e->value.integer);
3050 break;
3052 case BT_REAL:
3053 gfc_set_model_kind (e->ts.kind);
3054 mio_gmp_real (&e->value.real);
3055 break;
3057 case BT_COMPLEX:
3058 gfc_set_model_kind (e->ts.kind);
3059 mio_gmp_real (&mpc_realref (e->value.complex));
3060 mio_gmp_real (&mpc_imagref (e->value.complex));
3061 break;
3063 case BT_LOGICAL:
3064 mio_integer (&e->value.logical);
3065 break;
3067 case BT_CHARACTER:
3068 mio_integer (&e->value.character.length);
3069 e->value.character.string
3070 = CONST_CAST (gfc_char_t *,
3071 mio_allocated_wide_string (e->value.character.string,
3072 e->value.character.length));
3073 break;
3075 default:
3076 bad_module ("Bad type in constant expression");
3079 break;
3081 case EXPR_NULL:
3082 break;
3084 case EXPR_COMPCALL:
3085 case EXPR_PPC:
3086 gcc_unreachable ();
3087 break;
3090 mio_rparen ();
3094 /* Read and write namelists. */
3096 static void
3097 mio_namelist (gfc_symbol *sym)
3099 gfc_namelist *n, *m;
3100 const char *check_name;
3102 mio_lparen ();
3104 if (iomode == IO_OUTPUT)
3106 for (n = sym->namelist; n; n = n->next)
3107 mio_symbol_ref (&n->sym);
3109 else
3111 /* This departure from the standard is flagged as an error.
3112 It does, in fact, work correctly. TODO: Allow it
3113 conditionally? */
3114 if (sym->attr.flavor == FL_NAMELIST)
3116 check_name = find_use_name (sym->name, false);
3117 if (check_name && strcmp (check_name, sym->name) != 0)
3118 gfc_error ("Namelist %s cannot be renamed by USE "
3119 "association to %s", sym->name, check_name);
3122 m = NULL;
3123 while (peek_atom () != ATOM_RPAREN)
3125 n = gfc_get_namelist ();
3126 mio_symbol_ref (&n->sym);
3128 if (sym->namelist == NULL)
3129 sym->namelist = n;
3130 else
3131 m->next = n;
3133 m = n;
3135 sym->namelist_tail = m;
3138 mio_rparen ();
3142 /* Save/restore lists of gfc_interface structures. When loading an
3143 interface, we are really appending to the existing list of
3144 interfaces. Checking for duplicate and ambiguous interfaces has to
3145 be done later when all symbols have been loaded. */
3147 pointer_info *
3148 mio_interface_rest (gfc_interface **ip)
3150 gfc_interface *tail, *p;
3151 pointer_info *pi = NULL;
3153 if (iomode == IO_OUTPUT)
3155 if (ip != NULL)
3156 for (p = *ip; p; p = p->next)
3157 mio_symbol_ref (&p->sym);
3159 else
3161 if (*ip == NULL)
3162 tail = NULL;
3163 else
3165 tail = *ip;
3166 while (tail->next)
3167 tail = tail->next;
3170 for (;;)
3172 if (peek_atom () == ATOM_RPAREN)
3173 break;
3175 p = gfc_get_interface ();
3176 p->where = gfc_current_locus;
3177 pi = mio_symbol_ref (&p->sym);
3179 if (tail == NULL)
3180 *ip = p;
3181 else
3182 tail->next = p;
3184 tail = p;
3188 mio_rparen ();
3189 return pi;
3193 /* Save/restore a nameless operator interface. */
3195 static void
3196 mio_interface (gfc_interface **ip)
3198 mio_lparen ();
3199 mio_interface_rest (ip);
3203 /* Save/restore a named operator interface. */
3205 static void
3206 mio_symbol_interface (const char **name, const char **module,
3207 gfc_interface **ip)
3209 mio_lparen ();
3210 mio_pool_string (name);
3211 mio_pool_string (module);
3212 mio_interface_rest (ip);
3216 static void
3217 mio_namespace_ref (gfc_namespace **nsp)
3219 gfc_namespace *ns;
3220 pointer_info *p;
3222 p = mio_pointer_ref (nsp);
3224 if (p->type == P_UNKNOWN)
3225 p->type = P_NAMESPACE;
3227 if (iomode == IO_INPUT && p->integer != 0)
3229 ns = (gfc_namespace *) p->u.pointer;
3230 if (ns == NULL)
3232 ns = gfc_get_namespace (NULL, 0);
3233 associate_integer_pointer (p, ns);
3235 else
3236 ns->refs++;
3241 /* Save/restore the f2k_derived namespace of a derived-type symbol. */
3243 static gfc_namespace* current_f2k_derived;
3245 static void
3246 mio_typebound_proc (gfc_typebound_proc** proc)
3248 int flag;
3249 int overriding_flag;
3251 if (iomode == IO_INPUT)
3253 *proc = gfc_get_typebound_proc ();
3254 (*proc)->where = gfc_current_locus;
3256 gcc_assert (*proc);
3258 mio_lparen ();
3260 (*proc)->access = MIO_NAME (gfc_access) ((*proc)->access, access_types);
3262 /* IO the NON_OVERRIDABLE/DEFERRED combination. */
3263 gcc_assert (!((*proc)->deferred && (*proc)->non_overridable));
3264 overriding_flag = ((*proc)->deferred << 1) | (*proc)->non_overridable;
3265 overriding_flag = mio_name (overriding_flag, binding_overriding);
3266 (*proc)->deferred = ((overriding_flag & 2) != 0);
3267 (*proc)->non_overridable = ((overriding_flag & 1) != 0);
3268 gcc_assert (!((*proc)->deferred && (*proc)->non_overridable));
3270 (*proc)->nopass = mio_name ((*proc)->nopass, binding_passing);
3271 (*proc)->is_generic = mio_name ((*proc)->is_generic, binding_generic);
3273 if (iomode == IO_INPUT)
3274 (*proc)->pass_arg = NULL;
3276 flag = (int) (*proc)->pass_arg_num;
3277 mio_integer (&flag);
3278 (*proc)->pass_arg_num = (unsigned) flag;
3280 if ((*proc)->is_generic)
3282 gfc_tbp_generic* g;
3284 mio_lparen ();
3286 if (iomode == IO_OUTPUT)
3287 for (g = (*proc)->u.generic; g; g = g->next)
3288 mio_allocated_string (g->specific_st->name);
3289 else
3291 (*proc)->u.generic = NULL;
3292 while (peek_atom () != ATOM_RPAREN)
3294 gfc_symtree** sym_root;
3296 g = gfc_get_tbp_generic ();
3297 g->specific = NULL;
3299 require_atom (ATOM_STRING);
3300 sym_root = &current_f2k_derived->tb_sym_root;
3301 g->specific_st = gfc_get_tbp_symtree (sym_root, atom_string);
3302 gfc_free (atom_string);
3304 g->next = (*proc)->u.generic;
3305 (*proc)->u.generic = g;
3309 mio_rparen ();
3311 else
3312 mio_symtree_ref (&(*proc)->u.specific);
3314 mio_rparen ();
3317 static void
3318 mio_typebound_symtree (gfc_symtree* st)
3320 if (iomode == IO_OUTPUT && !st->n.tb)
3321 return;
3323 if (iomode == IO_OUTPUT)
3325 mio_lparen ();
3326 mio_allocated_string (st->name);
3328 /* For IO_INPUT, the above is done in mio_f2k_derived. */
3330 mio_typebound_proc (&st->n.tb);
3331 mio_rparen ();
3334 static void
3335 mio_finalizer (gfc_finalizer **f)
3337 if (iomode == IO_OUTPUT)
3339 gcc_assert (*f);
3340 gcc_assert ((*f)->proc_tree); /* Should already be resolved. */
3341 mio_symtree_ref (&(*f)->proc_tree);
3343 else
3345 *f = gfc_get_finalizer ();
3346 (*f)->where = gfc_current_locus; /* Value should not matter. */
3347 (*f)->next = NULL;
3349 mio_symtree_ref (&(*f)->proc_tree);
3350 (*f)->proc_sym = NULL;
3354 static void
3355 mio_f2k_derived (gfc_namespace *f2k)
3357 current_f2k_derived = f2k;
3359 /* Handle the list of finalizer procedures. */
3360 mio_lparen ();
3361 if (iomode == IO_OUTPUT)
3363 gfc_finalizer *f;
3364 for (f = f2k->finalizers; f; f = f->next)
3365 mio_finalizer (&f);
3367 else
3369 f2k->finalizers = NULL;
3370 while (peek_atom () != ATOM_RPAREN)
3372 gfc_finalizer *cur = NULL;
3373 mio_finalizer (&cur);
3374 cur->next = f2k->finalizers;
3375 f2k->finalizers = cur;
3378 mio_rparen ();
3380 /* Handle type-bound procedures. */
3381 mio_lparen ();
3382 if (iomode == IO_OUTPUT)
3383 gfc_traverse_symtree (f2k->tb_sym_root, &mio_typebound_symtree);
3384 else
3386 while (peek_atom () == ATOM_LPAREN)
3388 gfc_symtree* st;
3390 mio_lparen ();
3392 require_atom (ATOM_STRING);
3393 st = gfc_get_tbp_symtree (&f2k->tb_sym_root, atom_string);
3394 gfc_free (atom_string);
3396 mio_typebound_symtree (st);
3399 mio_rparen ();
3402 static void
3403 mio_full_f2k_derived (gfc_symbol *sym)
3405 mio_lparen ();
3407 if (iomode == IO_OUTPUT)
3409 if (sym->f2k_derived)
3410 mio_f2k_derived (sym->f2k_derived);
3412 else
3414 if (peek_atom () != ATOM_RPAREN)
3416 sym->f2k_derived = gfc_get_namespace (NULL, 0);
3417 mio_f2k_derived (sym->f2k_derived);
3419 else
3420 gcc_assert (!sym->f2k_derived);
3423 mio_rparen ();
3427 /* Unlike most other routines, the address of the symbol node is already
3428 fixed on input and the name/module has already been filled in. */
3430 static void
3431 mio_symbol (gfc_symbol *sym)
3433 int intmod = INTMOD_NONE;
3435 gfc_formal_arglist *formal;
3437 mio_lparen ();
3439 mio_symbol_attribute (&sym->attr);
3440 mio_typespec (&sym->ts);
3442 /* Contained procedures don't have formal namespaces. Instead we output the
3443 procedure namespace. The will contain the formal arguments. */
3444 if (iomode == IO_OUTPUT)
3446 formal = sym->formal;
3447 while (formal && !formal->sym)
3448 formal = formal->next;
3450 if (formal)
3451 mio_namespace_ref (&formal->sym->ns);
3452 else
3453 mio_namespace_ref (&sym->formal_ns);
3455 else
3457 mio_namespace_ref (&sym->formal_ns);
3458 if (sym->formal_ns)
3460 sym->formal_ns->proc_name = sym;
3461 sym->refs++;
3465 /* Save/restore common block links. */
3466 mio_symbol_ref (&sym->common_next);
3468 mio_formal_arglist (&sym->formal);
3470 if (sym->attr.flavor == FL_PARAMETER)
3471 mio_expr (&sym->value);
3473 mio_array_spec (&sym->as);
3475 mio_symbol_ref (&sym->result);
3477 if (sym->attr.cray_pointee)
3478 mio_symbol_ref (&sym->cp_pointer);
3480 /* Note that components are always saved, even if they are supposed
3481 to be private. Component access is checked during searching. */
3483 mio_component_list (&sym->components);
3485 if (sym->components != NULL)
3486 sym->component_access
3487 = MIO_NAME (gfc_access) (sym->component_access, access_types);
3489 /* Load/save the f2k_derived namespace of a derived-type symbol. */
3490 mio_full_f2k_derived (sym);
3492 mio_namelist (sym);
3494 /* Add the fields that say whether this is from an intrinsic module,
3495 and if so, what symbol it is within the module. */
3496 /* mio_integer (&(sym->from_intmod)); */
3497 if (iomode == IO_OUTPUT)
3499 intmod = sym->from_intmod;
3500 mio_integer (&intmod);
3502 else
3504 mio_integer (&intmod);
3505 sym->from_intmod = (intmod_id) intmod;
3508 mio_integer (&(sym->intmod_sym_id));
3510 mio_rparen ();
3514 /************************* Top level subroutines *************************/
3516 /* Given a root symtree node and a symbol, try to find a symtree that
3517 references the symbol that is not a unique name. */
3519 static gfc_symtree *
3520 find_symtree_for_symbol (gfc_symtree *st, gfc_symbol *sym)
3522 gfc_symtree *s = NULL;
3524 if (st == NULL)
3525 return s;
3527 s = find_symtree_for_symbol (st->right, sym);
3528 if (s != NULL)
3529 return s;
3530 s = find_symtree_for_symbol (st->left, sym);
3531 if (s != NULL)
3532 return s;
3534 if (st->n.sym == sym && !check_unique_name (st->name))
3535 return st;
3537 return s;
3541 /* A recursive function to look for a specific symbol by name and by
3542 module. Whilst several symtrees might point to one symbol, its
3543 is sufficient for the purposes here than one exist. Note that
3544 generic interfaces are distinguished as are symbols that have been
3545 renamed in another module. */
3546 static gfc_symtree *
3547 find_symbol (gfc_symtree *st, const char *name,
3548 const char *module, int generic)
3550 int c;
3551 gfc_symtree *retval, *s;
3553 if (st == NULL || st->n.sym == NULL)
3554 return NULL;
3556 c = strcmp (name, st->n.sym->name);
3557 if (c == 0 && st->n.sym->module
3558 && strcmp (module, st->n.sym->module) == 0
3559 && !check_unique_name (st->name))
3561 s = gfc_find_symtree (gfc_current_ns->sym_root, name);
3563 /* Detect symbols that are renamed by use association in another
3564 module by the absence of a symtree and null attr.use_rename,
3565 since the latter is not transmitted in the module file. */
3566 if (((!generic && !st->n.sym->attr.generic)
3567 || (generic && st->n.sym->attr.generic))
3568 && !(s == NULL && !st->n.sym->attr.use_rename))
3569 return st;
3572 retval = find_symbol (st->left, name, module, generic);
3574 if (retval == NULL)
3575 retval = find_symbol (st->right, name, module, generic);
3577 return retval;
3581 /* Skip a list between balanced left and right parens. */
3583 static void
3584 skip_list (void)
3586 int level;
3588 level = 0;
3591 switch (parse_atom ())
3593 case ATOM_LPAREN:
3594 level++;
3595 break;
3597 case ATOM_RPAREN:
3598 level--;
3599 break;
3601 case ATOM_STRING:
3602 gfc_free (atom_string);
3603 break;
3605 case ATOM_NAME:
3606 case ATOM_INTEGER:
3607 break;
3610 while (level > 0);
3614 /* Load operator interfaces from the module. Interfaces are unusual
3615 in that they attach themselves to existing symbols. */
3617 static void
3618 load_operator_interfaces (void)
3620 const char *p;
3621 char name[GFC_MAX_SYMBOL_LEN + 1], module[GFC_MAX_SYMBOL_LEN + 1];
3622 gfc_user_op *uop;
3623 pointer_info *pi = NULL;
3624 int n, i;
3626 mio_lparen ();
3628 while (peek_atom () != ATOM_RPAREN)
3630 mio_lparen ();
3632 mio_internal_string (name);
3633 mio_internal_string (module);
3635 n = number_use_names (name, true);
3636 n = n ? n : 1;
3638 for (i = 1; i <= n; i++)
3640 /* Decide if we need to load this one or not. */
3641 p = find_use_name_n (name, &i, true);
3643 if (p == NULL)
3645 while (parse_atom () != ATOM_RPAREN);
3646 continue;
3649 if (i == 1)
3651 uop = gfc_get_uop (p);
3652 pi = mio_interface_rest (&uop->op);
3654 else
3656 if (gfc_find_uop (p, NULL))
3657 continue;
3658 uop = gfc_get_uop (p);
3659 uop->op = gfc_get_interface ();
3660 uop->op->where = gfc_current_locus;
3661 add_fixup (pi->integer, &uop->op->sym);
3666 mio_rparen ();
3670 /* Load interfaces from the module. Interfaces are unusual in that
3671 they attach themselves to existing symbols. */
3673 static void
3674 load_generic_interfaces (void)
3676 const char *p;
3677 char name[GFC_MAX_SYMBOL_LEN + 1], module[GFC_MAX_SYMBOL_LEN + 1];
3678 gfc_symbol *sym;
3679 gfc_interface *generic = NULL;
3680 int n, i, renamed;
3682 mio_lparen ();
3684 while (peek_atom () != ATOM_RPAREN)
3686 mio_lparen ();
3688 mio_internal_string (name);
3689 mio_internal_string (module);
3691 n = number_use_names (name, false);
3692 renamed = n ? 1 : 0;
3693 n = n ? n : 1;
3695 for (i = 1; i <= n; i++)
3697 gfc_symtree *st;
3698 /* Decide if we need to load this one or not. */
3699 p = find_use_name_n (name, &i, false);
3701 st = find_symbol (gfc_current_ns->sym_root,
3702 name, module_name, 1);
3704 if (!p || gfc_find_symbol (p, NULL, 0, &sym))
3706 /* Skip the specific names for these cases. */
3707 while (i == 1 && parse_atom () != ATOM_RPAREN);
3709 continue;
3712 /* If the symbol exists already and is being USEd without being
3713 in an ONLY clause, do not load a new symtree(11.3.2). */
3714 if (!only_flag && st)
3715 sym = st->n.sym;
3717 if (!sym)
3719 /* Make the symbol inaccessible if it has been added by a USE
3720 statement without an ONLY(11.3.2). */
3721 if (st && only_flag
3722 && !st->n.sym->attr.use_only
3723 && !st->n.sym->attr.use_rename
3724 && strcmp (st->n.sym->module, module_name) == 0)
3726 sym = st->n.sym;
3727 gfc_delete_symtree (&gfc_current_ns->sym_root, name);
3728 st = gfc_get_unique_symtree (gfc_current_ns);
3729 st->n.sym = sym;
3730 sym = NULL;
3732 else if (st)
3734 sym = st->n.sym;
3735 if (strcmp (st->name, p) != 0)
3737 st = gfc_new_symtree (&gfc_current_ns->sym_root, p);
3738 st->n.sym = sym;
3739 sym->refs++;
3743 /* Since we haven't found a valid generic interface, we had
3744 better make one. */
3745 if (!sym)
3747 gfc_get_symbol (p, NULL, &sym);
3748 sym->name = gfc_get_string (name);
3749 sym->module = gfc_get_string (module_name);
3750 sym->attr.flavor = FL_PROCEDURE;
3751 sym->attr.generic = 1;
3752 sym->attr.use_assoc = 1;
3755 else
3757 /* Unless sym is a generic interface, this reference
3758 is ambiguous. */
3759 if (st == NULL)
3760 st = gfc_find_symtree (gfc_current_ns->sym_root, p);
3762 sym = st->n.sym;
3764 if (st && !sym->attr.generic
3765 && sym->module
3766 && strcmp(module, sym->module))
3767 st->ambiguous = 1;
3770 sym->attr.use_only = only_flag;
3771 sym->attr.use_rename = renamed;
3773 if (i == 1)
3775 mio_interface_rest (&sym->generic);
3776 generic = sym->generic;
3778 else if (!sym->generic)
3780 sym->generic = generic;
3781 sym->attr.generic_copy = 1;
3786 mio_rparen ();
3790 /* Load common blocks. */
3792 static void
3793 load_commons (void)
3795 char name[GFC_MAX_SYMBOL_LEN + 1];
3796 gfc_common_head *p;
3798 mio_lparen ();
3800 while (peek_atom () != ATOM_RPAREN)
3802 int flags;
3803 mio_lparen ();
3804 mio_internal_string (name);
3806 p = gfc_get_common (name, 1);
3808 mio_symbol_ref (&p->head);
3809 mio_integer (&flags);
3810 if (flags & 1)
3811 p->saved = 1;
3812 if (flags & 2)
3813 p->threadprivate = 1;
3814 p->use_assoc = 1;
3816 /* Get whether this was a bind(c) common or not. */
3817 mio_integer (&p->is_bind_c);
3818 /* Get the binding label. */
3819 mio_internal_string (p->binding_label);
3821 mio_rparen ();
3824 mio_rparen ();
3828 /* Load equivalences. The flag in_load_equiv informs mio_expr_ref of this
3829 so that unused variables are not loaded and so that the expression can
3830 be safely freed. */
3832 static void
3833 load_equiv (void)
3835 gfc_equiv *head, *tail, *end, *eq;
3836 bool unused;
3838 mio_lparen ();
3839 in_load_equiv = true;
3841 end = gfc_current_ns->equiv;
3842 while (end != NULL && end->next != NULL)
3843 end = end->next;
3845 while (peek_atom () != ATOM_RPAREN) {
3846 mio_lparen ();
3847 head = tail = NULL;
3849 while(peek_atom () != ATOM_RPAREN)
3851 if (head == NULL)
3852 head = tail = gfc_get_equiv ();
3853 else
3855 tail->eq = gfc_get_equiv ();
3856 tail = tail->eq;
3859 mio_pool_string (&tail->module);
3860 mio_expr (&tail->expr);
3863 /* Unused equivalence members have a unique name. In addition, it
3864 must be checked that the symbols are from the same module. */
3865 unused = true;
3866 for (eq = head; eq; eq = eq->eq)
3868 if (eq->expr->symtree->n.sym->module
3869 && head->expr->symtree->n.sym->module
3870 && strcmp (head->expr->symtree->n.sym->module,
3871 eq->expr->symtree->n.sym->module) == 0
3872 && !check_unique_name (eq->expr->symtree->name))
3874 unused = false;
3875 break;
3879 if (unused)
3881 for (eq = head; eq; eq = head)
3883 head = eq->eq;
3884 gfc_free_expr (eq->expr);
3885 gfc_free (eq);
3889 if (end == NULL)
3890 gfc_current_ns->equiv = head;
3891 else
3892 end->next = head;
3894 if (head != NULL)
3895 end = head;
3897 mio_rparen ();
3900 mio_rparen ();
3901 in_load_equiv = false;
3905 /* Recursive function to traverse the pointer_info tree and load a
3906 needed symbol. We return nonzero if we load a symbol and stop the
3907 traversal, because the act of loading can alter the tree. */
3909 static int
3910 load_needed (pointer_info *p)
3912 gfc_namespace *ns;
3913 pointer_info *q;
3914 gfc_symbol *sym;
3915 int rv;
3917 rv = 0;
3918 if (p == NULL)
3919 return rv;
3921 rv |= load_needed (p->left);
3922 rv |= load_needed (p->right);
3924 if (p->type != P_SYMBOL || p->u.rsym.state != NEEDED)
3925 return rv;
3927 p->u.rsym.state = USED;
3929 set_module_locus (&p->u.rsym.where);
3931 sym = p->u.rsym.sym;
3932 if (sym == NULL)
3934 q = get_integer (p->u.rsym.ns);
3936 ns = (gfc_namespace *) q->u.pointer;
3937 if (ns == NULL)
3939 /* Create an interface namespace if necessary. These are
3940 the namespaces that hold the formal parameters of module
3941 procedures. */
3943 ns = gfc_get_namespace (NULL, 0);
3944 associate_integer_pointer (q, ns);
3947 /* Use the module sym as 'proc_name' so that gfc_get_symbol_decl
3948 doesn't go pear-shaped if the symbol is used. */
3949 if (!ns->proc_name)
3950 gfc_find_symbol (p->u.rsym.module, gfc_current_ns,
3951 1, &ns->proc_name);
3953 sym = gfc_new_symbol (p->u.rsym.true_name, ns);
3954 sym->module = gfc_get_string (p->u.rsym.module);
3955 strcpy (sym->binding_label, p->u.rsym.binding_label);
3957 associate_integer_pointer (p, sym);
3960 mio_symbol (sym);
3961 sym->attr.use_assoc = 1;
3962 if (only_flag)
3963 sym->attr.use_only = 1;
3964 if (p->u.rsym.renamed)
3965 sym->attr.use_rename = 1;
3967 return 1;
3971 /* Recursive function for cleaning up things after a module has been read. */
3973 static void
3974 read_cleanup (pointer_info *p)
3976 gfc_symtree *st;
3977 pointer_info *q;
3979 if (p == NULL)
3980 return;
3982 read_cleanup (p->left);
3983 read_cleanup (p->right);
3985 if (p->type == P_SYMBOL && p->u.rsym.state == USED && !p->u.rsym.referenced)
3987 /* Add hidden symbols to the symtree. */
3988 q = get_integer (p->u.rsym.ns);
3989 st = gfc_get_unique_symtree ((gfc_namespace *) q->u.pointer);
3991 st->n.sym = p->u.rsym.sym;
3992 st->n.sym->refs++;
3994 /* Fixup any symtree references. */
3995 p->u.rsym.symtree = st;
3996 resolve_fixups (p->u.rsym.stfixup, st);
3997 p->u.rsym.stfixup = NULL;
4000 /* Free unused symbols. */
4001 if (p->type == P_SYMBOL && p->u.rsym.state == UNUSED)
4002 gfc_free_symbol (p->u.rsym.sym);
4006 /* It is not quite enough to check for ambiguity in the symbols by
4007 the loaded symbol and the new symbol not being identical. */
4008 static bool
4009 check_for_ambiguous (gfc_symbol *st_sym, pointer_info *info)
4011 gfc_symbol *rsym;
4012 module_locus locus;
4013 symbol_attribute attr;
4015 rsym = info->u.rsym.sym;
4016 if (st_sym == rsym)
4017 return false;
4019 /* If the existing symbol is generic from a different module and
4020 the new symbol is generic there can be no ambiguity. */
4021 if (st_sym->attr.generic
4022 && st_sym->module
4023 && strcmp (st_sym->module, module_name))
4025 /* The new symbol's attributes have not yet been read. Since
4026 we need attr.generic, read it directly. */
4027 get_module_locus (&locus);
4028 set_module_locus (&info->u.rsym.where);
4029 mio_lparen ();
4030 attr.generic = 0;
4031 mio_symbol_attribute (&attr);
4032 set_module_locus (&locus);
4033 if (attr.generic)
4034 return false;
4037 return true;
4041 /* Read a module file. */
4043 static void
4044 read_module (void)
4046 module_locus operator_interfaces, user_operators;
4047 const char *p;
4048 char name[GFC_MAX_SYMBOL_LEN + 1];
4049 int i;
4050 int ambiguous, j, nuse, symbol;
4051 pointer_info *info, *q;
4052 gfc_use_rename *u;
4053 gfc_symtree *st;
4054 gfc_symbol *sym;
4056 get_module_locus (&operator_interfaces); /* Skip these for now. */
4057 skip_list ();
4059 get_module_locus (&user_operators);
4060 skip_list ();
4061 skip_list ();
4063 /* Skip commons and equivalences for now. */
4064 skip_list ();
4065 skip_list ();
4067 mio_lparen ();
4069 /* Create the fixup nodes for all the symbols. */
4071 while (peek_atom () != ATOM_RPAREN)
4073 require_atom (ATOM_INTEGER);
4074 info = get_integer (atom_int);
4076 info->type = P_SYMBOL;
4077 info->u.rsym.state = UNUSED;
4079 mio_internal_string (info->u.rsym.true_name);
4080 mio_internal_string (info->u.rsym.module);
4081 mio_internal_string (info->u.rsym.binding_label);
4084 require_atom (ATOM_INTEGER);
4085 info->u.rsym.ns = atom_int;
4087 get_module_locus (&info->u.rsym.where);
4088 skip_list ();
4090 /* See if the symbol has already been loaded by a previous module.
4091 If so, we reference the existing symbol and prevent it from
4092 being loaded again. This should not happen if the symbol being
4093 read is an index for an assumed shape dummy array (ns != 1). */
4095 sym = find_true_name (info->u.rsym.true_name, info->u.rsym.module);
4097 if (sym == NULL
4098 || (sym->attr.flavor == FL_VARIABLE && info->u.rsym.ns !=1))
4099 continue;
4101 info->u.rsym.state = USED;
4102 info->u.rsym.sym = sym;
4104 /* Some symbols do not have a namespace (eg. formal arguments),
4105 so the automatic "unique symtree" mechanism must be suppressed
4106 by marking them as referenced. */
4107 q = get_integer (info->u.rsym.ns);
4108 if (q->u.pointer == NULL)
4110 info->u.rsym.referenced = 1;
4111 continue;
4114 /* If possible recycle the symtree that references the symbol.
4115 If a symtree is not found and the module does not import one,
4116 a unique-name symtree is found by read_cleanup. */
4117 st = find_symtree_for_symbol (gfc_current_ns->sym_root, sym);
4118 if (st != NULL)
4120 info->u.rsym.symtree = st;
4121 info->u.rsym.referenced = 1;
4125 mio_rparen ();
4127 /* Parse the symtree lists. This lets us mark which symbols need to
4128 be loaded. Renaming is also done at this point by replacing the
4129 symtree name. */
4131 mio_lparen ();
4133 while (peek_atom () != ATOM_RPAREN)
4135 mio_internal_string (name);
4136 mio_integer (&ambiguous);
4137 mio_integer (&symbol);
4139 info = get_integer (symbol);
4141 /* See how many use names there are. If none, go through the start
4142 of the loop at least once. */
4143 nuse = number_use_names (name, false);
4144 info->u.rsym.renamed = nuse ? 1 : 0;
4146 if (nuse == 0)
4147 nuse = 1;
4149 for (j = 1; j <= nuse; j++)
4151 /* Get the jth local name for this symbol. */
4152 p = find_use_name_n (name, &j, false);
4154 if (p == NULL && strcmp (name, module_name) == 0)
4155 p = name;
4157 /* Skip symtree nodes not in an ONLY clause, unless there
4158 is an existing symtree loaded from another USE statement. */
4159 if (p == NULL)
4161 st = gfc_find_symtree (gfc_current_ns->sym_root, name);
4162 if (st != NULL)
4163 info->u.rsym.symtree = st;
4164 continue;
4167 /* If a symbol of the same name and module exists already,
4168 this symbol, which is not in an ONLY clause, must not be
4169 added to the namespace(11.3.2). Note that find_symbol
4170 only returns the first occurrence that it finds. */
4171 if (!only_flag && !info->u.rsym.renamed
4172 && strcmp (name, module_name) != 0
4173 && find_symbol (gfc_current_ns->sym_root, name,
4174 module_name, 0))
4175 continue;
4177 st = gfc_find_symtree (gfc_current_ns->sym_root, p);
4179 if (st != NULL)
4181 /* Check for ambiguous symbols. */
4182 if (check_for_ambiguous (st->n.sym, info))
4183 st->ambiguous = 1;
4184 info->u.rsym.symtree = st;
4186 else
4188 st = gfc_find_symtree (gfc_current_ns->sym_root, name);
4190 /* Delete the symtree if the symbol has been added by a USE
4191 statement without an ONLY(11.3.2). Remember that the rsym
4192 will be the same as the symbol found in the symtree, for
4193 this case. */
4194 if (st && (only_flag || info->u.rsym.renamed)
4195 && !st->n.sym->attr.use_only
4196 && !st->n.sym->attr.use_rename
4197 && info->u.rsym.sym == st->n.sym)
4198 gfc_delete_symtree (&gfc_current_ns->sym_root, name);
4200 /* Create a symtree node in the current namespace for this
4201 symbol. */
4202 st = check_unique_name (p)
4203 ? gfc_get_unique_symtree (gfc_current_ns)
4204 : gfc_new_symtree (&gfc_current_ns->sym_root, p);
4205 st->ambiguous = ambiguous;
4207 sym = info->u.rsym.sym;
4209 /* Create a symbol node if it doesn't already exist. */
4210 if (sym == NULL)
4212 info->u.rsym.sym = gfc_new_symbol (info->u.rsym.true_name,
4213 gfc_current_ns);
4214 sym = info->u.rsym.sym;
4215 sym->module = gfc_get_string (info->u.rsym.module);
4217 /* TODO: hmm, can we test this? Do we know it will be
4218 initialized to zeros? */
4219 if (info->u.rsym.binding_label[0] != '\0')
4220 strcpy (sym->binding_label, info->u.rsym.binding_label);
4223 st->n.sym = sym;
4224 st->n.sym->refs++;
4226 if (strcmp (name, p) != 0)
4227 sym->attr.use_rename = 1;
4229 /* We need to set the only_flag here so that symbols from the
4230 same USE...ONLY but earlier are not deleted from the tree in
4231 the gfc_delete_symtree above. */
4232 sym->attr.use_only = only_flag;
4234 /* Store the symtree pointing to this symbol. */
4235 info->u.rsym.symtree = st;
4237 if (info->u.rsym.state == UNUSED)
4238 info->u.rsym.state = NEEDED;
4239 info->u.rsym.referenced = 1;
4244 mio_rparen ();
4246 /* Load intrinsic operator interfaces. */
4247 set_module_locus (&operator_interfaces);
4248 mio_lparen ();
4250 for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
4252 if (i == INTRINSIC_USER)
4253 continue;
4255 if (only_flag)
4257 u = find_use_operator ((gfc_intrinsic_op) i);
4259 if (u == NULL)
4261 skip_list ();
4262 continue;
4265 u->found = 1;
4268 mio_interface (&gfc_current_ns->op[i]);
4271 mio_rparen ();
4273 /* Load generic and user operator interfaces. These must follow the
4274 loading of symtree because otherwise symbols can be marked as
4275 ambiguous. */
4277 set_module_locus (&user_operators);
4279 load_operator_interfaces ();
4280 load_generic_interfaces ();
4282 load_commons ();
4283 load_equiv ();
4285 /* At this point, we read those symbols that are needed but haven't
4286 been loaded yet. If one symbol requires another, the other gets
4287 marked as NEEDED if its previous state was UNUSED. */
4289 while (load_needed (pi_root));
4291 /* Make sure all elements of the rename-list were found in the module. */
4293 for (u = gfc_rename_list; u; u = u->next)
4295 if (u->found)
4296 continue;
4298 if (u->op == INTRINSIC_NONE)
4300 gfc_error ("Symbol '%s' referenced at %L not found in module '%s'",
4301 u->use_name, &u->where, module_name);
4302 continue;
4305 if (u->op == INTRINSIC_USER)
4307 gfc_error ("User operator '%s' referenced at %L not found "
4308 "in module '%s'", u->use_name, &u->where, module_name);
4309 continue;
4312 gfc_error ("Intrinsic operator '%s' referenced at %L not found "
4313 "in module '%s'", gfc_op2string (u->op), &u->where,
4314 module_name);
4317 gfc_check_interfaces (gfc_current_ns);
4319 /* Clean up symbol nodes that were never loaded, create references
4320 to hidden symbols. */
4322 read_cleanup (pi_root);
4326 /* Given an access type that is specific to an entity and the default
4327 access, return nonzero if the entity is publicly accessible. If the
4328 element is declared as PUBLIC, then it is public; if declared
4329 PRIVATE, then private, and otherwise it is public unless the default
4330 access in this context has been declared PRIVATE. */
4332 bool
4333 gfc_check_access (gfc_access specific_access, gfc_access default_access)
4335 if (specific_access == ACCESS_PUBLIC)
4336 return TRUE;
4337 if (specific_access == ACCESS_PRIVATE)
4338 return FALSE;
4340 if (gfc_option.flag_module_private)
4341 return default_access == ACCESS_PUBLIC;
4342 else
4343 return default_access != ACCESS_PRIVATE;
4347 /* A structure to remember which commons we've already written. */
4349 struct written_common
4351 BBT_HEADER(written_common);
4352 const char *name, *label;
4355 static struct written_common *written_commons = NULL;
4357 /* Comparison function used for balancing the binary tree. */
4359 static int
4360 compare_written_commons (void *a1, void *b1)
4362 const char *aname = ((struct written_common *) a1)->name;
4363 const char *alabel = ((struct written_common *) a1)->label;
4364 const char *bname = ((struct written_common *) b1)->name;
4365 const char *blabel = ((struct written_common *) b1)->label;
4366 int c = strcmp (aname, bname);
4368 return (c != 0 ? c : strcmp (alabel, blabel));
4371 /* Free a list of written commons. */
4373 static void
4374 free_written_common (struct written_common *w)
4376 if (!w)
4377 return;
4379 if (w->left)
4380 free_written_common (w->left);
4381 if (w->right)
4382 free_written_common (w->right);
4384 gfc_free (w);
4387 /* Write a common block to the module -- recursive helper function. */
4389 static void
4390 write_common_0 (gfc_symtree *st, bool this_module)
4392 gfc_common_head *p;
4393 const char * name;
4394 int flags;
4395 const char *label;
4396 struct written_common *w;
4397 bool write_me = true;
4399 if (st == NULL)
4400 return;
4402 write_common_0 (st->left, this_module);
4404 /* We will write out the binding label, or the name if no label given. */
4405 name = st->n.common->name;
4406 p = st->n.common;
4407 label = p->is_bind_c ? p->binding_label : p->name;
4409 /* Check if we've already output this common. */
4410 w = written_commons;
4411 while (w)
4413 int c = strcmp (name, w->name);
4414 c = (c != 0 ? c : strcmp (label, w->label));
4415 if (c == 0)
4416 write_me = false;
4418 w = (c < 0) ? w->left : w->right;
4421 if (this_module && p->use_assoc)
4422 write_me = false;
4424 if (write_me)
4426 /* Write the common to the module. */
4427 mio_lparen ();
4428 mio_pool_string (&name);
4430 mio_symbol_ref (&p->head);
4431 flags = p->saved ? 1 : 0;
4432 if (p->threadprivate)
4433 flags |= 2;
4434 mio_integer (&flags);
4436 /* Write out whether the common block is bind(c) or not. */
4437 mio_integer (&(p->is_bind_c));
4439 mio_pool_string (&label);
4440 mio_rparen ();
4442 /* Record that we have written this common. */
4443 w = XCNEW (struct written_common);
4444 w->name = p->name;
4445 w->label = label;
4446 gfc_insert_bbt (&written_commons, w, compare_written_commons);
4449 write_common_0 (st->right, this_module);
4453 /* Write a common, by initializing the list of written commons, calling
4454 the recursive function write_common_0() and cleaning up afterwards. */
4456 static void
4457 write_common (gfc_symtree *st)
4459 written_commons = NULL;
4460 write_common_0 (st, true);
4461 write_common_0 (st, false);
4462 free_written_common (written_commons);
4463 written_commons = NULL;
4467 /* Write the blank common block to the module. */
4469 static void
4470 write_blank_common (void)
4472 const char * name = BLANK_COMMON_NAME;
4473 int saved;
4474 /* TODO: Blank commons are not bind(c). The F2003 standard probably says
4475 this, but it hasn't been checked. Just making it so for now. */
4476 int is_bind_c = 0;
4478 if (gfc_current_ns->blank_common.head == NULL)
4479 return;
4481 mio_lparen ();
4483 mio_pool_string (&name);
4485 mio_symbol_ref (&gfc_current_ns->blank_common.head);
4486 saved = gfc_current_ns->blank_common.saved;
4487 mio_integer (&saved);
4489 /* Write out whether the common block is bind(c) or not. */
4490 mio_integer (&is_bind_c);
4492 /* Write out the binding label, which is BLANK_COMMON_NAME, though
4493 it doesn't matter because the label isn't used. */
4494 mio_pool_string (&name);
4496 mio_rparen ();
4500 /* Write equivalences to the module. */
4502 static void
4503 write_equiv (void)
4505 gfc_equiv *eq, *e;
4506 int num;
4508 num = 0;
4509 for (eq = gfc_current_ns->equiv; eq; eq = eq->next)
4511 mio_lparen ();
4513 for (e = eq; e; e = e->eq)
4515 if (e->module == NULL)
4516 e->module = gfc_get_string ("%s.eq.%d", module_name, num);
4517 mio_allocated_string (e->module);
4518 mio_expr (&e->expr);
4521 num++;
4522 mio_rparen ();
4527 /* Write a symbol to the module. */
4529 static void
4530 write_symbol (int n, gfc_symbol *sym)
4532 const char *label;
4534 if (sym->attr.flavor == FL_UNKNOWN || sym->attr.flavor == FL_LABEL)
4535 gfc_internal_error ("write_symbol(): bad module symbol '%s'", sym->name);
4537 mio_integer (&n);
4538 mio_pool_string (&sym->name);
4540 mio_pool_string (&sym->module);
4541 if (sym->attr.is_bind_c || sym->attr.is_iso_c)
4543 label = sym->binding_label;
4544 mio_pool_string (&label);
4546 else
4547 mio_pool_string (&sym->name);
4549 mio_pointer_ref (&sym->ns);
4551 mio_symbol (sym);
4552 write_char ('\n');
4556 /* Recursive traversal function to write the initial set of symbols to
4557 the module. We check to see if the symbol should be written
4558 according to the access specification. */
4560 static void
4561 write_symbol0 (gfc_symtree *st)
4563 gfc_symbol *sym;
4564 pointer_info *p;
4565 bool dont_write = false;
4567 if (st == NULL)
4568 return;
4570 write_symbol0 (st->left);
4572 sym = st->n.sym;
4573 if (sym->module == NULL)
4574 sym->module = gfc_get_string (module_name);
4576 if (sym->attr.flavor == FL_PROCEDURE && sym->attr.generic
4577 && !sym->attr.subroutine && !sym->attr.function)
4578 dont_write = true;
4580 if (!gfc_check_access (sym->attr.access, sym->ns->default_access))
4581 dont_write = true;
4583 if (!dont_write)
4585 p = get_pointer (sym);
4586 if (p->type == P_UNKNOWN)
4587 p->type = P_SYMBOL;
4589 if (p->u.wsym.state != WRITTEN)
4591 write_symbol (p->integer, sym);
4592 p->u.wsym.state = WRITTEN;
4596 write_symbol0 (st->right);
4600 /* Recursive traversal function to write the secondary set of symbols
4601 to the module file. These are symbols that were not public yet are
4602 needed by the public symbols or another dependent symbol. The act
4603 of writing a symbol can modify the pointer_info tree, so we cease
4604 traversal if we find a symbol to write. We return nonzero if a
4605 symbol was written and pass that information upwards. */
4607 static int
4608 write_symbol1 (pointer_info *p)
4610 int result;
4612 if (!p)
4613 return 0;
4615 result = write_symbol1 (p->left);
4617 if (!(p->type != P_SYMBOL || p->u.wsym.state != NEEDS_WRITE))
4619 p->u.wsym.state = WRITTEN;
4620 write_symbol (p->integer, p->u.wsym.sym);
4621 result = 1;
4624 result |= write_symbol1 (p->right);
4625 return result;
4629 /* Write operator interfaces associated with a symbol. */
4631 static void
4632 write_operator (gfc_user_op *uop)
4634 static char nullstring[] = "";
4635 const char *p = nullstring;
4637 if (uop->op == NULL
4638 || !gfc_check_access (uop->access, uop->ns->default_access))
4639 return;
4641 mio_symbol_interface (&uop->name, &p, &uop->op);
4645 /* Write generic interfaces from the namespace sym_root. */
4647 static void
4648 write_generic (gfc_symtree *st)
4650 gfc_symbol *sym;
4652 if (st == NULL)
4653 return;
4655 write_generic (st->left);
4656 write_generic (st->right);
4658 sym = st->n.sym;
4659 if (!sym || check_unique_name (st->name))
4660 return;
4662 if (sym->generic == NULL
4663 || !gfc_check_access (sym->attr.access, sym->ns->default_access))
4664 return;
4666 if (sym->module == NULL)
4667 sym->module = gfc_get_string (module_name);
4669 mio_symbol_interface (&st->name, &sym->module, &sym->generic);
4673 static void
4674 write_symtree (gfc_symtree *st)
4676 gfc_symbol *sym;
4677 pointer_info *p;
4679 sym = st->n.sym;
4681 /* A symbol in an interface body must not be visible in the
4682 module file. */
4683 if (sym->ns != gfc_current_ns
4684 && sym->ns->proc_name
4685 && sym->ns->proc_name->attr.if_source == IFSRC_IFBODY)
4686 return;
4688 if (!gfc_check_access (sym->attr.access, sym->ns->default_access)
4689 || (sym->attr.flavor == FL_PROCEDURE && sym->attr.generic
4690 && !sym->attr.subroutine && !sym->attr.function))
4691 return;
4693 if (check_unique_name (st->name))
4694 return;
4696 p = find_pointer (sym);
4697 if (p == NULL)
4698 gfc_internal_error ("write_symtree(): Symbol not written");
4700 mio_pool_string (&st->name);
4701 mio_integer (&st->ambiguous);
4702 mio_integer (&p->integer);
4706 static void
4707 write_module (void)
4709 int i;
4711 /* Write the operator interfaces. */
4712 mio_lparen ();
4714 for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
4716 if (i == INTRINSIC_USER)
4717 continue;
4719 mio_interface (gfc_check_access (gfc_current_ns->operator_access[i],
4720 gfc_current_ns->default_access)
4721 ? &gfc_current_ns->op[i] : NULL);
4724 mio_rparen ();
4725 write_char ('\n');
4726 write_char ('\n');
4728 mio_lparen ();
4729 gfc_traverse_user_op (gfc_current_ns, write_operator);
4730 mio_rparen ();
4731 write_char ('\n');
4732 write_char ('\n');
4734 mio_lparen ();
4735 write_generic (gfc_current_ns->sym_root);
4736 mio_rparen ();
4737 write_char ('\n');
4738 write_char ('\n');
4740 mio_lparen ();
4741 write_blank_common ();
4742 write_common (gfc_current_ns->common_root);
4743 mio_rparen ();
4744 write_char ('\n');
4745 write_char ('\n');
4747 mio_lparen ();
4748 write_equiv ();
4749 mio_rparen ();
4750 write_char ('\n');
4751 write_char ('\n');
4753 /* Write symbol information. First we traverse all symbols in the
4754 primary namespace, writing those that need to be written.
4755 Sometimes writing one symbol will cause another to need to be
4756 written. A list of these symbols ends up on the write stack, and
4757 we end by popping the bottom of the stack and writing the symbol
4758 until the stack is empty. */
4760 mio_lparen ();
4762 write_symbol0 (gfc_current_ns->sym_root);
4763 while (write_symbol1 (pi_root))
4764 /* Nothing. */;
4766 mio_rparen ();
4768 write_char ('\n');
4769 write_char ('\n');
4771 mio_lparen ();
4772 gfc_traverse_symtree (gfc_current_ns->sym_root, write_symtree);
4773 mio_rparen ();
4777 /* Read a MD5 sum from the header of a module file. If the file cannot
4778 be opened, or we have any other error, we return -1. */
4780 static int
4781 read_md5_from_module_file (const char * filename, unsigned char md5[16])
4783 FILE *file;
4784 char buf[1024];
4785 int n;
4787 /* Open the file. */
4788 if ((file = fopen (filename, "r")) == NULL)
4789 return -1;
4791 /* Read the first line. */
4792 if (fgets (buf, sizeof (buf) - 1, file) == NULL)
4794 fclose (file);
4795 return -1;
4798 /* The file also needs to be overwritten if the version number changed. */
4799 n = strlen ("GFORTRAN module version '" MOD_VERSION "' created");
4800 if (strncmp (buf, "GFORTRAN module version '" MOD_VERSION "' created", n) != 0)
4802 fclose (file);
4803 return -1;
4806 /* Read a second line. */
4807 if (fgets (buf, sizeof (buf) - 1, file) == NULL)
4809 fclose (file);
4810 return -1;
4813 /* Close the file. */
4814 fclose (file);
4816 /* If the header is not what we expect, or is too short, bail out. */
4817 if (strncmp (buf, "MD5:", 4) != 0 || strlen (buf) < 4 + 16)
4818 return -1;
4820 /* Now, we have a real MD5, read it into the array. */
4821 for (n = 0; n < 16; n++)
4823 unsigned int x;
4825 if (sscanf (&(buf[4+2*n]), "%02x", &x) != 1)
4826 return -1;
4828 md5[n] = x;
4831 return 0;
4835 /* Given module, dump it to disk. If there was an error while
4836 processing the module, dump_flag will be set to zero and we delete
4837 the module file, even if it was already there. */
4839 void
4840 gfc_dump_module (const char *name, int dump_flag)
4842 int n;
4843 char *filename, *filename_tmp, *p;
4844 time_t now;
4845 fpos_t md5_pos;
4846 unsigned char md5_new[16], md5_old[16];
4848 n = strlen (name) + strlen (MODULE_EXTENSION) + 1;
4849 if (gfc_option.module_dir != NULL)
4851 n += strlen (gfc_option.module_dir);
4852 filename = (char *) alloca (n);
4853 strcpy (filename, gfc_option.module_dir);
4854 strcat (filename, name);
4856 else
4858 filename = (char *) alloca (n);
4859 strcpy (filename, name);
4861 strcat (filename, MODULE_EXTENSION);
4863 /* Name of the temporary file used to write the module. */
4864 filename_tmp = (char *) alloca (n + 1);
4865 strcpy (filename_tmp, filename);
4866 strcat (filename_tmp, "0");
4868 /* There was an error while processing the module. We delete the
4869 module file, even if it was already there. */
4870 if (!dump_flag)
4872 unlink (filename);
4873 return;
4876 /* Write the module to the temporary file. */
4877 module_fp = fopen (filename_tmp, "w");
4878 if (module_fp == NULL)
4879 gfc_fatal_error ("Can't open module file '%s' for writing at %C: %s",
4880 filename_tmp, strerror (errno));
4882 /* Write the header, including space reserved for the MD5 sum. */
4883 now = time (NULL);
4884 p = ctime (&now);
4886 *strchr (p, '\n') = '\0';
4888 fprintf (module_fp, "GFORTRAN module version '%s' created from %s on %s\n"
4889 "MD5:", MOD_VERSION, gfc_source_file, p);
4890 fgetpos (module_fp, &md5_pos);
4891 fputs ("00000000000000000000000000000000 -- "
4892 "If you edit this, you'll get what you deserve.\n\n", module_fp);
4894 /* Initialize the MD5 context that will be used for output. */
4895 md5_init_ctx (&ctx);
4897 /* Write the module itself. */
4898 iomode = IO_OUTPUT;
4899 strcpy (module_name, name);
4901 init_pi_tree ();
4903 write_module ();
4905 free_pi_tree (pi_root);
4906 pi_root = NULL;
4908 write_char ('\n');
4910 /* Write the MD5 sum to the header of the module file. */
4911 md5_finish_ctx (&ctx, md5_new);
4912 fsetpos (module_fp, &md5_pos);
4913 for (n = 0; n < 16; n++)
4914 fprintf (module_fp, "%02x", md5_new[n]);
4916 if (fclose (module_fp))
4917 gfc_fatal_error ("Error writing module file '%s' for writing: %s",
4918 filename_tmp, strerror (errno));
4920 /* Read the MD5 from the header of the old module file and compare. */
4921 if (read_md5_from_module_file (filename, md5_old) != 0
4922 || memcmp (md5_old, md5_new, sizeof (md5_old)) != 0)
4924 /* Module file have changed, replace the old one. */
4925 if (unlink (filename) && errno != ENOENT)
4926 gfc_fatal_error ("Can't delete module file '%s': %s", filename,
4927 strerror (errno));
4928 if (rename (filename_tmp, filename))
4929 gfc_fatal_error ("Can't rename module file '%s' to '%s': %s",
4930 filename_tmp, filename, strerror (errno));
4932 else
4934 if (unlink (filename_tmp))
4935 gfc_fatal_error ("Can't delete temporary module file '%s': %s",
4936 filename_tmp, strerror (errno));
4941 static void
4942 sort_iso_c_rename_list (void)
4944 gfc_use_rename *tmp_list = NULL;
4945 gfc_use_rename *curr;
4946 gfc_use_rename *kinds_used[ISOCBINDING_NUMBER] = {NULL};
4947 int c_kind;
4948 int i;
4950 for (curr = gfc_rename_list; curr; curr = curr->next)
4952 c_kind = get_c_kind (curr->use_name, c_interop_kinds_table);
4953 if (c_kind == ISOCBINDING_INVALID || c_kind == ISOCBINDING_LAST)
4955 gfc_error ("Symbol '%s' referenced at %L does not exist in "
4956 "intrinsic module ISO_C_BINDING.", curr->use_name,
4957 &curr->where);
4959 else
4960 /* Put it in the list. */
4961 kinds_used[c_kind] = curr;
4964 /* Make a new (sorted) rename list. */
4965 i = 0;
4966 while (i < ISOCBINDING_NUMBER && kinds_used[i] == NULL)
4967 i++;
4969 if (i < ISOCBINDING_NUMBER)
4971 tmp_list = kinds_used[i];
4973 i++;
4974 curr = tmp_list;
4975 for (; i < ISOCBINDING_NUMBER; i++)
4976 if (kinds_used[i] != NULL)
4978 curr->next = kinds_used[i];
4979 curr = curr->next;
4980 curr->next = NULL;
4984 gfc_rename_list = tmp_list;
4988 /* Import the intrinsic ISO_C_BINDING module, generating symbols in
4989 the current namespace for all named constants, pointer types, and
4990 procedures in the module unless the only clause was used or a rename
4991 list was provided. */
4993 static void
4994 import_iso_c_binding_module (void)
4996 gfc_symbol *mod_sym = NULL;
4997 gfc_symtree *mod_symtree = NULL;
4998 const char *iso_c_module_name = "__iso_c_binding";
4999 gfc_use_rename *u;
5000 int i;
5001 char *local_name;
5003 /* Look only in the current namespace. */
5004 mod_symtree = gfc_find_symtree (gfc_current_ns->sym_root, iso_c_module_name);
5006 if (mod_symtree == NULL)
5008 /* symtree doesn't already exist in current namespace. */
5009 gfc_get_sym_tree (iso_c_module_name, gfc_current_ns, &mod_symtree);
5011 if (mod_symtree != NULL)
5012 mod_sym = mod_symtree->n.sym;
5013 else
5014 gfc_internal_error ("import_iso_c_binding_module(): Unable to "
5015 "create symbol for %s", iso_c_module_name);
5017 mod_sym->attr.flavor = FL_MODULE;
5018 mod_sym->attr.intrinsic = 1;
5019 mod_sym->module = gfc_get_string (iso_c_module_name);
5020 mod_sym->from_intmod = INTMOD_ISO_C_BINDING;
5023 /* Generate the symbols for the named constants representing
5024 the kinds for intrinsic data types. */
5025 if (only_flag)
5027 /* Sort the rename list because there are dependencies between types
5028 and procedures (e.g., c_loc needs c_ptr). */
5029 sort_iso_c_rename_list ();
5031 for (u = gfc_rename_list; u; u = u->next)
5033 i = get_c_kind (u->use_name, c_interop_kinds_table);
5035 if (i == ISOCBINDING_INVALID || i == ISOCBINDING_LAST)
5037 gfc_error ("Symbol '%s' referenced at %L does not exist in "
5038 "intrinsic module ISO_C_BINDING.", u->use_name,
5039 &u->where);
5040 continue;
5043 generate_isocbinding_symbol (iso_c_module_name,
5044 (iso_c_binding_symbol) i,
5045 u->local_name);
5048 else
5050 for (i = 0; i < ISOCBINDING_NUMBER; i++)
5052 local_name = NULL;
5053 for (u = gfc_rename_list; u; u = u->next)
5055 if (strcmp (c_interop_kinds_table[i].name, u->use_name) == 0)
5057 local_name = u->local_name;
5058 u->found = 1;
5059 break;
5062 generate_isocbinding_symbol (iso_c_module_name,
5063 (iso_c_binding_symbol) i,
5064 local_name);
5067 for (u = gfc_rename_list; u; u = u->next)
5069 if (u->found)
5070 continue;
5072 gfc_error ("Symbol '%s' referenced at %L not found in intrinsic "
5073 "module ISO_C_BINDING", u->use_name, &u->where);
5079 /* Add an integer named constant from a given module. */
5081 static void
5082 create_int_parameter (const char *name, int value, const char *modname,
5083 intmod_id module, int id)
5085 gfc_symtree *tmp_symtree;
5086 gfc_symbol *sym;
5088 tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
5089 if (tmp_symtree != NULL)
5091 if (strcmp (modname, tmp_symtree->n.sym->module) == 0)
5092 return;
5093 else
5094 gfc_error ("Symbol '%s' already declared", name);
5097 gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree);
5098 sym = tmp_symtree->n.sym;
5100 sym->module = gfc_get_string (modname);
5101 sym->attr.flavor = FL_PARAMETER;
5102 sym->ts.type = BT_INTEGER;
5103 sym->ts.kind = gfc_default_integer_kind;
5104 sym->value = gfc_int_expr (value);
5105 sym->attr.use_assoc = 1;
5106 sym->from_intmod = module;
5107 sym->intmod_sym_id = id;
5111 /* USE the ISO_FORTRAN_ENV intrinsic module. */
5113 static void
5114 use_iso_fortran_env_module (void)
5116 static char mod[] = "iso_fortran_env";
5117 const char *local_name;
5118 gfc_use_rename *u;
5119 gfc_symbol *mod_sym;
5120 gfc_symtree *mod_symtree;
5121 int i;
5123 intmod_sym symbol[] = {
5124 #define NAMED_INTCST(a,b,c,d) { a, b, 0, d },
5125 #include "iso-fortran-env.def"
5126 #undef NAMED_INTCST
5127 { ISOFORTRANENV_INVALID, NULL, -1234, 0 } };
5129 i = 0;
5130 #define NAMED_INTCST(a,b,c,d) symbol[i++].value = c;
5131 #include "iso-fortran-env.def"
5132 #undef NAMED_INTCST
5134 /* Generate the symbol for the module itself. */
5135 mod_symtree = gfc_find_symtree (gfc_current_ns->sym_root, mod);
5136 if (mod_symtree == NULL)
5138 gfc_get_sym_tree (mod, gfc_current_ns, &mod_symtree);
5139 gcc_assert (mod_symtree);
5140 mod_sym = mod_symtree->n.sym;
5142 mod_sym->attr.flavor = FL_MODULE;
5143 mod_sym->attr.intrinsic = 1;
5144 mod_sym->module = gfc_get_string (mod);
5145 mod_sym->from_intmod = INTMOD_ISO_FORTRAN_ENV;
5147 else
5148 if (!mod_symtree->n.sym->attr.intrinsic)
5149 gfc_error ("Use of intrinsic module '%s' at %C conflicts with "
5150 "non-intrinsic module name used previously", mod);
5152 /* Generate the symbols for the module integer named constants. */
5153 if (only_flag)
5154 for (u = gfc_rename_list; u; u = u->next)
5156 for (i = 0; symbol[i].name; i++)
5157 if (strcmp (symbol[i].name, u->use_name) == 0)
5158 break;
5160 if (symbol[i].name == NULL)
5162 gfc_error ("Symbol '%s' referenced at %L does not exist in "
5163 "intrinsic module ISO_FORTRAN_ENV", u->use_name,
5164 &u->where);
5165 continue;
5168 if ((gfc_option.flag_default_integer || gfc_option.flag_default_real)
5169 && symbol[i].id == ISOFORTRANENV_NUMERIC_STORAGE_SIZE)
5170 gfc_warning_now ("Use of the NUMERIC_STORAGE_SIZE named constant "
5171 "from intrinsic module ISO_FORTRAN_ENV at %L is "
5172 "incompatible with option %s", &u->where,
5173 gfc_option.flag_default_integer
5174 ? "-fdefault-integer-8" : "-fdefault-real-8");
5176 create_int_parameter (u->local_name[0] ? u->local_name
5177 : symbol[i].name,
5178 symbol[i].value, mod, INTMOD_ISO_FORTRAN_ENV,
5179 symbol[i].id);
5181 else
5183 for (i = 0; symbol[i].name; i++)
5185 local_name = NULL;
5186 for (u = gfc_rename_list; u; u = u->next)
5188 if (strcmp (symbol[i].name, u->use_name) == 0)
5190 local_name = u->local_name;
5191 u->found = 1;
5192 break;
5196 if ((gfc_option.flag_default_integer || gfc_option.flag_default_real)
5197 && symbol[i].id == ISOFORTRANENV_NUMERIC_STORAGE_SIZE)
5198 gfc_warning_now ("Use of the NUMERIC_STORAGE_SIZE named constant "
5199 "from intrinsic module ISO_FORTRAN_ENV at %C is "
5200 "incompatible with option %s",
5201 gfc_option.flag_default_integer
5202 ? "-fdefault-integer-8" : "-fdefault-real-8");
5204 create_int_parameter (local_name ? local_name : symbol[i].name,
5205 symbol[i].value, mod, INTMOD_ISO_FORTRAN_ENV,
5206 symbol[i].id);
5209 for (u = gfc_rename_list; u; u = u->next)
5211 if (u->found)
5212 continue;
5214 gfc_error ("Symbol '%s' referenced at %L not found in intrinsic "
5215 "module ISO_FORTRAN_ENV", u->use_name, &u->where);
5221 /* Process a USE directive. */
5223 void
5224 gfc_use_module (void)
5226 char *filename;
5227 gfc_state_data *p;
5228 int c, line, start;
5229 gfc_symtree *mod_symtree;
5230 gfc_use_list *use_stmt;
5232 filename = (char *) alloca (strlen (module_name) + strlen (MODULE_EXTENSION)
5233 + 1);
5234 strcpy (filename, module_name);
5235 strcat (filename, MODULE_EXTENSION);
5237 /* First, try to find an non-intrinsic module, unless the USE statement
5238 specified that the module is intrinsic. */
5239 module_fp = NULL;
5240 if (!specified_int)
5241 module_fp = gfc_open_included_file (filename, true, true);
5243 /* Then, see if it's an intrinsic one, unless the USE statement
5244 specified that the module is non-intrinsic. */
5245 if (module_fp == NULL && !specified_nonint)
5247 if (strcmp (module_name, "iso_fortran_env") == 0
5248 && gfc_notify_std (GFC_STD_F2003, "Fortran 2003: ISO_FORTRAN_ENV "
5249 "intrinsic module at %C") != FAILURE)
5251 use_iso_fortran_env_module ();
5252 return;
5255 if (strcmp (module_name, "iso_c_binding") == 0
5256 && gfc_notify_std (GFC_STD_F2003, "Fortran 2003: "
5257 "ISO_C_BINDING module at %C") != FAILURE)
5259 import_iso_c_binding_module();
5260 return;
5263 module_fp = gfc_open_intrinsic_module (filename);
5265 if (module_fp == NULL && specified_int)
5266 gfc_fatal_error ("Can't find an intrinsic module named '%s' at %C",
5267 module_name);
5270 if (module_fp == NULL)
5271 gfc_fatal_error ("Can't open module file '%s' for reading at %C: %s",
5272 filename, strerror (errno));
5274 /* Check that we haven't already USEd an intrinsic module with the
5275 same name. */
5277 mod_symtree = gfc_find_symtree (gfc_current_ns->sym_root, module_name);
5278 if (mod_symtree && mod_symtree->n.sym->attr.intrinsic)
5279 gfc_error ("Use of non-intrinsic module '%s' at %C conflicts with "
5280 "intrinsic module name used previously", module_name);
5282 iomode = IO_INPUT;
5283 module_line = 1;
5284 module_column = 1;
5285 start = 0;
5287 /* Skip the first two lines of the module, after checking that this is
5288 a gfortran module file. */
5289 line = 0;
5290 while (line < 2)
5292 c = module_char ();
5293 if (c == EOF)
5294 bad_module ("Unexpected end of module");
5295 if (start++ < 3)
5296 parse_name (c);
5297 if ((start == 1 && strcmp (atom_name, "GFORTRAN") != 0)
5298 || (start == 2 && strcmp (atom_name, " module") != 0))
5299 gfc_fatal_error ("File '%s' opened at %C is not a GFORTRAN module "
5300 "file", filename);
5301 if (start == 3)
5303 if (strcmp (atom_name, " version") != 0
5304 || module_char () != ' '
5305 || parse_atom () != ATOM_STRING)
5306 gfc_fatal_error ("Parse error when checking module version"
5307 " for file '%s' opened at %C", filename);
5309 if (strcmp (atom_string, MOD_VERSION))
5311 gfc_fatal_error ("Wrong module version '%s' (expected '"
5312 MOD_VERSION "') for file '%s' opened"
5313 " at %C", atom_string, filename);
5317 if (c == '\n')
5318 line++;
5321 /* Make sure we're not reading the same module that we may be building. */
5322 for (p = gfc_state_stack; p; p = p->previous)
5323 if (p->state == COMP_MODULE && strcmp (p->sym->name, module_name) == 0)
5324 gfc_fatal_error ("Can't USE the same module we're building!");
5326 init_pi_tree ();
5327 init_true_name_tree ();
5329 read_module ();
5331 free_true_name (true_name_root);
5332 true_name_root = NULL;
5334 free_pi_tree (pi_root);
5335 pi_root = NULL;
5337 fclose (module_fp);
5339 use_stmt = gfc_get_use_list ();
5340 use_stmt->module_name = gfc_get_string (module_name);
5341 use_stmt->only_flag = only_flag;
5342 use_stmt->rename = gfc_rename_list;
5343 use_stmt->where = use_locus;
5344 gfc_rename_list = NULL;
5345 use_stmt->next = gfc_current_ns->use_stmts;
5346 gfc_current_ns->use_stmts = use_stmt;
5350 void
5351 gfc_free_use_stmts (gfc_use_list *use_stmts)
5353 gfc_use_list *next;
5354 for (; use_stmts; use_stmts = next)
5356 gfc_use_rename *next_rename;
5358 for (; use_stmts->rename; use_stmts->rename = next_rename)
5360 next_rename = use_stmts->rename->next;
5361 gfc_free (use_stmts->rename);
5363 next = use_stmts->next;
5364 gfc_free (use_stmts);
5369 void
5370 gfc_module_init_2 (void)
5372 last_atom = ATOM_LPAREN;
5376 void
5377 gfc_module_done_2 (void)
5379 free_rename ();