1 /* Symbol table manager for Bison.
3 Copyright (C) 1984, 1989, 2000, 2001, 2002, 2004, 2005, 2006 Free
4 Software Foundation, Inc.
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., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, 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 | Default %destructor and %printer. |
46 `-----------------------------------*/
48 static const char *default_destructor
= NULL
;
49 static location default_destructor_location
;
50 static const char *default_printer
= NULL
;
51 static location default_printer_location
;
53 /*---------------------------------.
54 | Create a new symbol, named TAG. |
55 `---------------------------------*/
58 symbol_new (uniqstr tag
, location loc
)
60 symbol
*res
= xmalloc (sizeof *res
);
66 res
->type_name
= NULL
;
67 res
->destructor
= NULL
;
70 res
->number
= NUMBER_UNDEFINED
;
72 res
->assoc
= undef_assoc
;
73 res
->user_token_number
= USER_NUMBER_UNDEFINED
;
76 res
->class = unknown_sym
;
77 res
->declared
= false;
79 if (nsyms
== SYMBOL_NUMBER_MAXIMUM
)
80 fatal (_("too many symbols in input grammar (limit is %d)"),
81 SYMBOL_NUMBER_MAXIMUM
);
92 #define SYMBOL_ATTR_PRINT(Attr) \
94 fprintf (f, " %s { %s }", #Attr, s->Attr)
97 symbol_print (symbol
*s
, FILE *f
)
101 fprintf (f
, "\"%s\"", s
->tag
);
102 SYMBOL_ATTR_PRINT (type_name
);
103 SYMBOL_ATTR_PRINT (destructor
);
104 SYMBOL_ATTR_PRINT (printer
);
107 fprintf (f
, "<NULL>");
110 #undef SYMBOL_ATTR_PRINT
112 /*------------------------------------------------------------------.
113 | Complain that S's WHAT is redeclared at SECOND, and was first set |
115 `------------------------------------------------------------------*/
118 redeclaration (symbol
* s
, const char *what
, location first
, location second
)
120 complain_at (second
, _("%s redeclaration for %s"), what
, s
->tag
);
121 complain_at (first
, _("previous declaration"));
125 /*-----------------------------------------------------------------.
126 | Set the TYPE_NAME associated with SYM. Does nothing if passed 0 |
128 `-----------------------------------------------------------------*/
131 symbol_type_set (symbol
*sym
, uniqstr type_name
, location loc
)
136 redeclaration (sym
, "%type", sym
->type_location
, loc
);
137 uniqstr_assert (type_name
);
138 sym
->type_name
= type_name
;
139 sym
->type_location
= loc
;
144 /*------------------------------------------------------------------.
145 | Set the DESTRUCTOR associated with SYM. Do nothing if passed 0. |
146 `------------------------------------------------------------------*/
149 symbol_destructor_set (symbol
*sym
, const char *destructor
, location loc
)
154 redeclaration (sym
, "%destructor", sym
->destructor_location
, loc
);
155 sym
->destructor
= destructor
;
156 sym
->destructor_location
= loc
;
160 /*---------------------------------------.
161 | Get the computed %destructor for SYM. |
162 `---------------------------------------*/
165 symbol_destructor_get (symbol
*sym
)
167 /* Token 0 cannot have a %destructor unless the user renames it. */
168 if (UNIQSTR_EQ (sym
->tag
, uniqstr_new ("$end")))
171 if (sym
->destructor
!= NULL
)
172 return sym
->destructor
;
173 return default_destructor
;
176 /*---------------------------------------------------------------.
177 | Get the grammar location of the %destructor computed for SYM. |
178 `---------------------------------------------------------------*/
181 symbol_destructor_location_get (symbol
*sym
)
183 if (sym
->destructor
!= NULL
)
184 return sym
->destructor_location
;
185 return default_destructor_location
;
188 /*---------------------------------------------------------------.
189 | Set the PRINTER associated with SYM. Do nothing if passed 0. |
190 `---------------------------------------------------------------*/
193 symbol_printer_set (symbol
*sym
, const char *printer
, location loc
)
198 redeclaration (sym
, "%printer", sym
->printer_location
, loc
);
199 sym
->printer
= printer
;
200 sym
->printer_location
= loc
;
204 /*------------------------------------.
205 | Get the computed %printer for SYM. |
206 `------------------------------------*/
209 symbol_printer_get (symbol
*sym
)
211 /* Token 0 cannot have a %printer unless the user renames it. */
212 if (UNIQSTR_EQ (sym
->tag
, uniqstr_new ("$end")))
215 if (sym
->printer
!= NULL
)
217 return default_printer
;
220 /*------------------------------------------------------------.
221 | Get the grammar location of the %printer computed for SYM. |
222 `------------------------------------------------------------*/
225 symbol_printer_location_get (symbol
*sym
)
227 if (sym
->printer
!= NULL
)
228 return sym
->printer_location
;
229 return default_printer_location
;
233 /*-----------------------------------------------------------------.
234 | Set the PRECEDENCE associated with SYM. Does nothing if invoked |
235 | with UNDEF_ASSOC as ASSOC. |
236 `-----------------------------------------------------------------*/
239 symbol_precedence_set (symbol
*sym
, int prec
, assoc a
, location loc
)
241 if (a
!= undef_assoc
)
244 redeclaration (sym
, assoc_to_string (a
), sym
->prec_location
, loc
);
247 sym
->prec_location
= loc
;
250 /* Only terminals have a precedence. */
251 symbol_class_set (sym
, token_sym
, loc
, false);
255 /*------------------------------------.
256 | Set the CLASS associated with SYM. |
257 `------------------------------------*/
260 symbol_class_set (symbol
*sym
, symbol_class
class, location loc
, bool declaring
)
262 if (sym
->class != unknown_sym
&& sym
->class != class)
264 complain_at (loc
, _("symbol %s redefined"), sym
->tag
);
265 sym
->declared
= false;
268 if (class == nterm_sym
&& sym
->class != nterm_sym
)
269 sym
->number
= nvars
++;
270 else if (class == token_sym
&& sym
->number
== NUMBER_UNDEFINED
271 && sym
->tag
[0] != '"')
272 sym
->number
= ntokens
++;
279 warn_at (loc
, _("symbol %s redeclared"), sym
->tag
);
280 sym
->declared
= true;
285 /*------------------------------------------------.
286 | Set the USER_TOKEN_NUMBER associated with SYM. |
287 `------------------------------------------------*/
290 symbol_user_token_number_set (symbol
*sym
, int user_token_number
, location loc
)
292 int *user_token_numberp
;
294 assert (sym
->class == token_sym
);
296 if (sym
->user_token_number
!= USER_NUMBER_ALIAS
)
297 user_token_numberp
= &sym
->user_token_number
;
299 user_token_numberp
= &sym
->alias
->user_token_number
;
300 if (*user_token_numberp
!= USER_NUMBER_UNDEFINED
301 && *user_token_numberp
!= user_token_number
)
302 complain_at (loc
, _("redefining user token number of %s"), sym
->tag
);
304 *user_token_numberp
= user_token_number
;
305 /* User defined $end token? */
306 if (user_token_number
== 0)
309 endtoken
->number
= 0;
310 /* It is always mapped to 0, so it was already counted in
317 /*----------------------------------------------------------.
318 | If SYM is not defined, report an error, and consider it a |
320 `----------------------------------------------------------*/
323 symbol_check_defined (symbol
*sym
)
325 if (sym
->class == unknown_sym
)
329 _("symbol %s is used, but is not defined as a token and has no rules"),
331 sym
->class = nterm_sym
;
332 sym
->number
= nvars
++;
339 symbol_check_defined_processor (void *sym
, void *null ATTRIBUTE_UNUSED
)
341 return symbol_check_defined (sym
);
345 /*------------------------------------------------------------------.
346 | Declare the new symbol SYM. Make it an alias of SYMVAL, and type |
347 | SYMVAL with SYM's type. |
348 `------------------------------------------------------------------*/
351 symbol_make_alias (symbol
*sym
, symbol
*symval
, location loc
)
354 warn_at (loc
, _("symbol `%s' used more than once as a literal string"),
357 warn_at (loc
, _("symbol `%s' given more than one literal string"),
361 symval
->class = token_sym
;
362 symval
->user_token_number
= sym
->user_token_number
;
363 sym
->user_token_number
= USER_NUMBER_ALIAS
;
366 symval
->number
= sym
->number
;
367 symbol_type_set (symval
, sym
->type_name
, loc
);
372 /*---------------------------------------------------------.
373 | Check that THIS, and its alias, have same precedence and |
375 `---------------------------------------------------------*/
378 symbol_check_alias_consistency (symbol
*this)
380 symbol
*alias
= this;
381 symbol
*orig
= this->alias
;
383 if (this->tag
[0] == '"' && !this->alias
)
384 complain_at (this->location
, _("%s undeclared"), this->tag
);
386 /* Check only those that _are_ the aliases. */
387 if (!(this->alias
&& this->user_token_number
== USER_NUMBER_ALIAS
))
390 if (orig
->type_name
!= alias
->type_name
)
393 symbol_type_set (alias
, orig
->type_name
, orig
->type_location
);
395 symbol_type_set (orig
, alias
->type_name
, alias
->type_location
);
399 if (orig
->destructor
|| alias
->destructor
)
401 if (orig
->destructor
)
402 symbol_destructor_set (alias
, orig
->destructor
,
403 orig
->destructor_location
);
405 symbol_destructor_set (orig
, alias
->destructor
,
406 alias
->destructor_location
);
409 if (orig
->printer
|| alias
->printer
)
412 symbol_printer_set (alias
, orig
->printer
, orig
->printer_location
);
414 symbol_printer_set (orig
, alias
->printer
, alias
->printer_location
);
417 if (alias
->prec
|| orig
->prec
)
420 symbol_precedence_set (alias
, orig
->prec
, orig
->assoc
,
421 orig
->prec_location
);
423 symbol_precedence_set (orig
, alias
->prec
, alias
->assoc
,
424 alias
->prec_location
);
429 symbol_check_alias_consistency_processor (void *this,
430 void *null ATTRIBUTE_UNUSED
)
432 symbol_check_alias_consistency (this);
437 /*-------------------------------------------------------------------.
438 | Assign a symbol number, and write the definition of the token name |
439 | into FDEFINES. Put in SYMBOLS. |
440 `-------------------------------------------------------------------*/
443 symbol_pack (symbol
*this)
445 if (this->class == nterm_sym
)
447 this->number
+= ntokens
;
449 else if (this->alias
)
451 /* This symbol and its alias are a single token defn.
452 Allocate a tokno, and assign to both check agreement of
453 prec and assoc fields and make both the same */
454 if (this->number
== NUMBER_UNDEFINED
)
456 if (this == endtoken
|| this->alias
== endtoken
)
457 this->number
= this->alias
->number
= 0;
460 assert (this->alias
->number
!= NUMBER_UNDEFINED
);
461 this->number
= this->alias
->number
;
464 /* Do not do processing below for USER_NUMBER_ALIASes. */
465 if (this->user_token_number
== USER_NUMBER_ALIAS
)
468 else /* this->class == token_sym */
469 assert (this->number
!= NUMBER_UNDEFINED
);
471 symbols
[this->number
] = this;
476 symbol_pack_processor (void *this, void *null ATTRIBUTE_UNUSED
)
478 return symbol_pack (this);
484 /*--------------------------------------------------.
485 | Put THIS in TOKEN_TRANSLATIONS if it is a token. |
486 `--------------------------------------------------*/
489 symbol_translation (symbol
*this)
492 if (this->class == token_sym
493 && this->user_token_number
!= USER_NUMBER_ALIAS
)
495 /* A token which translation has already been set? */
496 if (token_translations
[this->user_token_number
] != undeftoken
->number
)
497 complain_at (this->location
,
498 _("tokens %s and %s both assigned number %d"),
499 symbols
[token_translations
[this->user_token_number
]]->tag
,
500 this->tag
, this->user_token_number
);
502 token_translations
[this->user_token_number
] = this->number
;
509 symbol_translation_processor (void *this, void *null ATTRIBUTE_UNUSED
)
511 return symbol_translation (this);
515 /*----------------------.
516 | A symbol hash table. |
517 `----------------------*/
519 /* Initial capacity of symbols hash table. */
520 #define HT_INITIAL_CAPACITY 257
522 static struct hash_table
*symbol_table
= NULL
;
525 hash_compare_symbol (const symbol
*m1
, const symbol
*m2
)
527 /* Since tags are unique, we can compare the pointers themselves. */
528 return UNIQSTR_EQ (m1
->tag
, m2
->tag
);
532 hash_symbol_comparator (void const *m1
, void const *m2
)
534 return hash_compare_symbol (m1
, m2
);
538 hash_symbol (const symbol
*m
, size_t tablesize
)
540 /* Since tags are unique, we can hash the pointer itself. */
541 return ((uintptr_t) m
->tag
) % tablesize
;
545 hash_symbol_hasher (void const *m
, size_t tablesize
)
547 return hash_symbol (m
, tablesize
);
551 /*-------------------------------.
552 | Create the symbol hash table. |
553 `-------------------------------*/
558 symbol_table
= hash_initialize (HT_INITIAL_CAPACITY
,
561 hash_symbol_comparator
,
566 /*----------------------------------------------------------------.
567 | Find the symbol named KEY, and return it. If it does not exist |
569 `----------------------------------------------------------------*/
572 symbol_from_uniqstr (const uniqstr key
, location loc
)
578 entry
= hash_lookup (symbol_table
, &probe
);
582 /* First insertion in the hash. */
583 entry
= symbol_new (key
, loc
);
584 hash_insert (symbol_table
, entry
);
590 /*----------------------------------------------------------------.
591 | Find the symbol named KEY, and return it. If it does not exist |
593 `----------------------------------------------------------------*/
596 symbol_get (const char *key
, location loc
)
598 return symbol_from_uniqstr (uniqstr_new (key
), loc
);
602 /*------------------------------------------------------------------.
603 | Generate a dummy nonterminal, whose name cannot conflict with the |
605 `------------------------------------------------------------------*/
608 dummy_symbol_get (location loc
)
610 /* Incremented for each generated symbol. */
611 static int dummy_count
= 0;
612 static char buf
[256];
616 sprintf (buf
, "@%d", ++dummy_count
);
617 sym
= symbol_get (buf
, loc
);
618 sym
->class = nterm_sym
;
619 sym
->number
= nvars
++;
624 /*-------------------.
625 | Free the symbols. |
626 `-------------------*/
631 hash_free (symbol_table
);
636 /*---------------------------------------------------------------.
637 | Look for undefined symbols, report an error, and consider them |
639 `---------------------------------------------------------------*/
642 symbols_do (Hash_processor processor
, void *processor_data
)
644 hash_do_for_each (symbol_table
, processor
, processor_data
);
648 /*--------------------------------------------------------------.
649 | Check that all the symbols are defined. Report any undefined |
650 | symbols and consider them nonterminals. |
651 `--------------------------------------------------------------*/
654 symbols_check_defined (void)
656 symbols_do (symbol_check_defined_processor
, NULL
);
659 /*------------------------------------------------------------------.
660 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
662 `------------------------------------------------------------------*/
665 symbols_token_translations_init (void)
667 bool num_256_available_p
= true;
670 /* Find the highest user token number, and whether 256, the POSIX
671 preferred user token number for the error token, is used. */
672 max_user_token_number
= 0;
673 for (i
= 0; i
< ntokens
; ++i
)
675 symbol
*this = symbols
[i
];
676 if (this->user_token_number
!= USER_NUMBER_UNDEFINED
)
678 if (this->user_token_number
> max_user_token_number
)
679 max_user_token_number
= this->user_token_number
;
680 if (this->user_token_number
== 256)
681 num_256_available_p
= false;
685 /* If 256 is not used, assign it to error, to follow POSIX. */
686 if (num_256_available_p
687 && errtoken
->user_token_number
== USER_NUMBER_UNDEFINED
)
688 errtoken
->user_token_number
= 256;
690 /* Set the missing user numbers. */
691 if (max_user_token_number
< 256)
692 max_user_token_number
= 256;
694 for (i
= 0; i
< ntokens
; ++i
)
696 symbol
*this = symbols
[i
];
697 if (this->user_token_number
== USER_NUMBER_UNDEFINED
)
698 this->user_token_number
= ++max_user_token_number
;
699 if (this->user_token_number
> max_user_token_number
)
700 max_user_token_number
= this->user_token_number
;
703 token_translations
= xnmalloc (max_user_token_number
+ 1,
704 sizeof *token_translations
);
706 /* Initialize all entries for literal tokens to 2, the internal
707 token number for $undefined, which represents all invalid inputs.
709 for (i
= 0; i
< max_user_token_number
+ 1; i
++)
710 token_translations
[i
] = undeftoken
->number
;
711 symbols_do (symbol_translation_processor
, NULL
);
715 /*----------------------------------------------------------------.
716 | Assign symbol numbers, and write definition of token names into |
717 | FDEFINES. Set up vectors SYMBOL_TABLE, TAGS of symbols. |
718 `----------------------------------------------------------------*/
723 symbols
= xcalloc (nsyms
, sizeof *symbols
);
725 symbols_do (symbol_check_alias_consistency_processor
, NULL
);
726 if (complaint_issued
)
728 symbols_do (symbol_pack_processor
, NULL
);
730 symbols_token_translations_init ();
732 if (startsymbol
->class == unknown_sym
)
733 fatal_at (startsymbol_location
,
734 _("the start symbol %s is undefined"),
736 else if (startsymbol
->class == token_sym
)
737 fatal_at (startsymbol_location
,
738 _("the start symbol %s is a token"),
743 /*-----------------------------------.
744 | Set default %destructor/%printer. |
745 `-----------------------------------*/
748 default_destructor_set (const char *destructor
, location loc
)
750 if (default_destructor
!= NULL
)
752 complain_at (loc
, _("redeclaration for default %%destructor"));
753 complain_at (default_destructor_location
, _("previous declaration"));
755 default_destructor
= destructor
;
756 default_destructor_location
= loc
;
760 default_printer_set (const char *printer
, location loc
)
762 if (default_printer
!= NULL
)
764 complain_at (loc
, _("redeclaration for default %%printer"));
765 complain_at (default_printer_location
, _("previous declaration"));
767 default_printer
= printer
;
768 default_printer_location
= loc
;