]>
git.saurik.com Git - bison.git/blob - src/reduce.c
05d15d23297c198ac3f98ffdb7e1d4b7ba737e2e
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
42 /* Set of all nonterminals which are not useless. */
45 /* Set of all rules which have no useless nonterminals in their RHS. */
48 /* Set of all accessible symbols. */
51 /* Set of symbols used to define rule precedence (so they are
52 `useless', but no warning should be issued). */
55 static int nuseful_productions
;
56 static int nuseless_productions
;
57 static int nuseful_nonterminals
;
58 int nuseless_nonterminals
;
65 BITSET_EXECUTE (S
, 0, i
, { ++count
; });
69 /*-------------------------------------------------------------------.
70 | Another way to do this would be with a set for each production and |
71 | then do subset tests against N0, but even for the C grammar the |
72 | whole reducing process takes only 2 seconds on my 8Mhz AT. |
73 `-------------------------------------------------------------------*/
76 useful_production (int i
, bitset N0
)
81 /* A production is useful if all of the nonterminals in its appear
82 in the set of useful nonterminals. */
84 for (r
= &ritem
[rules
[i
].rhs
]; *r
>= 0; r
++)
86 if (!bitset_test (N0
, n
- ntokens
))
92 /*---------------------------------------------------------.
93 | Remember that rules are 1-origin, symbols are 0-origin. |
94 `---------------------------------------------------------*/
97 useless_nonterminals (void)
102 /* N is set as built. Np is set being built this iteration. P is
103 set of all productions which have a RHS all in N. */
105 Np
= bitset_create (nvars
, BITSET_FIXED
);
109 /* The set being computed is a set of nonterminals which can derive
110 the empty string or strings consisting of all terminals. At each
111 iteration a nonterminal is added to the set if there is a
112 production with that nonterminal as its LHS for which all the
113 nonterminals in its RHS are already in the set. Iterate until
114 the set being computed remains unchanged. Any nonterminals not
115 in the set at that point are useless in that they will never be
116 used in deriving a sentence of the language.
118 This iteration doesn't use any special traversal over the
119 productions. A set is kept of all productions for which all the
120 nonterminals in the RHS are in useful. Only productions not in
121 this set are scanned on each iteration. At the end, this set is
122 saved to be used when finding useful productions: only
123 productions in this set will appear in the final grammar. */
128 for (i
= 1; i
<= nrules
; i
++)
130 if (!bitset_test (P
, i
))
132 if (useful_production (i
, N
))
134 bitset_set (Np
, rules
[i
].lhs
- ntokens
);
139 if (bitset_equal_p (N
, Np
))
151 inaccessable_symbols (void)
158 /* Find out which productions are reachable and which symbols are
159 used. Starting with an empty set of productions and a set of
160 symbols which only has the start symbol in it, iterate over all
161 productions until the set of productions remains unchanged for an
162 iteration. For each production which has a LHS in the set of
163 reachable symbols, add the production to the set of reachable
164 productions, and add all of the nonterminals in the RHS of the
165 production to the set of reachable symbols.
167 Consider only the (partially) reduced grammar which has only
168 nonterminals in N and productions in P.
170 The result is the set P of productions in the reduced grammar,
171 and the set V of symbols in the reduced grammar.
173 Although this algorithm also computes the set of terminals which
174 are reachable, no terminal will be deleted from the grammar. Some
175 terminals might not be in the grammar but might be generated by
176 semantic routines, and so the user might want them available with
177 specified numbers. (Is this true?) However, the nonreachable
178 terminals are printed (if running in verbose mode) so that the
181 Vp
= bitset_create (nsyms
, BITSET_FIXED
);
183 Pp
= bitset_create (nrules
+ 1, BITSET_FIXED
);
186 /* If the start symbol isn't useful, then nothing will be useful. */
187 if (bitset_test (N
, start_symbol
- ntokens
))
189 bitset_set (V
, start_symbol
);
194 for (i
= 1; i
<= nrules
; i
++)
196 if (!bitset_test (Pp
, i
)
197 && bitset_test (P
, i
)
198 && bitset_test (V
, rules
[i
].lhs
))
200 for (r
= &ritem
[rules
[i
].rhs
]; *r
>= 0; r
++)
201 if (ISTOKEN (t
= *r
) || bitset_test (N
, t
- ntokens
))
206 if (bitset_equal_p (V
, Vp
))
217 /* Tokens 0, 1, and 2 are internal to Bison. Consider them useful. */
218 bitset_set (V
, 0); /* end-of-input token */
219 bitset_set (V
, 1); /* error token */
220 bitset_set (V
, 2); /* some undefined token */
225 nuseful_productions
= bits_size (P
);
226 nuseless_productions
= nrules
- nuseful_productions
;
228 nuseful_nonterminals
= 0;
229 for (i
= ntokens
; i
< nsyms
; i
++)
230 if (bitset_test (V
, i
))
231 nuseful_nonterminals
++;
232 nuseless_nonterminals
= nvars
- nuseful_nonterminals
;
234 /* A token that was used in %prec should not be warned about. */
235 for (i
= 1; i
< nrules
; i
++)
236 if (rules
[i
].precsym
!= 0)
237 bitset_set (V1
, rules
[i
].precsym
);
241 reduce_grammar_tables (void)
243 /* This is turned off because we would need to change the numbers in
244 the case statements in the actions file.
246 We don't disable it via CPP so that it is still checked with the
247 rest of the code, to avoid its becoming completely obsolete.
249 FIXME: I think the comment above demonstrates this code must be
250 turned off for *semantic* parser, not in the general case. Try
251 to understand this better --akim. */
254 /* remove useless productions */
255 if (nuseless_productions
> 0)
257 short np
, pn
, ni
, pi
;
261 for (pn
= 1; pn
<= nrules
; pn
++)
262 if (bitset_test (P
, pn
))
267 rules
[np
].lhs
= rules
[pn
].lhs
;
268 rules
[np
].line
= rules
[pn
].line
;
269 rules
[np
].prec
= rules
[pn
].prec
;
270 rules
[np
].assoc
= rules
[pn
].assoc
;
271 rules
[np
].rhs
= rules
[pn
].rhs
;
272 if (rules
[np
].rhs
!= ni
)
276 while (ritem
[pi
] >= 0)
277 ritem
[ni
++] = ritem
[pi
++];
283 while (ritem
[ni
++] >= 0)
289 nrules
-= nuseless_productions
;
293 /* Is it worth it to reduce the amount of memory for the
294 grammar? Probably not. */
297 /* Disable useless productions. */
298 if (nuseless_productions
> 0)
301 for (pn
= 1; pn
<= nrules
; pn
++)
302 rules
[pn
].useful
= bitset_test (P
, pn
);
307 /*------------------------------.
308 | Remove useless nonterminals. |
309 `------------------------------*/
312 nonterminals_reduce (void)
316 /* Map the nonterminals to their new index: useful first, useless
317 afterwards. Kept for later report. */
319 short *nontermmap
= XCALLOC (short, nvars
) - ntokens
;
321 for (i
= ntokens
; i
< nsyms
; i
++)
322 if (bitset_test (V
, i
))
324 for (i
= ntokens
; i
< nsyms
; i
++)
325 if (!bitset_test (V
, i
))
329 /* Shuffle elements of tables indexed by symbol number. */
331 bucket
**symbols_sorted
= XMALLOC (bucket
*, nvars
) - ntokens
;
333 for (i
= ntokens
; i
< nsyms
; i
++)
334 symbols_sorted
[nontermmap
[i
]] = symbols
[i
];
335 for (i
= ntokens
; i
< nsyms
; i
++)
336 symbols
[i
] = symbols_sorted
[i
];
337 free (symbols_sorted
+ ntokens
);
340 /* Replace all symbol numbers in valid data structures. */
342 for (i
= 1; i
<= nrules
; i
++)
344 rules
[i
].lhs
= nontermmap
[rules
[i
].lhs
];
345 if (ISVAR (rules
[i
].precsym
))
346 /* Can this happen? */
347 rules
[i
].precsym
= nontermmap
[rules
[i
].precsym
];
350 for (i
= 0; i
< nritems
; ++i
)
351 if (ISVAR (ritem
[i
]))
352 ritem
[i
] = nontermmap
[ritem
[i
]];
354 start_symbol
= nontermmap
[start_symbol
];
356 nsyms
-= nuseless_nonterminals
;
357 nvars
-= nuseless_nonterminals
;
359 free (nontermmap
+ ntokens
);
363 /*------------------------------------------------------------------.
364 | Output the detailed results of the reductions. For FILE.output. |
365 `------------------------------------------------------------------*/
368 reduce_output (FILE *out
)
370 if (nuseless_nonterminals
> 0)
373 fprintf (out
, "%s\n\n", _("Useless nonterminals:"));
374 for (i
= 0; i
< nuseless_nonterminals
; ++i
)
375 fprintf (out
, " %s\n", symbols
[nsyms
+ i
]->tag
);
382 for (i
= 0; i
< ntokens
; i
++)
383 if (!bitset_test (V
, i
) && !bitset_test (V1
, i
))
386 fprintf (out
, "%s\n\n", _("Terminals which are not used:"));
388 fprintf (out
, " %s\n", symbols
[i
]->tag
);
394 if (nuseless_productions
> 0)
397 fprintf (out
, "%s\n\n", _("Useless rules:"));
398 for (i
= 1; i
<= nrules
; i
++)
399 if (!rules
[i
].useful
)
402 fprintf (out
, "#%-4d ", i
- 1);
403 fprintf (out
, "%s:", symbols
[rules
[i
].lhs
]->tag
);
404 for (r
= &ritem
[rules
[i
].rhs
]; *r
>= 0; r
++)
405 fprintf (out
, " %s", symbols
[*r
]->tag
);
413 dump_grammar (FILE *out
)
418 fprintf (out
, "REDUCED GRAMMAR\n\n");
420 "ntokens = %d, nvars = %d, nsyms = %d, nrules = %d, nitems = %d\n\n",
421 ntokens
, nvars
, nsyms
, nrules
, nitems
);
422 fprintf (out
, "Variables\n---------\n\n");
423 fprintf (out
, "Value Sprec Sassoc Tag\n");
424 for (i
= ntokens
; i
< nsyms
; i
++)
425 fprintf (out
, "%5d %5d %5d %s\n",
427 symbols
[i
]->prec
, symbols
[i
]->assoc
, symbols
[i
]->tag
);
428 fprintf (out
, "\n\n");
429 fprintf (out
, "Rules\n-----\n\n");
430 fprintf (out
, "Num (Prec, Assoc, Useful, Ritem Range) Lhs -> Rhs (Ritem range) [Num]\n");
431 for (i
= 1; i
<= nrules
; i
++)
434 /* Find the last RHS index in ritems. */
435 for (r
= &ritem
[rules
[i
].rhs
]; *r
>= 0; ++r
)
437 fprintf (out
, "%3d (%2d, %2d, %2d, %2d-%2d) %2d ->",
439 rules
[i
].prec
, rules
[i
].assoc
, rules
[i
].useful
,
440 rules
[i
].rhs
, rules
[i
].rhs
+ rhs_count
- 1,
442 /* Dumped the RHS. */
443 for (r
= &ritem
[rules
[i
].rhs
]; *r
>= 0; r
++)
444 fprintf (out
, "%3d", *r
);
445 fprintf (out
, " [%d]\n", -(*r
) - 1);
447 fprintf (out
, "\n\n");
448 fprintf (out
, "Rules interpreted\n-----------------\n\n");
449 for (i
= 1; i
<= nrules
; i
++)
451 fprintf (out
, "%-5d %s :", i
, symbols
[rules
[i
].lhs
]->tag
);
452 for (r
= &ritem
[rules
[i
].rhs
]; *r
>= 0; r
++)
453 fprintf (out
, " %s", symbols
[*r
]->tag
);
456 fprintf (out
, "\n\n");
461 /*-------------------------------.
462 | Report the results to STDERR. |
463 `-------------------------------*/
468 if (yacc_flag
&& nuseless_productions
)
469 fprintf (stderr
, ngettext ("%d rule never reduced\n",
470 "%d rules never reduced\n",
471 nuseless_productions
),
472 nuseless_productions
);
474 fprintf (stderr
, _("%s contains "), infile
);
476 if (nuseless_nonterminals
> 0)
477 fprintf (stderr
, ngettext ("%d useless nonterminal",
478 "%d useless nonterminals",
479 nuseless_nonterminals
),
480 nuseless_nonterminals
);
482 if (nuseless_nonterminals
> 0 && nuseless_productions
> 0)
483 fprintf (stderr
, _(" and "));
485 if (nuseless_productions
> 0)
486 fprintf (stderr
, ngettext ("%d useless rule",
488 nuseless_productions
),
489 nuseless_productions
);
490 fprintf (stderr
, "\n");
495 reduce_grammar (void)
499 /* Allocate the global sets used to compute the reduced grammar */
501 N
= bitset_create (nvars
, BITSET_FIXED
);
503 P
= bitset_create (nrules
+ 1, BITSET_FIXED
);
505 V
= bitset_create (nsyms
, BITSET_FIXED
);
507 V1
= bitset_create (nsyms
, BITSET_FIXED
);
510 useless_nonterminals ();
511 inaccessable_symbols ();
513 reduced
= (bool) (nuseless_nonterminals
+ nuseless_productions
> 0);
520 if (!bitset_test (N
, start_symbol
- ntokens
))
521 fatal (_("Start symbol %s does not derive any sentence"),
522 symbols
[start_symbol
]->tag
);
524 reduce_grammar_tables ();
525 if (nuseless_nonterminals
> 0)
526 nonterminals_reduce ();
530 dump_grammar (stderr
);
532 fprintf (stderr
, "reduced %s defines %d terminals, %d nonterminals\
533 , and %d productions.\n",
534 infile
, ntokens
, nvars
, nrules
);
539 /*-----------------------------------------------------------.
540 | Free the global sets used to compute the reduced grammar. |
541 `-----------------------------------------------------------*/