]> git.saurik.com Git - bison.git/blame - src/reduce.c
* src/gram.c (ritem_print): Be sure to subtract 1 when displaying
[bison.git] / src / reduce.c
CommitLineData
572909b5 1/* Grammar reduction for Bison.
337c5bd1 2 Copyright 1988, 1989, 2000, 2001 Free Software Foundation, Inc.
572909b5 3
015acc48 4 This file is part of Bison, the GNU Compiler Compiler.
572909b5 5
015acc48
AD
6 Bison is free software; you can redistribute it and/or modify
7 it 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.
572909b5 10
015acc48
AD
11 Bison is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
572909b5 15
015acc48
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
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
572909b5
RS
20
21
015acc48
AD
22/* Reduce the grammar: Find and eliminate unreachable terminals,
23 nonterminals, and productions. David S. Bakin. */
572909b5 24
015acc48
AD
25/* Don't eliminate unreachable terminals: They may be used by the
26 user's parser. */
572909b5 27
572909b5 28#include "system.h"
ceed8467 29#include "getargs.h"
572909b5
RS
30#include "files.h"
31#include "gram.h"
a0f6b076 32#include "complain.h"
015acc48 33#include "reduce.h"
b2ca4022
AD
34#include "reader.h"
35#include "getargs.h"
572909b5 36
572909b5 37typedef unsigned *BSet;
015acc48 38typedef short *rule;
572909b5 39
572909b5 40
00238958
AD
41/* Set of all nonterminals which are not useless. */
42static BSet N;
572909b5 43
00238958
AD
44/* Set of all rules which have no useless nonterminals in their RHS. */
45static BSet P;
46
47/* Set of all accessible symbols. */
48static BSet V;
49
50/* Set of symbols used to define rule precedence (so they are
51 `useless', but no warning should be issued). */
52static BSet V1;
572909b5 53
015acc48
AD
54static int nuseful_productions;
55static int nuseless_productions;
56static int nuseful_nonterminals;
630e182b 57int nuseless_nonterminals;
572909b5 58\f
4a120d45 59static bool
d2729d44 60bits_equal (BSet L, BSet R, int n)
572909b5
RS
61{
62 int i;
63
64 for (i = n - 1; i >= 0; i--)
65 if (L[i] != R[i])
66 return FALSE;
67 return TRUE;
68}
69
70
4a120d45 71static int
d2729d44 72nbits (unsigned i)
572909b5
RS
73{
74 int count = 0;
75
015acc48
AD
76 while (i != 0)
77 {
78 i ^= (i & ((unsigned) (-(int) i)));
79 ++count;
80 }
572909b5
RS
81 return count;
82}
83
84
4a120d45 85static int
d2729d44 86bits_size (BSet S, int n)
572909b5
RS
87{
88 int i, count = 0;
89
90 for (i = n - 1; i >= 0; i--)
015acc48 91 count += nbits (S[i]);
572909b5
RS
92 return count;
93}
94\f
015acc48
AD
95/*-------------------------------------------------------------------.
96| Another way to do this would be with a set for each production and |
97| then do subset tests against N0, but even for the C grammar the |
98| whole reducing process takes only 2 seconds on my 8Mhz AT. |
99`-------------------------------------------------------------------*/
572909b5 100
a083fbbf 101static bool
d2729d44 102useful_production (int i, BSet N0)
572909b5 103{
015acc48 104 rule r;
572909b5
RS
105 short n;
106
015acc48
AD
107 /* A production is useful if all of the nonterminals in its appear
108 in the set of useful nonterminals. */
572909b5 109
3d4daee3 110 for (r = &ritem[rule_table[i].rhs]; *r >= 0; r++)
015acc48
AD
111 if (ISVAR (n = *r))
112 if (!BITISSET (N0, n - ntokens))
572909b5
RS
113 return FALSE;
114 return TRUE;
115}
116
117
015acc48
AD
118/*---------------------------------------------------------.
119| Remember that rules are 1-origin, symbols are 0-origin. |
120`---------------------------------------------------------*/
572909b5 121
a083fbbf 122static void
d2729d44 123useless_nonterminals (void)
572909b5
RS
124{
125 BSet Np, Ns;
342b8b6e 126 int i;
015acc48
AD
127
128 /* N is set as built. Np is set being built this iteration. P is
129 set of all productions which have a RHS all in N. */
130
d7913476 131 Np = XCALLOC (unsigned, WORDSIZE (nvars));
015acc48
AD
132
133 /* The set being computed is a set of nonterminals which can derive
134 the empty string or strings consisting of all terminals. At each
135 iteration a nonterminal is added to the set if there is a
136 production with that nonterminal as its LHS for which all the
137 nonterminals in its RHS are already in the set. Iterate until
138 the set being computed remains unchanged. Any nonterminals not
139 in the set at that point are useless in that they will never be
140 used in deriving a sentence of the language.
141
142 This iteration doesn't use any special traversal over the
143 productions. A set is kept of all productions for which all the
144 nonterminals in the RHS are in useful. Only productions not in
145 this set are scanned on each iteration. At the end, this set is
146 saved to be used when finding useful productions: only
147 productions in this set will appear in the final grammar. */
572909b5 148
572909b5
RS
149 while (1)
150 {
015acc48 151 for (i = WORDSIZE (nvars) - 1; i >= 0; i--)
572909b5
RS
152 Np[i] = N[i];
153 for (i = 1; i <= nrules; i++)
154 {
015acc48 155 if (!BITISSET (P, i))
572909b5 156 {
015acc48 157 if (useful_production (i, N))
572909b5 158 {
b2ed6e58 159 SETBIT (Np, rule_table[i].lhs - ntokens);
015acc48 160 SETBIT (P, i);
572909b5
RS
161 }
162 }
163 }
015acc48 164 if (bits_equal (N, Np, WORDSIZE (nvars)))
572909b5
RS
165 break;
166 Ns = Np;
167 Np = N;
168 N = Ns;
169 }
d7913476 170 XFREE (N);
572909b5
RS
171 N = Np;
172}
015acc48
AD
173
174
a083fbbf 175static void
d2729d44 176inaccessable_symbols (void)
572909b5 177{
015acc48 178 BSet Vp, Vs, Pp;
342b8b6e 179 int i;
572909b5 180 short t;
015acc48
AD
181 rule r;
182
183 /* Find out which productions are reachable and which symbols are
184 used. Starting with an empty set of productions and a set of
185 symbols which only has the start symbol in it, iterate over all
186 productions until the set of productions remains unchanged for an
187 iteration. For each production which has a LHS in the set of
188 reachable symbols, add the production to the set of reachable
189 productions, and add all of the nonterminals in the RHS of the
190 production to the set of reachable symbols.
191
192 Consider only the (partially) reduced grammar which has only
193 nonterminals in N and productions in P.
194
195 The result is the set P of productions in the reduced grammar,
196 and the set V of symbols in the reduced grammar.
197
198 Although this algorithm also computes the set of terminals which
199 are reachable, no terminal will be deleted from the grammar. Some
200 terminals might not be in the grammar but might be generated by
201 semantic routines, and so the user might want them available with
202 specified numbers. (Is this true?) However, the nonreachable
203 terminals are printed (if running in verbose mode) so that the
204 user can know. */
205
d7913476
AD
206 Vp = XCALLOC (unsigned, WORDSIZE (nsyms));
207 Pp = XCALLOC (unsigned, WORDSIZE (nrules + 1));
572909b5
RS
208
209 /* If the start symbol isn't useful, then nothing will be useful. */
2c5f66ed 210 if (BITISSET (N, start_symbol - ntokens))
572909b5 211 {
2c5f66ed
AD
212 SETBIT (V, start_symbol);
213
214 while (1)
572909b5 215 {
2c5f66ed
AD
216 for (i = WORDSIZE (nsyms) - 1; i >= 0; i--)
217 Vp[i] = V[i];
218 for (i = 1; i <= nrules; i++)
572909b5 219 {
2c5f66ed
AD
220 if (!BITISSET (Pp, i)
221 && BITISSET (P, i)
222 && BITISSET (V, rule_table[i].lhs))
572909b5 223 {
2c5f66ed
AD
224 for (r = &ritem[rule_table[i].rhs]; *r >= 0; r++)
225 if (ISTOKEN (t = *r) || BITISSET (N, t - ntokens))
015acc48 226 SETBIT (Vp, t);
2c5f66ed 227 SETBIT (Pp, i);
572909b5 228 }
572909b5 229 }
2c5f66ed
AD
230 if (bits_equal (V, Vp, WORDSIZE (nsyms)))
231 break;
232 Vs = Vp;
233 Vp = V;
234 V = Vs;
572909b5 235 }
572909b5 236 }
572909b5 237
d7913476 238 XFREE (V);
572909b5
RS
239 V = Vp;
240
241 /* Tokens 0, 1, and 2 are internal to Bison. Consider them useful. */
015acc48
AD
242 SETBIT (V, 0); /* end-of-input token */
243 SETBIT (V, 1); /* error token */
244 SETBIT (V, 2); /* some undefined token */
572909b5 245
d7913476 246 XFREE (P);
572909b5
RS
247 P = Pp;
248
015acc48 249 nuseful_productions = bits_size (P, WORDSIZE (nrules + 1));
572909b5
RS
250 nuseless_productions = nrules - nuseful_productions;
251
252 nuseful_nonterminals = 0;
253 for (i = ntokens; i < nsyms; i++)
015acc48 254 if (BITISSET (V, i))
572909b5
RS
255 nuseful_nonterminals++;
256 nuseless_nonterminals = nvars - nuseful_nonterminals;
257
258 /* A token that was used in %prec should not be warned about. */
259 for (i = 1; i < nrules; i++)
652a871c
AD
260 if (rule_table[i].precsym != 0)
261 SETBIT (V1, rule_table[i].precsym);
572909b5 262}
015acc48 263
a083fbbf 264static void
d2729d44 265reduce_grammar_tables (void)
572909b5 266{
076ab033
AD
267 /* This is turned off because we would need to change the numbers in
268 the case statements in the actions file.
572909b5 269
076ab033
AD
270 We don't disable it via CPP so that it is still checked with the
271 rest of the code, to avoid its becoming completely obsolete.
272
273 FIXME: I think the comment above demonstrates this code must be
274 turned off for *semantic* parser, not in the general case. Try
275 to understand this better --akim. */
276
277 if (0)
278 /* remove useless productions */
279 if (nuseless_productions > 0)
280 {
281 short np, pn, ni, pi;
282
283 np = 0;
284 ni = 0;
285 for (pn = 1; pn <= nrules; pn++)
015acc48 286 if (BITISSET (P, pn))
572909b5
RS
287 {
288 np++;
289 if (pn != np)
290 {
076ab033
AD
291 rule_table[np].lhs = rule_table[pn].lhs;
292 rule_table[np].line = rule_table[pn].line;
293 rule_table[np].prec = rule_table[pn].prec;
652a871c 294 rule_table[np].assoc = rule_table[pn].assoc;
076ab033 295 rule_table[np].rhs = rule_table[pn].rhs;
b2ed6e58 296 if (rule_table[np].rhs != ni)
572909b5 297 {
b2ed6e58
AD
298 pi = rule_table[np].rhs;
299 rule_table[np].rhs = ni;
572909b5
RS
300 while (ritem[pi] >= 0)
301 ritem[ni++] = ritem[pi++];
302 ritem[ni++] = -np;
303 }
015acc48
AD
304 }
305 else
306 {
3d4daee3
AD
307 while (ritem[ni++] >= 0)
308 /* Nothing. */;
572909b5
RS
309 }
310 }
572909b5 311
076ab033
AD
312 ritem[ni] = 0;
313 nrules -= nuseless_productions;
314 nitems = ni;
3d4daee3 315 nritems = ni;
076ab033
AD
316
317 /* Is it worth it to reduce the amount of memory for the
318 grammar? Probably not. */
319 }
572909b5 320
68f1e3ed 321 /* Disable useless productions. */
572909b5
RS
322 if (nuseless_productions > 0)
323 {
324 int pn;
572909b5 325 for (pn = 1; pn <= nrules; pn++)
68f1e3ed 326 rule_table[pn].useful = BITISSET (P, pn);
572909b5 327 }
00238958 328}
572909b5 329
572909b5 330
00238958
AD
331/*------------------------------.
332| Remove useless nonterminals. |
333`------------------------------*/
572909b5 334
00238958
AD
335static void
336nonterminals_reduce (void)
337{
338 int i, n;
339 rule r;
572909b5 340
68f1e3ed
AD
341 /* Map the nonterminals to their new index: useful first, useless
342 afterwards. Kept for later report. */
572909b5 343
00238958 344 short *nontermmap = XCALLOC (short, nvars) - ntokens;
00238958
AD
345 n = ntokens;
346 for (i = ntokens; i < nsyms; i++)
347 if (BITISSET (V, i))
348 nontermmap[i] = n++;
760b53a8
AD
349 for (i = ntokens; i < nsyms; i++)
350 if (!BITISSET (V, i))
351 nontermmap[i] = n++;
572909b5 352
00238958 353
760b53a8
AD
354 /* Shuffle elements of tables indexed by symbol number. */
355 {
356 short *sassoc_sorted = XMALLOC (short, nvars) - ntokens;
357 short *sprec_sorted = XMALLOC (short, nvars) - ntokens;
358 char **tags_sorted = XMALLOC (char *, nvars) - ntokens;
359
360 for (i = ntokens; i < nsyms; i++)
361 {
362 n = nontermmap[i];
363 sassoc_sorted[n] = sassoc[i];
364 sprec_sorted[n] = sprec[i];
365 tags_sorted[n] = tags[i];
366 }
367 for (i = ntokens; i < nsyms; i++)
368 {
369 sassoc[i] = sassoc_sorted[i];
370 sprec[i] = sprec_sorted[i];
371 tags[i] = tags_sorted[i];
372 }
373 free (sassoc_sorted + ntokens);
374 free (sprec_sorted + ntokens);
375 free (tags_sorted + ntokens);
376 }
572909b5 377
00238958 378 /* Replace all symbol numbers in valid data structures. */
572909b5 379
00238958
AD
380 for (i = 1; i <= nrules; i++)
381 {
68f1e3ed 382 rule_table[i].lhs = nontermmap[rule_table[i].lhs];
00238958
AD
383 if (ISVAR (rule_table[i].precsym))
384 /* Can this happen? */
385 rule_table[i].precsym = nontermmap[rule_table[i].precsym];
386 }
572909b5 387
9e7f6bbd
AD
388 for (i = 0; i < nritems; ++i)
389 if (ISVAR (ritem[i]))
390 ritem[i] = nontermmap[ritem[i]];
572909b5 391
00238958 392 start_symbol = nontermmap[start_symbol];
572909b5 393
00238958
AD
394 nsyms -= nuseless_nonterminals;
395 nvars -= nuseless_nonterminals;
572909b5 396
68f1e3ed 397 free (nontermmap + ntokens);
572909b5 398}
015acc48 399
337c5bd1 400
00238958
AD
401/*------------------------------------------------------------------.
402| Output the detailed results of the reductions. For FILE.output. |
403`------------------------------------------------------------------*/
337c5bd1
AD
404
405void
406reduce_output (FILE *out)
572909b5 407{
572909b5
RS
408 if (nuseless_nonterminals > 0)
409 {
d2d1b42b
AD
410 int i;
411 fprintf (out, "%s\n\n", _("Useless nonterminals:"));
760b53a8
AD
412 for (i = 0; i < nuseless_nonterminals; ++i)
413 fprintf (out, " %s\n", tags[nsyms + i]);
d2d1b42b 414 fputs ("\n\n", out);
572909b5 415 }
d2d1b42b
AD
416
417 {
418 bool b = FALSE;
419 int i;
420 for (i = 0; i < ntokens; i++)
015acc48 421 if (!BITISSET (V, i) && !BITISSET (V1, i))
572909b5
RS
422 {
423 if (!b)
d2d1b42b
AD
424 fprintf (out, "%s\n\n", _("Terminals which are not used:"));
425 b = TRUE;
337c5bd1 426 fprintf (out, " %s\n", tags[i]);
572909b5 427 }
d2d1b42b
AD
428 if (b)
429 fputs ("\n\n", out);
430 }
572909b5
RS
431
432 if (nuseless_productions > 0)
433 {
d2d1b42b
AD
434 int i;
435 fprintf (out, "%s\n\n", _("Useless rules:"));
572909b5 436 for (i = 1; i <= nrules; i++)
68f1e3ed 437 if (!rule_table[i].useful)
2c5f66ed 438 {
d2d1b42b 439 rule r;
30171f79 440 fprintf (out, "#%-4d ", i - 1);
68f1e3ed 441 fprintf (out, "%s:", tags[rule_table[i].lhs]);
2c5f66ed
AD
442 for (r = &ritem[rule_table[i].rhs]; *r >= 0; r++)
443 fprintf (out, " %s", tags[*r]);
d2d1b42b 444 fputs (";\n", out);
2c5f66ed 445 }
d2d1b42b 446 fputs ("\n\n", out);
572909b5 447 }
572909b5
RS
448}
449\f
4a120d45 450static void
337c5bd1 451dump_grammar (FILE *out)
572909b5
RS
452{
453 int i;
454 rule r;
455
2c5f66ed 456 fprintf (out, "REDUCED GRAMMAR\n\n");
337c5bd1 457 fprintf (out,
6013d43f
AD
458 "ntokens = %d, nvars = %d, nsyms = %d, nrules = %d, nitems = %d\n\n",
459 ntokens, nvars, nsyms, nrules, nitems);
460 fprintf (out, "Variables\n---------\n\n");
cb487d7d 461 fprintf (out, "Value Sprec Sassoc Tag\n");
572909b5 462 for (i = ntokens; i < nsyms; i++)
cb487d7d 463 fprintf (out, "%5d %5d %5d %s\n", i, sprec[i], sassoc[i], tags[i]);
337c5bd1 464 fprintf (out, "\n\n");
6013d43f 465 fprintf (out, "Rules\n-----\n\n");
3067fbef 466 fprintf (out, "Num (Prec, Assoc, Useful, Ritem Range) Lhs -> Rhs (Ritem range) [Num]\n");
572909b5
RS
467 for (i = 1; i <= nrules; i++)
468 {
3067fbef
AD
469 int rhs_count = 0;
470 /* Find the last RHS index in ritems. */
3d4daee3 471 for (r = &ritem[rule_table[i].rhs]; *r >= 0; ++r)
3067fbef
AD
472 ++rhs_count;
473 fprintf (out, "%3d (%2d, %2d, %2d, %2d-%2d) %2d ->",
3d4daee3 474 i - 1,
3067fbef
AD
475 rule_table[i].prec, rule_table[i].assoc, rule_table[i].useful,
476 rule_table[i].rhs, rule_table[i].rhs + rhs_count - 1,
477 rule_table[i].lhs);
478 /* Dumped the RHS. */
3d4daee3 479 for (r = &ritem[rule_table[i].rhs]; *r >= 0; r++)
3067fbef 480 fprintf (out, "%3d", *r);
3d4daee3 481 fprintf (out, " [%d]\n", -(*r) - 1);
572909b5 482 }
337c5bd1 483 fprintf (out, "\n\n");
6013d43f 484 fprintf (out, "Rules interpreted\n-----------------\n\n");
572909b5
RS
485 for (i = 1; i <= nrules; i++)
486 {
b2ed6e58 487 fprintf (out, "%-5d %s :", i, tags[rule_table[i].lhs]);
3d4daee3 488 for (r = &ritem[rule_table[i].rhs]; *r >= 0; r++)
337c5bd1
AD
489 fprintf (out, " %s", tags[*r]);
490 fputc ('\n', out);
572909b5 491 }
337c5bd1 492 fprintf (out, "\n\n");
572909b5
RS
493}
494
495
337c5bd1
AD
496
497/*-------------------------------.
498| Report the results to STDERR. |
499`-------------------------------*/
500
a083fbbf 501static void
337c5bd1 502reduce_print (void)
572909b5 503{
89cab50d 504 if (yacc_flag && nuseless_productions)
cb487d7d
AD
505 fprintf (stderr, ngettext ("%d rule never reduced\n",
506 "%d rules never reduced\n",
507 nuseless_productions),
508 nuseless_productions);
572909b5 509
015acc48 510 fprintf (stderr, _("%s contains "), infile);
572909b5
RS
511
512 if (nuseless_nonterminals > 0)
cb487d7d
AD
513 fprintf (stderr, ngettext ("%d useless nonterminal",
514 "%d useless nonterminals",
515 nuseless_nonterminals),
516 nuseless_nonterminals);
517
572909b5 518 if (nuseless_nonterminals > 0 && nuseless_productions > 0)
015acc48 519 fprintf (stderr, _(" and "));
572909b5
RS
520
521 if (nuseless_productions > 0)
cb487d7d
AD
522 fprintf (stderr, ngettext ("%d useless rule",
523 "%d useless rules",
524 nuseless_productions),
525 nuseless_productions);
015acc48
AD
526 fprintf (stderr, "\n");
527 fflush (stderr);
528}
529\f
530void
531reduce_grammar (void)
532{
533 bool reduced;
534
535 /* Allocate the global sets used to compute the reduced grammar */
536
d7913476
AD
537 N = XCALLOC (unsigned, WORDSIZE (nvars));
538 P = XCALLOC (unsigned, WORDSIZE (nrules + 1));
539 V = XCALLOC (unsigned, WORDSIZE (nsyms));
540 V1 = XCALLOC (unsigned, WORDSIZE (nsyms));
015acc48
AD
541
542 useless_nonterminals ();
543 inaccessable_symbols ();
544
545 reduced = (bool) (nuseless_nonterminals + nuseless_productions > 0);
546
337c5bd1
AD
547 if (!reduced)
548 return;
015acc48 549
337c5bd1 550 reduce_print ();
015acc48
AD
551
552 if (!BITISSET (N, start_symbol - ntokens))
553 fatal (_("Start symbol %s does not derive any sentence"),
554 tags[start_symbol]);
555
556 reduce_grammar_tables ();
00238958
AD
557 if (nuseless_nonterminals > 0)
558 nonterminals_reduce ();
9bfe901c
AD
559
560 if (trace_flag)
561 {
562 dump_grammar (stderr);
563
564 fprintf (stderr, "reduced %s defines %d terminals, %d nonterminals\
565, and %d productions.\n",
566 infile, ntokens, nvars, nrules);
567 }
337c5bd1 568}
015acc48 569
015acc48 570
337c5bd1
AD
571/*-----------------------------------------------------------.
572| Free the global sets used to compute the reduced grammar. |
573`-----------------------------------------------------------*/
574
575void
576reduce_free (void)
577{
d7913476
AD
578 XFREE (N);
579 XFREE (V);
337c5bd1 580 XFREE (V1);
d7913476 581 XFREE (P);
572909b5 582}