]>
Commit | Line | Data |
---|---|---|
a932883e | 1 | /* Output the generated parsing program for Bison. |
87ceef73 | 2 | |
5bb18f9a | 3 | Copyright (C) 1984, 1986, 1989, 1992, 2000, 2001, 2002 |
255ef638 | 4 | Free Software Foundation, Inc. |
c3e23647 | 5 | |
9ee3c97b | 6 | This file is part of Bison, the GNU Compiler Compiler. |
c3e23647 | 7 | |
9ee3c97b AD |
8 | Bison is free software; you can redistribute it and/or modify it |
9 | under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 2, or (at your option) | |
11 | any later version. | |
c3e23647 | 12 | |
9ee3c97b AD |
13 | Bison is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 | General Public License for more details. | |
c3e23647 | 17 | |
9ee3c97b AD |
18 | You should have received a copy of the GNU General Public License |
19 | along with Bison; see the file COPYING. If not, write to the Free | |
20 | Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
21 | 02111-1307, USA. */ | |
c3e23647 RS |
22 | |
23 | ||
c3e23647 | 24 | #include "system.h" |
21fd22d6 PE |
25 | |
26 | #include <error.h> | |
27 | #include <get-errno.h> | |
28 | #include <quotearg.h> | |
29 | #include <subpipe.h> | |
30 | #include <timevar.h> | |
31 | ||
32 | #include "complain.h" | |
c3e23647 | 33 | #include "files.h" |
21fd22d6 | 34 | #include "getargs.h" |
c3e23647 | 35 | #include "gram.h" |
21fd22d6 | 36 | #include "muscle_tab.h" |
6c89f1c1 | 37 | #include "output.h" |
a70083a3 | 38 | #include "reader.h" |
ad949da9 | 39 | #include "symtab.h" |
c6f1a33c | 40 | #include "tables.h" |
be2a1a68 | 41 | |
be2a1a68 | 42 | /* From src/scan-skel.l. */ |
573312ac | 43 | void scan_skel (FILE *); |
d019d655 | 44 | |
12b0043a | 45 | |
f87685c3 | 46 | static struct obstack format_obstack; |
c3e23647 | 47 | |
c7925b99 MA |
48 | int error_verbose = 0; |
49 | ||
f0440388 | 50 | |
133c20e2 | 51 | |
5372019f AD |
52 | /*-------------------------------------------------------------------. |
53 | | Create a function NAME which associates to the muscle NAME the | | |
54 | | result of formatting the FIRST and then TABLE_DATA[BEGIN..END[ (of | | |
55 | | TYPE), and to the muscle NAME_max, the max value of the | | |
56 | | TABLE_DATA. | | |
57 | `-------------------------------------------------------------------*/ | |
62a3e4f0 | 58 | |
62a3e4f0 | 59 | |
5372019f | 60 | #define GENERATE_MUSCLE_INSERT_TABLE(Name, Type) \ |
5fbb0954 | 61 | \ |
5372019f AD |
62 | static void \ |
63 | Name (const char *name, \ | |
5fbb0954 AD |
64 | Type *table_data, \ |
65 | Type first, \ | |
66 | int begin, \ | |
67 | int end) \ | |
68 | { \ | |
12b0043a | 69 | Type min = first; \ |
0c2d3f4c | 70 | Type max = first; \ |
87ceef73 PE |
71 | long int lmin; \ |
72 | long int lmax; \ | |
5fbb0954 AD |
73 | int i; \ |
74 | int j = 1; \ | |
75 | \ | |
5372019f | 76 | obstack_fgrow1 (&format_obstack, "%6d", first); \ |
5fbb0954 AD |
77 | for (i = begin; i < end; ++i) \ |
78 | { \ | |
5372019f | 79 | obstack_1grow (&format_obstack, ','); \ |
5fbb0954 AD |
80 | if (j >= 10) \ |
81 | { \ | |
5372019f | 82 | obstack_sgrow (&format_obstack, "\n "); \ |
5fbb0954 AD |
83 | j = 1; \ |
84 | } \ | |
85 | else \ | |
86 | ++j; \ | |
5372019f | 87 | obstack_fgrow1 (&format_obstack, "%6d", table_data[i]); \ |
12b0043a AD |
88 | if (table_data[i] < min) \ |
89 | min = table_data[i]; \ | |
90 | if (max < table_data[i]) \ | |
5fbb0954 AD |
91 | max = table_data[i]; \ |
92 | } \ | |
5372019f AD |
93 | obstack_1grow (&format_obstack, 0); \ |
94 | muscle_insert (name, obstack_finish (&format_obstack)); \ | |
5fbb0954 | 95 | \ |
87ceef73 PE |
96 | lmin = min; \ |
97 | lmax = max; \ | |
12b0043a AD |
98 | /* Build `NAME_min' and `NAME_max' in the obstack. */ \ |
99 | obstack_fgrow1 (&format_obstack, "%s_min", name); \ | |
100 | obstack_1grow (&format_obstack, 0); \ | |
87ceef73 | 101 | MUSCLE_INSERT_LONG_INT (obstack_finish (&format_obstack), lmin); \ |
5372019f AD |
102 | obstack_fgrow1 (&format_obstack, "%s_max", name); \ |
103 | obstack_1grow (&format_obstack, 0); \ | |
87ceef73 | 104 | MUSCLE_INSERT_LONG_INT (obstack_finish (&format_obstack), lmax); \ |
62a3e4f0 AD |
105 | } |
106 | ||
5372019f | 107 | GENERATE_MUSCLE_INSERT_TABLE(muscle_insert_unsigned_int_table, unsigned int) |
12b0043a | 108 | GENERATE_MUSCLE_INSERT_TABLE(muscle_insert_int_table, int) |
5372019f | 109 | GENERATE_MUSCLE_INSERT_TABLE(muscle_insert_short_table, short) |
21fd22d6 PE |
110 | GENERATE_MUSCLE_INSERT_TABLE(muscle_insert_base_table, base_number) |
111 | GENERATE_MUSCLE_INSERT_TABLE(muscle_insert_rule_number_table, rule_number) | |
112 | GENERATE_MUSCLE_INSERT_TABLE(muscle_insert_symbol_number_table, symbol_number) | |
113 | GENERATE_MUSCLE_INSERT_TABLE(muscle_insert_item_number_table, item_number) | |
114 | GENERATE_MUSCLE_INSERT_TABLE(muscle_insert_state_number_table, state_number) | |
c3e23647 RS |
115 | |
116 | ||
3813e141 PE |
117 | /*----------------------------------------------------------------------. |
118 | | Print to OUT a representation of FILENAME escaped both for C and M4. | | |
119 | `----------------------------------------------------------------------*/ | |
120 | ||
121 | static void | |
122 | escaped_file_name_output (FILE *out, char const *filename) | |
123 | { | |
124 | char const *p; | |
125 | fprintf (out, "[["); | |
126 | ||
127 | for (p = quotearg_style (c_quoting_style, filename); *p; p++) | |
128 | switch (*p) | |
129 | { | |
130 | case '$': fputs ("$][", out); break; | |
131 | case '@': fputs ("@@", out); break; | |
132 | case '[': fputs ("@{", out); break; | |
133 | case ']': fputs ("@}", out); break; | |
134 | default: fputc (*p, out); break; | |
135 | } | |
136 | ||
137 | fprintf (out, "]]"); | |
138 | } | |
139 | ||
140 | ||
39912f52 AD |
141 | /*------------------------------------------------------------------. |
142 | | Prepare the muscles related to the symbols: translate, tname, and | | |
143 | | toknum. | | |
144 | `------------------------------------------------------------------*/ | |
b0940840 | 145 | |
4a120d45 | 146 | static void |
39912f52 | 147 | prepare_symbols (void) |
c3e23647 | 148 | { |
39912f52 AD |
149 | MUSCLE_INSERT_INT ("tokens_number", ntokens); |
150 | MUSCLE_INSERT_INT ("nterms_number", nvars); | |
151 | MUSCLE_INSERT_INT ("undef_token_number", undeftoken->number); | |
152 | MUSCLE_INSERT_INT ("user_token_number_max", max_user_token_number); | |
153 | ||
a49aecd5 | 154 | muscle_insert_symbol_number_table ("translate", |
fc5734fe AD |
155 | token_translations, |
156 | token_translations[0], | |
157 | 1, max_user_token_number + 1); | |
c3e23647 | 158 | |
39912f52 | 159 | /* tname -- token names. */ |
b0940840 AD |
160 | { |
161 | int i; | |
162 | int j = 0; | |
163 | for (i = 0; i < nsyms; i++) | |
164 | { | |
6b98e4b5 AD |
165 | /* Be sure not to use twice the same QUOTEARG slot: |
166 | SYMBOL_TAG_GET uses slot 0. */ | |
b0940840 AD |
167 | const char *cp = |
168 | quotearg_n_style (1, c_quoting_style, | |
97650f4e | 169 | symbols[i]->tag); |
01cfa697 | 170 | /* Width of the next token, including the two quotes, the comma |
b0940840 | 171 | and the space. */ |
21fd22d6 | 172 | int width = strlen (cp) + 2; |
b0940840 | 173 | |
21fd22d6 | 174 | if (j + width > 75) |
b0940840 AD |
175 | { |
176 | obstack_sgrow (&format_obstack, "\n "); | |
177 | j = 2; | |
178 | } | |
179 | ||
3813e141 | 180 | MUSCLE_OBSTACK_SGROW (&format_obstack, cp); |
b0940840 | 181 | obstack_sgrow (&format_obstack, ", "); |
21fd22d6 | 182 | j += width; |
b0940840 AD |
183 | } |
184 | /* Add a NULL entry to list of tokens (well, 0, as NULL might not be | |
185 | defined). */ | |
186 | obstack_sgrow (&format_obstack, "0"); | |
c3e23647 | 187 | |
b0940840 AD |
188 | /* Finish table and store. */ |
189 | obstack_1grow (&format_obstack, 0); | |
190 | muscle_insert ("tname", obstack_finish (&format_obstack)); | |
191 | } | |
192 | ||
12b0043a | 193 | /* Output YYTOKNUM. */ |
b2ed6e58 AD |
194 | { |
195 | int i; | |
87ceef73 | 196 | int *values = MALLOC (values, ntokens); |
3650b4b8 | 197 | for (i = 0; i < ntokens; ++i) |
b0940840 | 198 | values[i] = symbols[i]->user_token_number; |
12b0043a | 199 | muscle_insert_int_table ("toknum", values, |
3650b4b8 | 200 | values[0], 1, ntokens); |
b0940840 | 201 | free (values); |
b2ed6e58 | 202 | } |
b0940840 | 203 | } |
b2ed6e58 | 204 | |
b0940840 AD |
205 | |
206 | /*-------------------------------------------------------------. | |
207 | | Prepare the muscles related to the rules: rhs, prhs, r1, r2, | | |
95612cfa | 208 | | rline, dprec, merger. | |
b0940840 AD |
209 | `-------------------------------------------------------------*/ |
210 | ||
211 | static void | |
212 | prepare_rules (void) | |
213 | { | |
21fd22d6 | 214 | rule_number r; |
5df5f6d5 | 215 | unsigned int i = 0; |
87ceef73 PE |
216 | item_number *rhs = MALLOC (rhs, nritems); |
217 | unsigned int *prhs = MALLOC (prhs, nrules); | |
218 | unsigned int *rline = MALLOC (rline, nrules); | |
219 | symbol_number *r1 = MALLOC (r1, nrules); | |
220 | unsigned int *r2 = MALLOC (r2, nrules); | |
221 | short *dprec = MALLOC (dprec, nrules); | |
222 | short *merger = MALLOC (merger, nrules); | |
4b3d3a8e AD |
223 | |
224 | for (r = 0; r < nrules; ++r) | |
b0940840 | 225 | { |
21fd22d6 | 226 | item_number *rhsp = NULL; |
b0940840 AD |
227 | /* Index of rule R in RHS. */ |
228 | prhs[r] = i; | |
229 | /* RHS of the rule R. */ | |
230 | for (rhsp = rules[r].rhs; *rhsp >= 0; ++rhsp) | |
231 | rhs[i++] = *rhsp; | |
232 | /* LHS of the rule R. */ | |
233 | r1[r] = rules[r].lhs->number; | |
234 | /* Length of rule R's RHS. */ | |
235 | r2[r] = i - prhs[r]; | |
236 | /* Separator in RHS. */ | |
237 | rhs[i++] = -1; | |
238 | /* Line where rule was defined. */ | |
2073702c | 239 | rline[r] = rules[r].location.start.line; |
95612cfa | 240 | /* Dynamic precedence (GLR). */ |
676385e2 | 241 | dprec[r] = rules[r].dprec; |
95612cfa | 242 | /* Merger-function index (GLR). */ |
676385e2 | 243 | merger[r] = rules[r].merger; |
b0940840 | 244 | } |
a932883e PE |
245 | if (i != nritems) |
246 | abort (); | |
b0940840 | 247 | |
5372019f | 248 | muscle_insert_item_number_table ("rhs", rhs, ritem[0], 1, nritems); |
4b3d3a8e AD |
249 | muscle_insert_unsigned_int_table ("prhs", prhs, 0, 0, nrules); |
250 | muscle_insert_unsigned_int_table ("rline", rline, 0, 0, nrules); | |
251 | muscle_insert_symbol_number_table ("r1", r1, 0, 0, nrules); | |
252 | muscle_insert_unsigned_int_table ("r2", r2, 0, 0, nrules); | |
253 | muscle_insert_short_table ("dprec", dprec, 0, 0, nrules); | |
254 | muscle_insert_short_table ("merger", merger, 0, 0, nrules); | |
796d61fb | 255 | |
39912f52 AD |
256 | MUSCLE_INSERT_INT ("rules_number", nrules); |
257 | ||
b0940840 AD |
258 | free (rhs); |
259 | free (prhs); | |
5df5f6d5 AD |
260 | free (rline); |
261 | free (r1); | |
b0940840 | 262 | free (r2); |
676385e2 PH |
263 | free (dprec); |
264 | free (merger); | |
c3e23647 RS |
265 | } |
266 | ||
b0940840 AD |
267 | /*--------------------------------------------. |
268 | | Prepare the muscles related to the states. | | |
269 | `--------------------------------------------*/ | |
c3e23647 | 270 | |
4a120d45 | 271 | static void |
b0940840 | 272 | prepare_states (void) |
c3e23647 | 273 | { |
21fd22d6 | 274 | state_number i; |
87ceef73 | 275 | symbol_number *values = MALLOC (values, nstates); |
9703cc49 | 276 | for (i = 0; i < nstates; ++i) |
29e88316 | 277 | values[i] = states[i]->accessing_symbol; |
a49aecd5 | 278 | muscle_insert_symbol_number_table ("stos", values, |
d57650a5 | 279 | 0, 1, nstates); |
87ceef73 | 280 | free (values); |
39912f52 AD |
281 | |
282 | MUSCLE_INSERT_INT ("last", high); | |
283 | MUSCLE_INSERT_INT ("final_state_number", final_state->number); | |
284 | MUSCLE_INSERT_INT ("states_number", nstates); | |
c3e23647 RS |
285 | } |
286 | ||
287 | ||
c3e23647 | 288 | |
bb33f19a PE |
289 | /*---------------------------------. |
290 | | Output the user actions to OUT. | | |
291 | `---------------------------------*/ | |
12b0043a | 292 | |
4a120d45 | 293 | static void |
c6f1a33c | 294 | user_actions_output (FILE *out) |
3f96f4dc | 295 | { |
21fd22d6 | 296 | rule_number r; |
dafdc66f AD |
297 | |
298 | fputs ("m4_define([b4_actions], \n[[", out); | |
4b3d3a8e | 299 | for (r = 0; r < nrules; ++r) |
9222837b | 300 | if (rules[r].action) |
3f96f4dc | 301 | { |
4b3d3a8e | 302 | fprintf (out, " case %d:\n", r + 1); |
3f96f4dc | 303 | |
3813e141 | 304 | fprintf (out, "]b4_syncline([[%d]], ", |
2073702c PE |
305 | rules[r].action_location.start.line); |
306 | escaped_file_name_output (out, rules[r].action_location.start.file); | |
3813e141 | 307 | fprintf (out, ")[\n"); |
e9955c83 | 308 | fprintf (out, " %s\n break;\n\n", |
9222837b | 309 | rules[r].action); |
3f96f4dc | 310 | } |
dafdc66f | 311 | fputs ("]])\n\n", out); |
3f96f4dc AD |
312 | } |
313 | ||
676385e2 PH |
314 | /*--------------------------------------. |
315 | | Output the merge functions to OUT. | | |
316 | `--------------------------------------*/ | |
317 | ||
41442480 | 318 | static void |
676385e2 PH |
319 | merger_output (FILE *out) |
320 | { | |
321 | int n; | |
322 | merger_list* p; | |
323 | ||
324 | fputs ("m4_define([b4_mergers], \n[[", out); | |
e0e5bf84 | 325 | for (n = 1, p = merge_functions; p != NULL; n += 1, p = p->next) |
676385e2 | 326 | { |
e0e5bf84 | 327 | if (p->type[0] == '\0') |
676385e2 PH |
328 | fprintf (out, " case %d: yyval = %s (*yy0, *yy1); break;\n", |
329 | n, p->name); | |
330 | else | |
331 | fprintf (out, " case %d: yyval.%s = %s (*yy0, *yy1); break;\n", | |
332 | n, p->type, p->name); | |
333 | } | |
334 | fputs ("]])\n\n", out); | |
335 | } | |
3f96f4dc | 336 | |
ae7453f2 AD |
337 | /*--------------------------------------. |
338 | | Output the tokens definition to OUT. | | |
339 | `--------------------------------------*/ | |
091e20bb | 340 | |
c6f1a33c | 341 | static void |
be2a1a68 | 342 | token_definitions_output (FILE *out) |
091e20bb AD |
343 | { |
344 | int i; | |
0d8bed56 | 345 | int first = 1; |
dafdc66f AD |
346 | |
347 | fputs ("m4_define([b4_tokens], \n[", out); | |
091e20bb AD |
348 | for (i = 0; i < ntokens; ++i) |
349 | { | |
21fd22d6 PE |
350 | symbol *sym = symbols[i]; |
351 | int number = sym->user_token_number; | |
091e20bb | 352 | |
b87f8b21 AD |
353 | /* At this stage, if there are literal aliases, they are part of |
354 | SYMBOLS, so we should not find symbols which are the aliases | |
355 | here. */ | |
a932883e PE |
356 | if (number == USER_NUMBER_ALIAS) |
357 | abort (); | |
b87f8b21 | 358 | |
091e20bb | 359 | /* Skip error token. */ |
21fd22d6 | 360 | if (sym == errtoken) |
091e20bb | 361 | continue; |
b87f8b21 AD |
362 | |
363 | /* If this string has an alias, then it is necessarily the alias | |
364 | which is to be output. */ | |
21fd22d6 PE |
365 | if (sym->alias) |
366 | sym = sym->alias; | |
b87f8b21 AD |
367 | |
368 | /* Don't output literal chars or strings (when defined only as a | |
369 | string). Note that must be done after the alias resolution: | |
370 | think about `%token 'f' "f"'. */ | |
21fd22d6 | 371 | if (sym->tag[0] == '\'' || sym->tag[0] == '\"') |
b87f8b21 | 372 | continue; |
091e20bb AD |
373 | |
374 | /* Don't #define nonliteral tokens whose names contain periods | |
375 | or '$' (as does the default value of the EOF token). */ | |
21fd22d6 | 376 | if (strchr (sym->tag, '.') || strchr (sym->tag, '$')) |
091e20bb AD |
377 | continue; |
378 | ||
83ccf991 | 379 | fprintf (out, "%s[[[%s]], [%d]]", |
21fd22d6 | 380 | first ? "" : ",\n", sym->tag, number); |
b87f8b21 | 381 | |
0d8bed56 | 382 | first = 0; |
091e20bb | 383 | } |
dafdc66f | 384 | fputs ("])\n\n", out); |
091e20bb AD |
385 | } |
386 | ||
387 | ||
ae7453f2 AD |
388 | /*---------------------------------------. |
389 | | Output the symbol destructors to OUT. | | |
390 | `---------------------------------------*/ | |
9280d3ef AD |
391 | |
392 | static void | |
393 | symbol_destructors_output (FILE *out) | |
394 | { | |
395 | int i; | |
396 | int first = 1; | |
397 | ||
398 | fputs ("m4_define([b4_symbol_destructors], \n[", out); | |
399 | for (i = 0; i < nsyms; ++i) | |
400 | if (symbols[i]->destructor) | |
401 | { | |
21fd22d6 | 402 | symbol *sym = symbols[i]; |
9280d3ef | 403 | |
24c0aad7 AD |
404 | /* Filename, lineno, |
405 | Symbol-name, Symbol-number, | |
406 | destructor, typename. */ | |
3813e141 PE |
407 | fprintf (out, "%s[", |
408 | first ? "" : ",\n"); | |
21fd22d6 | 409 | escaped_file_name_output (out, sym->destructor_location.start.file); |
3813e141 | 410 | fprintf (out, ", [[%d]], [[%s]], [[%d]], [[%s]], [[%s]]]", |
21fd22d6 PE |
411 | sym->destructor_location.start.line, |
412 | sym->tag, | |
413 | sym->number, | |
414 | sym->destructor, | |
415 | sym->type_name); | |
9280d3ef AD |
416 | |
417 | first = 0; | |
418 | } | |
419 | fputs ("])\n\n", out); | |
420 | } | |
421 | ||
422 | ||
ae7453f2 AD |
423 | /*------------------------------------. |
424 | | Output the symbol printers to OUT. | | |
425 | `------------------------------------*/ | |
366eea36 AD |
426 | |
427 | static void | |
428 | symbol_printers_output (FILE *out) | |
429 | { | |
430 | int i; | |
431 | int first = 1; | |
432 | ||
433 | fputs ("m4_define([b4_symbol_printers], \n[", out); | |
434 | for (i = 0; i < nsyms; ++i) | |
435 | if (symbols[i]->destructor) | |
436 | { | |
21fd22d6 | 437 | symbol *sym = symbols[i]; |
366eea36 AD |
438 | |
439 | /* Filename, lineno, | |
440 | Symbol-name, Symbol-number, | |
ae7453f2 | 441 | printer, typename. */ |
3813e141 PE |
442 | fprintf (out, "%s[", |
443 | first ? "" : ",\n"); | |
21fd22d6 | 444 | escaped_file_name_output (out, sym->printer_location.start.file); |
3813e141 | 445 | fprintf (out, ", [[%d]], [[%s]], [[%d]], [[%s]], [[%s]]]", |
21fd22d6 PE |
446 | sym->printer_location.start.line, |
447 | sym->tag, | |
448 | sym->number, | |
449 | sym->printer, | |
450 | sym->type_name); | |
366eea36 AD |
451 | |
452 | first = 0; | |
453 | } | |
454 | fputs ("])\n\n", out); | |
455 | } | |
456 | ||
457 | ||
4a120d45 | 458 | static void |
c6f1a33c | 459 | prepare_actions (void) |
6c89f1c1 | 460 | { |
c6f1a33c AD |
461 | /* Figure out the actions for the specified state, indexed by |
462 | lookahead token type. */ | |
bbb5bcc6 | 463 | |
c6f1a33c AD |
464 | muscle_insert_rule_number_table ("defact", yydefact, |
465 | yydefact[0], 1, nstates); | |
6c89f1c1 | 466 | |
c6f1a33c AD |
467 | /* Figure out what to do after reducing with each rule, depending on |
468 | the saved state from before the beginning of parsing the data | |
469 | that matched this rule. */ | |
d57650a5 AD |
470 | muscle_insert_state_number_table ("defgoto", yydefgoto, |
471 | yydefgoto[0], 1, nsyms - ntokens); | |
12b0043a | 472 | |
12b0043a | 473 | |
12b0043a AD |
474 | /* Output PACT. */ |
475 | muscle_insert_base_table ("pact", base, | |
5372019f | 476 | base[0], 1, nstates); |
12b0043a | 477 | MUSCLE_INSERT_INT ("pact_ninf", base_ninf); |
c3e23647 | 478 | |
12b0043a AD |
479 | /* Output PGOTO. */ |
480 | muscle_insert_base_table ("pgoto", base, | |
5372019f | 481 | base[nstates], nstates + 1, nvectors); |
c3e23647 | 482 | |
12b0043a AD |
483 | muscle_insert_base_table ("table", table, |
484 | table[0], 1, high + 1); | |
485 | MUSCLE_INSERT_INT ("table_ninf", table_ninf); | |
676385e2 | 486 | |
12b0043a AD |
487 | muscle_insert_base_table ("check", check, |
488 | check[0], 1, high + 1); | |
c3e23647 | 489 | |
ea99527d AD |
490 | /* GLR parsing slightly modifies YYTABLE and YYCHECK (and thus |
491 | YYPACT) so that in states with unresolved conflicts, the default | |
492 | reduction is not used in the conflicted entries, so that there is | |
493 | a place to put a conflict pointer. | |
494 | ||
495 | This means that YYCONFLP and YYCONFL are nonsense for a non-GLR | |
496 | parser, so we could avoid accidents by not writing them out in | |
497 | that case. Nevertheless, it seems even better to be able to use | |
498 | the GLR skeletons even without the non-deterministic tables. */ | |
499 | muscle_insert_unsigned_int_table ("conflict_list_heads", conflict_table, | |
39912f52 | 500 | conflict_table[0], 1, high + 1); |
ea99527d AD |
501 | muscle_insert_unsigned_int_table ("conflicting_rules", conflict_list, |
502 | conflict_list[0], 1, conflict_list_cnt); | |
6c89f1c1 | 503 | } |
c3e23647 | 504 | |
652def80 | 505 | \f |
1239777d AD |
506 | /*---------------------------. |
507 | | Call the skeleton parser. | | |
508 | `---------------------------*/ | |
c3e23647 | 509 | |
4a120d45 | 510 | static void |
1239777d | 511 | output_skeleton (void) |
9b3add5b | 512 | { |
573312ac PE |
513 | FILE *in; |
514 | FILE *out; | |
515 | int filter_fd[2]; | |
2fd4e131 | 516 | char const *argv[6]; |
573312ac PE |
517 | pid_t pid; |
518 | ||
519 | /* Compute the names of the package data dir and skeleton file. | |
520 | Test whether m4sugar.m4 is readable, to check for proper | |
521 | installation. A faulty installation can cause deadlock, so a | |
522 | cheap sanity check is worthwhile. */ | |
523 | char const m4sugar[] = "m4sugar/m4sugar.m4"; | |
2fd4e131 PE |
524 | char *full_m4sugar; |
525 | char *full_cm4; | |
573312ac PE |
526 | char *full_path; |
527 | char const *p; | |
528 | char const *m4 = (p = getenv ("M4")) ? p : M4; | |
529 | char const *pkgdatadir = (p = getenv ("BISON_PKGDATADIR")) ? p : PKGDATADIR; | |
530 | size_t skeleton_size = strlen (skeleton) + 1; | |
531 | size_t pkgdatadirlen = strlen (pkgdatadir); | |
532 | while (pkgdatadirlen && pkgdatadir[pkgdatadirlen - 1] == '/') | |
533 | pkgdatadirlen--; | |
534 | full_path = xmalloc (pkgdatadirlen + 1 | |
535 | + (skeleton_size < sizeof m4sugar | |
536 | ? sizeof m4sugar : skeleton_size)); | |
537 | strcpy (full_path, pkgdatadir); | |
538 | full_path[pkgdatadirlen] = '/'; | |
539 | strcpy (full_path + pkgdatadirlen + 1, m4sugar); | |
2fd4e131 PE |
540 | full_m4sugar = xstrdup (full_path); |
541 | strcpy (full_path + pkgdatadirlen + 1, "c.m4"); | |
542 | full_cm4 = xstrdup (full_path); | |
573312ac | 543 | strcpy (full_path + pkgdatadirlen + 1, skeleton); |
2fd4e131 | 544 | xfclose (xfopen (full_m4sugar, "r")); |
573312ac PE |
545 | |
546 | /* Create an m4 subprocess connected to us via two pipes. */ | |
547 | ||
548 | if (trace_flag & trace_tools) | |
2fd4e131 PE |
549 | fprintf (stderr, "running: %s %s - %s %s\n", |
550 | m4, full_m4sugar, full_cm4, full_path); | |
573312ac PE |
551 | |
552 | argv[0] = m4; | |
2fd4e131 PE |
553 | argv[1] = full_m4sugar; |
554 | argv[2] = "-"; | |
555 | argv[3] = full_cm4; | |
556 | argv[4] = full_path; | |
557 | argv[5] = NULL; | |
573312ac PE |
558 | |
559 | init_subpipe (); | |
560 | pid = create_subpipe (argv, filter_fd); | |
2fd4e131 PE |
561 | free (full_m4sugar); |
562 | free (full_cm4); | |
573312ac PE |
563 | free (full_path); |
564 | ||
565 | out = fdopen (filter_fd[0], "w"); | |
566 | if (! out) | |
21fd22d6 | 567 | error (EXIT_FAILURE, get_errno (), "fdopen"); |
573312ac PE |
568 | |
569 | /* Output the definitions of all the muscles. */ | |
381fb12e AD |
570 | fputs ("m4_init()\n", out); |
571 | ||
c6f1a33c | 572 | user_actions_output (out); |
676385e2 | 573 | merger_output (out); |
381fb12e | 574 | token_definitions_output (out); |
9280d3ef | 575 | symbol_destructors_output (out); |
366eea36 | 576 | symbol_printers_output (out); |
be2a1a68 | 577 | |
381fb12e | 578 | muscles_m4_output (out); |
be2a1a68 | 579 | |
381fb12e AD |
580 | fputs ("m4_wrap([m4_divert_pop(0)])\n", out); |
581 | fputs ("m4_divert_push(0)dnl\n", out); | |
582 | xfclose (out); | |
be2a1a68 | 583 | |
573312ac | 584 | /* Read and process m4's output. */ |
1509d42f | 585 | timevar_push (TV_M4); |
573312ac PE |
586 | in = fdopen (filter_fd[1], "r"); |
587 | if (! in) | |
21fd22d6 | 588 | error (EXIT_FAILURE, get_errno (), "fdopen"); |
573312ac | 589 | scan_skel (in); |
573312ac PE |
590 | xfclose (in); |
591 | reap_subpipe (pid, m4); | |
1509d42f | 592 | timevar_pop (TV_M4); |
26f609ff RA |
593 | } |
594 | ||
595 | static void | |
596 | prepare (void) | |
597 | { | |
7db2ed2d | 598 | /* Flags. */ |
437c2d80 | 599 | MUSCLE_INSERT_INT ("debug", debug_flag); |
7db2ed2d AD |
600 | MUSCLE_INSERT_INT ("defines_flag", defines_flag); |
601 | MUSCLE_INSERT_INT ("error_verbose", error_verbose); | |
437c2d80 | 602 | MUSCLE_INSERT_INT ("locations_flag", locations_flag); |
11d82f03 | 603 | MUSCLE_INSERT_INT ("pure", pure_parser); |
437c2d80 | 604 | MUSCLE_INSERT_INT ("synclines_flag", !no_lines_flag); |
11d82f03 | 605 | |
573a6cd3 | 606 | /* File names. */ |
7db2ed2d | 607 | MUSCLE_INSERT_STRING ("prefix", spec_name_prefix ? spec_name_prefix : "yy"); |
b85810ae | 608 | |
7db2ed2d | 609 | /* User Code. */ |
0dd1580a RA |
610 | obstack_1grow (&pre_prologue_obstack, 0); |
611 | obstack_1grow (&post_prologue_obstack, 0); | |
612 | muscle_insert ("pre_prologue", obstack_finish (&pre_prologue_obstack)); | |
613 | muscle_insert ("post_prologue", obstack_finish (&post_prologue_obstack)); | |
381fb12e AD |
614 | |
615 | /* Find the right skeleton file. */ | |
616 | if (!skeleton) | |
676385e2 PH |
617 | { |
618 | if (glr_parser) | |
619 | skeleton = "glr.c"; | |
620 | else | |
621 | skeleton = "yacc.c"; | |
622 | } | |
381fb12e AD |
623 | |
624 | /* Parse the skeleton file and output the needed parsers. */ | |
3813e141 | 625 | MUSCLE_INSERT_C_STRING ("skeleton", skeleton); |
26f609ff | 626 | } |
c3e23647 | 627 | |
93ede233 | 628 | |
6c89f1c1 AD |
629 | /*----------------------------------------------------------. |
630 | | Output the parsing tables and the parser code to ftable. | | |
631 | `----------------------------------------------------------*/ | |
c3e23647 | 632 | |
6c89f1c1 AD |
633 | void |
634 | output (void) | |
635 | { | |
f87685c3 | 636 | obstack_init (&format_obstack); |
dd60faec | 637 | |
39912f52 | 638 | prepare_symbols (); |
b0940840 AD |
639 | prepare_rules (); |
640 | prepare_states (); | |
536545f3 | 641 | prepare_actions (); |
342b8b6e | 642 | |
26f609ff | 643 | prepare (); |
652def80 | 644 | |
9b3add5b RA |
645 | /* Process the selected skeleton file. */ |
646 | output_skeleton (); | |
647 | ||
f499b062 | 648 | obstack_free (&format_obstack, NULL); |
0dd1580a RA |
649 | obstack_free (&pre_prologue_obstack, NULL); |
650 | obstack_free (&post_prologue_obstack, NULL); | |
c3e23647 | 651 | } |