]>
git.saurik.com Git - bison.git/blob - src/print.c
1 /* Print information on generated parser, for bison,
2 Copyright 1984, 1986, 1989, 2000, 2001 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
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)
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.
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. */
27 #include "conflicts.h"
36 print_token (int extnum
, int token
)
38 fprintf (out
, _(" type %d is %s\n"), extnum
, tags
[token
]);
43 /*--------------------------------.
44 | Report information on a state. |
45 `--------------------------------*/
48 print_core (FILE *out
, int state
)
51 core
*statep
= state_table
[state
].state
;
56 for (i
= 0; i
< statep
->nitems
; i
++)
62 sp1
= sp
= ritem
+ statep
->items
[i
];
68 fprintf (out
, " %s -> ", tags
[rule_table
[rule
].lhs
]);
70 for (sp
= ritem
+ rule_table
[rule
].rhs
; sp
< sp1
; sp
++)
71 fprintf (out
, "%s ", tags
[*sp
]);
75 for (/* Nothing */; *sp
> 0; ++sp
)
76 fprintf (out
, " %s", tags
[*sp
]);
78 fprintf (out
, _(" (rule %d)"), rule
);
86 print_actions (FILE *out
, int state
)
90 shifts
*shiftp
= state_table
[state
].shift_table
;
91 reductions
*redp
= state_table
[state
].reduction_table
;
92 errs
*errp
= err_table
[state
];
94 if (!shiftp
->nshifts
&& !redp
)
96 if (final_state
== state
)
97 fprintf (out
, _(" $default\taccept\n"));
99 fprintf (out
, _(" NO ACTIONS\n"));
103 for (i
= 0; i
< shiftp
->nshifts
; i
++)
104 if (!SHIFT_IS_DISABLED (shiftp
, i
))
106 int state1
= shiftp
->shifts
[i
];
107 int symbol
= state_table
[state1
].accessing_symbol
;
108 /* The following line used to be turned off. */
111 if (symbol
== 0) /* I.e. strcmp(tags[symbol],"$")==0 */
113 _(" $ \tgo to state %d\n"), state1
);
116 _(" %-4s\tshift, and go to state %d\n"),
117 tags
[symbol
], state1
);
126 for (j
= 0; j
< errp
->nerrs
; j
++)
128 int symbol
= errp
->errs
[j
];
131 fprintf (out
, _(" %-4s\terror (nonassociative)\n"),
139 if (state_table
[state
].consistent
&& redp
)
141 int rule
= redp
->rules
[0];
142 int symbol
= rule_table
[rule
].lhs
;
143 fprintf (out
, _(" $default\treduce using rule %d (%s)\n\n"),
148 print_reductions (out
, state
);
151 if (i
< shiftp
->nshifts
)
153 for (; i
< shiftp
->nshifts
; i
++)
154 if (!SHIFT_IS_DISABLED (shiftp
, i
))
156 int state1
= shiftp
->shifts
[i
];
157 int symbol
= state_table
[state1
].accessing_symbol
;
158 fprintf (out
, _(" %-4s\tgo to state %d\n"),
159 tags
[symbol
], state1
);
167 print_state (FILE *out
, int state
)
169 fprintf (out
, _("state %d"), state
);
171 print_core (out
, state
);
172 print_actions (out
, state
);
176 /*-----------------------------------------.
177 | Print information on the whole grammar. |
178 `-----------------------------------------*/
180 #define END_TEST(End) \
182 if (column + strlen(buffer) > (End)) \
184 fprintf (out, "%s\n ", buffer); \
192 print_grammar (FILE *out
)
199 /* rule # : LHS -> RHS */
200 fprintf (out
, "%s\n\n", _("Grammar"));
201 fprintf (out
, " %s\n", _("Number, Line, Rule"));
202 for (i
= 1; i
<= nrules
; i
++)
203 /* Don't print rules disabled in reduce_grammar_tables. */
204 if (rule_table
[i
].useful
)
206 fprintf (out
, _(" %3d %3d %s ->"),
207 i
, rule_table
[i
].line
, tags
[rule_table
[i
].lhs
]);
208 rule
= &ritem
[rule_table
[i
].rhs
];
211 fprintf (out
, " %s", tags
[*rule
++]);
213 fprintf (out
, " /* %s */", _("empty"));
219 /* TERMINAL (type #) : rule #s terminal is on RHS */
220 fprintf (out
, "%s\n\n", _("Terminals, with rules where they appear"));
221 fprintf (out
, "%s (-1)\n", tags
[0]);
223 for (i
= 0; i
<= max_user_token_number
; i
++)
224 if (token_translations
[i
] != 2)
227 column
= strlen (tags
[token_translations
[i
]]);
228 fputs (tags
[token_translations
[i
]], out
);
230 sprintf (buffer
, " (%d)", i
);
232 for (j
= 1; j
<= nrules
; j
++)
233 for (rule
= &ritem
[rule_table
[j
].rhs
]; *rule
> 0; rule
++)
234 if (*rule
== token_translations
[i
])
237 sprintf (buffer
+ strlen (buffer
), " %d", j
);
240 fprintf (out
, "%s\n", buffer
);
245 fprintf (out
, "%s\n\n", _("Nonterminals, with rules where they appear"));
246 for (i
= ntokens
; i
<= nsyms
- 1; i
++)
248 int left_count
= 0, right_count
= 0;
250 for (j
= 1; j
<= nrules
; j
++)
252 if (rule_table
[j
].lhs
== i
)
254 for (rule
= &ritem
[rule_table
[j
].rhs
]; *rule
> 0; rule
++)
263 fputs (tags
[i
], out
);
264 column
= strlen (tags
[i
]);
265 sprintf (buffer
, " (%d)", i
);
271 sprintf (buffer
+ strlen (buffer
), _(" on left:"));
273 for (j
= 1; j
<= nrules
; j
++)
276 if (rule_table
[j
].lhs
== i
)
277 sprintf (buffer
+ strlen (buffer
), " %d", j
);
284 sprintf (buffer
+ strlen (buffer
), ",");
286 sprintf (buffer
+ strlen (buffer
), _(" on right:"));
287 for (j
= 1; j
<= nrules
; j
++)
289 for (rule
= &ritem
[rule_table
[j
].rhs
]; *rule
> 0; rule
++)
293 sprintf (buffer
+ strlen (buffer
), " %d", j
);
298 fprintf (out
, "%s\n", buffer
);
310 /* We used to use just .out if spec_name_prefix (-p) was used, but
311 that conflicts with Posix. */
312 FILE *out
= xfopen (spec_verbose_file
, "w");
314 size_t size
= obstack_object_size (&output_obstack
);
315 fwrite (obstack_finish (&output_obstack
), 1, size
, out
);
320 conflicts_output (out
);
324 for (i
= 0; i
< nstates
; i
++)
325 print_state (out
, i
);
329 obstack_free (&output_obstack
, NULL
);