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