]> git.saurik.com Git - bison.git/blob - src/conflicts.c
876310f5a143ba231c743cf3e29d40e8ce63cf70
[bison.git] / src / conflicts.c
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.
4
5 This file is part of Bison, the GNU Compiler Compiler.
6
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)
10 any later version.
11
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.
16
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
20 02111-1307, USA. */
21
22 #include "system.h"
23 #include "bitset.h"
24 #include "complain.h"
25 #include "getargs.h"
26 #include "symtab.h"
27 #include "files.h"
28 #include "gram.h"
29 #include "state.h"
30 #include "lalr.h"
31 #include "conflicts.h"
32 #include "reader.h"
33 #include "LR0.h"
34
35 /* -1 stands for not specified. */
36 int expected_conflicts = -1;
37 static char *conflicts = NULL;
38 struct obstack solved_conflicts_obstack;
39
40 static bitset shiftset;
41 static bitset lookaheadset;
42
43 \f
44
45 enum conflict_resolution_e
46 {
47 shift_resolution,
48 reduce_resolution,
49 left_resolution,
50 right_resolution,
51 nonassoc_resolution
52 };
53
54
55 static inline void
56 log_resolution (int lookahead, int token,
57 enum conflict_resolution_e resolution)
58 {
59 if (report_flag & report_solved_conflicts)
60 {
61 /* The description of the resolution. */
62 switch (resolution)
63 {
64 case shift_resolution:
65 case left_resolution:
66 obstack_fgrow2 (&solved_conflicts_obstack,
67 _("\
68 Conflict between rule %d and token %s resolved as shift"),
69 LArule[lookahead]->number,
70 symbols[token]->tag);
71 break;
72 case reduce_resolution:
73 case right_resolution:
74 obstack_fgrow2 (&solved_conflicts_obstack,
75 _("\
76 Conflict between rule %d and token %s resolved as reduce"),
77 LArule[lookahead]->number,
78 symbols[token]->tag);
79 break;
80 case nonassoc_resolution:
81 obstack_fgrow2 (&solved_conflicts_obstack,
82 _("\
83 Conflict between rule %d and token %s resolved as an error"),
84 LArule[lookahead]->number,
85 symbols[token]->tag);
86 break;
87 }
88
89 /* The reason. */
90 switch (resolution)
91 {
92 case shift_resolution:
93 obstack_fgrow2 (&solved_conflicts_obstack,
94 " (%s < %s)",
95 LArule[lookahead]->prec->tag,
96 symbols[token]->tag);
97 break;
98
99 case reduce_resolution:
100 obstack_fgrow2 (&solved_conflicts_obstack,
101 " (%s < %s)",
102 symbols[token]->tag,
103 LArule[lookahead]->prec->tag);
104 break;
105
106 case left_resolution:
107 obstack_fgrow1 (&solved_conflicts_obstack,
108 " (%%left %s)",
109 symbols[token]->tag);
110 break;
111
112 case right_resolution:
113 obstack_fgrow1 (&solved_conflicts_obstack,
114 " (%%right %s)",
115 symbols[token]->tag);
116 break;
117 case nonassoc_resolution:
118 obstack_fgrow1 (&solved_conflicts_obstack,
119 " (%%nonassoc %s)",
120 symbols[token]->tag);
121 break;
122 }
123 obstack_sgrow (&solved_conflicts_obstack, ".\n");
124 }
125 }
126
127
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 `------------------------------------------------------------------*/
133
134 static void
135 flush_shift (state_t *state, int token)
136 {
137 shifts *shiftp = state->shifts;
138 int i;
139
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);
144 }
145
146
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 `-------------------------------------------------------------------*/
152
153 static void
154 flush_reduce (int lookahead, int token)
155 {
156 bitset_reset (LA[lookahead], token);
157 }
158
159
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 `------------------------------------------------------------------*/
166
167 static void
168 resolve_sr_conflict (state_t *state, int lookahead)
169 {
170 int i;
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);
174 errp->nerrs = 0;
175
176 for (i = 0; i < ntokens; i++)
177 if (bitset_test (LA[lookahead], i)
178 && bitset_test (lookaheadset, i)
179 && symbols[i]->prec)
180 {
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)
185 {
186 log_resolution (lookahead, i, reduce_resolution);
187 flush_shift (state, i);
188 }
189 else if (symbols[i]->prec > redprec)
190 {
191 log_resolution (lookahead, i, shift_resolution);
192 flush_reduce (lookahead, i);
193 }
194 else
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. */
199
200 switch (symbols[i]->assoc)
201 {
202 case right_assoc:
203 log_resolution (lookahead, i, right_resolution);
204 flush_reduce (lookahead, i);
205 break;
206
207 case left_assoc:
208 log_resolution (lookahead, i, left_resolution);
209 flush_shift (state, i);
210 break;
211
212 case non_assoc:
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;
218 break;
219 }
220 }
221
222 /* Some tokens have been explicitly made errors. Allocate a
223 permanent errs structure for this state, to record them. */
224 state->errs = errs_dup (errp);
225 free (errp);
226
227 if (obstack_object_size (&solved_conflicts_obstack))
228 {
229 obstack_1grow (&solved_conflicts_obstack, '\0');
230 state->solved_conflicts = obstack_finish (&solved_conflicts_obstack);
231 }
232 }
233
234
235 static void
236 set_conflicts (state_t *state)
237 {
238 int i;
239 shifts *shiftp;
240
241 if (state->consistent)
242 return;
243
244 bitset_zero (lookaheadset);
245
246 shiftp = state->shifts;
247 for (i = 0; i < shiftp->nshifts && SHIFT_IS_SHIFT (shiftp, i); i++)
248 if (!SHIFT_IS_DISABLED (shiftp, i))
249 bitset_set (lookaheadset, SHIFT_SYMBOL (shiftp, i));
250
251 /* Loop over all rules which require lookahead in this state. First
252 check for shift-reduce conflict, and try to resolve using
253 precedence */
254 for (i = 0; i < state->nlookaheads; ++i)
255 if (LArule[state->lookaheadsp + i]->prec
256 && LArule[state->lookaheadsp + i]->prec->prec
257 && !bitset_disjoint_p (LA[state->lookaheadsp + i], lookaheadset))
258 {
259 resolve_sr_conflict (state, state->lookaheadsp + i);
260 break;
261 }
262
263 /* Loop over all rules which require lookahead in this state. Check
264 for conflicts not resolved above. */
265 for (i = 0; i < state->nlookaheads; ++i)
266 {
267 if (!bitset_disjoint_p (LA[state->lookaheadsp + i], lookaheadset))
268 conflicts[state->number] = 1;
269
270 bitset_or (lookaheadset, lookaheadset, LA[state->lookaheadsp + i]);
271 }
272 }
273
274 void
275 conflicts_solve (void)
276 {
277 size_t i;
278
279 conflicts = XCALLOC (char, nstates);
280 shiftset = bitset_create (ntokens, BITSET_FIXED);
281 lookaheadset = bitset_create (ntokens, BITSET_FIXED);
282 obstack_init (&solved_conflicts_obstack);
283
284 for (i = 0; i < nstates; i++)
285 set_conflicts (states[i]);
286 }
287
288
289 /*---------------------------------------------.
290 | Count the number of shift/reduce conflicts. |
291 `---------------------------------------------*/
292
293 static int
294 count_sr_conflicts (state_t *state)
295 {
296 int i;
297 int src_count = 0;
298 shifts *shiftp = state->shifts;
299
300 if (!shiftp)
301 return 0;
302
303 bitset_zero (lookaheadset);
304 bitset_zero (shiftset);
305
306 for (i = 0; i < shiftp->nshifts && SHIFT_IS_SHIFT (shiftp, i); i++)
307 if (!SHIFT_IS_DISABLED (shiftp, i))
308 bitset_set (shiftset, SHIFT_SYMBOL (shiftp, i));
309
310 for (i = 0; i < state->nlookaheads; ++i)
311 bitset_or (lookaheadset, lookaheadset, LA[state->lookaheadsp + i]);
312
313 bitset_and (lookaheadset, lookaheadset, shiftset);
314
315 src_count = bitset_count (lookaheadset);
316
317 return src_count;
318 }
319
320
321 /*----------------------------------------------.
322 | Count the number of reduce/reduce conflicts. |
323 `----------------------------------------------*/
324
325 static int
326 count_rr_conflicts (state_t *state)
327 {
328 int i;
329 int rrc_count = 0;
330
331 if (state->nlookaheads < 2)
332 return 0;
333
334 for (i = 0; i < ntokens; i++)
335 {
336 int count = 0;
337 int j;
338 for (j = 0; j < state->nlookaheads; ++j)
339 if (bitset_test (LA[state->lookaheadsp + j], i))
340 count++;
341
342 if (count >= 2)
343 rrc_count++;
344 }
345
346 return rrc_count;
347 }
348
349 /*--------------------------------------------------------------.
350 | Return a human readable string which reports shift/reduce and |
351 | reduce/reduce conflict numbers (SRC_NUM, RRC_NUM). |
352 `--------------------------------------------------------------*/
353
354 static const char *
355 conflict_report (int src_num, int rrc_num)
356 {
357 static char res[4096];
358 char *cp = res;
359
360 if (src_num >= 1)
361 {
362 sprintf (cp, ngettext ("%d shift/reduce conflict",
363 "%d shift/reduce conflicts", src_num), src_num);
364 cp += strlen (cp);
365 }
366
367 if (src_num > 0 && rrc_num > 0)
368 {
369 sprintf (cp, " %s ", _("and"));
370 cp += strlen (cp);
371 }
372
373 if (rrc_num >= 1)
374 {
375 sprintf (cp, ngettext ("%d reduce/reduce conflict",
376 "%d reduce/reduce conflicts", rrc_num), rrc_num);
377 cp += strlen (cp);
378 }
379
380 *cp++ = '.';
381 *cp++ = '\n';
382 *cp++ = '\0';
383
384 return res;
385 }
386
387
388 /*-----------------------------------------------------------.
389 | Output the detailed description of states with conflicts. |
390 `-----------------------------------------------------------*/
391
392 void
393 conflicts_output (FILE *out)
394 {
395 bool printed_sth = FALSE;
396 size_t i;
397 for (i = 0; i < nstates; i++)
398 if (conflicts[i])
399 {
400 fprintf (out, _("State %d contains "), i);
401 fputs (conflict_report (count_sr_conflicts (states[i]),
402 count_rr_conflicts (states[i])), out);
403 printed_sth = TRUE;
404 }
405 if (printed_sth)
406 fputs ("\n\n", out);
407 }
408
409
410 /*------------------------------------------.
411 | Reporting the total number of conflicts. |
412 `------------------------------------------*/
413
414 void
415 conflicts_print (void)
416 {
417 size_t i;
418
419 /* Is the number of SR conflicts OK? Either EXPECTED_CONFLICTS is
420 not set, and then we want 0 SR, or else it is specified, in which
421 case we want equality. */
422 int src_ok = 0;
423
424 int src_total = 0;
425 int rrc_total = 0;
426
427 /* Conflicts by state. */
428 for (i = 0; i < nstates; i++)
429 if (conflicts[i])
430 {
431 src_total += count_sr_conflicts (states[i]);
432 rrc_total += count_rr_conflicts (states[i]);
433 }
434
435 src_ok = src_total == (expected_conflicts == -1 ? 0 : expected_conflicts);
436
437 /* If there are no RR conflicts, and as many SR conflicts as
438 expected, then there is nothing to report. */
439 if (!rrc_total && src_ok)
440 return;
441
442 /* Report the total number of conflicts on STDERR. */
443 if (yacc_flag)
444 {
445 /* If invoked with `--yacc', use the output format specified by
446 POSIX. */
447 fprintf (stderr, _("conflicts: "));
448 if (src_total > 0)
449 fprintf (stderr, _(" %d shift/reduce"), src_total);
450 if (src_total > 0 && rrc_total > 0)
451 fprintf (stderr, ",");
452 if (rrc_total > 0)
453 fprintf (stderr, _(" %d reduce/reduce"), rrc_total);
454 putc ('\n', stderr);
455 }
456 else
457 {
458 fprintf (stderr, _("%s contains "), infile);
459 fputs (conflict_report (src_total, rrc_total), stderr);
460 }
461
462 if (expected_conflicts != -1 && !src_ok)
463 {
464 complain_message_count++;
465 fprintf (stderr, ngettext ("expected %d shift/reduce conflict\n",
466 "expected %d shift/reduce conflicts\n",
467 expected_conflicts),
468 expected_conflicts);
469 }
470 }
471
472
473 void
474 conflicts_free (void)
475 {
476 XFREE (conflicts);
477 bitset_free (shiftset);
478 bitset_free (lookaheadset);
479 obstack_free (&solved_conflicts_obstack, NULL);
480 }