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. */
29 /*------------------------.
30 | Distinguished symbols. |
31 `------------------------*/
33 symbol_t
*errtoken
= NULL
;
34 symbol_t
*undeftoken
= NULL
;
35 symbol_t
*endtoken
= NULL
;
36 symbol_t
*accept
= NULL
;
37 symbol_t
*startsymbol
= NULL
;
38 location_t startsymbol_location
;
40 /*---------------------------------.
41 | Create a new symbol, named TAG. |
42 `---------------------------------*/
45 symbol_new (const char *tag
, location_t location
)
47 symbol_t
*res
= XMALLOC (symbol_t
, 1);
49 res
->tag
= xstrdup (tag
);
50 res
->location
= location
;
52 res
->type_name
= NULL
;
53 res
->destructor
= NULL
;
56 res
->number
= NUMBER_UNDEFINED
;
58 res
->assoc
= undef_assoc
;
59 res
->user_token_number
= USER_NUMBER_UNDEFINED
;
62 res
->class = unknown_sym
;
69 /*------------------------------------------------------------------.
70 | Set the TYPE_NAME associated to SYMBOL. Does nothing if passed 0 |
72 `------------------------------------------------------------------*/
75 symbol_type_set (symbol_t
*symbol
, char *type_name
, location_t location
)
79 if (symbol
->type_name
)
80 complain_at (location
,
81 _("type redeclaration for %s"), symbol
->tag
);
82 symbol
->type_name
= type_name
;
87 /*-------------------------------------------------------------------.
88 | Set the DESTRUCTOR associated to SYMBOL. Do nothing if passed 0. |
89 `-------------------------------------------------------------------*/
92 symbol_destructor_set (symbol_t
*symbol
, char *destructor
, location_t location
)
96 if (symbol
->destructor
)
97 complain_at (location
,
98 _("%s redeclaration for %s"),
99 "%destructor", symbol
->tag
);
100 symbol
->destructor
= destructor
;
101 symbol
->destructor_location
= location
;
106 /*----------------------------------------------------------------.
107 | Set the PRINTER associated to SYMBOL. Do nothing if passed 0. |
108 `----------------------------------------------------------------*/
111 symbol_printer_set (symbol_t
*symbol
, char *printer
, location_t location
)
116 complain_at (location
,
117 _("%s redeclaration for %s"),
118 "%printer", symbol
->tag
);
119 symbol
->printer
= printer
;
120 symbol
->printer_location
= location
;
125 /*------------------------------------------------------------------.
126 | Set the PRECEDENCE associated to SYMBOL. Does nothing if invoked |
127 | with UNDEF_ASSOC as ASSOC. |
128 `------------------------------------------------------------------*/
131 symbol_precedence_set (symbol_t
*symbol
,
132 int prec
, assoc_t assoc
, location_t location
)
134 if (assoc
!= undef_assoc
)
136 if (symbol
->prec
!= 0)
137 complain_at (location
,
138 _("redefining precedence of %s"),
141 symbol
->assoc
= assoc
;
144 /* Only terminals have a precedence. */
145 symbol_class_set (symbol
, token_sym
, location
);
149 /*-------------------------------------.
150 | Set the CLASS associated to SYMBOL. |
151 `-------------------------------------*/
154 symbol_class_set (symbol_t
*symbol
, symbol_class
class, location_t location
)
156 if (symbol
->class != unknown_sym
&& symbol
->class != class)
157 complain_at (location
, _("symbol %s redefined"), symbol
->tag
);
159 if (class == nterm_sym
&& symbol
->class != nterm_sym
)
160 symbol
->number
= nvars
++;
161 else if (class == token_sym
&& symbol
->number
== NUMBER_UNDEFINED
)
162 symbol
->number
= ntokens
++;
164 symbol
->class = class;
168 /*-------------------------------------------------.
169 | Set the USER_TOKEN_NUMBER associated to SYMBOL. |
170 `-------------------------------------------------*/
173 symbol_user_token_number_set (symbol_t
*symbol
,
174 int user_token_number
, location_t location
)
176 assert (symbol
->class == token_sym
);
178 if (symbol
->user_token_number
!= USER_NUMBER_UNDEFINED
179 && symbol
->user_token_number
!= user_token_number
)
180 complain_at (location
, _("redefining user token number of %s"),
183 symbol
->user_token_number
= user_token_number
;
184 /* User defined $end token? */
185 if (user_token_number
== 0)
188 endtoken
->number
= 0;
189 /* It is always mapped to 0, so it was already counted in
201 symbol_free (symbol_t
*this)
208 /*-----------------------------------------------------------.
209 | If THIS is not defined, report an error, and consider it a |
211 `-----------------------------------------------------------*/
214 symbol_check_defined (symbol_t
*this)
216 if (this->class == unknown_sym
)
220 _("symbol %s is used, but is not defined as a token and has no rules"),
222 this->class = nterm_sym
;
223 this->number
= nvars
++;
230 /*-------------------------------------------------------------------.
231 | Declare the new SYMBOL. Make it an alias of SYMVAL, and type them |
233 `-------------------------------------------------------------------*/
236 symbol_make_alias (symbol_t
*symbol
, symbol_t
*symval
, location_t loc
)
239 warn_at (loc
, _("symbol `%s' used more than once as a literal string"),
241 else if (symbol
->alias
)
242 warn_at (loc
, _("symbol `%s' given more than one literal string"),
246 symval
->class = token_sym
;
247 symval
->user_token_number
= symbol
->user_token_number
;
248 symbol
->user_token_number
= USER_NUMBER_ALIAS
;
249 symval
->alias
= symbol
;
250 symbol
->alias
= symval
;
251 /* symbol and symval combined are only one symbol */
254 assert (ntokens
== symbol
->number
|| ntokens
== symval
->number
);
255 symbol
->number
= symval
->number
=
256 (symval
->number
< symbol
->number
) ? symval
->number
: symbol
->number
;
261 /*---------------------------------------------------------.
262 | Check that THIS, and its alias, have same precedence and |
264 `---------------------------------------------------------*/
267 symbol_check_alias_consistence (symbol_t
*this)
269 /* Check only those who _are_ the aliases. */
270 if (this->alias
&& this->user_token_number
== USER_NUMBER_ALIAS
)
272 if (this->prec
!= this->alias
->prec
)
274 if (this->prec
!= 0 && this->alias
->prec
!= 0)
275 complain_at (this->alias
->location
,
276 _("conflicting precedences for %s and %s"),
277 this->tag
, this->alias
->tag
);
279 this->alias
->prec
= this->prec
;
281 this->prec
= this->alias
->prec
;
284 if (this->assoc
!= this->alias
->assoc
)
286 if (this->assoc
!= undef_assoc
&& this->alias
->assoc
!= undef_assoc
)
287 complain_at (this->alias
->location
,
288 _("conflicting associativities for %s (%s) and %s (%s)"),
289 this->tag
, assoc_to_string (this->assoc
),
290 this->alias
->tag
, assoc_to_string (this->alias
->assoc
));
291 if (this->assoc
!= undef_assoc
)
292 this->alias
->assoc
= this->assoc
;
294 this->assoc
= this->alias
->assoc
;
301 /*-------------------------------------------------------------------.
302 | Assign a symbol number, and write the definition of the token name |
303 | into FDEFINES. Put in SYMBOLS. |
304 `-------------------------------------------------------------------*/
307 symbol_pack (symbol_t
*this)
309 if (this->class == nterm_sym
)
311 this->number
+= ntokens
;
313 else if (this->alias
)
315 /* This symbol and its alias are a single token defn.
316 Allocate a tokno, and assign to both check agreement of
317 prec and assoc fields and make both the same */
318 if (this->number
== NUMBER_UNDEFINED
)
320 if (this == endtoken
|| this->alias
== endtoken
)
321 this->number
= this->alias
->number
= 0;
324 assert (this->alias
->number
!= NUMBER_UNDEFINED
);
325 this->number
= this->alias
->number
;
328 /* Do not do processing below for USER_NUMBER_ALIASes. */
329 if (this->user_token_number
== USER_NUMBER_ALIAS
)
332 else /* this->class == token_sym */
334 assert (this->number
!= NUMBER_UNDEFINED
);
337 symbols
[this->number
] = this;
344 /*--------------------------------------------------.
345 | Put THIS in TOKEN_TRANSLATIONS if it is a token. |
346 `--------------------------------------------------*/
349 symbol_translation (symbol_t
*this)
352 if (this->class == token_sym
353 && this->user_token_number
!= USER_NUMBER_ALIAS
)
355 /* A token which translation has already been set? */
356 if (token_translations
[this->user_token_number
] != undeftoken
->number
)
357 complain_at (this->location
,
358 _("tokens %s and %s both assigned number %d"),
359 symbols
[token_translations
[this->user_token_number
]]->tag
,
360 this->tag
, this->user_token_number
);
362 token_translations
[this->user_token_number
] = this->number
;
369 /*----------------------.
370 | A symbol hash table. |
371 `----------------------*/
373 /* Initial capacity of symbols hash table. */
374 #define HT_INITIAL_CAPACITY 257
376 static struct hash_table
*symbol_table
= NULL
;
379 hash_compare_symbol_t (const symbol_t
*m1
, const symbol_t
*m2
)
381 return strcmp (m1
->tag
, m2
->tag
) == 0;
385 hash_symbol_t (const symbol_t
*m
, unsigned int tablesize
)
387 return hash_string (m
->tag
, tablesize
);
391 /*-------------------------------.
392 | Create the symbol hash table. |
393 `-------------------------------*/
398 symbol_table
= hash_initialize (HT_INITIAL_CAPACITY
,
400 (Hash_hasher
) hash_symbol_t
,
401 (Hash_comparator
) hash_compare_symbol_t
,
402 (Hash_data_freer
) symbol_free
);
406 /*----------------------------------------------------------------.
407 | Find the symbol named KEY, and return it. If it does not exist |
409 `----------------------------------------------------------------*/
412 symbol_get (const char *key
, location_t location
)
417 /* Keep the symbol in a printable form. */
418 key
= quotearg_style (escape_quoting_style
, key
);
419 *(char const **) &probe
.tag
= key
;
420 entry
= hash_lookup (symbol_table
, &probe
);
424 /* First insertion in the hash. */
425 entry
= symbol_new (key
, location
);
426 hash_insert (symbol_table
, entry
);
432 /*------------------------------------------------------------------.
433 | Generate a dummy nonterminal, whose name cannot conflict with the |
435 `------------------------------------------------------------------*/
438 dummy_symbol_get (location_t location
)
440 /* Incremented for each generated symbol. */
441 static int dummy_count
= 0;
442 static char buf
[256];
446 sprintf (buf
, "@%d", ++dummy_count
);
447 sym
= symbol_get (buf
, location
);
448 sym
->class = nterm_sym
;
449 sym
->number
= nvars
++;
454 /*-------------------.
455 | Free the symbols. |
456 `-------------------*/
461 hash_free (symbol_table
);
466 /*---------------------------------------------------------------.
467 | Look for undefined symbols, report an error, and consider them |
469 `---------------------------------------------------------------*/
472 symbols_do (symbol_processor processor
, void *processor_data
)
474 hash_do_for_each (symbol_table
,
475 (Hash_processor
) processor
,
480 /*--------------------------------------------------------------.
481 | Check that all the symbols are defined. Report any undefined |
482 | symbols and consider them nonterminals. |
483 `--------------------------------------------------------------*/
486 symbols_check_defined (void)
488 symbols_do (symbol_check_defined
, NULL
);
491 /*------------------------------------------------------------------.
492 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
494 `------------------------------------------------------------------*/
497 symbols_token_translations_init (void)
499 bool num_256_available_p
= true;
502 /* Find the highest user token number, and whether 256, the POSIX
503 preferred user token number for the error token, is used. */
504 max_user_token_number
= 0;
505 for (i
= 0; i
< ntokens
; ++i
)
507 symbol_t
*this = symbols
[i
];
508 if (this->user_token_number
!= USER_NUMBER_UNDEFINED
)
510 if (this->user_token_number
> max_user_token_number
)
511 max_user_token_number
= this->user_token_number
;
512 if (this->user_token_number
== 256)
513 num_256_available_p
= false;
517 /* If 256 is not used, assign it to error, to follow POSIX. */
518 if (num_256_available_p
519 && errtoken
->user_token_number
== USER_NUMBER_UNDEFINED
)
520 errtoken
->user_token_number
= 256;
522 /* Set the missing user numbers. */
523 if (max_user_token_number
< 256)
524 max_user_token_number
= 256;
526 for (i
= 0; i
< ntokens
; ++i
)
528 symbol_t
*this = symbols
[i
];
529 if (this->user_token_number
== USER_NUMBER_UNDEFINED
)
530 this->user_token_number
= ++max_user_token_number
;
531 if (this->user_token_number
> max_user_token_number
)
532 max_user_token_number
= this->user_token_number
;
535 token_translations
= XCALLOC (symbol_number_t
, max_user_token_number
+ 1);
537 /* Initialize all entries for literal tokens to 2, the internal
538 token number for $undefined, which represents all invalid inputs.
540 for (i
= 0; i
< max_user_token_number
+ 1; i
++)
541 token_translations
[i
] = undeftoken
->number
;
542 symbols_do (symbol_translation
, NULL
);
546 /*----------------------------------------------------------------.
547 | Assign symbol numbers, and write definition of token names into |
548 | FDEFINES. Set up vectors SYMBOL_TABLE, TAGS of symbols. |
549 `----------------------------------------------------------------*/
554 symbols
= XCALLOC (symbol_t
*, nsyms
);
556 symbols_do (symbol_check_alias_consistence
, NULL
);
557 symbols_do (symbol_pack
, NULL
);
559 symbols_token_translations_init ();
561 if (startsymbol
->class == unknown_sym
)
562 fatal_at (startsymbol_location
,
563 _("the start symbol %s is undefined"),
565 else if (startsymbol
->class == token_sym
)
566 fatal_at (startsymbol_location
,
567 _("the start symbol %s is a token"),