mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-10 04:43:03 +00:00
* src/gram.h (token_number_as_item_number) (item_number_as_token_number): New. * src/output.c (GENERATE_OUTPUT_TABLE): New. Use it to create output_item_number_table and output_token_number_table. * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c, * src/lex.c, src/nullable.c, src/output.c, src/print.c, * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h, * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
153 lines
3.5 KiB
C
153 lines
3.5 KiB
C
/* Symbol table manager for Bison,
|
|
Copyright (C) 1984, 1989, 2000, 2001, 2002 Free Software Foundation, Inc.
|
|
|
|
This file is part of Bison, the GNU Compiler Compiler.
|
|
|
|
Bison is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
Bison is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Bison; see the file COPYING. If not, write to
|
|
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
#include "system.h"
|
|
#include "hash.h"
|
|
#include "symtab.h"
|
|
#include "gram.h"
|
|
|
|
/*---------------------------------.
|
|
| Create a new symbol, named TAG. |
|
|
`---------------------------------*/
|
|
|
|
static symbol_t *
|
|
symbol_new (const char *tag)
|
|
{
|
|
symbol_t *res = XMALLOC (symbol_t, 1);
|
|
|
|
res->tag = xstrdup (tag);
|
|
res->type_name = NULL;
|
|
res->number = NUMBER_UNDEFINED;
|
|
res->prec = 0;
|
|
res->assoc = right_assoc;
|
|
res->user_token_number = SUNDEF;
|
|
res->alias = NULL;
|
|
res->class = unknown_sym;
|
|
|
|
nsyms++;
|
|
|
|
return res;
|
|
}
|
|
|
|
|
|
/*------------.
|
|
| Free THIS. |
|
|
`------------*/
|
|
|
|
static void
|
|
symbol_free (symbol_t *this)
|
|
{
|
|
#if 0
|
|
/* This causes crashes because one string can appear more
|
|
than once. */
|
|
XFREE (this->type_name);
|
|
#endif
|
|
XFREE (this->tag);
|
|
XFREE (this);
|
|
}
|
|
|
|
|
|
|
|
/*----------------------.
|
|
| A symbol_t hash table. |
|
|
`----------------------*/
|
|
|
|
/* Initial capacity of symbols hash table. */
|
|
#define HT_INITIAL_CAPACITY 257
|
|
|
|
static struct hash_table *symbol_table = NULL;
|
|
|
|
static bool
|
|
hash_compare_symbol_t (const symbol_t *m1, const symbol_t *m2)
|
|
{
|
|
return strcmp (m1->tag, m2->tag) ? FALSE : TRUE;
|
|
}
|
|
|
|
static unsigned int
|
|
hash_symbol_t (const symbol_t *m, unsigned int tablesize)
|
|
{
|
|
return hash_string (m->tag, tablesize);
|
|
}
|
|
|
|
|
|
/*-------------------------------.
|
|
| Create the symbol_t hash table. |
|
|
`-------------------------------*/
|
|
|
|
void
|
|
symbols_new (void)
|
|
{
|
|
symbol_table = hash_initialize (HT_INITIAL_CAPACITY,
|
|
NULL,
|
|
(Hash_hasher) hash_symbol_t,
|
|
(Hash_comparator) hash_compare_symbol_t,
|
|
(Hash_data_freer) symbol_free);
|
|
}
|
|
|
|
|
|
/*----------------------------------------------------------------.
|
|
| Find the symbol named KEY, and return it. If it does not exist |
|
|
| yet, create it. |
|
|
`----------------------------------------------------------------*/
|
|
|
|
symbol_t *
|
|
getsym (const char *key)
|
|
{
|
|
symbol_t probe;
|
|
symbol_t *entry;
|
|
|
|
(const char *) probe.tag = key;
|
|
entry = hash_lookup (symbol_table, &probe);
|
|
|
|
if (!entry)
|
|
{
|
|
/* First insertion in the hash. */
|
|
entry = symbol_new (key);
|
|
hash_insert (symbol_table, entry);
|
|
}
|
|
return entry;
|
|
}
|
|
|
|
|
|
/*-------------------.
|
|
| Free the symbols. |
|
|
`-------------------*/
|
|
|
|
void
|
|
symbols_free (void)
|
|
{
|
|
hash_free (symbol_table);
|
|
}
|
|
|
|
|
|
/*---------------------------------------------------------------.
|
|
| Look for undefined symbols, report an error, and consider them |
|
|
| terminals. |
|
|
`---------------------------------------------------------------*/
|
|
|
|
void
|
|
symbols_do (symbol_processor processor, void *processor_data)
|
|
{
|
|
hash_do_for_each (symbol_table,
|
|
(Hash_processor) processor,
|
|
processor_data);
|
|
}
|