]> git.saurik.com Git - bison.git/blob - src/symtab.c
afc0c1c8b52a0657ab0d072448164510bd75a60c
[bison.git] / src / symtab.c
1 /* Symbol table manager for Bison,
2 Copyright (C) 1984, 1989, 2000, 2001, 2002 Free Software Foundation, Inc.
3
4 This file is part of Bison, the GNU Compiler Compiler.
5
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)
9 any later version.
10
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.
15
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. */
20
21
22 #include "system.h"
23 #include "quotearg.h"
24 #include "hash.h"
25 #include "complain.h"
26 #include "symtab.h"
27 #include "gram.h"
28
29 /*------------------------.
30 | Distinguished symbols. |
31 `------------------------*/
32
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;
39
40 /*---------------------------------.
41 | Create a new symbol, named TAG. |
42 `---------------------------------*/
43
44 static symbol_t *
45 symbol_new (const char *tag, location_t location)
46 {
47 symbol_t *res = XMALLOC (symbol_t, 1);
48
49 res->tag = xstrdup (tag);
50 res->location = location;
51
52 res->type_name = NULL;
53 res->destructor = NULL;
54 res->printer = NULL;
55
56 res->number = NUMBER_UNDEFINED;
57 res->prec = 0;
58 res->assoc = right_assoc;
59 res->user_token_number = USER_NUMBER_UNDEFINED;
60
61 res->alias = NULL;
62 res->class = unknown_sym;
63
64 nsyms++;
65 return res;
66 }
67
68
69 /*------------------------------------------------------------------.
70 | Set the TYPE_NAME associated to SYMBOL. Does nothing if passed 0 |
71 | as TYPE_NAME. |
72 `------------------------------------------------------------------*/
73
74 void
75 symbol_type_set (symbol_t *symbol, char *type_name, location_t location)
76 {
77 if (type_name)
78 {
79 if (symbol->type_name)
80 complain_at (location,
81 _("type redeclaration for %s"), symbol->tag);
82 symbol->type_name = type_name;
83 }
84 }
85
86
87 /*-------------------------------------------------------------------.
88 | Set the DESTRUCTOR associated to SYMBOL. Do nothing if passed 0. |
89 `-------------------------------------------------------------------*/
90
91 void
92 symbol_destructor_set (symbol_t *symbol, char *destructor, location_t location)
93 {
94 if (destructor)
95 {
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;
102 }
103 }
104
105
106 /*----------------------------------------------------------------.
107 | Set the PRITNER associated to SYMBOL. Do nothing if passed 0. |
108 `----------------------------------------------------------------*/
109
110 void
111 symbol_printer_set (symbol_t *symbol, char *printer, location_t location)
112 {
113 if (printer)
114 {
115 if (symbol->printer)
116 complain_at (location,
117 _("%s redeclaration for %s"),
118 "%printer", symbol->tag);
119 symbol->printer = printer;
120 symbol->printer_location = location;
121 }
122 }
123
124
125 /*------------------------------------------------------------------.
126 | Set the PRECEDENCE associated to SYMBOL. Does nothing if invoked |
127 | with UNDEF_ASSOC as ASSOC. |
128 `------------------------------------------------------------------*/
129
130 void
131 symbol_precedence_set (symbol_t *symbol,
132 int prec, associativity assoc, location_t location)
133 {
134 if (assoc != undef_assoc)
135 {
136 if (symbol->prec != 0)
137 complain_at (location,
138 _("redefining precedence of %s"),
139 symbol->tag);
140 symbol->prec = prec;
141 symbol->assoc = assoc;
142 }
143
144 /* Only terminals have a precedence. */
145 symbol_class_set (symbol, token_sym, location);
146 }
147
148
149 /*-------------------------------------.
150 | Set the CLASS associated to SYMBOL. |
151 `-------------------------------------*/
152
153 void
154 symbol_class_set (symbol_t *symbol, symbol_class class, location_t location)
155 {
156 if (symbol->class != unknown_sym && symbol->class != class)
157 complain_at (location, _("symbol %s redefined"), symbol->tag);
158
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++;
163
164 symbol->class = class;
165 }
166
167
168 /*-------------------------------------------------.
169 | Set the USER_TOKEN_NUMBER associated to SYMBOL. |
170 `-------------------------------------------------*/
171
172 void
173 symbol_user_token_number_set (symbol_t *symbol,
174 int user_token_number, location_t location)
175 {
176 assert (symbol->class == token_sym);
177
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"),
181 symbol->tag);
182
183 symbol->user_token_number = user_token_number;
184 /* User defined EOF token? */
185 if (user_token_number == 0)
186 {
187 eoftoken = symbol;
188 eoftoken->number = 0;
189 /* It is always mapped to 0, so it was already counted in
190 NTOKENS. */
191 --ntokens;
192 }
193 }
194
195
196 /*------------.
197 | Free THIS. |
198 `------------*/
199
200 static void
201 symbol_free (symbol_t *this)
202 {
203 #if 0
204 /* This causes crashes because one string can appear more
205 than once. */
206 XFREE (this->type_name);
207 #endif
208 XFREE (this->tag);
209 XFREE (this);
210 }
211
212
213 /*-----------------------------------------------------------.
214 | If THIS is not defined, report an error, and consider it a |
215 | nonterminal. |
216 `-----------------------------------------------------------*/
217
218 static bool
219 symbol_check_defined (symbol_t *this)
220 {
221 if (this->class == unknown_sym)
222 {
223 complain_at
224 (this->location,
225 _("symbol %s is used, but is not defined as a token and has no rules"),
226 this->tag);
227 this->class = nterm_sym;
228 this->number = nvars++;
229 }
230
231 return TRUE;
232 }
233
234
235 /*-------------------------------------------------------------------.
236 | Declare the new SYMBOL. Make it an alias of SYMVAL, and type them |
237 | with TYPENAME. |
238 `-------------------------------------------------------------------*/
239
240 void
241 symbol_make_alias (symbol_t *symbol, symbol_t *symval, location_t loc)
242 {
243 if (symval->alias)
244 warn_at (loc, _("symbol `%s' used more than once as a literal string"),
245 symval->tag);
246 else if (symbol->alias)
247 warn_at (loc, _("symbol `%s' given more than one literal string"),
248 symbol->tag);
249 else
250 {
251 symval->class = token_sym;
252 symval->user_token_number = symbol->user_token_number;
253 symbol->user_token_number = USER_NUMBER_ALIAS;
254 symval->alias = symbol;
255 symbol->alias = symval;
256 /* symbol and symval combined are only one symbol */
257 nsyms--;
258 ntokens--;
259 assert (ntokens == symbol->number || ntokens == symval->number);
260 symbol->number = symval->number =
261 (symval->number < symbol->number) ? symval->number : symbol->number;
262 }
263 }
264
265
266 /*---------------------------------------------------------.
267 | Check that THIS, and its alias, have same precedence and |
268 | associativity. |
269 `---------------------------------------------------------*/
270
271 static bool
272 symbol_check_alias_consistence (symbol_t *this)
273 {
274 /* Check only those who _are_ the aliases. */
275 if (this->alias && this->user_token_number == USER_NUMBER_ALIAS)
276 {
277 if (this->prec != this->alias->prec)
278 {
279 if (this->prec != 0 && this->alias->prec != 0)
280 complain_at (this->alias->location,
281 _("conflicting precedences for %s and %s"),
282 this->tag, this->alias->tag);
283 if (this->prec != 0)
284 this->alias->prec = this->prec;
285 else
286 this->prec = this->alias->prec;
287 }
288
289 if (this->assoc != this->alias->assoc)
290 {
291 /* FIXME: For some reason (probably the S/R => keep the S),
292 the right assoc is chosen has the ``not set''. This is
293 not nice, fix this! */
294 if (this->assoc != right_assoc
295 && this->alias->assoc != right_assoc)
296 complain_at (this->alias->location,
297 _("conflicting associativities for %s and %s"),
298 this->tag, this->alias->tag);
299 if (this->assoc != 0)
300 this->alias->assoc = this->assoc;
301 else
302 this->assoc = this->alias->assoc;
303 }
304 }
305 return TRUE;
306 }
307
308
309 /*-------------------------------------------------------------------.
310 | Assign a symbol number, and write the definition of the token name |
311 | into FDEFINES. Put in SYMBOLS. |
312 `-------------------------------------------------------------------*/
313
314 static bool
315 symbol_pack (symbol_t *this)
316 {
317 if (this->class == nterm_sym)
318 {
319 this->number += ntokens;
320 }
321 else if (this->alias)
322 {
323 /* This symbol and its alias are a single token defn.
324 Allocate a tokno, and assign to both check agreement of
325 prec and assoc fields and make both the same */
326 if (this->number == NUMBER_UNDEFINED)
327 {
328 if (this == eoftoken || this->alias == eoftoken)
329 this->number = this->alias->number = 0;
330 else
331 {
332 assert (this->alias->number != NUMBER_UNDEFINED);
333 this->number = this->alias->number;
334 }
335 }
336 /* Do not do processing below for USER_NUMBER_ALIASs. */
337 if (this->user_token_number == USER_NUMBER_ALIAS)
338 return TRUE;
339 }
340 else /* this->class == token_sym */
341 {
342 assert (this->number != NUMBER_UNDEFINED);
343 }
344
345 symbols[this->number] = this;
346 return TRUE;
347 }
348
349
350
351
352 /*--------------------------------------------------.
353 | Put THIS in TOKEN_TRANSLATIONS if it is a token. |
354 `--------------------------------------------------*/
355
356 static bool
357 symbol_translation (symbol_t *this)
358 {
359 /* Non-terminal? */
360 if (this->class == token_sym
361 && this->user_token_number != USER_NUMBER_ALIAS)
362 {
363 /* A token which translation has already been set? */
364 if (token_translations[this->user_token_number] != undeftoken->number)
365 complain_at (this->location,
366 _("tokens %s and %s both assigned number %d"),
367 symbols[token_translations[this->user_token_number]]->tag,
368 this->tag, this->user_token_number);
369
370 token_translations[this->user_token_number] = this->number;
371 }
372
373 return TRUE;
374 }
375
376
377 /*----------------------.
378 | A symbol hash table. |
379 `----------------------*/
380
381 /* Initial capacity of symbols hash table. */
382 #define HT_INITIAL_CAPACITY 257
383
384 static struct hash_table *symbol_table = NULL;
385
386 static bool
387 hash_compare_symbol_t (const symbol_t *m1, const symbol_t *m2)
388 {
389 return strcmp (m1->tag, m2->tag) ? FALSE : TRUE;
390 }
391
392 static unsigned int
393 hash_symbol_t (const symbol_t *m, unsigned int tablesize)
394 {
395 return hash_string (m->tag, tablesize);
396 }
397
398
399 /*-------------------------------.
400 | Create the symbol hash table. |
401 `-------------------------------*/
402
403 void
404 symbols_new (void)
405 {
406 symbol_table = hash_initialize (HT_INITIAL_CAPACITY,
407 NULL,
408 (Hash_hasher) hash_symbol_t,
409 (Hash_comparator) hash_compare_symbol_t,
410 (Hash_data_freer) symbol_free);
411 }
412
413
414 /*----------------------------------------------------------------.
415 | Find the symbol named KEY, and return it. If it does not exist |
416 | yet, create it. |
417 `----------------------------------------------------------------*/
418
419 symbol_t *
420 symbol_get (const char *key, location_t location)
421 {
422 symbol_t probe;
423 symbol_t *entry;
424
425 /* Keep the symbol in a printable form. */
426 key = quotearg_style (escape_quoting_style, key);
427 (const char *) probe.tag = key;
428 entry = hash_lookup (symbol_table, &probe);
429
430 if (!entry)
431 {
432 /* First insertion in the hash. */
433 entry = symbol_new (key, location);
434 hash_insert (symbol_table, entry);
435 }
436 return entry;
437 }
438
439
440 /*------------------------------------------------------------------.
441 | Generate a dummy nonterminal, whose name cannot conflict with the |
442 | user's names. |
443 `------------------------------------------------------------------*/
444
445 symbol_t *
446 dummy_symbol_get (location_t location)
447 {
448 /* Incremented for each generated symbol. */
449 static int dummy_count = 0;
450 static char buf[256];
451
452 symbol_t *sym;
453
454 sprintf (buf, "@%d", ++dummy_count);
455 sym = symbol_get (buf, location);
456 sym->class = nterm_sym;
457 sym->number = nvars++;
458 return sym;
459 }
460
461
462 /*-------------------.
463 | Free the symbols. |
464 `-------------------*/
465
466 void
467 symbols_free (void)
468 {
469 hash_free (symbol_table);
470 free (symbols);
471 }
472
473
474 /*---------------------------------------------------------------.
475 | Look for undefined symbols, report an error, and consider them |
476 | terminals. |
477 `---------------------------------------------------------------*/
478
479 void
480 symbols_do (symbol_processor processor, void *processor_data)
481 {
482 hash_do_for_each (symbol_table,
483 (Hash_processor) processor,
484 processor_data);
485 }
486
487
488 /*--------------------------------------------------------------.
489 | Check that all the symbols are defined. Report any undefined |
490 | symbols and consider them nonterminals. |
491 `--------------------------------------------------------------*/
492
493 void
494 symbols_check_defined (void)
495 {
496 symbols_do (symbol_check_defined, NULL);
497 }
498
499 /*------------------------------------------------------------------.
500 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
501 | number. |
502 `------------------------------------------------------------------*/
503
504 static void
505 symbols_token_translations_init (void)
506 {
507 int num_256_available_p = TRUE;
508 int i;
509
510 /* Find the highest user token number, and whether 256, the POSIX
511 preferred user token number for the error token, is used. */
512 max_user_token_number = 0;
513 for (i = 0; i < ntokens; ++i)
514 {
515 symbol_t *this = symbols[i];
516 if (this->user_token_number != USER_NUMBER_UNDEFINED)
517 {
518 if (this->user_token_number > max_user_token_number)
519 max_user_token_number = this->user_token_number;
520 if (this->user_token_number == 256)
521 num_256_available_p = FALSE;
522 }
523 }
524
525 /* If 256 is not used, assign it to error, to follow POSIX. */
526 if (num_256_available_p
527 && errtoken->user_token_number == USER_NUMBER_UNDEFINED)
528 errtoken->user_token_number = 256;
529
530 /* Set the missing user numbers. */
531 if (max_user_token_number < 256)
532 max_user_token_number = 256;
533
534 for (i = 0; i < ntokens; ++i)
535 {
536 symbol_t *this = symbols[i];
537 if (this->user_token_number == USER_NUMBER_UNDEFINED)
538 this->user_token_number = ++max_user_token_number;
539 if (this->user_token_number > max_user_token_number)
540 max_user_token_number = this->user_token_number;
541 }
542
543 token_translations = XCALLOC (symbol_number_t, max_user_token_number + 1);
544
545 /* Initialize all entries for literal tokens to 2, the internal
546 token number for $undefined., which represents all invalid
547 inputs. */
548 for (i = 0; i < max_user_token_number + 1; i++)
549 token_translations[i] = undeftoken->number;
550 symbols_do (symbol_translation, NULL);
551 }
552
553
554 /*----------------------------------------------------------------.
555 | Assign symbol numbers, and write definition of token names into |
556 | FDEFINES. Set up vectors SYMBOL_TABLE, TAGS of symbols. |
557 `----------------------------------------------------------------*/
558
559 void
560 symbols_pack (void)
561 {
562 symbols = XCALLOC (symbol_t *, nsyms);
563
564 symbols_do (symbol_check_alias_consistence, NULL);
565 symbols_do (symbol_pack, NULL);
566
567 symbols_token_translations_init ();
568
569 if (startsymbol->class == unknown_sym)
570 fatal_at (startsymbol_location,
571 _("the start symbol %s is undefined"),
572 startsymbol->tag);
573 else if (startsymbol->class == token_sym)
574 fatal_at (startsymbol_location,
575 _("the start symbol %s is a token"),
576 startsymbol->tag);
577 }