]>
git.saurik.com Git - bison.git/blob - src/reader.c
1 /* Input parser for bison
2 Copyright 1984, 1986, 1989, 1992, 1998, 2000, 2001
3 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
7 Bison is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 Bison is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Bison; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
35 #include "conflicts.h"
37 /* Number of slots allocated (but not necessarily used yet) in `rline' */
38 static int rline_allocated
;
40 typedef struct symbol_list
42 struct symbol_list
*next
;
51 static symbol_list
*grammar
;
52 static int start_flag
;
53 static bucket
*startval
;
55 /* Nonzero if components of semantic values are used, implying
56 they must be unions. */
57 static int value_components_used
;
59 /* Nonzero if %union has been seen. */
62 /* Incremented for each %left, %right or %nonassoc seen */
65 static bucket
*errtoken
;
66 static bucket
*undeftoken
;
69 /*===================\
71 \===================*/
74 skip_to_char (int target
)
78 complain (_(" Skipping to next \\n"));
80 complain (_(" Skipping to next %c"), target
);
83 c
= skip_white_space ();
84 while (c
!= target
&& c
!= EOF
);
90 /*---------------------------------------------------------.
91 | Read a signed integer from STREAM and return its value. |
92 `---------------------------------------------------------*/
95 read_signed_integer (FILE *stream
)
97 int c
= getc (stream
);
109 n
= 10 * n
+ (c
- '0');
118 /*--------------------------------------------------------------.
119 | Get the data type (alternative in the union) of the value for |
120 | symbol N in rule RULE. |
121 `--------------------------------------------------------------*/
124 get_type_name (int n
, symbol_list
* rule
)
131 complain (_("invalid $ value"));
141 if (rp
== NULL
|| rp
->sym
== NULL
)
143 complain (_("invalid $ value"));
149 return rp
->sym
->type_name
;
152 /*------------------------------------------------------------.
153 | Dump the string from FIN to OOUT if non null. MATCH is the |
154 | delimiter of the string (either ' or "). |
155 `------------------------------------------------------------*/
158 copy_string (FILE *fin
, struct obstack
*oout
, int match
)
162 obstack_1grow (oout
, match
);
169 fatal (_("unterminated string at end of file"));
172 complain (_("unterminated string"));
174 c
= match
; /* invent terminator */
178 obstack_1grow (oout
, c
);
184 fatal (_("unterminated string at end of file"));
185 obstack_1grow (oout
, c
);
194 obstack_1grow (oout
, c
);
198 /*-----------------------------------------------------------------.
199 | Dump the wannabee comment from IN to OUT1 and OUT2 (which can be |
200 | NULL). In fact we just saw a `/', which might or might not be a |
201 | comment. In any case, copy what we saw. |
203 | OUT2 might be NULL. |
204 `-----------------------------------------------------------------*/
207 copy_comment2 (FILE *fin
, struct obstack
*oout1
, struct obstack
*oout2
)
213 /* We read a `/', output it. */
214 obstack_1grow (oout1
, '/');
216 obstack_1grow (oout2
, '/');
218 switch ((c
= getc (fin
)))
231 obstack_1grow (oout1
, c
);
233 obstack_1grow (oout2
, c
);
239 if (!cplus_comment
&& c
== '*')
243 obstack_1grow (oout1
, c
);
245 obstack_1grow (oout2
, c
);
251 obstack_1grow (oout1
, c
);
253 obstack_1grow (oout2
, c
);
260 obstack_1grow (oout1
, c
);
262 obstack_1grow (oout2
, c
);
269 fatal (_("unterminated comment"));
272 obstack_1grow (oout1
, c
);
274 obstack_1grow (oout2
, c
);
281 /*-------------------------------------------------------------------.
282 | Dump the comment (actually the current string starting with a `/') |
283 | from FIN to OOUT. |
284 `-------------------------------------------------------------------*/
287 copy_comment (FILE *fin
, struct obstack
*oout
)
289 copy_comment2 (fin
, oout
, NULL
);
293 /*-----------------------------------------------------------------.
294 | FIN is pointing to a location (i.e., a `@'). Output to OOUT a |
295 | reference to this location. STACK_OFFSET is the number of values |
296 | in the current rule so far, which says where to find `$0' with |
297 | respect to the top of the stack. |
298 `-----------------------------------------------------------------*/
301 copy_at (FILE *fin
, struct obstack
*oout
, int stack_offset
)
308 obstack_sgrow (oout
, "yyloc");
311 else if (isdigit (c
) || c
== '-')
316 n
= read_signed_integer (fin
);
318 obstack_fgrow1 (oout
, "yylsp[%d]", n
- stack_offset
);
325 complain (_("%s is invalid"), quote (buf
));
330 /*-------------------------------------------------------------------.
331 | FIN is pointing to a wannabee semantic value (i.e., a `$'). |
333 | Possible inputs: $[<TYPENAME>]($|integer) |
335 | Output to OOUT a reference to this semantic value. STACK_OFFSET is |
336 | the number of values in the current rule so far, which says where |
337 | to find `$0' with respect to the top of the stack. |
338 `-------------------------------------------------------------------*/
341 copy_dollar (FILE *fin
, struct obstack
*oout
,
342 symbol_list
*rule
, int stack_offset
)
345 const char *type_name
= NULL
;
347 /* Get the type name if explicit. */
350 read_type_name (fin
);
351 type_name
= token_buffer
;
352 value_components_used
= 1;
358 obstack_sgrow (oout
, "yyval");
361 type_name
= get_type_name (0, rule
);
363 obstack_fgrow1 (oout
, ".%s", type_name
);
364 if (!type_name
&& typed
)
365 complain (_("$$ of `%s' has no declared type"),
368 else if (isdigit (c
) || c
== '-')
372 n
= read_signed_integer (fin
);
374 if (!type_name
&& n
> 0)
375 type_name
= get_type_name (n
, rule
);
377 obstack_fgrow1 (oout
, "yyvsp[%d]", n
- stack_offset
);
380 obstack_fgrow1 (oout
, ".%s", type_name
);
381 if (!type_name
&& typed
)
382 complain (_("$%d of `%s' has no declared type"),
389 complain (_("%s is invalid"), quote (buf
));
393 /*-------------------------------------------------------------------.
394 | Copy the contents of a `%{ ... %}' into the definitions file. The |
395 | `%{' has already been read. Return after reading the `%}'. |
396 `-------------------------------------------------------------------*/
399 copy_definition (void)
402 /* -1 while reading a character if prev char was %. */
406 obstack_fgrow2 (&attrs_obstack
, "#line %d %s\n",
407 lineno
, quotearg_style (c_quoting_style
, infile
));
418 obstack_1grow (&attrs_obstack
, c
);
428 copy_string (finput
, &attrs_obstack
, c
);
432 copy_comment (finput
, &attrs_obstack
);
436 fatal ("%s", _("unterminated `%{' definition"));
439 obstack_1grow (&attrs_obstack
, c
);
448 obstack_1grow (&attrs_obstack
, '%');
455 /*-------------------------------------------------------------------.
456 | Parse what comes after %token or %nterm. For %token, WHAT_IS is |
457 | token_sym and WHAT_IS_NOT is nterm_sym. For %nterm, the arguments |
459 `-------------------------------------------------------------------*/
462 parse_token_decl (symbol_class what_is
, symbol_class what_is_not
)
464 token_t token
= tok_undef
;
465 char *typename
= NULL
;
467 /* The symbol being defined. */
468 struct bucket
*symbol
= NULL
;
470 /* After `%token' and `%nterm', any number of symbols maybe be
474 int tmp_char
= ungetc (skip_white_space (), finput
);
476 /* `%' (for instance from `%token', or from `%%' etc.) is the
477 only valid means to end this declaration. */
481 fatal (_("Premature EOF after %s"), token_buffer
);
484 if (token
== tok_comma
)
489 if (token
== tok_typename
)
491 typename
= xstrdup (token_buffer
);
492 value_components_used
= 1;
495 else if (token
== tok_identifier
&& *symval
->tag
== '\"' && symbol
)
498 warn (_("symbol `%s' used more than once as a literal string"),
500 else if (symbol
->alias
)
501 warn (_("symbol `%s' given more than one literal string"),
505 symval
->class = token_sym
;
506 symval
->type_name
= typename
;
507 symval
->user_token_number
= symbol
->user_token_number
;
508 symbol
->user_token_number
= SALIAS
;
509 symval
->alias
= symbol
;
510 symbol
->alias
= symval
;
511 /* symbol and symval combined are only one symbol */
516 else if (token
== tok_identifier
)
518 int oldclass
= symval
->class;
521 if (symbol
->class == what_is_not
)
522 complain (_("symbol %s redefined"), symbol
->tag
);
523 symbol
->class = what_is
;
524 if (what_is
== nterm_sym
&& oldclass
!= nterm_sym
)
525 symbol
->value
= nvars
++;
529 if (symbol
->type_name
== NULL
)
530 symbol
->type_name
= typename
;
531 else if (strcmp (typename
, symbol
->type_name
) != 0)
532 complain (_("type redeclaration for %s"), symbol
->tag
);
535 else if (symbol
&& token
== tok_number
)
537 symbol
->user_token_number
= numval
;
541 complain (_("`%s' is invalid in %s"),
542 token_buffer
, (what_is
== token_sym
) ? "%token" : "%nterm");
550 /*------------------------------.
551 | Parse what comes after %start |
552 `------------------------------*/
555 parse_start_decl (void)
558 complain (_("multiple %s declarations"), "%start");
559 if (lex () != tok_identifier
)
560 complain (_("invalid %s declaration"), "%start");
568 /*-----------------------------------------------------------.
569 | read in a %type declaration and record its information for |
570 | get_type_name to access |
571 `-----------------------------------------------------------*/
574 parse_type_decl (void)
578 if (lex () != tok_typename
)
580 complain ("%s", _("%type declaration has no <typename>"));
585 name
= xstrdup (token_buffer
);
590 int tmp_char
= ungetc (skip_white_space (), finput
);
595 fatal (_("Premature EOF after %s"), token_buffer
);
607 if (symval
->type_name
== NULL
)
608 symval
->type_name
= name
;
609 else if (strcmp (name
, symval
->type_name
) != 0)
610 complain (_("type redeclaration for %s"), symval
->tag
);
615 complain (_("invalid %%type declaration due to item: %s"),
624 /*----------------------------------------------------------------.
625 | Read in a %left, %right or %nonassoc declaration and record its |
627 `----------------------------------------------------------------*/
630 parse_assoc_decl (associativity assoc
)
635 lastprec
++; /* Assign a new precedence level, never 0. */
640 int tmp_char
= ungetc (skip_white_space (), finput
);
645 fatal (_("Premature EOF after %s"), token_buffer
);
652 name
= xstrdup (token_buffer
);
659 if (symval
->prec
!= 0)
660 complain (_("redefining precedence of %s"), symval
->tag
);
661 symval
->prec
= lastprec
;
662 symval
->assoc
= assoc
;
663 if (symval
->class == nterm_sym
)
664 complain (_("symbol %s redefined"), symval
->tag
);
665 symval
->class = token_sym
;
667 { /* record the type, if one is specified */
668 if (symval
->type_name
== NULL
)
669 symval
->type_name
= name
;
670 else if (strcmp (name
, symval
->type_name
) != 0)
671 complain (_("type redeclaration for %s"), symval
->tag
);
676 if (prev
== tok_identifier
)
678 symval
->user_token_number
= numval
;
683 ("invalid text (%s) - number should be after identifier"),
693 complain (_("unexpected item: %s"), token_buffer
);
703 /*--------------------------------------------------------------.
704 | Copy the union declaration into ATTRS_OBSTACK (and fdefines), |
705 | where it is made into the definition of YYSTYPE, the type of |
706 | elements of the parser value stack. |
707 `--------------------------------------------------------------*/
710 parse_union_decl (void)
716 complain (_("multiple %s declarations"), "%union");
721 obstack_fgrow2 (&attrs_obstack
, "\n#line %d %s\n",
722 lineno
, quotearg_style (c_quoting_style
, infile
));
724 obstack_1grow (&attrs_obstack
, '\n');
726 obstack_sgrow (&attrs_obstack
, "typedef union");
728 obstack_sgrow (&defines_obstack
, "typedef union");
735 /* If C contains '/', it is output by copy_comment (). */
738 obstack_1grow (&attrs_obstack
, c
);
740 obstack_1grow (&defines_obstack
, c
);
750 copy_comment2 (finput
, &defines_obstack
, &attrs_obstack
);
759 complain (_("unmatched %s"), "`}'");
763 obstack_sgrow (&attrs_obstack
, " YYSTYPE;\n");
765 obstack_sgrow (&defines_obstack
, " YYSTYPE;\n");
766 /* JF don't choke on trailing semi */
767 c
= skip_white_space ();
779 /*-------------------------------------------------------.
780 | Parse the declaration %expect N which says to expect N |
781 | shift-reduce conflicts. |
782 `-------------------------------------------------------*/
785 parse_expect_decl (void)
787 int c
= skip_white_space ();
791 complain (_("argument of %%expect is not an integer"));
793 expected_conflicts
= read_signed_integer (finput
);
797 /*-------------------------------------------------------------------.
798 | Parse what comes after %thong. the full syntax is |
800 | %thong <type> token number literal |
802 | the <type> or number may be omitted. The number specifies the |
803 | user_token_number. |
805 | Two symbols are entered in the table, one for the token symbol and |
806 | one for the literal. Both are given the <type>, if any, from the |
807 | declaration. The ->user_token_number of the first is SALIAS and |
808 | the ->user_token_number of the second is set to the number, if |
809 | any, from the declaration. The two symbols are linked via |
810 | pointers in their ->alias fields. |
812 | During OUTPUT_DEFINES_TABLE, the symbol is reported thereafter, |
813 | only the literal string is retained it is the literal string that |
814 | is output to yytname |
815 `-------------------------------------------------------------------*/
818 parse_thong_decl (void)
821 struct bucket
*symbol
;
823 int usrtoknum
= SUNDEF
;
825 token
= lex (); /* fetch typename or first token */
826 if (token
== tok_typename
)
828 typename
= xstrdup (token_buffer
);
829 value_components_used
= 1;
830 token
= lex (); /* fetch first token */
833 /* process first token */
835 if (token
!= tok_identifier
)
837 complain (_("unrecognized item %s, expected an identifier"),
842 symval
->class = token_sym
;
843 symval
->type_name
= typename
;
844 symval
->user_token_number
= SALIAS
;
847 token
= lex (); /* get number or literal string */
849 if (token
== tok_number
)
852 token
= lex (); /* okay, did number, now get literal */
855 /* process literal string token */
857 if (token
!= tok_identifier
|| *symval
->tag
!= '\"')
859 complain (_("expected string constant instead of %s"), token_buffer
);
863 symval
->class = token_sym
;
864 symval
->type_name
= typename
;
865 symval
->user_token_number
= usrtoknum
;
867 symval
->alias
= symbol
;
868 symbol
->alias
= symval
;
870 /* symbol and symval combined are only one symbol. */
875 /*------------------------------------------------------------------.
876 | Parse a double quoted parameter. It was used for |
877 | %{source,header}_extension. For the moment, It is not used since |
878 | extension features have been removed. |
879 `------------------------------------------------------------------*/
884 parse_dquoted_param (const char *from
)
890 c
= skip_white_space ();
895 complain (_("invalid %s declaration"), from
);
900 for (i
= 0; (c
>= '!') && (c
<= '~'); i
++)
908 if ((c
< '!') && (c
> '~'))
920 complain (_("invalid %s declaration"), from
);
924 return xstrdup (buff
);
930 /*----------------------------------------------------------------.
931 | Read from finput until `%%' is seen. Discard the `%%'. Handle |
932 | any `%' declarations, and copy the contents of any `%{ ... %}' |
933 | groups to ATTRS_OBSTACK. |
934 `----------------------------------------------------------------*/
937 read_declarations (void)
941 int c
= skip_white_space ();
945 token_t tok
= parse_percent_token ();
949 case tok_two_percents
:
952 case tok_percent_left_curly
:
957 parse_token_decl (token_sym
, nterm_sym
);
961 parse_token_decl (nterm_sym
, token_sym
);
977 parse_expect_decl ();
985 parse_assoc_decl (left_assoc
);
989 parse_assoc_decl (right_assoc
);
993 parse_assoc_decl (non_assoc
);
1007 complain (_("unrecognized: %s"), token_buffer
);
1012 fatal (_("no input grammar"));
1017 complain (_("unknown character: %s"), quote (buf
));
1023 /*-------------------------------------------------------------------.
1024 | Assuming that a `{' has just been seen, copy everything up to the |
1025 | matching `}' into the actions file. STACK_OFFSET is the number of |
1026 | values in the current rule so far, which says where to find `$0' |
1027 | with respect to the top of the stack. |
1028 `-------------------------------------------------------------------*/
1031 copy_action (symbol_list
*rule
, int stack_offset
)
1037 /* offset is always 0 if parser has already popped the stack pointer */
1038 if (semantic_parser
)
1041 sprintf (buf
, "\ncase %d:\n", nrules
);
1042 obstack_grow (&action_obstack
, buf
, strlen (buf
));
1046 sprintf (buf
, "#line %d %s\n",
1047 lineno
, quotearg_style (c_quoting_style
, infile
));
1048 obstack_grow (&action_obstack
, buf
, strlen (buf
));
1050 obstack_1grow (&action_obstack
, '{');
1062 obstack_1grow (&action_obstack
, c
);
1067 obstack_1grow (&action_obstack
, c
);
1073 copy_string (finput
, &action_obstack
, c
);
1077 copy_comment (finput
, &action_obstack
);
1081 copy_dollar (finput
, &action_obstack
,
1082 rule
, stack_offset
);
1086 copy_at (finput
, &action_obstack
,
1091 fatal (_("unmatched %s"), "`{'");
1094 obstack_1grow (&action_obstack
, c
);
1100 /* above loop exits when c is '}' */
1104 obstack_1grow (&action_obstack
, c
);
1109 obstack_sgrow (&action_obstack
, ";\n break;}");
1112 /*-------------------------------------------------------------------.
1113 | After `%guard' is seen in the input file, copy the actual guard |
1114 | into the guards file. If the guard is followed by an action, copy |
1115 | that into the actions file. STACK_OFFSET is the number of values |
1116 | in the current rule so far, which says where to find `$0' with |
1117 | respect to the top of the stack, for the simple parser in which |
1118 | the stack is not popped until after the guard is run. |
1119 `-------------------------------------------------------------------*/
1122 copy_guard (symbol_list
*rule
, int stack_offset
)
1128 /* offset is always 0 if parser has already popped the stack pointer */
1129 if (semantic_parser
)
1132 obstack_fgrow1 (&guard_obstack
, "\ncase %d:\n", nrules
);
1134 obstack_fgrow2 (&guard_obstack
, "#line %d %s\n",
1135 lineno
, quotearg_style (c_quoting_style
, infile
));
1136 obstack_1grow (&guard_obstack
, '{');
1141 while (brace_flag
? (count
> 0) : (c
!= ';'))
1146 obstack_1grow (&guard_obstack
, c
);
1151 obstack_1grow (&guard_obstack
, c
);
1157 obstack_1grow (&guard_obstack
, c
);
1162 complain (_("unmatched %s"), "`}'");
1163 c
= getc (finput
); /* skip it */
1169 copy_string (finput
, &guard_obstack
, c
);
1173 copy_comment (finput
, &guard_obstack
);
1177 copy_dollar (finput
, &guard_obstack
, rule
, stack_offset
);
1181 copy_at (finput
, &guard_obstack
, stack_offset
);
1185 fatal ("%s", _("unterminated %guard clause"));
1188 obstack_1grow (&guard_obstack
, c
);
1191 if (c
!= '}' || count
!= 0)
1195 c
= skip_white_space ();
1197 obstack_sgrow (&guard_obstack
, ";\n break;}");
1199 copy_action (rule
, stack_offset
);
1202 c
= getc (finput
); /* why not skip_white_space -wjh */
1204 copy_action (rule
, stack_offset
);
1212 record_rule_line (void)
1214 /* Record each rule's source line number in rline table. */
1216 if (nrules
>= rline_allocated
)
1218 rline_allocated
= nrules
* 2;
1219 rline
= XREALLOC (rline
, short, rline_allocated
);
1221 rline
[nrules
] = lineno
;
1225 /*-------------------------------------------------------------------.
1226 | Generate a dummy symbol, a nonterminal, whose name cannot conflict |
1227 | with the user's names. |
1228 `-------------------------------------------------------------------*/
1233 /* Incremented for each generated symbol */
1234 static int gensym_count
= 0;
1235 static char buf
[256];
1239 sprintf (buf
, "@%d", ++gensym_count
);
1241 sym
= getsym (token_buffer
);
1242 sym
->class = nterm_sym
;
1243 sym
->value
= nvars
++;
1248 /*------------------------------------------------------------------.
1249 | read in a %type declaration and record its information for |
1250 | get_type_name to access. This is unused. It is only called from |
1251 | the #if 0 part of readgram |
1252 `------------------------------------------------------------------*/
1263 if (token
!= tok_typename
)
1265 complain (_("invalid %s declaration"), "%type");
1269 name
= xstrdup (token_buffer
);
1283 case tok_identifier
:
1284 if (symval
->type_name
== NULL
)
1285 symval
->type_name
= name
;
1286 else if (strcmp (name
, symval
->type_name
) != 0)
1287 complain (_("type redeclaration for %s"), symval
->tag
);
1299 /*------------------------------------------------------------------.
1300 | Parse the input grammar into a one symbol_list structure. Each |
1301 | rule is represented by a sequence of symbols: the left hand side |
1302 | followed by the contents of the right hand side, followed by a |
1303 | null pointer instead of a symbol to terminate the rule. The next |
1304 | symbol is the lhs of the following rule. |
1306 | All guards and actions are copied out to the appropriate files, |
1307 | labelled by the rule number they apply to. |
1308 `------------------------------------------------------------------*/
1319 /* Points to first symbol_list of current rule. its symbol is the
1322 /* Points to the symbol_list preceding crule. */
1323 symbol_list
*crule1
;
1329 while (t
!= tok_two_percents
&& t
!= tok_eof
)
1331 if (t
== tok_identifier
|| t
== tok_bar
)
1333 int action_flag
= 0;
1334 /* Number of symbols in rhs of this rule so far */
1336 int xactions
= 0; /* JF for error checking */
1337 bucket
*first_rhs
= 0;
1339 if (t
== tok_identifier
)
1352 complain (_("ill-formed rule: initial symbol not followed by colon"));
1357 if (nrules
== 0 && t
== tok_bar
)
1359 complain (_("grammar starts with vertical bar"));
1360 lhs
= symval
; /* BOGUS: use a random symval */
1362 /* start a new rule and record its lhs. */
1367 record_rule_line ();
1369 p
= XCALLOC (symbol_list
, 1);
1381 /* mark the rule's lhs as a nonterminal if not already so. */
1383 if (lhs
->class == unknown_sym
)
1385 lhs
->class = nterm_sym
;
1389 else if (lhs
->class == token_sym
)
1390 complain (_("rule given for %s, which is a token"), lhs
->tag
);
1392 /* read the rhs of the rule. */
1400 crule
->ruleprec
= symval
;
1404 if (!(t
== tok_identifier
|| t
== tok_left_curly
))
1407 /* If next token is an identifier, see if a colon follows it.
1408 If one does, exit this rule now. */
1409 if (t
== tok_identifier
)
1418 if (t1
== tok_colon
)
1421 if (!first_rhs
) /* JF */
1423 /* Not followed by colon =>
1424 process as part of this rule's rhs. */
1427 /* If we just passed an action, that action was in the middle
1428 of a rule, so make a dummy rule to reduce it to a
1434 /* Since the action was written out with this rule's
1435 number, we must give the new rule this number by
1436 inserting the new rule before it. */
1438 /* Make a dummy nonterminal, a gensym. */
1441 /* Make a new rule, whose body is empty,
1442 before the current one, so that the action
1443 just read can belong to it. */
1446 record_rule_line ();
1447 p
= XCALLOC (symbol_list
, 1);
1453 crule1
= XCALLOC (symbol_list
, 1);
1455 crule1
->next
= crule
;
1457 /* Insert the dummy generated by that rule into this
1460 p
= XCALLOC (symbol_list
, 1);
1468 if (t
== tok_identifier
)
1471 p
= XCALLOC (symbol_list
, 1);
1476 else /* handle an action. */
1478 copy_action (crule
, rulelength
);
1480 xactions
++; /* JF */
1483 } /* end of read rhs of rule */
1485 /* Put an empty link in the list to mark the end of this rule */
1486 p
= XCALLOC (symbol_list
, 1);
1492 complain (_("two @prec's in a row"));
1494 crule
->ruleprec
= symval
;
1499 if (!semantic_parser
)
1500 complain (_("%%guard present but %%semantic_parser not specified"));
1502 copy_guard (crule
, rulelength
);
1505 else if (t
== tok_left_curly
)
1507 /* This case never occurs -wjh */
1509 complain (_("two actions at end of one rule"));
1510 copy_action (crule
, rulelength
);
1512 xactions
++; /* -wjh */
1515 /* If $$ is being set in default way, report if any type
1518 && first_rhs
&& lhs
->type_name
!= first_rhs
->type_name
)
1520 if (lhs
->type_name
== 0
1521 || first_rhs
->type_name
== 0
1522 || strcmp (lhs
->type_name
, first_rhs
->type_name
))
1523 complain (_("type clash (`%s' `%s') on default action"),
1524 lhs
->type_name
? lhs
->type_name
: "",
1525 first_rhs
->type_name
? first_rhs
->type_name
: "");
1527 /* Warn if there is no default for $$ but we need one. */
1528 else if (!xactions
&& !first_rhs
&& lhs
->type_name
!= 0)
1529 complain (_("empty rule for typed nonterminal, and no action"));
1530 if (t
== tok_semicolon
)
1534 /* these things can appear as alternatives to rules. */
1536 a) none of the documentation allows them
1537 b) most of them scan forward until finding a next %
1538 thus they may swallow lots of intervening rules
1540 else if (t
== tok_token
)
1542 parse_token_decl (token_sym
, nterm_sym
);
1545 else if (t
== tok_nterm
)
1547 parse_token_decl (nterm_sym
, token_sym
);
1550 else if (t
== tok_type
)
1554 else if (t
== tok_union
)
1556 parse_union_decl ();
1559 else if (t
== tok_expect
)
1561 parse_expect_decl ();
1564 else if (t
== tok_start
)
1566 parse_start_decl ();
1573 complain (_("invalid input: %s"), quote (token_buffer
));
1578 /* grammar has been read. Do some checking */
1580 if (nsyms
> MAXSHORT
)
1581 fatal (_("too many symbols (tokens plus nonterminals); maximum %d"),
1584 fatal (_("no rules in the input grammar"));
1586 /* JF put out same default YYSTYPE as YACC does */
1588 && !value_components_used
)
1590 /* We used to use `unsigned long' as YYSTYPE on MSDOS,
1591 but it seems better to be consistent.
1592 Most programs should declare their own type anyway. */
1593 obstack_sgrow (&attrs_obstack
,
1594 "#ifndef YYSTYPE\n#define YYSTYPE int\n#endif\n");
1596 obstack_sgrow (&defines_obstack
, "\
1598 # define YYSTYPE int\n\
1602 /* Report any undefined symbols and consider them nonterminals. */
1604 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1605 if (bp
->class == unknown_sym
)
1608 ("symbol %s is used, but is not defined as a token and has no rules"),
1610 bp
->class = nterm_sym
;
1611 bp
->value
= nvars
++;
1614 ntokens
= nsyms
- nvars
;
1617 /*--------------------------------------------------------------.
1618 | For named tokens, but not literal ones, define the name. The |
1619 | value is the user token number. |
1620 `--------------------------------------------------------------*/
1623 output_token_defines (struct obstack
*oout
)
1629 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1631 symbol
= bp
->tag
; /* get symbol */
1633 if (bp
->value
>= ntokens
)
1635 if (bp
->user_token_number
== SALIAS
)
1637 if ('\'' == *symbol
)
1638 continue; /* skip literal character */
1640 continue; /* skip error token */
1641 if ('\"' == *symbol
)
1643 /* use literal string only if given a symbol with an alias */
1645 symbol
= bp
->alias
->tag
;
1650 /* Don't #define nonliteral tokens whose names contain periods. */
1652 while ((c
= *cp
++) && c
!= '.');
1656 obstack_fgrow2 (oout
, "# define\t%s\t%d\n",
1657 symbol
, bp
->user_token_number
);
1658 if (semantic_parser
)
1659 /* FIXME: This is certainly dead wrong, and should be just as
1661 obstack_fgrow2 (oout
, "# define\tT%s\t%d\n", symbol
, bp
->value
);
1664 obstack_1grow (oout
, '\n');
1668 /*------------------------------------------------------------------.
1669 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
1671 `------------------------------------------------------------------*/
1674 token_translations_init (void)
1679 token_translations
= XCALLOC (short, max_user_token_number
+ 1);
1681 /* Initialize all entries for literal tokens to 2, the internal
1682 token number for $undefined., which represents all invalid
1684 for (i
= 0; i
<= max_user_token_number
; i
++)
1685 token_translations
[i
] = 2;
1687 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1690 if (bp
->value
>= ntokens
)
1692 /* A token string alias? */
1693 if (bp
->user_token_number
== SALIAS
)
1696 assert (bp
->user_token_number
!= SUNDEF
);
1698 /* A token which translation has already been set? */
1699 if (token_translations
[bp
->user_token_number
] != 2)
1700 complain (_("tokens %s and %s both assigned number %d"),
1701 tags
[token_translations
[bp
->user_token_number
]],
1702 bp
->tag
, bp
->user_token_number
);
1703 token_translations
[bp
->user_token_number
] = bp
->value
;
1708 /*------------------------------------------------------------------.
1709 | Assign symbol numbers, and write definition of token names into |
1710 | FDEFINES. Set up vectors TAGS and SPREC of names and precedences |
1712 `------------------------------------------------------------------*/
1719 int last_user_token_number
;
1720 static char DOLLAR
[] = "$";
1722 tags
= XCALLOC (char *, nsyms
+ 1);
1723 user_toknums
= XCALLOC (short, nsyms
+ 1);
1725 sprec
= XCALLOC (short, nsyms
);
1726 sassoc
= XCALLOC (short, nsyms
);
1728 /* The EOF token. */
1730 user_toknums
[0] = 0;
1732 max_user_token_number
= 256;
1733 last_user_token_number
= 256;
1735 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1737 if (bp
->class == nterm_sym
)
1739 bp
->value
+= ntokens
;
1743 /* this symbol and its alias are a single token defn.
1744 allocate a tokno, and assign to both check agreement of
1745 ->prec and ->assoc fields and make both the same */
1747 bp
->value
= bp
->alias
->value
= tokno
++;
1749 if (bp
->prec
!= bp
->alias
->prec
)
1751 if (bp
->prec
!= 0 && bp
->alias
->prec
!= 0
1752 && bp
->user_token_number
== SALIAS
)
1753 complain (_("conflicting precedences for %s and %s"),
1754 bp
->tag
, bp
->alias
->tag
);
1756 bp
->alias
->prec
= bp
->prec
;
1758 bp
->prec
= bp
->alias
->prec
;
1761 if (bp
->assoc
!= bp
->alias
->assoc
)
1763 if (bp
->assoc
!= 0 && bp
->alias
->assoc
!= 0
1764 && bp
->user_token_number
== SALIAS
)
1765 complain (_("conflicting assoc values for %s and %s"),
1766 bp
->tag
, bp
->alias
->tag
);
1768 bp
->alias
->assoc
= bp
->assoc
;
1770 bp
->assoc
= bp
->alias
->assoc
;
1773 if (bp
->user_token_number
== SALIAS
)
1774 continue; /* do not do processing below for SALIASs */
1777 else /* bp->class == token_sym */
1779 bp
->value
= tokno
++;
1782 if (bp
->class == token_sym
)
1784 if (bp
->user_token_number
== SUNDEF
)
1785 bp
->user_token_number
= ++last_user_token_number
;
1786 if (bp
->user_token_number
> max_user_token_number
)
1787 max_user_token_number
= bp
->user_token_number
;
1790 tags
[bp
->value
] = bp
->tag
;
1791 user_toknums
[bp
->value
] = bp
->user_token_number
;
1792 sprec
[bp
->value
] = bp
->prec
;
1793 sassoc
[bp
->value
] = bp
->assoc
;
1796 token_translations_init ();
1798 error_token_number
= errtoken
->value
;
1800 if (!no_parser_flag
)
1801 output_token_defines (&table_obstack
);
1803 if (startval
->class == unknown_sym
)
1804 fatal (_("the start symbol %s is undefined"), startval
->tag
);
1805 else if (startval
->class == token_sym
)
1806 fatal (_("the start symbol %s is a token"), startval
->tag
);
1808 start_symbol
= startval
->value
;
1812 output_token_defines (&defines_obstack
);
1816 if (spec_name_prefix
)
1817 obstack_fgrow1 (&defines_obstack
, "\nextern YYSTYPE %slval;\n",
1820 obstack_sgrow (&defines_obstack
,
1821 "\nextern YYSTYPE yylval;\n");
1824 if (semantic_parser
)
1828 for (i
= ntokens
; i
< nsyms
; i
++)
1830 /* don't make these for dummy nonterminals made by gensym. */
1831 if (*tags
[i
] != '@')
1832 obstack_fgrow2 (&defines_obstack
,
1833 "# define\tNT%s\t%d\n", tags
[i
], i
);
1836 /* `fdefines' is now a temporary file, so we need to copy its
1837 contents in `done', so we can't close it here. */
1846 /*---------------------------------------------------------------.
1847 | Convert the rules into the representation using RRHS, RLHS and |
1849 `---------------------------------------------------------------*/
1860 ritem
= XCALLOC (short, nitems
+ 1);
1861 rlhs
= XCALLOC (short, nrules
) - 1;
1862 rrhs
= XCALLOC (short, nrules
) - 1;
1863 rprec
= XCALLOC (short, nrules
) - 1;
1864 rprecsym
= XCALLOC (short, nrules
) - 1;
1865 rassoc
= XCALLOC (short, nrules
) - 1;
1873 rlhs
[ruleno
] = p
->sym
->value
;
1874 rrhs
[ruleno
] = itemno
;
1875 ruleprec
= p
->ruleprec
;
1880 ritem
[itemno
++] = p
->sym
->value
;
1881 /* A rule gets by default the precedence and associativity
1882 of the last token in it. */
1883 if (p
->sym
->class == token_sym
)
1885 rprec
[ruleno
] = p
->sym
->prec
;
1886 rassoc
[ruleno
] = p
->sym
->assoc
;
1892 /* If this rule has a %prec,
1893 the specified symbol's precedence replaces the default. */
1896 rprec
[ruleno
] = ruleprec
->prec
;
1897 rassoc
[ruleno
] = ruleprec
->assoc
;
1898 rprecsym
[ruleno
] = ruleprec
->value
;
1901 ritem
[itemno
++] = -ruleno
;
1911 /*-------------------------------------------------------------------.
1912 | Read in the grammar specification and record it in the format |
1913 | described in gram.h. All guards are copied into the GUARD_OBSTACK |
1914 | and all actions into ACTION_OBSTACK, in each case forming the body |
1915 | of a C function (YYGUARD or YYACTION) which contains a switch |
1916 | statement to decide which guard or action to execute. |
1917 `-------------------------------------------------------------------*/
1923 startval
= NULL
; /* start symbol not specified yet. */
1929 rline_allocated
= 10;
1930 rline
= XCALLOC (short, rline_allocated
);
1935 semantic_parser
= 0;
1943 /* Initialize the symbol table. */
1945 /* Construct the error token */
1946 errtoken
= getsym ("error");
1947 errtoken
->class = token_sym
;
1948 errtoken
->user_token_number
= 256; /* Value specified by POSIX. */
1949 /* Construct a token that represents all undefined literal tokens.
1950 It is always token number 2. */
1951 undeftoken
= getsym ("$undefined.");
1952 undeftoken
->class = token_sym
;
1953 undeftoken
->user_token_number
= 2;
1955 /* Read the declaration section. Copy %{ ... %} groups to
1956 TABLE_OBSTACK and FDEFINES file. Also notice any %token, %left,
1957 etc. found there. */
1958 obstack_1grow (&table_obstack
, '\n');
1959 obstack_fgrow3 (&table_obstack
, "\
1960 /* %s, made from %s\n\
1961 by GNU bison %s. */\n\
1963 no_parser_flag
? "Bison-generated parse tables" : "A Bison parser",
1966 obstack_sgrow (&table_obstack
,
1967 "#define YYBISON 1 /* Identify Bison output. */\n\n");
1968 read_declarations ();
1969 /* Start writing the guard and action files, if they are needed. */
1971 /* Read in the grammar, build grammar in list form. Write out
1972 guards and actions. */
1974 /* Now we know whether we need the line-number stack. If we do,
1975 write its type into the .tab.h file. */
1977 reader_output_yylsp (&defines_obstack
);
1978 /* Write closing delimiters for actions and guards. */
1981 obstack_sgrow (&table_obstack
, "#define YYLSP_NEEDED 1\n\n");
1982 /* Assign the symbols their symbol numbers. Write #defines for the
1983 token symbols into FDEFINES if requested. */
1985 /* Convert the grammar into the format described in gram.h. */
1990 /*------------------------------------------------------------------.
1991 | Define YYLTYPE. Cannot be in the skeleton since we might have to |
1992 | output it in the headers if --defines is used. |
1993 `------------------------------------------------------------------*/
1996 reader_output_yylsp (struct obstack
*oout
)
1999 obstack_sgrow (oout
, "\
2002 typedef struct yyltype\n\
2005 int first_column;\n\
2011 # define YYLTYPE yyltype\n\