1 /* Grammar reduction for Bison.
2 Copyright (C) 1988, 1989, 2000, 2001, 2002 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
40 /* Set of all nonterminals which are not useless. */
43 /* Set of all rules which have no useless nonterminals in their RHS. */
46 /* Set of all accessible symbols. */
49 /* Set of symbols used to define rule precedence (so they are
50 `useless', but no warning should be issued). */
53 static rule_number_t nuseful_productions
;
54 rule_number_t nuseless_productions
;
55 static int nuseful_nonterminals
;
56 symbol_number_t nuseless_nonterminals
;
58 /*-------------------------------------------------------------------.
59 | Another way to do this would be with a set for each production and |
60 | then do subset tests against N0, but even for the C grammar the |
61 | whole reducing process takes only 2 seconds on my 8Mhz AT. |
62 `-------------------------------------------------------------------*/
65 useful_production (rule_number_t r
, bitset N0
)
69 /* A production is useful if all of the nonterminals in its appear
70 in the set of useful nonterminals. */
72 for (rhsp
= rules
[r
].rhs
; *rhsp
>= 0; ++rhsp
)
73 if (ISVAR (*rhsp
) && !bitset_test (N0
, *rhsp
- ntokens
))
79 /*---------------------------------------------------------.
80 | Remember that rules are 1-origin, symbols are 0-origin. |
81 `---------------------------------------------------------*/
84 useless_nonterminals (void)
89 /* N is set as built. Np is set being built this iteration. P is
90 set of all productions which have a RHS all in N. */
92 Np
= bitset_create (nvars
, BITSET_FIXED
);
95 /* The set being computed is a set of nonterminals which can derive
96 the empty string or strings consisting of all terminals. At each
97 iteration a nonterminal is added to the set if there is a
98 production with that nonterminal as its LHS for which all the
99 nonterminals in its RHS are already in the set. Iterate until
100 the set being computed remains unchanged. Any nonterminals not
101 in the set at that point are useless in that they will never be
102 used in deriving a sentence of the language.
104 This iteration doesn't use any special traversal over the
105 productions. A set is kept of all productions for which all the
106 nonterminals in the RHS are in useful. Only productions not in
107 this set are scanned on each iteration. At the end, this set is
108 saved to be used when finding useful productions: only
109 productions in this set will appear in the final grammar. */
114 for (r
= 1; r
< nrules
+ 1; r
++)
115 if (!bitset_test (P
, r
)
116 && useful_production (r
, N
))
118 bitset_set (Np
, rules
[r
].lhs
->number
- ntokens
);
121 if (bitset_equal_p (N
, Np
))
133 inaccessable_symbols (void)
137 /* Find out which productions are reachable and which symbols are
138 used. Starting with an empty set of productions and a set of
139 symbols which only has the start symbol in it, iterate over all
140 productions until the set of productions remains unchanged for an
141 iteration. For each production which has a LHS in the set of
142 reachable symbols, add the production to the set of reachable
143 productions, and add all of the nonterminals in the RHS of the
144 production to the set of reachable symbols.
146 Consider only the (partially) reduced grammar which has only
147 nonterminals in N and productions in P.
149 The result is the set P of productions in the reduced grammar,
150 and the set V of symbols in the reduced grammar.
152 Although this algorithm also computes the set of terminals which
153 are reachable, no terminal will be deleted from the grammar. Some
154 terminals might not be in the grammar but might be generated by
155 semantic routines, and so the user might want them available with
156 specified numbers. (Is this true?) However, the nonreachable
157 terminals are printed (if running in verbose mode) so that the
160 Vp
= bitset_create (nsyms
, BITSET_FIXED
);
161 Pp
= bitset_create (nrules
+ 1, BITSET_FIXED
);
163 /* If the start symbol isn't useful, then nothing will be useful. */
164 if (bitset_test (N
, axiom
->number
- ntokens
))
166 bitset_set (V
, axiom
->number
);
172 for (r
= 1; r
< nrules
+ 1; r
++)
174 if (!bitset_test (Pp
, r
)
175 && bitset_test (P
, r
)
176 && bitset_test (V
, rules
[r
].lhs
->number
))
179 for (rhsp
= rules
[r
].rhs
; *rhsp
>= 0; rhsp
++)
180 if (ISTOKEN (*rhsp
) || bitset_test (N
, *rhsp
- ntokens
))
181 bitset_set (Vp
, *rhsp
);
185 if (bitset_equal_p (V
, Vp
))
196 /* Tokens 0, 1, and 2 are internal to Bison. Consider them useful. */
197 bitset_set (V
, eoftoken
->number
); /* end-of-input token */
198 bitset_set (V
, errtoken
->number
); /* error token */
199 bitset_set (V
, undeftoken
->number
); /* some undefined token */
204 nuseful_productions
= bitset_count (P
);
205 nuseless_productions
= nrules
- nuseful_productions
;
207 nuseful_nonterminals
= 0;
210 for (i
= ntokens
; i
< nsyms
; i
++)
211 if (bitset_test (V
, i
))
212 nuseful_nonterminals
++;
214 nuseless_nonterminals
= nvars
- nuseful_nonterminals
;
216 /* A token that was used in %prec should not be warned about. */
219 for (i
= 1; i
< nrules
+ 1; i
++)
220 if (rules
[i
].precsym
!= 0)
221 bitset_set (V1
, rules
[i
].precsym
->number
);
226 /*-------------------------------------------------------------------.
227 | Put the useless productions at the end of RULES, and adjust NRULES |
229 `-------------------------------------------------------------------*/
232 reduce_grammar_tables (void)
234 /* Report and flag useless productions. */
237 for (r
= 1; r
< nrules
+ 1; r
++)
239 rules
[r
].useful
= bitset_test (P
, r
);
240 if (!rules
[r
].useful
)
242 LOCATION_PRINT (stderr
, rules
[r
].location
);
243 fprintf (stderr
, ": %s: %s: ", _("warning"), _("useless rule"));
244 rule_print (&rules
[r
], stderr
);
249 /* Map the nonterminals to their new index: useful first, useless
250 afterwards. Kept for later report. */
253 int useless
= nrules
+ 1 - nuseless_productions
;
254 rule_t
*rules_sorted
= XMALLOC (rule_t
, nrules
+ 1) - 1;
256 for (r
= 1; r
< nrules
+ 1; ++r
)
257 rules_sorted
[rules
[r
].useful
? useful
++ : useless
++] = rules
[r
];
259 rules
= rules_sorted
;
261 /* Renumber the rules markers in RITEMS. */
262 for (r
= 1; r
< nrules
+ 1; ++r
)
264 item_number_t
*rhsp
= rules
[r
].rhs
;
265 for (/* Nothing. */; *rhsp
>= 0; ++rhsp
)
267 *rhsp
= item_number_of_rule_number (r
);
270 nrules
-= nuseless_productions
;
273 /* Adjust NRITEMS. */
277 for (r
= nrules
+ 1; r
< nrules
+ 1 + nuseless_productions
; ++r
)
279 length
= rule_rhs_length (&rules
[r
]);
280 nritems
-= length
+ 1;
286 /*------------------------------.
287 | Remove useless nonterminals. |
288 `------------------------------*/
291 nonterminals_reduce (void)
293 symbol_number_t i
, n
;
295 /* Map the nonterminals to their new index: useful first, useless
296 afterwards. Kept for later report. */
298 symbol_number_t
*nontermmap
= XCALLOC (symbol_number_t
, nvars
) - ntokens
;
300 for (i
= ntokens
; i
< nsyms
; i
++)
301 if (bitset_test (V
, i
))
303 for (i
= ntokens
; i
< nsyms
; i
++)
304 if (!bitset_test (V
, i
))
307 LOCATION_PRINT (stderr
, symbols
[i
]->location
);
308 fprintf (stderr
, ": %s: %s: %s\n",
309 _("warning"), _("useless nonterminal"),
310 symbol_tag_get (symbols
[i
]));
314 /* Shuffle elements of tables indexed by symbol number. */
316 symbol_t
**symbols_sorted
= XMALLOC (symbol_t
*, nvars
) - ntokens
;
318 for (i
= ntokens
; i
< nsyms
; i
++)
319 symbols
[i
]->number
= nontermmap
[i
];
320 for (i
= ntokens
; i
< nsyms
; i
++)
321 symbols_sorted
[nontermmap
[i
]] = symbols
[i
];
322 for (i
= ntokens
; i
< nsyms
; i
++)
323 symbols
[i
] = symbols_sorted
[i
];
324 free (symbols_sorted
+ ntokens
);
329 for (r
= 1; r
< nrules
+ 1; ++r
)
332 for (rhsp
= rules
[r
].rhs
; *rhsp
>= 0; ++rhsp
)
334 *rhsp
= symbol_number_as_item_number (nontermmap
[*rhsp
]);
336 axiom
->number
= nontermmap
[axiom
->number
];
339 nsyms
-= nuseless_nonterminals
;
340 nvars
-= nuseless_nonterminals
;
342 free (nontermmap
+ ntokens
);
346 /*------------------------------------------------------------------.
347 | Output the detailed results of the reductions. For FILE.output. |
348 `------------------------------------------------------------------*/
351 reduce_output (FILE *out
)
353 if (nuseless_nonterminals
> 0)
356 fprintf (out
, "%s\n\n", _("Useless nonterminals:"));
357 for (i
= 0; i
< nuseless_nonterminals
; ++i
)
358 fprintf (out
, " %s\n", symbol_tag_get (symbols
[nsyms
+ i
]));
365 for (i
= 0; i
< ntokens
; i
++)
366 if (!bitset_test (V
, i
) && !bitset_test (V1
, i
))
369 fprintf (out
, "%s\n\n", _("Terminals which are not used:"));
371 fprintf (out
, " %s\n", symbol_tag_get (symbols
[i
]));
377 if (nuseless_productions
> 0)
378 grammar_rules_partial_print (out
, _("Useless rules"),
380 nuseless_productions
+ nrules
+ 1);
387 /*-------------------------------.
388 | Report the results to STDERR. |
389 `-------------------------------*/
394 if (yacc_flag
&& nuseless_productions
)
395 fprintf (stderr
, ngettext ("%d rule never reduced\n",
396 "%d rules never reduced\n",
397 nuseless_productions
),
398 nuseless_productions
);
400 fprintf (stderr
, "%s: %s: ", infile
, _("warning"));
402 if (nuseless_nonterminals
> 0)
403 fprintf (stderr
, ngettext ("%d useless nonterminal",
404 "%d useless nonterminals",
405 nuseless_nonterminals
),
406 nuseless_nonterminals
);
408 if (nuseless_nonterminals
> 0 && nuseless_productions
> 0)
409 fprintf (stderr
, _(" and "));
411 if (nuseless_productions
> 0)
412 fprintf (stderr
, ngettext ("%d useless rule",
414 nuseless_productions
),
415 nuseless_productions
);
416 fprintf (stderr
, "\n");
421 reduce_grammar (void)
425 /* Allocate the global sets used to compute the reduced grammar */
427 N
= bitset_create (nvars
, BITSET_FIXED
);
428 P
= bitset_create (nrules
+ 1, BITSET_FIXED
);
429 V
= bitset_create (nsyms
, BITSET_FIXED
);
430 V1
= bitset_create (nsyms
, BITSET_FIXED
);
432 useless_nonterminals ();
433 inaccessable_symbols ();
435 reduced
= (bool) (nuseless_nonterminals
+ nuseless_productions
> 0);
441 if (!bitset_test (N
, axiom
->number
- ntokens
))
442 fatal (_("Start symbol %s does not derive any sentence"),
443 symbol_tag_get (symbols
[axiom
->number
]));
445 /* First reduce the nonterminals, as they renumber themselves in the
446 whole grammar. If you change the order, nonterms would be
447 renumbered only in the reduced grammar. */
448 if (nuseless_nonterminals
> 0)
449 nonterminals_reduce ();
450 if (nuseless_productions
> 0)
451 reduce_grammar_tables ();
455 grammar_dump (stderr
, "Reduced Grammar");
457 fprintf (stderr
, "reduced %s defines %d terminals, %d nonterminals\
458 , and %d productions.\n",
459 infile
, ntokens
, nvars
, nrules
);
464 /*-----------------------------------------------------------.
465 | Free the global sets used to compute the reduced grammar. |
466 `-----------------------------------------------------------*/