]> git.saurik.com Git - bison.git/blob - src/output.c
4bb09cd77f45238365ea2d06d578eccb0eef949f
[bison.git] / src / output.c
1 /* Output the generated parsing program for bison,
2 Copyright (C) 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc.
3
4 This file is part of Bison, the GNU Compiler Compiler.
5
6 Bison is free software; you can redistribute it and/or modify it
7 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.
10
11 Bison is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
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 the Free
18 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
20
21
22 /* The parser tables consist of these tables.
23 Starred ones needed only for the semantic parser.
24 Double starred are output only if switches are set.
25
26 yytranslate = vector mapping yylex's token numbers into bison's token
27 numbers.
28
29 ** yytname = vector of string-names indexed by bison token number
30
31 ** yytoknum = vector of yylex token numbers corresponding to entries
32 in yytname
33
34 yyrline = vector of line-numbers of all rules. For yydebug printouts.
35
36 yyrhs = vector of items of all rules.
37 This is exactly what ritems contains. For yydebug and for semantic
38 parser.
39
40 yyprhs[r] = index in yyrhs of first item for rule r.
41
42 yyr1[r] = symbol number of symbol that rule r derives.
43
44 yyr2[r] = number of symbols composing right hand side of rule r.
45
46 * yystos[s] = the symbol number of the symbol that leads to state s.
47
48 yydefact[s] = default rule to reduce with in state s,
49 when yytable doesn't specify something else to do.
50 Zero means the default is an error.
51
52 yydefgoto[i] = default state to go to after a reduction of a rule that
53 generates variable ntokens + i, except when yytable
54 specifies something else to do.
55
56 yypact[s] = index in yytable of the portion describing state s.
57 The lookahead token's type is used to index that portion
58 to find out what to do.
59
60 If the value in yytable is positive,
61 we shift the token and go to that state.
62
63 If the value is negative, it is minus a rule number to reduce by.
64
65 If the value is zero, the default action from yydefact[s] is used.
66
67 yypgoto[i] = the index in yytable of the portion describing
68 what to do after reducing a rule that derives variable i + ntokens.
69 This portion is indexed by the parser state number, s,
70 as of before the text for this nonterminal was read.
71 The value from yytable is the state to go to if
72 the corresponding value in yycheck is s.
73
74 yytable = a vector filled with portions for different uses,
75 found via yypact and yypgoto.
76
77 yycheck = a vector indexed in parallel with yytable.
78 It indicates, in a roundabout way, the bounds of the
79 portion you are trying to examine.
80
81 Suppose that the portion of yytable starts at index p
82 and the index to be examined within the portion is i.
83 Then if yycheck[p+i] != i, i is outside the bounds
84 of what is actually allocated, and the default
85 (from yydefact or yydefgoto) should be used.
86 Otherwise, yytable[p+i] should be used.
87
88 YYFINAL = the state number of the termination state.
89 YYFLAG = most negative short int. Used to flag ??
90 YYNTBASE = ntokens.
91 */
92
93 #include "system.h"
94 #include "getargs.h"
95 #include "alloc.h"
96 #include "files.h"
97 #include "gram.h"
98 #include "state.h"
99 #include "complain.h"
100 #include "output.h"
101
102 extern char **tags;
103 extern int *user_toknums;
104 extern int tokensetsize;
105 extern int final_state;
106 extern core **state_table;
107 extern shifts **shift_table;
108 extern errs **err_table;
109 extern reductions **reduction_table;
110 extern short *accessing_symbol;
111 extern unsigned *LA;
112 extern short *LAruleno;
113 extern short *lookaheads;
114 extern char *consistent;
115 extern short *goto_map;
116 extern short *from_state;
117 extern short *to_state;
118
119 extern void reader_output_yylsp PARAMS ((FILE *));
120
121 static int nvectors;
122 static int nentries;
123 static short **froms;
124 static short **tos;
125 static short *tally;
126 static short *width;
127 static short *actrow;
128 static short *state_count;
129 static short *order;
130 static short *base;
131 static short *pos;
132 static short *table;
133 static short *check;
134 static int lowzero;
135 static int high;
136
137
138
139 #define GUARDSTR \
140 "\n\
141 #include \"%s\"\n\
142 extern int yyerror;\n\
143 extern int yycost;\n\
144 extern char * yymsg;\n\
145 extern YYSTYPE yyval;\n\
146 \n\
147 yyguard(n, yyvsp, yylsp)\n\
148 register int n;\n\
149 register YYSTYPE *yyvsp;\n\
150 register YYLTYPE *yylsp;\n\
151 {\n\
152 yyerror = 0;\n\
153 yycost = 0;\n\
154 yymsg = 0;\n\
155 switch (n)\n\
156 {"
157
158 #define ACTSTR \
159 "\n\
160 #include \"%s\"\n\
161 extern YYSTYPE yyval;\n\
162 extern int yychar;\n\
163 \n\
164 yyaction(n, yyvsp, yylsp)\n\
165 register int n;\n\
166 register YYSTYPE *yyvsp;\n\
167 register YYLTYPE *yylsp;\n\
168 {\n\
169 switch (n)\n\
170 {"
171
172 #define ACTSTR_SIMPLE "\n switch (yyn) {\n"
173
174
175 /*------------------------------------------------------------.
176 | Output constant strings to the beginning of certain files. |
177 `------------------------------------------------------------*/
178
179 void
180 output_headers (void)
181 {
182 if (semantic_parser)
183 fprintf (fguard, GUARDSTR, attrsfile);
184
185 if (noparserflag)
186 return;
187
188 fprintf (faction, (semantic_parser ? ACTSTR : ACTSTR_SIMPLE), attrsfile);
189 /* if (semantic_parser) JF moved this below
190 fprintf(ftable, "#include \"%s\"\n", attrsfile);
191 fprintf(ftable, "#include <stdio.h>\n\n");
192 */
193
194 /* Rename certain symbols if -p was specified. */
195 if (spec_name_prefix)
196 {
197 fprintf (ftable, "#define yyparse %sparse\n", spec_name_prefix);
198 fprintf (ftable, "#define yylex %slex\n", spec_name_prefix);
199 fprintf (ftable, "#define yyerror %serror\n", spec_name_prefix);
200 fprintf (ftable, "#define yylval %slval\n", spec_name_prefix);
201 fprintf (ftable, "#define yychar %schar\n", spec_name_prefix);
202 fprintf (ftable, "#define yydebug %sdebug\n", spec_name_prefix);
203 fprintf (ftable, "#define yynerrs %snerrs\n", spec_name_prefix);
204 }
205 }
206
207
208 /*-------------------------------------------------------.
209 | Output constant strings to the ends of certain files. |
210 `-------------------------------------------------------*/
211
212 void
213 output_trailers (void)
214 {
215 if (semantic_parser)
216 fprintf (fguard, "\n }\n}\n");
217
218 fprintf (faction, "\n");
219
220 if (noparserflag)
221 return;
222
223 if (semantic_parser)
224 fprintf (faction, " }\n");
225 fprintf (faction, "}\n");
226 }
227
228
229
230 static void
231 output_token_translations (void)
232 {
233 int i, j;
234 /* short *sp; JF unused */
235
236 if (translations)
237 {
238 fprintf (ftable,
239 "\n#define YYTRANSLATE(x) ((unsigned)(x) <= %d ? yytranslate[x] : %d)\n",
240 max_user_token_number, nsyms);
241
242 if (ntokens < 127) /* play it very safe; check maximum element value. */
243 fprintf (ftable, "\nstatic const char yytranslate[] = { 0");
244 else
245 fprintf (ftable, "\nstatic const short yytranslate[] = { 0");
246
247 j = 10;
248 for (i = 1; i <= max_user_token_number; i++)
249 {
250 putc (',', ftable);
251
252 if (j >= 10)
253 {
254 putc ('\n', ftable);
255 j = 1;
256 }
257 else
258 {
259 j++;
260 }
261
262 fprintf (ftable, "%6d", token_translations[i]);
263 }
264
265 fprintf (ftable, "\n};\n");
266 }
267 else
268 {
269 fprintf (ftable, "\n#define YYTRANSLATE(x) (x)\n");
270 }
271 }
272
273
274 static void
275 output_gram (void)
276 {
277 int i;
278 int j;
279 short *sp;
280
281 /* With the ordinary parser,
282 yyprhs and yyrhs are needed only for yydebug. */
283 /* With the noparser option, all tables are generated */
284 if (!semantic_parser && !noparserflag)
285 fprintf (ftable, "\n#if YYDEBUG != 0");
286
287 fprintf (ftable, "\nstatic const short yyprhs[] = { 0");
288
289 j = 10;
290 for (i = 1; i <= nrules; i++)
291 {
292 putc (',', ftable);
293
294 if (j >= 10)
295 {
296 putc ('\n', ftable);
297 j = 1;
298 }
299 else
300 {
301 j++;
302 }
303
304 fprintf (ftable, "%6d", rrhs[i]);
305 }
306
307 fprintf (ftable, "\n};\n");
308
309 fprintf (ftable, "\nstatic const short yyrhs[] = {%6d", ritem[0]);
310
311 j = 10;
312 for (sp = ritem + 1; *sp; sp++)
313 {
314 putc (',', ftable);
315
316 if (j >= 10)
317 {
318 putc ('\n', ftable);
319 j = 1;
320 }
321 else
322 {
323 j++;
324 }
325
326 if (*sp > 0)
327 fprintf (ftable, "%6d", *sp);
328 else
329 fprintf (ftable, " 0");
330 }
331
332 fprintf (ftable, "\n};\n");
333
334 if (!semantic_parser && !noparserflag)
335 fprintf (ftable, "\n#endif\n");
336 }
337
338
339 static void
340 output_stos (void)
341 {
342 int i;
343 int j;
344
345 fprintf (ftable, "\nstatic const short yystos[] = { 0");
346
347 j = 10;
348 for (i = 1; i < nstates; i++)
349 {
350 putc (',', ftable);
351
352 if (j >= 10)
353 {
354 putc ('\n', ftable);
355 j = 1;
356 }
357 else
358 {
359 j++;
360 }
361
362 fprintf (ftable, "%6d", accessing_symbol[i]);
363 }
364
365 fprintf (ftable, "\n};\n");
366 }
367
368
369 static void
370 output_rule_data (void)
371 {
372 int i;
373 int j;
374
375 fputs ("\n\
376 #if YYDEBUG != 0\n\
377 /* YYRLINE[yyn]: source line where rule number YYN was defined. */\n\
378 static const short yyrline[] = { 0", ftable);
379
380 j = 10;
381 for (i = 1; i <= nrules; i++)
382 {
383 putc (',', ftable);
384
385 if (j >= 10)
386 {
387 putc ('\n', ftable);
388 j = 1;
389 }
390 else
391 {
392 j++;
393 }
394
395 fprintf (ftable, "%6d", rline[i]);
396 }
397 fprintf (ftable, "\n};\n#endif\n\n");
398
399 if (toknumflag || noparserflag)
400 {
401 fprintf (ftable, "#define YYNTOKENS %d\n", ntokens);
402 fprintf (ftable, "#define YYNNTS %d\n", nvars);
403 fprintf (ftable, "#define YYNRULES %d\n", nrules);
404 fprintf (ftable, "#define YYNSTATES %d\n", nstates);
405 fprintf (ftable, "#define YYMAXUTOK %d\n\n", max_user_token_number);
406 }
407
408 if (!toknumflag && !noparserflag)
409 fprintf (ftable, "\n#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)\n\n");
410
411 /* Output the table of symbol names. */
412
413 fprintf (ftable,
414 "static const char * const yytname[] = { \"%s\"", tags[0]);
415
416 j = strlen (tags[0]) + 44;
417 for (i = 1; i < nsyms; i++)
418 /* this used to be i<=nsyms, but that output a final "" symbol
419 almost by accident */
420 {
421 char *p;
422 putc (',', ftable);
423 j++;
424
425 if (j > 75)
426 {
427 putc ('\n', ftable);
428 j = 0;
429 }
430
431 putc ('\"', ftable);
432 j++;
433
434 for (p = tags[i]; p && *p; p++)
435 {
436 if (*p == '"' || *p == '\\')
437 {
438 fprintf (ftable, "\\%c", *p);
439 j += 2;
440 }
441 else if (*p == '\n')
442 {
443 fprintf (ftable, "\\n");
444 j += 2;
445 }
446 else if (*p == '\t')
447 {
448 fprintf (ftable, "\\t");
449 j += 2;
450 }
451 else if (*p == '\b')
452 {
453 fprintf (ftable, "\\b");
454 j += 2;
455 }
456 else if (*p < 040 || *p >= 0177)
457 {
458 fprintf (ftable, "\\%03o", *p);
459 j += 4;
460 }
461 else
462 {
463 putc (*p, ftable);
464 j++;
465 }
466 }
467
468 putc ('\"', ftable);
469 j++;
470 }
471 /* add a NULL entry to list of tokens */
472 fprintf (ftable, ", NULL\n};\n");
473
474 if (!toknumflag && !noparserflag)
475 fprintf (ftable, "#endif\n\n");
476
477 /* Output YYTOKNUM. */
478 if (toknumflag)
479 {
480 fprintf (ftable, "static const short yytoknum[] = { 0");
481 j = 10;
482 for (i = 1; i <= ntokens; i++)
483 {
484 putc (',', ftable);
485 if (j >= 10)
486 {
487 putc ('\n', ftable);
488 j = 1;
489 }
490 else
491 j++;
492 fprintf (ftable, "%6d", user_toknums[i]);
493 }
494 fprintf (ftable, "\n};\n\n");
495 }
496
497 /* Output YYR1. */
498 fputs ("\
499 /* YYR1[YYN]: Symbol number of symbol that rule YYN derives. */\n\
500 static const short yyr1[] = { 0", ftable);
501
502 j = 10;
503 for (i = 1; i <= nrules; i++)
504 {
505 putc (',', ftable);
506
507 if (j >= 10)
508 {
509 putc ('\n', ftable);
510 j = 1;
511 }
512 else
513 {
514 j++;
515 }
516
517 fprintf (ftable, "%6d", rlhs[i]);
518 }
519 FREE (rlhs + 1);
520 fputs ("\n\
521 };\n\
522 \n", ftable);
523
524 /* Output YYR2. */
525 fputs ("\
526 /* YYR2[YYN]: Number of symbols composing right hand side of rule YYN. */\n\
527 static const short yyr2[] = { 0", ftable);
528 j = 10;
529 for (i = 1; i < nrules; i++)
530 {
531 putc (',', ftable);
532
533 if (j >= 10)
534 {
535 putc ('\n', ftable);
536 j = 1;
537 }
538 else
539 {
540 j++;
541 }
542
543 fprintf (ftable, "%6d", rrhs[i + 1] - rrhs[i] - 1);
544 }
545
546 putc (',', ftable);
547 if (j >= 10)
548 putc ('\n', ftable);
549
550 fprintf (ftable, "%6d\n};\n", nitems - rrhs[nrules] - 1);
551 FREE (rrhs + 1);
552 }
553
554
555 static void
556 output_defines (void)
557 {
558 fprintf (ftable, "\n\n#define\tYYFINAL\t\t%d\n", final_state);
559 fprintf (ftable, "#define\tYYFLAG\t\t%d\n", MINSHORT);
560 fprintf (ftable, "#define\tYYNTBASE\t%d\n", ntokens);
561 }
562
563
564 /*------------------------------------------------------------------.
565 | Decide what to do for each type of token if seen as the lookahead |
566 | token in specified state. The value returned is used as the |
567 | default action (yydefact) for the state. In addition, actrow is |
568 | filled with what to do for each kind of token, index by symbol |
569 | number, with zero meaning do the default action. The value |
570 | MINSHORT, a very negative number, means this situation is an |
571 | error. The parser recognizes this value specially. |
572 | |
573 | This is where conflicts are resolved. The loop over lookahead |
574 | rules considered lower-numbered rules last, and the last rule |
575 | considered that likes a token gets to handle it. |
576 `------------------------------------------------------------------*/
577
578 static int
579 action_row (int state)
580 {
581 int i;
582 int j;
583 int k;
584 int m = 0;
585 int n = 0;
586 int count;
587 int default_rule;
588 int nreds;
589 int max;
590 int rule;
591 int shift_state;
592 int symbol;
593 unsigned mask;
594 unsigned *wordp;
595 reductions *redp;
596 shifts *shiftp;
597 errs *errp;
598 int nodefault = 0; /* set nonzero to inhibit having any default reduction */
599
600 for (i = 0; i < ntokens; i++)
601 actrow[i] = 0;
602
603 default_rule = 0;
604 nreds = 0;
605 redp = reduction_table[state];
606
607 if (redp)
608 {
609 nreds = redp->nreds;
610
611 if (nreds >= 1)
612 {
613 /* loop over all the rules available here which require
614 lookahead */
615 m = lookaheads[state];
616 n = lookaheads[state + 1];
617
618 for (i = n - 1; i >= m; i--)
619 {
620 rule = -LAruleno[i];
621 wordp = LA + i * tokensetsize;
622 mask = 1;
623
624 /* and find each token which the rule finds acceptable
625 to come next */
626 for (j = 0; j < ntokens; j++)
627 {
628 /* and record this rule as the rule to use if that
629 token follows. */
630 if (mask & *wordp)
631 actrow[j] = rule;
632
633 mask <<= 1;
634 if (mask == 0)
635 {
636 mask = 1;
637 wordp++;
638 }
639 }
640 }
641 }
642 }
643
644 shiftp = shift_table[state];
645
646 /* Now see which tokens are allowed for shifts in this state. For
647 them, record the shift as the thing to do. So shift is preferred
648 to reduce. */
649
650 if (shiftp)
651 {
652 k = shiftp->nshifts;
653
654 for (i = 0; i < k; i++)
655 {
656 shift_state = shiftp->shifts[i];
657 if (!shift_state)
658 continue;
659
660 symbol = accessing_symbol[shift_state];
661
662 if (ISVAR (symbol))
663 break;
664
665 actrow[symbol] = shift_state;
666
667 /* Do not use any default reduction if there is a shift for
668 error */
669 if (symbol == error_token_number)
670 nodefault = 1;
671 }
672 }
673
674 errp = err_table[state];
675
676 /* See which tokens are an explicit error in this state (due to
677 %nonassoc). For them, record MINSHORT as the action. */
678
679 if (errp)
680 {
681 k = errp->nerrs;
682
683 for (i = 0; i < k; i++)
684 {
685 symbol = errp->errs[i];
686 actrow[symbol] = MINSHORT;
687 }
688 }
689
690 /* Now find the most common reduction and make it the default action
691 for this state. */
692
693 if (nreds >= 1 && !nodefault)
694 {
695 if (consistent[state])
696 default_rule = redp->rules[0];
697 else
698 {
699 max = 0;
700 for (i = m; i < n; i++)
701 {
702 count = 0;
703 rule = -LAruleno[i];
704
705 for (j = 0; j < ntokens; j++)
706 {
707 if (actrow[j] == rule)
708 count++;
709 }
710
711 if (count > max)
712 {
713 max = count;
714 default_rule = rule;
715 }
716 }
717
718 /* actions which match the default are replaced with zero,
719 which means "use the default" */
720
721 if (max > 0)
722 {
723 for (j = 0; j < ntokens; j++)
724 {
725 if (actrow[j] == default_rule)
726 actrow[j] = 0;
727 }
728
729 default_rule = -default_rule;
730 }
731 }
732 }
733
734 /* If have no default rule, the default is an error.
735 So replace any action which says "error" with "use default". */
736
737 if (default_rule == 0)
738 for (j = 0; j < ntokens; j++)
739 {
740 if (actrow[j] == MINSHORT)
741 actrow[j] = 0;
742 }
743
744 return default_rule;
745 }
746
747
748 static void
749 save_row (int state)
750 {
751 int i;
752 int count;
753 short *sp;
754 short *sp1;
755 short *sp2;
756
757 count = 0;
758 for (i = 0; i < ntokens; i++)
759 {
760 if (actrow[i] != 0)
761 count++;
762 }
763
764 if (count == 0)
765 return;
766
767 froms[state] = sp1 = sp = NEW2 (count, short);
768 tos[state] = sp2 = NEW2 (count, short);
769
770 for (i = 0; i < ntokens; i++)
771 {
772 if (actrow[i] != 0)
773 {
774 *sp1++ = i;
775 *sp2++ = actrow[i];
776 }
777 }
778
779 tally[state] = count;
780 width[state] = sp1[-1] - sp[0] + 1;
781 }
782
783
784 /*------------------------------------------------------------------.
785 | Figure out the actions for the specified state, indexed by |
786 | lookahead token type. |
787 | |
788 | The yydefact table is output now. The detailed info is saved for |
789 | putting into yytable later. |
790 `------------------------------------------------------------------*/
791
792 static void
793 token_actions (void)
794 {
795 int i;
796 int j;
797 int k;
798
799 actrow = NEW2 (ntokens, short);
800
801 k = action_row (0);
802 fprintf (ftable, "\nstatic const short yydefact[] = {%6d", k);
803 save_row (0);
804
805 j = 10;
806 for (i = 1; i < nstates; i++)
807 {
808 putc (',', ftable);
809
810 if (j >= 10)
811 {
812 putc ('\n', ftable);
813 j = 1;
814 }
815 else
816 {
817 j++;
818 }
819
820 k = action_row (i);
821 fprintf (ftable, "%6d", k);
822 save_row (i);
823 }
824
825 fprintf (ftable, "\n};\n");
826 FREE (actrow);
827 }
828
829
830 static void
831 free_shifts (void)
832 {
833 shifts *sp, *sptmp; /* JF derefrenced freed ptr */
834
835 FREE (shift_table);
836
837 for (sp = first_shift; sp; sp = sptmp)
838 {
839 sptmp = sp->next;
840 FREE (sp);
841 }
842 }
843
844
845 static void
846 free_reductions (void)
847 {
848 reductions *rp, *rptmp; /* JF fixed freed ptr */
849
850 FREE (reduction_table);
851
852 for (rp = first_reduction; rp; rp = rptmp)
853 {
854 rptmp = rp->next;
855 FREE (rp);
856 }
857 }
858
859
860
861 static void
862 save_column (int symbol, int default_state)
863 {
864 int i;
865 int m;
866 int n;
867 short *sp;
868 short *sp1;
869 short *sp2;
870 int count;
871 int symno;
872
873 m = goto_map[symbol];
874 n = goto_map[symbol + 1];
875
876 count = 0;
877 for (i = m; i < n; i++)
878 {
879 if (to_state[i] != default_state)
880 count++;
881 }
882
883 if (count == 0)
884 return;
885
886 symno = symbol - ntokens + nstates;
887
888 froms[symno] = sp1 = sp = NEW2 (count, short);
889 tos[symno] = sp2 = NEW2 (count, short);
890
891 for (i = m; i < n; i++)
892 {
893 if (to_state[i] != default_state)
894 {
895 *sp1++ = from_state[i];
896 *sp2++ = to_state[i];
897 }
898 }
899
900 tally[symno] = count;
901 width[symno] = sp1[-1] - sp[0] + 1;
902 }
903
904 static int
905 default_goto (int symbol)
906 {
907 int i;
908 int m;
909 int n;
910 int default_state;
911 int max;
912
913 m = goto_map[symbol];
914 n = goto_map[symbol + 1];
915
916 if (m == n)
917 return -1;
918
919 for (i = 0; i < nstates; i++)
920 state_count[i] = 0;
921
922 for (i = m; i < n; i++)
923 state_count[to_state[i]]++;
924
925 max = 0;
926 default_state = -1;
927
928 for (i = 0; i < nstates; i++)
929 {
930 if (state_count[i] > max)
931 {
932 max = state_count[i];
933 default_state = i;
934 }
935 }
936
937 return default_state;
938 }
939
940
941 /*-------------------------------------------------------------------.
942 | Figure out what to do after reducing with each rule, depending on |
943 | the saved state from before the beginning of parsing the data that |
944 | matched this rule. |
945 | |
946 | The YYDEFGOTO table is output now. The detailed info is saved for |
947 | putting into YYTABLE later. |
948 `-------------------------------------------------------------------*/
949
950 static void
951 goto_actions (void)
952 {
953 int i, j, k;
954
955 state_count = NEW2 (nstates, short);
956
957 k = default_goto (ntokens);
958 fprintf (ftable, "\nstatic const short yydefgoto[] = {%6d", k);
959 save_column (ntokens, k);
960
961 j = 10;
962 for (i = ntokens + 1; i < nsyms; i++)
963 {
964 putc (',', ftable);
965
966 if (j >= 10)
967 {
968 putc ('\n', ftable);
969 j = 1;
970 }
971 else
972 {
973 j++;
974 }
975
976 k = default_goto (i);
977 fprintf (ftable, "%6d", k);
978 save_column (i, k);
979 }
980
981 fprintf (ftable, "\n};\n");
982 FREE (state_count);
983 }
984
985
986 /* The next few functions decide how to pack the actions and gotos
987 information into yytable. */
988
989 static void
990 sort_actions (void)
991 {
992 int i;
993 int j;
994 int k;
995 int t;
996 int w;
997
998 order = NEW2 (nvectors, short);
999 nentries = 0;
1000
1001 for (i = 0; i < nvectors; i++)
1002 {
1003 if (tally[i] > 0)
1004 {
1005 t = tally[i];
1006 w = width[i];
1007 j = nentries - 1;
1008
1009 while (j >= 0 && (width[order[j]] < w))
1010 j--;
1011
1012 while (j >= 0 && (width[order[j]] == w) && (tally[order[j]] < t))
1013 j--;
1014
1015 for (k = nentries - 1; k > j; k--)
1016 order[k + 1] = order[k];
1017
1018 order[j + 1] = i;
1019 nentries++;
1020 }
1021 }
1022 }
1023
1024
1025 static int
1026 matching_state (int vector)
1027 {
1028 int i;
1029 int j;
1030 int k;
1031 int t;
1032 int w;
1033 int match;
1034 int prev;
1035
1036 i = order[vector];
1037 if (i >= nstates)
1038 return -1;
1039
1040 t = tally[i];
1041 w = width[i];
1042
1043 for (prev = vector - 1; prev >= 0; prev--)
1044 {
1045 j = order[prev];
1046 if (width[j] != w || tally[j] != t)
1047 return -1;
1048
1049 match = 1;
1050 for (k = 0; match && k < t; k++)
1051 {
1052 if (tos[j][k] != tos[i][k] || froms[j][k] != froms[i][k])
1053 match = 0;
1054 }
1055
1056 if (match)
1057 return j;
1058 }
1059
1060 return -1;
1061 }
1062
1063
1064 static int
1065 pack_vector (int vector)
1066 {
1067 int i;
1068 int j;
1069 int k;
1070 int t;
1071 int loc = 0;
1072 int ok;
1073 short *from;
1074 short *to;
1075
1076 i = order[vector];
1077 t = tally[i];
1078
1079 if (t == 0)
1080 berror ("pack_vector");
1081
1082 from = froms[i];
1083 to = tos[i];
1084
1085 for (j = lowzero - from[0]; j < MAXTABLE; j++)
1086 {
1087 ok = 1;
1088
1089 for (k = 0; ok && k < t; k++)
1090 {
1091 loc = j + from[k];
1092 if (loc > MAXTABLE)
1093 fatal (_("maximum table size (%d) exceeded"), MAXTABLE);
1094
1095 if (table[loc] != 0)
1096 ok = 0;
1097 }
1098
1099 for (k = 0; ok && k < vector; k++)
1100 {
1101 if (pos[k] == j)
1102 ok = 0;
1103 }
1104
1105 if (ok)
1106 {
1107 for (k = 0; k < t; k++)
1108 {
1109 loc = j + from[k];
1110 table[loc] = to[k];
1111 check[loc] = from[k];
1112 }
1113
1114 while (table[lowzero] != 0)
1115 lowzero++;
1116
1117 if (loc > high)
1118 high = loc;
1119
1120 return j;
1121 }
1122 }
1123
1124 berror ("pack_vector");
1125 return 0; /* JF keep lint happy */
1126 }
1127
1128
1129 static void
1130 pack_table (void)
1131 {
1132 int i;
1133 int place;
1134 int state;
1135
1136 base = NEW2 (nvectors, short);
1137 pos = NEW2 (nentries, short);
1138 table = NEW2 (MAXTABLE, short);
1139 check = NEW2 (MAXTABLE, short);
1140
1141 lowzero = 0;
1142 high = 0;
1143
1144 for (i = 0; i < nvectors; i++)
1145 base[i] = MINSHORT;
1146
1147 for (i = 0; i < MAXTABLE; i++)
1148 check[i] = -1;
1149
1150 for (i = 0; i < nentries; i++)
1151 {
1152 state = matching_state (i);
1153
1154 if (state < 0)
1155 place = pack_vector (i);
1156 else
1157 place = base[state];
1158
1159 pos[i] = place;
1160 base[order[i]] = place;
1161 }
1162
1163 for (i = 0; i < nvectors; i++)
1164 {
1165 if (froms[i])
1166 FREE (froms[i]);
1167 if (tos[i])
1168 FREE (tos[i]);
1169 }
1170
1171 FREE (froms);
1172 FREE (tos);
1173 FREE (pos);
1174 }
1175
1176 /* the following functions output yytable, yycheck
1177 and the vectors whose elements index the portion starts */
1178
1179 static void
1180 output_base (void)
1181 {
1182 int i;
1183 int j;
1184
1185 fprintf (ftable, "\nstatic const short yypact[] = {%6d", base[0]);
1186
1187 j = 10;
1188 for (i = 1; i < nstates; i++)
1189 {
1190 putc (',', ftable);
1191
1192 if (j >= 10)
1193 {
1194 putc ('\n', ftable);
1195 j = 1;
1196 }
1197 else
1198 {
1199 j++;
1200 }
1201
1202 fprintf (ftable, "%6d", base[i]);
1203 }
1204
1205 fprintf (ftable, "\n};\n\nstatic const short yypgoto[] = {%6d",
1206 base[nstates]);
1207
1208 j = 10;
1209 for (i = nstates + 1; i < nvectors; i++)
1210 {
1211 putc (',', ftable);
1212
1213 if (j >= 10)
1214 {
1215 putc ('\n', ftable);
1216 j = 1;
1217 }
1218 else
1219 {
1220 j++;
1221 }
1222
1223 fprintf (ftable, "%6d", base[i]);
1224 }
1225
1226 fprintf (ftable, "\n};\n");
1227 FREE (base);
1228 }
1229
1230
1231 static void
1232 output_table (void)
1233 {
1234 int i;
1235 int j;
1236
1237 fprintf (ftable, "\n\n#define\tYYLAST\t\t%d\n\n", high);
1238 fprintf (ftable, "\nstatic const short yytable[] = {%6d", table[0]);
1239
1240 j = 10;
1241 for (i = 1; i <= high; i++)
1242 {
1243 putc (',', ftable);
1244
1245 if (j >= 10)
1246 {
1247 putc ('\n', ftable);
1248 j = 1;
1249 }
1250 else
1251 {
1252 j++;
1253 }
1254
1255 fprintf (ftable, "%6d", table[i]);
1256 }
1257
1258 fprintf (ftable, "\n};\n");
1259 FREE (table);
1260 }
1261
1262
1263 static void
1264 output_check (void)
1265 {
1266 int i;
1267 int j;
1268
1269 fprintf (ftable, "\nstatic const short yycheck[] = {%6d", check[0]);
1270
1271 j = 10;
1272 for (i = 1; i <= high; i++)
1273 {
1274 putc (',', ftable);
1275
1276 if (j >= 10)
1277 {
1278 putc ('\n', ftable);
1279 j = 1;
1280 }
1281 else
1282 {
1283 j++;
1284 }
1285
1286 fprintf (ftable, "%6d", check[i]);
1287 }
1288
1289 fprintf (ftable, "\n};\n");
1290 FREE (check);
1291 }
1292
1293 /* compute and output yydefact, yydefgoto, yypact, yypgoto, yytable
1294 and yycheck. */
1295
1296 static void
1297 output_actions (void)
1298 {
1299 nvectors = nstates + nvars;
1300
1301 froms = NEW2 (nvectors, short *);
1302 tos = NEW2 (nvectors, short *);
1303 tally = NEW2 (nvectors, short);
1304 width = NEW2 (nvectors, short);
1305
1306 token_actions ();
1307 free_shifts ();
1308 free_reductions ();
1309 FREE (lookaheads);
1310 FREE (LA);
1311 FREE (LAruleno);
1312 FREE (accessing_symbol);
1313
1314 goto_actions ();
1315 FREE (goto_map + ntokens);
1316 FREE (from_state);
1317 FREE (to_state);
1318
1319 sort_actions ();
1320 pack_table ();
1321 output_base ();
1322 output_table ();
1323 output_check ();
1324 }
1325
1326 /* copy the parser code into the ftable file at the end. */
1327
1328 static void
1329 output_parser (void)
1330 {
1331 int c;
1332 #ifdef DONTDEF
1333 FILE *fpars;
1334 #else
1335 #define fpars fparser
1336 #endif
1337
1338 if (pure_parser)
1339 fprintf (ftable, "#define YYPURE 1\n\n");
1340
1341 #ifdef DONTDEF /* JF no longer needed 'cuz open_extra_files changes the
1342 currently open parser from bison.simple to bison.hairy */
1343 if (semantic_parser)
1344 fpars = fparser;
1345 else
1346 fpars = fparser1;
1347 #endif
1348
1349 /* Loop over lines in the standard parser file. */
1350
1351 while (1)
1352 {
1353 int write_line = 1;
1354
1355 c = getc (fpars);
1356
1357 /* See if the line starts with `#line.
1358 If so, set write_line to 0. */
1359 if (nolinesflag)
1360 if (c == '#')
1361 {
1362 c = getc (fpars);
1363 if (c == 'l')
1364 {
1365 c = getc (fpars);
1366 if (c == 'i')
1367 {
1368 c = getc (fpars);
1369 if (c == 'n')
1370 {
1371 c = getc (fpars);
1372 if (c == 'e')
1373 write_line = 0;
1374 else
1375 fprintf (ftable, "#lin");
1376 }
1377 else
1378 fprintf (ftable, "#li");
1379 }
1380 else
1381 fprintf (ftable, "#l");
1382 }
1383 else
1384 fprintf (ftable, "#");
1385 }
1386
1387 /* now write out the line... */
1388 for (; c != '\n' && c != EOF; c = getc (fpars))
1389 if (write_line)
1390 {
1391 if (c == '$')
1392 {
1393 /* `$' in the parser file indicates where to put the actions.
1394 Copy them in at this point. */
1395 rewind (faction);
1396 for (c = getc (faction); c != EOF; c = getc (faction))
1397 putc (c, ftable);
1398 }
1399 else
1400 putc (c, ftable);
1401 }
1402 if (c == EOF)
1403 break;
1404 putc (c, ftable);
1405 }
1406 }
1407
1408 static void
1409 output_program (void)
1410 {
1411 int c;
1412
1413 if (!nolinesflag)
1414 fprintf (ftable, "#line %d \"%s\"\n", lineno, infile);
1415
1416 c = getc (finput);
1417 while (c != EOF)
1418 {
1419 putc (c, ftable);
1420 c = getc (finput);
1421 }
1422 }
1423
1424
1425 static void
1426 free_itemsets (void)
1427 {
1428 core *cp, *cptmp;
1429
1430 FREE (state_table);
1431
1432 for (cp = first_state; cp; cp = cptmp)
1433 {
1434 cptmp = cp->next;
1435 FREE (cp);
1436 }
1437 }
1438
1439
1440 /*----------------------------------------------------------.
1441 | Output the parsing tables and the parser code to ftable. |
1442 `----------------------------------------------------------*/
1443
1444 void
1445 output (void)
1446 {
1447 int c;
1448
1449 /* output_token_defines(ftable); / * JF put out token defines FIRST */
1450 if (!semantic_parser) /* JF Put out other stuff */
1451 {
1452 rewind (fattrs);
1453 while ((c = getc (fattrs)) != EOF)
1454 putc (c, ftable);
1455 }
1456 reader_output_yylsp (ftable);
1457 if (debugflag)
1458 fputs ("\
1459 #ifndef YYDEBUG\n\
1460 #define YYDEBUG 1\n\
1461 #endif\n\
1462 \n",
1463 ftable);
1464
1465 if (semantic_parser)
1466 fprintf (ftable, "#include \"%s\"\n", attrsfile);
1467
1468 if (!noparserflag)
1469 fprintf (ftable, "#include <stdio.h>\n\n");
1470
1471 /* Make "const" do nothing if not in ANSI C. */
1472 fputs ("\
1473 #ifndef __cplusplus\n\
1474 # ifndef __STDC__\n\
1475 # define const\n\
1476 # endif\n\
1477 #endif\n\
1478 \n",
1479 ftable);
1480
1481 free_itemsets ();
1482 output_defines ();
1483 output_token_translations ();
1484 /* if (semantic_parser) */
1485 /* This is now unconditional because debugging printouts can use it. */
1486 output_gram ();
1487 FREE (ritem);
1488 if (semantic_parser)
1489 output_stos ();
1490 output_rule_data ();
1491 output_actions ();
1492 if (!noparserflag)
1493 output_parser ();
1494 output_program ();
1495 }