1 /* Find and resolve or report look-ahead conflicts for bison,
2 Copyright (C) 1984, 1989, 1992, 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 it
8 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, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 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 the Free
19 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
31 #include "conflicts.h"
35 /* -1 stands for not specified. */
36 int expected_conflicts
= -1;
37 static char *conflicts
= NULL
;
38 struct obstack solved_conflicts_obstack
;
40 static bitset shiftset
;
41 static bitset lookaheadset
;
45 enum conflict_resolution_e
56 log_resolution (int lookahead
, int token
,
57 enum conflict_resolution_e resolution
)
59 if (report_flag
& report_solved_conflicts
)
61 /* The description of the resolution. */
64 case shift_resolution
:
66 obstack_fgrow2 (&solved_conflicts_obstack
,
68 Conflict between rule %d and token %s resolved as shift"),
69 LArule
[lookahead
]->number
,
72 case reduce_resolution
:
73 case right_resolution
:
74 obstack_fgrow2 (&solved_conflicts_obstack
,
76 Conflict between rule %d and token %s resolved as reduce"),
77 LArule
[lookahead
]->number
,
80 case nonassoc_resolution
:
81 obstack_fgrow2 (&solved_conflicts_obstack
,
83 Conflict between rule %d and token %s resolved as an error"),
84 LArule
[lookahead
]->number
,
92 case shift_resolution
:
93 obstack_fgrow2 (&solved_conflicts_obstack
,
95 LArule
[lookahead
]->prec
->tag
,
99 case reduce_resolution
:
100 obstack_fgrow2 (&solved_conflicts_obstack
,
103 LArule
[lookahead
]->prec
->tag
);
106 case left_resolution
:
107 obstack_fgrow1 (&solved_conflicts_obstack
,
109 symbols
[token
]->tag
);
112 case right_resolution
:
113 obstack_fgrow1 (&solved_conflicts_obstack
,
115 symbols
[token
]->tag
);
117 case nonassoc_resolution
:
118 obstack_fgrow1 (&solved_conflicts_obstack
,
120 symbols
[token
]->tag
);
123 obstack_sgrow (&solved_conflicts_obstack
, ".\n");
128 /*------------------------------------------------------------------.
129 | Turn off the shift recorded for the specified token in the |
130 | specified state. Used when we resolve a shift-reduce conflict in |
131 | favor of the reduction. |
132 `------------------------------------------------------------------*/
135 flush_shift (state_t
*state
, int token
)
137 shifts
*shiftp
= state
->shifts
;
140 bitset_reset (lookaheadset
, token
);
141 for (i
= 0; i
< shiftp
->nshifts
; i
++)
142 if (!SHIFT_IS_DISABLED (shiftp
, i
) && SHIFT_SYMBOL (shiftp
, i
) == token
)
143 SHIFT_DISABLE (shiftp
, i
);
147 /*-------------------------------------------------------------------.
148 | Turn off the reduce recorded for the specified token for the |
149 | specified lookahead. Used when we resolve a shift-reduce conflict |
150 | in favor of the shift. |
151 `-------------------------------------------------------------------*/
154 flush_reduce (int lookahead
, int token
)
156 bitset_reset (LA
[lookahead
], token
);
160 /*------------------------------------------------------------------.
161 | Attempt to resolve shift-reduce conflict for one rule by means of |
162 | precedence declarations. It has already been checked that the |
163 | rule has a precedence. A conflict is resolved by modifying the |
164 | shift or reduce tables so that there is no longer a conflict. |
165 `------------------------------------------------------------------*/
168 resolve_sr_conflict (state_t
*state
, int lookahead
)
171 /* find the rule to reduce by to get precedence of reduction */
172 int redprec
= LArule
[lookahead
]->prec
->prec
;
173 errs
*errp
= errs_new (ntokens
+ 1);
176 for (i
= 0; i
< ntokens
; i
++)
177 if (bitset_test (LA
[lookahead
], i
)
178 && bitset_test (lookaheadset
, i
)
181 /* Shift-reduce conflict occurs for token number i
182 and it has a precedence.
183 The precedence of shifting is that of token i. */
184 if (symbols
[i
]->prec
< redprec
)
186 log_resolution (lookahead
, i
, reduce_resolution
);
187 flush_shift (state
, i
);
189 else if (symbols
[i
]->prec
> redprec
)
191 log_resolution (lookahead
, i
, shift_resolution
);
192 flush_reduce (lookahead
, i
);
195 /* Matching precedence levels.
196 For left association, keep only the reduction.
197 For right association, keep only the shift.
198 For nonassociation, keep neither. */
200 switch (symbols
[i
]->assoc
)
203 log_resolution (lookahead
, i
, right_resolution
);
204 flush_reduce (lookahead
, i
);
208 log_resolution (lookahead
, i
, left_resolution
);
209 flush_shift (state
, i
);
213 log_resolution (lookahead
, i
, nonassoc_resolution
);
214 flush_shift (state
, i
);
215 flush_reduce (lookahead
, i
);
216 /* Record an explicit error for this token. */
217 errp
->errs
[errp
->nerrs
++] = i
;
221 assert (symbols
[i
]->assoc
!= undef_assoc
);
226 /* Some tokens have been explicitly made errors. Allocate a
227 permanent errs structure for this state, to record them. */
228 state
->errs
= errs_dup (errp
);
231 if (obstack_object_size (&solved_conflicts_obstack
))
233 obstack_1grow (&solved_conflicts_obstack
, '\0');
234 state
->solved_conflicts
= obstack_finish (&solved_conflicts_obstack
);
240 set_conflicts (state_t
*state
)
245 if (state
->consistent
)
248 bitset_zero (lookaheadset
);
250 shiftp
= state
->shifts
;
251 for (i
= 0; i
< shiftp
->nshifts
&& SHIFT_IS_SHIFT (shiftp
, i
); i
++)
252 if (!SHIFT_IS_DISABLED (shiftp
, i
))
253 bitset_set (lookaheadset
, SHIFT_SYMBOL (shiftp
, i
));
255 /* Loop over all rules which require lookahead in this state. First
256 check for shift-reduce conflict, and try to resolve using
258 for (i
= 0; i
< state
->nlookaheads
; ++i
)
259 if (LArule
[state
->lookaheadsp
+ i
]->prec
260 && LArule
[state
->lookaheadsp
+ i
]->prec
->prec
261 && !bitset_disjoint_p (LA
[state
->lookaheadsp
+ i
], lookaheadset
))
263 resolve_sr_conflict (state
, state
->lookaheadsp
+ i
);
267 /* Loop over all rules which require lookahead in this state. Check
268 for conflicts not resolved above. */
269 for (i
= 0; i
< state
->nlookaheads
; ++i
)
271 if (!bitset_disjoint_p (LA
[state
->lookaheadsp
+ i
], lookaheadset
))
272 conflicts
[state
->number
] = 1;
274 bitset_or (lookaheadset
, lookaheadset
, LA
[state
->lookaheadsp
+ i
]);
279 conflicts_solve (void)
283 conflicts
= XCALLOC (char, nstates
);
284 shiftset
= bitset_create (ntokens
, BITSET_FIXED
);
285 lookaheadset
= bitset_create (ntokens
, BITSET_FIXED
);
286 obstack_init (&solved_conflicts_obstack
);
288 for (i
= 0; i
< nstates
; i
++)
289 set_conflicts (states
[i
]);
293 /*---------------------------------------------.
294 | Count the number of shift/reduce conflicts. |
295 `---------------------------------------------*/
298 count_sr_conflicts (state_t
*state
)
302 shifts
*shiftp
= state
->shifts
;
307 bitset_zero (lookaheadset
);
308 bitset_zero (shiftset
);
310 for (i
= 0; i
< shiftp
->nshifts
&& SHIFT_IS_SHIFT (shiftp
, i
); i
++)
311 if (!SHIFT_IS_DISABLED (shiftp
, i
))
312 bitset_set (shiftset
, SHIFT_SYMBOL (shiftp
, i
));
314 for (i
= 0; i
< state
->nlookaheads
; ++i
)
315 bitset_or (lookaheadset
, lookaheadset
, LA
[state
->lookaheadsp
+ i
]);
317 bitset_and (lookaheadset
, lookaheadset
, shiftset
);
319 src_count
= bitset_count (lookaheadset
);
325 /*----------------------------------------------.
326 | Count the number of reduce/reduce conflicts. |
327 `----------------------------------------------*/
330 count_rr_conflicts (state_t
*state
)
335 if (state
->nlookaheads
< 2)
338 for (i
= 0; i
< ntokens
; i
++)
342 for (j
= 0; j
< state
->nlookaheads
; ++j
)
343 if (bitset_test (LA
[state
->lookaheadsp
+ j
], i
))
353 /*--------------------------------------------------------------.
354 | Return a human readable string which reports shift/reduce and |
355 | reduce/reduce conflict numbers (SRC_NUM, RRC_NUM). |
356 `--------------------------------------------------------------*/
359 conflict_report (int src_num
, int rrc_num
)
361 static char res
[4096];
366 sprintf (cp
, ngettext ("%d shift/reduce conflict",
367 "%d shift/reduce conflicts", src_num
), src_num
);
371 if (src_num
> 0 && rrc_num
> 0)
373 sprintf (cp
, " %s ", _("and"));
379 sprintf (cp
, ngettext ("%d reduce/reduce conflict",
380 "%d reduce/reduce conflicts", rrc_num
), rrc_num
);
392 /*-----------------------------------------------------------.
393 | Output the detailed description of states with conflicts. |
394 `-----------------------------------------------------------*/
397 conflicts_output (FILE *out
)
399 bool printed_sth
= FALSE
;
401 for (i
= 0; i
< nstates
; i
++)
404 fprintf (out
, _("State %d contains "), i
);
405 fputs (conflict_report (count_sr_conflicts (states
[i
]),
406 count_rr_conflicts (states
[i
])), out
);
414 /*------------------------------------------.
415 | Reporting the total number of conflicts. |
416 `------------------------------------------*/
419 conflicts_print (void)
423 /* Is the number of SR conflicts OK? Either EXPECTED_CONFLICTS is
424 not set, and then we want 0 SR, or else it is specified, in which
425 case we want equality. */
431 /* Conflicts by state. */
432 for (i
= 0; i
< nstates
; i
++)
435 src_total
+= count_sr_conflicts (states
[i
]);
436 rrc_total
+= count_rr_conflicts (states
[i
]);
439 src_ok
= src_total
== (expected_conflicts
== -1 ? 0 : expected_conflicts
);
441 /* If there are no RR conflicts, and as many SR conflicts as
442 expected, then there is nothing to report. */
443 if (!rrc_total
&& src_ok
)
446 /* Report the total number of conflicts on STDERR. */
449 /* If invoked with `--yacc', use the output format specified by
451 fprintf (stderr
, _("conflicts: "));
453 fprintf (stderr
, _(" %d shift/reduce"), src_total
);
454 if (src_total
> 0 && rrc_total
> 0)
455 fprintf (stderr
, ",");
457 fprintf (stderr
, _(" %d reduce/reduce"), rrc_total
);
462 fprintf (stderr
, _("%s contains "), infile
);
463 fputs (conflict_report (src_total
, rrc_total
), stderr
);
466 if (expected_conflicts
!= -1 && !src_ok
)
468 complain_message_count
++;
469 fprintf (stderr
, ngettext ("expected %d shift/reduce conflict\n",
470 "expected %d shift/reduce conflicts\n",
478 conflicts_free (void)
481 bitset_free (shiftset
);
482 bitset_free (lookaheadset
);
483 obstack_free (&solved_conflicts_obstack
, NULL
);