]>
git.saurik.com Git - bison.git/blob - src/gram.c
1 /* Allocate input grammar variables for Bison.
3 Copyright (C) 1984, 1986, 1989, 2001-2003, 2005-2011 Free Software
6 This file is part of Bison, the GNU Compiler Compiler.
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
28 #include "print-xml.h"
33 /* Comments for these variables are in gram.h. */
35 item_number
*ritem
= NULL
;
36 unsigned int nritems
= 0;
39 rule_number nrules
= 0;
41 symbol
**symbols
= NULL
;
46 symbol_number
*token_translations
= NULL
;
48 int max_user_token_number
= 256;
51 rule_useful_in_grammar_p (rule
*r
)
53 return r
->number
< nrules
;
57 rule_useless_in_grammar_p (rule
*r
)
59 return !rule_useful_in_grammar_p (r
);
63 rule_useless_in_parser_p (rule
*r
)
65 return !r
->useful
&& rule_useful_in_grammar_p (r
);
69 rule_lhs_print (rule
*r
, symbol
*previous_lhs
, FILE *out
)
71 fprintf (out
, " %3d ", r
->number
);
72 if (previous_lhs
!= r
->lhs
)
74 fprintf (out
, "%s:", r
->lhs
->tag
);
79 for (n
= strlen (previous_lhs
->tag
); n
> 0; --n
)
86 rule_lhs_print_xml (rule
*r
, FILE *out
, int level
)
88 xml_printf (out
, level
, "<lhs>%s</lhs>", r
->lhs
->tag
);
92 rule_rhs_length (rule
*r
)
96 for (rhsp
= r
->rhs
; *rhsp
>= 0; ++rhsp
)
102 rule_rhs_print (rule
*r
, FILE *out
)
107 for (rp
= r
->rhs
; *rp
>= 0; rp
++)
108 fprintf (out
, " %s", symbols
[*rp
]->tag
);
113 fprintf (out
, " /* %s */\n", _("empty"));
118 rule_rhs_print_xml (rule
*r
, FILE *out
, int level
)
123 xml_puts (out
, level
, "<rhs>");
124 for (rp
= r
->rhs
; *rp
>= 0; rp
++)
125 xml_printf (out
, level
+ 1, "<symbol>%s</symbol>",
126 xml_escape (symbols
[*rp
]->tag
));
127 xml_puts (out
, level
, "</rhs>");
131 xml_puts (out
, level
, "<rhs>");
132 xml_puts (out
, level
+ 1, "<empty/>");
133 xml_puts (out
, level
, "</rhs>");
138 rule_print (rule
*r
, FILE *out
)
140 fprintf (out
, "%s:", r
->lhs
->tag
);
141 rule_rhs_print (r
, out
);
145 ritem_print (FILE *out
)
148 fputs ("RITEM\n", out
);
149 for (i
= 0; i
< nritems
; ++i
)
151 fprintf (out
, " %s", symbols
[ritem
[i
]]->tag
);
153 fprintf (out
, " (rule %d)\n", item_number_as_rule_number (ritem
[i
]));
158 ritem_longest_rhs (void)
163 for (r
= 0; r
< nrules
; ++r
)
165 int length
= rule_rhs_length (&rules
[r
]);
174 grammar_rules_partial_print (FILE *out
, const char *title
,
179 symbol
*previous_lhs
= NULL
;
181 /* rule # : LHS -> RHS */
182 for (r
= 0; r
< nrules
+ nuseless_productions
; r
++)
184 if (filter
&& !filter (&rules
[r
]))
187 fprintf (out
, "%s\n\n", title
);
188 else if (previous_lhs
&& previous_lhs
!= rules
[r
].lhs
)
191 rule_lhs_print (&rules
[r
], previous_lhs
, out
);
192 rule_rhs_print (&rules
[r
], out
);
193 previous_lhs
= rules
[r
].lhs
;
200 grammar_rules_print (FILE *out
)
202 grammar_rules_partial_print (out
, _("Grammar"), rule_useful_in_grammar_p
);
206 grammar_rules_print_xml (FILE *out
, int level
)
211 for (r
= 0; r
< nrules
+ nuseless_productions
; r
++)
214 xml_puts (out
, level
+ 1, "<rules>");
217 char const *usefulness
;
218 if (rule_useless_in_grammar_p (&rules
[r
]))
219 usefulness
= "useless-in-grammar";
220 else if (rule_useless_in_parser_p (&rules
[r
]))
221 usefulness
= "useless-in-parser";
223 usefulness
= "useful";
224 xml_indent (out
, level
+ 2);
225 fprintf (out
, "<rule number=\"%d\" usefulness=\"%s\"",
226 rules
[r
].number
, usefulness
);
227 if (rules
[r
].precsym
)
228 fprintf (out
, " percent_prec=\"%s\"",
229 xml_escape (rules
[r
].precsym
->tag
));
232 rule_lhs_print_xml (&rules
[r
], out
, level
+ 3);
233 rule_rhs_print_xml (&rules
[r
], out
, level
+ 3);
234 xml_puts (out
, level
+ 2, "</rule>");
237 xml_puts (out
, level
+ 1, "</rules>");
239 xml_puts (out
, level
+ 1, "<rules/>");
243 grammar_dump (FILE *out
, const char *title
)
245 fprintf (out
, "%s\n\n", title
);
247 "ntokens = %d, nvars = %d, nsyms = %d, nrules = %d, nritems = %d\n\n",
248 ntokens
, nvars
, nsyms
, nrules
, nritems
);
251 fprintf (out
, "Variables\n---------\n\n");
254 fprintf (out
, "Value Sprec Sassoc Tag\n");
256 for (i
= ntokens
; i
< nsyms
; i
++)
257 fprintf (out
, "%5d %5d %5d %s\n",
259 symbols
[i
]->prec
, symbols
[i
]->assoc
,
261 fprintf (out
, "\n\n");
264 fprintf (out
, "Rules\n-----\n\n");
267 fprintf (out
, "Num (Prec, Assoc, Useful, Ritem Range) Lhs -> Rhs (Ritem range) [Num]\n");
268 for (i
= 0; i
< nrules
+ nuseless_productions
; i
++)
270 rule
*rule_i
= &rules
[i
];
271 item_number
*rp
= NULL
;
272 unsigned int rhs_itemno
= rule_i
->rhs
- ritem
;
273 unsigned int rhs_count
= 0;
274 /* Find the last RHS index in ritems. */
275 for (rp
= rule_i
->rhs
; *rp
>= 0; ++rp
)
277 fprintf (out
, "%3d (%2d, %2d, %2d, %2u-%2u) %2d ->",
279 rule_i
->prec
? rule_i
->prec
->prec
: 0,
280 rule_i
->prec
? rule_i
->prec
->assoc
: 0,
283 rhs_itemno
+ rhs_count
- 1,
284 rule_i
->lhs
->number
);
285 /* Dumped the RHS. */
286 for (rp
= rule_i
->rhs
; *rp
>= 0; rp
++)
287 fprintf (out
, " %3d", *rp
);
288 fprintf (out
, " [%d]\n", item_number_as_rule_number (*rp
));
291 fprintf (out
, "\n\n");
293 fprintf (out
, "Rules interpreted\n-----------------\n\n");
296 for (r
= 0; r
< nrules
+ nuseless_productions
; r
++)
298 fprintf (out
, "%-5d ", r
);
299 rule_print (&rules
[r
], out
);
302 fprintf (out
, "\n\n");
306 grammar_rules_useless_report (const char *message
)
309 for (r
= 0; r
< nrules
; ++r
)
310 if (!rules
[r
].useful
)
312 warn_at (rules
[r
].location
, "%s: ", message
);
313 rule_print (&rules
[r
], stderr
);
324 free (token_translations
);
325 /* Free the symbol table data structure. */
327 free_merger_functions ();