1 /* Symbol table manager for Bison,
2 Copyright (C) 1984, 1989, 2000, 2001, 2002 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
6 Bison is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 Bison is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with Bison; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
28 /*------------------------.
29 | Distinguished symbols. |
30 `------------------------*/
32 symbol_t
*errtoken
= NULL
;
33 symbol_t
*undeftoken
= NULL
;
34 symbol_t
*eoftoken
= NULL
;
35 symbol_t
*axiom
= NULL
;
36 symbol_t
*startsymbol
= NULL
;
37 location_t startsymbol_location
;
39 /*---------------------------------.
40 | Create a new symbol, named TAG. |
41 `---------------------------------*/
44 symbol_new (const char *tag
)
46 symbol_t
*res
= XMALLOC (symbol_t
, 1);
48 res
->tag
= xstrdup (tag
);
49 res
->type_name
= NULL
;
50 res
->number
= NUMBER_UNDEFINED
;
52 res
->assoc
= right_assoc
;
53 res
->user_token_number
= USER_NUMBER_UNDEFINED
;
55 res
->class = unknown_sym
;
62 /*------------------------------------------------------------------.
63 | Set the TYPE_NAME associated to SYMBOL. Does nothing if passed 0 |
65 `------------------------------------------------------------------*/
68 symbol_type_set (symbol_t
*symbol
, char *type_name
)
72 if (symbol
->type_name
)
73 complain (_("type redeclaration for %s"), symbol
->tag
);
74 symbol
->type_name
= type_name
;
79 /*------------------------------------------------------------------.
80 | Set the PRECEDENCE associated to SYMBOL. Does nothing if invoked |
81 | with UNDEF_ASSOC as ASSOC. |
82 `------------------------------------------------------------------*/
85 symbol_precedence_set (symbol_t
*symbol
,
86 int prec
, associativity assoc
)
88 if (assoc
!= undef_assoc
)
90 if (symbol
->prec
!= 0)
91 complain (_("redefining precedence of %s"), symbol
->tag
);
93 symbol
->assoc
= assoc
;
96 /* Only terminals have a precedence. */
97 symbol_class_set (symbol
, token_sym
);
101 /*-------------------------------------.
102 | Set the CLASS associated to SYMBOL. |
103 `-------------------------------------*/
106 symbol_class_set (symbol_t
*symbol
, symbol_class
class)
108 if (symbol
->class != unknown_sym
&& symbol
->class != class)
109 complain (_("symbol %s redefined"), symbol
->tag
);
111 if (class == nterm_sym
&& symbol
->class != nterm_sym
)
112 symbol
->number
= nvars
++;
113 else if (class == token_sym
&& symbol
->number
== NUMBER_UNDEFINED
)
114 symbol
->number
= ntokens
++;
116 symbol
->class = class;
120 /*-------------------------------------------------.
121 | Set the USER_TOKEN_NUMBER associated to SYMBOL. |
122 `-------------------------------------------------*/
125 symbol_user_token_number_set (symbol_t
*symbol
, int user_token_number
)
127 assert (symbol
->class == token_sym
);
129 if (symbol
->user_token_number
!= USER_NUMBER_UNDEFINED
130 && symbol
->user_token_number
!= user_token_number
)
131 complain (_("redefining user token number of %s"), symbol
->tag
);
133 symbol
->user_token_number
= user_token_number
;
134 /* User defined EOF token? */
135 if (user_token_number
== 0)
138 eoftoken
->number
= 0;
139 /* It is always mapped to 0, so it was already counted in
151 symbol_free (symbol_t
*this)
154 /* This causes crashes because one string can appear more
156 XFREE (this->type_name
);
163 /*-----------------------------------------------------------.
164 | If THIS is not defined, report an error, and consider it a |
166 `-----------------------------------------------------------*/
169 symbol_check_defined (symbol_t
*this)
171 if (this->class == unknown_sym
)
174 (_("symbol %s is used, but is not defined as a token and has no rules"),
176 this->class = nterm_sym
;
177 this->number
= nvars
++;
184 /*-------------------------------------------------------------------.
185 | Declare the new SYMBOL. Make it an alias of SYMVAL, and type them |
187 `-------------------------------------------------------------------*/
190 symbol_make_alias (symbol_t
*symbol
, symbol_t
*symval
)
193 warn (_("symbol `%s' used more than once as a literal string"),
195 else if (symbol
->alias
)
196 warn (_("symbol `%s' given more than one literal string"),
200 symval
->class = token_sym
;
201 symval
->user_token_number
= symbol
->user_token_number
;
202 symbol
->user_token_number
= USER_NUMBER_ALIAS
;
203 symval
->alias
= symbol
;
204 symbol
->alias
= symval
;
205 /* symbol and symval combined are only one symbol */
208 assert (ntokens
== symbol
->number
|| ntokens
== symval
->number
);
209 symbol
->number
= symval
->number
=
210 (symval
->number
< symbol
->number
) ? symval
->number
: symbol
->number
;
215 /*---------------------------------------------------------.
216 | Check that THIS, and its alias, have same precedence and |
218 `---------------------------------------------------------*/
221 symbol_check_alias_consistence (symbol_t
*this)
223 /* Check only those who _are_ the aliases. */
224 if (this->alias
&& this->user_token_number
== USER_NUMBER_ALIAS
)
226 if (this->prec
!= this->alias
->prec
)
228 if (this->prec
!= 0 && this->alias
->prec
!= 0)
229 complain (_("conflicting precedences for %s and %s"),
230 this->tag
, this->alias
->tag
);
232 this->alias
->prec
= this->prec
;
234 this->prec
= this->alias
->prec
;
237 if (this->assoc
!= this->alias
->assoc
)
239 /* FIXME: For some reason (probably the S/R => keep the S),
240 the right assoc is chosen has the ``not set''. This is
241 not nice, fix this! */
242 if (this->assoc
!= right_assoc
243 && this->alias
->assoc
!= right_assoc
)
244 complain (_("conflicting associativities for %s and %s"),
245 this->tag
, this->alias
->tag
);
246 if (this->assoc
!= 0)
247 this->alias
->assoc
= this->assoc
;
249 this->assoc
= this->alias
->assoc
;
256 /*-------------------------------------------------------------------.
257 | Assign a symbol number, and write the definition of the token name |
258 | into FDEFINES. Put in SYMBOLS. |
259 `-------------------------------------------------------------------*/
262 symbol_pack (symbol_t
*this)
264 if (this->class == nterm_sym
)
266 this->number
+= ntokens
;
268 else if (this->alias
)
270 /* This symbol and its alias are a single token defn.
271 Allocate a tokno, and assign to both check agreement of
272 prec and assoc fields and make both the same */
273 if (this->number
== NUMBER_UNDEFINED
)
275 if (this == eoftoken
|| this->alias
== eoftoken
)
276 this->number
= this->alias
->number
= 0;
279 assert (this->alias
->number
!= NUMBER_UNDEFINED
);
280 this->number
= this->alias
->number
;
283 /* Do not do processing below for USER_NUMBER_ALIASs. */
284 if (this->user_token_number
== USER_NUMBER_ALIAS
)
287 else /* this->class == token_sym */
289 assert (this->number
!= NUMBER_UNDEFINED
);
292 symbols
[this->number
] = this;
299 /*--------------------------------------------------.
300 | Put THIS in TOKEN_TRANSLATIONS if it is a token. |
301 `--------------------------------------------------*/
304 symbol_translation (symbol_t
*this)
307 if (this->class == token_sym
308 && this->user_token_number
!= USER_NUMBER_ALIAS
)
310 /* A token which translation has already been set? */
311 if (token_translations
[this->user_token_number
] != undeftoken
->number
)
312 complain (_("tokens %s and %s both assigned number %d"),
313 symbols
[token_translations
[this->user_token_number
]]->tag
,
314 this->tag
, this->user_token_number
);
316 token_translations
[this->user_token_number
] = this->number
;
323 /*----------------------.
324 | A symbol hash table. |
325 `----------------------*/
327 /* Initial capacity of symbols hash table. */
328 #define HT_INITIAL_CAPACITY 257
330 static struct hash_table
*symbol_table
= NULL
;
333 hash_compare_symbol_t (const symbol_t
*m1
, const symbol_t
*m2
)
335 return strcmp (m1
->tag
, m2
->tag
) ? FALSE
: TRUE
;
339 hash_symbol_t (const symbol_t
*m
, unsigned int tablesize
)
341 return hash_string (m
->tag
, tablesize
);
345 /*-------------------------------.
346 | Create the symbol hash table. |
347 `-------------------------------*/
352 symbol_table
= hash_initialize (HT_INITIAL_CAPACITY
,
354 (Hash_hasher
) hash_symbol_t
,
355 (Hash_comparator
) hash_compare_symbol_t
,
356 (Hash_data_freer
) symbol_free
);
360 /*----------------------------------------------------------------.
361 | Find the symbol named KEY, and return it. If it does not exist |
363 `----------------------------------------------------------------*/
366 getsym (const char *key
)
371 (const char *) probe
.tag
= key
;
372 entry
= hash_lookup (symbol_table
, &probe
);
376 /* First insertion in the hash. */
377 entry
= symbol_new (key
);
378 hash_insert (symbol_table
, entry
);
384 /*-------------------.
385 | Free the symbols. |
386 `-------------------*/
391 hash_free (symbol_table
);
395 /*---------------------------------------------------------------.
396 | Look for undefined symbols, report an error, and consider them |
398 `---------------------------------------------------------------*/
401 symbols_do (symbol_processor processor
, void *processor_data
)
403 hash_do_for_each (symbol_table
,
404 (Hash_processor
) processor
,
409 /*--------------------------------------------------------------.
410 | Check that all the symbols are defined. Report any undefined |
411 | symbols and consider them nonterminals. |
412 `--------------------------------------------------------------*/
415 symbols_check_defined (void)
417 symbols_do (symbol_check_defined
, NULL
);
420 /*------------------------------------------------------------------.
421 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
423 `------------------------------------------------------------------*/
426 symbols_token_translations_init (void)
428 int num_256_available_p
= TRUE
;
431 /* Find the highest user token number, and whether 256, the POSIX
432 preferred user token number for the error token, is used. */
433 max_user_token_number
= 0;
434 for (i
= 0; i
< ntokens
; ++i
)
436 symbol_t
*this = symbols
[i
];
437 if (this->user_token_number
!= USER_NUMBER_UNDEFINED
)
439 if (this->user_token_number
> max_user_token_number
)
440 max_user_token_number
= this->user_token_number
;
441 if (this->user_token_number
== 256)
442 num_256_available_p
= FALSE
;
446 /* If 256 is not used, assign it to error, to follow POSIX. */
447 if (num_256_available_p
448 && errtoken
->user_token_number
== USER_NUMBER_UNDEFINED
)
449 errtoken
->user_token_number
= 256;
451 /* Set the missing user numbers. */
452 if (max_user_token_number
< 256)
453 max_user_token_number
= 256;
455 for (i
= 0; i
< ntokens
; ++i
)
457 symbol_t
*this = symbols
[i
];
458 if (this->user_token_number
== USER_NUMBER_UNDEFINED
)
459 this->user_token_number
= ++max_user_token_number
;
460 if (this->user_token_number
> max_user_token_number
)
461 max_user_token_number
= this->user_token_number
;
464 token_translations
= XCALLOC (symbol_number_t
, max_user_token_number
+ 1);
466 /* Initialize all entries for literal tokens to 2, the internal
467 token number for $undefined., which represents all invalid
469 for (i
= 0; i
< max_user_token_number
+ 1; i
++)
470 token_translations
[i
] = undeftoken
->number
;
471 symbols_do (symbol_translation
, NULL
);
475 /*----------------------------------------------------------------.
476 | Assign symbol numbers, and write definition of token names into |
477 | FDEFINES. Set up vectors SYMBOL_TABLE, TAGS of symbols. |
478 `----------------------------------------------------------------*/
483 symbols
= XCALLOC (symbol_t
*, nsyms
);
485 symbols_do (symbol_check_alias_consistence
, NULL
);
486 symbols_do (symbol_pack
, NULL
);
488 symbols_token_translations_init ();
490 if (startsymbol
->class == unknown_sym
)
491 fatal (_("the start symbol %s is undefined"), startsymbol
->tag
);
492 else if (startsymbol
->class == token_sym
)
493 fatal (_("the start symbol %s is a token"), startsymbol
->tag
);