Merge from trunk @ 138209
[official-gcc.git] / gcc / fortran / symbol.c
blob121f62ea2cb0763e26efd020bf128df1ece156a0
1 /* Maintain binary trees of symbols.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
4 Contributed by Andy Vaught
6 This file is part of GCC.
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.
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.
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/>. */
23 #include "config.h"
24 #include "system.h"
25 #include "flags.h"
26 #include "gfortran.h"
27 #include "parse.h"
30 /* Strings for all symbol attributes. We use these for dumping the
31 parse tree, in error messages, and also when reading and writing
32 modules. */
34 const mstring flavors[] =
36 minit ("UNKNOWN-FL", FL_UNKNOWN), minit ("PROGRAM", FL_PROGRAM),
37 minit ("BLOCK-DATA", FL_BLOCK_DATA), minit ("MODULE", FL_MODULE),
38 minit ("VARIABLE", FL_VARIABLE), minit ("PARAMETER", FL_PARAMETER),
39 minit ("LABEL", FL_LABEL), minit ("PROCEDURE", FL_PROCEDURE),
40 minit ("DERIVED", FL_DERIVED), minit ("NAMELIST", FL_NAMELIST),
41 minit (NULL, -1)
44 const mstring procedures[] =
46 minit ("UNKNOWN-PROC", PROC_UNKNOWN),
47 minit ("MODULE-PROC", PROC_MODULE),
48 minit ("INTERNAL-PROC", PROC_INTERNAL),
49 minit ("DUMMY-PROC", PROC_DUMMY),
50 minit ("INTRINSIC-PROC", PROC_INTRINSIC),
51 minit ("EXTERNAL-PROC", PROC_EXTERNAL),
52 minit ("STATEMENT-PROC", PROC_ST_FUNCTION),
53 minit (NULL, -1)
56 const mstring intents[] =
58 minit ("UNKNOWN-INTENT", INTENT_UNKNOWN),
59 minit ("IN", INTENT_IN),
60 minit ("OUT", INTENT_OUT),
61 minit ("INOUT", INTENT_INOUT),
62 minit (NULL, -1)
65 const mstring access_types[] =
67 minit ("UNKNOWN-ACCESS", ACCESS_UNKNOWN),
68 minit ("PUBLIC", ACCESS_PUBLIC),
69 minit ("PRIVATE", ACCESS_PRIVATE),
70 minit (NULL, -1)
73 const mstring ifsrc_types[] =
75 minit ("UNKNOWN", IFSRC_UNKNOWN),
76 minit ("DECL", IFSRC_DECL),
77 minit ("BODY", IFSRC_IFBODY),
78 minit ("USAGE", IFSRC_USAGE)
81 const mstring save_status[] =
83 minit ("UNKNOWN", SAVE_NONE),
84 minit ("EXPLICIT-SAVE", SAVE_EXPLICIT),
85 minit ("IMPLICIT-SAVE", SAVE_IMPLICIT),
88 /* This is to make sure the backend generates setup code in the correct
89 order. */
91 static int next_dummy_order = 1;
94 gfc_namespace *gfc_current_ns;
96 gfc_gsymbol *gfc_gsym_root = NULL;
98 static gfc_symbol *changed_syms = NULL;
100 gfc_dt_list *gfc_derived_types;
103 /*********** IMPLICIT NONE and IMPLICIT statement handlers ***********/
105 /* The following static variable indicates whether a particular element has
106 been explicitly set or not. */
108 static int new_flag[GFC_LETTERS];
111 /* Handle a correctly parsed IMPLICIT NONE. */
113 void
114 gfc_set_implicit_none (void)
116 int i;
118 if (gfc_current_ns->seen_implicit_none)
120 gfc_error ("Duplicate IMPLICIT NONE statement at %C");
121 return;
124 gfc_current_ns->seen_implicit_none = 1;
126 for (i = 0; i < GFC_LETTERS; i++)
128 gfc_clear_ts (&gfc_current_ns->default_type[i]);
129 gfc_current_ns->set_flag[i] = 1;
134 /* Reset the implicit range flags. */
136 void
137 gfc_clear_new_implicit (void)
139 int i;
141 for (i = 0; i < GFC_LETTERS; i++)
142 new_flag[i] = 0;
146 /* Prepare for a new implicit range. Sets flags in new_flag[]. */
149 gfc_add_new_implicit_range (int c1, int c2)
151 int i;
153 c1 -= 'a';
154 c2 -= 'a';
156 for (i = c1; i <= c2; i++)
158 if (new_flag[i])
160 gfc_error ("Letter '%c' already set in IMPLICIT statement at %C",
161 i + 'A');
162 return FAILURE;
165 new_flag[i] = 1;
168 return SUCCESS;
172 /* Add a matched implicit range for gfc_set_implicit(). Check if merging
173 the new implicit types back into the existing types will work. */
176 gfc_merge_new_implicit (gfc_typespec *ts)
178 int i;
180 if (gfc_current_ns->seen_implicit_none)
182 gfc_error ("Cannot specify IMPLICIT at %C after IMPLICIT NONE");
183 return FAILURE;
186 for (i = 0; i < GFC_LETTERS; i++)
188 if (new_flag[i])
191 if (gfc_current_ns->set_flag[i])
193 gfc_error ("Letter %c already has an IMPLICIT type at %C",
194 i + 'A');
195 return FAILURE;
197 gfc_current_ns->default_type[i] = *ts;
198 gfc_current_ns->set_flag[i] = 1;
201 return SUCCESS;
205 /* Given a symbol, return a pointer to the typespec for its default type. */
207 gfc_typespec *
208 gfc_get_default_type (gfc_symbol *sym, gfc_namespace *ns)
210 char letter;
212 letter = sym->name[0];
214 if (gfc_option.flag_allow_leading_underscore && letter == '_')
215 gfc_internal_error ("Option -fallow-leading-underscore is for use only by "
216 "gfortran developers, and should not be used for "
217 "implicitly typed variables");
219 if (letter < 'a' || letter > 'z')
220 gfc_internal_error ("gfc_get_default_type(): Bad symbol");
222 if (ns == NULL)
223 ns = gfc_current_ns;
225 return &ns->default_type[letter - 'a'];
229 /* Given a pointer to a symbol, set its type according to the first
230 letter of its name. Fails if the letter in question has no default
231 type. */
234 gfc_set_default_type (gfc_symbol *sym, int error_flag, gfc_namespace *ns)
236 gfc_typespec *ts;
238 if (sym->ts.type != BT_UNKNOWN)
239 gfc_internal_error ("gfc_set_default_type(): symbol already has a type");
241 ts = gfc_get_default_type (sym, ns);
243 if (ts->type == BT_UNKNOWN)
245 if (error_flag && !sym->attr.untyped)
247 gfc_error ("Symbol '%s' at %L has no IMPLICIT type",
248 sym->name, &sym->declared_at);
249 sym->attr.untyped = 1; /* Ensure we only give an error once. */
252 return FAILURE;
255 sym->ts = *ts;
256 sym->attr.implicit_type = 1;
258 if (sym->attr.is_bind_c == 1)
260 /* BIND(C) variables should not be implicitly declared. */
261 gfc_warning_now ("Implicitly declared BIND(C) variable '%s' at %L may "
262 "not be C interoperable", sym->name, &sym->declared_at);
263 sym->ts.f90_type = sym->ts.type;
266 if (sym->attr.dummy != 0)
268 if (sym->ns->proc_name != NULL
269 && (sym->ns->proc_name->attr.subroutine != 0
270 || sym->ns->proc_name->attr.function != 0)
271 && sym->ns->proc_name->attr.is_bind_c != 0)
273 /* Dummy args to a BIND(C) routine may not be interoperable if
274 they are implicitly typed. */
275 gfc_warning_now ("Implicitly declared variable '%s' at %L may not "
276 "be C interoperable but it is a dummy argument to "
277 "the BIND(C) procedure '%s' at %L", sym->name,
278 &(sym->declared_at), sym->ns->proc_name->name,
279 &(sym->ns->proc_name->declared_at));
280 sym->ts.f90_type = sym->ts.type;
284 return SUCCESS;
288 /* This function is called from parse.c(parse_progunit) to check the
289 type of the function is not implicitly typed in the host namespace
290 and to implicitly type the function result, if necessary. */
292 void
293 gfc_check_function_type (gfc_namespace *ns)
295 gfc_symbol *proc = ns->proc_name;
297 if (!proc->attr.contained || proc->result->attr.implicit_type)
298 return;
300 if (proc->result->ts.type == BT_UNKNOWN)
302 if (gfc_set_default_type (proc->result, 0, gfc_current_ns)
303 == SUCCESS)
305 if (proc->result != proc)
307 proc->ts = proc->result->ts;
308 proc->as = gfc_copy_array_spec (proc->result->as);
309 proc->attr.dimension = proc->result->attr.dimension;
310 proc->attr.pointer = proc->result->attr.pointer;
311 proc->attr.allocatable = proc->result->attr.allocatable;
314 else
316 gfc_error ("Function result '%s' at %L has no IMPLICIT type",
317 proc->result->name, &proc->result->declared_at);
318 proc->result->attr.untyped = 1;
324 /******************** Symbol attribute stuff *********************/
326 /* This is a generic conflict-checker. We do this to avoid having a
327 single conflict in two places. */
329 #define conf(a, b) if (attr->a && attr->b) { a1 = a; a2 = b; goto conflict; }
330 #define conf2(a) if (attr->a) { a2 = a; goto conflict; }
331 #define conf_std(a, b, std) if (attr->a && attr->b)\
333 a1 = a;\
334 a2 = b;\
335 standard = std;\
336 goto conflict_std;\
339 static try
340 check_conflict (symbol_attribute *attr, const char *name, locus *where)
342 static const char *dummy = "DUMMY", *save = "SAVE", *pointer = "POINTER",
343 *target = "TARGET", *external = "EXTERNAL", *intent = "INTENT",
344 *intent_in = "INTENT(IN)", *intrinsic = "INTRINSIC",
345 *intent_out = "INTENT(OUT)", *intent_inout = "INTENT(INOUT)",
346 *allocatable = "ALLOCATABLE", *elemental = "ELEMENTAL",
347 *privat = "PRIVATE", *recursive = "RECURSIVE",
348 *in_common = "COMMON", *result = "RESULT", *in_namelist = "NAMELIST",
349 *publik = "PUBLIC", *optional = "OPTIONAL", *entry = "ENTRY",
350 *function = "FUNCTION", *subroutine = "SUBROUTINE",
351 *dimension = "DIMENSION", *in_equivalence = "EQUIVALENCE",
352 *use_assoc = "USE ASSOCIATED", *cray_pointer = "CRAY POINTER",
353 *cray_pointee = "CRAY POINTEE", *data = "DATA", *value = "VALUE",
354 *volatile_ = "VOLATILE", *is_protected = "PROTECTED",
355 *is_bind_c = "BIND(C)", *procedure = "PROCEDURE";
356 static const char *threadprivate = "THREADPRIVATE";
358 const char *a1, *a2;
359 int standard;
361 if (where == NULL)
362 where = &gfc_current_locus;
364 if (attr->pointer && attr->intent != INTENT_UNKNOWN)
366 a1 = pointer;
367 a2 = intent;
368 standard = GFC_STD_F2003;
369 goto conflict_std;
372 /* Check for attributes not allowed in a BLOCK DATA. */
373 if (gfc_current_state () == COMP_BLOCK_DATA)
375 a1 = NULL;
377 if (attr->in_namelist)
378 a1 = in_namelist;
379 if (attr->allocatable)
380 a1 = allocatable;
381 if (attr->external)
382 a1 = external;
383 if (attr->optional)
384 a1 = optional;
385 if (attr->access == ACCESS_PRIVATE)
386 a1 = privat;
387 if (attr->access == ACCESS_PUBLIC)
388 a1 = publik;
389 if (attr->intent != INTENT_UNKNOWN)
390 a1 = intent;
392 if (a1 != NULL)
394 gfc_error
395 ("%s attribute not allowed in BLOCK DATA program unit at %L",
396 a1, where);
397 return FAILURE;
401 if (attr->save == SAVE_EXPLICIT)
403 conf (dummy, save);
404 conf (in_common, save);
405 conf (result, save);
407 switch (attr->flavor)
409 case FL_PROGRAM:
410 case FL_BLOCK_DATA:
411 case FL_MODULE:
412 case FL_LABEL:
413 case FL_DERIVED:
414 case FL_PARAMETER:
415 a1 = gfc_code2string (flavors, attr->flavor);
416 a2 = save;
417 goto conflict;
419 case FL_PROCEDURE:
420 if (attr->proc_pointer)
421 break;
422 a1 = gfc_code2string (flavors, attr->flavor);
423 a2 = save;
424 goto conflict;
426 case FL_VARIABLE:
427 case FL_NAMELIST:
428 default:
429 break;
433 conf (dummy, entry);
434 conf (dummy, intrinsic);
435 conf (dummy, threadprivate);
436 conf (pointer, target);
437 conf (pointer, intrinsic);
438 conf (pointer, elemental);
439 conf (allocatable, elemental);
441 conf (target, external);
442 conf (target, intrinsic);
444 if (!attr->if_source)
445 conf (external, dimension); /* See Fortran 95's R504. */
447 conf (external, intrinsic);
448 conf (entry, intrinsic);
450 if ((attr->if_source == IFSRC_DECL && !attr->procedure) || attr->contained)
452 conf (external, subroutine);
453 conf (external, function);
456 conf (allocatable, pointer);
457 conf_std (allocatable, dummy, GFC_STD_F2003);
458 conf_std (allocatable, function, GFC_STD_F2003);
459 conf_std (allocatable, result, GFC_STD_F2003);
460 conf (elemental, recursive);
462 conf (in_common, dummy);
463 conf (in_common, allocatable);
464 conf (in_common, result);
466 conf (dummy, result);
468 conf (in_equivalence, use_assoc);
469 conf (in_equivalence, dummy);
470 conf (in_equivalence, target);
471 conf (in_equivalence, pointer);
472 conf (in_equivalence, function);
473 conf (in_equivalence, result);
474 conf (in_equivalence, entry);
475 conf (in_equivalence, allocatable);
476 conf (in_equivalence, threadprivate);
478 conf (in_namelist, pointer);
479 conf (in_namelist, allocatable);
481 conf (entry, result);
483 conf (function, subroutine);
485 if (!function && !subroutine)
486 conf (is_bind_c, dummy);
488 conf (is_bind_c, cray_pointer);
489 conf (is_bind_c, cray_pointee);
490 conf (is_bind_c, allocatable);
491 conf (is_bind_c, elemental);
493 /* Need to also get volatile attr, according to 5.1 of F2003 draft.
494 Parameter conflict caught below. Also, value cannot be specified
495 for a dummy procedure. */
497 /* Cray pointer/pointee conflicts. */
498 conf (cray_pointer, cray_pointee);
499 conf (cray_pointer, dimension);
500 conf (cray_pointer, pointer);
501 conf (cray_pointer, target);
502 conf (cray_pointer, allocatable);
503 conf (cray_pointer, external);
504 conf (cray_pointer, intrinsic);
505 conf (cray_pointer, in_namelist);
506 conf (cray_pointer, function);
507 conf (cray_pointer, subroutine);
508 conf (cray_pointer, entry);
510 conf (cray_pointee, allocatable);
511 conf (cray_pointee, intent);
512 conf (cray_pointee, optional);
513 conf (cray_pointee, dummy);
514 conf (cray_pointee, target);
515 conf (cray_pointee, intrinsic);
516 conf (cray_pointee, pointer);
517 conf (cray_pointee, entry);
518 conf (cray_pointee, in_common);
519 conf (cray_pointee, in_equivalence);
520 conf (cray_pointee, threadprivate);
522 conf (data, dummy);
523 conf (data, function);
524 conf (data, result);
525 conf (data, allocatable);
526 conf (data, use_assoc);
528 conf (value, pointer)
529 conf (value, allocatable)
530 conf (value, subroutine)
531 conf (value, function)
532 conf (value, volatile_)
533 conf (value, dimension)
534 conf (value, external)
536 if (attr->value
537 && (attr->intent == INTENT_OUT || attr->intent == INTENT_INOUT))
539 a1 = value;
540 a2 = attr->intent == INTENT_OUT ? intent_out : intent_inout;
541 goto conflict;
544 conf (is_protected, intrinsic)
545 conf (is_protected, external)
546 conf (is_protected, in_common)
548 conf (volatile_, intrinsic)
549 conf (volatile_, external)
551 if (attr->volatile_ && attr->intent == INTENT_IN)
553 a1 = volatile_;
554 a2 = intent_in;
555 goto conflict;
558 conf (procedure, allocatable)
559 conf (procedure, dimension)
560 conf (procedure, intrinsic)
561 conf (procedure, is_protected)
562 conf (procedure, target)
563 conf (procedure, value)
564 conf (procedure, volatile_)
565 conf (procedure, entry)
567 a1 = gfc_code2string (flavors, attr->flavor);
569 if (attr->in_namelist
570 && attr->flavor != FL_VARIABLE
571 && attr->flavor != FL_PROCEDURE
572 && attr->flavor != FL_UNKNOWN)
574 a2 = in_namelist;
575 goto conflict;
578 switch (attr->flavor)
580 case FL_PROGRAM:
581 case FL_BLOCK_DATA:
582 case FL_MODULE:
583 case FL_LABEL:
584 conf2 (dimension);
585 conf2 (dummy);
586 conf2 (volatile_);
587 conf2 (pointer);
588 conf2 (is_protected);
589 conf2 (target);
590 conf2 (external);
591 conf2 (intrinsic);
592 conf2 (allocatable);
593 conf2 (result);
594 conf2 (in_namelist);
595 conf2 (optional);
596 conf2 (function);
597 conf2 (subroutine);
598 conf2 (threadprivate);
600 if (attr->access == ACCESS_PUBLIC || attr->access == ACCESS_PRIVATE)
602 a2 = attr->access == ACCESS_PUBLIC ? publik : privat;
603 gfc_error ("%s attribute applied to %s %s at %L", a2, a1,
604 name, where);
605 return FAILURE;
608 if (attr->is_bind_c)
610 gfc_error_now ("BIND(C) applied to %s %s at %L", a1, name, where);
611 return FAILURE;
614 break;
616 case FL_VARIABLE:
617 case FL_NAMELIST:
618 break;
620 case FL_PROCEDURE:
621 if (!attr->proc_pointer)
622 conf2 (intent);
624 if (attr->subroutine)
626 conf2 (target);
627 conf2 (allocatable);
628 conf2 (result);
629 conf2 (in_namelist);
630 conf2 (dimension);
631 conf2 (function);
632 conf2 (threadprivate);
635 switch (attr->proc)
637 case PROC_ST_FUNCTION:
638 conf2 (in_common);
639 conf2 (dummy);
640 break;
642 case PROC_MODULE:
643 conf2 (dummy);
644 break;
646 case PROC_DUMMY:
647 conf2 (result);
648 conf2 (in_common);
649 conf2 (threadprivate);
650 break;
652 default:
653 break;
656 break;
658 case FL_DERIVED:
659 conf2 (dummy);
660 conf2 (pointer);
661 conf2 (target);
662 conf2 (external);
663 conf2 (intrinsic);
664 conf2 (allocatable);
665 conf2 (optional);
666 conf2 (entry);
667 conf2 (function);
668 conf2 (subroutine);
669 conf2 (threadprivate);
671 if (attr->intent != INTENT_UNKNOWN)
673 a2 = intent;
674 goto conflict;
676 break;
678 case FL_PARAMETER:
679 conf2 (external);
680 conf2 (intrinsic);
681 conf2 (optional);
682 conf2 (allocatable);
683 conf2 (function);
684 conf2 (subroutine);
685 conf2 (entry);
686 conf2 (pointer);
687 conf2 (is_protected);
688 conf2 (target);
689 conf2 (dummy);
690 conf2 (in_common);
691 conf2 (value);
692 conf2 (volatile_);
693 conf2 (threadprivate);
694 conf2 (value);
695 conf2 (is_bind_c);
696 break;
698 default:
699 break;
702 return SUCCESS;
704 conflict:
705 if (name == NULL)
706 gfc_error ("%s attribute conflicts with %s attribute at %L",
707 a1, a2, where);
708 else
709 gfc_error ("%s attribute conflicts with %s attribute in '%s' at %L",
710 a1, a2, name, where);
712 return FAILURE;
714 conflict_std:
715 if (name == NULL)
717 return gfc_notify_std (standard, "Fortran 2003: %s attribute "
718 "with %s attribute at %L", a1, a2,
719 where);
721 else
723 return gfc_notify_std (standard, "Fortran 2003: %s attribute "
724 "with %s attribute in '%s' at %L",
725 a1, a2, name, where);
729 #undef conf
730 #undef conf2
731 #undef conf_std
734 /* Mark a symbol as referenced. */
736 void
737 gfc_set_sym_referenced (gfc_symbol *sym)
740 if (sym->attr.referenced)
741 return;
743 sym->attr.referenced = 1;
745 /* Remember which order dummy variables are accessed in. */
746 if (sym->attr.dummy)
747 sym->dummy_order = next_dummy_order++;
751 /* Common subroutine called by attribute changing subroutines in order
752 to prevent them from changing a symbol that has been
753 use-associated. Returns zero if it is OK to change the symbol,
754 nonzero if not. */
756 static int
757 check_used (symbol_attribute *attr, const char *name, locus *where)
760 if (attr->use_assoc == 0)
761 return 0;
763 if (where == NULL)
764 where = &gfc_current_locus;
766 if (name == NULL)
767 gfc_error ("Cannot change attributes of USE-associated symbol at %L",
768 where);
769 else
770 gfc_error ("Cannot change attributes of USE-associated symbol %s at %L",
771 name, where);
773 return 1;
777 /* Generate an error because of a duplicate attribute. */
779 static void
780 duplicate_attr (const char *attr, locus *where)
783 if (where == NULL)
784 where = &gfc_current_locus;
786 gfc_error ("Duplicate %s attribute specified at %L", attr, where);
790 /* Called from decl.c (attr_decl1) to check attributes, when declared
791 separately. */
794 gfc_add_attribute (symbol_attribute *attr, locus *where)
797 if (check_used (attr, NULL, where))
798 return FAILURE;
800 return check_conflict (attr, NULL, where);
804 gfc_add_allocatable (symbol_attribute *attr, locus *where)
807 if (check_used (attr, NULL, where))
808 return FAILURE;
810 if (attr->allocatable)
812 duplicate_attr ("ALLOCATABLE", where);
813 return FAILURE;
816 if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
817 && gfc_find_state (COMP_INTERFACE) == FAILURE)
819 gfc_error ("ALLOCATABLE specified outside of INTERFACE body at %L",
820 where);
821 return FAILURE;
824 attr->allocatable = 1;
825 return check_conflict (attr, NULL, where);
830 gfc_add_dimension (symbol_attribute *attr, const char *name, locus *where)
833 if (check_used (attr, name, where))
834 return FAILURE;
836 if (attr->dimension)
838 duplicate_attr ("DIMENSION", where);
839 return FAILURE;
842 if (attr->flavor == FL_PROCEDURE && attr->if_source == IFSRC_IFBODY
843 && gfc_find_state (COMP_INTERFACE) == FAILURE)
845 gfc_error ("DIMENSION specified for '%s' outside its INTERFACE body "
846 "at %L", name, where);
847 return FAILURE;
850 attr->dimension = 1;
851 return check_conflict (attr, name, where);
856 gfc_add_external (symbol_attribute *attr, locus *where)
859 if (check_used (attr, NULL, where))
860 return FAILURE;
862 if (attr->external)
864 duplicate_attr ("EXTERNAL", where);
865 return FAILURE;
868 if (attr->pointer && attr->if_source != IFSRC_IFBODY)
870 attr->pointer = 0;
871 attr->proc_pointer = 1;
874 attr->external = 1;
876 return check_conflict (attr, NULL, where);
881 gfc_add_intrinsic (symbol_attribute *attr, locus *where)
884 if (check_used (attr, NULL, where))
885 return FAILURE;
887 if (attr->intrinsic)
889 duplicate_attr ("INTRINSIC", where);
890 return FAILURE;
893 attr->intrinsic = 1;
895 return check_conflict (attr, NULL, where);
900 gfc_add_optional (symbol_attribute *attr, locus *where)
903 if (check_used (attr, NULL, where))
904 return FAILURE;
906 if (attr->optional)
908 duplicate_attr ("OPTIONAL", where);
909 return FAILURE;
912 attr->optional = 1;
913 return check_conflict (attr, NULL, where);
918 gfc_add_pointer (symbol_attribute *attr, locus *where)
921 if (check_used (attr, NULL, where))
922 return FAILURE;
924 if (attr->pointer && !(attr->if_source == IFSRC_IFBODY
925 && gfc_find_state (COMP_INTERFACE) == FAILURE))
927 duplicate_attr ("POINTER", where);
928 return FAILURE;
931 if (attr->procedure || (attr->external && attr->if_source != IFSRC_IFBODY)
932 || (attr->if_source == IFSRC_IFBODY
933 && gfc_find_state (COMP_INTERFACE) == FAILURE))
934 attr->proc_pointer = 1;
935 else
936 attr->pointer = 1;
938 return check_conflict (attr, NULL, where);
943 gfc_add_cray_pointer (symbol_attribute *attr, locus *where)
946 if (check_used (attr, NULL, where))
947 return FAILURE;
949 attr->cray_pointer = 1;
950 return check_conflict (attr, NULL, where);
955 gfc_add_cray_pointee (symbol_attribute *attr, locus *where)
958 if (check_used (attr, NULL, where))
959 return FAILURE;
961 if (attr->cray_pointee)
963 gfc_error ("Cray Pointee at %L appears in multiple pointer()"
964 " statements", where);
965 return FAILURE;
968 attr->cray_pointee = 1;
969 return check_conflict (attr, NULL, where);
974 gfc_add_protected (symbol_attribute *attr, const char *name, locus *where)
976 if (check_used (attr, name, where))
977 return FAILURE;
979 if (attr->is_protected)
981 if (gfc_notify_std (GFC_STD_LEGACY,
982 "Duplicate PROTECTED attribute specified at %L",
983 where)
984 == FAILURE)
985 return FAILURE;
988 attr->is_protected = 1;
989 return check_conflict (attr, name, where);
994 gfc_add_result (symbol_attribute *attr, const char *name, locus *where)
997 if (check_used (attr, name, where))
998 return FAILURE;
1000 attr->result = 1;
1001 return check_conflict (attr, name, where);
1006 gfc_add_save (symbol_attribute *attr, const char *name, locus *where)
1009 if (check_used (attr, name, where))
1010 return FAILURE;
1012 if (gfc_pure (NULL))
1014 gfc_error
1015 ("SAVE attribute at %L cannot be specified in a PURE procedure",
1016 where);
1017 return FAILURE;
1020 if (attr->save == SAVE_EXPLICIT)
1022 if (gfc_notify_std (GFC_STD_LEGACY,
1023 "Duplicate SAVE attribute specified at %L",
1024 where)
1025 == FAILURE)
1026 return FAILURE;
1029 attr->save = SAVE_EXPLICIT;
1030 return check_conflict (attr, name, where);
1035 gfc_add_value (symbol_attribute *attr, const char *name, locus *where)
1038 if (check_used (attr, name, where))
1039 return FAILURE;
1041 if (attr->value)
1043 if (gfc_notify_std (GFC_STD_LEGACY,
1044 "Duplicate VALUE attribute specified at %L",
1045 where)
1046 == FAILURE)
1047 return FAILURE;
1050 attr->value = 1;
1051 return check_conflict (attr, name, where);
1056 gfc_add_volatile (symbol_attribute *attr, const char *name, locus *where)
1058 /* No check_used needed as 11.2.1 of the F2003 standard allows
1059 that the local identifier made accessible by a use statement can be
1060 given a VOLATILE attribute. */
1062 if (attr->volatile_ && attr->volatile_ns == gfc_current_ns)
1063 if (gfc_notify_std (GFC_STD_LEGACY,
1064 "Duplicate VOLATILE attribute specified at %L", where)
1065 == FAILURE)
1066 return FAILURE;
1068 attr->volatile_ = 1;
1069 attr->volatile_ns = gfc_current_ns;
1070 return check_conflict (attr, name, where);
1075 gfc_add_threadprivate (symbol_attribute *attr, const char *name, locus *where)
1078 if (check_used (attr, name, where))
1079 return FAILURE;
1081 if (attr->threadprivate)
1083 duplicate_attr ("THREADPRIVATE", where);
1084 return FAILURE;
1087 attr->threadprivate = 1;
1088 return check_conflict (attr, name, where);
1093 gfc_add_target (symbol_attribute *attr, locus *where)
1096 if (check_used (attr, NULL, where))
1097 return FAILURE;
1099 if (attr->target)
1101 duplicate_attr ("TARGET", where);
1102 return FAILURE;
1105 attr->target = 1;
1106 return check_conflict (attr, NULL, where);
1111 gfc_add_dummy (symbol_attribute *attr, const char *name, locus *where)
1114 if (check_used (attr, name, where))
1115 return FAILURE;
1117 /* Duplicate dummy arguments are allowed due to ENTRY statements. */
1118 attr->dummy = 1;
1119 return check_conflict (attr, name, where);
1124 gfc_add_in_common (symbol_attribute *attr, const char *name, locus *where)
1127 if (check_used (attr, name, where))
1128 return FAILURE;
1130 /* Duplicate attribute already checked for. */
1131 attr->in_common = 1;
1132 if (check_conflict (attr, name, where) == FAILURE)
1133 return FAILURE;
1135 if (attr->flavor == FL_VARIABLE)
1136 return SUCCESS;
1138 return gfc_add_flavor (attr, FL_VARIABLE, name, where);
1143 gfc_add_in_equivalence (symbol_attribute *attr, const char *name, locus *where)
1146 /* Duplicate attribute already checked for. */
1147 attr->in_equivalence = 1;
1148 if (check_conflict (attr, name, where) == FAILURE)
1149 return FAILURE;
1151 if (attr->flavor == FL_VARIABLE)
1152 return SUCCESS;
1154 return gfc_add_flavor (attr, FL_VARIABLE, name, where);
1159 gfc_add_data (symbol_attribute *attr, const char *name, locus *where)
1162 if (check_used (attr, name, where))
1163 return FAILURE;
1165 attr->data = 1;
1166 return check_conflict (attr, name, where);
1171 gfc_add_in_namelist (symbol_attribute *attr, const char *name, locus *where)
1174 attr->in_namelist = 1;
1175 return check_conflict (attr, name, where);
1180 gfc_add_sequence (symbol_attribute *attr, const char *name, locus *where)
1183 if (check_used (attr, name, where))
1184 return FAILURE;
1186 attr->sequence = 1;
1187 return check_conflict (attr, name, where);
1192 gfc_add_elemental (symbol_attribute *attr, locus *where)
1195 if (check_used (attr, NULL, where))
1196 return FAILURE;
1198 if (attr->elemental)
1200 duplicate_attr ("ELEMENTAL", where);
1201 return FAILURE;
1204 attr->elemental = 1;
1205 return check_conflict (attr, NULL, where);
1210 gfc_add_pure (symbol_attribute *attr, locus *where)
1213 if (check_used (attr, NULL, where))
1214 return FAILURE;
1216 if (attr->pure)
1218 duplicate_attr ("PURE", where);
1219 return FAILURE;
1222 attr->pure = 1;
1223 return check_conflict (attr, NULL, where);
1228 gfc_add_recursive (symbol_attribute *attr, locus *where)
1231 if (check_used (attr, NULL, where))
1232 return FAILURE;
1234 if (attr->recursive)
1236 duplicate_attr ("RECURSIVE", where);
1237 return FAILURE;
1240 attr->recursive = 1;
1241 return check_conflict (attr, NULL, where);
1246 gfc_add_entry (symbol_attribute *attr, const char *name, locus *where)
1249 if (check_used (attr, name, where))
1250 return FAILURE;
1252 if (attr->entry)
1254 duplicate_attr ("ENTRY", where);
1255 return FAILURE;
1258 attr->entry = 1;
1259 return check_conflict (attr, name, where);
1264 gfc_add_function (symbol_attribute *attr, const char *name, locus *where)
1267 if (attr->flavor != FL_PROCEDURE
1268 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1269 return FAILURE;
1271 attr->function = 1;
1272 return check_conflict (attr, name, where);
1277 gfc_add_subroutine (symbol_attribute *attr, const char *name, locus *where)
1280 if (attr->flavor != FL_PROCEDURE
1281 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1282 return FAILURE;
1284 attr->subroutine = 1;
1285 return check_conflict (attr, name, where);
1290 gfc_add_generic (symbol_attribute *attr, const char *name, locus *where)
1293 if (attr->flavor != FL_PROCEDURE
1294 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1295 return FAILURE;
1297 attr->generic = 1;
1298 return check_conflict (attr, name, where);
1303 gfc_add_proc (symbol_attribute *attr, const char *name, locus *where)
1306 if (check_used (attr, NULL, where))
1307 return FAILURE;
1309 if (attr->flavor != FL_PROCEDURE
1310 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1311 return FAILURE;
1313 if (attr->procedure)
1315 duplicate_attr ("PROCEDURE", where);
1316 return FAILURE;
1319 attr->procedure = 1;
1321 return check_conflict (attr, NULL, where);
1325 /* Flavors are special because some flavors are not what Fortran
1326 considers attributes and can be reaffirmed multiple times. */
1329 gfc_add_flavor (symbol_attribute *attr, sym_flavor f, const char *name,
1330 locus *where)
1333 if ((f == FL_PROGRAM || f == FL_BLOCK_DATA || f == FL_MODULE
1334 || f == FL_PARAMETER || f == FL_LABEL || f == FL_DERIVED
1335 || f == FL_NAMELIST) && check_used (attr, name, where))
1336 return FAILURE;
1338 if (attr->flavor == f && f == FL_VARIABLE)
1339 return SUCCESS;
1341 if (attr->flavor != FL_UNKNOWN)
1343 if (where == NULL)
1344 where = &gfc_current_locus;
1346 if (name)
1347 gfc_error ("%s attribute of '%s' conflicts with %s attribute at %L",
1348 gfc_code2string (flavors, attr->flavor), name,
1349 gfc_code2string (flavors, f), where);
1350 else
1351 gfc_error ("%s attribute conflicts with %s attribute at %L",
1352 gfc_code2string (flavors, attr->flavor),
1353 gfc_code2string (flavors, f), where);
1355 return FAILURE;
1358 attr->flavor = f;
1360 return check_conflict (attr, name, where);
1365 gfc_add_procedure (symbol_attribute *attr, procedure_type t,
1366 const char *name, locus *where)
1369 if (check_used (attr, name, where))
1370 return FAILURE;
1372 if (attr->flavor != FL_PROCEDURE
1373 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
1374 return FAILURE;
1376 if (where == NULL)
1377 where = &gfc_current_locus;
1379 if (attr->proc != PROC_UNKNOWN)
1381 gfc_error ("%s procedure at %L is already declared as %s procedure",
1382 gfc_code2string (procedures, t), where,
1383 gfc_code2string (procedures, attr->proc));
1385 return FAILURE;
1388 attr->proc = t;
1390 /* Statement functions are always scalar and functions. */
1391 if (t == PROC_ST_FUNCTION
1392 && ((!attr->function && gfc_add_function (attr, name, where) == FAILURE)
1393 || attr->dimension))
1394 return FAILURE;
1396 return check_conflict (attr, name, where);
1401 gfc_add_intent (symbol_attribute *attr, sym_intent intent, locus *where)
1404 if (check_used (attr, NULL, where))
1405 return FAILURE;
1407 if (attr->intent == INTENT_UNKNOWN)
1409 attr->intent = intent;
1410 return check_conflict (attr, NULL, where);
1413 if (where == NULL)
1414 where = &gfc_current_locus;
1416 gfc_error ("INTENT (%s) conflicts with INTENT(%s) at %L",
1417 gfc_intent_string (attr->intent),
1418 gfc_intent_string (intent), where);
1420 return FAILURE;
1424 /* No checks for use-association in public and private statements. */
1427 gfc_add_access (symbol_attribute *attr, gfc_access access,
1428 const char *name, locus *where)
1431 if (attr->access == ACCESS_UNKNOWN)
1433 attr->access = access;
1434 return check_conflict (attr, name, where);
1437 if (where == NULL)
1438 where = &gfc_current_locus;
1439 gfc_error ("ACCESS specification at %L was already specified", where);
1441 return FAILURE;
1445 /* Set the is_bind_c field for the given symbol_attribute. */
1448 gfc_add_is_bind_c (symbol_attribute *attr, const char *name, locus *where,
1449 int is_proc_lang_bind_spec)
1452 if (is_proc_lang_bind_spec == 0 && attr->flavor == FL_PROCEDURE)
1453 gfc_error_now ("BIND(C) attribute at %L can only be used for "
1454 "variables or common blocks", where);
1455 else if (attr->is_bind_c)
1456 gfc_error_now ("Duplicate BIND attribute specified at %L", where);
1457 else
1458 attr->is_bind_c = 1;
1460 if (where == NULL)
1461 where = &gfc_current_locus;
1463 if (gfc_notify_std (GFC_STD_F2003, "Fortran 2003: BIND(C) at %L", where)
1464 == FAILURE)
1465 return FAILURE;
1467 return check_conflict (attr, name, where);
1472 gfc_add_explicit_interface (gfc_symbol *sym, ifsrc source,
1473 gfc_formal_arglist * formal, locus *where)
1476 if (check_used (&sym->attr, sym->name, where))
1477 return FAILURE;
1479 if (where == NULL)
1480 where = &gfc_current_locus;
1482 if (sym->attr.if_source != IFSRC_UNKNOWN
1483 && sym->attr.if_source != IFSRC_DECL)
1485 gfc_error ("Symbol '%s' at %L already has an explicit interface",
1486 sym->name, where);
1487 return FAILURE;
1490 if (source == IFSRC_IFBODY && (sym->attr.dimension || sym->attr.allocatable))
1492 gfc_error ("'%s' at %L has attributes specified outside its INTERFACE "
1493 "body", sym->name, where);
1494 return FAILURE;
1497 sym->formal = formal;
1498 sym->attr.if_source = source;
1500 return SUCCESS;
1504 /* Add a type to a symbol. */
1507 gfc_add_type (gfc_symbol *sym, gfc_typespec *ts, locus *where)
1509 sym_flavor flavor;
1511 if (where == NULL)
1512 where = &gfc_current_locus;
1514 if (sym->ts.type != BT_UNKNOWN)
1516 const char *msg = "Symbol '%s' at %L already has basic type of %s";
1517 if (!(sym->ts.type == ts->type
1518 && (sym->attr.flavor == FL_PROCEDURE || sym->attr.result))
1519 || gfc_notification_std (GFC_STD_GNU) == ERROR
1520 || pedantic)
1522 gfc_error (msg, sym->name, where, gfc_basic_typename (sym->ts.type));
1523 return FAILURE;
1525 else if (gfc_notify_std (GFC_STD_GNU, msg, sym->name, where,
1526 gfc_basic_typename (sym->ts.type)) == FAILURE)
1527 return FAILURE;
1530 flavor = sym->attr.flavor;
1532 if (flavor == FL_PROGRAM || flavor == FL_BLOCK_DATA || flavor == FL_MODULE
1533 || flavor == FL_LABEL
1534 || (flavor == FL_PROCEDURE && sym->attr.subroutine)
1535 || flavor == FL_DERIVED || flavor == FL_NAMELIST)
1537 gfc_error ("Symbol '%s' at %L cannot have a type", sym->name, where);
1538 return FAILURE;
1541 sym->ts = *ts;
1542 return SUCCESS;
1546 /* Clears all attributes. */
1548 void
1549 gfc_clear_attr (symbol_attribute *attr)
1551 memset (attr, 0, sizeof (symbol_attribute));
1555 /* Check for missing attributes in the new symbol. Currently does
1556 nothing, but it's not clear that it is unnecessary yet. */
1559 gfc_missing_attr (symbol_attribute *attr ATTRIBUTE_UNUSED,
1560 locus *where ATTRIBUTE_UNUSED)
1563 return SUCCESS;
1567 /* Copy an attribute to a symbol attribute, bit by bit. Some
1568 attributes have a lot of side-effects but cannot be present given
1569 where we are called from, so we ignore some bits. */
1572 gfc_copy_attr (symbol_attribute *dest, symbol_attribute *src, locus *where)
1574 int is_proc_lang_bind_spec;
1576 if (src->allocatable && gfc_add_allocatable (dest, where) == FAILURE)
1577 goto fail;
1579 if (src->dimension && gfc_add_dimension (dest, NULL, where) == FAILURE)
1580 goto fail;
1581 if (src->optional && gfc_add_optional (dest, where) == FAILURE)
1582 goto fail;
1583 if (src->pointer && gfc_add_pointer (dest, where) == FAILURE)
1584 goto fail;
1585 if (src->is_protected && gfc_add_protected (dest, NULL, where) == FAILURE)
1586 goto fail;
1587 if (src->save && gfc_add_save (dest, NULL, where) == FAILURE)
1588 goto fail;
1589 if (src->value && gfc_add_value (dest, NULL, where) == FAILURE)
1590 goto fail;
1591 if (src->volatile_ && gfc_add_volatile (dest, NULL, where) == FAILURE)
1592 goto fail;
1593 if (src->threadprivate
1594 && gfc_add_threadprivate (dest, NULL, where) == FAILURE)
1595 goto fail;
1596 if (src->target && gfc_add_target (dest, where) == FAILURE)
1597 goto fail;
1598 if (src->dummy && gfc_add_dummy (dest, NULL, where) == FAILURE)
1599 goto fail;
1600 if (src->result && gfc_add_result (dest, NULL, where) == FAILURE)
1601 goto fail;
1602 if (src->entry)
1603 dest->entry = 1;
1605 if (src->in_namelist && gfc_add_in_namelist (dest, NULL, where) == FAILURE)
1606 goto fail;
1608 if (src->in_common && gfc_add_in_common (dest, NULL, where) == FAILURE)
1609 goto fail;
1611 if (src->generic && gfc_add_generic (dest, NULL, where) == FAILURE)
1612 goto fail;
1613 if (src->function && gfc_add_function (dest, NULL, where) == FAILURE)
1614 goto fail;
1615 if (src->subroutine && gfc_add_subroutine (dest, NULL, where) == FAILURE)
1616 goto fail;
1618 if (src->sequence && gfc_add_sequence (dest, NULL, where) == FAILURE)
1619 goto fail;
1620 if (src->elemental && gfc_add_elemental (dest, where) == FAILURE)
1621 goto fail;
1622 if (src->pure && gfc_add_pure (dest, where) == FAILURE)
1623 goto fail;
1624 if (src->recursive && gfc_add_recursive (dest, where) == FAILURE)
1625 goto fail;
1627 if (src->flavor != FL_UNKNOWN
1628 && gfc_add_flavor (dest, src->flavor, NULL, where) == FAILURE)
1629 goto fail;
1631 if (src->intent != INTENT_UNKNOWN
1632 && gfc_add_intent (dest, src->intent, where) == FAILURE)
1633 goto fail;
1635 if (src->access != ACCESS_UNKNOWN
1636 && gfc_add_access (dest, src->access, NULL, where) == FAILURE)
1637 goto fail;
1639 if (gfc_missing_attr (dest, where) == FAILURE)
1640 goto fail;
1642 if (src->cray_pointer && gfc_add_cray_pointer (dest, where) == FAILURE)
1643 goto fail;
1644 if (src->cray_pointee && gfc_add_cray_pointee (dest, where) == FAILURE)
1645 goto fail;
1647 is_proc_lang_bind_spec = (src->flavor == FL_PROCEDURE ? 1 : 0);
1648 if (src->is_bind_c
1649 && gfc_add_is_bind_c (dest, NULL, where, is_proc_lang_bind_spec)
1650 != SUCCESS)
1651 return FAILURE;
1653 if (src->is_c_interop)
1654 dest->is_c_interop = 1;
1655 if (src->is_iso_c)
1656 dest->is_iso_c = 1;
1658 if (src->external && gfc_add_external (dest, where) == FAILURE)
1659 goto fail;
1660 if (src->intrinsic && gfc_add_intrinsic (dest, where) == FAILURE)
1661 goto fail;
1662 if (src->proc_pointer)
1663 dest->proc_pointer = 1;
1665 return SUCCESS;
1667 fail:
1668 return FAILURE;
1672 /************** Component name management ************/
1674 /* Component names of a derived type form their own little namespaces
1675 that are separate from all other spaces. The space is composed of
1676 a singly linked list of gfc_component structures whose head is
1677 located in the parent symbol. */
1680 /* Add a component name to a symbol. The call fails if the name is
1681 already present. On success, the component pointer is modified to
1682 point to the additional component structure. */
1685 gfc_add_component (gfc_symbol *sym, const char *name,
1686 gfc_component **component)
1688 gfc_component *p, *tail;
1690 tail = NULL;
1692 for (p = sym->components; p; p = p->next)
1694 if (strcmp (p->name, name) == 0)
1696 gfc_error ("Component '%s' at %C already declared at %L",
1697 name, &p->loc);
1698 return FAILURE;
1701 tail = p;
1704 /* Allocate a new component. */
1705 p = gfc_get_component ();
1707 if (tail == NULL)
1708 sym->components = p;
1709 else
1710 tail->next = p;
1712 p->name = gfc_get_string (name);
1713 p->loc = gfc_current_locus;
1715 *component = p;
1716 return SUCCESS;
1720 /* Recursive function to switch derived types of all symbol in a
1721 namespace. */
1723 static void
1724 switch_types (gfc_symtree *st, gfc_symbol *from, gfc_symbol *to)
1726 gfc_symbol *sym;
1728 if (st == NULL)
1729 return;
1731 sym = st->n.sym;
1732 if (sym->ts.type == BT_DERIVED && sym->ts.derived == from)
1733 sym->ts.derived = to;
1735 switch_types (st->left, from, to);
1736 switch_types (st->right, from, to);
1740 /* This subroutine is called when a derived type is used in order to
1741 make the final determination about which version to use. The
1742 standard requires that a type be defined before it is 'used', but
1743 such types can appear in IMPLICIT statements before the actual
1744 definition. 'Using' in this context means declaring a variable to
1745 be that type or using the type constructor.
1747 If a type is used and the components haven't been defined, then we
1748 have to have a derived type in a parent unit. We find the node in
1749 the other namespace and point the symtree node in this namespace to
1750 that node. Further reference to this name point to the correct
1751 node. If we can't find the node in a parent namespace, then we have
1752 an error.
1754 This subroutine takes a pointer to a symbol node and returns a
1755 pointer to the translated node or NULL for an error. Usually there
1756 is no translation and we return the node we were passed. */
1758 gfc_symbol *
1759 gfc_use_derived (gfc_symbol *sym)
1761 gfc_symbol *s;
1762 gfc_typespec *t;
1763 gfc_symtree *st;
1764 int i;
1766 if (sym->components != NULL || sym->attr.zero_comp)
1767 return sym; /* Already defined. */
1769 if (sym->ns->parent == NULL)
1770 goto bad;
1772 if (gfc_find_symbol (sym->name, sym->ns->parent, 1, &s))
1774 gfc_error ("Symbol '%s' at %C is ambiguous", sym->name);
1775 return NULL;
1778 if (s == NULL || s->attr.flavor != FL_DERIVED)
1779 goto bad;
1781 /* Get rid of symbol sym, translating all references to s. */
1782 for (i = 0; i < GFC_LETTERS; i++)
1784 t = &sym->ns->default_type[i];
1785 if (t->derived == sym)
1786 t->derived = s;
1789 st = gfc_find_symtree (sym->ns->sym_root, sym->name);
1790 st->n.sym = s;
1792 s->refs++;
1794 /* Unlink from list of modified symbols. */
1795 gfc_commit_symbol (sym);
1797 switch_types (sym->ns->sym_root, sym, s);
1799 /* TODO: Also have to replace sym -> s in other lists like
1800 namelists, common lists and interface lists. */
1801 gfc_free_symbol (sym);
1803 return s;
1805 bad:
1806 gfc_error ("Derived type '%s' at %C is being used before it is defined",
1807 sym->name);
1808 return NULL;
1812 /* Given a derived type node and a component name, try to locate the
1813 component structure. Returns the NULL pointer if the component is
1814 not found or the components are private. */
1816 gfc_component *
1817 gfc_find_component (gfc_symbol *sym, const char *name)
1819 gfc_component *p;
1821 if (name == NULL)
1822 return NULL;
1824 sym = gfc_use_derived (sym);
1826 if (sym == NULL)
1827 return NULL;
1829 for (p = sym->components; p; p = p->next)
1830 if (strcmp (p->name, name) == 0)
1831 break;
1833 if (p == NULL)
1834 gfc_error ("'%s' at %C is not a member of the '%s' structure",
1835 name, sym->name);
1836 else
1838 if (sym->attr.use_assoc && (sym->component_access == ACCESS_PRIVATE
1839 || p->access == ACCESS_PRIVATE))
1841 gfc_error ("Component '%s' at %C is a PRIVATE component of '%s'",
1842 name, sym->name);
1843 p = NULL;
1847 return p;
1851 /* Given a symbol, free all of the component structures and everything
1852 they point to. */
1854 static void
1855 free_components (gfc_component *p)
1857 gfc_component *q;
1859 for (; p; p = q)
1861 q = p->next;
1863 gfc_free_array_spec (p->as);
1864 gfc_free_expr (p->initializer);
1866 gfc_free (p);
1871 /* Set component attributes from a standard symbol attribute structure. */
1873 void
1874 gfc_set_component_attr (gfc_component *c, symbol_attribute *attr)
1877 c->dimension = attr->dimension;
1878 c->pointer = attr->pointer;
1879 c->allocatable = attr->allocatable;
1880 c->access = attr->access;
1884 /* Get a standard symbol attribute structure given the component
1885 structure. */
1887 void
1888 gfc_get_component_attr (symbol_attribute *attr, gfc_component *c)
1891 gfc_clear_attr (attr);
1892 attr->dimension = c->dimension;
1893 attr->pointer = c->pointer;
1894 attr->allocatable = c->allocatable;
1895 attr->access = c->access;
1899 /******************** Statement label management ********************/
1901 /* Comparison function for statement labels, used for managing the
1902 binary tree. */
1904 static int
1905 compare_st_labels (void *a1, void *b1)
1907 int a = ((gfc_st_label *) a1)->value;
1908 int b = ((gfc_st_label *) b1)->value;
1910 return (b - a);
1914 /* Free a single gfc_st_label structure, making sure the tree is not
1915 messed up. This function is called only when some parse error
1916 occurs. */
1918 void
1919 gfc_free_st_label (gfc_st_label *label)
1922 if (label == NULL)
1923 return;
1925 gfc_delete_bbt (&gfc_current_ns->st_labels, label, compare_st_labels);
1927 if (label->format != NULL)
1928 gfc_free_expr (label->format);
1930 gfc_free (label);
1934 /* Free a whole tree of gfc_st_label structures. */
1936 static void
1937 free_st_labels (gfc_st_label *label)
1940 if (label == NULL)
1941 return;
1943 free_st_labels (label->left);
1944 free_st_labels (label->right);
1946 if (label->format != NULL)
1947 gfc_free_expr (label->format);
1948 gfc_free (label);
1952 /* Given a label number, search for and return a pointer to the label
1953 structure, creating it if it does not exist. */
1955 gfc_st_label *
1956 gfc_get_st_label (int labelno)
1958 gfc_st_label *lp;
1960 /* First see if the label is already in this namespace. */
1961 lp = gfc_current_ns->st_labels;
1962 while (lp)
1964 if (lp->value == labelno)
1965 return lp;
1967 if (lp->value < labelno)
1968 lp = lp->left;
1969 else
1970 lp = lp->right;
1973 lp = XCNEW (gfc_st_label);
1975 lp->value = labelno;
1976 lp->defined = ST_LABEL_UNKNOWN;
1977 lp->referenced = ST_LABEL_UNKNOWN;
1979 gfc_insert_bbt (&gfc_current_ns->st_labels, lp, compare_st_labels);
1981 return lp;
1985 /* Called when a statement with a statement label is about to be
1986 accepted. We add the label to the list of the current namespace,
1987 making sure it hasn't been defined previously and referenced
1988 correctly. */
1990 void
1991 gfc_define_st_label (gfc_st_label *lp, gfc_sl_type type, locus *label_locus)
1993 int labelno;
1995 labelno = lp->value;
1997 if (lp->defined != ST_LABEL_UNKNOWN)
1998 gfc_error ("Duplicate statement label %d at %L and %L", labelno,
1999 &lp->where, label_locus);
2000 else
2002 lp->where = *label_locus;
2004 switch (type)
2006 case ST_LABEL_FORMAT:
2007 if (lp->referenced == ST_LABEL_TARGET)
2008 gfc_error ("Label %d at %C already referenced as branch target",
2009 labelno);
2010 else
2011 lp->defined = ST_LABEL_FORMAT;
2013 break;
2015 case ST_LABEL_TARGET:
2016 if (lp->referenced == ST_LABEL_FORMAT)
2017 gfc_error ("Label %d at %C already referenced as a format label",
2018 labelno);
2019 else
2020 lp->defined = ST_LABEL_TARGET;
2022 break;
2024 default:
2025 lp->defined = ST_LABEL_BAD_TARGET;
2026 lp->referenced = ST_LABEL_BAD_TARGET;
2032 /* Reference a label. Given a label and its type, see if that
2033 reference is consistent with what is known about that label,
2034 updating the unknown state. Returns FAILURE if something goes
2035 wrong. */
2038 gfc_reference_st_label (gfc_st_label *lp, gfc_sl_type type)
2040 gfc_sl_type label_type;
2041 int labelno;
2042 try rc;
2044 if (lp == NULL)
2045 return SUCCESS;
2047 labelno = lp->value;
2049 if (lp->defined != ST_LABEL_UNKNOWN)
2050 label_type = lp->defined;
2051 else
2053 label_type = lp->referenced;
2054 lp->where = gfc_current_locus;
2057 if (label_type == ST_LABEL_FORMAT && type == ST_LABEL_TARGET)
2059 gfc_error ("Label %d at %C previously used as a FORMAT label", labelno);
2060 rc = FAILURE;
2061 goto done;
2064 if ((label_type == ST_LABEL_TARGET || label_type == ST_LABEL_BAD_TARGET)
2065 && type == ST_LABEL_FORMAT)
2067 gfc_error ("Label %d at %C previously used as branch target", labelno);
2068 rc = FAILURE;
2069 goto done;
2072 lp->referenced = type;
2073 rc = SUCCESS;
2075 done:
2076 return rc;
2080 /*******A helper function for creating new expressions*************/
2083 gfc_expr *
2084 gfc_lval_expr_from_sym (gfc_symbol *sym)
2086 gfc_expr *lval;
2087 lval = gfc_get_expr ();
2088 lval->expr_type = EXPR_VARIABLE;
2089 lval->where = sym->declared_at;
2090 lval->ts = sym->ts;
2091 lval->symtree = gfc_find_symtree (sym->ns->sym_root, sym->name);
2093 /* It will always be a full array. */
2094 lval->rank = sym->as ? sym->as->rank : 0;
2095 if (lval->rank)
2097 lval->ref = gfc_get_ref ();
2098 lval->ref->type = REF_ARRAY;
2099 lval->ref->u.ar.type = AR_FULL;
2100 lval->ref->u.ar.dimen = lval->rank;
2101 lval->ref->u.ar.where = sym->declared_at;
2102 lval->ref->u.ar.as = sym->as;
2105 return lval;
2109 /************** Symbol table management subroutines ****************/
2111 /* Basic details: Fortran 95 requires a potentially unlimited number
2112 of distinct namespaces when compiling a program unit. This case
2113 occurs during a compilation of internal subprograms because all of
2114 the internal subprograms must be read before we can start
2115 generating code for the host.
2117 Given the tricky nature of the Fortran grammar, we must be able to
2118 undo changes made to a symbol table if the current interpretation
2119 of a statement is found to be incorrect. Whenever a symbol is
2120 looked up, we make a copy of it and link to it. All of these
2121 symbols are kept in a singly linked list so that we can commit or
2122 undo the changes at a later time.
2124 A symtree may point to a symbol node outside of its namespace. In
2125 this case, that symbol has been used as a host associated variable
2126 at some previous time. */
2128 /* Allocate a new namespace structure. Copies the implicit types from
2129 PARENT if PARENT_TYPES is set. */
2131 gfc_namespace *
2132 gfc_get_namespace (gfc_namespace *parent, int parent_types)
2134 gfc_namespace *ns;
2135 gfc_typespec *ts;
2136 gfc_intrinsic_op in;
2137 int i;
2139 ns = XCNEW (gfc_namespace);
2140 ns->sym_root = NULL;
2141 ns->uop_root = NULL;
2142 ns->finalizers = NULL;
2143 ns->default_access = ACCESS_UNKNOWN;
2144 ns->parent = parent;
2146 for (in = GFC_INTRINSIC_BEGIN; in != GFC_INTRINSIC_END; in++)
2147 ns->operator_access[in] = ACCESS_UNKNOWN;
2149 /* Initialize default implicit types. */
2150 for (i = 'a'; i <= 'z'; i++)
2152 ns->set_flag[i - 'a'] = 0;
2153 ts = &ns->default_type[i - 'a'];
2155 if (parent_types && ns->parent != NULL)
2157 /* Copy parent settings. */
2158 *ts = ns->parent->default_type[i - 'a'];
2159 continue;
2162 if (gfc_option.flag_implicit_none != 0)
2164 gfc_clear_ts (ts);
2165 continue;
2168 if ('i' <= i && i <= 'n')
2170 ts->type = BT_INTEGER;
2171 ts->kind = gfc_default_integer_kind;
2173 else
2175 ts->type = BT_REAL;
2176 ts->kind = gfc_default_real_kind;
2180 ns->refs = 1;
2182 return ns;
2186 /* Comparison function for symtree nodes. */
2188 static int
2189 compare_symtree (void *_st1, void *_st2)
2191 gfc_symtree *st1, *st2;
2193 st1 = (gfc_symtree *) _st1;
2194 st2 = (gfc_symtree *) _st2;
2196 return strcmp (st1->name, st2->name);
2200 /* Allocate a new symtree node and associate it with the new symbol. */
2202 gfc_symtree *
2203 gfc_new_symtree (gfc_symtree **root, const char *name)
2205 gfc_symtree *st;
2207 st = XCNEW (gfc_symtree);
2208 st->name = gfc_get_string (name);
2210 gfc_insert_bbt (root, st, compare_symtree);
2211 return st;
2215 /* Delete a symbol from the tree. Does not free the symbol itself! */
2217 void
2218 gfc_delete_symtree (gfc_symtree **root, const char *name)
2220 gfc_symtree st, *st0;
2222 st0 = gfc_find_symtree (*root, name);
2224 st.name = gfc_get_string (name);
2225 gfc_delete_bbt (root, &st, compare_symtree);
2227 gfc_free (st0);
2231 /* Given a root symtree node and a name, try to find the symbol within
2232 the namespace. Returns NULL if the symbol is not found. */
2234 gfc_symtree *
2235 gfc_find_symtree (gfc_symtree *st, const char *name)
2237 int c;
2239 while (st != NULL)
2241 c = strcmp (name, st->name);
2242 if (c == 0)
2243 return st;
2245 st = (c < 0) ? st->left : st->right;
2248 return NULL;
2252 /* Return a symtree node with a name that is guaranteed to be unique
2253 within the namespace and corresponds to an illegal fortran name. */
2255 gfc_symtree *
2256 gfc_get_unique_symtree (gfc_namespace *ns)
2258 char name[GFC_MAX_SYMBOL_LEN + 1];
2259 static int serial = 0;
2261 sprintf (name, "@%d", serial++);
2262 return gfc_new_symtree (&ns->sym_root, name);
2266 /* Given a name find a user operator node, creating it if it doesn't
2267 exist. These are much simpler than symbols because they can't be
2268 ambiguous with one another. */
2270 gfc_user_op *
2271 gfc_get_uop (const char *name)
2273 gfc_user_op *uop;
2274 gfc_symtree *st;
2276 st = gfc_find_symtree (gfc_current_ns->uop_root, name);
2277 if (st != NULL)
2278 return st->n.uop;
2280 st = gfc_new_symtree (&gfc_current_ns->uop_root, name);
2282 uop = st->n.uop = XCNEW (gfc_user_op);
2283 uop->name = gfc_get_string (name);
2284 uop->access = ACCESS_UNKNOWN;
2285 uop->ns = gfc_current_ns;
2287 return uop;
2291 /* Given a name find the user operator node. Returns NULL if it does
2292 not exist. */
2294 gfc_user_op *
2295 gfc_find_uop (const char *name, gfc_namespace *ns)
2297 gfc_symtree *st;
2299 if (ns == NULL)
2300 ns = gfc_current_ns;
2302 st = gfc_find_symtree (ns->uop_root, name);
2303 return (st == NULL) ? NULL : st->n.uop;
2307 /* Remove a gfc_symbol structure and everything it points to. */
2309 void
2310 gfc_free_symbol (gfc_symbol *sym)
2313 if (sym == NULL)
2314 return;
2316 gfc_free_array_spec (sym->as);
2318 free_components (sym->components);
2320 gfc_free_expr (sym->value);
2322 gfc_free_namelist (sym->namelist);
2324 gfc_free_namespace (sym->formal_ns);
2326 if (!sym->attr.generic_copy)
2327 gfc_free_interface (sym->generic);
2329 gfc_free_formal_arglist (sym->formal);
2331 gfc_free_namespace (sym->f2k_derived);
2333 gfc_free (sym);
2337 /* Allocate and initialize a new symbol node. */
2339 gfc_symbol *
2340 gfc_new_symbol (const char *name, gfc_namespace *ns)
2342 gfc_symbol *p;
2344 p = XCNEW (gfc_symbol);
2346 gfc_clear_ts (&p->ts);
2347 gfc_clear_attr (&p->attr);
2348 p->ns = ns;
2350 p->declared_at = gfc_current_locus;
2352 if (strlen (name) > GFC_MAX_SYMBOL_LEN)
2353 gfc_internal_error ("new_symbol(): Symbol name too long");
2355 p->name = gfc_get_string (name);
2357 /* Make sure flags for symbol being C bound are clear initially. */
2358 p->attr.is_bind_c = 0;
2359 p->attr.is_iso_c = 0;
2360 /* Make sure the binding label field has a Nul char to start. */
2361 p->binding_label[0] = '\0';
2363 /* Clear the ptrs we may need. */
2364 p->common_block = NULL;
2365 p->f2k_derived = NULL;
2367 return p;
2371 /* Generate an error if a symbol is ambiguous. */
2373 static void
2374 ambiguous_symbol (const char *name, gfc_symtree *st)
2377 if (st->n.sym->module)
2378 gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
2379 "from module '%s'", name, st->n.sym->name, st->n.sym->module);
2380 else
2381 gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
2382 "from current program unit", name, st->n.sym->name);
2386 /* Search for a symtree starting in the current namespace, resorting to
2387 any parent namespaces if requested by a nonzero parent_flag.
2388 Returns nonzero if the name is ambiguous. */
2391 gfc_find_sym_tree (const char *name, gfc_namespace *ns, int parent_flag,
2392 gfc_symtree **result)
2394 gfc_symtree *st;
2396 if (ns == NULL)
2397 ns = gfc_current_ns;
2401 st = gfc_find_symtree (ns->sym_root, name);
2402 if (st != NULL)
2404 *result = st;
2405 /* Ambiguous generic interfaces are permitted, as long
2406 as the specific interfaces are different. */
2407 if (st->ambiguous && !st->n.sym->attr.generic)
2409 ambiguous_symbol (name, st);
2410 return 1;
2413 return 0;
2416 if (!parent_flag)
2417 break;
2419 ns = ns->parent;
2421 while (ns != NULL);
2423 *result = NULL;
2424 return 0;
2428 /* Same, but returns the symbol instead. */
2431 gfc_find_symbol (const char *name, gfc_namespace *ns, int parent_flag,
2432 gfc_symbol **result)
2434 gfc_symtree *st;
2435 int i;
2437 i = gfc_find_sym_tree (name, ns, parent_flag, &st);
2439 if (st == NULL)
2440 *result = NULL;
2441 else
2442 *result = st->n.sym;
2444 return i;
2448 /* Save symbol with the information necessary to back it out. */
2450 static void
2451 save_symbol_data (gfc_symbol *sym)
2454 if (sym->gfc_new || sym->old_symbol != NULL)
2455 return;
2457 sym->old_symbol = XCNEW (gfc_symbol);
2458 *(sym->old_symbol) = *sym;
2460 sym->tlink = changed_syms;
2461 changed_syms = sym;
2465 /* Given a name, find a symbol, or create it if it does not exist yet
2466 in the current namespace. If the symbol is found we make sure that
2467 it's OK.
2469 The integer return code indicates
2470 0 All OK
2471 1 The symbol name was ambiguous
2472 2 The name meant to be established was already host associated.
2474 So if the return value is nonzero, then an error was issued. */
2477 gfc_get_sym_tree (const char *name, gfc_namespace *ns, gfc_symtree **result)
2479 gfc_symtree *st;
2480 gfc_symbol *p;
2482 /* This doesn't usually happen during resolution. */
2483 if (ns == NULL)
2484 ns = gfc_current_ns;
2486 /* Try to find the symbol in ns. */
2487 st = gfc_find_symtree (ns->sym_root, name);
2489 if (st == NULL)
2491 /* If not there, create a new symbol. */
2492 p = gfc_new_symbol (name, ns);
2494 /* Add to the list of tentative symbols. */
2495 p->old_symbol = NULL;
2496 p->tlink = changed_syms;
2497 p->mark = 1;
2498 p->gfc_new = 1;
2499 changed_syms = p;
2501 st = gfc_new_symtree (&ns->sym_root, name);
2502 st->n.sym = p;
2503 p->refs++;
2506 else
2508 /* Make sure the existing symbol is OK. Ambiguous
2509 generic interfaces are permitted, as long as the
2510 specific interfaces are different. */
2511 if (st->ambiguous && !st->n.sym->attr.generic)
2513 ambiguous_symbol (name, st);
2514 return 1;
2517 p = st->n.sym;
2519 if (p->ns != ns && (!p->attr.function || ns->proc_name != p)
2520 && !(ns->proc_name
2521 && ns->proc_name->attr.if_source == IFSRC_IFBODY
2522 && (ns->has_import_set || p->attr.imported)))
2524 /* Symbol is from another namespace. */
2525 gfc_error ("Symbol '%s' at %C has already been host associated",
2526 name);
2527 return 2;
2530 p->mark = 1;
2532 /* Copy in case this symbol is changed. */
2533 save_symbol_data (p);
2536 *result = st;
2537 return 0;
2542 gfc_get_symbol (const char *name, gfc_namespace *ns, gfc_symbol **result)
2544 gfc_symtree *st;
2545 int i;
2547 i = gfc_get_sym_tree (name, ns, &st);
2548 if (i != 0)
2549 return i;
2551 if (st)
2552 *result = st->n.sym;
2553 else
2554 *result = NULL;
2555 return i;
2559 /* Subroutine that searches for a symbol, creating it if it doesn't
2560 exist, but tries to host-associate the symbol if possible. */
2563 gfc_get_ha_sym_tree (const char *name, gfc_symtree **result)
2565 gfc_symtree *st;
2566 int i;
2568 i = gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
2569 if (st != NULL)
2571 save_symbol_data (st->n.sym);
2572 *result = st;
2573 return i;
2576 if (gfc_current_ns->parent != NULL)
2578 i = gfc_find_sym_tree (name, gfc_current_ns->parent, 1, &st);
2579 if (i)
2580 return i;
2582 if (st != NULL)
2584 *result = st;
2585 return 0;
2589 return gfc_get_sym_tree (name, gfc_current_ns, result);
2594 gfc_get_ha_symbol (const char *name, gfc_symbol **result)
2596 int i;
2597 gfc_symtree *st;
2599 i = gfc_get_ha_sym_tree (name, &st);
2601 if (st)
2602 *result = st->n.sym;
2603 else
2604 *result = NULL;
2606 return i;
2609 /* Return true if both symbols could refer to the same data object. Does
2610 not take account of aliasing due to equivalence statements. */
2613 gfc_symbols_could_alias (gfc_symbol *lsym, gfc_symbol *rsym)
2615 /* Aliasing isn't possible if the symbols have different base types. */
2616 if (gfc_compare_types (&lsym->ts, &rsym->ts) == 0)
2617 return 0;
2619 /* Pointers can point to other pointers, target objects and allocatable
2620 objects. Two allocatable objects cannot share the same storage. */
2621 if (lsym->attr.pointer
2622 && (rsym->attr.pointer || rsym->attr.allocatable || rsym->attr.target))
2623 return 1;
2624 if (lsym->attr.target && rsym->attr.pointer)
2625 return 1;
2626 if (lsym->attr.allocatable && rsym->attr.pointer)
2627 return 1;
2629 return 0;
2633 /* Undoes all the changes made to symbols in the current statement.
2634 This subroutine is made simpler due to the fact that attributes are
2635 never removed once added. */
2637 void
2638 gfc_undo_symbols (void)
2640 gfc_symbol *p, *q, *old;
2642 for (p = changed_syms; p; p = q)
2644 q = p->tlink;
2646 if (p->gfc_new)
2648 /* Symbol was new. */
2649 if (p->attr.in_common && p->common_block->head)
2651 /* If the symbol was added to any common block, it
2652 needs to be removed to stop the resolver looking
2653 for a (possibly) dead symbol. */
2655 if (p->common_block->head == p)
2656 p->common_block->head = p->common_next;
2657 else
2659 gfc_symbol *cparent, *csym;
2661 cparent = p->common_block->head;
2662 csym = cparent->common_next;
2664 while (csym != p)
2666 cparent = csym;
2667 csym = csym->common_next;
2670 gcc_assert(cparent->common_next == p);
2672 cparent->common_next = csym->common_next;
2676 gfc_delete_symtree (&p->ns->sym_root, p->name);
2678 p->refs--;
2679 if (p->refs < 0)
2680 gfc_internal_error ("gfc_undo_symbols(): Negative refs");
2681 if (p->refs == 0)
2682 gfc_free_symbol (p);
2683 continue;
2686 /* Restore previous state of symbol. Just copy simple stuff. */
2687 p->mark = 0;
2688 old = p->old_symbol;
2690 p->ts.type = old->ts.type;
2691 p->ts.kind = old->ts.kind;
2693 p->attr = old->attr;
2695 if (p->value != old->value)
2697 gfc_free_expr (old->value);
2698 p->value = NULL;
2701 if (p->as != old->as)
2703 if (p->as)
2704 gfc_free_array_spec (p->as);
2705 p->as = old->as;
2708 p->generic = old->generic;
2709 p->component_access = old->component_access;
2711 if (p->namelist != NULL && old->namelist == NULL)
2713 gfc_free_namelist (p->namelist);
2714 p->namelist = NULL;
2716 else
2718 if (p->namelist_tail != old->namelist_tail)
2720 gfc_free_namelist (old->namelist_tail);
2721 old->namelist_tail->next = NULL;
2725 p->namelist_tail = old->namelist_tail;
2727 if (p->formal != old->formal)
2729 gfc_free_formal_arglist (p->formal);
2730 p->formal = old->formal;
2733 gfc_free (p->old_symbol);
2734 p->old_symbol = NULL;
2735 p->tlink = NULL;
2738 changed_syms = NULL;
2742 /* Free sym->old_symbol. sym->old_symbol is mostly a shallow copy of sym; the
2743 components of old_symbol that might need deallocation are the "allocatables"
2744 that are restored in gfc_undo_symbols(), with two exceptions: namelist and
2745 namelist_tail. In case these differ between old_symbol and sym, it's just
2746 because sym->namelist has gotten a few more items. */
2748 static void
2749 free_old_symbol (gfc_symbol *sym)
2752 if (sym->old_symbol == NULL)
2753 return;
2755 if (sym->old_symbol->as != sym->as)
2756 gfc_free_array_spec (sym->old_symbol->as);
2758 if (sym->old_symbol->value != sym->value)
2759 gfc_free_expr (sym->old_symbol->value);
2761 if (sym->old_symbol->formal != sym->formal)
2762 gfc_free_formal_arglist (sym->old_symbol->formal);
2764 gfc_free (sym->old_symbol);
2765 sym->old_symbol = NULL;
2769 /* Makes the changes made in the current statement permanent-- gets
2770 rid of undo information. */
2772 void
2773 gfc_commit_symbols (void)
2775 gfc_symbol *p, *q;
2777 for (p = changed_syms; p; p = q)
2779 q = p->tlink;
2780 p->tlink = NULL;
2781 p->mark = 0;
2782 p->gfc_new = 0;
2783 free_old_symbol (p);
2785 changed_syms = NULL;
2789 /* Makes the changes made in one symbol permanent -- gets rid of undo
2790 information. */
2792 void
2793 gfc_commit_symbol (gfc_symbol *sym)
2795 gfc_symbol *p;
2797 if (changed_syms == sym)
2798 changed_syms = sym->tlink;
2799 else
2801 for (p = changed_syms; p; p = p->tlink)
2802 if (p->tlink == sym)
2804 p->tlink = sym->tlink;
2805 break;
2809 sym->tlink = NULL;
2810 sym->mark = 0;
2811 sym->gfc_new = 0;
2813 free_old_symbol (sym);
2817 /* Recursive function that deletes an entire tree and all the common
2818 head structures it points to. */
2820 static void
2821 free_common_tree (gfc_symtree * common_tree)
2823 if (common_tree == NULL)
2824 return;
2826 free_common_tree (common_tree->left);
2827 free_common_tree (common_tree->right);
2829 gfc_free (common_tree);
2833 /* Recursive function that deletes an entire tree and all the user
2834 operator nodes that it contains. */
2836 static void
2837 free_uop_tree (gfc_symtree *uop_tree)
2840 if (uop_tree == NULL)
2841 return;
2843 free_uop_tree (uop_tree->left);
2844 free_uop_tree (uop_tree->right);
2846 gfc_free_interface (uop_tree->n.uop->op);
2848 gfc_free (uop_tree->n.uop);
2849 gfc_free (uop_tree);
2853 /* Recursive function that deletes an entire tree and all the symbols
2854 that it contains. */
2856 static void
2857 free_sym_tree (gfc_symtree *sym_tree)
2859 gfc_namespace *ns;
2860 gfc_symbol *sym;
2862 if (sym_tree == NULL)
2863 return;
2865 free_sym_tree (sym_tree->left);
2866 free_sym_tree (sym_tree->right);
2868 sym = sym_tree->n.sym;
2870 sym->refs--;
2871 if (sym->refs < 0)
2872 gfc_internal_error ("free_sym_tree(): Negative refs");
2874 if (sym->formal_ns != NULL && sym->refs == 1)
2876 /* As formal_ns contains a reference to sym, delete formal_ns just
2877 before the deletion of sym. */
2878 ns = sym->formal_ns;
2879 sym->formal_ns = NULL;
2880 gfc_free_namespace (ns);
2882 else if (sym->refs == 0)
2884 /* Go ahead and delete the symbol. */
2885 gfc_free_symbol (sym);
2888 gfc_free (sym_tree);
2892 /* Free the derived type list. */
2894 static void
2895 gfc_free_dt_list (void)
2897 gfc_dt_list *dt, *n;
2899 for (dt = gfc_derived_types; dt; dt = n)
2901 n = dt->next;
2902 gfc_free (dt);
2905 gfc_derived_types = NULL;
2909 /* Free the gfc_equiv_info's. */
2911 static void
2912 gfc_free_equiv_infos (gfc_equiv_info *s)
2914 if (s == NULL)
2915 return;
2916 gfc_free_equiv_infos (s->next);
2917 gfc_free (s);
2921 /* Free the gfc_equiv_lists. */
2923 static void
2924 gfc_free_equiv_lists (gfc_equiv_list *l)
2926 if (l == NULL)
2927 return;
2928 gfc_free_equiv_lists (l->next);
2929 gfc_free_equiv_infos (l->equiv);
2930 gfc_free (l);
2934 /* Free a finalizer procedure list. */
2936 void
2937 gfc_free_finalizer (gfc_finalizer* el)
2939 if (el)
2941 --el->procedure->refs;
2942 if (!el->procedure->refs)
2943 gfc_free_symbol (el->procedure);
2945 gfc_free (el);
2949 static void
2950 gfc_free_finalizer_list (gfc_finalizer* list)
2952 while (list)
2954 gfc_finalizer* current = list;
2955 list = list->next;
2956 gfc_free_finalizer (current);
2961 /* Free a namespace structure and everything below it. Interface
2962 lists associated with intrinsic operators are not freed. These are
2963 taken care of when a specific name is freed. */
2965 void
2966 gfc_free_namespace (gfc_namespace *ns)
2968 gfc_charlen *cl, *cl2;
2969 gfc_namespace *p, *q;
2970 gfc_intrinsic_op i;
2972 if (ns == NULL)
2973 return;
2975 ns->refs--;
2976 if (ns->refs > 0)
2977 return;
2978 gcc_assert (ns->refs == 0);
2980 gfc_free_statements (ns->code);
2982 free_sym_tree (ns->sym_root);
2983 free_uop_tree (ns->uop_root);
2984 free_common_tree (ns->common_root);
2985 gfc_free_finalizer_list (ns->finalizers);
2987 for (cl = ns->cl_list; cl; cl = cl2)
2989 cl2 = cl->next;
2990 gfc_free_expr (cl->length);
2991 gfc_free (cl);
2994 free_st_labels (ns->st_labels);
2996 gfc_free_equiv (ns->equiv);
2997 gfc_free_equiv_lists (ns->equiv_lists);
2999 for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
3000 gfc_free_interface (ns->op[i]);
3002 gfc_free_data (ns->data);
3003 p = ns->contained;
3004 gfc_free (ns);
3006 /* Recursively free any contained namespaces. */
3007 while (p != NULL)
3009 q = p;
3010 p = p->sibling;
3011 gfc_free_namespace (q);
3016 void
3017 gfc_symbol_init_2 (void)
3020 gfc_current_ns = gfc_get_namespace (NULL, 0);
3024 void
3025 gfc_symbol_done_2 (void)
3028 gfc_free_namespace (gfc_current_ns);
3029 gfc_current_ns = NULL;
3030 gfc_free_dt_list ();
3034 /* Clear mark bits from symbol nodes associated with a symtree node. */
3036 static void
3037 clear_sym_mark (gfc_symtree *st)
3040 st->n.sym->mark = 0;
3044 /* Recursively traverse the symtree nodes. */
3046 void
3047 gfc_traverse_symtree (gfc_symtree *st, void (*func) (gfc_symtree *))
3049 if (!st)
3050 return;
3052 gfc_traverse_symtree (st->left, func);
3053 (*func) (st);
3054 gfc_traverse_symtree (st->right, func);
3058 /* Recursive namespace traversal function. */
3060 static void
3061 traverse_ns (gfc_symtree *st, void (*func) (gfc_symbol *))
3064 if (st == NULL)
3065 return;
3067 traverse_ns (st->left, func);
3069 if (st->n.sym->mark == 0)
3070 (*func) (st->n.sym);
3071 st->n.sym->mark = 1;
3073 traverse_ns (st->right, func);
3077 /* Call a given function for all symbols in the namespace. We take
3078 care that each gfc_symbol node is called exactly once. */
3080 void
3081 gfc_traverse_ns (gfc_namespace *ns, void (*func) (gfc_symbol *))
3084 gfc_traverse_symtree (ns->sym_root, clear_sym_mark);
3086 traverse_ns (ns->sym_root, func);
3090 /* Return TRUE when name is the name of an intrinsic type. */
3092 bool
3093 gfc_is_intrinsic_typename (const char *name)
3095 if (strcmp (name, "integer") == 0
3096 || strcmp (name, "real") == 0
3097 || strcmp (name, "character") == 0
3098 || strcmp (name, "logical") == 0
3099 || strcmp (name, "complex") == 0
3100 || strcmp (name, "doubleprecision") == 0
3101 || strcmp (name, "doublecomplex") == 0)
3102 return true;
3103 else
3104 return false;
3108 /* Return TRUE if the symbol is an automatic variable. */
3110 static bool
3111 gfc_is_var_automatic (gfc_symbol *sym)
3113 /* Pointer and allocatable variables are never automatic. */
3114 if (sym->attr.pointer || sym->attr.allocatable)
3115 return false;
3116 /* Check for arrays with non-constant size. */
3117 if (sym->attr.dimension && sym->as
3118 && !gfc_is_compile_time_shape (sym->as))
3119 return true;
3120 /* Check for non-constant length character variables. */
3121 if (sym->ts.type == BT_CHARACTER
3122 && sym->ts.cl
3123 && !gfc_is_constant_expr (sym->ts.cl->length))
3124 return true;
3125 return false;
3128 /* Given a symbol, mark it as SAVEd if it is allowed. */
3130 static void
3131 save_symbol (gfc_symbol *sym)
3134 if (sym->attr.use_assoc)
3135 return;
3137 if (sym->attr.in_common
3138 || sym->attr.dummy
3139 || sym->attr.flavor != FL_VARIABLE)
3140 return;
3141 /* Automatic objects are not saved. */
3142 if (gfc_is_var_automatic (sym))
3143 return;
3144 gfc_add_save (&sym->attr, sym->name, &sym->declared_at);
3148 /* Mark those symbols which can be SAVEd as such. */
3150 void
3151 gfc_save_all (gfc_namespace *ns)
3154 gfc_traverse_ns (ns, save_symbol);
3158 #ifdef GFC_DEBUG
3159 /* Make sure that no changes to symbols are pending. */
3161 void
3162 gfc_symbol_state(void) {
3164 if (changed_syms != NULL)
3165 gfc_internal_error("Symbol changes still pending!");
3167 #endif
3170 /************** Global symbol handling ************/
3173 /* Search a tree for the global symbol. */
3175 gfc_gsymbol *
3176 gfc_find_gsymbol (gfc_gsymbol *symbol, const char *name)
3178 int c;
3180 if (symbol == NULL)
3181 return NULL;
3183 while (symbol)
3185 c = strcmp (name, symbol->name);
3186 if (!c)
3187 return symbol;
3189 symbol = (c < 0) ? symbol->left : symbol->right;
3192 return NULL;
3196 /* Compare two global symbols. Used for managing the BB tree. */
3198 static int
3199 gsym_compare (void *_s1, void *_s2)
3201 gfc_gsymbol *s1, *s2;
3203 s1 = (gfc_gsymbol *) _s1;
3204 s2 = (gfc_gsymbol *) _s2;
3205 return strcmp (s1->name, s2->name);
3209 /* Get a global symbol, creating it if it doesn't exist. */
3211 gfc_gsymbol *
3212 gfc_get_gsymbol (const char *name)
3214 gfc_gsymbol *s;
3216 s = gfc_find_gsymbol (gfc_gsym_root, name);
3217 if (s != NULL)
3218 return s;
3220 s = XCNEW (gfc_gsymbol);
3221 s->type = GSYM_UNKNOWN;
3222 s->name = gfc_get_string (name);
3224 gfc_insert_bbt (&gfc_gsym_root, s, gsym_compare);
3226 return s;
3230 static gfc_symbol *
3231 get_iso_c_binding_dt (int sym_id)
3233 gfc_dt_list *dt_list;
3235 dt_list = gfc_derived_types;
3237 /* Loop through the derived types in the name list, searching for
3238 the desired symbol from iso_c_binding. Search the parent namespaces
3239 if necessary and requested to (parent_flag). */
3240 while (dt_list != NULL)
3242 if (dt_list->derived->from_intmod != INTMOD_NONE
3243 && dt_list->derived->intmod_sym_id == sym_id)
3244 return dt_list->derived;
3246 dt_list = dt_list->next;
3249 return NULL;
3253 /* Verifies that the given derived type symbol, derived_sym, is interoperable
3254 with C. This is necessary for any derived type that is BIND(C) and for
3255 derived types that are parameters to functions that are BIND(C). All
3256 fields of the derived type are required to be interoperable, and are tested
3257 for such. If an error occurs, the errors are reported here, allowing for
3258 multiple errors to be handled for a single derived type. */
3261 verify_bind_c_derived_type (gfc_symbol *derived_sym)
3263 gfc_component *curr_comp = NULL;
3264 try is_c_interop = FAILURE;
3265 try retval = SUCCESS;
3267 if (derived_sym == NULL)
3268 gfc_internal_error ("verify_bind_c_derived_type(): Given symbol is "
3269 "unexpectedly NULL");
3271 /* If we've already looked at this derived symbol, do not look at it again
3272 so we don't repeat warnings/errors. */
3273 if (derived_sym->ts.is_c_interop)
3274 return SUCCESS;
3276 /* The derived type must have the BIND attribute to be interoperable
3277 J3/04-007, Section 15.2.3. */
3278 if (derived_sym->attr.is_bind_c != 1)
3280 derived_sym->ts.is_c_interop = 0;
3281 gfc_error_now ("Derived type '%s' declared at %L must have the BIND "
3282 "attribute to be C interoperable", derived_sym->name,
3283 &(derived_sym->declared_at));
3284 retval = FAILURE;
3287 curr_comp = derived_sym->components;
3289 /* TODO: is this really an error? */
3290 if (curr_comp == NULL)
3292 gfc_error ("Derived type '%s' at %L is empty",
3293 derived_sym->name, &(derived_sym->declared_at));
3294 return FAILURE;
3297 /* Initialize the derived type as being C interoperable.
3298 If we find an error in the components, this will be set false. */
3299 derived_sym->ts.is_c_interop = 1;
3301 /* Loop through the list of components to verify that the kind of
3302 each is a C interoperable type. */
3305 /* The components cannot be pointers (fortran sense).
3306 J3/04-007, Section 15.2.3, C1505. */
3307 if (curr_comp->pointer != 0)
3309 gfc_error ("Component '%s' at %L cannot have the "
3310 "POINTER attribute because it is a member "
3311 "of the BIND(C) derived type '%s' at %L",
3312 curr_comp->name, &(curr_comp->loc),
3313 derived_sym->name, &(derived_sym->declared_at));
3314 retval = FAILURE;
3317 /* The components cannot be allocatable.
3318 J3/04-007, Section 15.2.3, C1505. */
3319 if (curr_comp->allocatable != 0)
3321 gfc_error ("Component '%s' at %L cannot have the "
3322 "ALLOCATABLE attribute because it is a member "
3323 "of the BIND(C) derived type '%s' at %L",
3324 curr_comp->name, &(curr_comp->loc),
3325 derived_sym->name, &(derived_sym->declared_at));
3326 retval = FAILURE;
3329 /* BIND(C) derived types must have interoperable components. */
3330 if (curr_comp->ts.type == BT_DERIVED
3331 && curr_comp->ts.derived->ts.is_iso_c != 1
3332 && curr_comp->ts.derived != derived_sym)
3334 /* This should be allowed; the draft says a derived-type can not
3335 have type parameters if it is has the BIND attribute. Type
3336 parameters seem to be for making parameterized derived types.
3337 There's no need to verify the type if it is c_ptr/c_funptr. */
3338 retval = verify_bind_c_derived_type (curr_comp->ts.derived);
3340 else
3342 /* Grab the typespec for the given component and test the kind. */
3343 is_c_interop = verify_c_interop (&(curr_comp->ts), curr_comp->name,
3344 &(curr_comp->loc));
3346 if (is_c_interop != SUCCESS)
3348 /* Report warning and continue since not fatal. The
3349 draft does specify a constraint that requires all fields
3350 to interoperate, but if the user says real(4), etc., it
3351 may interoperate with *something* in C, but the compiler
3352 most likely won't know exactly what. Further, it may not
3353 interoperate with the same data type(s) in C if the user
3354 recompiles with different flags (e.g., -m32 and -m64 on
3355 x86_64 and using integer(4) to claim interop with a
3356 C_LONG). */
3357 if (derived_sym->attr.is_bind_c == 1)
3358 /* If the derived type is bind(c), all fields must be
3359 interop. */
3360 gfc_warning ("Component '%s' in derived type '%s' at %L "
3361 "may not be C interoperable, even though "
3362 "derived type '%s' is BIND(C)",
3363 curr_comp->name, derived_sym->name,
3364 &(curr_comp->loc), derived_sym->name);
3365 else
3366 /* If derived type is param to bind(c) routine, or to one
3367 of the iso_c_binding procs, it must be interoperable, so
3368 all fields must interop too. */
3369 gfc_warning ("Component '%s' in derived type '%s' at %L "
3370 "may not be C interoperable",
3371 curr_comp->name, derived_sym->name,
3372 &(curr_comp->loc));
3376 curr_comp = curr_comp->next;
3377 } while (curr_comp != NULL);
3380 /* Make sure we don't have conflicts with the attributes. */
3381 if (derived_sym->attr.access == ACCESS_PRIVATE)
3383 gfc_error ("Derived type '%s' at %L cannot be declared with both "
3384 "PRIVATE and BIND(C) attributes", derived_sym->name,
3385 &(derived_sym->declared_at));
3386 retval = FAILURE;
3389 if (derived_sym->attr.sequence != 0)
3391 gfc_error ("Derived type '%s' at %L cannot have the SEQUENCE "
3392 "attribute because it is BIND(C)", derived_sym->name,
3393 &(derived_sym->declared_at));
3394 retval = FAILURE;
3397 /* Mark the derived type as not being C interoperable if we found an
3398 error. If there were only warnings, proceed with the assumption
3399 it's interoperable. */
3400 if (retval == FAILURE)
3401 derived_sym->ts.is_c_interop = 0;
3403 return retval;
3407 /* Generate symbols for the named constants c_null_ptr and c_null_funptr. */
3409 static try
3410 gen_special_c_interop_ptr (int ptr_id, const char *ptr_name,
3411 const char *module_name)
3413 gfc_symtree *tmp_symtree;
3414 gfc_symbol *tmp_sym;
3416 tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, ptr_name);
3418 if (tmp_symtree != NULL)
3419 tmp_sym = tmp_symtree->n.sym;
3420 else
3422 tmp_sym = NULL;
3423 gfc_internal_error ("gen_special_c_interop_ptr(): Unable to "
3424 "create symbol for %s", ptr_name);
3427 /* Set up the symbol's important fields. Save attr required so we can
3428 initialize the ptr to NULL. */
3429 tmp_sym->attr.save = SAVE_EXPLICIT;
3430 tmp_sym->ts.is_c_interop = 1;
3431 tmp_sym->attr.is_c_interop = 1;
3432 tmp_sym->ts.is_iso_c = 1;
3433 tmp_sym->ts.type = BT_DERIVED;
3435 /* The c_ptr and c_funptr derived types will provide the
3436 definition for c_null_ptr and c_null_funptr, respectively. */
3437 if (ptr_id == ISOCBINDING_NULL_PTR)
3438 tmp_sym->ts.derived = get_iso_c_binding_dt (ISOCBINDING_PTR);
3439 else
3440 tmp_sym->ts.derived = get_iso_c_binding_dt (ISOCBINDING_FUNPTR);
3441 if (tmp_sym->ts.derived == NULL)
3443 /* This can occur if the user forgot to declare c_ptr or
3444 c_funptr and they're trying to use one of the procedures
3445 that has arg(s) of the missing type. In this case, a
3446 regular version of the thing should have been put in the
3447 current ns. */
3448 generate_isocbinding_symbol (module_name, ptr_id == ISOCBINDING_NULL_PTR
3449 ? ISOCBINDING_PTR : ISOCBINDING_FUNPTR,
3450 (const char *) (ptr_id == ISOCBINDING_NULL_PTR
3451 ? "_gfortran_iso_c_binding_c_ptr"
3452 : "_gfortran_iso_c_binding_c_funptr"));
3454 tmp_sym->ts.derived =
3455 get_iso_c_binding_dt (ptr_id == ISOCBINDING_NULL_PTR
3456 ? ISOCBINDING_PTR : ISOCBINDING_FUNPTR);
3459 /* Module name is some mangled version of iso_c_binding. */
3460 tmp_sym->module = gfc_get_string (module_name);
3462 /* Say it's from the iso_c_binding module. */
3463 tmp_sym->attr.is_iso_c = 1;
3465 tmp_sym->attr.use_assoc = 1;
3466 tmp_sym->attr.is_bind_c = 1;
3467 /* Set the binding_label. */
3468 sprintf (tmp_sym->binding_label, "%s_%s", module_name, tmp_sym->name);
3470 /* Set the c_address field of c_null_ptr and c_null_funptr to
3471 the value of NULL. */
3472 tmp_sym->value = gfc_get_expr ();
3473 tmp_sym->value->expr_type = EXPR_STRUCTURE;
3474 tmp_sym->value->ts.type = BT_DERIVED;
3475 tmp_sym->value->ts.derived = tmp_sym->ts.derived;
3476 /* Create a constructor with no expr, that way we can recognize if the user
3477 tries to call the structure constructor for one of the iso_c_binding
3478 derived types during resolution (resolve_structure_cons). */
3479 tmp_sym->value->value.constructor = gfc_get_constructor ();
3480 /* Must declare c_null_ptr and c_null_funptr as having the
3481 PARAMETER attribute so they can be used in init expressions. */
3482 tmp_sym->attr.flavor = FL_PARAMETER;
3484 return SUCCESS;
3488 /* Add a formal argument, gfc_formal_arglist, to the
3489 end of the given list of arguments. Set the reference to the
3490 provided symbol, param_sym, in the argument. */
3492 static void
3493 add_formal_arg (gfc_formal_arglist **head,
3494 gfc_formal_arglist **tail,
3495 gfc_formal_arglist *formal_arg,
3496 gfc_symbol *param_sym)
3498 /* Put in list, either as first arg or at the tail (curr arg). */
3499 if (*head == NULL)
3500 *head = *tail = formal_arg;
3501 else
3503 (*tail)->next = formal_arg;
3504 (*tail) = formal_arg;
3507 (*tail)->sym = param_sym;
3508 (*tail)->next = NULL;
3510 return;
3514 /* Generates a symbol representing the CPTR argument to an
3515 iso_c_binding procedure. Also, create a gfc_formal_arglist for the
3516 CPTR and add it to the provided argument list. */
3518 static void
3519 gen_cptr_param (gfc_formal_arglist **head,
3520 gfc_formal_arglist **tail,
3521 const char *module_name,
3522 gfc_namespace *ns, const char *c_ptr_name,
3523 int iso_c_sym_id)
3525 gfc_symbol *param_sym = NULL;
3526 gfc_symbol *c_ptr_sym = NULL;
3527 gfc_symtree *param_symtree = NULL;
3528 gfc_formal_arglist *formal_arg = NULL;
3529 const char *c_ptr_in;
3530 const char *c_ptr_type = NULL;
3532 if (iso_c_sym_id == ISOCBINDING_F_PROCPOINTER)
3533 c_ptr_type = "_gfortran_iso_c_binding_c_funptr";
3534 else
3535 c_ptr_type = "_gfortran_iso_c_binding_c_ptr";
3537 if(c_ptr_name == NULL)
3538 c_ptr_in = "gfc_cptr__";
3539 else
3540 c_ptr_in = c_ptr_name;
3541 gfc_get_sym_tree (c_ptr_in, ns, &param_symtree);
3542 if (param_symtree != NULL)
3543 param_sym = param_symtree->n.sym;
3544 else
3545 gfc_internal_error ("gen_cptr_param(): Unable to "
3546 "create symbol for %s", c_ptr_in);
3548 /* Set up the appropriate fields for the new c_ptr param sym. */
3549 param_sym->refs++;
3550 param_sym->attr.flavor = FL_DERIVED;
3551 param_sym->ts.type = BT_DERIVED;
3552 param_sym->attr.intent = INTENT_IN;
3553 param_sym->attr.dummy = 1;
3555 /* This will pass the ptr to the iso_c routines as a (void *). */
3556 param_sym->attr.value = 1;
3557 param_sym->attr.use_assoc = 1;
3559 /* Get the symbol for c_ptr or c_funptr, no matter what it's name is
3560 (user renamed). */
3561 if (iso_c_sym_id == ISOCBINDING_F_PROCPOINTER)
3562 c_ptr_sym = get_iso_c_binding_dt (ISOCBINDING_FUNPTR);
3563 else
3564 c_ptr_sym = get_iso_c_binding_dt (ISOCBINDING_PTR);
3565 if (c_ptr_sym == NULL)
3567 /* This can happen if the user did not define c_ptr but they are
3568 trying to use one of the iso_c_binding functions that need it. */
3569 if (iso_c_sym_id == ISOCBINDING_F_PROCPOINTER)
3570 generate_isocbinding_symbol (module_name, ISOCBINDING_FUNPTR,
3571 (const char *)c_ptr_type);
3572 else
3573 generate_isocbinding_symbol (module_name, ISOCBINDING_PTR,
3574 (const char *)c_ptr_type);
3576 gfc_get_ha_symbol (c_ptr_type, &(c_ptr_sym));
3579 param_sym->ts.derived = c_ptr_sym;
3580 param_sym->module = gfc_get_string (module_name);
3582 /* Make new formal arg. */
3583 formal_arg = gfc_get_formal_arglist ();
3584 /* Add arg to list of formal args (the CPTR arg). */
3585 add_formal_arg (head, tail, formal_arg, param_sym);
3589 /* Generates a symbol representing the FPTR argument to an
3590 iso_c_binding procedure. Also, create a gfc_formal_arglist for the
3591 FPTR and add it to the provided argument list. */
3593 static void
3594 gen_fptr_param (gfc_formal_arglist **head,
3595 gfc_formal_arglist **tail,
3596 const char *module_name,
3597 gfc_namespace *ns, const char *f_ptr_name, int proc)
3599 gfc_symbol *param_sym = NULL;
3600 gfc_symtree *param_symtree = NULL;
3601 gfc_formal_arglist *formal_arg = NULL;
3602 const char *f_ptr_out = "gfc_fptr__";
3604 if (f_ptr_name != NULL)
3605 f_ptr_out = f_ptr_name;
3607 gfc_get_sym_tree (f_ptr_out, ns, &param_symtree);
3608 if (param_symtree != NULL)
3609 param_sym = param_symtree->n.sym;
3610 else
3611 gfc_internal_error ("generateFPtrParam(): Unable to "
3612 "create symbol for %s", f_ptr_out);
3614 /* Set up the necessary fields for the fptr output param sym. */
3615 param_sym->refs++;
3616 if (proc)
3617 param_sym->attr.proc_pointer = 1;
3618 else
3619 param_sym->attr.pointer = 1;
3620 param_sym->attr.dummy = 1;
3621 param_sym->attr.use_assoc = 1;
3623 /* ISO C Binding type to allow any pointer type as actual param. */
3624 param_sym->ts.type = BT_VOID;
3625 param_sym->module = gfc_get_string (module_name);
3627 /* Make the arg. */
3628 formal_arg = gfc_get_formal_arglist ();
3629 /* Add arg to list of formal args. */
3630 add_formal_arg (head, tail, formal_arg, param_sym);
3634 /* Generates a symbol representing the optional SHAPE argument for the
3635 iso_c_binding c_f_pointer() procedure. Also, create a
3636 gfc_formal_arglist for the SHAPE and add it to the provided
3637 argument list. */
3639 static void
3640 gen_shape_param (gfc_formal_arglist **head,
3641 gfc_formal_arglist **tail,
3642 const char *module_name,
3643 gfc_namespace *ns, const char *shape_param_name)
3645 gfc_symbol *param_sym = NULL;
3646 gfc_symtree *param_symtree = NULL;
3647 gfc_formal_arglist *formal_arg = NULL;
3648 const char *shape_param = "gfc_shape_array__";
3649 int i;
3651 if (shape_param_name != NULL)
3652 shape_param = shape_param_name;
3654 gfc_get_sym_tree (shape_param, ns, &param_symtree);
3655 if (param_symtree != NULL)
3656 param_sym = param_symtree->n.sym;
3657 else
3658 gfc_internal_error ("generateShapeParam(): Unable to "
3659 "create symbol for %s", shape_param);
3661 /* Set up the necessary fields for the shape input param sym. */
3662 param_sym->refs++;
3663 param_sym->attr.dummy = 1;
3664 param_sym->attr.use_assoc = 1;
3666 /* Integer array, rank 1, describing the shape of the object. Make it's
3667 type BT_VOID initially so we can accept any type/kind combination of
3668 integer. During gfc_iso_c_sub_interface (resolve.c), we'll make it
3669 of BT_INTEGER type. */
3670 param_sym->ts.type = BT_VOID;
3672 /* Initialize the kind to default integer. However, it will be overridden
3673 during resolution to match the kind of the SHAPE parameter given as
3674 the actual argument (to allow for any valid integer kind). */
3675 param_sym->ts.kind = gfc_default_integer_kind;
3676 param_sym->as = gfc_get_array_spec ();
3678 /* Clear out the dimension info for the array. */
3679 for (i = 0; i < GFC_MAX_DIMENSIONS; i++)
3681 param_sym->as->lower[i] = NULL;
3682 param_sym->as->upper[i] = NULL;
3684 param_sym->as->rank = 1;
3685 param_sym->as->lower[0] = gfc_int_expr (1);
3687 /* The extent is unknown until we get it. The length give us
3688 the rank the incoming pointer. */
3689 param_sym->as->type = AS_ASSUMED_SHAPE;
3691 /* The arg is also optional; it is required iff the second arg
3692 (fptr) is to an array, otherwise, it's ignored. */
3693 param_sym->attr.optional = 1;
3694 param_sym->attr.intent = INTENT_IN;
3695 param_sym->attr.dimension = 1;
3696 param_sym->module = gfc_get_string (module_name);
3698 /* Make the arg. */
3699 formal_arg = gfc_get_formal_arglist ();
3700 /* Add arg to list of formal args. */
3701 add_formal_arg (head, tail, formal_arg, param_sym);
3704 /* Add a procedure interface to the given symbol (i.e., store a
3705 reference to the list of formal arguments). */
3707 static void
3708 add_proc_interface (gfc_symbol *sym, ifsrc source,
3709 gfc_formal_arglist *formal)
3712 sym->formal = formal;
3713 sym->attr.if_source = source;
3716 /* Copy the formal args from an existing symbol, src, into a new
3717 symbol, dest. New formal args are created, and the description of
3718 each arg is set according to the existing ones. This function is
3719 used when creating procedure declaration variables from a procedure
3720 declaration statement (see match_proc_decl()) to create the formal
3721 args based on the args of a given named interface. */
3723 void
3724 copy_formal_args (gfc_symbol *dest, gfc_symbol *src)
3726 gfc_formal_arglist *head = NULL;
3727 gfc_formal_arglist *tail = NULL;
3728 gfc_formal_arglist *formal_arg = NULL;
3729 gfc_formal_arglist *curr_arg = NULL;
3730 gfc_formal_arglist *formal_prev = NULL;
3731 /* Save current namespace so we can change it for formal args. */
3732 gfc_namespace *parent_ns = gfc_current_ns;
3734 /* Create a new namespace, which will be the formal ns (namespace
3735 of the formal args). */
3736 gfc_current_ns = gfc_get_namespace (parent_ns, 0);
3737 gfc_current_ns->proc_name = dest;
3739 for (curr_arg = src->formal; curr_arg; curr_arg = curr_arg->next)
3741 formal_arg = gfc_get_formal_arglist ();
3742 gfc_get_symbol (curr_arg->sym->name, gfc_current_ns, &(formal_arg->sym));
3744 /* May need to copy more info for the symbol. */
3745 formal_arg->sym->attr = curr_arg->sym->attr;
3746 formal_arg->sym->ts = curr_arg->sym->ts;
3747 formal_arg->sym->as = gfc_copy_array_spec (curr_arg->sym->as);
3749 /* If this isn't the first arg, set up the next ptr. For the
3750 last arg built, the formal_arg->next will never get set to
3751 anything other than NULL. */
3752 if (formal_prev != NULL)
3753 formal_prev->next = formal_arg;
3754 else
3755 formal_arg->next = NULL;
3757 formal_prev = formal_arg;
3759 /* Add arg to list of formal args. */
3760 add_formal_arg (&head, &tail, formal_arg, formal_arg->sym);
3763 /* Add the interface to the symbol. */
3764 add_proc_interface (dest, IFSRC_DECL, head);
3766 /* Store the formal namespace information. */
3767 if (dest->formal != NULL)
3768 /* The current ns should be that for the dest proc. */
3769 dest->formal_ns = gfc_current_ns;
3770 /* Restore the current namespace to what it was on entry. */
3771 gfc_current_ns = parent_ns;
3774 /* Builds the parameter list for the iso_c_binding procedure
3775 c_f_pointer or c_f_procpointer. The old_sym typically refers to a
3776 generic version of either the c_f_pointer or c_f_procpointer
3777 functions. The new_proc_sym represents a "resolved" version of the
3778 symbol. The functions are resolved to match the types of their
3779 parameters; for example, c_f_pointer(cptr, fptr) would resolve to
3780 something similar to c_f_pointer_i4 if the type of data object fptr
3781 pointed to was a default integer. The actual name of the resolved
3782 procedure symbol is further mangled with the module name, etc., but
3783 the idea holds true. */
3785 static void
3786 build_formal_args (gfc_symbol *new_proc_sym,
3787 gfc_symbol *old_sym, int add_optional_arg)
3789 gfc_formal_arglist *head = NULL, *tail = NULL;
3790 gfc_namespace *parent_ns = NULL;
3792 parent_ns = gfc_current_ns;
3793 /* Create a new namespace, which will be the formal ns (namespace
3794 of the formal args). */
3795 gfc_current_ns = gfc_get_namespace(parent_ns, 0);
3796 gfc_current_ns->proc_name = new_proc_sym;
3798 /* Generate the params. */
3799 if (old_sym->intmod_sym_id == ISOCBINDING_F_PROCPOINTER)
3801 gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
3802 gfc_current_ns, "cptr", old_sym->intmod_sym_id);
3803 gen_fptr_param (&head, &tail, (const char *) new_proc_sym->module,
3804 gfc_current_ns, "fptr", 1);
3806 else if (old_sym->intmod_sym_id == ISOCBINDING_F_POINTER)
3808 gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
3809 gfc_current_ns, "cptr", old_sym->intmod_sym_id);
3810 gen_fptr_param (&head, &tail, (const char *) new_proc_sym->module,
3811 gfc_current_ns, "fptr", 0);
3812 /* If we're dealing with c_f_pointer, it has an optional third arg. */
3813 gen_shape_param (&head, &tail,(const char *) new_proc_sym->module,
3814 gfc_current_ns, "shape");
3817 else if (old_sym->intmod_sym_id == ISOCBINDING_ASSOCIATED)
3819 /* c_associated has one required arg and one optional; both
3820 are c_ptrs. */
3821 gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
3822 gfc_current_ns, "c_ptr_1", ISOCBINDING_ASSOCIATED);
3823 if (add_optional_arg)
3825 gen_cptr_param (&head, &tail, (const char *) new_proc_sym->module,
3826 gfc_current_ns, "c_ptr_2", ISOCBINDING_ASSOCIATED);
3827 /* The last param is optional so mark it as such. */
3828 tail->sym->attr.optional = 1;
3832 /* Add the interface (store formal args to new_proc_sym). */
3833 add_proc_interface (new_proc_sym, IFSRC_DECL, head);
3835 /* Set up the formal_ns pointer to the one created for the
3836 new procedure so it'll get cleaned up during gfc_free_symbol(). */
3837 new_proc_sym->formal_ns = gfc_current_ns;
3839 gfc_current_ns = parent_ns;
3842 static int
3843 std_for_isocbinding_symbol (int id)
3845 switch (id)
3847 #define NAMED_INTCST(a,b,c,d) \
3848 case a:\
3849 return d;
3850 #include "iso-c-binding.def"
3851 #undef NAMED_INTCST
3852 default:
3853 return GFC_STD_F2003;
3857 /* Generate the given set of C interoperable kind objects, or all
3858 interoperable kinds. This function will only be given kind objects
3859 for valid iso_c_binding defined types because this is verified when
3860 the 'use' statement is parsed. If the user gives an 'only' clause,
3861 the specific kinds are looked up; if they don't exist, an error is
3862 reported. If the user does not give an 'only' clause, all
3863 iso_c_binding symbols are generated. If a list of specific kinds
3864 is given, it must have a NULL in the first empty spot to mark the
3865 end of the list. */
3868 void
3869 generate_isocbinding_symbol (const char *mod_name, iso_c_binding_symbol s,
3870 const char *local_name)
3872 const char *const name = (local_name && local_name[0]) ? local_name
3873 : c_interop_kinds_table[s].name;
3874 gfc_symtree *tmp_symtree = NULL;
3875 gfc_symbol *tmp_sym = NULL;
3876 gfc_dt_list **dt_list_ptr = NULL;
3877 gfc_component *tmp_comp = NULL;
3878 char comp_name[(GFC_MAX_SYMBOL_LEN * 2) + 1];
3879 int index;
3881 if (gfc_notification_std (std_for_isocbinding_symbol (s)) == FAILURE)
3882 return;
3883 tmp_symtree = gfc_find_symtree (gfc_current_ns->sym_root, name);
3885 /* Already exists in this scope so don't re-add it.
3886 TODO: we should probably check that it's really the same symbol. */
3887 if (tmp_symtree != NULL)
3888 return;
3890 /* Create the sym tree in the current ns. */
3891 gfc_get_sym_tree (name, gfc_current_ns, &tmp_symtree);
3892 if (tmp_symtree)
3893 tmp_sym = tmp_symtree->n.sym;
3894 else
3895 gfc_internal_error ("generate_isocbinding_symbol(): Unable to "
3896 "create symbol");
3898 /* Say what module this symbol belongs to. */
3899 tmp_sym->module = gfc_get_string (mod_name);
3900 tmp_sym->from_intmod = INTMOD_ISO_C_BINDING;
3901 tmp_sym->intmod_sym_id = s;
3903 switch (s)
3906 #define NAMED_INTCST(a,b,c,d) case a :
3907 #define NAMED_REALCST(a,b,c) case a :
3908 #define NAMED_CMPXCST(a,b,c) case a :
3909 #define NAMED_LOGCST(a,b,c) case a :
3910 #define NAMED_CHARKNDCST(a,b,c) case a :
3911 #include "iso-c-binding.def"
3913 tmp_sym->value = gfc_int_expr (c_interop_kinds_table[s].value);
3915 /* Initialize an integer constant expression node. */
3916 tmp_sym->attr.flavor = FL_PARAMETER;
3917 tmp_sym->ts.type = BT_INTEGER;
3918 tmp_sym->ts.kind = gfc_default_integer_kind;
3920 /* Mark this type as a C interoperable one. */
3921 tmp_sym->ts.is_c_interop = 1;
3922 tmp_sym->ts.is_iso_c = 1;
3923 tmp_sym->value->ts.is_c_interop = 1;
3924 tmp_sym->value->ts.is_iso_c = 1;
3925 tmp_sym->attr.is_c_interop = 1;
3927 /* Tell what f90 type this c interop kind is valid. */
3928 tmp_sym->ts.f90_type = c_interop_kinds_table[s].f90_type;
3930 /* Say it's from the iso_c_binding module. */
3931 tmp_sym->attr.is_iso_c = 1;
3933 /* Make it use associated. */
3934 tmp_sym->attr.use_assoc = 1;
3935 break;
3938 #define NAMED_CHARCST(a,b,c) case a :
3939 #include "iso-c-binding.def"
3941 /* Initialize an integer constant expression node for the
3942 length of the character. */
3943 tmp_sym->value = gfc_get_expr ();
3944 tmp_sym->value->expr_type = EXPR_CONSTANT;
3945 tmp_sym->value->ts.type = BT_CHARACTER;
3946 tmp_sym->value->ts.kind = gfc_default_character_kind;
3947 tmp_sym->value->where = gfc_current_locus;
3948 tmp_sym->value->ts.is_c_interop = 1;
3949 tmp_sym->value->ts.is_iso_c = 1;
3950 tmp_sym->value->value.character.length = 1;
3951 tmp_sym->value->value.character.string = gfc_get_wide_string (2);
3952 tmp_sym->value->value.character.string[0]
3953 = (gfc_char_t) c_interop_kinds_table[s].value;
3954 tmp_sym->value->value.character.string[1] = '\0';
3955 tmp_sym->ts.cl = gfc_get_charlen ();
3956 tmp_sym->ts.cl->length = gfc_int_expr (1);
3958 /* May not need this in both attr and ts, but do need in
3959 attr for writing module file. */
3960 tmp_sym->attr.is_c_interop = 1;
3962 tmp_sym->attr.flavor = FL_PARAMETER;
3963 tmp_sym->ts.type = BT_CHARACTER;
3965 /* Need to set it to the C_CHAR kind. */
3966 tmp_sym->ts.kind = gfc_default_character_kind;
3968 /* Mark this type as a C interoperable one. */
3969 tmp_sym->ts.is_c_interop = 1;
3970 tmp_sym->ts.is_iso_c = 1;
3972 /* Tell what f90 type this c interop kind is valid. */
3973 tmp_sym->ts.f90_type = BT_CHARACTER;
3975 /* Say it's from the iso_c_binding module. */
3976 tmp_sym->attr.is_iso_c = 1;
3978 /* Make it use associated. */
3979 tmp_sym->attr.use_assoc = 1;
3980 break;
3982 case ISOCBINDING_PTR:
3983 case ISOCBINDING_FUNPTR:
3985 /* Initialize an integer constant expression node. */
3986 tmp_sym->attr.flavor = FL_DERIVED;
3987 tmp_sym->ts.is_c_interop = 1;
3988 tmp_sym->attr.is_c_interop = 1;
3989 tmp_sym->attr.is_iso_c = 1;
3990 tmp_sym->ts.is_iso_c = 1;
3991 tmp_sym->ts.type = BT_DERIVED;
3993 /* A derived type must have the bind attribute to be
3994 interoperable (J3/04-007, Section 15.2.3), even though
3995 the binding label is not used. */
3996 tmp_sym->attr.is_bind_c = 1;
3998 tmp_sym->attr.referenced = 1;
4000 tmp_sym->ts.derived = tmp_sym;
4002 /* Add the symbol created for the derived type to the current ns. */
4003 dt_list_ptr = &(gfc_derived_types);
4004 while (*dt_list_ptr != NULL && (*dt_list_ptr)->next != NULL)
4005 dt_list_ptr = &((*dt_list_ptr)->next);
4007 /* There is already at least one derived type in the list, so append
4008 the one we're currently building for c_ptr or c_funptr. */
4009 if (*dt_list_ptr != NULL)
4010 dt_list_ptr = &((*dt_list_ptr)->next);
4011 (*dt_list_ptr) = gfc_get_dt_list ();
4012 (*dt_list_ptr)->derived = tmp_sym;
4013 (*dt_list_ptr)->next = NULL;
4015 /* Set up the component of the derived type, which will be
4016 an integer with kind equal to c_ptr_size. Mangle the name of
4017 the field for the c_address to prevent the curious user from
4018 trying to access it from Fortran. */
4019 sprintf (comp_name, "__%s_%s", tmp_sym->name, "c_address");
4020 gfc_add_component (tmp_sym, comp_name, &tmp_comp);
4021 if (tmp_comp == NULL)
4022 gfc_internal_error ("generate_isocbinding_symbol(): Unable to "
4023 "create component for c_address");
4025 tmp_comp->ts.type = BT_INTEGER;
4027 /* Set this because the module will need to read/write this field. */
4028 tmp_comp->ts.f90_type = BT_INTEGER;
4030 /* The kinds for c_ptr and c_funptr are the same. */
4031 index = get_c_kind ("c_ptr", c_interop_kinds_table);
4032 tmp_comp->ts.kind = c_interop_kinds_table[index].value;
4034 tmp_comp->pointer = 0;
4035 tmp_comp->dimension = 0;
4037 /* Mark the component as C interoperable. */
4038 tmp_comp->ts.is_c_interop = 1;
4040 /* Make it use associated (iso_c_binding module). */
4041 tmp_sym->attr.use_assoc = 1;
4042 break;
4044 case ISOCBINDING_NULL_PTR:
4045 case ISOCBINDING_NULL_FUNPTR:
4046 gen_special_c_interop_ptr (s, name, mod_name);
4047 break;
4049 case ISOCBINDING_F_POINTER:
4050 case ISOCBINDING_ASSOCIATED:
4051 case ISOCBINDING_LOC:
4052 case ISOCBINDING_FUNLOC:
4053 case ISOCBINDING_F_PROCPOINTER:
4055 tmp_sym->attr.proc = PROC_MODULE;
4057 /* Use the procedure's name as it is in the iso_c_binding module for
4058 setting the binding label in case the user renamed the symbol. */
4059 sprintf (tmp_sym->binding_label, "%s_%s", mod_name,
4060 c_interop_kinds_table[s].name);
4061 tmp_sym->attr.is_iso_c = 1;
4062 if (s == ISOCBINDING_F_POINTER || s == ISOCBINDING_F_PROCPOINTER)
4063 tmp_sym->attr.subroutine = 1;
4064 else
4066 /* TODO! This needs to be finished more for the expr of the
4067 function or something!
4068 This may not need to be here, because trying to do c_loc
4069 as an external. */
4070 if (s == ISOCBINDING_ASSOCIATED)
4072 tmp_sym->attr.function = 1;
4073 tmp_sym->ts.type = BT_LOGICAL;
4074 tmp_sym->ts.kind = gfc_default_logical_kind;
4075 tmp_sym->result = tmp_sym;
4077 else
4079 /* Here, we're taking the simple approach. We're defining
4080 c_loc as an external identifier so the compiler will put
4081 what we expect on the stack for the address we want the
4082 C address of. */
4083 tmp_sym->ts.type = BT_DERIVED;
4084 if (s == ISOCBINDING_LOC)
4085 tmp_sym->ts.derived =
4086 get_iso_c_binding_dt (ISOCBINDING_PTR);
4087 else
4088 tmp_sym->ts.derived =
4089 get_iso_c_binding_dt (ISOCBINDING_FUNPTR);
4091 if (tmp_sym->ts.derived == NULL)
4093 /* Create the necessary derived type so we can continue
4094 processing the file. */
4095 generate_isocbinding_symbol
4096 (mod_name, s == ISOCBINDING_FUNLOC
4097 ? ISOCBINDING_FUNPTR : ISOCBINDING_PTR,
4098 (const char *)(s == ISOCBINDING_FUNLOC
4099 ? "_gfortran_iso_c_binding_c_funptr"
4100 : "_gfortran_iso_c_binding_c_ptr"));
4101 tmp_sym->ts.derived =
4102 get_iso_c_binding_dt (s == ISOCBINDING_FUNLOC
4103 ? ISOCBINDING_FUNPTR
4104 : ISOCBINDING_PTR);
4107 /* The function result is itself (no result clause). */
4108 tmp_sym->result = tmp_sym;
4109 tmp_sym->attr.external = 1;
4110 tmp_sym->attr.use_assoc = 0;
4111 tmp_sym->attr.if_source = IFSRC_UNKNOWN;
4112 tmp_sym->attr.proc = PROC_UNKNOWN;
4116 tmp_sym->attr.flavor = FL_PROCEDURE;
4117 tmp_sym->attr.contained = 0;
4119 /* Try using this builder routine, with the new and old symbols
4120 both being the generic iso_c proc sym being created. This
4121 will create the formal args (and the new namespace for them).
4122 Don't build an arg list for c_loc because we're going to treat
4123 c_loc as an external procedure. */
4124 if (s != ISOCBINDING_LOC && s != ISOCBINDING_FUNLOC)
4125 /* The 1 says to add any optional args, if applicable. */
4126 build_formal_args (tmp_sym, tmp_sym, 1);
4128 /* Set this after setting up the symbol, to prevent error messages. */
4129 tmp_sym->attr.use_assoc = 1;
4131 /* This symbol will not be referenced directly. It will be
4132 resolved to the implementation for the given f90 kind. */
4133 tmp_sym->attr.referenced = 0;
4135 break;
4137 default:
4138 gcc_unreachable ();
4143 /* Creates a new symbol based off of an old iso_c symbol, with a new
4144 binding label. This function can be used to create a new,
4145 resolved, version of a procedure symbol for c_f_pointer or
4146 c_f_procpointer that is based on the generic symbols. A new
4147 parameter list is created for the new symbol using
4148 build_formal_args(). The add_optional_flag specifies whether the
4149 to add the optional SHAPE argument. The new symbol is
4150 returned. */
4152 gfc_symbol *
4153 get_iso_c_sym (gfc_symbol *old_sym, char *new_name,
4154 char *new_binding_label, int add_optional_arg)
4156 gfc_symtree *new_symtree = NULL;
4158 /* See if we have a symbol by that name already available, looking
4159 through any parent namespaces. */
4160 gfc_find_sym_tree (new_name, gfc_current_ns, 1, &new_symtree);
4161 if (new_symtree != NULL)
4162 /* Return the existing symbol. */
4163 return new_symtree->n.sym;
4165 /* Create the symtree/symbol, with attempted host association. */
4166 gfc_get_ha_sym_tree (new_name, &new_symtree);
4167 if (new_symtree == NULL)
4168 gfc_internal_error ("get_iso_c_sym(): Unable to create "
4169 "symtree for '%s'", new_name);
4171 /* Now fill in the fields of the resolved symbol with the old sym. */
4172 strcpy (new_symtree->n.sym->binding_label, new_binding_label);
4173 new_symtree->n.sym->attr = old_sym->attr;
4174 new_symtree->n.sym->ts = old_sym->ts;
4175 new_symtree->n.sym->module = gfc_get_string (old_sym->module);
4176 new_symtree->n.sym->from_intmod = old_sym->from_intmod;
4177 new_symtree->n.sym->intmod_sym_id = old_sym->intmod_sym_id;
4178 /* Build the formal arg list. */
4179 build_formal_args (new_symtree->n.sym, old_sym, add_optional_arg);
4181 gfc_commit_symbol (new_symtree->n.sym);
4183 return new_symtree->n.sym;