]>
git.saurik.com Git - bison.git/blob - src/print.c
1 /* Print information on generated parser, for bison,
2 Copyright (C) 1984, 1986, 1989, 2000, 2001, 2002
3 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
7 Bison 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 2, or (at your option)
12 Bison 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.
17 You should have received a copy of the GNU General Public License
18 along with Bison; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
30 #include "conflicts.h"
39 static bitset shiftset
;
40 static bitset lookaheadset
;
44 print_token (int extnum
, int token
)
46 fprintf (out
, _(" type %d is %s\n"), extnum
, tags
[token
]);
51 /*--------------------------------.
52 | Report information on a state. |
53 `--------------------------------*/
56 print_core (FILE *out
, state_t
*state
)
59 item_number_t
*sitems
= state
->items
;
60 int snritems
= state
->nitems
;
62 /* Output all the items of a state, not only its kernel. */
63 if (report_flag
& report_itemsets
)
65 closure (sitems
, snritems
);
72 for (i
= 0; i
< snritems
; i
++)
78 sp1
= sp
= ritem
+ sitems
[i
];
84 fprintf (out
, " %s -> ", symbol_tag_get (rules
[rule
].lhs
));
86 for (sp
= rules
[rule
].rhs
; sp
< sp1
; sp
++)
87 fprintf (out
, "%s ", symbol_tag_get (symbols
[*sp
]));
91 for (/* Nothing */; *sp
>= 0; ++sp
)
92 fprintf (out
, " %s", symbol_tag_get (symbols
[*sp
]));
94 /* Display the lookaheads? */
95 if (report_flag
& report_lookaheads
)
96 state_rule_lookaheads_print (state
, &rules
[rule
], out
);
98 fprintf (out
, _(" (rule %d)"), rule
- 1);
108 print_shifts (FILE *out
, state_t
*state
)
111 shifts_t
*shiftp
= state
->shifts
;
113 for (i
= 0; i
< shiftp
->nshifts
&& SHIFT_IS_SHIFT (shiftp
, i
); i
++)
114 if (!SHIFT_IS_DISABLED (shiftp
, i
))
116 state_number_t state1
= shiftp
->shifts
[i
];
117 symbol_number_t symbol
= states
[state1
]->accessing_symbol
;
119 _(" %-4s\tshift, and go to state %d\n"),
120 symbol_tag_get (symbols
[symbol
]), state1
);
129 print_errs (FILE *out
, state_t
*state
)
131 errs_t
*errp
= state
->errs
;
134 for (i
= 0; i
< errp
->nerrs
; ++i
)
136 fprintf (out
, _(" %-4s\terror (nonassociative)\n"),
137 symbol_tag_get (symbols
[errp
->errs
[i
]]));
145 print_gotos (FILE *out
, state_t
*state
)
148 shifts_t
*shiftp
= state
->shifts
;
150 for (i
= 0; i
< shiftp
->nshifts
&& SHIFT_IS_SHIFT (shiftp
, i
); i
++)
151 /* Skip token shifts. */;
153 if (i
< shiftp
->nshifts
)
155 for (; i
< shiftp
->nshifts
; i
++)
156 if (!SHIFT_IS_DISABLED (shiftp
, i
))
158 state_number_t state1
= shiftp
->shifts
[i
];
159 symbol_number_t symbol
= states
[state1
]->accessing_symbol
;
160 fprintf (out
, _(" %-4s\tgo to state %d\n"),
161 symbol_tag_get (symbols
[symbol
]), state1
);
169 print_reductions (FILE *out
, state_t
*state
)
172 shifts_t
*shiftp
= state
->shifts
;
173 reductions_t
*redp
= state
->reductions
;
174 errs_t
*errp
= state
->errs
;
177 if (redp
->nreds
== 0)
180 if (state
->consistent
)
182 int rule
= redp
->rules
[0];
183 symbol_number_t symbol
= rules
[rule
].lhs
->number
;
184 fprintf (out
, _(" $default\treduce using rule %d (%s)\n\n"),
185 rule
- 1, symbol_tag_get (symbols
[symbol
]));
189 bitset_zero (shiftset
);
191 for (i
= 0; i
< shiftp
->nshifts
&& SHIFT_IS_SHIFT (shiftp
, i
); i
++)
192 if (!SHIFT_IS_DISABLED (shiftp
, i
))
194 /* if this state has a shift for the error token, don't use a
196 if (SHIFT_IS_ERROR (shiftp
, i
))
198 bitset_set (shiftset
, SHIFT_SYMBOL (shiftp
, i
));
201 for (i
= 0; i
< errp
->nerrs
; i
++)
203 bitset_set (shiftset
, errp
->errs
[i
]);
205 if (state
->nlookaheads
== 1 && !nodefault
)
207 rule_t
*default_rule
= state
->lookaheads_rule
[0];
209 bitset_and (lookaheadset
, state
->lookaheads
[0], shiftset
);
211 for (i
= 0; i
< ntokens
; i
++)
212 if (bitset_test (lookaheadset
, i
))
213 fprintf (out
, _(" %-4s\t[reduce using rule %d (%s)]\n"),
214 symbol_tag_get (symbols
[i
]),
215 default_rule
->number
- 1,
216 symbol_tag_get_n (default_rule
->lhs
, 1));
218 fprintf (out
, _(" $default\treduce using rule %d (%s)\n\n"),
219 default_rule
->number
- 1,
220 symbol_tag_get (default_rule
->lhs
));
222 else if (state
->nlookaheads
>= 1)
226 rule_t
*default_rule
= NULL
;
229 for (i
= 0; i
< state
->nlookaheads
; ++i
)
234 bitset_andn (lookaheadset
, state
->lookaheads
[i
], shiftset
);
236 for (j
= 0; j
< ntokens
; j
++)
237 if (bitset_test (lookaheadset
, j
))
244 default_rule
= state
->lookaheads_rule
[i
];
247 bitset_or (shiftset
, shiftset
, lookaheadset
);
250 bitset_zero (shiftset
);
252 for (i
= 0; i
< shiftp
->nshifts
&& SHIFT_IS_SHIFT (shiftp
, i
); i
++)
253 if (!SHIFT_IS_DISABLED (shiftp
, i
))
254 bitset_set (shiftset
, SHIFT_SYMBOL (shiftp
, i
));
256 for (i
= 0; i
< ntokens
; i
++)
260 int count
= bitset_test (shiftset
, i
);
262 for (j
= 0; j
< state
->nlookaheads
; ++j
)
263 if (bitset_test (state
->lookaheads
[j
], i
))
269 _(" %-4s\treduce using rule %d (%s)\n"),
270 symbol_tag_get (symbols
[i
]),
271 state
->lookaheads_rule
[j
]->number
- 1,
272 symbol_tag_get_n (state
->lookaheads_rule
[j
]->lhs
, 1));
282 _(" %-4s\treduce using rule %d (%s)\n"),
283 symbol_tag_get (symbols
[i
]),
284 state
->lookaheads_rule
[default_LA
]->number
- 1,
285 symbol_tag_get_n (state
->lookaheads_rule
[default_LA
]->lhs
, 1));
288 _(" %-4s\t[reduce using rule %d (%s)]\n"),
289 symbol_tag_get (symbols
[i
]),
290 state
->lookaheads_rule
[j
]->number
- 1,
291 symbol_tag_get_n (state
->lookaheads_rule
[j
]->lhs
, 1));
297 fprintf (out
, _(" $default\treduce using rule %d (%s)\n"),
298 default_rule
->number
- 1,
299 symbol_tag_get (default_rule
->lhs
));
305 print_actions (FILE *out
, state_t
*state
)
307 reductions_t
*redp
= state
->reductions
;
308 shifts_t
*shiftp
= state
->shifts
;
310 if (shiftp
->nshifts
== 0 && redp
->nreds
== 0)
312 if (state
->number
== final_state
->number
)
313 fprintf (out
, _(" $default\taccept\n"));
315 fprintf (out
, _(" NO ACTIONS\n"));
319 print_shifts (out
, state
);
320 print_errs (out
, state
);
321 print_reductions (out
, state
);
322 print_gotos (out
, state
);
326 print_state (FILE *out
, state_t
*state
)
328 fprintf (out
, _("state %d"), state
->number
);
330 print_core (out
, state
);
331 print_actions (out
, state
);
332 if ((report_flag
& report_solved_conflicts
)
333 && state
->solved_conflicts
)
334 fputs (state
->solved_conflicts
, out
);
338 /*-----------------------------------------.
339 | Print information on the whole grammar. |
340 `-----------------------------------------*/
342 #define END_TEST(End) \
344 if (column + strlen(buffer) > (End)) \
346 fprintf (out, "%s\n ", buffer); \
354 print_grammar (FILE *out
)
360 grammar_rules_print (out
);
362 /* TERMINAL (type #) : rule #s terminal is on RHS */
363 fprintf (out
, "%s\n\n", _("Terminals, with rules where they appear"));
364 for (i
= 0; i
< max_user_token_number
+ 1; i
++)
365 if (token_translations
[i
] != undeftoken
->number
)
367 const char *tag
= symbol_tag_get (symbols
[token_translations
[i
]]);
372 column
= strlen (tag
);
375 sprintf (buffer
, " (%d)", i
);
377 for (r
= 1; r
< nrules
+ 1; r
++)
378 for (rhsp
= rules
[r
].rhs
; *rhsp
>= 0; rhsp
++)
379 if (item_number_as_symbol_number (*rhsp
) == token_translations
[i
])
382 sprintf (buffer
+ strlen (buffer
), " %d", r
- 1);
385 fprintf (out
, "%s\n", buffer
);
390 fprintf (out
, "%s\n\n", _("Nonterminals, with rules where they appear"));
391 for (i
= ntokens
; i
< nsyms
; i
++)
393 int left_count
= 0, right_count
= 0;
395 const char *tag
= symbol_tag_get (symbols
[i
]);
397 for (r
= 1; r
< nrules
+ 1; r
++)
400 if (rules
[r
].lhs
->number
== i
)
402 for (rhsp
= rules
[r
].rhs
; *rhsp
>= 0; rhsp
++)
403 if (item_number_as_symbol_number (*rhsp
) == i
)
412 column
= strlen (tag
);
413 sprintf (buffer
, " (%d)", i
);
419 sprintf (buffer
+ strlen (buffer
), _(" on left:"));
421 for (r
= 1; r
< nrules
+ 1; r
++)
424 if (rules
[r
].lhs
->number
== i
)
425 sprintf (buffer
+ strlen (buffer
), " %d", r
- 1);
432 sprintf (buffer
+ strlen (buffer
), ",");
434 sprintf (buffer
+ strlen (buffer
), _(" on right:"));
435 for (r
= 1; r
< nrules
+ 1; r
++)
438 for (rhsp
= rules
[r
].rhs
; *rhsp
>= 0; rhsp
++)
439 if (item_number_as_symbol_number (*rhsp
) == i
)
442 sprintf (buffer
+ strlen (buffer
), " %d", r
- 1);
447 fprintf (out
, "%s\n", buffer
);
457 /* We used to use just .out if SPEC_NAME_PREFIX (-p) was used, but
458 that conflicts with Posix. */
459 FILE *out
= xfopen (spec_verbose_file
, "w");
462 conflicts_output (out
);
466 /* If the whole state item sets, not only the kernels, are wanted,
467 `closure' will be run, which needs memory allocation/deallocation. */
468 if (report_flag
& report_itemsets
)
469 new_closure (nritems
);
470 /* Storage for print_reductions. */
471 shiftset
= bitset_create (ntokens
, BITSET_FIXED
);
472 lookaheadset
= bitset_create (ntokens
, BITSET_FIXED
);
473 for (i
= 0; i
< nstates
; i
++)
474 print_state (out
, states
[i
]);
475 bitset_free (shiftset
);
476 bitset_free (lookaheadset
);
477 if (report_flag
& report_itemsets
)