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