]>
git.saurik.com Git - bison.git/blob - src/output.c
4bb09cd77f45238365ea2d06d578eccb0eef949f
1 /* Output the generated parsing program for bison,
2 Copyright (C) 1984, 1986, 1989, 1992, 2000 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 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)
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.
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
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.
26 yytranslate = vector mapping yylex's token numbers into bison's token
29 ** yytname = vector of string-names indexed by bison token number
31 ** yytoknum = vector of yylex token numbers corresponding to entries
34 yyrline = vector of line-numbers of all rules. For yydebug printouts.
36 yyrhs = vector of items of all rules.
37 This is exactly what ritems contains. For yydebug and for semantic
40 yyprhs[r] = index in yyrhs of first item for rule r.
42 yyr1[r] = symbol number of symbol that rule r derives.
44 yyr2[r] = number of symbols composing right hand side of rule r.
46 * yystos[s] = the symbol number of the symbol that leads to state s.
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.
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.
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.
60 If the value in yytable is positive,
61 we shift the token and go to that state.
63 If the value is negative, it is minus a rule number to reduce by.
65 If the value is zero, the default action from yydefact[s] is used.
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.
74 yytable = a vector filled with portions for different uses,
75 found via yypact and yypgoto.
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.
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.
88 YYFINAL = the state number of the termination state.
89 YYFLAG = most negative short int. Used to flag ??
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
;
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
;
119 extern void reader_output_yylsp
PARAMS ((FILE *));
123 static short **froms
;
127 static short *actrow
;
128 static short *state_count
;
142 extern int yyerror;\n\
143 extern int yycost;\n\
144 extern char * yymsg;\n\
145 extern YYSTYPE yyval;\n\
147 yyguard(n, yyvsp, yylsp)\n\
149 register YYSTYPE *yyvsp;\n\
150 register YYLTYPE *yylsp;\n\
161 extern YYSTYPE yyval;\n\
162 extern int yychar;\n\
164 yyaction(n, yyvsp, yylsp)\n\
166 register YYSTYPE *yyvsp;\n\
167 register YYLTYPE *yylsp;\n\
172 #define ACTSTR_SIMPLE "\n switch (yyn) {\n"
175 /*------------------------------------------------------------.
176 | Output constant strings to the beginning of certain files. |
177 `------------------------------------------------------------*/
180 output_headers (void)
183 fprintf (fguard
, GUARDSTR
, attrsfile
);
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");
194 /* Rename certain symbols if -p was specified. */
195 if (spec_name_prefix
)
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
);
208 /*-------------------------------------------------------.
209 | Output constant strings to the ends of certain files. |
210 `-------------------------------------------------------*/
213 output_trailers (void)
216 fprintf (fguard
, "\n }\n}\n");
218 fprintf (faction
, "\n");
224 fprintf (faction
, " }\n");
225 fprintf (faction
, "}\n");
231 output_token_translations (void)
234 /* short *sp; JF unused */
239 "\n#define YYTRANSLATE(x) ((unsigned)(x) <= %d ? yytranslate[x] : %d)\n",
240 max_user_token_number
, nsyms
);
242 if (ntokens
< 127) /* play it very safe; check maximum element value. */
243 fprintf (ftable
, "\nstatic const char yytranslate[] = { 0");
245 fprintf (ftable
, "\nstatic const short yytranslate[] = { 0");
248 for (i
= 1; i
<= max_user_token_number
; i
++)
262 fprintf (ftable
, "%6d", token_translations
[i
]);
265 fprintf (ftable
, "\n};\n");
269 fprintf (ftable
, "\n#define YYTRANSLATE(x) (x)\n");
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");
287 fprintf (ftable
, "\nstatic const short yyprhs[] = { 0");
290 for (i
= 1; i
<= nrules
; i
++)
304 fprintf (ftable
, "%6d", rrhs
[i
]);
307 fprintf (ftable
, "\n};\n");
309 fprintf (ftable
, "\nstatic const short yyrhs[] = {%6d", ritem
[0]);
312 for (sp
= ritem
+ 1; *sp
; sp
++)
327 fprintf (ftable
, "%6d", *sp
);
329 fprintf (ftable
, " 0");
332 fprintf (ftable
, "\n};\n");
334 if (!semantic_parser
&& !noparserflag
)
335 fprintf (ftable
, "\n#endif\n");
345 fprintf (ftable
, "\nstatic const short yystos[] = { 0");
348 for (i
= 1; i
< nstates
; i
++)
362 fprintf (ftable
, "%6d", accessing_symbol
[i
]);
365 fprintf (ftable
, "\n};\n");
370 output_rule_data (void)
377 /* YYRLINE[yyn]: source line where rule number YYN was defined. */\n\
378 static const short yyrline[] = { 0", ftable
);
381 for (i
= 1; i
<= nrules
; i
++)
395 fprintf (ftable
, "%6d", rline
[i
]);
397 fprintf (ftable
, "\n};\n#endif\n\n");
399 if (toknumflag
|| noparserflag
)
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
);
408 if (!toknumflag
&& !noparserflag
)
409 fprintf (ftable
, "\n#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)\n\n");
411 /* Output the table of symbol names. */
414 "static const char * const yytname[] = { \"%s\"", tags
[0]);
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 */
434 for (p
= tags
[i
]; p
&& *p
; p
++)
436 if (*p
== '"' || *p
== '\\')
438 fprintf (ftable
, "\\%c", *p
);
443 fprintf (ftable
, "\\n");
448 fprintf (ftable
, "\\t");
453 fprintf (ftable
, "\\b");
456 else if (*p
< 040 || *p
>= 0177)
458 fprintf (ftable
, "\\%03o", *p
);
471 /* add a NULL entry to list of tokens */
472 fprintf (ftable
, ", NULL\n};\n");
474 if (!toknumflag
&& !noparserflag
)
475 fprintf (ftable
, "#endif\n\n");
477 /* Output YYTOKNUM. */
480 fprintf (ftable
, "static const short yytoknum[] = { 0");
482 for (i
= 1; i
<= ntokens
; i
++)
492 fprintf (ftable
, "%6d", user_toknums
[i
]);
494 fprintf (ftable
, "\n};\n\n");
499 /* YYR1[YYN]: Symbol number of symbol that rule YYN derives. */\n\
500 static const short yyr1[] = { 0", ftable
);
503 for (i
= 1; i
<= nrules
; i
++)
517 fprintf (ftable
, "%6d", rlhs
[i
]);
526 /* YYR2[YYN]: Number of symbols composing right hand side of rule YYN. */\n\
527 static const short yyr2[] = { 0", ftable
);
529 for (i
= 1; i
< nrules
; i
++)
543 fprintf (ftable
, "%6d", rrhs
[i
+ 1] - rrhs
[i
] - 1);
550 fprintf (ftable
, "%6d\n};\n", nitems
- rrhs
[nrules
] - 1);
556 output_defines (void)
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
);
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. |
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 `------------------------------------------------------------------*/
579 action_row (int state
)
598 int nodefault
= 0; /* set nonzero to inhibit having any default reduction */
600 for (i
= 0; i
< ntokens
; i
++)
605 redp
= reduction_table
[state
];
613 /* loop over all the rules available here which require
615 m
= lookaheads
[state
];
616 n
= lookaheads
[state
+ 1];
618 for (i
= n
- 1; i
>= m
; i
--)
621 wordp
= LA
+ i
* tokensetsize
;
624 /* and find each token which the rule finds acceptable
626 for (j
= 0; j
< ntokens
; j
++)
628 /* and record this rule as the rule to use if that
644 shiftp
= shift_table
[state
];
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
654 for (i
= 0; i
< k
; i
++)
656 shift_state
= shiftp
->shifts
[i
];
660 symbol
= accessing_symbol
[shift_state
];
665 actrow
[symbol
] = shift_state
;
667 /* Do not use any default reduction if there is a shift for
669 if (symbol
== error_token_number
)
674 errp
= err_table
[state
];
676 /* See which tokens are an explicit error in this state (due to
677 %nonassoc). For them, record MINSHORT as the action. */
683 for (i
= 0; i
< k
; i
++)
685 symbol
= errp
->errs
[i
];
686 actrow
[symbol
] = MINSHORT
;
690 /* Now find the most common reduction and make it the default action
693 if (nreds
>= 1 && !nodefault
)
695 if (consistent
[state
])
696 default_rule
= redp
->rules
[0];
700 for (i
= m
; i
< n
; i
++)
705 for (j
= 0; j
< ntokens
; j
++)
707 if (actrow
[j
] == rule
)
718 /* actions which match the default are replaced with zero,
719 which means "use the default" */
723 for (j
= 0; j
< ntokens
; j
++)
725 if (actrow
[j
] == default_rule
)
729 default_rule
= -default_rule
;
734 /* If have no default rule, the default is an error.
735 So replace any action which says "error" with "use default". */
737 if (default_rule
== 0)
738 for (j
= 0; j
< ntokens
; j
++)
740 if (actrow
[j
] == MINSHORT
)
758 for (i
= 0; i
< ntokens
; i
++)
767 froms
[state
] = sp1
= sp
= NEW2 (count
, short);
768 tos
[state
] = sp2
= NEW2 (count
, short);
770 for (i
= 0; i
< ntokens
; i
++)
779 tally
[state
] = count
;
780 width
[state
] = sp1
[-1] - sp
[0] + 1;
784 /*------------------------------------------------------------------.
785 | Figure out the actions for the specified state, indexed by |
786 | lookahead token type. |
788 | The yydefact table is output now. The detailed info is saved for |
789 | putting into yytable later. |
790 `------------------------------------------------------------------*/
799 actrow
= NEW2 (ntokens
, short);
802 fprintf (ftable
, "\nstatic const short yydefact[] = {%6d", k
);
806 for (i
= 1; i
< nstates
; i
++)
821 fprintf (ftable
, "%6d", k
);
825 fprintf (ftable
, "\n};\n");
833 shifts
*sp
, *sptmp
; /* JF derefrenced freed ptr */
837 for (sp
= first_shift
; sp
; sp
= sptmp
)
846 free_reductions (void)
848 reductions
*rp
, *rptmp
; /* JF fixed freed ptr */
850 FREE (reduction_table
);
852 for (rp
= first_reduction
; rp
; rp
= rptmp
)
862 save_column (int symbol
, int default_state
)
873 m
= goto_map
[symbol
];
874 n
= goto_map
[symbol
+ 1];
877 for (i
= m
; i
< n
; i
++)
879 if (to_state
[i
] != default_state
)
886 symno
= symbol
- ntokens
+ nstates
;
888 froms
[symno
] = sp1
= sp
= NEW2 (count
, short);
889 tos
[symno
] = sp2
= NEW2 (count
, short);
891 for (i
= m
; i
< n
; i
++)
893 if (to_state
[i
] != default_state
)
895 *sp1
++ = from_state
[i
];
896 *sp2
++ = to_state
[i
];
900 tally
[symno
] = count
;
901 width
[symno
] = sp1
[-1] - sp
[0] + 1;
905 default_goto (int symbol
)
913 m
= goto_map
[symbol
];
914 n
= goto_map
[symbol
+ 1];
919 for (i
= 0; i
< nstates
; i
++)
922 for (i
= m
; i
< n
; i
++)
923 state_count
[to_state
[i
]]++;
928 for (i
= 0; i
< nstates
; i
++)
930 if (state_count
[i
] > max
)
932 max
= state_count
[i
];
937 return default_state
;
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. |
946 | The YYDEFGOTO table is output now. The detailed info is saved for |
947 | putting into YYTABLE later. |
948 `-------------------------------------------------------------------*/
955 state_count
= NEW2 (nstates
, short);
957 k
= default_goto (ntokens
);
958 fprintf (ftable
, "\nstatic const short yydefgoto[] = {%6d", k
);
959 save_column (ntokens
, k
);
962 for (i
= ntokens
+ 1; i
< nsyms
; i
++)
976 k
= default_goto (i
);
977 fprintf (ftable
, "%6d", k
);
981 fprintf (ftable
, "\n};\n");
986 /* The next few functions decide how to pack the actions and gotos
987 information into yytable. */
998 order
= NEW2 (nvectors
, short);
1001 for (i
= 0; i
< nvectors
; i
++)
1009 while (j
>= 0 && (width
[order
[j
]] < w
))
1012 while (j
>= 0 && (width
[order
[j
]] == w
) && (tally
[order
[j
]] < t
))
1015 for (k
= nentries
- 1; k
> j
; k
--)
1016 order
[k
+ 1] = order
[k
];
1026 matching_state (int vector
)
1043 for (prev
= vector
- 1; prev
>= 0; prev
--)
1046 if (width
[j
] != w
|| tally
[j
] != t
)
1050 for (k
= 0; match
&& k
< t
; k
++)
1052 if (tos
[j
][k
] != tos
[i
][k
] || froms
[j
][k
] != froms
[i
][k
])
1065 pack_vector (int vector
)
1080 berror ("pack_vector");
1085 for (j
= lowzero
- from
[0]; j
< MAXTABLE
; j
++)
1089 for (k
= 0; ok
&& k
< t
; k
++)
1093 fatal (_("maximum table size (%d) exceeded"), MAXTABLE
);
1095 if (table
[loc
] != 0)
1099 for (k
= 0; ok
&& k
< vector
; k
++)
1107 for (k
= 0; k
< t
; k
++)
1111 check
[loc
] = from
[k
];
1114 while (table
[lowzero
] != 0)
1124 berror ("pack_vector");
1125 return 0; /* JF keep lint happy */
1136 base
= NEW2 (nvectors
, short);
1137 pos
= NEW2 (nentries
, short);
1138 table
= NEW2 (MAXTABLE
, short);
1139 check
= NEW2 (MAXTABLE
, short);
1144 for (i
= 0; i
< nvectors
; i
++)
1147 for (i
= 0; i
< MAXTABLE
; i
++)
1150 for (i
= 0; i
< nentries
; i
++)
1152 state
= matching_state (i
);
1155 place
= pack_vector (i
);
1157 place
= base
[state
];
1160 base
[order
[i
]] = place
;
1163 for (i
= 0; i
< nvectors
; i
++)
1176 /* the following functions output yytable, yycheck
1177 and the vectors whose elements index the portion starts */
1185 fprintf (ftable
, "\nstatic const short yypact[] = {%6d", base
[0]);
1188 for (i
= 1; i
< nstates
; i
++)
1194 putc ('\n', ftable
);
1202 fprintf (ftable
, "%6d", base
[i
]);
1205 fprintf (ftable
, "\n};\n\nstatic const short yypgoto[] = {%6d",
1209 for (i
= nstates
+ 1; i
< nvectors
; i
++)
1215 putc ('\n', ftable
);
1223 fprintf (ftable
, "%6d", base
[i
]);
1226 fprintf (ftable
, "\n};\n");
1237 fprintf (ftable
, "\n\n#define\tYYLAST\t\t%d\n\n", high
);
1238 fprintf (ftable
, "\nstatic const short yytable[] = {%6d", table
[0]);
1241 for (i
= 1; i
<= high
; i
++)
1247 putc ('\n', ftable
);
1255 fprintf (ftable
, "%6d", table
[i
]);
1258 fprintf (ftable
, "\n};\n");
1269 fprintf (ftable
, "\nstatic const short yycheck[] = {%6d", check
[0]);
1272 for (i
= 1; i
<= high
; i
++)
1278 putc ('\n', ftable
);
1286 fprintf (ftable
, "%6d", check
[i
]);
1289 fprintf (ftable
, "\n};\n");
1293 /* compute and output yydefact, yydefgoto, yypact, yypgoto, yytable
1297 output_actions (void)
1299 nvectors
= nstates
+ nvars
;
1301 froms
= NEW2 (nvectors
, short *);
1302 tos
= NEW2 (nvectors
, short *);
1303 tally
= NEW2 (nvectors
, short);
1304 width
= NEW2 (nvectors
, short);
1312 FREE (accessing_symbol
);
1315 FREE (goto_map
+ ntokens
);
1326 /* copy the parser code into the ftable file at the end. */
1329 output_parser (void)
1335 #define fpars fparser
1339 fprintf (ftable
, "#define YYPURE 1\n\n");
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
)
1349 /* Loop over lines in the standard parser file. */
1357 /* See if the line starts with `#line.
1358 If so, set write_line to 0. */
1375 fprintf (ftable
, "#lin");
1378 fprintf (ftable
, "#li");
1381 fprintf (ftable
, "#l");
1384 fprintf (ftable
, "#");
1387 /* now write out the line... */
1388 for (; c
!= '\n' && c
!= EOF
; c
= getc (fpars
))
1393 /* `$' in the parser file indicates where to put the actions.
1394 Copy them in at this point. */
1396 for (c
= getc (faction
); c
!= EOF
; c
= getc (faction
))
1409 output_program (void)
1414 fprintf (ftable
, "#line %d \"%s\"\n", lineno
, infile
);
1426 free_itemsets (void)
1432 for (cp
= first_state
; cp
; cp
= cptmp
)
1440 /*----------------------------------------------------------.
1441 | Output the parsing tables and the parser code to ftable. |
1442 `----------------------------------------------------------*/
1449 /* output_token_defines(ftable); / * JF put out token defines FIRST */
1450 if (!semantic_parser
) /* JF Put out other stuff */
1453 while ((c
= getc (fattrs
)) != EOF
)
1456 reader_output_yylsp (ftable
);
1460 #define YYDEBUG 1\n\
1465 if (semantic_parser
)
1466 fprintf (ftable
, "#include \"%s\"\n", attrsfile
);
1469 fprintf (ftable
, "#include <stdio.h>\n\n");
1471 /* Make "const" do nothing if not in ANSI C. */
1473 #ifndef __cplusplus\n\
1474 # ifndef __STDC__\n\
1483 output_token_translations ();
1484 /* if (semantic_parser) */
1485 /* This is now unconditional because debugging printouts can use it. */
1488 if (semantic_parser
)
1490 output_rule_data ();