]>
Commit | Line | Data |
---|---|---|
22c2cbc0 AD |
1 | /* Output a VCG description on generated parser, for Bison, |
2 | Copyright 2001 Free Software Foundation, Inc. | |
ce4d5ce0 AD |
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 | #include "system.h" | |
8adfa272 | 22 | #include "quotearg.h" |
ce4d5ce0 | 23 | #include "files.h" |
ad949da9 | 24 | #include "symtab.h" |
ce4d5ce0 AD |
25 | #include "gram.h" |
26 | #include "LR0.h" | |
27 | #include "lalr.h" | |
28 | #include "conflicts.h" | |
29 | #include "complain.h" | |
30 | #include "getargs.h" | |
31 | #include "state.h" | |
32 | #include "reader.h" | |
2e729273 | 33 | #include "closure.h" |
ce4d5ce0 AD |
34 | #include "obstack.h" |
35 | #include "print_graph.h" | |
36 | #include "vcg.h" | |
37 | ||
38 | static graph_t graph; | |
342b8b6e | 39 | static FILE *fgraph = NULL; |
ce4d5ce0 | 40 | |
8adfa272 | 41 | |
6b98e4b5 AD |
42 | /*----------------------------. |
43 | | Construct the node labels. | | |
44 | `----------------------------*/ | |
8adfa272 | 45 | |
ce4d5ce0 | 46 | static void |
d4e7d3a1 | 47 | print_core (struct obstack *oout, state_t *state) |
ce4d5ce0 AD |
48 | { |
49 | int i; | |
62a3e4f0 | 50 | item_number_t *sitems = state->items; |
5123689b | 51 | int snritems = state->nitems; |
22c2cbc0 | 52 | |
2e729273 | 53 | /* Output all the items of a state, not only its kernel. */ |
05811fd7 | 54 | if (report_flag & report_itemsets) |
30171f79 | 55 | { |
5123689b | 56 | closure (sitems, snritems); |
30171f79 | 57 | sitems = itemset; |
5123689b | 58 | snritems = nritemset; |
30171f79 | 59 | } |
22c2cbc0 | 60 | |
d4e7d3a1 | 61 | obstack_fgrow1 (oout, "state %2d\n", state->number); |
5123689b | 62 | for (i = 0; i < snritems; i++) |
ce4d5ce0 | 63 | { |
62a3e4f0 AD |
64 | item_number_t *sp; |
65 | item_number_t *sp1; | |
9222837b | 66 | rule_number_t rule; |
c4b66126 | 67 | |
2e729273 | 68 | sp1 = sp = ritem + sitems[i]; |
ce4d5ce0 | 69 | |
75142d45 | 70 | while (*sp >= 0) |
ce4d5ce0 AD |
71 | sp++; |
72 | ||
12b0043a | 73 | rule = item_number_as_rule_number (*sp); |
ce4d5ce0 | 74 | |
4bc30f78 | 75 | if (i) |
d4e7d3a1 AD |
76 | obstack_1grow (oout, '\n'); |
77 | obstack_fgrow1 (oout, " %s -> ", | |
97650f4e | 78 | rules[rule].lhs->tag); |
ce4d5ce0 | 79 | |
99013900 | 80 | for (sp = rules[rule].rhs; sp < sp1; sp++) |
97650f4e | 81 | obstack_fgrow1 (oout, "%s ", symbols[*sp]->tag); |
ce4d5ce0 | 82 | |
d4e7d3a1 | 83 | obstack_1grow (oout, '.'); |
22c2cbc0 | 84 | |
75142d45 | 85 | for (/* Nothing */; *sp >= 0; ++sp) |
97650f4e | 86 | obstack_fgrow1 (oout, " %s", symbols[*sp]->tag); |
d4e7d3a1 AD |
87 | |
88 | /* Experimental feature: display the lookaheads. */ | |
05811fd7 AD |
89 | if ((report_flag & report_lookaheads) |
90 | && state->nlookaheads) | |
d4e7d3a1 AD |
91 | { |
92 | int j, k; | |
613f5e1a | 93 | bitset_iterator biter; |
d4e7d3a1 | 94 | int nlookaheads = 0; |
613f5e1a | 95 | |
d4e7d3a1 AD |
96 | /* Look for lookaheads corresponding to this rule. */ |
97 | for (j = 0; j < state->nlookaheads; ++j) | |
613f5e1a | 98 | BITSET_FOR_EACH (biter, state->lookaheads[j], k, 0) |
574fb2d5 | 99 | if (state->lookaheads_rule[j]->number == rule) |
d4e7d3a1 | 100 | nlookaheads++; |
574fb2d5 | 101 | |
d4e7d3a1 AD |
102 | if (nlookaheads) |
103 | { | |
104 | obstack_sgrow (oout, " ["); | |
105 | for (j = 0; j < state->nlookaheads; ++j) | |
613f5e1a | 106 | BITSET_FOR_EACH (biter, state->lookaheads[j], k, 0) |
574fb2d5 | 107 | if (state->lookaheads_rule[j]->number == rule) |
d4e7d3a1 | 108 | obstack_fgrow2 (oout, "%s%s", |
97650f4e | 109 | symbols[k]->tag, |
d4e7d3a1 AD |
110 | --nlookaheads ? ", " : ""); |
111 | obstack_sgrow (oout, "]"); | |
112 | } | |
113 | } | |
ce4d5ce0 | 114 | } |
ce4d5ce0 AD |
115 | } |
116 | ||
08a946e0 AD |
117 | |
118 | /*---------------------------------------------------------------. | |
119 | | Output in graph_obstack edges specifications in incidence with | | |
120 | | current node. | | |
121 | `---------------------------------------------------------------*/ | |
122 | ||
ce4d5ce0 | 123 | static void |
065fbd27 | 124 | print_actions (state_t *state, const char *node_name) |
ce4d5ce0 AD |
125 | { |
126 | int i; | |
d954473d | 127 | |
8b752b00 | 128 | transitions_t *transitions = state->transitions; |
8a731ca8 | 129 | reductions_t *redp = state->reductions; |
d954473d | 130 | |
ce4d5ce0 AD |
131 | static char buff[10]; |
132 | edge_t edge; | |
22c2cbc0 | 133 | |
ccaf65bc | 134 | if (!transitions->num && !redp) |
5092aba5 | 135 | return; |
ce4d5ce0 | 136 | |
ccaf65bc AD |
137 | for (i = 0; i < transitions->num; i++) |
138 | if (!TRANSITION_IS_DISABLED (transitions, i)) | |
d954473d | 139 | { |
640748ee AD |
140 | state_t *state1 = transitions->states[i]; |
141 | symbol_number_t symbol = state1->accessing_symbol; | |
d954473d AD |
142 | |
143 | new_edge (&edge); | |
144 | ||
640748ee | 145 | if (state->number > state1->number) |
d954473d AD |
146 | edge.type = back_edge; |
147 | open_edge (&edge, fgraph); | |
148 | /* The edge source is the current node. */ | |
149 | edge.sourcename = node_name; | |
640748ee | 150 | sprintf (buff, "%d", state1->number); |
d954473d | 151 | edge.targetname = buff; |
8adfa272 | 152 | /* Shifts are blue, gotos are green, and error is red. */ |
ccaf65bc | 153 | if (TRANSITION_IS_ERROR (transitions, i)) |
8adfa272 AD |
154 | edge.color = red; |
155 | else | |
ccaf65bc | 156 | edge.color = TRANSITION_IS_SHIFT(transitions, i) ? blue : green; |
97650f4e | 157 | edge.label = symbols[symbol]->tag; |
d954473d AD |
158 | output_edge (&edge, fgraph); |
159 | close_edge (fgraph); | |
160 | } | |
ce4d5ce0 AD |
161 | } |
162 | ||
08a946e0 AD |
163 | |
164 | /*-------------------------------------------------------------. | |
165 | | Output in FGRAPH the current node specifications and exiting | | |
166 | | edges. | | |
167 | `-------------------------------------------------------------*/ | |
168 | ||
ce4d5ce0 | 169 | static void |
065fbd27 | 170 | print_state (state_t *state) |
ce4d5ce0 AD |
171 | { |
172 | static char name[10]; | |
600cad3b | 173 | struct obstack node_obstack; |
22c2cbc0 | 174 | node_t node; |
ce4d5ce0 | 175 | |
08a946e0 | 176 | /* The labels of the nodes are their the items. */ |
600cad3b | 177 | obstack_init (&node_obstack); |
08a946e0 | 178 | new_node (&node); |
065fbd27 | 179 | sprintf (name, "%d", state->number); |
08a946e0 | 180 | node.title = name; |
d4e7d3a1 | 181 | print_core (&node_obstack, state); |
08a946e0 AD |
182 | obstack_1grow (&node_obstack, '\0'); |
183 | node.label = obstack_finish (&node_obstack); | |
342b8b6e AD |
184 | |
185 | open_node (fgraph); | |
342b8b6e | 186 | output_node (&node, fgraph); |
342b8b6e AD |
187 | close_node (fgraph); |
188 | ||
08a946e0 AD |
189 | /* Output the edges. */ |
190 | print_actions (state, name); | |
191 | ||
342b8b6e | 192 | obstack_free (&node_obstack, 0); |
ce4d5ce0 AD |
193 | } |
194 | \f | |
195 | ||
196 | void | |
197 | print_graph (void) | |
198 | { | |
d57650a5 | 199 | state_number_t i; |
9703cc49 | 200 | |
342b8b6e AD |
201 | /* Output file. */ |
202 | fgraph = xfopen (spec_graph_file, "w"); | |
203 | ||
ce4d5ce0 | 204 | new_graph (&graph); |
22c2cbc0 | 205 | |
600cad3b MA |
206 | #if 0 |
207 | graph.smanhattan_edges = yes; | |
9703cc49 | 208 | graph.manhattan_edges = yes; |
600cad3b | 209 | #endif |
22c2cbc0 | 210 | |
ce4d5ce0 | 211 | graph.display_edge_labels = yes; |
342b8b6e | 212 | graph.layoutalgorithm = normal; |
22c2cbc0 | 213 | |
ce4d5ce0 AD |
214 | graph.port_sharing = no; |
215 | graph.finetuning = yes; | |
216 | graph.straight_phase = yes; | |
217 | graph.priority_phase = yes; | |
218 | graph.splines = yes; | |
22c2cbc0 | 219 | |
ce4d5ce0 AD |
220 | graph.crossing_weight = median; |
221 | ||
222 | /* Output graph options. */ | |
342b8b6e AD |
223 | open_graph (fgraph); |
224 | output_graph (&graph, fgraph); | |
ce4d5ce0 | 225 | |
08a946e0 | 226 | /* Output nodes and edges. */ |
9e7f6bbd | 227 | new_closure (nritems); |
ce4d5ce0 | 228 | for (i = 0; i < nstates; i++) |
29e88316 | 229 | print_state (states[i]); |
2e729273 | 230 | free_closure (); |
ce4d5ce0 AD |
231 | |
232 | /* Close graph. */ | |
342b8b6e AD |
233 | close_graph (&graph, fgraph); |
234 | xfclose (fgraph); | |
ce4d5ce0 | 235 | } |