]>
Commit | Line | Data |
---|---|---|
1 | /* Find and resolve or report look-ahead conflicts for bison, | |
2 | Copyright 1984, 1989, 1992, 2000, 2001 Free Software Foundation, Inc. | |
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 it | |
7 | 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, but | |
12 | WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | 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 the Free | |
18 | Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
19 | 02111-1307, USA. */ | |
20 | ||
21 | #include "system.h" | |
22 | #include "complain.h" | |
23 | #include "getargs.h" | |
24 | #include "files.h" | |
25 | #include "gram.h" | |
26 | #include "state.h" | |
27 | #include "lalr.h" | |
28 | #include "conflicts.h" | |
29 | #include "reader.h" | |
30 | #include "LR0.h" | |
31 | ||
32 | errs **err_table = NULL; | |
33 | /* -1 stands for not specified. */ | |
34 | int expected_conflicts = -1; | |
35 | static char *conflicts = NULL; | |
36 | ||
37 | static unsigned *shiftset = NULL; | |
38 | static unsigned *lookaheadset = NULL; | |
39 | \f | |
40 | ||
41 | static inline void | |
42 | log_resolution (int state, int LAno, int token, char *resolution) | |
43 | { | |
44 | obstack_fgrow4 (&output_obstack, | |
45 | _("\ | |
46 | Conflict in state %d between rule %d and token %s resolved as %s.\n"), | |
47 | state, LAruleno[LAno], tags[token], resolution); | |
48 | } | |
49 | ||
50 | ||
51 | /*------------------------------------------------------------------. | |
52 | | Turn off the shift recorded for the specified token in the | | |
53 | | specified state. Used when we resolve a shift-reduce conflict in | | |
54 | | favor of the reduction. | | |
55 | `------------------------------------------------------------------*/ | |
56 | ||
57 | static void | |
58 | flush_shift (int state, int token) | |
59 | { | |
60 | shifts *shiftp; | |
61 | int k, i; | |
62 | ||
63 | shiftp = state_table[state].shift_table; | |
64 | ||
65 | if (shiftp) | |
66 | { | |
67 | k = shiftp->nshifts; | |
68 | for (i = 0; i < k; i++) | |
69 | { | |
70 | if (shiftp->shifts[i] | |
71 | && token == state_table[shiftp->shifts[i]].accessing_symbol) | |
72 | (shiftp->shifts[i]) = 0; | |
73 | } | |
74 | } | |
75 | } | |
76 | ||
77 | ||
78 | /*------------------------------------------------------------------. | |
79 | | Attempt to resolve shift-reduce conflict for one rule by means of | | |
80 | | precedence declarations. It has already been checked that the | | |
81 | | rule has a precedence. A conflict is resolved by modifying the | | |
82 | | shift or reduce tables so that there is no longer a conflict. | | |
83 | `------------------------------------------------------------------*/ | |
84 | ||
85 | static void | |
86 | resolve_sr_conflict (int state, int lookaheadnum) | |
87 | { | |
88 | int i; | |
89 | int mask; | |
90 | unsigned *fp1; | |
91 | unsigned *fp2; | |
92 | int redprec; | |
93 | errs *errp = ERRS_ALLOC (ntokens + 1); | |
94 | short *errtokens = errp->errs; | |
95 | ||
96 | /* find the rule to reduce by to get precedence of reduction */ | |
97 | redprec = rule_table[LAruleno[lookaheadnum]].prec; | |
98 | ||
99 | mask = 1; | |
100 | fp1 = LA (lookaheadnum); | |
101 | fp2 = lookaheadset; | |
102 | for (i = 0; i < ntokens; i++) | |
103 | { | |
104 | if ((mask & *fp2 & *fp1) && sprec[i]) | |
105 | /* Shift-reduce conflict occurs for token number i | |
106 | and it has a precedence. | |
107 | The precedence of shifting is that of token i. */ | |
108 | { | |
109 | if (sprec[i] < redprec) | |
110 | { | |
111 | log_resolution (state, lookaheadnum, i, _("reduce")); | |
112 | *fp2 &= ~mask; /* flush the shift for this token */ | |
113 | flush_shift (state, i); | |
114 | } | |
115 | else if (sprec[i] > redprec) | |
116 | { | |
117 | log_resolution (state, lookaheadnum, i, _("shift")); | |
118 | *fp1 &= ~mask; /* flush the reduce for this token */ | |
119 | } | |
120 | else | |
121 | { | |
122 | /* Matching precedence levels. | |
123 | For left association, keep only the reduction. | |
124 | For right association, keep only the shift. | |
125 | For nonassociation, keep neither. */ | |
126 | ||
127 | switch (sassoc[i]) | |
128 | { | |
129 | case right_assoc: | |
130 | log_resolution (state, lookaheadnum, i, _("shift")); | |
131 | break; | |
132 | ||
133 | case left_assoc: | |
134 | log_resolution (state, lookaheadnum, i, _("reduce")); | |
135 | break; | |
136 | ||
137 | case non_assoc: | |
138 | log_resolution (state, lookaheadnum, i, _("an error")); | |
139 | break; | |
140 | } | |
141 | ||
142 | if (sassoc[i] != right_assoc) | |
143 | { | |
144 | *fp2 &= ~mask; /* flush the shift for this token */ | |
145 | flush_shift (state, i); | |
146 | } | |
147 | if (sassoc[i] != left_assoc) | |
148 | { | |
149 | *fp1 &= ~mask; /* flush the reduce for this token */ | |
150 | } | |
151 | if (sassoc[i] == non_assoc) | |
152 | { | |
153 | /* Record an explicit error for this token. */ | |
154 | *errtokens++ = i; | |
155 | } | |
156 | } | |
157 | } | |
158 | ||
159 | mask <<= 1; | |
160 | if (mask == 0) | |
161 | { | |
162 | mask = 1; | |
163 | fp2++; | |
164 | fp1++; | |
165 | } | |
166 | } | |
167 | errp->nerrs = errtokens - errp->errs; | |
168 | if (errp->nerrs) | |
169 | { | |
170 | /* Some tokens have been explicitly made errors. Allocate | |
171 | a permanent errs structure for this state, to record them. */ | |
172 | i = (char *) errtokens - (char *) errp; | |
173 | err_table[state] = ERRS_ALLOC (i + 1); | |
174 | bcopy (errp, err_table[state], i); | |
175 | } | |
176 | else | |
177 | err_table[state] = 0; | |
178 | free (errp); | |
179 | } | |
180 | ||
181 | ||
182 | static void | |
183 | set_conflicts (int state) | |
184 | { | |
185 | int i, j; | |
186 | shifts *shiftp; | |
187 | ||
188 | if (state_table[state].consistent) | |
189 | return; | |
190 | ||
191 | for (i = 0; i < tokensetsize; i++) | |
192 | lookaheadset[i] = 0; | |
193 | ||
194 | shiftp = state_table[state].shift_table; | |
195 | if (shiftp) | |
196 | for (i = 0; i < shiftp->nshifts && SHIFT_IS_SHIFT (shiftp, i); i++) | |
197 | SETBIT (lookaheadset, SHIFT_SYMBOL (shiftp, i)); | |
198 | ||
199 | /* Loop over all rules which require lookahead in this state. First | |
200 | check for shift-reduce conflict, and try to resolve using | |
201 | precedence */ | |
202 | for (i = state_table[state].lookaheads; | |
203 | i < state_table[state + 1].lookaheads; | |
204 | ++i) | |
205 | if (rule_table[LAruleno[i]].prec) | |
206 | for (j = 0; j < tokensetsize; ++j) | |
207 | if (LA (i)[j] & lookaheadset[j]) | |
208 | { | |
209 | resolve_sr_conflict (state, i); | |
210 | break; | |
211 | } | |
212 | ||
213 | ||
214 | /* Loop over all rules which require lookahead in this state. Check | |
215 | for conflicts not resolved above. */ | |
216 | for (i = state_table[state].lookaheads; | |
217 | i < state_table[state + 1].lookaheads; | |
218 | ++i) | |
219 | { | |
220 | for (j = 0; j < tokensetsize; ++j) | |
221 | if (LA (i)[j] & lookaheadset[j]) | |
222 | conflicts[state] = 1; | |
223 | ||
224 | for (j = 0; j < tokensetsize; ++j) | |
225 | lookaheadset[j] |= LA (i)[j]; | |
226 | } | |
227 | } | |
228 | ||
229 | void | |
230 | solve_conflicts (void) | |
231 | { | |
232 | int i; | |
233 | ||
234 | conflicts = XCALLOC (char, nstates); | |
235 | shiftset = XCALLOC (unsigned, tokensetsize); | |
236 | lookaheadset = XCALLOC (unsigned, tokensetsize); | |
237 | ||
238 | err_table = XCALLOC (errs *, nstates); | |
239 | ||
240 | for (i = 0; i < nstates; i++) | |
241 | set_conflicts (i); | |
242 | } | |
243 | ||
244 | ||
245 | /*---------------------------------------------. | |
246 | | Count the number of shift/reduce conflicts. | | |
247 | `---------------------------------------------*/ | |
248 | ||
249 | static int | |
250 | count_sr_conflicts (int state) | |
251 | { | |
252 | int i, k; | |
253 | int src_count = 0; | |
254 | shifts *shiftp = state_table[state].shift_table; | |
255 | ||
256 | if (!shiftp) | |
257 | return 0; | |
258 | ||
259 | for (i = 0; i < tokensetsize; i++) | |
260 | { | |
261 | shiftset[i] = 0; | |
262 | lookaheadset[i] = 0; | |
263 | } | |
264 | ||
265 | for (i = 0; i < shiftp->nshifts && SHIFT_IS_SHIFT (shiftp, i); i++) | |
266 | SETBIT (shiftset, SHIFT_SYMBOL (shiftp, i)); | |
267 | ||
268 | for (i = state_table[state].lookaheads; | |
269 | i < state_table[state + 1].lookaheads; | |
270 | ++i) | |
271 | for (k = 0; k < tokensetsize; ++k) | |
272 | lookaheadset[k] |= LA (i)[k]; | |
273 | ||
274 | for (k = 0; k < tokensetsize; ++k) | |
275 | lookaheadset[k] &= shiftset[k]; | |
276 | ||
277 | for (i = 0; i < ntokens; i++) | |
278 | if (BITISSET (lookaheadset, i)) | |
279 | src_count++; | |
280 | ||
281 | return src_count; | |
282 | } | |
283 | ||
284 | ||
285 | /*----------------------------------------------. | |
286 | | Count the number of reduce/reduce conflicts. | | |
287 | `----------------------------------------------*/ | |
288 | ||
289 | static int | |
290 | count_rr_conflicts (int state) | |
291 | { | |
292 | int i; | |
293 | int rrc_count = 0; | |
294 | ||
295 | int m = state_table[state].lookaheads; | |
296 | int n = state_table[state + 1].lookaheads; | |
297 | ||
298 | if (n - m < 2) | |
299 | return 0; | |
300 | ||
301 | for (i = 0; i < ntokens; i++) | |
302 | { | |
303 | int count = 0; | |
304 | int j; | |
305 | for (j = m; j < n; j++) | |
306 | if (BITISSET (LA (m), j)) | |
307 | count++; | |
308 | ||
309 | if (count >= 2) | |
310 | rrc_count++; | |
311 | } | |
312 | ||
313 | return rrc_count; | |
314 | } | |
315 | ||
316 | /*--------------------------------------------------------------. | |
317 | | Return a human readable string which reports shift/reduce and | | |
318 | | reduce/reduce conflict numbers (SRC_NUM, RRC_NUM). | | |
319 | `--------------------------------------------------------------*/ | |
320 | ||
321 | static const char * | |
322 | conflict_report (int src_num, int rrc_num) | |
323 | { | |
324 | static char res[4096]; | |
325 | char *cp = res; | |
326 | ||
327 | if (src_num >= 1) | |
328 | { | |
329 | sprintf (cp, ngettext ("%d shift/reduce conflict", | |
330 | "%d shift/reduce conflicts", src_num), src_num); | |
331 | cp += strlen (cp); | |
332 | } | |
333 | ||
334 | if (src_num > 0 && rrc_num > 0) | |
335 | { | |
336 | sprintf (cp, " %s ", _("and")); | |
337 | cp += strlen (cp); | |
338 | } | |
339 | ||
340 | if (rrc_num >= 1) | |
341 | { | |
342 | sprintf (cp, ngettext ("%d reduce/reduce conflict", | |
343 | "%d reduce/reduce conflicts", rrc_num), rrc_num); | |
344 | cp += strlen (cp); | |
345 | } | |
346 | ||
347 | *cp++ = '.'; | |
348 | *cp++ = '\n'; | |
349 | *cp++ = '\0'; | |
350 | ||
351 | return res; | |
352 | } | |
353 | ||
354 | ||
355 | /*-----------------------------------------------------------. | |
356 | | Output the detailed description of states with conflicts. | | |
357 | `-----------------------------------------------------------*/ | |
358 | ||
359 | void | |
360 | conflicts_output (FILE *out) | |
361 | { | |
362 | bool printed_sth = FALSE; | |
363 | int i; | |
364 | for (i = 0; i < nstates; i++) | |
365 | if (conflicts[i]) | |
366 | { | |
367 | fprintf (out, _("State %d contains "), i); | |
368 | fputs (conflict_report (count_sr_conflicts (i), | |
369 | count_rr_conflicts (i)), out); | |
370 | printed_sth = TRUE; | |
371 | } | |
372 | if (printed_sth) | |
373 | fputs ("\n\n", out); | |
374 | } | |
375 | ||
376 | ||
377 | /*------------------------------------------. | |
378 | | Reporting the total number of conflicts. | | |
379 | `------------------------------------------*/ | |
380 | ||
381 | void | |
382 | conflicts_print (void) | |
383 | { | |
384 | int i; | |
385 | ||
386 | /* Is the number of SR conflicts OK? Either EXPECTED_CONFLICTS is | |
387 | not set, and then we want 0 SR, or else it is specified, in which | |
388 | case we want equality. */ | |
389 | int src_ok = 0; | |
390 | ||
391 | int src_total = 0; | |
392 | int rrc_total = 0; | |
393 | ||
394 | /* Conflicts by state. */ | |
395 | for (i = 0; i < nstates; i++) | |
396 | if (conflicts[i]) | |
397 | { | |
398 | src_total += count_sr_conflicts (i); | |
399 | rrc_total += count_rr_conflicts (i); | |
400 | } | |
401 | ||
402 | src_ok = src_total == (expected_conflicts == -1 ? 0 : expected_conflicts); | |
403 | ||
404 | /* If there are no RR conflicts, and as many SR conflicts as | |
405 | expected, then there is nothing to report. */ | |
406 | if (!rrc_total && src_ok) | |
407 | return; | |
408 | ||
409 | /* Report the total number of conflicts on STDERR. */ | |
410 | if (yacc_flag) | |
411 | { | |
412 | /* If invoked with `--yacc', use the output format specified by | |
413 | POSIX. */ | |
414 | fprintf (stderr, _("conflicts: ")); | |
415 | if (src_total > 0) | |
416 | fprintf (stderr, _(" %d shift/reduce"), src_total); | |
417 | if (src_total > 0 && rrc_total > 0) | |
418 | fprintf (stderr, ","); | |
419 | if (rrc_total > 0) | |
420 | fprintf (stderr, _(" %d reduce/reduce"), rrc_total); | |
421 | putc ('\n', stderr); | |
422 | } | |
423 | else | |
424 | { | |
425 | fprintf (stderr, _("%s contains "), infile); | |
426 | fputs (conflict_report (src_total, rrc_total), stderr); | |
427 | } | |
428 | ||
429 | if (expected_conflicts != -1 && !src_ok) | |
430 | { | |
431 | complain_message_count++; | |
432 | fprintf (stderr, ngettext ("expected %d shift/reduce conflict\n", | |
433 | "expected %d shift/reduce conflicts\n", | |
434 | expected_conflicts), | |
435 | expected_conflicts); | |
436 | } | |
437 | } | |
438 | ||
439 | ||
440 | void | |
441 | print_reductions (FILE *out, int state) | |
442 | { | |
443 | int i; | |
444 | int j; | |
445 | int m; | |
446 | int n; | |
447 | shifts *shiftp; | |
448 | errs *errp; | |
449 | int nodefault = 0; | |
450 | ||
451 | for (i = 0; i < tokensetsize; i++) | |
452 | shiftset[i] = 0; | |
453 | ||
454 | shiftp = state_table[state].shift_table; | |
455 | if (shiftp) | |
456 | for (i = 0; i < shiftp->nshifts && SHIFT_IS_SHIFT (shiftp, i); i++) | |
457 | { | |
458 | /* if this state has a shift for the error token, don't use a | |
459 | default rule. */ | |
460 | if (SHIFT_IS_ERROR (shiftp, i)) | |
461 | nodefault = 1; | |
462 | SETBIT (shiftset, SHIFT_SYMBOL (shiftp, i)); | |
463 | } | |
464 | ||
465 | errp = err_table[state]; | |
466 | if (errp) | |
467 | for (i = 0; i < errp->nerrs; i++) | |
468 | if (errp->errs[i]) | |
469 | SETBIT (shiftset, errp->errs[i]); | |
470 | ||
471 | m = state_table[state].lookaheads; | |
472 | n = state_table[state + 1].lookaheads; | |
473 | ||
474 | if (n - m == 1 && !nodefault) | |
475 | { | |
476 | int k; | |
477 | int default_rule = LAruleno[m]; | |
478 | ||
479 | for (k = 0; k < tokensetsize; ++k) | |
480 | lookaheadset[k] = LA (m)[k] & shiftset[k]; | |
481 | ||
482 | for (i = 0; i < ntokens; i++) | |
483 | if (BITISSET (lookaheadset, i)) | |
484 | fprintf (out, _(" %-4s\t[reduce using rule %d (%s)]\n"), | |
485 | tags[i], default_rule, | |
486 | tags[rule_table[default_rule].lhs]); | |
487 | ||
488 | fprintf (out, _(" $default\treduce using rule %d (%s)\n\n"), | |
489 | default_rule, tags[rule_table[default_rule].lhs]); | |
490 | } | |
491 | else if (n - m >= 1) | |
492 | { | |
493 | int k; | |
494 | ||
495 | int cmax = 0; | |
496 | int default_LA = -1; | |
497 | int default_rule = 0; | |
498 | ||
499 | if (!nodefault) | |
500 | for (i = m; i < n; i++) | |
501 | { | |
502 | int count = 0; | |
503 | ||
504 | for (k = 0; k < tokensetsize; ++k) | |
505 | lookaheadset[k] = LA (i)[k] & ~shiftset[k]; | |
506 | ||
507 | for (j = 0; j < ntokens; j++) | |
508 | if (BITISSET (lookaheadset, j)) | |
509 | count++; | |
510 | ||
511 | if (count > cmax) | |
512 | { | |
513 | cmax = count; | |
514 | default_LA = i; | |
515 | default_rule = LAruleno[i]; | |
516 | } | |
517 | ||
518 | for (k = 0; k < tokensetsize; ++k) | |
519 | shiftset[k] |= lookaheadset[k]; | |
520 | } | |
521 | ||
522 | for (i = 0; i < tokensetsize; i++) | |
523 | shiftset[i] = 0; | |
524 | ||
525 | if (shiftp) | |
526 | for (i = 0; i < shiftp->nshifts && SHIFT_IS_SHIFT (shiftp, i); i++) | |
527 | SETBIT (shiftset, SHIFT_SYMBOL (shiftp, i)); | |
528 | ||
529 | for (i = 0; i < ntokens; i++) | |
530 | { | |
531 | int defaulted = 0; | |
532 | int count = BITISSET (shiftset, i); | |
533 | ||
534 | for (j = m; j < n; j++) | |
535 | { | |
536 | if (BITISSET (LA (m), j)) | |
537 | { | |
538 | if (count == 0) | |
539 | { | |
540 | if (j != default_LA) | |
541 | fprintf (out, | |
542 | _(" %-4s\treduce using rule %d (%s)\n"), | |
543 | tags[i], | |
544 | LAruleno[j], | |
545 | tags[rule_table[LAruleno[j]].lhs]); | |
546 | else | |
547 | defaulted = 1; | |
548 | ||
549 | count++; | |
550 | } | |
551 | else | |
552 | { | |
553 | if (defaulted) | |
554 | fprintf (out, | |
555 | _(" %-4s\treduce using rule %d (%s)\n"), | |
556 | tags[i], | |
557 | LAruleno[default_LA], | |
558 | tags[rule_table[LAruleno[default_LA]].lhs]); | |
559 | defaulted = 0; | |
560 | fprintf (out, | |
561 | _(" %-4s\t[reduce using rule %d (%s)]\n"), | |
562 | tags[i], | |
563 | LAruleno[j], | |
564 | tags[rule_table[LAruleno[j]].lhs]); | |
565 | } | |
566 | } | |
567 | } | |
568 | } | |
569 | ||
570 | if (default_LA >= 0) | |
571 | fprintf (out, _(" $default\treduce using rule %d (%s)\n"), | |
572 | default_rule, tags[rule_table[default_rule].lhs]); | |
573 | } | |
574 | } | |
575 | ||
576 | ||
577 | void | |
578 | free_conflicts (void) | |
579 | { | |
580 | XFREE (conflicts); | |
581 | XFREE (shiftset); | |
582 | XFREE (lookaheadset); | |
583 | } |