1 /* Symbol table manager for Bison.
3 Copyright (C) 1984, 1989, 2000, 2001, 2002, 2004 Free Software
6 This file is part of Bison, the GNU Compiler Compiler.
8 Bison is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 Bison is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Bison; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
33 /*------------------------.
34 | Distinguished symbols. |
35 `------------------------*/
37 symbol
*errtoken
= NULL
;
38 symbol
*undeftoken
= NULL
;
39 symbol
*endtoken
= NULL
;
40 symbol
*accept
= NULL
;
41 symbol
*startsymbol
= NULL
;
42 location startsymbol_location
;
44 /*---------------------------------.
45 | Create a new symbol, named TAG. |
46 `---------------------------------*/
49 symbol_new (uniqstr tag
, location loc
)
51 symbol
*res
= xmalloc (sizeof *res
);
57 res
->type_name
= NULL
;
58 res
->destructor
= NULL
;
61 res
->number
= NUMBER_UNDEFINED
;
63 res
->assoc
= undef_assoc
;
64 res
->user_token_number
= USER_NUMBER_UNDEFINED
;
67 res
->class = unknown_sym
;
74 /*------------------------------------------------------------------.
75 | Complain that S's WHAT is redeclared at SECOND, and was first set |
77 `------------------------------------------------------------------*/
80 redeclaration (symbol
* s
, const char *what
, location first
, location second
)
82 complain_at (second
, _("%s redeclaration for %s"), what
, s
->tag
);
83 complain_at (first
, _("first declaration"));
87 /*-----------------------------------------------------------------.
88 | Set the TYPE_NAME associated with SYM. Does nothing if passed 0 |
90 `-----------------------------------------------------------------*/
93 symbol_type_set (symbol
*sym
, uniqstr type_name
, location loc
)
98 redeclaration (sym
, "%type", sym
->type_location
, loc
);
99 uniqstr_assert (type_name
);
100 sym
->type_name
= type_name
;
101 sym
->type_location
= loc
;
106 /*------------------------------------------------------------------.
107 | Set the DESTRUCTOR associated with SYM. Do nothing if passed 0. |
108 `------------------------------------------------------------------*/
111 symbol_destructor_set (symbol
*sym
, char *destructor
, location loc
)
116 redeclaration (sym
, "%destructor", sym
->destructor_location
, loc
);
117 sym
->destructor
= destructor
;
118 sym
->destructor_location
= loc
;
123 /*---------------------------------------------------------------.
124 | Set the PRINTER associated with SYM. Do nothing if passed 0. |
125 `---------------------------------------------------------------*/
128 symbol_printer_set (symbol
*sym
, char *printer
, location loc
)
133 redeclaration (sym
, "%printer", sym
->destructor_location
, loc
);
134 sym
->printer
= printer
;
135 sym
->printer_location
= loc
;
140 /*-----------------------------------------------------------------.
141 | Set the PRECEDENCE associated with SYM. Does nothing if invoked |
142 | with UNDEF_ASSOC as ASSOC. |
143 `-----------------------------------------------------------------*/
146 symbol_precedence_set (symbol
*sym
, int prec
, assoc a
, location loc
)
148 if (a
!= undef_assoc
)
151 redeclaration (sym
, assoc_to_string (a
), sym
->prec_location
, loc
);
154 sym
->prec_location
= loc
;
157 /* Only terminals have a precedence. */
158 symbol_class_set (sym
, token_sym
, loc
);
162 /*------------------------------------.
163 | Set the CLASS associated with SYM. |
164 `------------------------------------*/
167 symbol_class_set (symbol
*sym
, symbol_class
class, location loc
)
169 if (sym
->class != unknown_sym
&& sym
->class != class)
170 complain_at (loc
, _("symbol %s redefined"), sym
->tag
);
172 if (class == nterm_sym
&& sym
->class != nterm_sym
)
173 sym
->number
= nvars
++;
174 else if (class == token_sym
&& sym
->number
== NUMBER_UNDEFINED
)
175 sym
->number
= ntokens
++;
181 /*------------------------------------------------.
182 | Set the USER_TOKEN_NUMBER associated with SYM. |
183 `------------------------------------------------*/
186 symbol_user_token_number_set (symbol
*sym
, int user_token_number
, location loc
)
188 if (sym
->class != token_sym
)
191 if (sym
->user_token_number
!= USER_NUMBER_UNDEFINED
192 && sym
->user_token_number
!= user_token_number
)
193 complain_at (loc
, _("redefining user token number of %s"), sym
->tag
);
195 sym
->user_token_number
= user_token_number
;
196 /* User defined $end token? */
197 if (user_token_number
== 0)
200 endtoken
->number
= 0;
201 /* It is always mapped to 0, so it was already counted in
208 /*----------------------------------------------------------.
209 | If SYM is not defined, report an error, and consider it a |
211 `----------------------------------------------------------*/
214 symbol_check_defined (symbol
*sym
)
216 if (sym
->class == unknown_sym
)
220 _("symbol %s is used, but is not defined as a token and has no rules"),
222 sym
->class = nterm_sym
;
223 sym
->number
= nvars
++;
230 symbol_check_defined_processor (void *sym
, void *null ATTRIBUTE_UNUSED
)
232 return symbol_check_defined (sym
);
236 /*------------------------------------------------------------------.
237 | Declare the new symbol SYM. Make it an alias of SYMVAL, and type |
238 | SYMVAL with SYM's type. |
239 `------------------------------------------------------------------*/
242 symbol_make_alias (symbol
*sym
, symbol
*symval
, location loc
)
245 warn_at (loc
, _("symbol `%s' used more than once as a literal string"),
248 warn_at (loc
, _("symbol `%s' given more than one literal string"),
252 symval
->class = token_sym
;
253 symval
->user_token_number
= sym
->user_token_number
;
254 sym
->user_token_number
= USER_NUMBER_ALIAS
;
257 /* sym and symval combined are only one symbol. */
260 if (ntokens
!= sym
->number
&& ntokens
!= symval
->number
)
262 sym
->number
= symval
->number
=
263 (symval
->number
< sym
->number
) ? symval
->number
: sym
->number
;
268 /*---------------------------------------------------------.
269 | Check that THIS, and its alias, have same precedence and |
271 `---------------------------------------------------------*/
274 symbol_check_alias_consistency (symbol
*this)
276 symbol
*alias
= this;
277 symbol
*orig
= this->alias
;
279 /* Check only those that _are_ the aliases. */
280 if (!(this->alias
&& this->user_token_number
== USER_NUMBER_ALIAS
))
283 if (orig
->type_name
|| alias
->type_name
)
286 symbol_type_set (alias
, orig
->type_name
, orig
->type_location
);
288 symbol_type_set (orig
, alias
->type_name
, alias
->type_location
);
292 if (orig
->destructor
|| alias
->destructor
)
294 if (orig
->destructor
)
295 symbol_destructor_set (alias
, orig
->destructor
,
296 orig
->destructor_location
);
298 symbol_destructor_set (orig
, alias
->destructor
,
299 alias
->destructor_location
);
302 if (orig
->printer
|| alias
->printer
)
305 symbol_printer_set (alias
, orig
->printer
, orig
->printer_location
);
307 symbol_printer_set (orig
, alias
->printer
, alias
->printer_location
);
310 if (alias
->prec
|| orig
->prec
)
313 symbol_precedence_set (alias
, orig
->prec
, orig
->assoc
,
314 orig
->prec_location
);
316 symbol_precedence_set (orig
, alias
->prec
, alias
->assoc
,
317 alias
->prec_location
);
322 symbol_check_alias_consistency_processor (void *this,
323 void *null ATTRIBUTE_UNUSED
)
325 symbol_check_alias_consistency (this);
330 /*-------------------------------------------------------------------.
331 | Assign a symbol number, and write the definition of the token name |
332 | into FDEFINES. Put in SYMBOLS. |
333 `-------------------------------------------------------------------*/
336 symbol_pack (symbol
*this)
338 if (this->class == nterm_sym
)
340 this->number
+= ntokens
;
342 else if (this->alias
)
344 /* This symbol and its alias are a single token defn.
345 Allocate a tokno, and assign to both check agreement of
346 prec and assoc fields and make both the same */
347 if (this->number
== NUMBER_UNDEFINED
)
349 if (this == endtoken
|| this->alias
== endtoken
)
350 this->number
= this->alias
->number
= 0;
353 if (this->alias
->number
== NUMBER_UNDEFINED
)
355 this->number
= this->alias
->number
;
358 /* Do not do processing below for USER_NUMBER_ALIASes. */
359 if (this->user_token_number
== USER_NUMBER_ALIAS
)
362 else /* this->class == token_sym */
364 if (this->number
== NUMBER_UNDEFINED
)
368 symbols
[this->number
] = this;
373 symbol_pack_processor (void *this, void *null ATTRIBUTE_UNUSED
)
375 return symbol_pack (this);
381 /*--------------------------------------------------.
382 | Put THIS in TOKEN_TRANSLATIONS if it is a token. |
383 `--------------------------------------------------*/
386 symbol_translation (symbol
*this)
389 if (this->class == token_sym
390 && this->user_token_number
!= USER_NUMBER_ALIAS
)
392 /* A token which translation has already been set? */
393 if (token_translations
[this->user_token_number
] != undeftoken
->number
)
394 complain_at (this->location
,
395 _("tokens %s and %s both assigned number %d"),
396 symbols
[token_translations
[this->user_token_number
]]->tag
,
397 this->tag
, this->user_token_number
);
399 token_translations
[this->user_token_number
] = this->number
;
406 symbol_translation_processor (void *this, void *null ATTRIBUTE_UNUSED
)
408 return symbol_translation (this);
412 /*----------------------.
413 | A symbol hash table. |
414 `----------------------*/
416 /* Initial capacity of symbols hash table. */
417 #define HT_INITIAL_CAPACITY 257
419 static struct hash_table
*symbol_table
= NULL
;
422 hash_compare_symbol (const symbol
*m1
, const symbol
*m2
)
424 /* Since tags are unique, we can compare the pointers themselves. */
425 return UNIQSTR_EQ (m1
->tag
, m2
->tag
);
429 hash_symbol_comparator (void const *m1
, void const *m2
)
431 return hash_compare_symbol (m1
, m2
);
435 hash_symbol (const symbol
*m
, size_t tablesize
)
437 /* Since tags are unique, we can hash the pointer itself. */
438 return ((uintptr_t) m
->tag
) % tablesize
;
442 hash_symbol_hasher (void const *m
, size_t tablesize
)
444 return hash_symbol (m
, tablesize
);
448 /*-------------------------------.
449 | Create the symbol hash table. |
450 `-------------------------------*/
455 symbol_table
= hash_initialize (HT_INITIAL_CAPACITY
,
458 hash_symbol_comparator
,
463 /*----------------------------------------------------------------.
464 | Find the symbol named KEY, and return it. If it does not exist |
466 `----------------------------------------------------------------*/
469 symbol_get (const char *key
, location loc
)
474 /* Keep the symbol in a printable form. */
475 key
= uniqstr_new (quotearg_style (escape_quoting_style
, key
));
477 entry
= hash_lookup (symbol_table
, &probe
);
481 /* First insertion in the hash. */
482 entry
= symbol_new (key
, loc
);
483 hash_insert (symbol_table
, entry
);
489 /*------------------------------------------------------------------.
490 | Generate a dummy nonterminal, whose name cannot conflict with the |
492 `------------------------------------------------------------------*/
495 dummy_symbol_get (location loc
)
497 /* Incremented for each generated symbol. */
498 static int dummy_count
= 0;
499 static char buf
[256];
503 sprintf (buf
, "@%d", ++dummy_count
);
504 sym
= symbol_get (buf
, loc
);
505 sym
->class = nterm_sym
;
506 sym
->number
= nvars
++;
511 /*-------------------.
512 | Free the symbols. |
513 `-------------------*/
518 hash_free (symbol_table
);
523 /*---------------------------------------------------------------.
524 | Look for undefined symbols, report an error, and consider them |
526 `---------------------------------------------------------------*/
529 symbols_do (Hash_processor processor
, void *processor_data
)
531 hash_do_for_each (symbol_table
, processor
, processor_data
);
535 /*--------------------------------------------------------------.
536 | Check that all the symbols are defined. Report any undefined |
537 | symbols and consider them nonterminals. |
538 `--------------------------------------------------------------*/
541 symbols_check_defined (void)
543 symbols_do (symbol_check_defined_processor
, NULL
);
546 /*------------------------------------------------------------------.
547 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
549 `------------------------------------------------------------------*/
552 symbols_token_translations_init (void)
554 bool num_256_available_p
= true;
557 /* Find the highest user token number, and whether 256, the POSIX
558 preferred user token number for the error token, is used. */
559 max_user_token_number
= 0;
560 for (i
= 0; i
< ntokens
; ++i
)
562 symbol
*this = symbols
[i
];
563 if (this->user_token_number
!= USER_NUMBER_UNDEFINED
)
565 if (this->user_token_number
> max_user_token_number
)
566 max_user_token_number
= this->user_token_number
;
567 if (this->user_token_number
== 256)
568 num_256_available_p
= false;
572 /* If 256 is not used, assign it to error, to follow POSIX. */
573 if (num_256_available_p
574 && errtoken
->user_token_number
== USER_NUMBER_UNDEFINED
)
575 errtoken
->user_token_number
= 256;
577 /* Set the missing user numbers. */
578 if (max_user_token_number
< 256)
579 max_user_token_number
= 256;
581 for (i
= 0; i
< ntokens
; ++i
)
583 symbol
*this = symbols
[i
];
584 if (this->user_token_number
== USER_NUMBER_UNDEFINED
)
585 this->user_token_number
= ++max_user_token_number
;
586 if (this->user_token_number
> max_user_token_number
)
587 max_user_token_number
= this->user_token_number
;
590 token_translations
= xnmalloc (max_user_token_number
+ 1,
591 sizeof *token_translations
);
593 /* Initialize all entries for literal tokens to 2, the internal
594 token number for $undefined, which represents all invalid inputs.
596 for (i
= 0; i
< max_user_token_number
+ 1; i
++)
597 token_translations
[i
] = undeftoken
->number
;
598 symbols_do (symbol_translation_processor
, NULL
);
602 /*----------------------------------------------------------------.
603 | Assign symbol numbers, and write definition of token names into |
604 | FDEFINES. Set up vectors SYMBOL_TABLE, TAGS of symbols. |
605 `----------------------------------------------------------------*/
610 symbols
= xcalloc (nsyms
, sizeof *symbols
);
612 symbols_do (symbol_check_alias_consistency_processor
, NULL
);
613 symbols_do (symbol_pack_processor
, NULL
);
615 symbols_token_translations_init ();
617 if (startsymbol
->class == unknown_sym
)
618 fatal_at (startsymbol_location
,
619 _("the start symbol %s is undefined"),
621 else if (startsymbol
->class == token_sym
)
622 fatal_at (startsymbol_location
,
623 _("the start symbol %s is a token"),