]>
Commit | Line | Data |
---|---|---|
08089d5d | 1 | /* Find and resolve or report look-ahead conflicts for bison, |
22c821f3 | 2 | Copyright 1984, 1989, 1992, 2000, 2001 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" |
7da99ede | 22 | #include "complain.h" |
ceed8467 | 23 | #include "getargs.h" |
08089d5d DM |
24 | #include "files.h" |
25 | #include "gram.h" | |
26 | #include "state.h" | |
720d742f | 27 | #include "lalr.h" |
0619caf0 | 28 | #include "conflicts.h" |
b2ca4022 AD |
29 | #include "reader.h" |
30 | #include "LR0.h" | |
d2729d44 | 31 | |
342b8b6e | 32 | errs **err_table = NULL; |
7da99ede AD |
33 | /* -1 stands for not specified. */ |
34 | int expected_conflicts = -1; | |
342b8b6e | 35 | static char *conflicts = NULL; |
08089d5d | 36 | |
342b8b6e AD |
37 | static unsigned *shiftset = NULL; |
38 | static unsigned *lookaheadset = NULL; | |
c29240e7 | 39 | \f |
08089d5d | 40 | |
c29240e7 AD |
41 | static inline void |
42 | log_resolution (int state, int LAno, int token, char *resolution) | |
08089d5d | 43 | { |
ff4423cc AD |
44 | obstack_fgrow4 (&output_obstack, |
45 | _("\ | |
c29240e7 | 46 | Conflict in state %d between rule %d and token %s resolved as %s.\n"), |
ff4423cc | 47 | state, LAruleno[LAno], tags[token], resolution); |
08089d5d DM |
48 | } |
49 | ||
50 | ||
c29240e7 AD |
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 | ||
4a120d45 | 57 | static void |
c29240e7 | 58 | flush_shift (int state, int token) |
08089d5d | 59 | { |
c29240e7 AD |
60 | shifts *shiftp; |
61 | int k, i; | |
08089d5d | 62 | |
90b4416b | 63 | shiftp = state_table[state].shift_table; |
c29240e7 | 64 | |
08089d5d DM |
65 | if (shiftp) |
66 | { | |
67 | k = shiftp->nshifts; | |
68 | for (i = 0; i < k; i++) | |
69 | { | |
c29240e7 | 70 | if (shiftp->shifts[i] |
9703cc49 | 71 | && token == state_table[shiftp->shifts[i]].accessing_symbol) |
c29240e7 | 72 | (shiftp->shifts[i]) = 0; |
08089d5d | 73 | } |
08089d5d DM |
74 | } |
75 | } | |
76 | ||
77 | ||
c29240e7 AD |
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 | `------------------------------------------------------------------*/ | |
08089d5d | 84 | |
4a120d45 | 85 | static void |
d2729d44 | 86 | resolve_sr_conflict (int state, int lookaheadnum) |
08089d5d | 87 | { |
c29240e7 AD |
88 | int i; |
89 | int mask; | |
90 | unsigned *fp1; | |
91 | unsigned *fp2; | |
92 | int redprec; | |
f59c437a | 93 | errs *errp = ERRS_ALLOC (ntokens + 1); |
08089d5d DM |
94 | short *errtokens = errp->errs; |
95 | ||
96 | /* find the rule to reduce by to get precedence of reduction */ | |
652a871c | 97 | redprec = rule_table[LAruleno[lookaheadnum]].prec; |
08089d5d DM |
98 | |
99 | mask = 1; | |
bb527fc2 | 100 | fp1 = LA (lookaheadnum); |
08089d5d DM |
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 | { | |
c29240e7 AD |
111 | log_resolution (state, lookaheadnum, i, _("reduce")); |
112 | *fp2 &= ~mask; /* flush the shift for this token */ | |
113 | flush_shift (state, i); | |
08089d5d DM |
114 | } |
115 | else if (sprec[i] > redprec) | |
116 | { | |
c29240e7 AD |
117 | log_resolution (state, lookaheadnum, i, _("shift")); |
118 | *fp1 &= ~mask; /* flush the reduce for this token */ | |
08089d5d DM |
119 | } |
120 | else | |
121 | { | |
122 | /* Matching precedence levels. | |
c29240e7 AD |
123 | For left association, keep only the reduction. |
124 | For right association, keep only the shift. | |
125 | For nonassociation, keep neither. */ | |
08089d5d DM |
126 | |
127 | switch (sassoc[i]) | |
128 | { | |
d7020c20 | 129 | case right_assoc: |
c29240e7 | 130 | log_resolution (state, lookaheadnum, i, _("shift")); |
08089d5d DM |
131 | break; |
132 | ||
d7020c20 | 133 | case left_assoc: |
c29240e7 | 134 | log_resolution (state, lookaheadnum, i, _("reduce")); |
08089d5d DM |
135 | break; |
136 | ||
d7020c20 | 137 | case non_assoc: |
c29240e7 | 138 | log_resolution (state, lookaheadnum, i, _("an error")); |
08089d5d DM |
139 | break; |
140 | } | |
141 | ||
d7020c20 | 142 | if (sassoc[i] != right_assoc) |
08089d5d | 143 | { |
c29240e7 AD |
144 | *fp2 &= ~mask; /* flush the shift for this token */ |
145 | flush_shift (state, i); | |
08089d5d | 146 | } |
d7020c20 | 147 | if (sassoc[i] != left_assoc) |
c29240e7 AD |
148 | { |
149 | *fp1 &= ~mask; /* flush the reduce for this token */ | |
08089d5d | 150 | } |
d7020c20 | 151 | if (sassoc[i] == non_assoc) |
08089d5d DM |
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; | |
c29240e7 AD |
163 | fp2++; |
164 | fp1++; | |
08089d5d DM |
165 | } |
166 | } | |
167 | errp->nerrs = errtokens - errp->errs; | |
168 | if (errp->nerrs) | |
169 | { | |
170 | /* Some tokens have been explicitly made errors. Allocate | |
c29240e7 | 171 | a permanent errs structure for this state, to record them. */ |
08089d5d | 172 | i = (char *) errtokens - (char *) errp; |
f59c437a | 173 | err_table[state] = ERRS_ALLOC (i + 1); |
08089d5d DM |
174 | bcopy (errp, err_table[state], i); |
175 | } | |
176 | else | |
177 | err_table[state] = 0; | |
c29240e7 | 178 | free (errp); |
08089d5d DM |
179 | } |
180 | ||
181 | ||
4a120d45 | 182 | static void |
c29240e7 | 183 | set_conflicts (int state) |
08089d5d | 184 | { |
d8cf039f | 185 | int i, j; |
c29240e7 | 186 | shifts *shiftp; |
c29240e7 AD |
187 | int symbol; |
188 | ||
de326cc0 | 189 | if (state_table[state].consistent) |
c29240e7 | 190 | return; |
08089d5d | 191 | |
c29240e7 AD |
192 | for (i = 0; i < tokensetsize; i++) |
193 | lookaheadset[i] = 0; | |
08089d5d | 194 | |
90b4416b | 195 | shiftp = state_table[state].shift_table; |
08089d5d | 196 | if (shiftp) |
d8cf039f AD |
197 | for (i = 0; i < shiftp->nshifts; i++) |
198 | { | |
199 | symbol = state_table[shiftp->shifts[i]].accessing_symbol; | |
200 | if (ISVAR (symbol)) | |
201 | break; | |
202 | SETBIT (lookaheadset, symbol); | |
203 | } | |
08089d5d | 204 | |
c29240e7 AD |
205 | /* Loop over all rules which require lookahead in this state. First |
206 | check for shift-reduce conflict, and try to resolve using | |
207 | precedence */ | |
d8cf039f AD |
208 | for (i = state_table[state].lookaheads; |
209 | i < state_table[state + 1].lookaheads; | |
210 | ++i) | |
652a871c | 211 | if (rule_table[LAruleno[i]].prec) |
d8cf039f AD |
212 | for (j = 0; j < tokensetsize; ++j) |
213 | if (LA (i)[j] & lookaheadset[j]) | |
c29240e7 | 214 | { |
d8cf039f AD |
215 | resolve_sr_conflict (state, i); |
216 | break; | |
c29240e7 | 217 | } |
08089d5d | 218 | |
08089d5d | 219 | |
c29240e7 AD |
220 | /* Loop over all rules which require lookahead in this state. Check |
221 | for conflicts not resolved above. */ | |
d8cf039f AD |
222 | for (i = state_table[state].lookaheads; |
223 | i < state_table[state + 1].lookaheads; | |
224 | ++i) | |
08089d5d | 225 | { |
d8cf039f AD |
226 | for (j = 0; j < tokensetsize; ++j) |
227 | if (LA (i)[j] & lookaheadset[j]) | |
0df87bb6 | 228 | conflicts[state] = 1; |
08089d5d | 229 | |
d8cf039f AD |
230 | for (j = 0; j < tokensetsize; ++j) |
231 | lookaheadset[j] |= LA (i)[j]; | |
c29240e7 AD |
232 | } |
233 | } | |
08089d5d DM |
234 | |
235 | void | |
342b8b6e | 236 | solve_conflicts (void) |
08089d5d | 237 | { |
c29240e7 | 238 | int i; |
08089d5d | 239 | |
d7913476 AD |
240 | conflicts = XCALLOC (char, nstates); |
241 | shiftset = XCALLOC (unsigned, tokensetsize); | |
242 | lookaheadset = XCALLOC (unsigned, tokensetsize); | |
08089d5d | 243 | |
d7913476 | 244 | err_table = XCALLOC (errs *, nstates); |
08089d5d | 245 | |
c29240e7 AD |
246 | for (i = 0; i < nstates; i++) |
247 | set_conflicts (i); | |
08089d5d DM |
248 | } |
249 | ||
250 | ||
c29240e7 AD |
251 | /*---------------------------------------------. |
252 | | Count the number of shift/reduce conflicts. | | |
253 | `---------------------------------------------*/ | |
254 | ||
0df87bb6 | 255 | static int |
d2729d44 | 256 | count_sr_conflicts (int state) |
08089d5d | 257 | { |
c29240e7 AD |
258 | int i; |
259 | int k; | |
260 | int mask; | |
261 | shifts *shiftp; | |
262 | unsigned *fp1; | |
263 | unsigned *fp2; | |
264 | unsigned *fp3; | |
265 | int symbol; | |
08089d5d | 266 | |
0df87bb6 | 267 | int src_count = 0; |
08089d5d | 268 | |
90b4416b | 269 | shiftp = state_table[state].shift_table; |
c29240e7 | 270 | if (!shiftp) |
0df87bb6 | 271 | return 0; |
08089d5d DM |
272 | |
273 | for (i = 0; i < tokensetsize; i++) | |
274 | { | |
275 | shiftset[i] = 0; | |
276 | lookaheadset[i] = 0; | |
277 | } | |
278 | ||
279 | k = shiftp->nshifts; | |
280 | for (i = 0; i < k; i++) | |
281 | { | |
c29240e7 AD |
282 | if (!shiftp->shifts[i]) |
283 | continue; | |
9703cc49 | 284 | symbol = state_table[shiftp->shifts[i]].accessing_symbol; |
c29240e7 AD |
285 | if (ISVAR (symbol)) |
286 | break; | |
287 | SETBIT (shiftset, symbol); | |
08089d5d DM |
288 | } |
289 | ||
f004bf6a | 290 | k = state_table[state + 1].lookaheads; |
08089d5d DM |
291 | fp3 = lookaheadset + tokensetsize; |
292 | ||
f004bf6a | 293 | for (i = state_table[state].lookaheads; i < k; i++) |
08089d5d | 294 | { |
bb527fc2 | 295 | fp1 = LA (i); |
08089d5d DM |
296 | fp2 = lookaheadset; |
297 | ||
298 | while (fp2 < fp3) | |
299 | *fp2++ |= *fp1++; | |
300 | } | |
301 | ||
302 | fp1 = shiftset; | |
303 | fp2 = lookaheadset; | |
304 | ||
305 | while (fp2 < fp3) | |
306 | *fp2++ &= *fp1++; | |
307 | ||
308 | mask = 1; | |
309 | fp2 = lookaheadset; | |
310 | for (i = 0; i < ntokens; i++) | |
311 | { | |
312 | if (mask & *fp2) | |
313 | src_count++; | |
314 | ||
315 | mask <<= 1; | |
316 | if (mask == 0) | |
317 | { | |
318 | mask = 1; | |
319 | fp2++; | |
320 | } | |
321 | } | |
0df87bb6 AD |
322 | |
323 | return src_count; | |
08089d5d DM |
324 | } |
325 | ||
326 | ||
c29240e7 AD |
327 | /*----------------------------------------------. |
328 | | Count the number of reduce/reduce conflicts. | | |
329 | `----------------------------------------------*/ | |
330 | ||
0df87bb6 | 331 | static int |
d2729d44 | 332 | count_rr_conflicts (int state) |
08089d5d | 333 | { |
c29240e7 | 334 | int i; |
c29240e7 AD |
335 | unsigned mask; |
336 | unsigned *baseword; | |
08089d5d | 337 | |
0df87bb6 | 338 | int rrc_count = 0; |
08089d5d | 339 | |
f004bf6a AD |
340 | int m = state_table[state].lookaheads; |
341 | int n = state_table[state + 1].lookaheads; | |
08089d5d | 342 | |
c29240e7 | 343 | if (n - m < 2) |
0df87bb6 | 344 | return 0; |
08089d5d DM |
345 | |
346 | mask = 1; | |
bb527fc2 | 347 | baseword = LA (m); |
08089d5d DM |
348 | for (i = 0; i < ntokens; i++) |
349 | { | |
0df87bb6 | 350 | unsigned *wordp = baseword; |
08089d5d | 351 | |
0df87bb6 AD |
352 | int count = 0; |
353 | int j; | |
08089d5d DM |
354 | for (j = m; j < n; j++) |
355 | { | |
356 | if (mask & *wordp) | |
357 | count++; | |
358 | ||
359 | wordp += tokensetsize; | |
360 | } | |
361 | ||
c29240e7 AD |
362 | if (count >= 2) |
363 | rrc_count++; | |
08089d5d DM |
364 | |
365 | mask <<= 1; | |
366 | if (mask == 0) | |
367 | { | |
368 | mask = 1; | |
369 | baseword++; | |
370 | } | |
371 | } | |
0df87bb6 AD |
372 | |
373 | return rrc_count; | |
08089d5d DM |
374 | } |
375 | ||
ff4423cc AD |
376 | /*--------------------------------------------------------------. |
377 | | Return a human readable string which reports shift/reduce and | | |
378 | | reduce/reduce conflict numbers (SRC_NUM, RRC_NUM). | | |
379 | `--------------------------------------------------------------*/ | |
c29240e7 | 380 | |
ff4423cc AD |
381 | static const char * |
382 | conflict_report (int src_num, int rrc_num) | |
c29240e7 | 383 | { |
ff4423cc AD |
384 | static char res[4096]; |
385 | char *cp = res; | |
386 | ||
7da99ede | 387 | if (src_num >= 1) |
22c821f3 | 388 | { |
7da99ede AD |
389 | sprintf (cp, ngettext ("%d shift/reduce conflict", |
390 | "%d shift/reduce conflicts", src_num), src_num); | |
22c821f3 AD |
391 | cp += strlen (cp); |
392 | } | |
c29240e7 | 393 | |
0619caf0 | 394 | if (src_num > 0 && rrc_num > 0) |
22c821f3 | 395 | { |
7da99ede | 396 | sprintf (cp, " %s ", _("and")); |
22c821f3 AD |
397 | cp += strlen (cp); |
398 | } | |
c29240e7 | 399 | |
7da99ede | 400 | if (rrc_num >= 1) |
22c821f3 | 401 | { |
7da99ede AD |
402 | sprintf (cp, ngettext ("%d reduce/reduce conflict", |
403 | "%d reduce/reduce conflicts", rrc_num), rrc_num); | |
22c821f3 AD |
404 | cp += strlen (cp); |
405 | } | |
ff4423cc AD |
406 | |
407 | *cp++ = '.'; | |
408 | *cp++ = '\n'; | |
409 | *cp++ = '\0'; | |
c29240e7 | 410 | |
ff4423cc | 411 | return res; |
c29240e7 AD |
412 | } |
413 | ||
414 | ||
0df87bb6 AD |
415 | /*-----------------------------------------------------------. |
416 | | Output the detailed description of states with conflicts. | | |
417 | `-----------------------------------------------------------*/ | |
c29240e7 AD |
418 | |
419 | void | |
0df87bb6 | 420 | conflicts_output (FILE *out) |
c29240e7 AD |
421 | { |
422 | int i; | |
0df87bb6 AD |
423 | for (i = 0; i < nstates; i++) |
424 | if (conflicts[i]) | |
425 | { | |
7da99ede | 426 | fprintf (out, _("State %d contains "), i); |
0df87bb6 AD |
427 | fputs (conflict_report (count_sr_conflicts (i), |
428 | count_rr_conflicts (i)), out); | |
429 | } | |
430 | } | |
c29240e7 | 431 | |
c29240e7 | 432 | |
0df87bb6 AD |
433 | /*------------------------------------------. |
434 | | Reporting the total number of conflicts. | | |
435 | `------------------------------------------*/ | |
0619caf0 | 436 | |
0df87bb6 AD |
437 | void |
438 | conflicts_print (void) | |
439 | { | |
440 | int i; | |
441 | ||
442 | int src_total = 0; | |
443 | int rrc_total = 0; | |
444 | ||
445 | /* Conflicts by state. */ | |
446 | for (i = 0; i < nstates; i++) | |
447 | if (conflicts[i]) | |
448 | { | |
449 | src_total += count_sr_conflicts (i); | |
450 | rrc_total += count_rr_conflicts (i); | |
451 | } | |
c29240e7 | 452 | |
0619caf0 | 453 | /* Report the total number of conflicts on STDERR. */ |
0df87bb6 | 454 | if (src_total || rrc_total) |
09b503c8 AD |
455 | { |
456 | if (yacc_flag) | |
457 | { | |
458 | /* If invoked with `--yacc', use the output format specified by | |
459 | POSIX. */ | |
460 | fprintf (stderr, _("conflicts: ")); | |
461 | if (src_total > 0) | |
462 | fprintf (stderr, _(" %d shift/reduce"), src_total); | |
463 | if (src_total > 0 && rrc_total > 0) | |
464 | fprintf (stderr, ","); | |
465 | if (rrc_total > 0) | |
466 | fprintf (stderr, _(" %d reduce/reduce"), rrc_total); | |
467 | putc ('\n', stderr); | |
468 | } | |
469 | else | |
470 | { | |
471 | fprintf (stderr, _("%s contains "), infile); | |
472 | fputs (conflict_report (src_total, rrc_total), stderr); | |
473 | } | |
474 | } | |
7da99ede AD |
475 | |
476 | if (expected_conflicts != -1 | |
477 | && src_total != expected_conflicts) | |
478 | { | |
479 | complain_message_count++; | |
81e895c0 AD |
480 | fprintf (stderr, ngettext ("expected %d shift/reduce conflict\n", |
481 | "expected %d shift/reduce conflicts\n", | |
7da99ede AD |
482 | expected_conflicts), |
483 | expected_conflicts); | |
484 | } | |
c29240e7 AD |
485 | } |
486 | ||
487 | ||
08089d5d | 488 | void |
c73a41af | 489 | print_reductions (FILE *out, int state) |
08089d5d | 490 | { |
c29240e7 AD |
491 | int i; |
492 | int j; | |
493 | int k; | |
494 | unsigned *fp1; | |
495 | unsigned *fp2; | |
496 | unsigned *fp3; | |
497 | unsigned *fp4; | |
498 | int rule; | |
499 | int symbol; | |
500 | unsigned mask; | |
501 | int m; | |
502 | int n; | |
503 | int default_LA; | |
504 | int default_rule = 0; | |
505 | int cmax; | |
506 | int count; | |
507 | shifts *shiftp; | |
508 | errs *errp; | |
08089d5d DM |
509 | int nodefault = 0; |
510 | ||
511 | for (i = 0; i < tokensetsize; i++) | |
512 | shiftset[i] = 0; | |
513 | ||
90b4416b | 514 | shiftp = state_table[state].shift_table; |
08089d5d DM |
515 | if (shiftp) |
516 | { | |
517 | k = shiftp->nshifts; | |
518 | for (i = 0; i < k; i++) | |
519 | { | |
c29240e7 AD |
520 | if (!shiftp->shifts[i]) |
521 | continue; | |
9703cc49 | 522 | symbol = state_table[shiftp->shifts[i]].accessing_symbol; |
c29240e7 AD |
523 | if (ISVAR (symbol)) |
524 | break; | |
08089d5d DM |
525 | /* if this state has a shift for the error token, |
526 | don't use a default rule. */ | |
c29240e7 AD |
527 | if (symbol == error_token_number) |
528 | nodefault = 1; | |
529 | SETBIT (shiftset, symbol); | |
08089d5d DM |
530 | } |
531 | } | |
532 | ||
533 | errp = err_table[state]; | |
534 | if (errp) | |
535 | { | |
536 | k = errp->nerrs; | |
537 | for (i = 0; i < k; i++) | |
538 | { | |
c29240e7 AD |
539 | if (!errp->errs[i]) |
540 | continue; | |
08089d5d | 541 | symbol = errp->errs[i]; |
c29240e7 | 542 | SETBIT (shiftset, symbol); |
08089d5d DM |
543 | } |
544 | } | |
545 | ||
f004bf6a AD |
546 | m = state_table[state].lookaheads; |
547 | n = state_table[state + 1].lookaheads; | |
08089d5d | 548 | |
c29240e7 | 549 | if (n - m == 1 && !nodefault) |
08089d5d DM |
550 | { |
551 | default_rule = LAruleno[m]; | |
552 | ||
bb527fc2 | 553 | fp1 = LA (m); |
08089d5d DM |
554 | fp2 = shiftset; |
555 | fp3 = lookaheadset; | |
556 | fp4 = lookaheadset + tokensetsize; | |
557 | ||
558 | while (fp3 < fp4) | |
559 | *fp3++ = *fp1++ & *fp2++; | |
560 | ||
561 | mask = 1; | |
562 | fp3 = lookaheadset; | |
563 | ||
564 | for (i = 0; i < ntokens; i++) | |
565 | { | |
566 | if (mask & *fp3) | |
c73a41af | 567 | fprintf (out, _(" %-4s\t[reduce using rule %d (%s)]\n"), |
b2ed6e58 AD |
568 | tags[i], default_rule, |
569 | tags[rule_table[default_rule].lhs]); | |
08089d5d DM |
570 | |
571 | mask <<= 1; | |
572 | if (mask == 0) | |
573 | { | |
574 | mask = 1; | |
575 | fp3++; | |
576 | } | |
577 | } | |
578 | ||
c73a41af | 579 | fprintf (out, _(" $default\treduce using rule %d (%s)\n\n"), |
b2ed6e58 | 580 | default_rule, tags[rule_table[default_rule].lhs]); |
08089d5d DM |
581 | } |
582 | else if (n - m >= 1) | |
583 | { | |
584 | cmax = 0; | |
585 | default_LA = -1; | |
586 | fp4 = lookaheadset + tokensetsize; | |
587 | ||
c29240e7 | 588 | if (!nodefault) |
08089d5d DM |
589 | for (i = m; i < n; i++) |
590 | { | |
bb527fc2 | 591 | fp1 = LA (i); |
08089d5d DM |
592 | fp2 = shiftset; |
593 | fp3 = lookaheadset; | |
ceed8467 | 594 | |
08089d5d | 595 | while (fp3 < fp4) |
b65534e5 | 596 | *fp3++ = *fp1++ & (~(*fp2++)); |
ceed8467 | 597 | |
08089d5d DM |
598 | count = 0; |
599 | mask = 1; | |
600 | fp3 = lookaheadset; | |
601 | for (j = 0; j < ntokens; j++) | |
602 | { | |
603 | if (mask & *fp3) | |
604 | count++; | |
ceed8467 | 605 | |
08089d5d DM |
606 | mask <<= 1; |
607 | if (mask == 0) | |
608 | { | |
609 | mask = 1; | |
610 | fp3++; | |
611 | } | |
612 | } | |
ceed8467 | 613 | |
08089d5d DM |
614 | if (count > cmax) |
615 | { | |
616 | cmax = count; | |
617 | default_LA = i; | |
618 | default_rule = LAruleno[i]; | |
619 | } | |
ceed8467 | 620 | |
08089d5d DM |
621 | fp2 = shiftset; |
622 | fp3 = lookaheadset; | |
ceed8467 | 623 | |
08089d5d DM |
624 | while (fp3 < fp4) |
625 | *fp2++ |= *fp3++; | |
626 | } | |
627 | ||
628 | for (i = 0; i < tokensetsize; i++) | |
c29240e7 | 629 | shiftset[i] = 0; |
08089d5d DM |
630 | |
631 | if (shiftp) | |
c29240e7 AD |
632 | { |
633 | k = shiftp->nshifts; | |
634 | for (i = 0; i < k; i++) | |
08089d5d | 635 | { |
c29240e7 AD |
636 | if (!shiftp->shifts[i]) |
637 | continue; | |
9703cc49 | 638 | symbol = state_table[shiftp->shifts[i]].accessing_symbol; |
c29240e7 AD |
639 | if (ISVAR (symbol)) |
640 | break; | |
641 | SETBIT (shiftset, symbol); | |
08089d5d | 642 | } |
c29240e7 | 643 | } |
08089d5d DM |
644 | |
645 | mask = 1; | |
bb527fc2 | 646 | fp1 = LA (m); |
08089d5d DM |
647 | fp2 = shiftset; |
648 | for (i = 0; i < ntokens; i++) | |
649 | { | |
650 | int defaulted = 0; | |
651 | ||
652 | if (mask & *fp2) | |
653 | count = 1; | |
654 | else | |
655 | count = 0; | |
656 | ||
657 | fp3 = fp1; | |
658 | for (j = m; j < n; j++) | |
659 | { | |
660 | if (mask & *fp3) | |
661 | { | |
662 | if (count == 0) | |
663 | { | |
664 | if (j != default_LA) | |
665 | { | |
666 | rule = LAruleno[j]; | |
c73a41af | 667 | fprintf (out, |
c29240e7 | 668 | _(" %-4s\treduce using rule %d (%s)\n"), |
b2ed6e58 | 669 | tags[i], rule, tags[rule_table[rule].lhs]); |
08089d5d | 670 | } |
c29240e7 AD |
671 | else |
672 | defaulted = 1; | |
08089d5d DM |
673 | |
674 | count++; | |
675 | } | |
676 | else | |
677 | { | |
678 | if (defaulted) | |
679 | { | |
680 | rule = LAruleno[default_LA]; | |
c73a41af | 681 | fprintf (out, |
c29240e7 | 682 | _(" %-4s\treduce using rule %d (%s)\n"), |
b2ed6e58 | 683 | tags[i], rule, tags[rule_table[rule].lhs]); |
08089d5d DM |
684 | defaulted = 0; |
685 | } | |
686 | rule = LAruleno[j]; | |
c73a41af | 687 | fprintf (out, |
c29240e7 | 688 | _(" %-4s\t[reduce using rule %d (%s)]\n"), |
b2ed6e58 | 689 | tags[i], rule, tags[rule_table[rule].lhs]); |
08089d5d DM |
690 | } |
691 | } | |
692 | ||
693 | fp3 += tokensetsize; | |
694 | } | |
695 | ||
696 | mask <<= 1; | |
697 | if (mask == 0) | |
698 | { | |
699 | mask = 1; | |
808e2021 | 700 | /* We tried incrementing just fp1, and just fp2; both seem wrong. |
c29240e7 | 701 | It seems necessary to increment both in sync. */ |
808e2021 | 702 | fp1++; |
08089d5d DM |
703 | fp2++; |
704 | } | |
705 | } | |
706 | ||
707 | if (default_LA >= 0) | |
c73a41af | 708 | fprintf (out, _(" $default\treduce using rule %d (%s)\n"), |
b2ed6e58 | 709 | default_rule, tags[rule_table[default_rule].lhs]); |
08089d5d DM |
710 | } |
711 | } | |
712 | ||
713 | ||
714 | void | |
342b8b6e | 715 | free_conflicts (void) |
08089d5d | 716 | { |
d7913476 AD |
717 | XFREE (conflicts); |
718 | XFREE (shiftset); | |
719 | XFREE (lookaheadset); | |
08089d5d | 720 | } |