]>
Commit | Line | Data |
---|---|---|
f7d4d87a | 1 | /* Allocate input grammar variables for bison, |
8b3df748 | 2 | Copyright (C) 1984, 1986, 1989, 2001, 2002 Free Software Foundation, Inc. |
f7d4d87a | 3 | |
076ab033 | 4 | This file is part of Bison, the GNU Compiler Compiler. |
f7d4d87a | 5 | |
076ab033 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. | |
f7d4d87a | 10 | |
076ab033 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. | |
f7d4d87a | 15 | |
076ab033 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. */ | |
f7d4d87a DM |
20 | |
21 | ||
4a120d45 | 22 | #include "system.h" |
8b3df748 | 23 | #include "quotearg.h" |
0e78e603 | 24 | #include "symtab.h" |
78ab8f67 AD |
25 | #include "gram.h" |
26 | #include "reduce.h" | |
3067fbef | 27 | #include "reader.h" |
4a120d45 | 28 | |
6b98e4b5 | 29 | /* Comments for these variables are in gram.h. */ |
f7d4d87a | 30 | |
62a3e4f0 | 31 | item_number_t *ritem = NULL; |
0c2d3f4c | 32 | unsigned int nritems = 0; |
75142d45 | 33 | |
1a2b5d37 | 34 | rule_t *rules = NULL; |
5123689b | 35 | int nrules = 0; |
0e78e603 | 36 | |
db8837cb | 37 | symbol_t **symbols = NULL; |
5123689b AD |
38 | int nsyms = 0; |
39 | int ntokens = 1; | |
40 | int nvars = 0; | |
41 | ||
a49aecd5 | 42 | symbol_number_t *token_translations = NULL; |
f7d4d87a | 43 | |
280a38c3 | 44 | int max_user_token_number = 256; |
f7d4d87a | 45 | |
676385e2 | 46 | int glr_parser = 0; |
280a38c3 | 47 | int pure_parser = 0; |
f7d4d87a | 48 | |
c2713865 | 49 | |
c3b407f4 AD |
50 | /*--------------------------------------. |
51 | | Return the number of symbols in RHS. | | |
52 | `--------------------------------------*/ | |
53 | ||
54 | int | |
55 | rule_rhs_length (rule_t *rule) | |
56 | { | |
57 | int res = 0; | |
62a3e4f0 | 58 | item_number_t *rhsp; |
c3b407f4 AD |
59 | for (rhsp = rule->rhs; *rhsp >= 0; ++rhsp) |
60 | ++res; | |
61 | return res; | |
62 | } | |
63 | ||
64 | ||
6b98e4b5 AD |
65 | /*-------------------------------. |
66 | | Print this RULE's RHS on OUT. | | |
67 | `-------------------------------*/ | |
68 | ||
69 | void | |
70 | rule_rhs_print (rule_t *rule, FILE *out) | |
71 | { | |
72 | if (*rule->rhs >= 0) | |
73 | { | |
74 | item_number_t *r; | |
75 | for (r = rule->rhs; *r >= 0; r++) | |
76 | fprintf (out, " %s", symbol_tag_get (symbols[*r])); | |
77 | fputc ('\n', out); | |
78 | } | |
79 | else | |
80 | { | |
81 | fprintf (out, " /* %s */\n", _("empty")); | |
82 | } | |
83 | } | |
84 | ||
85 | ||
86 | /*-------------------------. | |
87 | | Print this RULE on OUT. | | |
88 | `-------------------------*/ | |
89 | ||
90 | void | |
91 | rule_print (rule_t *rule, FILE *out) | |
92 | { | |
93 | fprintf (out, "%s:", symbol_tag_get (rule->lhs)); | |
94 | rule_rhs_print (rule, out); | |
95 | } | |
96 | ||
97 | ||
c2713865 AD |
98 | /*------------------------. |
99 | | Dump RITEM for traces. | | |
100 | `------------------------*/ | |
101 | ||
cbbe7505 | 102 | void |
3067fbef | 103 | ritem_print (FILE *out) |
f7d4d87a | 104 | { |
0c2d3f4c | 105 | unsigned int i; |
3067fbef | 106 | fputs ("RITEM\n", out); |
75142d45 AD |
107 | for (i = 0; i < nritems; ++i) |
108 | if (ritem[i] >= 0) | |
6b98e4b5 | 109 | fprintf (out, " %s", symbol_tag_get (symbols[ritem[i]])); |
3067fbef | 110 | else |
29d29c8f | 111 | fprintf (out, " (rule %d)\n", -ritem[i] - 1); |
3067fbef | 112 | fputs ("\n\n", out); |
f7d4d87a | 113 | } |
c2713865 AD |
114 | |
115 | ||
116 | /*------------------------------------------. | |
117 | | Return the size of the longest rule RHS. | | |
118 | `------------------------------------------*/ | |
119 | ||
120 | size_t | |
121 | ritem_longest_rhs (void) | |
122 | { | |
c3b407f4 | 123 | int max = 0; |
9e7f6bbd | 124 | int i; |
c2713865 | 125 | |
c3b407f4 AD |
126 | for (i = 1; i < nrules + 1; ++i) |
127 | { | |
128 | int length = rule_rhs_length (&rules[i]); | |
129 | if (length > max) | |
130 | max = length; | |
131 | } | |
c2713865 AD |
132 | |
133 | return max; | |
134 | } | |
78ab8f67 AD |
135 | |
136 | ||
9757c359 AD |
137 | /*----------------------------------------------------------------. |
138 | | Print the grammar's rules numbers from BEGIN (inclusive) to END | | |
139 | | (exclusive) on OUT under TITLE. | | |
140 | `----------------------------------------------------------------*/ | |
6b98e4b5 AD |
141 | |
142 | static inline void | |
143 | blanks_print (unsigned n, FILE *out) | |
144 | { | |
145 | for (/* Nothing*/; n > 0; --n) | |
146 | fputc (' ', out); | |
147 | } | |
148 | ||
149 | void | |
9757c359 AD |
150 | grammar_rules_partial_print (FILE *out, const char *title, |
151 | int begin, int end) | |
6b98e4b5 AD |
152 | { |
153 | int r; | |
154 | symbol_t *last_lhs = NULL; | |
155 | ||
156 | /* rule # : LHS -> RHS */ | |
9757c359 AD |
157 | fprintf (out, "%s\n\n", title); |
158 | for (r = begin; r < end; r++) | |
6b98e4b5 AD |
159 | { |
160 | if (last_lhs && last_lhs != rules[r].lhs) | |
161 | fputc ('\n', out); | |
162 | ||
163 | fprintf (out, " %3d ", r - 1); | |
164 | if (last_lhs != rules[r].lhs) | |
165 | { | |
166 | last_lhs = rules[r].lhs; | |
167 | fprintf (out, "%s:", symbol_tag_get (last_lhs)); | |
168 | } | |
169 | else | |
170 | { | |
171 | blanks_print (strlen (symbol_tag_get (last_lhs)), out); | |
172 | fputc ('|', out); | |
173 | } | |
174 | rule_rhs_print (&rules[r], out); | |
175 | } | |
176 | fputs ("\n\n", out); | |
177 | } | |
178 | ||
9757c359 AD |
179 | |
180 | /*------------------------------------------. | |
181 | | Print the grammar's useful rules on OUT. | | |
182 | `------------------------------------------*/ | |
183 | ||
184 | void | |
185 | grammar_rules_print (FILE *out) | |
186 | { | |
187 | grammar_rules_partial_print (out, _("Grammar"), 1, nrules + 1); | |
188 | } | |
189 | ||
190 | ||
78ab8f67 AD |
191 | /*-------------------. |
192 | | Dump the grammar. | | |
193 | `-------------------*/ | |
194 | ||
195 | void | |
196 | grammar_dump (FILE *out, const char *title) | |
197 | { | |
198 | int i; | |
199 | item_number_t *r; | |
200 | ||
201 | fprintf (out, "%s\n\n", title); | |
202 | fprintf (out, | |
203 | "ntokens = %d, nvars = %d, nsyms = %d, nrules = %d, nritems = %d\n\n", | |
204 | ntokens, nvars, nsyms, nrules, nritems); | |
205 | fprintf (out, "Variables\n---------\n\n"); | |
206 | fprintf (out, "Value Sprec Sassoc Tag\n"); | |
207 | for (i = ntokens; i < nsyms; i++) | |
208 | fprintf (out, "%5d %5d %5d %s\n", | |
209 | i, | |
210 | symbols[i]->prec, symbols[i]->assoc, | |
6b98e4b5 | 211 | symbol_tag_get (symbols[i])); |
78ab8f67 AD |
212 | fprintf (out, "\n\n"); |
213 | fprintf (out, "Rules\n-----\n\n"); | |
214 | fprintf (out, "Num (Prec, Assoc, Useful, Ritem Range) Lhs -> Rhs (Ritem range) [Num]\n"); | |
215 | for (i = 1; i < nrules + nuseless_productions + 1; i++) | |
216 | { | |
217 | int rhs_count = 0; | |
218 | /* Find the last RHS index in ritems. */ | |
219 | for (r = rules[i].rhs; *r >= 0; ++r) | |
220 | ++rhs_count; | |
221 | fprintf (out, "%3d (%2d, %2d, %2d, %2d-%2d) %2d ->", | |
222 | i - 1, | |
223 | rules[i].prec ? rules[i].prec->prec : 0, | |
224 | rules[i].prec ? rules[i].prec->assoc : 0, | |
225 | rules[i].useful, | |
226 | rules[i].rhs - ritem, | |
227 | rules[i].rhs - ritem + rhs_count - 1, | |
228 | rules[i].lhs->number); | |
229 | /* Dumped the RHS. */ | |
230 | for (r = rules[i].rhs; *r >= 0; r++) | |
231 | fprintf (out, " %3d", *r); | |
232 | fprintf (out, " [%d]\n", -(*r) - 1); | |
233 | } | |
234 | fprintf (out, "\n\n"); | |
235 | fprintf (out, "Rules interpreted\n-----------------\n\n"); | |
236 | for (i = 1; i < nrules + nuseless_productions + 1; i++) | |
237 | { | |
6b98e4b5 AD |
238 | fprintf (out, "%-5d ", i); |
239 | rule_print (&rules[i], out); | |
78ab8f67 AD |
240 | } |
241 | fprintf (out, "\n\n"); | |
242 | } | |
5372019f AD |
243 | |
244 | ||
245 | void | |
246 | grammar_free (void) | |
247 | { | |
248 | XFREE (ritem); | |
249 | free (rules + 1); | |
250 | XFREE (token_translations); | |
251 | /* Free the symbol table data structure. */ | |
252 | symbols_free (); | |
676385e2 | 253 | free_merger_functions (); |
5372019f | 254 | } |