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
*eoftoken
= NULL
;
36 symbol_t
*axiom
= 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
;
55 res
->number
= NUMBER_UNDEFINED
;
57 res
->assoc
= right_assoc
;
58 res
->user_token_number
= USER_NUMBER_UNDEFINED
;
60 res
->class = unknown_sym
;
67 /*-----------------------------------------------------------------.
68 | Return the tag of this SYMBOL in a printable form. Warning: use |
69 | the first QUOTEARG slot: 0. |
70 `-----------------------------------------------------------------*/
73 symbol_tag_get (symbol_t
*symbol
)
75 return quotearg_style (escape_quoting_style
, symbol
->tag
);
79 /*------------------------------------------------------------.
80 | Return the tag of this SYMBOL in a printable form. Use the |
81 | QUOTEARG slot number N. |
82 `------------------------------------------------------------*/
85 symbol_tag_get_n (symbol_t
*symbol
, int n
)
87 return quotearg_n_style (n
, escape_quoting_style
, symbol
->tag
);
91 /*-------------------------------.
92 | Print the tag of this SYMBOL. |
93 `-------------------------------*/
96 symbol_tag_print (symbol_t
*symbol
, FILE *out
)
98 fputs (symbol_tag_get (symbol
), out
);
102 /*------------------------------------------------------------------.
103 | Set the TYPE_NAME associated to SYMBOL. Does nothing if passed 0 |
105 `------------------------------------------------------------------*/
108 symbol_type_set (symbol_t
*symbol
, char *type_name
, location_t location
)
112 if (symbol
->type_name
)
113 complain_at (location
,
114 _("type redeclaration for %s"), symbol_tag_get (symbol
));
115 symbol
->type_name
= type_name
;
120 /*-------------------------------------------------------------------.
121 | Set the DESTRUCTOR associated to SYMBOL. Do nothing if passed 0. |
122 `-------------------------------------------------------------------*/
125 symbol_destructor_set (symbol_t
*symbol
, char *destructor
, location_t location
)
129 if (symbol
->destructor
)
130 complain_at (location
,
131 _("%s redeclaration for %s"),
132 "%destructor", symbol_tag_get (symbol
));
133 symbol
->destructor
= destructor
;
134 symbol
->destructor_location
= location
;
139 /*----------------------------------------------------------------.
140 | Set the PRITNER associated to SYMBOL. Do nothing if passed 0. |
141 `----------------------------------------------------------------*/
144 symbol_printer_set (symbol_t
*symbol
, char *printer
, location_t location
)
149 complain_at (location
,
150 _("%s redeclaration for %s"),
151 "%printer", symbol_tag_get (symbol
));
152 symbol
->printer
= printer
;
153 symbol
->printer_location
= location
;
158 /*------------------------------------------------------------------.
159 | Set the PRECEDENCE associated to SYMBOL. Does nothing if invoked |
160 | with UNDEF_ASSOC as ASSOC. |
161 `------------------------------------------------------------------*/
164 symbol_precedence_set (symbol_t
*symbol
,
165 int prec
, associativity assoc
, location_t location
)
167 if (assoc
!= undef_assoc
)
169 if (symbol
->prec
!= 0)
170 complain_at (location
,
171 _("redefining precedence of %s"),
172 symbol_tag_get (symbol
));
174 symbol
->assoc
= assoc
;
177 /* Only terminals have a precedence. */
178 symbol_class_set (symbol
, token_sym
, location
);
182 /*-------------------------------------.
183 | Set the CLASS associated to SYMBOL. |
184 `-------------------------------------*/
187 symbol_class_set (symbol_t
*symbol
, symbol_class
class, location_t location
)
189 if (symbol
->class != unknown_sym
&& symbol
->class != class)
190 complain_at (location
, _("symbol %s redefined"), symbol_tag_get (symbol
));
192 if (class == nterm_sym
&& symbol
->class != nterm_sym
)
193 symbol
->number
= nvars
++;
194 else if (class == token_sym
&& symbol
->number
== NUMBER_UNDEFINED
)
195 symbol
->number
= ntokens
++;
197 symbol
->class = class;
201 /*-------------------------------------------------.
202 | Set the USER_TOKEN_NUMBER associated to SYMBOL. |
203 `-------------------------------------------------*/
206 symbol_user_token_number_set (symbol_t
*symbol
,
207 int user_token_number
, location_t location
)
209 assert (symbol
->class == token_sym
);
211 if (symbol
->user_token_number
!= USER_NUMBER_UNDEFINED
212 && symbol
->user_token_number
!= user_token_number
)
213 complain_at (location
, _("redefining user token number of %s"),
214 symbol_tag_get (symbol
));
216 symbol
->user_token_number
= user_token_number
;
217 /* User defined EOF token? */
218 if (user_token_number
== 0)
221 eoftoken
->number
= 0;
222 /* It is always mapped to 0, so it was already counted in
234 symbol_free (symbol_t
*this)
237 /* This causes crashes because one string can appear more
239 XFREE (this->type_name
);
246 /*-----------------------------------------------------------.
247 | If THIS is not defined, report an error, and consider it a |
249 `-----------------------------------------------------------*/
252 symbol_check_defined (symbol_t
*this)
254 if (this->class == unknown_sym
)
258 _("symbol %s is used, but is not defined as a token and has no rules"),
259 symbol_tag_get (this));
260 this->class = nterm_sym
;
261 this->number
= nvars
++;
268 /*-------------------------------------------------------------------.
269 | Declare the new SYMBOL. Make it an alias of SYMVAL, and type them |
271 `-------------------------------------------------------------------*/
274 symbol_make_alias (symbol_t
*symbol
, symbol_t
*symval
)
277 warn (_("symbol `%s' used more than once as a literal string"),
278 symbol_tag_get (symval
));
279 else if (symbol
->alias
)
280 warn (_("symbol `%s' given more than one literal string"),
281 symbol_tag_get (symbol
));
284 symval
->class = token_sym
;
285 symval
->user_token_number
= symbol
->user_token_number
;
286 symbol
->user_token_number
= USER_NUMBER_ALIAS
;
287 symval
->alias
= symbol
;
288 symbol
->alias
= symval
;
289 /* symbol and symval combined are only one symbol */
292 assert (ntokens
== symbol
->number
|| ntokens
== symval
->number
);
293 symbol
->number
= symval
->number
=
294 (symval
->number
< symbol
->number
) ? symval
->number
: symbol
->number
;
299 /*---------------------------------------------------------.
300 | Check that THIS, and its alias, have same precedence and |
302 `---------------------------------------------------------*/
305 symbol_check_alias_consistence (symbol_t
*this)
307 /* Check only those who _are_ the aliases. */
308 if (this->alias
&& this->user_token_number
== USER_NUMBER_ALIAS
)
310 if (this->prec
!= this->alias
->prec
)
312 if (this->prec
!= 0 && this->alias
->prec
!= 0)
313 complain (_("conflicting precedences for %s and %s"),
314 symbol_tag_get (this), symbol_tag_get (this->alias
));
316 this->alias
->prec
= this->prec
;
318 this->prec
= this->alias
->prec
;
321 if (this->assoc
!= this->alias
->assoc
)
323 /* FIXME: For some reason (probably the S/R => keep the S),
324 the right assoc is chosen has the ``not set''. This is
325 not nice, fix this! */
326 if (this->assoc
!= right_assoc
327 && this->alias
->assoc
!= right_assoc
)
328 complain (_("conflicting associativities for %s and %s"),
329 symbol_tag_get (this), symbol_tag_get (this->alias
));
330 if (this->assoc
!= 0)
331 this->alias
->assoc
= this->assoc
;
333 this->assoc
= this->alias
->assoc
;
340 /*-------------------------------------------------------------------.
341 | Assign a symbol number, and write the definition of the token name |
342 | into FDEFINES. Put in SYMBOLS. |
343 `-------------------------------------------------------------------*/
346 symbol_pack (symbol_t
*this)
348 if (this->class == nterm_sym
)
350 this->number
+= ntokens
;
352 else if (this->alias
)
354 /* This symbol and its alias are a single token defn.
355 Allocate a tokno, and assign to both check agreement of
356 prec and assoc fields and make both the same */
357 if (this->number
== NUMBER_UNDEFINED
)
359 if (this == eoftoken
|| this->alias
== eoftoken
)
360 this->number
= this->alias
->number
= 0;
363 assert (this->alias
->number
!= NUMBER_UNDEFINED
);
364 this->number
= this->alias
->number
;
367 /* Do not do processing below for USER_NUMBER_ALIASs. */
368 if (this->user_token_number
== USER_NUMBER_ALIAS
)
371 else /* this->class == token_sym */
373 assert (this->number
!= NUMBER_UNDEFINED
);
376 symbols
[this->number
] = this;
383 /*--------------------------------------------------.
384 | Put THIS in TOKEN_TRANSLATIONS if it is a token. |
385 `--------------------------------------------------*/
388 symbol_translation (symbol_t
*this)
391 if (this->class == token_sym
392 && this->user_token_number
!= USER_NUMBER_ALIAS
)
394 /* A token which translation has already been set? */
395 if (token_translations
[this->user_token_number
] != undeftoken
->number
)
396 complain (_("tokens %s and %s both assigned number %d"),
397 symbol_tag_get (symbols
[token_translations
[this->user_token_number
]]),
398 symbol_tag_get (this), this->user_token_number
);
400 token_translations
[this->user_token_number
] = this->number
;
407 /*----------------------.
408 | A symbol hash table. |
409 `----------------------*/
411 /* Initial capacity of symbols hash table. */
412 #define HT_INITIAL_CAPACITY 257
414 static struct hash_table
*symbol_table
= NULL
;
417 hash_compare_symbol_t (const symbol_t
*m1
, const symbol_t
*m2
)
419 return strcmp (m1
->tag
, m2
->tag
) ? FALSE
: TRUE
;
423 hash_symbol_t (const symbol_t
*m
, unsigned int tablesize
)
425 return hash_string (m
->tag
, tablesize
);
429 /*-------------------------------.
430 | Create the symbol hash table. |
431 `-------------------------------*/
436 symbol_table
= hash_initialize (HT_INITIAL_CAPACITY
,
438 (Hash_hasher
) hash_symbol_t
,
439 (Hash_comparator
) hash_compare_symbol_t
,
440 (Hash_data_freer
) symbol_free
);
444 /*----------------------------------------------------------------.
445 | Find the symbol named KEY, and return it. If it does not exist |
447 `----------------------------------------------------------------*/
450 getsym (const char *key
, location_t location
)
455 (const char *) probe
.tag
= key
;
456 entry
= hash_lookup (symbol_table
, &probe
);
460 /* First insertion in the hash. */
461 entry
= symbol_new (key
, location
);
462 hash_insert (symbol_table
, entry
);
468 /*-------------------.
469 | Free the symbols. |
470 `-------------------*/
475 hash_free (symbol_table
);
479 /*---------------------------------------------------------------.
480 | Look for undefined symbols, report an error, and consider them |
482 `---------------------------------------------------------------*/
485 symbols_do (symbol_processor processor
, void *processor_data
)
487 hash_do_for_each (symbol_table
,
488 (Hash_processor
) processor
,
493 /*--------------------------------------------------------------.
494 | Check that all the symbols are defined. Report any undefined |
495 | symbols and consider them nonterminals. |
496 `--------------------------------------------------------------*/
499 symbols_check_defined (void)
501 symbols_do (symbol_check_defined
, NULL
);
504 /*------------------------------------------------------------------.
505 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
507 `------------------------------------------------------------------*/
510 symbols_token_translations_init (void)
512 int num_256_available_p
= TRUE
;
515 /* Find the highest user token number, and whether 256, the POSIX
516 preferred user token number for the error token, is used. */
517 max_user_token_number
= 0;
518 for (i
= 0; i
< ntokens
; ++i
)
520 symbol_t
*this = symbols
[i
];
521 if (this->user_token_number
!= USER_NUMBER_UNDEFINED
)
523 if (this->user_token_number
> max_user_token_number
)
524 max_user_token_number
= this->user_token_number
;
525 if (this->user_token_number
== 256)
526 num_256_available_p
= FALSE
;
530 /* If 256 is not used, assign it to error, to follow POSIX. */
531 if (num_256_available_p
532 && errtoken
->user_token_number
== USER_NUMBER_UNDEFINED
)
533 errtoken
->user_token_number
= 256;
535 /* Set the missing user numbers. */
536 if (max_user_token_number
< 256)
537 max_user_token_number
= 256;
539 for (i
= 0; i
< ntokens
; ++i
)
541 symbol_t
*this = symbols
[i
];
542 if (this->user_token_number
== USER_NUMBER_UNDEFINED
)
543 this->user_token_number
= ++max_user_token_number
;
544 if (this->user_token_number
> max_user_token_number
)
545 max_user_token_number
= this->user_token_number
;
548 token_translations
= XCALLOC (symbol_number_t
, max_user_token_number
+ 1);
550 /* Initialize all entries for literal tokens to 2, the internal
551 token number for $undefined., which represents all invalid
553 for (i
= 0; i
< max_user_token_number
+ 1; i
++)
554 token_translations
[i
] = undeftoken
->number
;
555 symbols_do (symbol_translation
, NULL
);
559 /*----------------------------------------------------------------.
560 | Assign symbol numbers, and write definition of token names into |
561 | FDEFINES. Set up vectors SYMBOL_TABLE, TAGS of symbols. |
562 `----------------------------------------------------------------*/
567 symbols
= XCALLOC (symbol_t
*, nsyms
);
569 symbols_do (symbol_check_alias_consistence
, NULL
);
570 symbols_do (symbol_pack
, NULL
);
572 symbols_token_translations_init ();
574 if (startsymbol
->class == unknown_sym
)
575 fatal_at (startsymbol_location
,
576 _("the start symbol %s is undefined"),
577 symbol_tag_get (startsymbol
));
578 else if (startsymbol
->class == token_sym
)
579 fatal_at (startsymbol_location
,
580 _("the start symbol %s is a token"),
581 symbol_tag_get (startsymbol
));