]>
git.saurik.com Git - bison.git/blob - src/print.c
021cb4837ac6fcc12e638417f84827e94f2de159
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 BITSET_EXECUTE (lookaheadset
, 0, 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
)
233 bitset_andn (lookaheadset
, state
->lookaheads
[i
], shiftset
);
234 count
= bitset_count (lookaheadset
);
240 default_rule
= state
->lookaheads_rule
[i
];
243 bitset_or (shiftset
, shiftset
, lookaheadset
);
246 bitset_zero (shiftset
);
248 for (i
= 0; i
< shiftp
->nshifts
&& SHIFT_IS_SHIFT (shiftp
, i
); i
++)
249 if (!SHIFT_IS_DISABLED (shiftp
, i
))
250 bitset_set (shiftset
, SHIFT_SYMBOL (shiftp
, i
));
252 for (i
= 0; i
< ntokens
; i
++)
256 int count
= bitset_test (shiftset
, i
);
258 for (j
= 0; j
< state
->nlookaheads
; ++j
)
259 if (bitset_test (state
->lookaheads
[j
], i
))
265 _(" %-4s\treduce using rule %d (%s)\n"),
266 symbol_tag_get (symbols
[i
]),
267 state
->lookaheads_rule
[j
]->number
- 1,
268 symbol_tag_get_n (state
->lookaheads_rule
[j
]->lhs
, 1));
278 _(" %-4s\treduce using rule %d (%s)\n"),
279 symbol_tag_get (symbols
[i
]),
280 state
->lookaheads_rule
[default_LA
]->number
- 1,
281 symbol_tag_get_n (state
->lookaheads_rule
[default_LA
]->lhs
, 1));
284 _(" %-4s\t[reduce using rule %d (%s)]\n"),
285 symbol_tag_get (symbols
[i
]),
286 state
->lookaheads_rule
[j
]->number
- 1,
287 symbol_tag_get_n (state
->lookaheads_rule
[j
]->lhs
, 1));
293 fprintf (out
, _(" $default\treduce using rule %d (%s)\n"),
294 default_rule
->number
- 1,
295 symbol_tag_get (default_rule
->lhs
));
301 print_actions (FILE *out
, state_t
*state
)
303 reductions_t
*redp
= state
->reductions
;
304 shifts_t
*shiftp
= state
->shifts
;
306 if (shiftp
->nshifts
== 0 && redp
->nreds
== 0)
308 if (state
->number
== final_state
->number
)
309 fprintf (out
, _(" $default\taccept\n"));
311 fprintf (out
, _(" NO ACTIONS\n"));
315 print_shifts (out
, state
);
316 print_errs (out
, state
);
317 print_reductions (out
, state
);
318 print_gotos (out
, state
);
322 print_state (FILE *out
, state_t
*state
)
324 fprintf (out
, _("state %d"), state
->number
);
326 print_core (out
, state
);
327 print_actions (out
, state
);
328 if ((report_flag
& report_solved_conflicts
)
329 && state
->solved_conflicts
)
330 fputs (state
->solved_conflicts
, out
);
334 /*-----------------------------------------.
335 | Print information on the whole grammar. |
336 `-----------------------------------------*/
338 #define END_TEST(End) \
340 if (column + strlen(buffer) > (End)) \
342 fprintf (out, "%s\n ", buffer); \
350 print_grammar (FILE *out
)
356 grammar_rules_print (out
);
358 /* TERMINAL (type #) : rule #s terminal is on RHS */
359 fprintf (out
, "%s\n\n", _("Terminals, with rules where they appear"));
360 for (i
= 0; i
< max_user_token_number
+ 1; i
++)
361 if (token_translations
[i
] != undeftoken
->number
)
363 const char *tag
= symbol_tag_get (symbols
[token_translations
[i
]]);
368 column
= strlen (tag
);
371 sprintf (buffer
, " (%d)", i
);
373 for (r
= 1; r
< nrules
+ 1; r
++)
374 for (rhsp
= rules
[r
].rhs
; *rhsp
>= 0; rhsp
++)
375 if (item_number_as_symbol_number (*rhsp
) == token_translations
[i
])
378 sprintf (buffer
+ strlen (buffer
), " %d", r
- 1);
381 fprintf (out
, "%s\n", buffer
);
386 fprintf (out
, "%s\n\n", _("Nonterminals, with rules where they appear"));
387 for (i
= ntokens
; i
< nsyms
; i
++)
389 int left_count
= 0, right_count
= 0;
391 const char *tag
= symbol_tag_get (symbols
[i
]);
393 for (r
= 1; r
< nrules
+ 1; r
++)
396 if (rules
[r
].lhs
->number
== i
)
398 for (rhsp
= rules
[r
].rhs
; *rhsp
>= 0; rhsp
++)
399 if (item_number_as_symbol_number (*rhsp
) == i
)
408 column
= strlen (tag
);
409 sprintf (buffer
, " (%d)", i
);
415 sprintf (buffer
+ strlen (buffer
), _(" on left:"));
417 for (r
= 1; r
< nrules
+ 1; r
++)
420 if (rules
[r
].lhs
->number
== i
)
421 sprintf (buffer
+ strlen (buffer
), " %d", r
- 1);
428 sprintf (buffer
+ strlen (buffer
), ",");
430 sprintf (buffer
+ strlen (buffer
), _(" on right:"));
431 for (r
= 1; r
< nrules
+ 1; r
++)
434 for (rhsp
= rules
[r
].rhs
; *rhsp
>= 0; rhsp
++)
435 if (item_number_as_symbol_number (*rhsp
) == i
)
438 sprintf (buffer
+ strlen (buffer
), " %d", r
- 1);
443 fprintf (out
, "%s\n", buffer
);
453 /* We used to use just .out if SPEC_NAME_PREFIX (-p) was used, but
454 that conflicts with Posix. */
455 FILE *out
= xfopen (spec_verbose_file
, "w");
458 conflicts_output (out
);
462 /* If the whole state item sets, not only the kernels, are wanted,
463 `closure' will be run, which needs memory allocation/deallocation. */
464 if (report_flag
& report_itemsets
)
465 new_closure (nritems
);
466 /* Storage for print_reductions. */
467 shiftset
= bitset_create (ntokens
, BITSET_FIXED
);
468 lookaheadset
= bitset_create (ntokens
, BITSET_FIXED
);
469 for (i
= 0; i
< nstates
; i
++)
470 print_state (out
, states
[i
]);
471 bitset_free (shiftset
);
472 bitset_free (lookaheadset
);
473 if (report_flag
& report_itemsets
)