]>
Commit | Line | Data |
---|---|---|
08089d5d | 1 | /* Find and resolve or report look-ahead conflicts for bison, |
602bbf31 | 2 | Copyright 1984, 1989, 1992, 2000, 2001, 2002 Free Software Foundation, Inc. |
08089d5d | 3 | |
ceed8467 | 4 | This file is part of Bison, the GNU Compiler Compiler. |
08089d5d | 5 | |
ceed8467 AD |
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. | |
08089d5d | 10 | |
ceed8467 AD |
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. | |
08089d5d | 15 | |
ceed8467 AD |
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. */ | |
08089d5d | 20 | |
08089d5d | 21 | #include "system.h" |
602bbf31 | 22 | #include "bitset.h" |
7da99ede | 23 | #include "complain.h" |
ceed8467 | 24 | #include "getargs.h" |
0e78e603 | 25 | #include "symtab.h" |
08089d5d DM |
26 | #include "files.h" |
27 | #include "gram.h" | |
28 | #include "state.h" | |
720d742f | 29 | #include "lalr.h" |
0619caf0 | 30 | #include "conflicts.h" |
b2ca4022 AD |
31 | #include "reader.h" |
32 | #include "LR0.h" | |
d2729d44 | 33 | |
7da99ede AD |
34 | /* -1 stands for not specified. */ |
35 | int expected_conflicts = -1; | |
342b8b6e | 36 | static char *conflicts = NULL; |
08089d5d | 37 | |
b86796bf AD |
38 | static bitset shiftset; |
39 | static bitset lookaheadset; | |
c29240e7 | 40 | \f |
08089d5d | 41 | |
c29240e7 | 42 | static inline void |
065fbd27 | 43 | log_resolution (state_t *state, int LAno, int token, char *resolution) |
08089d5d | 44 | { |
64d15509 AD |
45 | if (verbose_flag) |
46 | obstack_fgrow4 (&output_obstack, | |
47 | _("\ | |
c29240e7 | 48 | Conflict in state %d between rule %d and token %s resolved as %s.\n"), |
ad949da9 AD |
49 | state->number, LAruleno[LAno], symbols[token]->tag, |
50 | resolution); | |
08089d5d DM |
51 | } |
52 | ||
53 | ||
c29240e7 AD |
54 | /*------------------------------------------------------------------. |
55 | | Turn off the shift recorded for the specified token in the | | |
56 | | specified state. Used when we resolve a shift-reduce conflict in | | |
57 | | favor of the reduction. | | |
58 | `------------------------------------------------------------------*/ | |
59 | ||
4a120d45 | 60 | static void |
065fbd27 | 61 | flush_shift (state_t *state, int token) |
08089d5d | 62 | { |
065fbd27 | 63 | shifts *shiftp = state->shifts; |
9f136c07 | 64 | int i; |
c29240e7 | 65 | |
b86796bf | 66 | bitset_reset (lookaheadset, token); |
d954473d AD |
67 | for (i = 0; i < shiftp->nshifts; i++) |
68 | if (!SHIFT_IS_DISABLED (shiftp, i) && SHIFT_SYMBOL (shiftp, i) == token) | |
69 | SHIFT_DISABLE (shiftp, i); | |
08089d5d DM |
70 | } |
71 | ||
72 | ||
709ae8c6 AD |
73 | /*-------------------------------------------------------------------. |
74 | | Turn off the reduce recorded for the specified token for the | | |
75 | | specified lookahead. Used when we resolve a shift-reduce conflict | | |
76 | | in favor of the shift. | | |
77 | `-------------------------------------------------------------------*/ | |
78 | ||
79 | static void | |
80 | flush_reduce (int lookahead, int token) | |
81 | { | |
602bbf31 | 82 | bitset_reset (LA[lookahead], token); |
709ae8c6 AD |
83 | } |
84 | ||
85 | ||
c29240e7 AD |
86 | /*------------------------------------------------------------------. |
87 | | Attempt to resolve shift-reduce conflict for one rule by means of | | |
88 | | precedence declarations. It has already been checked that the | | |
89 | | rule has a precedence. A conflict is resolved by modifying the | | |
90 | | shift or reduce tables so that there is no longer a conflict. | | |
91 | `------------------------------------------------------------------*/ | |
08089d5d | 92 | |
4a120d45 | 93 | static void |
065fbd27 | 94 | resolve_sr_conflict (state_t *state, int lookahead) |
08089d5d | 95 | { |
c29240e7 | 96 | int i; |
9f136c07 | 97 | /* find the rule to reduce by to get precedence of reduction */ |
1a2b5d37 | 98 | int redprec = rules[LAruleno[lookahead]].prec; |
2cec70b9 AD |
99 | errs *errp = errs_new (ntokens + 1); |
100 | errp->nerrs = 0; | |
08089d5d | 101 | |
08089d5d | 102 | for (i = 0; i < ntokens; i++) |
602bbf31 | 103 | if (bitset_test (LA[lookahead], i) |
b86796bf | 104 | && bitset_test (lookaheadset, i) |
0e78e603 | 105 | && symbols[i]->prec) |
92b16366 | 106 | { |
709ae8c6 AD |
107 | /* Shift-reduce conflict occurs for token number i |
108 | and it has a precedence. | |
109 | The precedence of shifting is that of token i. */ | |
0e78e603 | 110 | if (symbols[i]->prec < redprec) |
92b16366 | 111 | { |
709ae8c6 | 112 | log_resolution (state, lookahead, i, _("reduce")); |
92b16366 AD |
113 | flush_shift (state, i); |
114 | } | |
0e78e603 | 115 | else if (symbols[i]->prec > redprec) |
92b16366 | 116 | { |
709ae8c6 AD |
117 | log_resolution (state, lookahead, i, _("shift")); |
118 | flush_reduce (lookahead, i); | |
92b16366 AD |
119 | } |
120 | else | |
709ae8c6 AD |
121 | /* Matching precedence levels. |
122 | For left association, keep only the reduction. | |
123 | For right association, keep only the shift. | |
124 | For nonassociation, keep neither. */ | |
125 | ||
5a670b1e | 126 | switch (symbols[i]->assoc) |
709ae8c6 AD |
127 | { |
128 | case right_assoc: | |
129 | log_resolution (state, lookahead, i, _("shift")); | |
130 | flush_reduce (lookahead, i); | |
131 | break; | |
132 | ||
133 | case left_assoc: | |
134 | log_resolution (state, lookahead, i, _("reduce")); | |
135 | flush_shift (state, i); | |
136 | break; | |
137 | ||
138 | case non_assoc: | |
139 | log_resolution (state, lookahead, i, _("an error")); | |
140 | flush_shift (state, i); | |
141 | flush_reduce (lookahead, i); | |
142 | /* Record an explicit error for this token. */ | |
2cec70b9 | 143 | errp->errs[errp->nerrs++] = i; |
709ae8c6 AD |
144 | break; |
145 | } | |
92b16366 AD |
146 | } |
147 | ||
92b16366 AD |
148 | /* Some tokens have been explicitly made errors. Allocate a |
149 | permanent errs structure for this state, to record them. */ | |
2cec70b9 | 150 | state->errs = errs_dup (errp); |
c29240e7 | 151 | free (errp); |
08089d5d DM |
152 | } |
153 | ||
154 | ||
4a120d45 | 155 | static void |
065fbd27 | 156 | set_conflicts (state_t *state) |
08089d5d | 157 | { |
d8cf039f | 158 | int i, j; |
c29240e7 | 159 | shifts *shiftp; |
c29240e7 | 160 | |
065fbd27 | 161 | if (state->consistent) |
c29240e7 | 162 | return; |
08089d5d | 163 | |
b86796bf | 164 | bitset_zero (lookaheadset); |
08089d5d | 165 | |
065fbd27 | 166 | shiftp = state->shifts; |
d954473d AD |
167 | for (i = 0; i < shiftp->nshifts && SHIFT_IS_SHIFT (shiftp, i); i++) |
168 | if (!SHIFT_IS_DISABLED (shiftp, i)) | |
b86796bf | 169 | bitset_set (lookaheadset, SHIFT_SYMBOL (shiftp, i)); |
08089d5d | 170 | |
c29240e7 AD |
171 | /* Loop over all rules which require lookahead in this state. First |
172 | check for shift-reduce conflict, and try to resolve using | |
173 | precedence */ | |
065fbd27 | 174 | for (i = 0; i < state->nlookaheads; ++i) |
1a2b5d37 | 175 | if (rules[LAruleno[state->lookaheadsp + i]].prec) |
602bbf31 AD |
176 | for (j = 0; j < ntokens; ++j) |
177 | if (bitset_test (LA[state->lookaheadsp + i], j) | |
b86796bf | 178 | && bitset_test (lookaheadset, j)) |
c29240e7 | 179 | { |
065fbd27 | 180 | resolve_sr_conflict (state, state->lookaheadsp + i); |
d8cf039f | 181 | break; |
c29240e7 | 182 | } |
08089d5d | 183 | |
08089d5d | 184 | |
c29240e7 AD |
185 | /* Loop over all rules which require lookahead in this state. Check |
186 | for conflicts not resolved above. */ | |
065fbd27 | 187 | for (i = 0; i < state->nlookaheads; ++i) |
08089d5d | 188 | { |
602bbf31 AD |
189 | for (j = 0; j < ntokens; ++j) |
190 | if (bitset_test (LA[state->lookaheadsp + i], j) | |
b86796bf | 191 | && bitset_test (lookaheadset, j)) |
065fbd27 | 192 | conflicts[state->number] = 1; |
08089d5d | 193 | |
602bbf31 AD |
194 | for (j = 0; j < ntokens; ++j) |
195 | if (bitset_test (LA[state->lookaheadsp + i], j)) | |
b86796bf | 196 | bitset_set (lookaheadset, j); |
c29240e7 AD |
197 | } |
198 | } | |
08089d5d DM |
199 | |
200 | void | |
342b8b6e | 201 | solve_conflicts (void) |
08089d5d | 202 | { |
602bbf31 | 203 | size_t i; |
08089d5d | 204 | |
d7913476 | 205 | conflicts = XCALLOC (char, nstates); |
b86796bf AD |
206 | shiftset = bitset_create (ntokens, BITSET_FIXED); |
207 | bitset_zero (shiftset); | |
208 | lookaheadset = bitset_create (ntokens, BITSET_FIXED); | |
209 | bitset_zero (lookaheadset); | |
08089d5d | 210 | |
c29240e7 | 211 | for (i = 0; i < nstates; i++) |
29e88316 | 212 | set_conflicts (states[i]); |
08089d5d DM |
213 | } |
214 | ||
215 | ||
c29240e7 AD |
216 | /*---------------------------------------------. |
217 | | Count the number of shift/reduce conflicts. | | |
218 | `---------------------------------------------*/ | |
219 | ||
0df87bb6 | 220 | static int |
065fbd27 | 221 | count_sr_conflicts (state_t *state) |
08089d5d | 222 | { |
52afa962 | 223 | int i, k; |
0df87bb6 | 224 | int src_count = 0; |
065fbd27 | 225 | shifts *shiftp = state->shifts; |
08089d5d | 226 | |
c29240e7 | 227 | if (!shiftp) |
0df87bb6 | 228 | return 0; |
08089d5d | 229 | |
b86796bf AD |
230 | bitset_zero (lookaheadset); |
231 | bitset_zero (shiftset); | |
08089d5d | 232 | |
52afa962 | 233 | for (i = 0; i < shiftp->nshifts && SHIFT_IS_SHIFT (shiftp, i); i++) |
9839bbe5 | 234 | if (!SHIFT_IS_DISABLED (shiftp, i)) |
b86796bf | 235 | bitset_set (shiftset, SHIFT_SYMBOL (shiftp, i)); |
08089d5d | 236 | |
065fbd27 | 237 | for (i = 0; i < state->nlookaheads; ++i) |
602bbf31 AD |
238 | for (k = 0; k < ntokens; ++k) |
239 | if (bitset_test (LA[state->lookaheadsp + i], k)) | |
b86796bf | 240 | bitset_set (lookaheadset, k); |
08089d5d | 241 | |
b86796bf | 242 | bitset_and (lookaheadset, lookaheadset, shiftset); |
08089d5d | 243 | |
08089d5d | 244 | for (i = 0; i < ntokens; i++) |
b86796bf | 245 | if (bitset_test (lookaheadset, i)) |
52afa962 | 246 | src_count++; |
0df87bb6 AD |
247 | |
248 | return src_count; | |
08089d5d DM |
249 | } |
250 | ||
251 | ||
c29240e7 AD |
252 | /*----------------------------------------------. |
253 | | Count the number of reduce/reduce conflicts. | | |
254 | `----------------------------------------------*/ | |
255 | ||
0df87bb6 | 256 | static int |
065fbd27 | 257 | count_rr_conflicts (state_t *state) |
08089d5d | 258 | { |
c29240e7 | 259 | int i; |
0df87bb6 | 260 | int rrc_count = 0; |
08089d5d | 261 | |
065fbd27 | 262 | if (state->nlookaheads < 2) |
0df87bb6 | 263 | return 0; |
08089d5d | 264 | |
08089d5d DM |
265 | for (i = 0; i < ntokens; i++) |
266 | { | |
0df87bb6 AD |
267 | int count = 0; |
268 | int j; | |
065fbd27 | 269 | for (j = 0; j < state->nlookaheads; ++j) |
602bbf31 | 270 | if (bitset_test (LA[state->lookaheadsp + j], i)) |
52afa962 | 271 | count++; |
08089d5d | 272 | |
c29240e7 AD |
273 | if (count >= 2) |
274 | rrc_count++; | |
08089d5d | 275 | } |
0df87bb6 AD |
276 | |
277 | return rrc_count; | |
08089d5d DM |
278 | } |
279 | ||
ff4423cc AD |
280 | /*--------------------------------------------------------------. |
281 | | Return a human readable string which reports shift/reduce and | | |
282 | | reduce/reduce conflict numbers (SRC_NUM, RRC_NUM). | | |
283 | `--------------------------------------------------------------*/ | |
c29240e7 | 284 | |
ff4423cc AD |
285 | static const char * |
286 | conflict_report (int src_num, int rrc_num) | |
c29240e7 | 287 | { |
ff4423cc AD |
288 | static char res[4096]; |
289 | char *cp = res; | |
290 | ||
7da99ede | 291 | if (src_num >= 1) |
22c821f3 | 292 | { |
7da99ede AD |
293 | sprintf (cp, ngettext ("%d shift/reduce conflict", |
294 | "%d shift/reduce conflicts", src_num), src_num); | |
22c821f3 AD |
295 | cp += strlen (cp); |
296 | } | |
c29240e7 | 297 | |
0619caf0 | 298 | if (src_num > 0 && rrc_num > 0) |
22c821f3 | 299 | { |
7da99ede | 300 | sprintf (cp, " %s ", _("and")); |
22c821f3 AD |
301 | cp += strlen (cp); |
302 | } | |
c29240e7 | 303 | |
7da99ede | 304 | if (rrc_num >= 1) |
22c821f3 | 305 | { |
7da99ede AD |
306 | sprintf (cp, ngettext ("%d reduce/reduce conflict", |
307 | "%d reduce/reduce conflicts", rrc_num), rrc_num); | |
22c821f3 AD |
308 | cp += strlen (cp); |
309 | } | |
ff4423cc AD |
310 | |
311 | *cp++ = '.'; | |
312 | *cp++ = '\n'; | |
313 | *cp++ = '\0'; | |
c29240e7 | 314 | |
ff4423cc | 315 | return res; |
c29240e7 AD |
316 | } |
317 | ||
318 | ||
0df87bb6 AD |
319 | /*-----------------------------------------------------------. |
320 | | Output the detailed description of states with conflicts. | | |
321 | `-----------------------------------------------------------*/ | |
c29240e7 AD |
322 | |
323 | void | |
0df87bb6 | 324 | conflicts_output (FILE *out) |
c29240e7 | 325 | { |
d2d1b42b | 326 | bool printed_sth = FALSE; |
602bbf31 | 327 | size_t i; |
0df87bb6 AD |
328 | for (i = 0; i < nstates; i++) |
329 | if (conflicts[i]) | |
330 | { | |
7da99ede | 331 | fprintf (out, _("State %d contains "), i); |
29e88316 AD |
332 | fputs (conflict_report (count_sr_conflicts (states[i]), |
333 | count_rr_conflicts (states[i])), out); | |
d2d1b42b | 334 | printed_sth = TRUE; |
0df87bb6 | 335 | } |
d2d1b42b AD |
336 | if (printed_sth) |
337 | fputs ("\n\n", out); | |
0df87bb6 | 338 | } |
c29240e7 | 339 | |
c29240e7 | 340 | |
0df87bb6 AD |
341 | /*------------------------------------------. |
342 | | Reporting the total number of conflicts. | | |
343 | `------------------------------------------*/ | |
0619caf0 | 344 | |
0df87bb6 AD |
345 | void |
346 | conflicts_print (void) | |
347 | { | |
602bbf31 | 348 | size_t i; |
0df87bb6 | 349 | |
a034c8b8 AD |
350 | /* Is the number of SR conflicts OK? Either EXPECTED_CONFLICTS is |
351 | not set, and then we want 0 SR, or else it is specified, in which | |
352 | case we want equality. */ | |
353 | int src_ok = 0; | |
354 | ||
0df87bb6 AD |
355 | int src_total = 0; |
356 | int rrc_total = 0; | |
357 | ||
358 | /* Conflicts by state. */ | |
359 | for (i = 0; i < nstates; i++) | |
360 | if (conflicts[i]) | |
361 | { | |
29e88316 AD |
362 | src_total += count_sr_conflicts (states[i]); |
363 | rrc_total += count_rr_conflicts (states[i]); | |
0df87bb6 | 364 | } |
c29240e7 | 365 | |
a034c8b8 AD |
366 | src_ok = src_total == (expected_conflicts == -1 ? 0 : expected_conflicts); |
367 | ||
368 | /* If there are no RR conflicts, and as many SR conflicts as | |
369 | expected, then there is nothing to report. */ | |
370 | if (!rrc_total && src_ok) | |
371 | return; | |
372 | ||
0619caf0 | 373 | /* Report the total number of conflicts on STDERR. */ |
a034c8b8 | 374 | if (yacc_flag) |
09b503c8 | 375 | { |
a034c8b8 AD |
376 | /* If invoked with `--yacc', use the output format specified by |
377 | POSIX. */ | |
378 | fprintf (stderr, _("conflicts: ")); | |
379 | if (src_total > 0) | |
380 | fprintf (stderr, _(" %d shift/reduce"), src_total); | |
381 | if (src_total > 0 && rrc_total > 0) | |
382 | fprintf (stderr, ","); | |
383 | if (rrc_total > 0) | |
384 | fprintf (stderr, _(" %d reduce/reduce"), rrc_total); | |
385 | putc ('\n', stderr); | |
386 | } | |
387 | else | |
388 | { | |
389 | fprintf (stderr, _("%s contains "), infile); | |
390 | fputs (conflict_report (src_total, rrc_total), stderr); | |
09b503c8 | 391 | } |
7da99ede | 392 | |
a034c8b8 | 393 | if (expected_conflicts != -1 && !src_ok) |
7da99ede AD |
394 | { |
395 | complain_message_count++; | |
81e895c0 AD |
396 | fprintf (stderr, ngettext ("expected %d shift/reduce conflict\n", |
397 | "expected %d shift/reduce conflicts\n", | |
7da99ede AD |
398 | expected_conflicts), |
399 | expected_conflicts); | |
400 | } | |
c29240e7 AD |
401 | } |
402 | ||
403 | ||
08089d5d | 404 | void |
342b8b6e | 405 | free_conflicts (void) |
08089d5d | 406 | { |
d7913476 | 407 | XFREE (conflicts); |
b86796bf AD |
408 | bitset_free (shiftset); |
409 | bitset_free (lookaheadset); | |
08089d5d | 410 | } |