X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/30171f79ab0aaad06b88a66653789691c4ed4f2c..e9f87b5b7df2e328d2e4196d276c0d96594c906b:/src/print_graph.c diff --git a/src/print_graph.c b/src/print_graph.c index 0cdba5a1..f9bec77d 100644 --- a/src/print_graph.c +++ b/src/print_graph.c @@ -21,6 +21,7 @@ #include "system.h" #include "quotearg.h" #include "files.h" +#include "symtab.h" #include "gram.h" #include "LR0.h" #include "lalr.h" @@ -77,15 +78,15 @@ print_core (state_t *state, struct obstack *node_obstack) if (i) obstack_1grow (node_obstack, '\n'); obstack_fgrow1 (node_obstack, " %s -> ", - escape (tags[rule_table[rule].lhs])); + escape (symbols[rules[rule].lhs]->tag)); - for (sp = ritem + rule_table[rule].rhs; sp < sp1; sp++) - obstack_fgrow1 (node_obstack, "%s ", escape (tags[*sp])); + for (sp = ritem + rules[rule].rhs; sp < sp1; sp++) + obstack_fgrow1 (node_obstack, "%s ", escape (symbols[*sp]->tag)); obstack_1grow (node_obstack, '.'); for (/* Nothing */; *sp >= 0; ++sp) - obstack_fgrow1 (node_obstack, " %s", escape (tags[*sp])); + obstack_fgrow1 (node_obstack, " %s", escape (symbols[*sp]->tag)); } } @@ -113,7 +114,7 @@ print_actions (state_t *state, const char *node_name) if (!SHIFT_IS_DISABLED (shiftp, i)) { int state1 = shiftp->shifts[i]; - int symbol = state_table[state1]->accessing_symbol; + int symbol = states[state1]->accessing_symbol; new_edge (&edge); @@ -129,7 +130,7 @@ print_actions (state_t *state, const char *node_name) edge.color = red; else edge.color = SHIFT_IS_SHIFT(shiftp, i) ? blue : green; - edge.label = escape (tags[symbol]); + edge.label = escape (symbols[symbol]->tag); output_edge (&edge, fgraph); close_edge (fgraph); } @@ -199,9 +200,9 @@ print_graph (void) output_graph (&graph, fgraph); /* Output nodes and edges. */ - new_closure (nitems); + new_closure (nritems); for (i = 0; i < nstates; i++) - print_state (state_table[i]); + print_state (states[i]); free_closure (); /* Close graph. */