]>
Commit | Line | Data |
---|---|---|
1 | /* Find and resolve or report lookahead conflicts for bison, | |
2 | ||
3 | Copyright (C) 1984, 1989, 1992, 2000, 2001, 2002, 2003, 2004, 2005, 2006, | |
4 | 2007 Free Software Foundation, Inc. | |
5 | ||
6 | This file is part of Bison, the GNU Compiler Compiler. | |
7 | ||
8 | Bison is free software; you can redistribute it and/or modify it | |
9 | under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 2, or (at your option) | |
11 | any later version. | |
12 | ||
13 | Bison is distributed in the hope that it will be useful, but | |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 | General Public License for more details. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
19 | along with Bison; see the file COPYING. If not, write to the Free | |
20 | Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | |
21 | 02110-1301, USA. */ | |
22 | ||
23 | #include <config.h> | |
24 | #include "system.h" | |
25 | ||
26 | #include <bitset.h> | |
27 | ||
28 | #include "LR0.h" | |
29 | #include "complain.h" | |
30 | #include "conflicts.h" | |
31 | #include "files.h" | |
32 | #include "getargs.h" | |
33 | #include "gram.h" | |
34 | #include "lalr.h" | |
35 | #include "reader.h" | |
36 | #include "state.h" | |
37 | #include "symtab.h" | |
38 | ||
39 | /* -1 stands for not specified. */ | |
40 | int expected_sr_conflicts = -1; | |
41 | int expected_rr_conflicts = -1; | |
42 | static char *conflicts; | |
43 | static struct obstack solved_conflicts_obstack; | |
44 | ||
45 | static bitset shift_set; | |
46 | static bitset lookahead_set; | |
47 | ||
48 | \f | |
49 | ||
50 | enum conflict_resolution | |
51 | { | |
52 | shift_resolution, | |
53 | reduce_resolution, | |
54 | left_resolution, | |
55 | right_resolution, | |
56 | nonassoc_resolution | |
57 | }; | |
58 | ||
59 | ||
60 | /*----------------------------------------------------------------. | |
61 | | Explain how an SR conflict between TOKEN and RULE was resolved: | | |
62 | | RESOLUTION. | | |
63 | `----------------------------------------------------------------*/ | |
64 | ||
65 | static inline void | |
66 | log_resolution (rule *r, symbol_number token, | |
67 | enum conflict_resolution resolution) | |
68 | { | |
69 | if (report_flag & report_solved_conflicts) | |
70 | { | |
71 | /* The description of the resolution. */ | |
72 | switch (resolution) | |
73 | { | |
74 | case shift_resolution: | |
75 | case right_resolution: | |
76 | obstack_fgrow2 (&solved_conflicts_obstack, | |
77 | _("\ | |
78 | Conflict between rule %d and token %s resolved as shift"), | |
79 | r->number, | |
80 | symbols[token]->tag); | |
81 | break; | |
82 | case reduce_resolution: | |
83 | case left_resolution: | |
84 | obstack_fgrow2 (&solved_conflicts_obstack, | |
85 | _("\ | |
86 | Conflict between rule %d and token %s resolved as reduce"), | |
87 | r->number, | |
88 | symbols[token]->tag); | |
89 | break; | |
90 | case nonassoc_resolution: | |
91 | obstack_fgrow2 (&solved_conflicts_obstack, | |
92 | _("\ | |
93 | Conflict between rule %d and token %s resolved as an error"), | |
94 | r->number, | |
95 | symbols[token]->tag); | |
96 | break; | |
97 | } | |
98 | ||
99 | /* The reason. */ | |
100 | switch (resolution) | |
101 | { | |
102 | case shift_resolution: | |
103 | obstack_fgrow2 (&solved_conflicts_obstack, | |
104 | " (%s < %s)", | |
105 | r->prec->tag, | |
106 | symbols[token]->tag); | |
107 | break; | |
108 | ||
109 | case reduce_resolution: | |
110 | obstack_fgrow2 (&solved_conflicts_obstack, | |
111 | " (%s < %s)", | |
112 | symbols[token]->tag, | |
113 | r->prec->tag); | |
114 | break; | |
115 | ||
116 | case left_resolution: | |
117 | obstack_fgrow1 (&solved_conflicts_obstack, | |
118 | " (%%left %s)", | |
119 | symbols[token]->tag); | |
120 | break; | |
121 | ||
122 | case right_resolution: | |
123 | obstack_fgrow1 (&solved_conflicts_obstack, | |
124 | " (%%right %s)", | |
125 | symbols[token]->tag); | |
126 | break; | |
127 | case nonassoc_resolution: | |
128 | obstack_fgrow1 (&solved_conflicts_obstack, | |
129 | " (%%nonassoc %s)", | |
130 | symbols[token]->tag); | |
131 | break; | |
132 | } | |
133 | obstack_sgrow (&solved_conflicts_obstack, ".\n"); | |
134 | } | |
135 | } | |
136 | ||
137 | ||
138 | /*------------------------------------------------------------------. | |
139 | | Turn off the shift recorded for the specified token in the | | |
140 | | specified state. Used when we resolve a shift-reduce conflict in | | |
141 | | favor of the reduction or as an error (%nonassoc). | | |
142 | `------------------------------------------------------------------*/ | |
143 | ||
144 | static void | |
145 | flush_shift (state *s, int token) | |
146 | { | |
147 | transitions *trans = s->transitions; | |
148 | int i; | |
149 | ||
150 | bitset_reset (lookahead_set, token); | |
151 | for (i = 0; i < trans->num; i++) | |
152 | if (!TRANSITION_IS_DISABLED (trans, i) | |
153 | && TRANSITION_SYMBOL (trans, i) == token) | |
154 | TRANSITION_DISABLE (trans, i); | |
155 | } | |
156 | ||
157 | ||
158 | /*--------------------------------------------------------------------. | |
159 | | Turn off the reduce recorded for the specified token in the | | |
160 | | specified lookahead set. Used when we resolve a shift-reduce | | |
161 | | conflict in favor of the shift or as an error (%nonassoc). | | |
162 | `--------------------------------------------------------------------*/ | |
163 | ||
164 | static void | |
165 | flush_reduce (bitset lookahead_tokens, int token) | |
166 | { | |
167 | bitset_reset (lookahead_tokens, token); | |
168 | } | |
169 | ||
170 | ||
171 | /*------------------------------------------------------------------. | |
172 | | Attempt to resolve shift-reduce conflict for one rule by means of | | |
173 | | precedence declarations. It has already been checked that the | | |
174 | | rule has a precedence. A conflict is resolved by modifying the | | |
175 | | shift or reduce tables so that there is no longer a conflict. | | |
176 | | | | |
177 | | RULENO is the number of the lookahead bitset to consider. | | |
178 | | | | |
179 | | ERRORS and NERRS can be used to store discovered explicit | | |
180 | | errors. | | |
181 | `------------------------------------------------------------------*/ | |
182 | ||
183 | static void | |
184 | resolve_sr_conflict (state *s, int ruleno, symbol **errors, int *nerrs) | |
185 | { | |
186 | symbol_number i; | |
187 | reductions *reds = s->reductions; | |
188 | /* Find the rule to reduce by to get precedence of reduction. */ | |
189 | rule *redrule = reds->rules[ruleno]; | |
190 | int redprec = redrule->prec->prec; | |
191 | bitset lookahead_tokens = reds->lookahead_tokens[ruleno]; | |
192 | ||
193 | for (i = 0; i < ntokens; i++) | |
194 | if (bitset_test (lookahead_tokens, i) | |
195 | && bitset_test (lookahead_set, i) | |
196 | && symbols[i]->prec) | |
197 | { | |
198 | /* Shift-reduce conflict occurs for token number i | |
199 | and it has a precedence. | |
200 | The precedence of shifting is that of token i. */ | |
201 | if (symbols[i]->prec < redprec) | |
202 | { | |
203 | log_resolution (redrule, i, reduce_resolution); | |
204 | flush_shift (s, i); | |
205 | } | |
206 | else if (symbols[i]->prec > redprec) | |
207 | { | |
208 | log_resolution (redrule, i, shift_resolution); | |
209 | flush_reduce (lookahead_tokens, i); | |
210 | } | |
211 | else | |
212 | /* Matching precedence levels. | |
213 | For left association, keep only the reduction. | |
214 | For right association, keep only the shift. | |
215 | For nonassociation, keep neither. */ | |
216 | ||
217 | switch (symbols[i]->assoc) | |
218 | { | |
219 | default: | |
220 | abort (); | |
221 | ||
222 | case right_assoc: | |
223 | log_resolution (redrule, i, right_resolution); | |
224 | flush_reduce (lookahead_tokens, i); | |
225 | break; | |
226 | ||
227 | case left_assoc: | |
228 | log_resolution (redrule, i, left_resolution); | |
229 | flush_shift (s, i); | |
230 | break; | |
231 | ||
232 | case non_assoc: | |
233 | log_resolution (redrule, i, nonassoc_resolution); | |
234 | flush_shift (s, i); | |
235 | flush_reduce (lookahead_tokens, i); | |
236 | /* Record an explicit error for this token. */ | |
237 | errors[(*nerrs)++] = symbols[i]; | |
238 | break; | |
239 | } | |
240 | } | |
241 | } | |
242 | ||
243 | ||
244 | /*-------------------------------------------------------------------. | |
245 | | Solve the S/R conflicts of state S using the | | |
246 | | precedence/associativity, and flag it inconsistent if it still has | | |
247 | | conflicts. ERRORS can be used as storage to compute the list of | | |
248 | | lookahead tokens on which S raises a syntax error (%nonassoc). | | |
249 | `-------------------------------------------------------------------*/ | |
250 | ||
251 | static void | |
252 | set_conflicts (state *s, symbol **errors) | |
253 | { | |
254 | int i; | |
255 | transitions *trans = s->transitions; | |
256 | reductions *reds = s->reductions; | |
257 | int nerrs = 0; | |
258 | ||
259 | if (s->consistent) | |
260 | return; | |
261 | ||
262 | bitset_zero (lookahead_set); | |
263 | ||
264 | FOR_EACH_SHIFT (trans, i) | |
265 | bitset_set (lookahead_set, TRANSITION_SYMBOL (trans, i)); | |
266 | ||
267 | /* Loop over all rules which require lookahead in this state. First | |
268 | check for shift-reduce conflict, and try to resolve using | |
269 | precedence. */ | |
270 | for (i = 0; i < reds->num; ++i) | |
271 | if (reds->rules[i]->prec && reds->rules[i]->prec->prec | |
272 | && !bitset_disjoint_p (reds->lookahead_tokens[i], lookahead_set)) | |
273 | resolve_sr_conflict (s, i, errors, &nerrs); | |
274 | ||
275 | if (nerrs) | |
276 | { | |
277 | /* Some tokens have been explicitly made errors. Allocate a | |
278 | permanent errs structure for this state, to record them. */ | |
279 | state_errs_set (s, nerrs, errors); | |
280 | } | |
281 | if (obstack_object_size (&solved_conflicts_obstack)) | |
282 | { | |
283 | obstack_1grow (&solved_conflicts_obstack, '\0'); | |
284 | s->solved_conflicts = obstack_finish (&solved_conflicts_obstack); | |
285 | } | |
286 | ||
287 | /* Loop over all rules which require lookahead in this state. Check | |
288 | for conflicts not resolved above. */ | |
289 | for (i = 0; i < reds->num; ++i) | |
290 | { | |
291 | if (!bitset_disjoint_p (reds->lookahead_tokens[i], lookahead_set)) | |
292 | conflicts[s->number] = 1; | |
293 | bitset_or (lookahead_set, lookahead_set, reds->lookahead_tokens[i]); | |
294 | } | |
295 | } | |
296 | ||
297 | ||
298 | /*----------------------------------------------------------------. | |
299 | | Solve all the S/R conflicts using the precedence/associativity, | | |
300 | | and flag as inconsistent the states that still have conflicts. | | |
301 | `----------------------------------------------------------------*/ | |
302 | ||
303 | void | |
304 | conflicts_solve (void) | |
305 | { | |
306 | state_number i; | |
307 | /* List of lookahead tokens on which we explicitly raise a syntax error. */ | |
308 | symbol **errors = xnmalloc (ntokens + 1, sizeof *errors); | |
309 | ||
310 | conflicts = xcalloc (nstates, sizeof *conflicts); | |
311 | shift_set = bitset_create (ntokens, BITSET_FIXED); | |
312 | lookahead_set = bitset_create (ntokens, BITSET_FIXED); | |
313 | obstack_init (&solved_conflicts_obstack); | |
314 | ||
315 | for (i = 0; i < nstates; i++) | |
316 | { | |
317 | set_conflicts (states[i], errors); | |
318 | ||
319 | /* For uniformity of the code, make sure all the states have a valid | |
320 | `errs' member. */ | |
321 | if (!states[i]->errs) | |
322 | states[i]->errs = errs_new (0, 0); | |
323 | } | |
324 | ||
325 | free (errors); | |
326 | } | |
327 | ||
328 | ||
329 | void | |
330 | conflicts_update_state_numbers (state_number old_to_new[], | |
331 | state_number nstates_old) | |
332 | { | |
333 | state_number i; | |
334 | for (i = 0; i < nstates_old; ++i) | |
335 | if (old_to_new[i] != nstates_old) | |
336 | conflicts[old_to_new[i]] = conflicts[i]; | |
337 | } | |
338 | ||
339 | ||
340 | /*---------------------------------------------. | |
341 | | Count the number of shift/reduce conflicts. | | |
342 | `---------------------------------------------*/ | |
343 | ||
344 | static int | |
345 | count_sr_conflicts (state *s) | |
346 | { | |
347 | int i; | |
348 | int src_count = 0; | |
349 | transitions *trans = s->transitions; | |
350 | reductions *reds = s->reductions; | |
351 | ||
352 | if (!trans) | |
353 | return 0; | |
354 | ||
355 | bitset_zero (lookahead_set); | |
356 | bitset_zero (shift_set); | |
357 | ||
358 | FOR_EACH_SHIFT (trans, i) | |
359 | bitset_set (shift_set, TRANSITION_SYMBOL (trans, i)); | |
360 | ||
361 | for (i = 0; i < reds->num; ++i) | |
362 | bitset_or (lookahead_set, lookahead_set, reds->lookahead_tokens[i]); | |
363 | ||
364 | bitset_and (lookahead_set, lookahead_set, shift_set); | |
365 | ||
366 | src_count = bitset_count (lookahead_set); | |
367 | ||
368 | return src_count; | |
369 | } | |
370 | ||
371 | ||
372 | /*----------------------------------------------------------------. | |
373 | | Count the number of reduce/reduce conflicts. If ONE_PER_TOKEN, | | |
374 | | count one conflict for each token that has any reduce/reduce | | |
375 | | conflicts. Otherwise, count one conflict for each pair of | | |
376 | | conflicting reductions. | | |
377 | +`----------------------------------------------------------------*/ | |
378 | ||
379 | static int | |
380 | count_rr_conflicts (state *s, bool one_per_token) | |
381 | { | |
382 | int i; | |
383 | reductions *reds = s->reductions; | |
384 | int rrc_count = 0; | |
385 | ||
386 | for (i = 0; i < ntokens; i++) | |
387 | { | |
388 | int count = 0; | |
389 | int j; | |
390 | for (j = 0; j < reds->num; ++j) | |
391 | if (bitset_test (reds->lookahead_tokens[j], i)) | |
392 | count++; | |
393 | ||
394 | if (count >= 2) | |
395 | rrc_count += one_per_token ? 1 : count-1; | |
396 | } | |
397 | ||
398 | return rrc_count; | |
399 | } | |
400 | ||
401 | ||
402 | /*--------------------------------------------------------. | |
403 | | Report the number of conflicts, using the Yacc format. | | |
404 | `--------------------------------------------------------*/ | |
405 | ||
406 | static void | |
407 | conflict_report (FILE *out, int src_num, int rrc_num) | |
408 | { | |
409 | if (src_num && rrc_num) | |
410 | fprintf (out, _("conflicts: %d shift/reduce, %d reduce/reduce\n"), | |
411 | src_num, rrc_num); | |
412 | else if (src_num) | |
413 | fprintf (out, _("conflicts: %d shift/reduce\n"), src_num); | |
414 | else if (rrc_num) | |
415 | fprintf (out, _("conflicts: %d reduce/reduce\n"), rrc_num); | |
416 | } | |
417 | ||
418 | ||
419 | /*-----------------------------------------------------------. | |
420 | | Output the detailed description of states with conflicts. | | |
421 | `-----------------------------------------------------------*/ | |
422 | ||
423 | void | |
424 | conflicts_output (FILE *out) | |
425 | { | |
426 | bool printed_sth = false; | |
427 | state_number i; | |
428 | for (i = 0; i < nstates; i++) | |
429 | { | |
430 | state *s = states[i]; | |
431 | if (conflicts[i]) | |
432 | { | |
433 | fprintf (out, _("State %d "), i); | |
434 | conflict_report (out, count_sr_conflicts (s), | |
435 | count_rr_conflicts (s, true)); | |
436 | printed_sth = true; | |
437 | } | |
438 | } | |
439 | if (printed_sth) | |
440 | fputs ("\n\n", out); | |
441 | } | |
442 | ||
443 | /*--------------------------------------------------------. | |
444 | | Total the number of S/R and R/R conflicts. Unlike the | | |
445 | | code in conflicts_output, however, count EACH pair of | | |
446 | | reductions for the same state and lookahead as one | | |
447 | | conflict. | | |
448 | `--------------------------------------------------------*/ | |
449 | ||
450 | int | |
451 | conflicts_total_count (void) | |
452 | { | |
453 | state_number i; | |
454 | int count; | |
455 | ||
456 | /* Conflicts by state. */ | |
457 | count = 0; | |
458 | for (i = 0; i < nstates; i++) | |
459 | if (conflicts[i]) | |
460 | { | |
461 | count += count_sr_conflicts (states[i]); | |
462 | count += count_rr_conflicts (states[i], false); | |
463 | } | |
464 | return count; | |
465 | } | |
466 | ||
467 | ||
468 | /*------------------------------------------. | |
469 | | Reporting the total number of conflicts. | | |
470 | `------------------------------------------*/ | |
471 | ||
472 | void | |
473 | conflicts_print (void) | |
474 | { | |
475 | /* Is the number of SR conflicts OK? Either EXPECTED_CONFLICTS is | |
476 | not set, and then we want 0 SR, or else it is specified, in which | |
477 | case we want equality. */ | |
478 | bool src_ok; | |
479 | bool rrc_ok; | |
480 | ||
481 | int src_total = 0; | |
482 | int rrc_total = 0; | |
483 | int src_expected; | |
484 | int rrc_expected; | |
485 | ||
486 | /* Conflicts by state. */ | |
487 | { | |
488 | state_number i; | |
489 | ||
490 | for (i = 0; i < nstates; i++) | |
491 | if (conflicts[i]) | |
492 | { | |
493 | src_total += count_sr_conflicts (states[i]); | |
494 | rrc_total += count_rr_conflicts (states[i], true); | |
495 | } | |
496 | } | |
497 | ||
498 | if (! glr_parser && rrc_total > 0 && expected_rr_conflicts != -1) | |
499 | { | |
500 | warn (_("%%expect-rr applies only to GLR parsers")); | |
501 | expected_rr_conflicts = -1; | |
502 | } | |
503 | ||
504 | src_expected = expected_sr_conflicts == -1 ? 0 : expected_sr_conflicts; | |
505 | rrc_expected = expected_rr_conflicts == -1 ? 0 : expected_rr_conflicts; | |
506 | src_ok = src_total == src_expected; | |
507 | rrc_ok = rrc_total == rrc_expected; | |
508 | ||
509 | /* If there are as many RR conflicts and SR conflicts as | |
510 | expected, then there is nothing to report. */ | |
511 | if (rrc_ok & src_ok) | |
512 | return; | |
513 | ||
514 | /* Report the total number of conflicts on STDERR. */ | |
515 | if (src_total | rrc_total) | |
516 | { | |
517 | if (! yacc_flag) | |
518 | fprintf (stderr, "%s: ", current_file); | |
519 | conflict_report (stderr, src_total, rrc_total); | |
520 | } | |
521 | ||
522 | if (expected_sr_conflicts != -1 || expected_rr_conflicts != -1) | |
523 | { | |
524 | if (! src_ok) | |
525 | complain (ngettext ("expected %d shift/reduce conflict", | |
526 | "expected %d shift/reduce conflicts", | |
527 | src_expected), | |
528 | src_expected); | |
529 | if (! rrc_ok) | |
530 | complain (ngettext ("expected %d reduce/reduce conflict", | |
531 | "expected %d reduce/reduce conflicts", | |
532 | rrc_expected), | |
533 | rrc_expected); | |
534 | } | |
535 | } | |
536 | ||
537 | ||
538 | void | |
539 | conflicts_free (void) | |
540 | { | |
541 | free (conflicts); | |
542 | bitset_free (shift_set); | |
543 | bitset_free (lookahead_set); | |
544 | obstack_free (&solved_conflicts_obstack, NULL); | |
545 | } |