]> git.saurik.com Git - bison.git/blob - src/print_graph.c
Merge remote-tracking branch 'origin/maint'
[bison.git] / src / print_graph.c
1 /* Output a graph of the generated parser, for Bison.
2
3 Copyright (C) 2001-2007, 2009-2012 Free Software Foundation, Inc.
4
5 This file is part of Bison, the GNU Compiler Compiler.
6
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include <config.h>
21 #include "system.h"
22
23 #include "LR0.h"
24 #include "closure.h"
25 #include "complain.h"
26 #include "conflicts.h"
27 #include "files.h"
28 #include "getargs.h"
29 #include "gram.h"
30 #include "graphviz.h"
31 #include "lalr.h"
32 #include "print_graph.h"
33 #include "reader.h"
34 #include "state.h"
35 #include "symtab.h"
36
37
38 /*----------------------------.
39 | Construct the node labels. |
40 `----------------------------*/
41
42 /* Print the lhs of a rule in such a manner that there is no vertical
43 repetition, like in *.output files. */
44
45 static void
46 print_lhs (struct obstack *oout, rule *previous_rule, rule *r)
47 {
48 if (previous_rule && STREQ (previous_rule->lhs->tag, r->lhs->tag))
49 {
50 int i;
51 for (i = 0; i < strlen (r->lhs->tag); ++i)
52 obstack_1grow (oout, ' ');
53 obstack_1grow (oout, '|');
54 }
55 else
56 {
57 obstack_sgrow (oout, escape (r->lhs->tag));
58 obstack_1grow (oout, ':');
59 }
60 obstack_1grow (oout, ' ');
61 }
62
63 static void
64 print_core (struct obstack *oout, state *s)
65 {
66 item_number *sitems = s->items;
67 rule *previous_rule = NULL;
68 size_t i;
69 size_t snritems = s->nitems;
70
71 /* Output all the items of a state, not only its kernel. */
72 if (report_flag & report_itemsets)
73 {
74 closure (sitems, snritems);
75 sitems = itemset;
76 snritems = nitemset;
77 }
78
79 obstack_printf (oout, _("State %d"), s->number);
80 obstack_sgrow (oout, "\\n\\l");
81 for (i = 0; i < snritems; i++)
82 {
83 item_number *sp;
84 item_number *sp1;
85 rule_number r;
86
87 sp1 = sp = ritem + sitems[i];
88
89 while (*sp >= 0)
90 sp++;
91
92 r = item_number_as_rule_number (*sp);
93
94 obstack_printf (oout, "%3d ", r);
95 print_lhs (oout, previous_rule, &rules[r]);
96 previous_rule = &rules[r];
97
98 for (sp = rules[r].rhs; sp < sp1; sp++)
99 obstack_printf (oout, "%s ", escape (symbols[*sp]->tag));
100
101 obstack_1grow (oout, '.');
102
103 for (/* Nothing */; *sp >= 0; ++sp)
104 obstack_printf (oout, " %s", escape (symbols[*sp]->tag));
105
106 /* Experimental feature: display the lookahead tokens. */
107 if (report_flag & report_lookahead_tokens
108 && item_number_is_rule_number (*sp1))
109 {
110 /* Find the reduction we are handling. */
111 reductions *reds = s->reductions;
112 int redno = state_reduction_find (s, &rules[r]);
113
114 /* Print them if there are. */
115 if (reds->lookahead_tokens && redno != -1)
116 {
117 bitset_iterator biter;
118 int k;
119 char const *sep = "";
120 obstack_sgrow (oout, " [");
121 BITSET_FOR_EACH (biter, reds->lookahead_tokens[redno], k, 0)
122 {
123 obstack_sgrow (oout, sep);
124 obstack_sgrow (oout, escape (symbols[k]->tag));
125 sep = ", ";
126 }
127 obstack_1grow (oout, ']');
128 }
129 }
130 obstack_sgrow (oout, "\\l");
131 }
132 }
133
134
135 /*---------------------------------------------------------------.
136 | Output in graph_obstack edges specifications in incidence with |
137 | current node. |
138 `---------------------------------------------------------------*/
139
140 static void
141 print_actions (state const *s, FILE *fgraph)
142 {
143 transitions const *trans = s->transitions;
144 int i;
145
146 if (!trans->num && !s->reductions)
147 return;
148
149 for (i = 0; i < trans->num; i++)
150 if (!TRANSITION_IS_DISABLED (trans, i))
151 {
152 state *s1 = trans->states[i];
153 symbol_number sym = s1->accessing_symbol;
154
155 /* Shifts are solid, gotos are dashed, and error is dotted. */
156 char const *style =
157 (TRANSITION_IS_ERROR (trans, i) ? "dotted"
158 : TRANSITION_IS_SHIFT (trans, i) ? "solid"
159 : "dashed");
160
161 if (TRANSITION_IS_ERROR (trans, i)
162 && STRNEQ (symbols[sym]->tag, "error"))
163 abort ();
164 output_edge (s->number, s1->number,
165 TRANSITION_IS_ERROR (trans, i) ? NULL : symbols[sym]->tag,
166 style, fgraph);
167 }
168 /* Display reductions. */
169 output_red (s, s->reductions, fgraph);
170 }
171
172
173 /*-------------------------------------------------------------.
174 | Output in FGRAPH the current node specifications and exiting |
175 | edges. |
176 `-------------------------------------------------------------*/
177
178 static void
179 print_state (state *s, FILE *fgraph)
180 {
181 struct obstack node_obstack;
182
183 /* A node's label contains its items. */
184 obstack_init (&node_obstack);
185 print_core (&node_obstack, s);
186 output_node (s->number, obstack_finish0 (&node_obstack), fgraph);
187 obstack_free (&node_obstack, 0);
188
189 /* Output the edges. */
190 print_actions (s, fgraph);
191 }
192 \f
193
194 void
195 print_graph (void)
196 {
197 state_number i;
198 FILE *fgraph = xfopen (spec_graph_file, "w");
199 start_graph (fgraph);
200
201 /* Output nodes and edges. */
202 new_closure (nritems);
203 for (i = 0; i < nstates; i++)
204 print_state (states[i], fgraph);
205 free_closure ();
206
207 finish_graph (fgraph);
208 xfclose (fgraph);
209 }