]>
git.saurik.com Git - bison.git/blob - src/reduce.c
1 /* Grammar reduction for Bison.
2 Copyright 1988, 1989, 2000, 2001 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
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)
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.
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. */
22 /* Reduce the grammar: Find and eliminate unreachable terminals,
23 nonterminals, and productions. David S. Bakin. */
25 /* Don't eliminate unreachable terminals: They may be used by the
37 typedef unsigned *BSet
;
41 /* N is set of all nonterminals which are not useless. P is set of
42 all rules which have no useless nonterminals in their RHS. V is
43 the set of all accessible symbols. */
45 static BSet N
, P
, V
, V1
;
47 static int nuseful_productions
;
48 static int nuseless_productions
;
49 static int nuseful_nonterminals
;
50 static int nuseless_nonterminals
;
53 bits_equal (BSet L
, BSet R
, int n
)
57 for (i
= n
- 1; i
>= 0; i
--)
71 i
^= (i
& ((unsigned) (-(int) i
)));
79 bits_size (BSet S
, int n
)
83 for (i
= n
- 1; i
>= 0; i
--)
84 count
+= nbits (S
[i
]);
88 /*-------------------------------------------------------------------.
89 | Another way to do this would be with a set for each production and |
90 | then do subset tests against N0, but even for the C grammar the |
91 | whole reducing process takes only 2 seconds on my 8Mhz AT. |
92 `-------------------------------------------------------------------*/
95 useful_production (int i
, BSet N0
)
100 /* A production is useful if all of the nonterminals in its appear
101 in the set of useful nonterminals. */
103 for (r
= &ritem
[rule_table
[i
].rhs
]; *r
> 0; r
++)
105 if (!BITISSET (N0
, n
- ntokens
))
111 /*---------------------------------------------------------.
112 | Remember that rules are 1-origin, symbols are 0-origin. |
113 `---------------------------------------------------------*/
116 useless_nonterminals (void)
121 /* N is set as built. Np is set being built this iteration. P is
122 set of all productions which have a RHS all in N. */
124 Np
= XCALLOC (unsigned, WORDSIZE (nvars
));
126 /* The set being computed is a set of nonterminals which can derive
127 the empty string or strings consisting of all terminals. At each
128 iteration a nonterminal is added to the set if there is a
129 production with that nonterminal as its LHS for which all the
130 nonterminals in its RHS are already in the set. Iterate until
131 the set being computed remains unchanged. Any nonterminals not
132 in the set at that point are useless in that they will never be
133 used in deriving a sentence of the language.
135 This iteration doesn't use any special traversal over the
136 productions. A set is kept of all productions for which all the
137 nonterminals in the RHS are in useful. Only productions not in
138 this set are scanned on each iteration. At the end, this set is
139 saved to be used when finding useful productions: only
140 productions in this set will appear in the final grammar. */
144 for (i
= WORDSIZE (nvars
) - 1; i
>= 0; i
--)
146 for (i
= 1; i
<= nrules
; i
++)
148 if (!BITISSET (P
, i
))
150 if (useful_production (i
, N
))
152 SETBIT (Np
, rule_table
[i
].lhs
- ntokens
);
157 if (bits_equal (N
, Np
, WORDSIZE (nvars
)))
169 inaccessable_symbols (void)
176 /* Find out which productions are reachable and which symbols are
177 used. Starting with an empty set of productions and a set of
178 symbols which only has the start symbol in it, iterate over all
179 productions until the set of productions remains unchanged for an
180 iteration. For each production which has a LHS in the set of
181 reachable symbols, add the production to the set of reachable
182 productions, and add all of the nonterminals in the RHS of the
183 production to the set of reachable symbols.
185 Consider only the (partially) reduced grammar which has only
186 nonterminals in N and productions in P.
188 The result is the set P of productions in the reduced grammar,
189 and the set V of symbols in the reduced grammar.
191 Although this algorithm also computes the set of terminals which
192 are reachable, no terminal will be deleted from the grammar. Some
193 terminals might not be in the grammar but might be generated by
194 semantic routines, and so the user might want them available with
195 specified numbers. (Is this true?) However, the nonreachable
196 terminals are printed (if running in verbose mode) so that the
199 Vp
= XCALLOC (unsigned, WORDSIZE (nsyms
));
200 Pp
= XCALLOC (unsigned, WORDSIZE (nrules
+ 1));
202 /* If the start symbol isn't useful, then nothing will be useful. */
203 if (BITISSET (N
, start_symbol
- ntokens
))
205 SETBIT (V
, start_symbol
);
209 for (i
= WORDSIZE (nsyms
) - 1; i
>= 0; i
--)
211 for (i
= 1; i
<= nrules
; i
++)
213 if (!BITISSET (Pp
, i
)
215 && BITISSET (V
, rule_table
[i
].lhs
))
217 for (r
= &ritem
[rule_table
[i
].rhs
]; *r
>= 0; r
++)
218 if (ISTOKEN (t
= *r
) || BITISSET (N
, t
- ntokens
))
223 if (bits_equal (V
, Vp
, WORDSIZE (nsyms
)))
234 /* Tokens 0, 1, and 2 are internal to Bison. Consider them useful. */
235 SETBIT (V
, 0); /* end-of-input token */
236 SETBIT (V
, 1); /* error token */
237 SETBIT (V
, 2); /* some undefined token */
242 nuseful_productions
= bits_size (P
, WORDSIZE (nrules
+ 1));
243 nuseless_productions
= nrules
- nuseful_productions
;
245 nuseful_nonterminals
= 0;
246 for (i
= ntokens
; i
< nsyms
; i
++)
248 nuseful_nonterminals
++;
249 nuseless_nonterminals
= nvars
- nuseful_nonterminals
;
251 /* A token that was used in %prec should not be warned about. */
252 for (i
= 1; i
< nrules
; i
++)
253 if (rule_table
[i
].precsym
!= 0)
254 SETBIT (V1
, rule_table
[i
].precsym
);
258 reduce_grammar_tables (void)
260 /* This is turned off because we would need to change the numbers
261 in the case statements in the actions file. */
263 /* remove useless productions */
264 if (nuseless_productions
> 0)
266 short np
, pn
, ni
, pi
;
270 for (pn
= 1; pn
<= nrules
; pn
++)
272 if (BITISSET (P
, pn
))
277 rule_table
[np
].lhs
= rule_table
[pn
].lhs
;
278 rline
[np
] = rline
[pn
];
279 rule_table
[np
].prec
= rule_table
[pn
].prec
;
280 rule_table
[np
].assoc
= rule_table
[pn
].assoc
;
281 rule_table
[np
].rhs
= rule_table
[pn
].rhs
;
282 if (rule_table
[np
].rhs
!= ni
)
284 pi
= rule_table
[np
].rhs
;
285 rule_table
[np
].rhs
= ni
;
286 while (ritem
[pi
] >= 0)
287 ritem
[ni
++] = ritem
[pi
++];
293 while (ritem
[ni
++] >= 0);
298 nrules
-= nuseless_productions
;
301 /* Is it worth it to reduce the amount of memory for the
302 grammar? Probably not. */
306 /* Disable useless productions,
307 since they may contain useless nonterms
308 that would get mapped below to -1 and confuse everyone. */
309 if (nuseless_productions
> 0)
313 for (pn
= 1; pn
<= nrules
; pn
++)
315 if (!BITISSET (P
, pn
))
317 rule_table
[pn
].lhs
= -1;
322 /* remove useless symbols */
323 if (nuseless_nonterminals
> 0)
327 /* short j; JF unused */
331 /* Create a map of nonterminal number to new nonterminal
332 number. -1 in the map means it was useless and is being
335 nontermmap
= XCALLOC (short, nvars
) - ntokens
;
336 for (i
= ntokens
; i
< nsyms
; i
++)
340 for (i
= ntokens
; i
< nsyms
; i
++)
344 /* Shuffle elements of tables indexed by symbol number. */
346 for (i
= ntokens
; i
< nsyms
; i
++)
351 sassoc
[n
] = sassoc
[i
];
361 /* Replace all symbol numbers in valid data structures. */
363 for (i
= 1; i
<= nrules
; i
++)
365 /* Ignore the rules disabled above. */
366 if (rule_table
[i
].lhs
>= 0)
367 rule_table
[i
].lhs
= nontermmap
[rule_table
[i
].lhs
];
368 if (ISVAR (rule_table
[i
].precsym
))
369 /* Can this happen? */
370 rule_table
[i
].precsym
= nontermmap
[rule_table
[i
].precsym
];
373 for (r
= ritem
; *r
; r
++)
377 start_symbol
= nontermmap
[start_symbol
];
379 nsyms
-= nuseless_nonterminals
;
380 nvars
-= nuseless_nonterminals
;
382 free (&nontermmap
[ntokens
]);
387 /*-----------------------------------------------------------------.
388 | Ouput the detailed results of the reductions. For FILE.output. |
389 `-----------------------------------------------------------------*/
392 reduce_output (FILE *out
)
398 if (nuseless_nonterminals
> 0)
400 fprintf (out
, _("Useless nonterminals:"));
401 fprintf (out
, "\n\n");
402 for (i
= ntokens
; i
< nsyms
; i
++)
403 if (!BITISSET (V
, i
))
404 fprintf (out
, " %s\n", tags
[i
]);
407 for (i
= 0; i
< ntokens
; i
++)
409 if (!BITISSET (V
, i
) && !BITISSET (V1
, i
))
413 fprintf (out
, "\n\n");
414 fprintf (out
, _("Terminals which are not used:"));
415 fprintf (out
, "\n\n");
418 fprintf (out
, " %s\n", tags
[i
]);
422 if (nuseless_productions
> 0)
424 fprintf (out
, "\n\n");
425 fprintf (out
, _("Useless rules:"));
426 fprintf (out
, "\n\n");
427 for (i
= 1; i
<= nrules
; i
++)
428 if (!BITISSET (P
, i
))
430 fprintf (out
, "#%-4d ", i
);
431 fprintf (out
, "%s :\t", tags
[rule_table
[i
].lhs
]);
432 for (r
= &ritem
[rule_table
[i
].rhs
]; *r
>= 0; r
++)
433 fprintf (out
, " %s", tags
[*r
]);
434 fprintf (out
, ";\n");
437 if (nuseless_nonterminals
> 0 || nuseless_productions
> 0 || b
)
438 fprintf (out
, "\n\n");
443 dump_grammar (FILE *out
)
448 fprintf (out
, "REDUCED GRAMMAR\n\n");
450 "ntokens = %d, nvars = %d, nsyms = %d, nrules = %d, nitems = %d\n\n",
451 ntokens
, nvars
, nsyms
, nrules
, nitems
);
452 fprintf (out
, _("Variables\n---------\n\n"));
453 fprintf (out
, _("Value Sprec Sassoc Tag\n"));
454 for (i
= ntokens
; i
< nsyms
; i
++)
455 fprintf (out
, "%5d %5d %5d %s\n", i
, sprec
[i
], sassoc
[i
], tags
[i
]);
456 fprintf (out
, "\n\n");
457 fprintf (out
, _("Rules\n-----\n\n"));
458 for (i
= 1; i
<= nrules
; i
++)
460 fprintf (out
, "%-5d(%5d%5d)%5d : (@%-5d)",
466 for (r
= &ritem
[rule_table
[i
].rhs
]; *r
> 0; r
++)
467 fprintf (out
, "%5d", *r
);
468 fprintf (out
, " [%d]\n", -(*r
));
470 fprintf (out
, "\n\n");
471 fprintf (out
, _("Rules interpreted\n-----------------\n\n"));
472 for (i
= 1; i
<= nrules
; i
++)
474 fprintf (out
, "%-5d %s :", i
, tags
[rule_table
[i
].lhs
]);
475 for (r
= &ritem
[rule_table
[i
].rhs
]; *r
> 0; r
++)
476 fprintf (out
, " %s", tags
[*r
]);
479 fprintf (out
, "\n\n");
485 /*-------------------------------.
486 | Report the results to STDERR. |
487 `-------------------------------*/
492 if (yacc_flag
&& nuseless_productions
)
493 fprintf (stderr
, _("%d rules never reduced\n"), nuseless_productions
);
495 fprintf (stderr
, _("%s contains "), infile
);
497 if (nuseless_nonterminals
> 0)
499 fprintf (stderr
, _("%d useless nonterminal%s"),
500 nuseless_nonterminals
,
501 (nuseless_nonterminals
== 1 ? "" : "s"));
503 if (nuseless_nonterminals
> 0 && nuseless_productions
> 0)
504 fprintf (stderr
, _(" and "));
506 if (nuseless_productions
> 0)
508 fprintf (stderr
, _("%d useless rule%s"),
509 nuseless_productions
, (nuseless_productions
== 1 ? "" : "s"));
511 fprintf (stderr
, "\n");
516 reduce_grammar (void)
520 /* Allocate the global sets used to compute the reduced grammar */
522 N
= XCALLOC (unsigned, WORDSIZE (nvars
));
523 P
= XCALLOC (unsigned, WORDSIZE (nrules
+ 1));
524 V
= XCALLOC (unsigned, WORDSIZE (nsyms
));
525 V1
= XCALLOC (unsigned, WORDSIZE (nsyms
));
527 useless_nonterminals ();
528 inaccessable_symbols ();
530 reduced
= (bool) (nuseless_nonterminals
+ nuseless_productions
> 0);
537 if (!BITISSET (N
, start_symbol
- ntokens
))
538 fatal (_("Start symbol %s does not derive any sentence"),
541 reduce_grammar_tables ();
543 dump_grammar (stderr
);
547 fprintf (stderr
, _("reduced %s defines %d terminal%s, %d nonterminal%s\
548 , and %d production%s.\n"),
551 (ntokens
== 1 ? "" : "s"),
553 (nvars
== 1 ? "" : "s"),
555 (nrules
== 1 ? "" : "s"));
559 /*-----------------------------------------------------------.
560 | Free the global sets used to compute the reduced grammar. |
561 `-----------------------------------------------------------*/