1 /* Maintain binary trees of symbols.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation,
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 2, or (at your option) any later
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
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
29 /* Strings for all symbol attributes. We use these for dumping the
30 parse tree, in error messages, and also when reading and writing
33 const mstring flavors[] =
35 minit ("UNKNOWN-FL", FL_UNKNOWN), minit ("PROGRAM", FL_PROGRAM),
36 minit ("BLOCK-DATA", FL_BLOCK_DATA), minit ("MODULE", FL_MODULE),
37 minit ("VARIABLE", FL_VARIABLE), minit ("PARAMETER", FL_PARAMETER),
38 minit ("LABEL", FL_LABEL), minit ("PROCEDURE", FL_PROCEDURE),
39 minit ("DERIVED", FL_DERIVED), minit ("NAMELIST", FL_NAMELIST),
43 const mstring procedures[] =
45 minit ("UNKNOWN-PROC", PROC_UNKNOWN),
46 minit ("MODULE-PROC", PROC_MODULE),
47 minit ("INTERNAL-PROC", PROC_INTERNAL),
48 minit ("DUMMY-PROC", PROC_DUMMY),
49 minit ("INTRINSIC-PROC", PROC_INTRINSIC),
50 minit ("EXTERNAL-PROC", PROC_EXTERNAL),
51 minit ("STATEMENT-PROC", PROC_ST_FUNCTION),
55 const mstring intents[] =
57 minit ("UNKNOWN-INTENT", INTENT_UNKNOWN),
58 minit ("IN", INTENT_IN),
59 minit ("OUT", INTENT_OUT),
60 minit ("INOUT", INTENT_INOUT),
64 const mstring access_types[] =
66 minit ("UNKNOWN-ACCESS", ACCESS_UNKNOWN),
67 minit ("PUBLIC", ACCESS_PUBLIC),
68 minit ("PRIVATE", ACCESS_PRIVATE),
72 const mstring ifsrc_types[] =
74 minit ("UNKNOWN", IFSRC_UNKNOWN),
75 minit ("DECL", IFSRC_DECL),
76 minit ("BODY", IFSRC_IFBODY),
77 minit ("USAGE", IFSRC_USAGE)
81 /* This is to make sure the backend generates setup code in the correct
84 static int next_dummy_order = 1;
87 gfc_namespace *gfc_current_ns;
89 gfc_gsymbol *gfc_gsym_root = NULL;
91 static gfc_symbol *changed_syms = NULL;
94 /*********** IMPLICIT NONE and IMPLICIT statement handlers ***********/
96 /* The following static variable indicates whether a particular element has
97 been explicitly set or not. */
99 static int new_flag[GFC_LETTERS];
102 /* Handle a correctly parsed IMPLICIT NONE. */
105 gfc_set_implicit_none (void)
109 if (gfc_current_ns->seen_implicit_none)
111 gfc_error ("Duplicate IMPLICIT NONE statement at %C");
115 gfc_current_ns->seen_implicit_none = 1;
117 for (i = 0; i < GFC_LETTERS; i++)
119 gfc_clear_ts (&gfc_current_ns->default_type[i]);
120 gfc_current_ns->set_flag[i] = 1;
125 /* Reset the implicit range flags. */
128 gfc_clear_new_implicit (void)
132 for (i = 0; i < GFC_LETTERS; i++)
137 /* Prepare for a new implicit range. Sets flags in new_flag[]. */
140 gfc_add_new_implicit_range (int c1, int c2)
147 for (i = c1; i <= c2; i++)
151 gfc_error ("Letter '%c' already set in IMPLICIT statement at %C",
163 /* Add a matched implicit range for gfc_set_implicit(). Check if merging
164 the new implicit types back into the existing types will work. */
167 gfc_merge_new_implicit (gfc_typespec * ts)
171 if (gfc_current_ns->seen_implicit_none)
173 gfc_error ("Cannot specify IMPLICIT at %C after IMPLICIT NONE");
177 for (i = 0; i < GFC_LETTERS; i++)
182 if (gfc_current_ns->set_flag[i])
184 gfc_error ("Letter %c already has an IMPLICIT type at %C",
188 gfc_current_ns->default_type[i] = *ts;
189 gfc_current_ns->set_flag[i] = 1;
196 /* Given a symbol, return a pointer to the typespec for its default type. */
199 gfc_get_default_type (gfc_symbol * sym, gfc_namespace * ns)
203 letter = sym->name[0];
204 if (letter < 'a' || letter > 'z')
205 gfc_internal_error ("gfc_get_default_type(): Bad symbol");
210 return &ns->default_type[letter - 'a'];
214 /* Given a pointer to a symbol, set its type according to the first
215 letter of its name. Fails if the letter in question has no default
219 gfc_set_default_type (gfc_symbol * sym, int error_flag, gfc_namespace * ns)
223 if (sym->ts.type != BT_UNKNOWN)
224 gfc_internal_error ("gfc_set_default_type(): symbol already has a type");
226 ts = gfc_get_default_type (sym, ns);
228 if (ts->type == BT_UNKNOWN)
230 if (error_flag && !sym->attr.untyped)
232 gfc_error ("Symbol '%s' at %L has no IMPLICIT type",
233 sym->name, &sym->declared_at);
234 sym->attr.untyped = 1; /* Ensure we only give an error once. */
241 sym->attr.implicit_type = 1;
247 /******************** Symbol attribute stuff *********************/
249 /* This is a generic conflict-checker. We do this to avoid having a
250 single conflict in two places. */
252 #define conf(a, b) if (attr->a && attr->b) { a1 = a; a2 = b; goto conflict; }
253 #define conf2(a) if (attr->a) { a2 = a; goto conflict; }
256 check_conflict (symbol_attribute * attr, const char * name, locus * where)
258 static const char *dummy = "DUMMY", *save = "SAVE", *pointer = "POINTER",
259 *target = "TARGET", *external = "EXTERNAL", *intent = "INTENT",
260 *intrinsic = "INTRINSIC", *allocatable = "ALLOCATABLE",
261 *elemental = "ELEMENTAL", *private = "PRIVATE", *recursive = "RECURSIVE",
262 *in_common = "COMMON", *result = "RESULT", *in_namelist = "NAMELIST",
263 *public = "PUBLIC", *optional = "OPTIONAL", *entry = "ENTRY",
264 *function = "FUNCTION", *subroutine = "SUBROUTINE",
265 *dimension = "DIMENSION", *in_equivalence = "EQUIVALENCE",
266 *use_assoc = "USE ASSOCIATED", *cray_pointer = "CRAY POINTER",
267 *cray_pointee = "CRAY POINTEE";
272 where = &gfc_current_locus;
274 if (attr->pointer && attr->intent != INTENT_UNKNOWN)
281 /* Check for attributes not allowed in a BLOCK DATA. */
282 if (gfc_current_state () == COMP_BLOCK_DATA)
286 if (attr->allocatable)
292 if (attr->access == ACCESS_PRIVATE)
294 if (attr->access == ACCESS_PUBLIC)
296 if (attr->intent != INTENT_UNKNOWN)
302 ("%s attribute not allowed in BLOCK DATA program unit at %L", a1,
309 conf (pointer, target);
310 conf (pointer, external);
311 conf (pointer, intrinsic);
312 conf (target, external);
313 conf (target, intrinsic);
314 conf (external, dimension); /* See Fortran 95's R504. */
316 conf (external, intrinsic);
317 conf (allocatable, pointer);
318 conf (allocatable, dummy); /* TODO: Allowed in Fortran 200x. */
319 conf (allocatable, function); /* TODO: Allowed in Fortran 200x. */
320 conf (allocatable, result); /* TODO: Allowed in Fortran 200x. */
321 conf (elemental, recursive);
323 conf (in_common, dummy);
324 conf (in_common, allocatable);
325 conf (in_common, result);
326 conf (in_common, save);
329 conf (dummy, result);
331 conf (in_equivalence, use_assoc);
332 conf (in_equivalence, dummy);
333 conf (in_equivalence, target);
334 conf (in_equivalence, pointer);
335 conf (in_equivalence, function);
336 conf (in_equivalence, result);
337 conf (in_equivalence, entry);
338 conf (in_equivalence, allocatable);
340 conf (in_namelist, pointer);
341 conf (in_namelist, allocatable);
343 conf (entry, result);
345 conf (function, subroutine);
347 /* Cray pointer/pointee conflicts. */
348 conf (cray_pointer, cray_pointee);
349 conf (cray_pointer, dimension);
350 conf (cray_pointer, pointer);
351 conf (cray_pointer, target);
352 conf (cray_pointer, allocatable);
353 conf (cray_pointer, external);
354 conf (cray_pointer, intrinsic);
355 conf (cray_pointer, in_namelist);
356 conf (cray_pointer, function);
357 conf (cray_pointer, subroutine);
358 conf (cray_pointer, entry);
360 conf (cray_pointee, allocatable);
361 conf (cray_pointee, intent);
362 conf (cray_pointee, optional);
363 conf (cray_pointee, dummy);
364 conf (cray_pointee, target);
365 conf (cray_pointee, external);
366 conf (cray_pointee, intrinsic);
367 conf (cray_pointee, pointer);
368 conf (cray_pointee, function);
369 conf (cray_pointee, subroutine);
370 conf (cray_pointee, entry);
372 a1 = gfc_code2string (flavors, attr->flavor);
374 if (attr->in_namelist
375 && attr->flavor != FL_VARIABLE
376 && attr->flavor != FL_UNKNOWN)
383 switch (attr->flavor)
410 if (attr->subroutine)
423 case PROC_ST_FUNCTION:
457 if (attr->intent != INTENT_UNKNOWN)
487 gfc_error ("%s attribute conflicts with %s attribute at %L",
490 gfc_error ("%s attribute conflicts with %s attribute in '%s' at %L",
491 a1, a2, name, where);
500 /* Mark a symbol as referenced. */
503 gfc_set_sym_referenced (gfc_symbol * sym)
505 if (sym->attr.referenced)
508 sym->attr.referenced = 1;
510 /* Remember which order dummy variables are accessed in. */
512 sym->dummy_order = next_dummy_order++;
516 /* Common subroutine called by attribute changing subroutines in order
517 to prevent them from changing a symbol that has been
518 use-associated. Returns zero if it is OK to change the symbol,
522 check_used (symbol_attribute * attr, const char * name, locus * where)
525 if (attr->use_assoc == 0)
529 where = &gfc_current_locus;
532 gfc_error ("Cannot change attributes of USE-associated symbol at %L",
535 gfc_error ("Cannot change attributes of USE-associated symbol %s at %L",
542 /* Used to prevent changing the attributes of a symbol after it has been
543 used. This check is only done for dummy variables as only these can be
544 used in specification expressions. Applying this to all symbols causes
545 an error when we reach the body of a contained function. */
548 check_done (symbol_attribute * attr, locus * where)
551 if (!(attr->dummy && attr->referenced))
555 where = &gfc_current_locus;
557 gfc_error ("Cannot change attributes of symbol at %L"
558 " after it has been used", where);
564 /* Generate an error because of a duplicate attribute. */
567 duplicate_attr (const char *attr, locus * where)
571 where = &gfc_current_locus;
573 gfc_error ("Duplicate %s attribute specified at %L", attr, where);
578 gfc_add_allocatable (symbol_attribute * attr, locus * where)
581 if (check_used (attr, NULL, where) || check_done (attr, where))
584 if (attr->allocatable)
586 duplicate_attr ("ALLOCATABLE", where);
590 attr->allocatable = 1;
591 return check_conflict (attr, NULL, where);
596 gfc_add_dimension (symbol_attribute * attr, const char *name, locus * where)
599 if (check_used (attr, name, where) || check_done (attr, where))
604 duplicate_attr ("DIMENSION", where);
609 return check_conflict (attr, name, where);
614 gfc_add_external (symbol_attribute * attr, locus * where)
617 if (check_used (attr, NULL, where) || check_done (attr, where))
622 duplicate_attr ("EXTERNAL", where);
628 return check_conflict (attr, NULL, where);
633 gfc_add_intrinsic (symbol_attribute * attr, locus * where)
636 if (check_used (attr, NULL, where) || check_done (attr, where))
641 duplicate_attr ("INTRINSIC", where);
647 return check_conflict (attr, NULL, where);
652 gfc_add_optional (symbol_attribute * attr, locus * where)
655 if (check_used (attr, NULL, where) || check_done (attr, where))
660 duplicate_attr ("OPTIONAL", where);
665 return check_conflict (attr, NULL, where);
670 gfc_add_pointer (symbol_attribute * attr, locus * where)
673 if (check_used (attr, NULL, where) || check_done (attr, where))
677 return check_conflict (attr, NULL, where);
682 gfc_add_cray_pointer (symbol_attribute * attr, locus * where)
685 if (check_used (attr, NULL, where) || check_done (attr, where))
688 attr->cray_pointer = 1;
689 return check_conflict (attr, NULL, where);
694 gfc_add_cray_pointee (symbol_attribute * attr, locus * where)
697 if (check_used (attr, NULL, where) || check_done (attr, where))
700 if (attr->cray_pointee)
702 gfc_error ("Cray Pointee at %L appears in multiple pointer()"
703 " statements.", where);
707 attr->cray_pointee = 1;
708 return check_conflict (attr, NULL, where);
713 gfc_add_result (symbol_attribute * attr, const char *name, locus * where)
716 if (check_used (attr, name, where) || check_done (attr, where))
720 return check_conflict (attr, name, where);
725 gfc_add_save (symbol_attribute * attr, const char *name, locus * where)
728 if (check_used (attr, name, where))
734 ("SAVE attribute at %L cannot be specified in a PURE procedure",
741 if (gfc_notify_std (GFC_STD_LEGACY,
742 "Duplicate SAVE attribute specified at %L",
749 return check_conflict (attr, name, where);
754 gfc_add_target (symbol_attribute * attr, locus * where)
757 if (check_used (attr, NULL, where) || check_done (attr, where))
762 duplicate_attr ("TARGET", where);
767 return check_conflict (attr, NULL, where);
772 gfc_add_dummy (symbol_attribute * attr, const char *name, locus * where)
775 if (check_used (attr, name, where))
778 /* Duplicate dummy arguments are allowed due to ENTRY statements. */
780 return check_conflict (attr, name, where);
785 gfc_add_in_common (symbol_attribute * attr, const char *name, locus * where)
788 if (check_used (attr, name, where) || check_done (attr, where))
791 /* Duplicate attribute already checked for. */
793 if (check_conflict (attr, name, where) == FAILURE)
796 if (attr->flavor == FL_VARIABLE)
799 return gfc_add_flavor (attr, FL_VARIABLE, name, where);
803 gfc_add_in_equivalence (symbol_attribute * attr, const char *name, locus * where)
806 /* Duplicate attribute already checked for. */
807 attr->in_equivalence = 1;
808 if (check_conflict (attr, name, where) == FAILURE)
811 if (attr->flavor == FL_VARIABLE)
814 return gfc_add_flavor (attr, FL_VARIABLE, name, where);
819 gfc_add_data (symbol_attribute *attr, const char *name, locus *where)
822 if (check_used (attr, name, where))
826 return check_conflict (attr, name, where);
831 gfc_add_in_namelist (symbol_attribute * attr, const char *name,
835 attr->in_namelist = 1;
836 return check_conflict (attr, name, where);
841 gfc_add_sequence (symbol_attribute * attr, const char *name, locus * where)
844 if (check_used (attr, name, where))
848 return check_conflict (attr, name, where);
853 gfc_add_elemental (symbol_attribute * attr, locus * where)
856 if (check_used (attr, NULL, where) || check_done (attr, where))
860 return check_conflict (attr, NULL, where);
865 gfc_add_pure (symbol_attribute * attr, locus * where)
868 if (check_used (attr, NULL, where) || check_done (attr, where))
872 return check_conflict (attr, NULL, where);
877 gfc_add_recursive (symbol_attribute * attr, locus * where)
880 if (check_used (attr, NULL, where) || check_done (attr, where))
884 return check_conflict (attr, NULL, where);
889 gfc_add_entry (symbol_attribute * attr, const char *name, locus * where)
892 if (check_used (attr, name, where))
897 duplicate_attr ("ENTRY", where);
902 return check_conflict (attr, name, where);
907 gfc_add_function (symbol_attribute * attr, const char *name, locus * where)
910 if (attr->flavor != FL_PROCEDURE
911 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
915 return check_conflict (attr, name, where);
920 gfc_add_subroutine (symbol_attribute * attr, const char *name, locus * where)
923 if (attr->flavor != FL_PROCEDURE
924 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
927 attr->subroutine = 1;
928 return check_conflict (attr, name, where);
933 gfc_add_generic (symbol_attribute * attr, const char *name, locus * where)
936 if (attr->flavor != FL_PROCEDURE
937 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
941 return check_conflict (attr, name, where);
945 /* Flavors are special because some flavors are not what Fortran
946 considers attributes and can be reaffirmed multiple times. */
949 gfc_add_flavor (symbol_attribute * attr, sym_flavor f, const char *name,
953 if ((f == FL_PROGRAM || f == FL_BLOCK_DATA || f == FL_MODULE
954 || f == FL_PARAMETER || f == FL_LABEL || f == FL_DERIVED
955 || f == FL_NAMELIST) && check_used (attr, name, where))
958 if (attr->flavor == f && f == FL_VARIABLE)
961 if (attr->flavor != FL_UNKNOWN)
964 where = &gfc_current_locus;
966 gfc_error ("%s attribute conflicts with %s attribute at %L",
967 gfc_code2string (flavors, attr->flavor),
968 gfc_code2string (flavors, f), where);
975 return check_conflict (attr, name, where);
980 gfc_add_procedure (symbol_attribute * attr, procedure_type t,
981 const char *name, locus * where)
984 if (check_used (attr, name, where) || check_done (attr, where))
987 if (attr->flavor != FL_PROCEDURE
988 && gfc_add_flavor (attr, FL_PROCEDURE, name, where) == FAILURE)
992 where = &gfc_current_locus;
994 if (attr->proc != PROC_UNKNOWN)
996 gfc_error ("%s procedure at %L is already declared as %s procedure",
997 gfc_code2string (procedures, t), where,
998 gfc_code2string (procedures, attr->proc));
1005 /* Statement functions are always scalar and functions. */
1006 if (t == PROC_ST_FUNCTION
1007 && ((!attr->function && gfc_add_function (attr, name, where) == FAILURE)
1008 || attr->dimension))
1011 return check_conflict (attr, name, where);
1016 gfc_add_intent (symbol_attribute * attr, sym_intent intent, locus * where)
1019 if (check_used (attr, NULL, where))
1022 if (attr->intent == INTENT_UNKNOWN)
1024 attr->intent = intent;
1025 return check_conflict (attr, NULL, where);
1029 where = &gfc_current_locus;
1031 gfc_error ("INTENT (%s) conflicts with INTENT(%s) at %L",
1032 gfc_intent_string (attr->intent),
1033 gfc_intent_string (intent), where);
1039 /* No checks for use-association in public and private statements. */
1042 gfc_add_access (symbol_attribute * attr, gfc_access access,
1043 const char *name, locus * where)
1046 if (attr->access == ACCESS_UNKNOWN)
1048 attr->access = access;
1049 return check_conflict (attr, name, where);
1053 where = &gfc_current_locus;
1054 gfc_error ("ACCESS specification at %L was already specified", where);
1061 gfc_add_explicit_interface (gfc_symbol * sym, ifsrc source,
1062 gfc_formal_arglist * formal, locus * where)
1065 if (check_used (&sym->attr, sym->name, where))
1069 where = &gfc_current_locus;
1071 if (sym->attr.if_source != IFSRC_UNKNOWN
1072 && sym->attr.if_source != IFSRC_DECL)
1074 gfc_error ("Symbol '%s' at %L already has an explicit interface",
1079 sym->formal = formal;
1080 sym->attr.if_source = source;
1086 /* Add a type to a symbol. */
1089 gfc_add_type (gfc_symbol * sym, gfc_typespec * ts, locus * where)
1093 /* TODO: This is legal if it is reaffirming an implicit type.
1094 if (check_done (&sym->attr, where))
1098 where = &gfc_current_locus;
1100 if (sym->ts.type != BT_UNKNOWN)
1102 gfc_error ("Symbol '%s' at %L already has basic type of %s", sym->name,
1103 where, gfc_basic_typename (sym->ts.type));
1107 flavor = sym->attr.flavor;
1109 if (flavor == FL_PROGRAM || flavor == FL_BLOCK_DATA || flavor == FL_MODULE
1110 || flavor == FL_LABEL || (flavor == FL_PROCEDURE
1111 && sym->attr.subroutine)
1112 || flavor == FL_DERIVED || flavor == FL_NAMELIST)
1114 gfc_error ("Symbol '%s' at %L cannot have a type", sym->name, where);
1123 /* Clears all attributes. */
1126 gfc_clear_attr (symbol_attribute * attr)
1128 memset (attr, 0, sizeof(symbol_attribute));
1132 /* Check for missing attributes in the new symbol. Currently does
1133 nothing, but it's not clear that it is unnecessary yet. */
1136 gfc_missing_attr (symbol_attribute * attr ATTRIBUTE_UNUSED,
1137 locus * where ATTRIBUTE_UNUSED)
1144 /* Copy an attribute to a symbol attribute, bit by bit. Some
1145 attributes have a lot of side-effects but cannot be present given
1146 where we are called from, so we ignore some bits. */
1149 gfc_copy_attr (symbol_attribute * dest, symbol_attribute * src, locus * where)
1152 if (src->allocatable && gfc_add_allocatable (dest, where) == FAILURE)
1155 if (src->dimension && gfc_add_dimension (dest, NULL, where) == FAILURE)
1157 if (src->optional && gfc_add_optional (dest, where) == FAILURE)
1159 if (src->pointer && gfc_add_pointer (dest, where) == FAILURE)
1161 if (src->save && gfc_add_save (dest, NULL, where) == FAILURE)
1163 if (src->target && gfc_add_target (dest, where) == FAILURE)
1165 if (src->dummy && gfc_add_dummy (dest, NULL, where) == FAILURE)
1167 if (src->result && gfc_add_result (dest, NULL, where) == FAILURE)
1172 if (src->in_namelist && gfc_add_in_namelist (dest, NULL, where) == FAILURE)
1175 if (src->in_common && gfc_add_in_common (dest, NULL, where) == FAILURE)
1178 if (src->generic && gfc_add_generic (dest, NULL, where) == FAILURE)
1180 if (src->function && gfc_add_function (dest, NULL, where) == FAILURE)
1182 if (src->subroutine && gfc_add_subroutine (dest, NULL, where) == FAILURE)
1185 if (src->sequence && gfc_add_sequence (dest, NULL, where) == FAILURE)
1187 if (src->elemental && gfc_add_elemental (dest, where) == FAILURE)
1189 if (src->pure && gfc_add_pure (dest, where) == FAILURE)
1191 if (src->recursive && gfc_add_recursive (dest, where) == FAILURE)
1194 if (src->flavor != FL_UNKNOWN
1195 && gfc_add_flavor (dest, src->flavor, NULL, where) == FAILURE)
1198 if (src->intent != INTENT_UNKNOWN
1199 && gfc_add_intent (dest, src->intent, where) == FAILURE)
1202 if (src->access != ACCESS_UNKNOWN
1203 && gfc_add_access (dest, src->access, NULL, where) == FAILURE)
1206 if (gfc_missing_attr (dest, where) == FAILURE)
1209 if (src->cray_pointer && gfc_add_cray_pointer (dest, where) == FAILURE)
1211 if (src->cray_pointee && gfc_add_cray_pointee (dest, where) == FAILURE)
1214 /* The subroutines that set these bits also cause flavors to be set,
1215 and that has already happened in the original, so don't let it
1220 dest->intrinsic = 1;
1229 /************** Component name management ************/
1231 /* Component names of a derived type form their own little namespaces
1232 that are separate from all other spaces. The space is composed of
1233 a singly linked list of gfc_component structures whose head is
1234 located in the parent symbol. */
1237 /* Add a component name to a symbol. The call fails if the name is
1238 already present. On success, the component pointer is modified to
1239 point to the additional component structure. */
1242 gfc_add_component (gfc_symbol * sym, const char *name, gfc_component ** component)
1244 gfc_component *p, *tail;
1248 for (p = sym->components; p; p = p->next)
1250 if (strcmp (p->name, name) == 0)
1252 gfc_error ("Component '%s' at %C already declared at %L",
1260 /* Allocate a new component. */
1261 p = gfc_get_component ();
1264 sym->components = p;
1268 p->name = gfc_get_string (name);
1269 p->loc = gfc_current_locus;
1276 /* Recursive function to switch derived types of all symbol in a
1280 switch_types (gfc_symtree * st, gfc_symbol * from, gfc_symbol * to)
1288 if (sym->ts.type == BT_DERIVED && sym->ts.derived == from)
1289 sym->ts.derived = to;
1291 switch_types (st->left, from, to);
1292 switch_types (st->right, from, to);
1296 /* This subroutine is called when a derived type is used in order to
1297 make the final determination about which version to use. The
1298 standard requires that a type be defined before it is 'used', but
1299 such types can appear in IMPLICIT statements before the actual
1300 definition. 'Using' in this context means declaring a variable to
1301 be that type or using the type constructor.
1303 If a type is used and the components haven't been defined, then we
1304 have to have a derived type in a parent unit. We find the node in
1305 the other namespace and point the symtree node in this namespace to
1306 that node. Further reference to this name point to the correct
1307 node. If we can't find the node in a parent namespace, then we have
1310 This subroutine takes a pointer to a symbol node and returns a
1311 pointer to the translated node or NULL for an error. Usually there
1312 is no translation and we return the node we were passed. */
1315 gfc_use_derived (gfc_symbol * sym)
1322 if (sym->components != NULL)
1323 return sym; /* Already defined. */
1325 if (sym->ns->parent == NULL)
1328 if (gfc_find_symbol (sym->name, sym->ns->parent, 1, &s))
1330 gfc_error ("Symbol '%s' at %C is ambiguous", sym->name);
1334 if (s == NULL || s->attr.flavor != FL_DERIVED)
1337 /* Get rid of symbol sym, translating all references to s. */
1338 for (i = 0; i < GFC_LETTERS; i++)
1340 t = &sym->ns->default_type[i];
1341 if (t->derived == sym)
1345 st = gfc_find_symtree (sym->ns->sym_root, sym->name);
1350 /* Unlink from list of modified symbols. */
1351 if (changed_syms == sym)
1352 changed_syms = sym->tlink;
1354 for (p = changed_syms; p; p = p->tlink)
1355 if (p->tlink == sym)
1357 p->tlink = sym->tlink;
1361 switch_types (sym->ns->sym_root, sym, s);
1363 /* TODO: Also have to replace sym -> s in other lists like
1364 namelists, common lists and interface lists. */
1365 gfc_free_symbol (sym);
1370 gfc_error ("Derived type '%s' at %C is being used before it is defined",
1376 /* Given a derived type node and a component name, try to locate the
1377 component structure. Returns the NULL pointer if the component is
1378 not found or the components are private. */
1381 gfc_find_component (gfc_symbol * sym, const char *name)
1388 sym = gfc_use_derived (sym);
1393 for (p = sym->components; p; p = p->next)
1394 if (strcmp (p->name, name) == 0)
1398 gfc_error ("'%s' at %C is not a member of the '%s' structure",
1402 if (sym->attr.use_assoc && sym->component_access == ACCESS_PRIVATE)
1404 gfc_error ("Component '%s' at %C is a PRIVATE component of '%s'",
1414 /* Given a symbol, free all of the component structures and everything
1418 free_components (gfc_component * p)
1426 gfc_free_array_spec (p->as);
1427 gfc_free_expr (p->initializer);
1434 /* Set component attributes from a standard symbol attribute
1438 gfc_set_component_attr (gfc_component * c, symbol_attribute * attr)
1441 c->dimension = attr->dimension;
1442 c->pointer = attr->pointer;
1446 /* Get a standard symbol attribute structure given the component
1450 gfc_get_component_attr (symbol_attribute * attr, gfc_component * c)
1453 gfc_clear_attr (attr);
1454 attr->dimension = c->dimension;
1455 attr->pointer = c->pointer;
1459 /******************** Statement label management ********************/
1461 /* Free a single gfc_st_label structure, making sure the list is not
1462 messed up. This function is called only when some parse error
1466 gfc_free_st_label (gfc_st_label * l)
1473 (l->prev->next = l->next);
1476 (l->next->prev = l->prev);
1478 if (l->format != NULL)
1479 gfc_free_expr (l->format);
1483 /* Free a whole list of gfc_st_label structures. */
1486 free_st_labels (gfc_st_label * l1)
1493 if (l1->format != NULL)
1494 gfc_free_expr (l1->format);
1500 /* Given a label number, search for and return a pointer to the label
1501 structure, creating it if it does not exist. */
1504 gfc_get_st_label (int labelno)
1508 /* First see if the label is already in this namespace. */
1509 for (lp = gfc_current_ns->st_labels; lp; lp = lp->next)
1510 if (lp->value == labelno)
1515 lp = gfc_getmem (sizeof (gfc_st_label));
1517 lp->value = labelno;
1518 lp->defined = ST_LABEL_UNKNOWN;
1519 lp->referenced = ST_LABEL_UNKNOWN;
1522 lp->next = gfc_current_ns->st_labels;
1523 if (gfc_current_ns->st_labels)
1524 gfc_current_ns->st_labels->prev = lp;
1525 gfc_current_ns->st_labels = lp;
1531 /* Called when a statement with a statement label is about to be
1532 accepted. We add the label to the list of the current namespace,
1533 making sure it hasn't been defined previously and referenced
1537 gfc_define_st_label (gfc_st_label * lp, gfc_sl_type type, locus * label_locus)
1541 labelno = lp->value;
1543 if (lp->defined != ST_LABEL_UNKNOWN)
1544 gfc_error ("Duplicate statement label %d at %L and %L", labelno,
1545 &lp->where, label_locus);
1548 lp->where = *label_locus;
1552 case ST_LABEL_FORMAT:
1553 if (lp->referenced == ST_LABEL_TARGET)
1554 gfc_error ("Label %d at %C already referenced as branch target",
1557 lp->defined = ST_LABEL_FORMAT;
1561 case ST_LABEL_TARGET:
1562 if (lp->referenced == ST_LABEL_FORMAT)
1563 gfc_error ("Label %d at %C already referenced as a format label",
1566 lp->defined = ST_LABEL_TARGET;
1571 lp->defined = ST_LABEL_BAD_TARGET;
1572 lp->referenced = ST_LABEL_BAD_TARGET;
1578 /* Reference a label. Given a label and its type, see if that
1579 reference is consistent with what is known about that label,
1580 updating the unknown state. Returns FAILURE if something goes
1584 gfc_reference_st_label (gfc_st_label * lp, gfc_sl_type type)
1586 gfc_sl_type label_type;
1593 labelno = lp->value;
1595 if (lp->defined != ST_LABEL_UNKNOWN)
1596 label_type = lp->defined;
1599 label_type = lp->referenced;
1600 lp->where = gfc_current_locus;
1603 if (label_type == ST_LABEL_FORMAT && type == ST_LABEL_TARGET)
1605 gfc_error ("Label %d at %C previously used as a FORMAT label", labelno);
1610 if ((label_type == ST_LABEL_TARGET || label_type == ST_LABEL_BAD_TARGET)
1611 && type == ST_LABEL_FORMAT)
1613 gfc_error ("Label %d at %C previously used as branch target", labelno);
1618 lp->referenced = type;
1626 /************** Symbol table management subroutines ****************/
1628 /* Basic details: Fortran 95 requires a potentially unlimited number
1629 of distinct namespaces when compiling a program unit. This case
1630 occurs during a compilation of internal subprograms because all of
1631 the internal subprograms must be read before we can start
1632 generating code for the host.
1634 Given the tricky nature of the Fortran grammar, we must be able to
1635 undo changes made to a symbol table if the current interpretation
1636 of a statement is found to be incorrect. Whenever a symbol is
1637 looked up, we make a copy of it and link to it. All of these
1638 symbols are kept in a singly linked list so that we can commit or
1639 undo the changes at a later time.
1641 A symtree may point to a symbol node outside of its namespace. In
1642 this case, that symbol has been used as a host associated variable
1643 at some previous time. */
1645 /* Allocate a new namespace structure. Copies the implicit types from
1646 PARENT if PARENT_TYPES is set. */
1649 gfc_get_namespace (gfc_namespace * parent, int parent_types)
1653 gfc_intrinsic_op in;
1656 ns = gfc_getmem (sizeof (gfc_namespace));
1657 ns->sym_root = NULL;
1658 ns->uop_root = NULL;
1659 ns->default_access = ACCESS_UNKNOWN;
1660 ns->parent = parent;
1662 for (in = GFC_INTRINSIC_BEGIN; in != GFC_INTRINSIC_END; in++)
1663 ns->operator_access[in] = ACCESS_UNKNOWN;
1665 /* Initialize default implicit types. */
1666 for (i = 'a'; i <= 'z'; i++)
1668 ns->set_flag[i - 'a'] = 0;
1669 ts = &ns->default_type[i - 'a'];
1671 if (parent_types && ns->parent != NULL)
1673 /* Copy parent settings */
1674 *ts = ns->parent->default_type[i - 'a'];
1678 if (gfc_option.flag_implicit_none != 0)
1684 if ('i' <= i && i <= 'n')
1686 ts->type = BT_INTEGER;
1687 ts->kind = gfc_default_integer_kind;
1692 ts->kind = gfc_default_real_kind;
1702 /* Comparison function for symtree nodes. */
1705 compare_symtree (void * _st1, void * _st2)
1707 gfc_symtree *st1, *st2;
1709 st1 = (gfc_symtree *) _st1;
1710 st2 = (gfc_symtree *) _st2;
1712 return strcmp (st1->name, st2->name);
1716 /* Allocate a new symtree node and associate it with the new symbol. */
1719 gfc_new_symtree (gfc_symtree ** root, const char *name)
1723 st = gfc_getmem (sizeof (gfc_symtree));
1724 st->name = gfc_get_string (name);
1726 gfc_insert_bbt (root, st, compare_symtree);
1731 /* Delete a symbol from the tree. Does not free the symbol itself! */
1734 delete_symtree (gfc_symtree ** root, const char *name)
1736 gfc_symtree st, *st0;
1738 st0 = gfc_find_symtree (*root, name);
1740 st.name = gfc_get_string (name);
1741 gfc_delete_bbt (root, &st, compare_symtree);
1747 /* Given a root symtree node and a name, try to find the symbol within
1748 the namespace. Returns NULL if the symbol is not found. */
1751 gfc_find_symtree (gfc_symtree * st, const char *name)
1757 c = strcmp (name, st->name);
1761 st = (c < 0) ? st->left : st->right;
1768 /* Given a name find a user operator node, creating it if it doesn't
1769 exist. These are much simpler than symbols because they can't be
1770 ambiguous with one another. */
1773 gfc_get_uop (const char *name)
1778 st = gfc_find_symtree (gfc_current_ns->uop_root, name);
1782 st = gfc_new_symtree (&gfc_current_ns->uop_root, name);
1784 uop = st->n.uop = gfc_getmem (sizeof (gfc_user_op));
1785 uop->name = gfc_get_string (name);
1786 uop->access = ACCESS_UNKNOWN;
1787 uop->ns = gfc_current_ns;
1793 /* Given a name find the user operator node. Returns NULL if it does
1797 gfc_find_uop (const char *name, gfc_namespace * ns)
1802 ns = gfc_current_ns;
1804 st = gfc_find_symtree (ns->uop_root, name);
1805 return (st == NULL) ? NULL : st->n.uop;
1809 /* Remove a gfc_symbol structure and everything it points to. */
1812 gfc_free_symbol (gfc_symbol * sym)
1818 gfc_free_array_spec (sym->as);
1820 free_components (sym->components);
1822 gfc_free_expr (sym->value);
1824 gfc_free_namelist (sym->namelist);
1826 gfc_free_namespace (sym->formal_ns);
1828 gfc_free_interface (sym->generic);
1830 gfc_free_formal_arglist (sym->formal);
1836 /* Allocate and initialize a new symbol node. */
1839 gfc_new_symbol (const char *name, gfc_namespace * ns)
1843 p = gfc_getmem (sizeof (gfc_symbol));
1845 gfc_clear_ts (&p->ts);
1846 gfc_clear_attr (&p->attr);
1849 p->declared_at = gfc_current_locus;
1851 if (strlen (name) > GFC_MAX_SYMBOL_LEN)
1852 gfc_internal_error ("new_symbol(): Symbol name too long");
1854 p->name = gfc_get_string (name);
1859 /* Generate an error if a symbol is ambiguous. */
1862 ambiguous_symbol (const char *name, gfc_symtree * st)
1865 if (st->n.sym->module)
1866 gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
1867 "from module '%s'", name, st->n.sym->name, st->n.sym->module);
1869 gfc_error ("Name '%s' at %C is an ambiguous reference to '%s' "
1870 "from current program unit", name, st->n.sym->name);
1874 /* Search for a symtree starting in the current namespace, resorting to
1875 any parent namespaces if requested by a nonzero parent_flag.
1876 Returns nonzero if the name is ambiguous. */
1879 gfc_find_sym_tree (const char *name, gfc_namespace * ns, int parent_flag,
1880 gfc_symtree ** result)
1885 ns = gfc_current_ns;
1889 st = gfc_find_symtree (ns->sym_root, name);
1895 ambiguous_symbol (name, st);
1914 /* Same, but returns the symbol instead. */
1917 gfc_find_symbol (const char *name, gfc_namespace * ns, int parent_flag,
1918 gfc_symbol ** result)
1923 i = gfc_find_sym_tree (name, ns, parent_flag, &st);
1928 *result = st->n.sym;
1934 /* Save symbol with the information necessary to back it out. */
1937 save_symbol_data (gfc_symbol * sym)
1940 if (sym->new || sym->old_symbol != NULL)
1943 sym->old_symbol = gfc_getmem (sizeof (gfc_symbol));
1944 *(sym->old_symbol) = *sym;
1946 sym->tlink = changed_syms;
1951 /* Given a name, find a symbol, or create it if it does not exist yet
1952 in the current namespace. If the symbol is found we make sure that
1955 The integer return code indicates
1957 1 The symbol name was ambiguous
1958 2 The name meant to be established was already host associated.
1960 So if the return value is nonzero, then an error was issued. */
1963 gfc_get_sym_tree (const char *name, gfc_namespace * ns, gfc_symtree ** result)
1968 /* This doesn't usually happen during resolution. */
1970 ns = gfc_current_ns;
1972 /* Try to find the symbol in ns. */
1973 st = gfc_find_symtree (ns->sym_root, name);
1977 /* If not there, create a new symbol. */
1978 p = gfc_new_symbol (name, ns);
1980 /* Add to the list of tentative symbols. */
1981 p->old_symbol = NULL;
1982 p->tlink = changed_syms;
1987 st = gfc_new_symtree (&ns->sym_root, name);
1994 /* Make sure the existing symbol is OK. */
1997 ambiguous_symbol (name, st);
2003 if (p->ns != ns && (!p->attr.function || ns->proc_name != p))
2005 /* Symbol is from another namespace. */
2006 gfc_error ("Symbol '%s' at %C has already been host associated",
2013 /* Copy in case this symbol is changed. */
2014 save_symbol_data (p);
2023 gfc_get_symbol (const char *name, gfc_namespace * ns, gfc_symbol ** result)
2029 i = gfc_get_sym_tree (name, ns, &st);
2034 *result = st->n.sym;
2041 /* Subroutine that searches for a symbol, creating it if it doesn't
2042 exist, but tries to host-associate the symbol if possible. */
2045 gfc_get_ha_sym_tree (const char *name, gfc_symtree ** result)
2050 i = gfc_find_sym_tree (name, gfc_current_ns, 0, &st);
2053 save_symbol_data (st->n.sym);
2059 if (gfc_current_ns->parent != NULL)
2061 i = gfc_find_sym_tree (name, gfc_current_ns->parent, 1, &st);
2072 return gfc_get_sym_tree (name, gfc_current_ns, result);
2077 gfc_get_ha_symbol (const char *name, gfc_symbol ** result)
2082 i = gfc_get_ha_sym_tree (name, &st);
2085 *result = st->n.sym;
2092 /* Return true if both symbols could refer to the same data object. Does
2093 not take account of aliasing due to equivalence statements. */
2096 gfc_symbols_could_alias (gfc_symbol * lsym, gfc_symbol * rsym)
2098 /* Aliasing isn't possible if the symbols have different base types. */
2099 if (gfc_compare_types (&lsym->ts, &rsym->ts) == 0)
2102 /* Pointers can point to other pointers, target objects and allocatable
2103 objects. Two allocatable objects cannot share the same storage. */
2104 if (lsym->attr.pointer
2105 && (rsym->attr.pointer || rsym->attr.allocatable || rsym->attr.target))
2107 if (lsym->attr.target && rsym->attr.pointer)
2109 if (lsym->attr.allocatable && rsym->attr.pointer)
2116 /* Undoes all the changes made to symbols in the current statement.
2117 This subroutine is made simpler due to the fact that attributes are
2118 never removed once added. */
2121 gfc_undo_symbols (void)
2123 gfc_symbol *p, *q, *old;
2125 for (p = changed_syms; p; p = q)
2131 /* Symbol was new. */
2132 delete_symtree (&p->ns->sym_root, p->name);
2136 gfc_internal_error ("gfc_undo_symbols(): Negative refs");
2138 gfc_free_symbol (p);
2142 /* Restore previous state of symbol. Just copy simple stuff. */
2144 old = p->old_symbol;
2146 p->ts.type = old->ts.type;
2147 p->ts.kind = old->ts.kind;
2149 p->attr = old->attr;
2151 if (p->value != old->value)
2153 gfc_free_expr (old->value);
2157 if (p->as != old->as)
2160 gfc_free_array_spec (p->as);
2164 p->generic = old->generic;
2165 p->component_access = old->component_access;
2167 if (p->namelist != NULL && old->namelist == NULL)
2169 gfc_free_namelist (p->namelist);
2175 if (p->namelist_tail != old->namelist_tail)
2177 gfc_free_namelist (old->namelist_tail);
2178 old->namelist_tail->next = NULL;
2182 p->namelist_tail = old->namelist_tail;
2184 if (p->formal != old->formal)
2186 gfc_free_formal_arglist (p->formal);
2187 p->formal = old->formal;
2190 gfc_free (p->old_symbol);
2191 p->old_symbol = NULL;
2195 changed_syms = NULL;
2199 /* Makes the changes made in the current statement permanent-- gets
2200 rid of undo information. */
2203 gfc_commit_symbols (void)
2207 for (p = changed_syms; p; p = q)
2214 if (p->old_symbol != NULL)
2216 gfc_free (p->old_symbol);
2217 p->old_symbol = NULL;
2221 changed_syms = NULL;
2225 /* Recursive function that deletes an entire tree and all the common
2226 head structures it points to. */
2229 free_common_tree (gfc_symtree * common_tree)
2231 if (common_tree == NULL)
2234 free_common_tree (common_tree->left);
2235 free_common_tree (common_tree->right);
2237 gfc_free (common_tree);
2241 /* Recursive function that deletes an entire tree and all the user
2242 operator nodes that it contains. */
2245 free_uop_tree (gfc_symtree * uop_tree)
2248 if (uop_tree == NULL)
2251 free_uop_tree (uop_tree->left);
2252 free_uop_tree (uop_tree->right);
2254 gfc_free_interface (uop_tree->n.uop->operator);
2256 gfc_free (uop_tree->n.uop);
2257 gfc_free (uop_tree);
2261 /* Recursive function that deletes an entire tree and all the symbols
2262 that it contains. */
2265 free_sym_tree (gfc_symtree * sym_tree)
2270 if (sym_tree == NULL)
2273 free_sym_tree (sym_tree->left);
2274 free_sym_tree (sym_tree->right);
2276 sym = sym_tree->n.sym;
2280 gfc_internal_error ("free_sym_tree(): Negative refs");
2282 if (sym->formal_ns != NULL && sym->refs == 1)
2284 /* As formal_ns contains a reference to sym, delete formal_ns just
2285 before the deletion of sym. */
2286 ns = sym->formal_ns;
2287 sym->formal_ns = NULL;
2288 gfc_free_namespace (ns);
2290 else if (sym->refs == 0)
2292 /* Go ahead and delete the symbol. */
2293 gfc_free_symbol (sym);
2296 gfc_free (sym_tree);
2300 /* Free a namespace structure and everything below it. Interface
2301 lists associated with intrinsic operators are not freed. These are
2302 taken care of when a specific name is freed. */
2305 gfc_free_namespace (gfc_namespace * ns)
2307 gfc_charlen *cl, *cl2;
2308 gfc_namespace *p, *q;
2317 gcc_assert (ns->refs == 0);
2319 gfc_free_statements (ns->code);
2321 free_sym_tree (ns->sym_root);
2322 free_uop_tree (ns->uop_root);
2323 free_common_tree (ns->common_root);
2325 for (cl = ns->cl_list; cl; cl = cl2)
2328 gfc_free_expr (cl->length);
2332 free_st_labels (ns->st_labels);
2334 gfc_free_equiv (ns->equiv);
2336 for (i = GFC_INTRINSIC_BEGIN; i != GFC_INTRINSIC_END; i++)
2337 gfc_free_interface (ns->operator[i]);
2339 gfc_free_data (ns->data);
2343 /* Recursively free any contained namespaces. */
2349 gfc_free_namespace (q);
2355 gfc_symbol_init_2 (void)
2358 gfc_current_ns = gfc_get_namespace (NULL, 0);
2363 gfc_symbol_done_2 (void)
2366 gfc_free_namespace (gfc_current_ns);
2367 gfc_current_ns = NULL;
2371 /* Clear mark bits from symbol nodes associated with a symtree node. */
2374 clear_sym_mark (gfc_symtree * st)
2377 st->n.sym->mark = 0;
2381 /* Recursively traverse the symtree nodes. */
2384 gfc_traverse_symtree (gfc_symtree * st, void (*func) (gfc_symtree *))
2390 gfc_traverse_symtree (st->left, func);
2391 gfc_traverse_symtree (st->right, func);
2396 /* Recursive namespace traversal function. */
2399 traverse_ns (gfc_symtree * st, void (*func) (gfc_symbol *))
2405 if (st->n.sym->mark == 0)
2406 (*func) (st->n.sym);
2407 st->n.sym->mark = 1;
2409 traverse_ns (st->left, func);
2410 traverse_ns (st->right, func);
2414 /* Call a given function for all symbols in the namespace. We take
2415 care that each gfc_symbol node is called exactly once. */
2418 gfc_traverse_ns (gfc_namespace * ns, void (*func) (gfc_symbol *))
2421 gfc_traverse_symtree (ns->sym_root, clear_sym_mark);
2423 traverse_ns (ns->sym_root, func);
2427 /* Return TRUE if the symbol is an automatic variable. */
2429 gfc_is_var_automatic (gfc_symbol * sym)
2431 /* Pointer and allocatable variables are never automatic. */
2432 if (sym->attr.pointer || sym->attr.allocatable)
2434 /* Check for arrays with non-constant size. */
2435 if (sym->attr.dimension && sym->as
2436 && !gfc_is_compile_time_shape (sym->as))
2438 /* Check for non-constant length character variables. */
2439 if (sym->ts.type == BT_CHARACTER
2441 && !gfc_is_constant_expr (sym->ts.cl->length))
2446 /* Given a symbol, mark it as SAVEd if it is allowed. */
2449 save_symbol (gfc_symbol * sym)
2452 if (sym->attr.use_assoc)
2455 if (sym->attr.in_common
2457 || sym->attr.flavor != FL_VARIABLE)
2459 /* Automatic objects are not saved. */
2460 if (gfc_is_var_automatic (sym))
2462 gfc_add_save (&sym->attr, sym->name, &sym->declared_at);
2466 /* Mark those symbols which can be SAVEd as such. */
2469 gfc_save_all (gfc_namespace * ns)
2472 gfc_traverse_ns (ns, save_symbol);
2477 /* Make sure that no changes to symbols are pending. */
2480 gfc_symbol_state(void) {
2482 if (changed_syms != NULL)
2483 gfc_internal_error("Symbol changes still pending!");
2488 /************** Global symbol handling ************/
2491 /* Search a tree for the global symbol. */
2494 gfc_find_gsymbol (gfc_gsymbol *symbol, const char *name)
2500 if (strcmp (symbol->name, name) == 0)
2503 s = gfc_find_gsymbol (symbol->left, name);
2507 s = gfc_find_gsymbol (symbol->right, name);
2515 /* Compare two global symbols. Used for managing the BB tree. */
2518 gsym_compare (void * _s1, void * _s2)
2520 gfc_gsymbol *s1, *s2;
2522 s1 = (gfc_gsymbol *)_s1;
2523 s2 = (gfc_gsymbol *)_s2;
2524 return strcmp(s1->name, s2->name);
2528 /* Get a global symbol, creating it if it doesn't exist. */
2531 gfc_get_gsymbol (const char *name)
2535 s = gfc_find_gsymbol (gfc_gsym_root, name);
2539 s = gfc_getmem (sizeof (gfc_gsymbol));
2540 s->type = GSYM_UNKNOWN;
2541 s->name = gfc_get_string (name);
2543 gfc_insert_bbt (&gfc_gsym_root, s, gsym_compare);