+
+
+/*-------------.
+| Free STATE. |
+`-------------*/
+
+static void
+state_free (state_t *state)
+{
+ free (state->transitions);
+ free (state->reductions);
+ free (state->errs);
+ free (state);
+}
+
+
+/*-------------------------------.
+| Set the transitions of STATE. |
+`-------------------------------*/
+
+void
+state_transitions_set (state_t *state, int num, state_t **transitions)
+{
+ assert (!state->transitions);
+ state->transitions = transitions_new (num, transitions);
+}
+
+
+/*------------------------------.
+| Set the reductions of STATE. |
+`------------------------------*/
+
+void
+state_reductions_set (state_t *state, int num, rule_t **reductions)
+{
+ assert (!state->reductions);
+ state->reductions = reductions_new (num, reductions);
+}
+
+
+/*------------------------.
+| Set the errs of STATE. |
+`------------------------*/
+
+void
+state_errs_set (state_t *state, int num, symbol_t **tokens)
+{
+ assert (!state->errs);
+ state->errs = errs_new (num, tokens);
+}
+
+
+
+/*--------------------------------------------------------------.
+| Print on OUT all the lookaheads such that this STATE wants to |
+| reduce this RULE. |
+`--------------------------------------------------------------*/
+
+void
+state_rule_lookaheads_print (state_t *state, rule_t *rule, FILE *out)
+{
+ int j, k;
+ bitset_iterator biter;
+ int nlookaheads = 0;
+ /* Count the number of lookaheads corresponding to this rule. */
+ for (j = 0; j < state->nlookaheads; ++j)
+ BITSET_FOR_EACH (biter, state->lookaheads[j], k, 0)
+ if (state->lookaheads_rule[j]->number == rule->number)
+ nlookaheads++;
+
+ /* Print them if there are. */
+ if (nlookaheads)
+ {
+ fprintf (out, " [");
+ for (j = 0; j < state->nlookaheads; ++j)
+ BITSET_FOR_EACH (biter, state->lookaheads[j], k, 0)
+ if (state->lookaheads_rule[j]->number == rule->number)
+ fprintf (out, "%s%s",
+ symbols[k]->tag,
+ --nlookaheads ? ", " : "");
+ fprintf (out, "]");
+ }
+}
+
+
+/*----------------------.
+| A state hash table. |
+`----------------------*/
+
+/* Initial capacity of states hash table. */
+#define HT_INITIAL_CAPACITY 257
+
+static struct hash_table *state_table = NULL;
+
+/* Two states are equal if they have the same core items. */
+static bool
+state_compare (const state_t *s1, const state_t *s2)
+{
+ int i;
+
+ if (s1->nitems != s2->nitems)
+ return FALSE;
+
+ for (i = 0; i < s1->nitems; ++i)
+ if (s1->items[i] != s2->items[i])
+ return FALSE;
+
+ return TRUE;
+}
+
+static unsigned int
+state_hash (const state_t *state, unsigned int tablesize)
+{
+ /* Add up the state's item numbers to get a hash key. */
+ int key = 0;
+ int i;
+ for (i = 0; i < state->nitems; ++i)
+ key += state->items[i];
+ return key % tablesize;
+}
+
+
+/*-------------------------------.
+| Create the states hash table. |
+`-------------------------------*/
+
+void
+state_hash_new (void)
+{
+ state_table = hash_initialize (HT_INITIAL_CAPACITY,
+ NULL,
+ (Hash_hasher) state_hash,
+ (Hash_comparator) state_compare,
+ (Hash_data_freer) NULL);
+}
+
+
+/*---------------------------------------------.
+| Free the states hash table, not the states. |
+`---------------------------------------------*/
+
+void
+state_hash_free (void)
+{
+ hash_free (state_table);
+}
+
+
+/*---------------------------------------.
+| Insert STATE in the state hash table. |
+`---------------------------------------*/
+
+void
+state_hash_insert (state_t *state)
+{
+ hash_insert (state_table, state);
+}
+
+
+/*------------------------------------------------------------------.
+| Find the state associated to the CORE, and return it. If it does |
+| not exist yet, return NULL. |
+`------------------------------------------------------------------*/
+
+state_t *
+state_hash_lookup (size_t core_size, item_number_t *core)
+{
+ state_t *probe = STATE_ALLOC (core_size);
+ state_t *entry;
+
+ probe->nitems = core_size;
+ memcpy (probe->items, core, core_size * sizeof (core[0]));
+ entry = hash_lookup (state_table, probe);
+ free (probe);
+ return entry;
+}
+
+/* All the decorated states, indexed by the state number. */
+state_t **states = NULL;
+
+
+/*----------------------.
+| Free all the states. |
+`----------------------*/
+
+void
+states_free (void)
+{
+ state_number_t i;
+ for (i = 0; i < nstates; ++i)
+ state_free (states[i]);
+ free (states);
+}