]>
git.saurik.com Git - bison.git/blob - src/reader.c
1 /* Input parser for bison
2 Copyright 1984, 1986, 1989, 1992, 1998, 2000
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. */
36 #include "conflicts.h"
39 /* Number of slots allocated (but not necessarily used yet) in `rline' */
40 static int rline_allocated
;
42 typedef struct symbol_list
44 struct symbol_list
*next
;
53 static symbol_list
*grammar
;
54 static int start_flag
;
55 static bucket
*startval
;
57 /* Nonzero if components of semantic values are used, implying
58 they must be unions. */
59 static int value_components_used
;
61 /* Nonzero if %union has been seen. */
64 /* Incremented for each %left, %right or %nonassoc seen */
67 static bucket
*errtoken
;
68 static bucket
*undeftoken
;
71 /*===================\
73 \===================*/
76 skip_to_char (int target
)
80 complain (_(" Skipping to next \\n"));
82 complain (_(" Skipping to next %c"), target
);
85 c
= skip_white_space ();
86 while (c
!= target
&& c
!= EOF
);
92 /*---------------------------------------------------------.
93 | Read a signed integer from STREAM and return its value. |
94 `---------------------------------------------------------*/
97 read_signed_integer (FILE *stream
)
99 int c
= getc (stream
);
111 n
= 10 * n
+ (c
- '0');
120 /*--------------------------------------------------------------.
121 | Get the data type (alternative in the union) of the value for |
122 | symbol N in rule RULE. |
123 `--------------------------------------------------------------*/
126 get_type_name (int n
, symbol_list
* rule
)
133 complain (_("invalid $ value"));
143 if (rp
== NULL
|| rp
->sym
== NULL
)
145 complain (_("invalid $ value"));
151 return rp
->sym
->type_name
;
154 /*------------------------------------------------------------.
155 | Dump the string from FIN to OOUT if non null. MATCH is the |
156 | delimiter of the string (either ' or "). |
157 `------------------------------------------------------------*/
160 copy_string2 (FILE *fin
, struct obstack
*oout
, int match
, int store
)
165 obstack_1grow (oout
, match
);
172 fatal (_("unterminated string at end of file"));
175 complain (_("unterminated string"));
177 c
= match
; /* invent terminator */
181 obstack_1grow (oout
, c
);
187 fatal (_("unterminated string at end of file"));
188 obstack_1grow (oout
, c
);
198 obstack_1grow (oout
, c
);
204 copy_string (FILE *fin
, struct obstack
*oout
, int match
)
206 copy_string2 (fin
, oout
, match
, 1);
212 copy_identifier (FILE *fin
, struct obstack
*oout
)
216 while (isalnum (c
= getc (fin
)) || c
== '_')
217 obstack_1grow (oout
, c
);
222 /*-----------------------------------------------------------------.
223 | Dump the wannabee comment from IN to OUT1 and OUT2 (which can be |
224 | NULL). In fact we just saw a `/', which might or might not be a |
225 | comment. In any case, copy what we saw. |
227 | OUT2 might be NULL. |
228 `-----------------------------------------------------------------*/
231 copy_comment2 (FILE *fin
, struct obstack
*oout1
, struct obstack
*oout2
)
237 /* We read a `/', output it. */
238 obstack_1grow (oout1
, '/');
240 obstack_1grow (oout2
, '/');
242 switch ((c
= getc (fin
)))
255 obstack_1grow (oout1
, c
);
257 obstack_1grow (oout2
, c
);
263 if (!cplus_comment
&& c
== '*')
267 obstack_1grow (oout1
, c
);
269 obstack_1grow (oout2
, c
);
275 obstack_1grow (oout1
, c
);
277 obstack_1grow (oout2
, c
);
284 obstack_1grow (oout1
, c
);
286 obstack_1grow (oout2
, c
);
293 fatal (_("unterminated comment"));
296 obstack_1grow (oout1
, c
);
298 obstack_1grow (oout2
, c
);
305 /*-------------------------------------------------------------------.
306 | Dump the comment (actually the current string starting with a `/') |
307 | from FIN to OOUT. |
308 `-------------------------------------------------------------------*/
311 copy_comment (FILE *fin
, struct obstack
*oout
)
313 copy_comment2 (fin
, oout
, NULL
);
317 /*-----------------------------------------------------------------.
318 | FIN is pointing to a location (i.e., a `@'). Output to OOUT a |
319 | reference to this location. STACK_OFFSET is the number of values |
320 | in the current rule so far, which says where to find `$0' with |
321 | respect to the top of the stack. |
322 `-----------------------------------------------------------------*/
325 copy_at (FILE *fin
, struct obstack
*oout
, int stack_offset
)
332 obstack_sgrow (oout
, "yyloc");
335 else if (isdigit (c
) || c
== '-')
340 n
= read_signed_integer (fin
);
342 obstack_fgrow1 (oout
, "yylsp[%d]", n
- stack_offset
);
349 complain (_("%s is invalid"), quote (buf
));
354 /*-------------------------------------------------------------------.
355 | FIN is pointing to a wannabee semantic value (i.e., a `$'). |
357 | Possible inputs: $[<TYPENAME>]($|integer) |
359 | Output to OOUT a reference to this semantic value. STACK_OFFSET is |
360 | the number of values in the current rule so far, which says where |
361 | to find `$0' with respect to the top of the stack. |
362 `-------------------------------------------------------------------*/
365 copy_dollar (FILE *fin
, struct obstack
*oout
,
366 symbol_list
*rule
, int stack_offset
)
369 const char *type_name
= NULL
;
371 /* Get the type name if explicit. */
374 read_type_name (fin
);
375 type_name
= token_buffer
;
376 value_components_used
= 1;
382 obstack_sgrow (oout
, "yyval");
385 type_name
= get_type_name (0, rule
);
387 obstack_fgrow1 (oout
, ".%s", type_name
);
388 if (!type_name
&& typed
)
389 complain (_("$$ of `%s' has no declared type"),
392 else if (isdigit (c
) || c
== '-')
396 n
= read_signed_integer (fin
);
398 if (!type_name
&& n
> 0)
399 type_name
= get_type_name (n
, rule
);
401 obstack_fgrow1 (oout
, "yyvsp[%d]", n
- stack_offset
);
404 obstack_fgrow1 (oout
, ".%s", type_name
);
405 if (!type_name
&& typed
)
406 complain (_("$%d of `%s' has no declared type"),
413 complain (_("%s is invalid"), quote (buf
));
417 /*-------------------------------------------------------------------.
418 | Copy the contents of a `%{ ... %}' into the definitions file. The |
419 | `%{' has already been read. Return after reading the `%}'. |
420 `-------------------------------------------------------------------*/
423 copy_definition (void)
426 /* -1 while reading a character if prev char was %. */
431 obstack_fgrow2 (&attrs_obstack
, "#line %d %s\n",
432 lineno
, quotearg_style (c_quoting_style
, infile
));
444 obstack_1grow (&attrs_obstack
, c
);
454 copy_string (finput
, &attrs_obstack
, c
);
458 copy_comment (finput
, &attrs_obstack
);
462 fatal ("%s", _("unterminated `%{' definition"));
465 obstack_1grow (&attrs_obstack
, c
);
474 obstack_1grow (&attrs_obstack
, '%');
481 /*-------------------------------------------------------------------.
482 | Parse what comes after %token or %nterm. For %token, WHAT_IS is |
483 | token_sym and WHAT_IS_NOT is nterm_sym. For %nterm, the arguments |
485 `-------------------------------------------------------------------*/
488 parse_token_decl (symbol_class what_is
, symbol_class what_is_not
)
493 /* The symbol being defined. */
494 struct bucket
*symbol
= NULL
;
496 /* After `%token' and `%nterm', any number of symbols maybe be
500 int tmp_char
= ungetc (skip_white_space (), finput
);
502 /* `%' (for instance from `%token', or from `%%' etc.) is the
503 only valid means to end this declaration. */
507 fatal (_("Premature EOF after %s"), token_buffer
);
510 if (token
== tok_comma
)
515 if (token
== tok_typename
)
517 typename
= xstrdup (token_buffer
);
518 value_components_used
= 1;
521 else if (token
== tok_identifier
&& *symval
->tag
== '\"' && symbol
)
524 warn (_("symbol `%s' used more than once as a literal string"),
526 else if (symbol
->alias
)
527 warn (_("symbol `%s' given more than one literal string"),
531 symval
->class = token_sym
;
532 symval
->type_name
= typename
;
533 symval
->user_token_number
= symbol
->user_token_number
;
534 symbol
->user_token_number
= SALIAS
;
535 symval
->alias
= symbol
;
536 symbol
->alias
= symval
;
537 /* symbol and symval combined are only one symbol */
543 else if (token
== tok_identifier
)
545 int oldclass
= symval
->class;
548 if (symbol
->class == what_is_not
)
549 complain (_("symbol %s redefined"), symbol
->tag
);
550 symbol
->class = what_is
;
551 if (what_is
== nterm_sym
&& oldclass
!= nterm_sym
)
552 symbol
->value
= nvars
++;
556 if (symbol
->type_name
== NULL
)
557 symbol
->type_name
= typename
;
558 else if (strcmp (typename
, symbol
->type_name
) != 0)
559 complain (_("type redeclaration for %s"), symbol
->tag
);
562 else if (symbol
&& token
== tok_number
)
564 symbol
->user_token_number
= numval
;
569 complain (_("`%s' is invalid in %s"),
570 token_buffer
, (what_is
== token_sym
) ? "%token" : "%nterm");
578 /*------------------------------.
579 | Parse what comes after %start |
580 `------------------------------*/
583 parse_start_decl (void)
586 complain (_("multiple %s declarations"), "%start");
587 if (lex () != tok_identifier
)
588 complain (_("invalid %s declaration"), "%start");
596 /*-----------------------------------------------------------.
597 | read in a %type declaration and record its information for |
598 | get_type_name to access |
599 `-----------------------------------------------------------*/
602 parse_type_decl (void)
606 if (lex () != tok_typename
)
608 complain ("%s", _("%type declaration has no <typename>"));
613 name
= xstrdup (token_buffer
);
618 int tmp_char
= ungetc (skip_white_space (), finput
);
623 fatal (_("Premature EOF after %s"), token_buffer
);
635 if (symval
->type_name
== NULL
)
636 symval
->type_name
= name
;
637 else if (strcmp (name
, symval
->type_name
) != 0)
638 complain (_("type redeclaration for %s"), symval
->tag
);
643 complain (_("invalid %%type declaration due to item: %s"),
652 /*----------------------------------------------------------------.
653 | Read in a %left, %right or %nonassoc declaration and record its |
655 `----------------------------------------------------------------*/
658 parse_assoc_decl (associativity assoc
)
663 lastprec
++; /* Assign a new precedence level, never 0. */
668 int tmp_char
= ungetc (skip_white_space (), finput
);
673 fatal (_("Premature EOF after %s"), token_buffer
);
680 name
= xstrdup (token_buffer
);
687 if (symval
->prec
!= 0)
688 complain (_("redefining precedence of %s"), symval
->tag
);
689 symval
->prec
= lastprec
;
690 symval
->assoc
= assoc
;
691 if (symval
->class == nterm_sym
)
692 complain (_("symbol %s redefined"), symval
->tag
);
693 symval
->class = token_sym
;
695 { /* record the type, if one is specified */
696 if (symval
->type_name
== NULL
)
697 symval
->type_name
= name
;
698 else if (strcmp (name
, symval
->type_name
) != 0)
699 complain (_("type redeclaration for %s"), symval
->tag
);
704 if (prev
== tok_identifier
)
706 symval
->user_token_number
= numval
;
712 ("invalid text (%s) - number should be after identifier"),
722 complain (_("unexpected item: %s"), token_buffer
);
733 /*--------------------------------------------------------------.
734 | Copy the union declaration into ATTRS_OBSTACK (and fdefines), |
735 | where it is made into the definition of YYSTYPE, the type of |
736 | elements of the parser value stack. |
737 `--------------------------------------------------------------*/
740 parse_union_decl (void)
746 complain (_("multiple %s declarations"), "%union");
751 obstack_fgrow2 (&attrs_obstack
, "\n#line %d %s\n",
752 lineno
, quotearg_style (c_quoting_style
,
753 macro_find("filename")));
755 obstack_1grow (&attrs_obstack
, '\n');
757 obstack_sgrow (&attrs_obstack
, "typedef union");
759 obstack_sgrow (&defines_obstack
, "typedef union");
765 obstack_1grow (&attrs_obstack
, c
);
767 obstack_1grow (&defines_obstack
, c
);
776 copy_comment2 (finput
, &defines_obstack
, &attrs_obstack
);
785 complain (_("unmatched %s"), "`}'");
789 obstack_sgrow (&attrs_obstack
, " YYSTYPE;\n");
791 obstack_sgrow (&defines_obstack
, " YYSTYPE;\n");
792 /* JF don't choke on trailing semi */
793 c
= skip_white_space ();
805 /*-------------------------------------------------------.
806 | Parse the declaration %expect N which says to expect N |
807 | shift-reduce conflicts. |
808 `-------------------------------------------------------*/
811 parse_expect_decl (void)
813 int c
= skip_white_space ();
817 complain (_("argument of %%expect is not an integer"));
819 expected_conflicts
= read_signed_integer (finput
);
823 /*-------------------------------------------------------------------.
824 | Parse what comes after %thong. the full syntax is |
826 | %thong <type> token number literal |
828 | the <type> or number may be omitted. The number specifies the |
829 | user_token_number. |
831 | Two symbols are entered in the table, one for the token symbol and |
832 | one for the literal. Both are given the <type>, if any, from the |
833 | declaration. The ->user_token_number of the first is SALIAS and |
834 | the ->user_token_number of the second is set to the number, if |
835 | any, from the declaration. The two symbols are linked via |
836 | pointers in their ->alias fields. |
838 | During OUTPUT_DEFINES_TABLE, the symbol is reported thereafter, |
839 | only the literal string is retained it is the literal string that |
840 | is output to yytname |
841 `-------------------------------------------------------------------*/
844 parse_thong_decl (void)
847 struct bucket
*symbol
;
852 token
= lex (); /* fetch typename or first token */
853 if (token
== tok_typename
)
855 typename
= xstrdup (token_buffer
);
856 value_components_used
= 1;
857 token
= lex (); /* fetch first token */
860 /* process first token */
862 if (token
!= tok_identifier
)
864 complain (_("unrecognized item %s, expected an identifier"),
869 symval
->class = token_sym
;
870 symval
->type_name
= typename
;
871 symval
->user_token_number
= SALIAS
;
874 token
= lex (); /* get number or literal string */
876 if (token
== tok_number
)
879 token
= lex (); /* okay, did number, now get literal */
884 /* process literal string token */
886 if (token
!= tok_identifier
|| *symval
->tag
!= '\"')
888 complain (_("expected string constant instead of %s"), token_buffer
);
892 symval
->class = token_sym
;
893 symval
->type_name
= typename
;
894 symval
->user_token_number
= usrtoknum
;
896 symval
->alias
= symbol
;
897 symbol
->alias
= symval
;
899 /* symbol and symval combined are only one symbol. */
906 parse_macro_decl (void)
908 int ch
= ungetc (skip_white_space (), finput
);
913 if (!isalpha (ch
) && ch
!= '_')
915 complain (_("invalid %s declaration"), "%define");
919 copy_identifier (finput
, ¯o_obstack
);
920 obstack_1grow (¯o_obstack
, 0);
921 macro_key
= obstack_finish (¯o_obstack
);
924 ch
= skip_white_space ();
930 complain (_("invalid %s declaration"), "%define");
935 fatal (_("Premature EOF after %s"), "\"");
937 copy_string2 (finput
, ¯o_obstack
, '"', 0);
938 obstack_1grow (¯o_obstack
, 0);
939 macro_value
= obstack_finish (¯o_obstack
);
941 /* Store the (key, value) pair in the environment. */
942 macro_insert (macro_key
, macro_value
);
946 /*----------------------------------.
947 | Parse what comes after %skeleton. |
948 `----------------------------------*/
951 parse_skel_decl (void)
953 /* Complete with parse_dquoted_param () on the CVS branch 1.29. */
956 /*------------------------------------------.
957 | Parse what comes after %header_extension. |
958 `------------------------------------------*/
961 parse_header_extension_decl (void)
965 if (header_extension
)
966 complain (_("multiple %%header_extension declarations"));
967 fscanf (finput
, "%s", buff
);
968 header_extension
= xstrdup (buff
);
971 /*------------------------------------------.
972 | Parse what comes after %source_extension. |
973 `------------------------------------------*/
976 parse_source_extension_decl (void)
981 complain (_("multiple %%source_extension declarations"));
982 fscanf (finput
, "%s", buff
);
983 src_extension
= xstrdup (buff
);
986 /*----------------------------------------------------------------.
987 | Read from finput until `%%' is seen. Discard the `%%'. Handle |
988 | any `%' declarations, and copy the contents of any `%{ ... %}' |
989 | groups to ATTRS_OBSTACK. |
990 `----------------------------------------------------------------*/
993 read_declarations (void)
1000 c
= skip_white_space ();
1004 tok
= parse_percent_token ();
1008 case tok_two_percents
:
1011 case tok_percent_left_curly
:
1016 parse_token_decl (token_sym
, nterm_sym
);
1020 parse_token_decl (nterm_sym
, token_sym
);
1028 parse_start_decl ();
1032 parse_union_decl ();
1036 parse_expect_decl ();
1040 parse_thong_decl ();
1044 parse_assoc_decl (left_assoc
);
1048 parse_assoc_decl (right_assoc
);
1052 parse_assoc_decl (non_assoc
);
1056 parse_header_extension_decl ();
1060 parse_source_extension_decl ();
1064 parse_macro_decl ();
1075 complain (_("unrecognized: %s"), token_buffer
);
1080 fatal (_("no input grammar"));
1085 complain (_("unknown character: %s"), quote (buf
));
1091 /*-------------------------------------------------------------------.
1092 | Assuming that a `{' has just been seen, copy everything up to the |
1093 | matching `}' into the actions file. STACK_OFFSET is the number of |
1094 | values in the current rule so far, which says where to find `$0' |
1095 | with respect to the top of the stack. |
1096 `-------------------------------------------------------------------*/
1099 copy_action (symbol_list
*rule
, int stack_offset
)
1105 /* offset is always 0 if parser has already popped the stack pointer */
1106 if (semantic_parser
)
1109 sprintf (buf
, "\ncase %d:\n", nrules
);
1110 obstack_grow (&action_obstack
, buf
, strlen (buf
));
1114 sprintf (buf
, "#line %d %s\n",
1115 lineno
, quotearg_style (c_quoting_style
,
1116 macro_find ("filename")));
1117 obstack_grow (&action_obstack
, buf
, strlen (buf
));
1119 obstack_1grow (&action_obstack
, '{');
1131 obstack_1grow (&action_obstack
, c
);
1136 obstack_1grow (&action_obstack
, c
);
1142 copy_string (finput
, &action_obstack
, c
);
1146 copy_comment (finput
, &action_obstack
);
1150 copy_dollar (finput
, &action_obstack
,
1151 rule
, stack_offset
);
1155 copy_at (finput
, &action_obstack
,
1160 fatal (_("unmatched %s"), "`{'");
1163 obstack_1grow (&action_obstack
, c
);
1169 /* above loop exits when c is '}' */
1173 obstack_1grow (&action_obstack
, c
);
1178 obstack_sgrow (&action_obstack
, ";\n break;}");
1181 /*-------------------------------------------------------------------.
1182 | After `%guard' is seen in the input file, copy the actual guard |
1183 | into the guards file. If the guard is followed by an action, copy |
1184 | that into the actions file. STACK_OFFSET is the number of values |
1185 | in the current rule so far, which says where to find `$0' with |
1186 | respect to the top of the stack, for the simple parser in which |
1187 | the stack is not popped until after the guard is run. |
1188 `-------------------------------------------------------------------*/
1191 copy_guard (symbol_list
*rule
, int stack_offset
)
1197 /* offset is always 0 if parser has already popped the stack pointer */
1198 if (semantic_parser
)
1201 obstack_fgrow1 (&guard_obstack
, "\ncase %d:\n", nrules
);
1203 obstack_fgrow2 (&guard_obstack
, "#line %d %s\n",
1204 lineno
, quotearg_style (c_quoting_style
,
1205 macro_find ("filename")));
1206 obstack_1grow (&guard_obstack
, '{');
1211 while (brace_flag
? (count
> 0) : (c
!= ';'))
1216 obstack_1grow (&guard_obstack
, c
);
1221 obstack_1grow (&guard_obstack
, c
);
1227 obstack_1grow (&guard_obstack
, c
);
1232 complain (_("unmatched %s"), "`}'");
1233 c
= getc (finput
); /* skip it */
1239 copy_string (finput
, &guard_obstack
, c
);
1243 copy_comment (finput
, &guard_obstack
);
1247 copy_dollar (finput
, &guard_obstack
, rule
, stack_offset
);
1251 copy_at (finput
, &guard_obstack
, stack_offset
);
1255 fatal ("%s", _("unterminated %guard clause"));
1258 obstack_1grow (&guard_obstack
, c
);
1261 if (c
!= '}' || count
!= 0)
1265 c
= skip_white_space ();
1267 obstack_sgrow (&guard_obstack
, ";\n break;}");
1269 copy_action (rule
, stack_offset
);
1272 c
= getc (finput
); /* why not skip_white_space -wjh */
1274 copy_action (rule
, stack_offset
);
1282 record_rule_line (void)
1284 /* Record each rule's source line number in rline table. */
1286 if (nrules
>= rline_allocated
)
1288 rline_allocated
= nrules
* 2;
1289 rline
= XREALLOC (rline
, short, rline_allocated
);
1291 rline
[nrules
] = lineno
;
1295 /*-------------------------------------------------------------------.
1296 | Generate a dummy symbol, a nonterminal, whose name cannot conflict |
1297 | with the user's names. |
1298 `-------------------------------------------------------------------*/
1303 /* Incremented for each generated symbol */
1304 static int gensym_count
= 0;
1305 static char buf
[256];
1309 sprintf (buf
, "@%d", ++gensym_count
);
1311 sym
= getsym (token_buffer
);
1312 sym
->class = nterm_sym
;
1313 sym
->value
= nvars
++;
1318 /*------------------------------------------------------------------.
1319 | read in a %type declaration and record its information for |
1320 | get_type_name to access. This is unused. It is only called from |
1321 | the #if 0 part of readgram |
1322 `------------------------------------------------------------------*/
1333 if (token
!= tok_typename
)
1335 complain (_("invalid %s declaration"), "%type");
1339 name
= xstrdup (token_buffer
);
1353 case tok_identifier
:
1354 if (symval
->type_name
== NULL
)
1355 symval
->type_name
= name
;
1356 else if (strcmp (name
, symval
->type_name
) != 0)
1357 complain (_("type redeclaration for %s"), symval
->tag
);
1369 /*------------------------------------------------------------------.
1370 | Parse the input grammar into a one symbol_list structure. Each |
1371 | rule is represented by a sequence of symbols: the left hand side |
1372 | followed by the contents of the right hand side, followed by a |
1373 | null pointer instead of a symbol to terminate the rule. The next |
1374 | symbol is the lhs of the following rule. |
1376 | All guards and actions are copied out to the appropriate files, |
1377 | labelled by the rule number they apply to. |
1378 `------------------------------------------------------------------*/
1389 /* Points to first symbol_list of current rule. its symbol is the
1392 /* Points to the symbol_list preceding crule. */
1393 symbol_list
*crule1
;
1399 while (t
!= tok_two_percents
&& t
!= tok_eof
)
1401 if (t
== tok_identifier
|| t
== tok_bar
)
1403 int action_flag
= 0;
1404 /* Number of symbols in rhs of this rule so far */
1406 int xactions
= 0; /* JF for error checking */
1407 bucket
*first_rhs
= 0;
1409 if (t
== tok_identifier
)
1422 complain (_("ill-formed rule: initial symbol not followed by colon"));
1427 if (nrules
== 0 && t
== tok_bar
)
1429 complain (_("grammar starts with vertical bar"));
1430 lhs
= symval
; /* BOGUS: use a random symval */
1432 /* start a new rule and record its lhs. */
1437 record_rule_line ();
1439 p
= XCALLOC (symbol_list
, 1);
1451 /* mark the rule's lhs as a nonterminal if not already so. */
1453 if (lhs
->class == unknown_sym
)
1455 lhs
->class = nterm_sym
;
1459 else if (lhs
->class == token_sym
)
1460 complain (_("rule given for %s, which is a token"), lhs
->tag
);
1462 /* read the rhs of the rule. */
1470 crule
->ruleprec
= symval
;
1474 if (!(t
== tok_identifier
|| t
== tok_left_curly
))
1477 /* If next token is an identifier, see if a colon follows it.
1478 If one does, exit this rule now. */
1479 if (t
== tok_identifier
)
1488 if (t1
== tok_colon
)
1491 if (!first_rhs
) /* JF */
1493 /* Not followed by colon =>
1494 process as part of this rule's rhs. */
1497 /* If we just passed an action, that action was in the middle
1498 of a rule, so make a dummy rule to reduce it to a
1504 /* Since the action was written out with this rule's
1505 number, we must give the new rule this number by
1506 inserting the new rule before it. */
1508 /* Make a dummy nonterminal, a gensym. */
1511 /* Make a new rule, whose body is empty,
1512 before the current one, so that the action
1513 just read can belong to it. */
1516 record_rule_line ();
1517 p
= XCALLOC (symbol_list
, 1);
1523 crule1
= XCALLOC (symbol_list
, 1);
1525 crule1
->next
= crule
;
1527 /* Insert the dummy generated by that rule into this
1530 p
= XCALLOC (symbol_list
, 1);
1538 if (t
== tok_identifier
)
1541 p
= XCALLOC (symbol_list
, 1);
1546 else /* handle an action. */
1548 copy_action (crule
, rulelength
);
1550 xactions
++; /* JF */
1553 } /* end of read rhs of rule */
1555 /* Put an empty link in the list to mark the end of this rule */
1556 p
= XCALLOC (symbol_list
, 1);
1562 complain (_("two @prec's in a row"));
1564 crule
->ruleprec
= symval
;
1569 if (!semantic_parser
)
1570 complain (_("%%guard present but %%semantic_parser not specified"));
1572 copy_guard (crule
, rulelength
);
1575 else if (t
== tok_left_curly
)
1577 /* This case never occurs -wjh */
1579 complain (_("two actions at end of one rule"));
1580 copy_action (crule
, rulelength
);
1582 xactions
++; /* -wjh */
1585 /* If $$ is being set in default way, report if any type
1588 && first_rhs
&& lhs
->type_name
!= first_rhs
->type_name
)
1590 if (lhs
->type_name
== 0
1591 || first_rhs
->type_name
== 0
1592 || strcmp (lhs
->type_name
, first_rhs
->type_name
))
1593 complain (_("type clash (`%s' `%s') on default action"),
1594 lhs
->type_name
? lhs
->type_name
: "",
1595 first_rhs
->type_name
? first_rhs
->type_name
: "");
1597 /* Warn if there is no default for $$ but we need one. */
1598 else if (!xactions
&& !first_rhs
&& lhs
->type_name
!= 0)
1599 complain (_("empty rule for typed nonterminal, and no action"));
1600 if (t
== tok_semicolon
)
1604 /* these things can appear as alternatives to rules. */
1606 a) none of the documentation allows them
1607 b) most of them scan forward until finding a next %
1608 thus they may swallow lots of intervening rules
1610 else if (t
== tok_token
)
1612 parse_token_decl (token_sym
, nterm_sym
);
1615 else if (t
== tok_nterm
)
1617 parse_token_decl (nterm_sym
, token_sym
);
1620 else if (t
== tok_type
)
1624 else if (t
== tok_union
)
1626 parse_union_decl ();
1629 else if (t
== tok_expect
)
1631 parse_expect_decl ();
1634 else if (t
== tok_start
)
1636 parse_start_decl ();
1643 complain (_("invalid input: %s"), quote (token_buffer
));
1648 /* grammar has been read. Do some checking */
1650 if (nsyms
> MAXSHORT
)
1651 fatal (_("too many symbols (tokens plus nonterminals); maximum %d"),
1654 fatal (_("no rules in the input grammar"));
1656 /* Report any undefined symbols and consider them nonterminals. */
1658 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1659 if (bp
->class == unknown_sym
)
1662 ("symbol %s is used, but is not defined as a token and has no rules"),
1664 bp
->class = nterm_sym
;
1665 bp
->value
= nvars
++;
1668 ntokens
= nsyms
- nvars
;
1671 /* At the end of the grammar file, some C source code must
1672 be stored. It is going to be associated to the epilogue
1675 read_additionnal_code (void)
1678 struct obstack el_obstack
;
1680 obstack_init (&el_obstack
);
1682 while ((c
= getc (finput
)) != EOF
)
1683 obstack_1grow (&el_obstack
, c
);
1685 obstack_1grow (&el_obstack
, 0);
1686 macro_insert ("epilogue", obstack_finish (&el_obstack
));
1690 /*--------------------------------------------------------------.
1691 | For named tokens, but not literal ones, define the name. The |
1692 | value is the user token number. |
1693 `--------------------------------------------------------------*/
1696 output_token_defines (struct obstack
*oout
)
1702 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1704 symbol
= bp
->tag
; /* get symbol */
1706 if (bp
->value
>= ntokens
)
1708 if (bp
->user_token_number
== SALIAS
)
1710 if ('\'' == *symbol
)
1711 continue; /* skip literal character */
1713 continue; /* skip error token */
1714 if ('\"' == *symbol
)
1716 /* use literal string only if given a symbol with an alias */
1718 symbol
= bp
->alias
->tag
;
1723 /* Don't #define nonliteral tokens whose names contain periods. */
1725 while ((c
= *cp
++) && c
!= '.');
1729 obstack_fgrow2 (oout
, "# define\t%s\t%d\n",
1731 (translations
? bp
->user_token_number
: bp
->value
));
1732 if (semantic_parser
)
1733 obstack_fgrow2 (oout
, "# define\tT%s\t%d\n", symbol
, bp
->value
);
1738 /*------------------------------------------------------------------.
1739 | Assign symbol numbers, and write definition of token names into |
1740 | FDEFINES. Set up vectors TAGS and SPREC of names and precedences |
1742 `------------------------------------------------------------------*/
1750 int last_user_token_number
;
1751 static char DOLLAR
[] = "$";
1753 tags
= XCALLOC (char *, nsyms
+ 1);
1755 user_toknums
= XCALLOC (short, nsyms
+ 1);
1756 user_toknums
[0] = 0;
1758 sprec
= XCALLOC (short, nsyms
);
1759 sassoc
= XCALLOC (short, nsyms
);
1761 max_user_token_number
= 256;
1762 last_user_token_number
= 256;
1764 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1766 if (bp
->class == nterm_sym
)
1768 bp
->value
+= ntokens
;
1772 /* this symbol and its alias are a single token defn.
1773 allocate a tokno, and assign to both check agreement of
1774 ->prec and ->assoc fields and make both the same */
1776 bp
->value
= bp
->alias
->value
= tokno
++;
1778 if (bp
->prec
!= bp
->alias
->prec
)
1780 if (bp
->prec
!= 0 && bp
->alias
->prec
!= 0
1781 && bp
->user_token_number
== SALIAS
)
1782 complain (_("conflicting precedences for %s and %s"),
1783 bp
->tag
, bp
->alias
->tag
);
1785 bp
->alias
->prec
= bp
->prec
;
1787 bp
->prec
= bp
->alias
->prec
;
1790 if (bp
->assoc
!= bp
->alias
->assoc
)
1792 if (bp
->assoc
!= 0 && bp
->alias
->assoc
!= 0
1793 && bp
->user_token_number
== SALIAS
)
1794 complain (_("conflicting assoc values for %s and %s"),
1795 bp
->tag
, bp
->alias
->tag
);
1797 bp
->alias
->assoc
= bp
->assoc
;
1799 bp
->assoc
= bp
->alias
->assoc
;
1802 if (bp
->user_token_number
== SALIAS
)
1803 continue; /* do not do processing below for SALIASs */
1806 else /* bp->class == token_sym */
1808 bp
->value
= tokno
++;
1811 if (bp
->class == token_sym
)
1813 if (translations
&& !(bp
->user_token_number
))
1814 bp
->user_token_number
= ++last_user_token_number
;
1815 if (bp
->user_token_number
> max_user_token_number
)
1816 max_user_token_number
= bp
->user_token_number
;
1819 tags
[bp
->value
] = bp
->tag
;
1820 user_toknums
[bp
->value
] = bp
->user_token_number
;
1821 sprec
[bp
->value
] = bp
->prec
;
1822 sassoc
[bp
->value
] = bp
->assoc
;
1830 token_translations
= XCALLOC (short, max_user_token_number
+ 1);
1832 /* initialize all entries for literal tokens to 2, the internal
1833 token number for $undefined., which represents all invalid
1835 for (j
= 0; j
<= max_user_token_number
; j
++)
1836 token_translations
[j
] = 2;
1838 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1840 if (bp
->value
>= ntokens
)
1841 continue; /* non-terminal */
1842 if (bp
->user_token_number
== SALIAS
)
1844 if (token_translations
[bp
->user_token_number
] != 2)
1845 complain (_("tokens %s and %s both assigned number %d"),
1846 tags
[token_translations
[bp
->user_token_number
]],
1847 bp
->tag
, bp
->user_token_number
);
1848 token_translations
[bp
->user_token_number
] = bp
->value
;
1852 error_token_number
= errtoken
->value
;
1854 output_token_defines (&output_obstack
);
1855 obstack_1grow (&output_obstack
, 0);
1856 macro_insert ("tokendef", obstack_finish (&output_obstack
));
1859 if (!no_parser_flag
)
1860 output_token_defines (&table_obstack
);
1863 if (startval
->class == unknown_sym
)
1864 fatal (_("the start symbol %s is undefined"), startval
->tag
);
1865 else if (startval
->class == token_sym
)
1866 fatal (_("the start symbol %s is a token"), startval
->tag
);
1868 start_symbol
= startval
->value
;
1872 output_token_defines (&defines_obstack
);
1876 if (spec_name_prefix
)
1877 obstack_fgrow1 (&defines_obstack
, "\nextern YYSTYPE %slval;\n",
1880 obstack_sgrow (&defines_obstack
,
1881 "\nextern YYSTYPE yylval;\n");
1884 if (semantic_parser
)
1885 for (i
= ntokens
; i
< nsyms
; i
++)
1887 /* don't make these for dummy nonterminals made by gensym. */
1888 if (*tags
[i
] != '@')
1889 obstack_fgrow2 (&defines_obstack
,
1890 "# define\tNT%s\t%d\n", tags
[i
], i
);
1893 /* `fdefines' is now a temporary file, so we need to copy its
1894 contents in `done', so we can't close it here. */
1902 /*---------------------------------------------------------------.
1903 | Convert the rules into the representation using RRHS, RLHS and |
1905 `---------------------------------------------------------------*/
1916 ritem
= XCALLOC (short, nitems
+ 1);
1917 rlhs
= XCALLOC (short, nrules
) - 1;
1918 rrhs
= XCALLOC (short, nrules
) - 1;
1919 rprec
= XCALLOC (short, nrules
) - 1;
1920 rprecsym
= XCALLOC (short, nrules
) - 1;
1921 rassoc
= XCALLOC (short, nrules
) - 1;
1929 rlhs
[ruleno
] = p
->sym
->value
;
1930 rrhs
[ruleno
] = itemno
;
1931 ruleprec
= p
->ruleprec
;
1936 ritem
[itemno
++] = p
->sym
->value
;
1937 /* A rule gets by default the precedence and associativity
1938 of the last token in it. */
1939 if (p
->sym
->class == token_sym
)
1941 rprec
[ruleno
] = p
->sym
->prec
;
1942 rassoc
[ruleno
] = p
->sym
->assoc
;
1948 /* If this rule has a %prec,
1949 the specified symbol's precedence replaces the default. */
1952 rprec
[ruleno
] = ruleprec
->prec
;
1953 rassoc
[ruleno
] = ruleprec
->assoc
;
1954 rprecsym
[ruleno
] = ruleprec
->value
;
1957 ritem
[itemno
++] = -ruleno
;
1967 /*-------------------------------------------------------------------.
1968 | Read in the grammar specification and record it in the format |
1969 | described in gram.h. All guards are copied into the GUARD_OBSTACK |
1970 | and all actions into ACTION_OBSTACK, in each case forming the body |
1971 | of a C function (YYGUARD or YYACTION) which contains a switch |
1972 | statement to decide which guard or action to execute. |
1973 `-------------------------------------------------------------------*/
1979 startval
= NULL
; /* start symbol not specified yet. */
1982 /* initially assume token number translation not needed. */
1985 /* Nowadays translations is always set to 1, since we give `error' a
1986 user-token-number to satisfy the Posix demand for YYERRCODE==256.
1994 rline_allocated
= 10;
1995 rline
= XCALLOC (short, rline_allocated
);
2000 semantic_parser
= 0;
2008 /* Initialize the macro obstack. */
2009 obstack_init (¯o_obstack
);
2011 /* Initialize the symbol table. */
2014 /* Construct the error token */
2015 errtoken
= getsym ("error");
2016 errtoken
->class = token_sym
;
2017 errtoken
->user_token_number
= 256; /* Value specified by POSIX. */
2019 /* Construct a token that represents all undefined literal tokens.
2020 It is always token number 2. */
2021 undeftoken
= getsym ("$undefined.");
2022 undeftoken
->class = token_sym
;
2023 undeftoken
->user_token_number
= 2;
2025 /* Read the declaration section. Copy %{ ... %} groups to
2026 TABLE_OBSTACK and FDEFINES file. Also notice any %token, %left,
2027 etc. found there. */
2028 read_declarations ();
2029 /* Read in the grammar, build grammar in list form. Write out
2030 guards and actions. */
2032 /* Some C code is given at the end of the grammar file. */
2033 read_additionnal_code ();
2034 /* Now we know whether we need the line-number stack. If we do,
2035 write its type into the .tab.h file. */
2038 reader_output_yylsp (&defines_obstack
);
2040 /* Assign the symbols their symbol numbers. Write #defines for the
2041 token symbols into FDEFINES if requested. */
2043 /* Convert the grammar into the format described in gram.h. */
2045 /* Free the symbol table data structure since symbols are now all
2046 referred to by symbol number. */