]> git.saurik.com Git - bison.git/blame - src/print_graph.c
* src/output.c (output_parser): Remove useless muscle.
[bison.git] / src / print_graph.c
CommitLineData
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"
ce4d5ce0
AD
22#include "files.h"
23#include "gram.h"
24#include "LR0.h"
25#include "lalr.h"
26#include "conflicts.h"
27#include "complain.h"
28#include "getargs.h"
29#include "state.h"
30#include "reader.h"
31#include "obstack.h"
32#include "print_graph.h"
33#include "vcg.h"
34
35static graph_t graph;
342b8b6e 36static FILE *fgraph = NULL;
ce4d5ce0
AD
37
38/* This part will construct the label of nodes. */
39static void
600cad3b 40print_core (int state, struct obstack *node_obstack)
ce4d5ce0
AD
41{
42 int i;
f693ad14 43 state_t *statep = state_table[state];
22c2cbc0 44
4bc30f78 45 if (!statep->nitems)
ce4d5ce0 46 return;
22c2cbc0 47
4bc30f78 48 for (i = 0; i < statep->nitems; i++)
ce4d5ce0 49 {
4bc30f78
AD
50 short *sp;
51 short *sp1;
52 int rule;
c4b66126 53
ce4d5ce0
AD
54 sp1 = sp = ritem + statep->items[i];
55
56 while (*sp > 0)
57 sp++;
58
59 rule = -(*sp);
60
4bc30f78
AD
61 if (i)
62 obstack_1grow (node_obstack, '\n');
600cad3b 63 obstack_fgrow1 (node_obstack, "%d: ", rule);
b2ed6e58 64 obstack_fgrow1 (node_obstack, " %s -> ",
08a946e0 65 tags[rule_table[rule].lhs]);
ce4d5ce0 66
b2ed6e58 67 for (sp = ritem + rule_table[rule].rhs; sp < sp1; sp++)
08a946e0 68 obstack_fgrow1 (node_obstack, "%s ", tags[*sp]);
ce4d5ce0 69
600cad3b 70 obstack_1grow (node_obstack, '.');
22c2cbc0 71
4bc30f78
AD
72 for (/* Nothing */; *sp > 0; ++sp)
73 obstack_fgrow1 (node_obstack, " %s", tags[*sp]);
ce4d5ce0 74 }
ce4d5ce0
AD
75}
76
08a946e0
AD
77
78/*---------------------------------------------------------------.
79| Output in graph_obstack edges specifications in incidence with |
80| current node. |
81`---------------------------------------------------------------*/
82
ce4d5ce0 83static void
08a946e0 84print_actions (int state, const char *node_name)
ce4d5ce0
AD
85{
86 int i;
d954473d 87
f693ad14
AD
88 shifts *shiftp = state_table[state]->shifts;
89 reductions *redp = state_table[state]->reductions;
d954473d 90#if 0
f693ad14 91 errs *errp = state_table[state]->errs;
d954473d
AD
92#endif
93
ce4d5ce0
AD
94 static char buff[10];
95 edge_t edge;
22c2cbc0 96
d954473d 97 if (!shiftp->nshifts && !redp)
ce4d5ce0 98 {
08a946e0 99#if 0
ce4d5ce0 100 if (final_state == state)
600cad3b 101 obstack_sgrow (node_obstack, "$default: accept");
ce4d5ce0 102 else
600cad3b 103 obstack_sgrow (node_obstack, "NO ACTIONS");
08a946e0 104#endif
ce4d5ce0
AD
105 return;
106 }
107
d954473d
AD
108 for (i = 0; i < shiftp->nshifts; i++)
109 if (!SHIFT_IS_DISABLED (shiftp, i))
110 {
111 int state1 = shiftp->shifts[i];
f693ad14 112 int symbol = state_table[state1]->accessing_symbol;
d954473d
AD
113
114 new_edge (&edge);
115
116 if (state > state1)
117 edge.type = back_edge;
118 open_edge (&edge, fgraph);
119 /* The edge source is the current node. */
120 edge.sourcename = node_name;
121 sprintf (buff, "%d", state1);
122 edge.targetname = buff;
123 edge.color = (symbol == 0) ? red : blue;
124 edge.label = tags[symbol];
125 output_edge (&edge, fgraph);
126 close_edge (fgraph);
127 }
ce4d5ce0 128
08a946e0 129#if 0
ce4d5ce0
AD
130 if (errp)
131 {
132 int j, nerrs;
133
134 nerrs = errp->nerrs;
135
136 for (j = 0; j < nerrs; j++)
137 {
138 if (!errp->errs[j])
139 continue;
140 symbol = errp->errs[j];
600cad3b 141 /* If something has been added in the NODE_OBSTACK after
08a946e0 142 the declaration of the label, then we need a `\n'.
600cad3b 143 if (obstack_object_size (node_obstack) > node_output_size)
08a946e0
AD
144 obstack_sgrow (node_obstack, "\n");
145 */
600cad3b
MA
146 obstack_fgrow1 (node_obstack, _("%-4s\terror (nonassociative)"),
147 tags[symbol]);
ce4d5ce0 148 }
600cad3b 149 if (j > 0)
08a946e0 150 obstack_1grow (node_obstack, '\n');
ce4d5ce0 151 }
22c2cbc0 152
f693ad14 153 if (state_table[state]->consistent && redp)
ce4d5ce0
AD
154 {
155 rule = redp->rules[0];
b2ed6e58 156 symbol = rule_table[rule].lhs;
08a946e0 157 /*
600cad3b 158 if (obstack_object_size (node_obstack) > node_output_size)
08a946e0
AD
159 obstack_sgrow (node_obstack, "\n");
160 */
600cad3b
MA
161 obstack_fgrow2 (node_obstack, _("$default\treduce using rule %d (%s)"),
162 rule, tags[symbol]);
ce4d5ce0 163 }
08a946e0 164#endif
22c2cbc0 165
d954473d
AD
166 if (i < shiftp->nshifts)
167 for (; i < shiftp->nshifts; i++)
168 if (!SHIFT_IS_DISABLED (shiftp, i))
ce4d5ce0 169 {
d954473d 170 int state1 = shiftp->shifts[i];
f693ad14 171 int symbol = state_table[state1]->accessing_symbol;
ce4d5ce0
AD
172
173 new_edge (&edge);
342b8b6e 174 open_edge (&edge, fgraph);
600cad3b 175 edge.sourcename = node_name;
c4b66126 176 sprintf (buff, "%d", state1);
ce4d5ce0
AD
177 edge.targetname = buff;
178 edge.color = red;
08a946e0 179 edge.label = tags[symbol];
342b8b6e
AD
180 output_edge (&edge, fgraph);
181 close_edge (fgraph);
ce4d5ce0 182 }
ce4d5ce0
AD
183}
184
08a946e0
AD
185
186/*-------------------------------------------------------------.
187| Output in FGRAPH the current node specifications and exiting |
188| edges. |
189`-------------------------------------------------------------*/
190
ce4d5ce0
AD
191static void
192print_state (int state)
193{
194 static char name[10];
600cad3b 195 struct obstack node_obstack;
22c2cbc0 196 node_t node;
ce4d5ce0 197
08a946e0 198 /* The labels of the nodes are their the items. */
600cad3b 199 obstack_init (&node_obstack);
08a946e0 200 new_node (&node);
3e3da797 201 sprintf (name, "%d", state);
08a946e0
AD
202 node.title = name;
203 print_core (state, &node_obstack);
204 obstack_1grow (&node_obstack, '\0');
205 node.label = obstack_finish (&node_obstack);
342b8b6e
AD
206
207 open_node (fgraph);
342b8b6e 208 output_node (&node, fgraph);
342b8b6e
AD
209 close_node (fgraph);
210
08a946e0
AD
211 /* Output the edges. */
212 print_actions (state, name);
213
342b8b6e 214 obstack_free (&node_obstack, 0);
ce4d5ce0
AD
215}
216\f
217
218void
219print_graph (void)
220{
221 int i;
9703cc49 222
ce4d5ce0 223 if (!graph_flag)
3e3da797 224 return;
342b8b6e
AD
225
226 /* Output file. */
227 fgraph = xfopen (spec_graph_file, "w");
228
ce4d5ce0 229 new_graph (&graph);
22c2cbc0 230
600cad3b
MA
231#if 0
232 graph.smanhattan_edges = yes;
9703cc49 233 graph.manhattan_edges = yes;
600cad3b 234#endif
22c2cbc0 235
ce4d5ce0 236 graph.display_edge_labels = yes;
342b8b6e 237 graph.layoutalgorithm = normal;
22c2cbc0 238
ce4d5ce0
AD
239 graph.port_sharing = no;
240 graph.finetuning = yes;
241 graph.straight_phase = yes;
242 graph.priority_phase = yes;
243 graph.splines = yes;
22c2cbc0 244
ce4d5ce0
AD
245 graph.crossing_weight = median;
246
247 /* Output graph options. */
342b8b6e
AD
248 open_graph (fgraph);
249 output_graph (&graph, fgraph);
ce4d5ce0 250
08a946e0 251 /* Output nodes and edges. */
ce4d5ce0 252 for (i = 0; i < nstates; i++)
3e3da797 253 print_state (i);
ce4d5ce0
AD
254
255 /* Close graph. */
342b8b6e
AD
256 close_graph (&graph, fgraph);
257 xfclose (fgraph);
ce4d5ce0 258}