]>
git.saurik.com Git - bison.git/blob - src/reader.c
1 /* Input parser for bison
2 Copyright (C) 1984, 1986, 1989, 1992, 1998, 2000, 2001, 2002
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"
36 #include "muscle_tab.h"
38 typedef struct symbol_list
40 struct symbol_list
*next
;
44 /* The action is attached to the LHS of a rule. */
48 /* The guard is attached to the LHS of a rule. */
55 static symbol_list
*grammar
= NULL
;
56 static int start_flag
= 0;
57 static bucket
*startval
= NULL
;
59 /* Nonzero if components of semantic values are used, implying
60 they must be unions. */
61 static int value_components_used
;
63 /* Nonzero if %union has been seen. */
66 /* Incremented for each %left, %right or %nonassoc seen */
67 static int lastprec
= 0;
69 bucket
*errtoken
= NULL
;
70 bucket
*undeftoken
= NULL
;
71 bucket
*eoftoken
= NULL
;
75 symbol_list_new (bucket
*sym
)
77 symbol_list
*res
= XMALLOC (symbol_list
, 1);
91 /*===================\
93 \===================*/
96 skip_to_char (int target
)
100 complain (_(" Skipping to next \\n"));
102 complain (_(" Skipping to next %c"), target
);
105 c
= skip_white_space ();
106 while (c
!= target
&& c
!= EOF
);
112 /*---------------------------------------------------------.
113 | Read a signed integer from STREAM and return its value. |
114 `---------------------------------------------------------*/
117 read_signed_integer (FILE *stream
)
119 int c
= getc (stream
);
131 n
= 10 * n
+ (c
- '0');
140 /*--------------------------------------------------------------.
141 | Get the data type (alternative in the union) of the value for |
142 | symbol N in rule RULE. |
143 `--------------------------------------------------------------*/
146 get_type_name (int n
, symbol_list
*rule
)
153 complain (_("invalid $ value"));
163 if (rp
== NULL
|| rp
->sym
== NULL
)
165 complain (_("invalid $ value"));
171 return rp
->sym
->type_name
;
174 /*------------------------------------------------------------.
175 | Dump the string from FIN to OOUT if non null. MATCH is the |
176 | delimiter of the string (either ' or "). |
177 `------------------------------------------------------------*/
180 copy_string2 (FILE *fin
, struct obstack
*oout
, int match
, int store
)
185 obstack_1grow (oout
, match
);
192 fatal (_("unterminated string at end of file"));
195 complain (_("unterminated string"));
197 c
= match
; /* invent terminator */
201 obstack_1grow (oout
, c
);
207 fatal (_("unterminated string at end of file"));
208 obstack_1grow (oout
, c
);
218 obstack_1grow (oout
, c
);
224 copy_string (FILE *fin
, struct obstack
*oout
, int match
)
226 copy_string2 (fin
, oout
, match
, 1);
232 copy_identifier (FILE *fin
, struct obstack
*oout
)
236 while (isalnum (c
= getc (fin
)) || c
== '_')
237 obstack_1grow (oout
, c
);
243 /*------------------------------------------------------------------.
244 | Dump the wannabee comment from IN to OOUT. In fact we just saw a |
245 | `/', which might or might not be a comment. In any case, copy |
247 `------------------------------------------------------------------*/
250 copy_comment (FILE *fin
, struct obstack
*oout
)
256 /* We read a `/', output it. */
257 obstack_1grow (oout
, '/');
259 switch ((c
= getc (fin
)))
272 obstack_1grow (oout
, c
);
278 if (!cplus_comment
&& c
== '*')
282 obstack_1grow (oout
, c
);
288 obstack_1grow (oout
, c
);
295 obstack_1grow (oout
, c
);
302 fatal (_("unterminated comment"));
305 obstack_1grow (oout
, c
);
312 /*-----------------------------------------------------------------.
313 | FIN is pointing to a location (i.e., a `@'). Output to OOUT a |
314 | reference to this location. STACK_OFFSET is the number of values |
315 | in the current rule so far, which says where to find `$0' with |
316 | respect to the top of the stack. |
317 `-----------------------------------------------------------------*/
320 copy_at (FILE *fin
, struct obstack
*oout
, int stack_offset
)
327 obstack_sgrow (oout
, "yyloc");
330 else if (isdigit (c
) || c
== '-')
335 n
= read_signed_integer (fin
);
336 if (n
> stack_offset
)
337 complain (_("invalid value: %s%d"), "@", n
);
340 /* Offset is always 0 if parser has already popped the stack
342 obstack_fgrow1 (oout
, "yylsp[%d]",
343 n
- (semantic_parser
? 0 : stack_offset
));
351 complain (_("%s is invalid"), quote (buf
));
356 /*-------------------------------------------------------------------.
357 | FIN is pointing to a wannabee semantic value (i.e., a `$'). |
359 | Possible inputs: $[<TYPENAME>]($|integer) |
361 | Output to OOUT a reference to this semantic value. STACK_OFFSET is |
362 | the number of values in the current rule so far, which says where |
363 | to find `$0' with respect to the top of the stack. |
364 `-------------------------------------------------------------------*/
367 copy_dollar (FILE *fin
, struct obstack
*oout
,
368 symbol_list
*rule
, int stack_offset
)
371 const char *type_name
= NULL
;
373 /* Get the type name if explicit. */
376 read_type_name (fin
);
377 type_name
= token_buffer
;
378 value_components_used
= 1;
384 obstack_sgrow (oout
, "yyval");
387 type_name
= get_type_name (0, rule
);
389 obstack_fgrow1 (oout
, ".%s", type_name
);
390 if (!type_name
&& typed
)
391 complain (_("$$ of `%s' has no declared type"),
394 else if (isdigit (c
) || c
== '-')
398 n
= read_signed_integer (fin
);
400 if (n
> stack_offset
)
401 complain (_("invalid value: %s%d"), "$", n
);
404 if (!type_name
&& n
> 0)
405 type_name
= get_type_name (n
, rule
);
407 /* Offset is always 0 if parser has already popped the stack
409 obstack_fgrow1 (oout
, "yyvsp[%d]",
410 n
- (semantic_parser
? 0 : stack_offset
));
413 obstack_fgrow1 (oout
, ".%s", type_name
);
414 if (!type_name
&& typed
)
415 complain (_("$%d of `%s' has no declared type"),
423 complain (_("%s is invalid"), quote (buf
));
427 /*-------------------------------------------------------------------.
428 | Copy the contents of a `%{ ... %}' into the definitions file. The |
429 | `%{' has already been read. Return after reading the `%}'. |
430 `-------------------------------------------------------------------*/
433 copy_definition (void)
436 /* -1 while reading a character if prev char was %. */
441 obstack_fgrow2 (&attrs_obstack
, muscle_find ("linef"),
442 lineno
, quotearg_style (c_quoting_style
,
443 muscle_find ("filename")));
455 obstack_1grow (&attrs_obstack
, c
);
465 copy_string (finput
, &attrs_obstack
, c
);
469 copy_comment (finput
, &attrs_obstack
);
473 fatal ("%s", _("unterminated `%{' definition"));
476 obstack_1grow (&attrs_obstack
, c
);
485 obstack_1grow (&attrs_obstack
, '%');
492 /*-------------------------------------------------------------------.
493 | Parse what comes after %token or %nterm. For %token, WHAT_IS is |
494 | token_sym and WHAT_IS_NOT is nterm_sym. For %nterm, the arguments |
496 `-------------------------------------------------------------------*/
499 parse_token_decl (symbol_class what_is
, symbol_class what_is_not
)
501 token_t token
= tok_undef
;
502 char *typename
= NULL
;
504 /* The symbol being defined. */
505 struct bucket
*symbol
= NULL
;
507 /* After `%token' and `%nterm', any number of symbols maybe be
511 int tmp_char
= ungetc (skip_white_space (), finput
);
513 /* `%' (for instance from `%token', or from `%%' etc.) is the
514 only valid means to end this declaration. */
518 fatal (_("Premature EOF after %s"), token_buffer
);
521 if (token
== tok_comma
)
526 if (token
== tok_typename
)
528 typename
= xstrdup (token_buffer
);
529 value_components_used
= 1;
532 else if (token
== tok_identifier
&& *symval
->tag
== '\"' && symbol
)
535 warn (_("symbol `%s' used more than once as a literal string"),
537 else if (symbol
->alias
)
538 warn (_("symbol `%s' given more than one literal string"),
542 symval
->class = token_sym
;
543 symval
->type_name
= typename
;
544 symval
->user_token_number
= symbol
->user_token_number
;
545 symbol
->user_token_number
= SALIAS
;
546 symval
->alias
= symbol
;
547 symbol
->alias
= symval
;
548 /* symbol and symval combined are only one symbol */
553 else if (token
== tok_identifier
)
555 int oldclass
= symval
->class;
558 if (symbol
->class == what_is_not
)
559 complain (_("symbol %s redefined"), symbol
->tag
);
560 symbol
->class = what_is
;
561 if (what_is
== nterm_sym
&& oldclass
!= nterm_sym
)
562 symbol
->number
= nvars
++;
566 if (symbol
->type_name
== NULL
)
567 symbol
->type_name
= typename
;
568 else if (strcmp (typename
, symbol
->type_name
) != 0)
569 complain (_("type redeclaration for %s"), symbol
->tag
);
572 else if (symbol
&& token
== tok_number
)
574 symbol
->user_token_number
= numval
;
575 /* User defined EOF token? */
581 complain (_("`%s' is invalid in %s"),
583 (what_is
== token_sym
) ? "%token" : "%nterm");
591 /*------------------------------.
592 | Parse what comes after %start |
593 `------------------------------*/
596 parse_start_decl (void)
599 complain (_("multiple %s declarations"), "%start");
600 if (lex () != tok_identifier
)
601 complain (_("invalid %s declaration"), "%start");
609 /*-----------------------------------------------------------.
610 | read in a %type declaration and record its information for |
611 | get_type_name to access |
612 `-----------------------------------------------------------*/
615 parse_type_decl (void)
619 if (lex () != tok_typename
)
621 complain ("%s", _("%type declaration has no <typename>"));
626 name
= xstrdup (token_buffer
);
631 int tmp_char
= ungetc (skip_white_space (), finput
);
636 fatal (_("Premature EOF after %s"), token_buffer
);
648 if (symval
->type_name
== NULL
)
649 symval
->type_name
= name
;
650 else if (strcmp (name
, symval
->type_name
) != 0)
651 complain (_("type redeclaration for %s"), symval
->tag
);
656 complain (_("invalid %%type declaration due to item: %s"),
665 /*----------------------------------------------------------------.
666 | Read in a %left, %right or %nonassoc declaration and record its |
668 `----------------------------------------------------------------*/
671 parse_assoc_decl (associativity assoc
)
676 lastprec
++; /* Assign a new precedence level, never 0. */
681 int tmp_char
= ungetc (skip_white_space (), finput
);
686 fatal (_("Premature EOF after %s"), token_buffer
);
693 name
= xstrdup (token_buffer
);
700 if (symval
->prec
!= 0)
701 complain (_("redefining precedence of %s"), symval
->tag
);
702 symval
->prec
= lastprec
;
703 symval
->assoc
= assoc
;
704 if (symval
->class == nterm_sym
)
705 complain (_("symbol %s redefined"), symval
->tag
);
706 symval
->class = token_sym
;
708 { /* record the type, if one is specified */
709 if (symval
->type_name
== NULL
)
710 symval
->type_name
= name
;
711 else if (strcmp (name
, symval
->type_name
) != 0)
712 complain (_("type redeclaration for %s"), symval
->tag
);
717 if (prev
== tok_identifier
)
719 symval
->user_token_number
= numval
;
724 ("invalid text (%s) - number should be after identifier"),
734 complain (_("unexpected item: %s"), token_buffer
);
744 /*--------------------------------------------------------------.
745 | Copy the union declaration into the stype muscle |
746 | (and fdefines), where it is made into the definition of |
747 | YYSTYPE, the type of elements of the parser value stack. |
748 `--------------------------------------------------------------*/
751 parse_union_decl (void)
756 struct obstack union_obstack
;
758 complain (_("multiple %s declarations"), "%union");
762 MUSCLE_INSERT_INT ("stype_line", lineno
);
763 obstack_init (&union_obstack
);
764 obstack_sgrow (&union_obstack
, "union");
770 /* If C contains '/', it is output by copy_comment (). */
772 obstack_1grow (&union_obstack
, c
);
781 copy_comment (finput
, &union_obstack
);
789 /* FIXME: Errr. How could this happen???. --akim */
791 complain (_("unmatched %s"), "`}'");
799 /* JF don't choke on trailing semi */
800 c
= skip_white_space ();
803 obstack_1grow (&union_obstack
, 0);
804 muscle_insert ("stype", obstack_finish (&union_obstack
));
808 /*-------------------------------------------------------.
809 | Parse the declaration %expect N which says to expect N |
810 | shift-reduce conflicts. |
811 `-------------------------------------------------------*/
814 parse_expect_decl (void)
816 int c
= skip_white_space ();
820 complain (_("argument of %%expect is not an integer"));
822 expected_conflicts
= read_signed_integer (finput
);
826 /*-------------------------------------------------------------------.
827 | Parse what comes after %thong. the full syntax is |
829 | %thong <type> token number literal |
831 | the <type> or number may be omitted. The number specifies the |
832 | user_token_number. |
834 | Two symbols are entered in the table, one for the token symbol and |
835 | one for the literal. Both are given the <type>, if any, from the |
836 | declaration. The ->user_token_number of the first is SALIAS and |
837 | the ->user_token_number of the second is set to the number, if |
838 | any, from the declaration. The two symbols are linked via |
839 | pointers in their ->alias fields. |
841 | During OUTPUT_DEFINES_TABLE, the symbol is reported thereafter, |
842 | only the literal string is retained it is the literal string that |
843 | is output to yytname |
844 `-------------------------------------------------------------------*/
847 parse_thong_decl (void)
850 struct bucket
*symbol
;
852 int usrtoknum
= SUNDEF
;
854 token
= lex (); /* fetch typename or first token */
855 if (token
== tok_typename
)
857 typename
= xstrdup (token_buffer
);
858 value_components_used
= 1;
859 token
= lex (); /* fetch first token */
862 /* process first token */
864 if (token
!= tok_identifier
)
866 complain (_("unrecognized item %s, expected an identifier"),
871 symval
->class = token_sym
;
872 symval
->type_name
= typename
;
873 symval
->user_token_number
= SALIAS
;
876 token
= lex (); /* get number or literal string */
878 if (token
== tok_number
)
881 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. */
905 parse_muscle_decl (void)
907 int ch
= ungetc (skip_white_space (), finput
);
912 if (!isalpha (ch
) && ch
!= '_')
914 complain (_("invalid %s declaration"), "%define");
918 copy_identifier (finput
, &muscle_obstack
);
919 obstack_1grow (&muscle_obstack
, 0);
920 muscle_key
= obstack_finish (&muscle_obstack
);
923 ch
= skip_white_space ();
929 complain (_("invalid %s declaration"), "%define");
934 fatal (_("Premature EOF after %s"), "\"");
936 copy_string2 (finput
, &muscle_obstack
, '"', 0);
937 obstack_1grow (&muscle_obstack
, 0);
938 muscle_value
= obstack_finish (&muscle_obstack
);
940 /* Store the (key, value) pair in the environment. */
941 muscle_insert (muscle_key
, muscle_value
);
946 /*---------------------------------.
947 | Parse a double quoted parameter. |
948 `---------------------------------*/
951 parse_dquoted_param (const char *from
)
953 struct obstack param_obstack
;
954 const char *param
= NULL
;
957 obstack_init (¶m_obstack
);
958 c
= skip_white_space ();
962 complain (_("invalid %s declaration"), from
);
968 while ((c
= literalchar ()) != '"')
969 obstack_1grow (¶m_obstack
, c
);
971 obstack_1grow (¶m_obstack
, '\0');
972 param
= obstack_finish (¶m_obstack
);
974 if (c
!= '"' || strlen (param
) == 0)
976 complain (_("invalid %s declaration"), from
);
986 /*----------------------------------.
987 | Parse what comes after %skeleton. |
988 `----------------------------------*/
991 parse_skel_decl (void)
993 skeleton
= parse_dquoted_param ("%skeleton");
996 /*----------------------------------------------------------------.
997 | Read from finput until `%%' is seen. Discard the `%%'. Handle |
998 | any `%' declarations, and copy the contents of any `%{ ... %}' |
999 | groups to ATTRS_OBSTACK. |
1000 `----------------------------------------------------------------*/
1003 read_declarations (void)
1007 int c
= skip_white_space ();
1011 token_t tok
= parse_percent_token ();
1015 case tok_two_percents
:
1018 case tok_percent_left_curly
:
1023 parse_token_decl (token_sym
, nterm_sym
);
1027 parse_token_decl (nterm_sym
, token_sym
);
1035 parse_start_decl ();
1039 parse_union_decl ();
1043 parse_expect_decl ();
1047 parse_thong_decl ();
1051 parse_assoc_decl (left_assoc
);
1055 parse_assoc_decl (right_assoc
);
1059 parse_assoc_decl (non_assoc
);
1063 parse_muscle_decl ();
1081 complain (_("unrecognized: %s"), token_buffer
);
1086 fatal (_("no input grammar"));
1091 complain (_("unknown character: %s"), quote (buf
));
1097 /*-------------------------------------------------------------------.
1098 | Assuming that a `{' has just been seen, copy everything up to the |
1099 | matching `}' into the actions file. STACK_OFFSET is the number of |
1100 | values in the current rule so far, which says where to find `$0' |
1101 | with respect to the top of the stack. |
1103 | This routine is used both for actions and guards. Only |
1104 | ACTION_OBSTACK is used, but this is fine, since we use only |
1105 | pointers to relevant portions inside this obstack. |
1106 `-------------------------------------------------------------------*/
1109 parse_braces (symbol_list
*rule
, int stack_offset
)
1117 while ((c
= getc (finput
)) != '}')
1121 obstack_1grow (&action_obstack
, c
);
1126 obstack_1grow (&action_obstack
, c
);
1132 copy_string (finput
, &action_obstack
, c
);
1136 copy_comment (finput
, &action_obstack
);
1140 copy_dollar (finput
, &action_obstack
,
1141 rule
, stack_offset
);
1145 copy_at (finput
, &action_obstack
,
1150 fatal (_("unmatched %s"), "`{'");
1153 obstack_1grow (&action_obstack
, c
);
1156 /* Above loop exits when C is '}'. */
1158 obstack_1grow (&action_obstack
, c
);
1161 obstack_1grow (&action_obstack
, '\0');
1166 parse_action (symbol_list
*rule
, int stack_offset
)
1168 rule
->action_line
= lineno
;
1169 parse_braces (rule
, stack_offset
);
1170 rule
->action
= obstack_finish (&action_obstack
);
1175 parse_guard (symbol_list
*rule
, int stack_offset
)
1178 if (t
!= tok_left_curly
)
1179 complain (_("invalid %s declaration"), "%guard");
1180 rule
->guard_line
= lineno
;
1181 parse_braces (rule
, stack_offset
);
1182 rule
->guard
= obstack_finish (&action_obstack
);
1187 /*-------------------------------------------------------------------.
1188 | Generate a dummy symbol, a nonterminal, whose name cannot conflict |
1189 | with the user's names. |
1190 `-------------------------------------------------------------------*/
1195 /* Incremented for each generated symbol */
1196 static int gensym_count
= 0;
1197 static char buf
[256];
1201 sprintf (buf
, "@%d", ++gensym_count
);
1203 sym
= getsym (token_buffer
);
1204 sym
->class = nterm_sym
;
1205 sym
->number
= nvars
++;
1209 /*-------------------------------------------------------------------.
1210 | Parse the input grammar into a one symbol_list structure. Each |
1211 | rule is represented by a sequence of symbols: the left hand side |
1212 | followed by the contents of the right hand side, followed by a |
1213 | null pointer instead of a symbol to terminate the rule. The next |
1214 | symbol is the lhs of the following rule. |
1216 | All guards and actions are copied out to the appropriate files, |
1217 | labelled by the rule number they apply to. |
1219 | Bison used to allow some %directives in the rules sections, but |
1220 | this is no longer consider appropriate: (i) the documented grammar |
1221 | doesn't claim it, (ii), it would promote bad style, (iii), error |
1222 | recovery for %directives consists in skipping the junk until a `%' |
1223 | is seen and helrp synchronizing. This scheme is definitely wrong |
1224 | in the rules section. |
1225 `-------------------------------------------------------------------*/
1232 symbol_list
*p
= NULL
;
1233 symbol_list
*p1
= NULL
;
1236 /* Points to first symbol_list of current rule. its symbol is the
1238 symbol_list
*crule
= NULL
;
1239 /* Points to the symbol_list preceding crule. */
1240 symbol_list
*crule1
= NULL
;
1244 while (t
!= tok_two_percents
&& t
!= tok_eof
)
1245 if (t
== tok_identifier
|| t
== tok_bar
)
1247 int action_flag
= 0;
1248 /* Number of symbols in rhs of this rule so far */
1250 int xactions
= 0; /* JF for error checking */
1251 bucket
*first_rhs
= 0;
1253 if (t
== tok_identifier
)
1266 complain (_("ill-formed rule: initial symbol not followed by colon"));
1271 if (nrules
== 0 && t
== tok_bar
)
1273 complain (_("grammar starts with vertical bar"));
1274 lhs
= symval
; /* BOGUS: use a random symval */
1276 /* start a new rule and record its lhs. */
1281 p
= symbol_list_new (lhs
);
1292 /* mark the rule's lhs as a nonterminal if not already so. */
1294 if (lhs
->class == unknown_sym
)
1296 lhs
->class = nterm_sym
;
1297 lhs
->number
= nvars
;
1300 else if (lhs
->class == token_sym
)
1301 complain (_("rule given for %s, which is a token"), lhs
->tag
);
1303 /* read the rhs of the rule. */
1311 crule
->ruleprec
= symval
;
1315 if (!(t
== tok_identifier
|| t
== tok_left_curly
))
1318 /* If next token is an identifier, see if a colon follows it.
1319 If one does, exit this rule now. */
1320 if (t
== tok_identifier
)
1329 if (t1
== tok_colon
)
1331 warn (_("previous rule lacks an ending `;'"));
1335 if (!first_rhs
) /* JF */
1337 /* Not followed by colon =>
1338 process as part of this rule's rhs. */
1341 /* If we just passed an action, that action was in the middle
1342 of a rule, so make a dummy rule to reduce it to a
1346 /* Since the action was written out with this rule's
1347 number, we must give the new rule this number by
1348 inserting the new rule before it. */
1350 /* Make a dummy nonterminal, a gensym. */
1351 bucket
*sdummy
= gensym ();
1353 /* Make a new rule, whose body is empty, before the
1354 current one, so that the action just read can
1358 p
= symbol_list_new (sdummy
);
1359 /* Attach its lineno to that of the host rule. */
1360 p
->line
= crule
->line
;
1361 /* Move the action from the host rule to this one. */
1362 p
->action
= crule
->action
;
1363 p
->action_line
= crule
->action_line
;
1364 crule
->action
= NULL
;
1370 /* End of the rule. */
1371 crule1
= symbol_list_new (NULL
);
1372 crule1
->next
= crule
;
1376 /* Insert the dummy generated by that rule into this
1379 p
= symbol_list_new (sdummy
);
1386 if (t
== tok_identifier
)
1389 p
= symbol_list_new (symval
);
1393 else /* handle an action. */
1395 parse_action (crule
, rulelength
);
1397 xactions
++; /* JF */
1400 } /* end of read rhs of rule */
1402 /* Put an empty link in the list to mark the end of this rule */
1403 p
= symbol_list_new (NULL
);
1409 complain (_("two @prec's in a row"));
1411 crule
->ruleprec
= symval
;
1417 if (!semantic_parser
)
1418 complain (_("%%guard present but %%semantic_parser not specified"));
1420 parse_guard (crule
, rulelength
);
1424 if (t
== tok_left_curly
)
1426 /* This case never occurs -wjh */
1428 complain (_("two actions at end of one rule"));
1429 parse_action (crule
, rulelength
);
1431 xactions
++; /* -wjh */
1434 /* If $$ is being set in default way, report if any type
1437 && first_rhs
&& lhs
->type_name
!= first_rhs
->type_name
)
1439 if (lhs
->type_name
== 0
1440 || first_rhs
->type_name
== 0
1441 || strcmp (lhs
->type_name
, first_rhs
->type_name
))
1442 complain (_("type clash (`%s' `%s') on default action"),
1443 lhs
->type_name
? lhs
->type_name
: "",
1444 first_rhs
->type_name
? first_rhs
->type_name
: "");
1446 /* Warn if there is no default for $$ but we need one. */
1447 else if (!xactions
&& !first_rhs
&& lhs
->type_name
!= 0)
1448 complain (_("empty rule for typed nonterminal, and no action"));
1449 if (t
== tok_two_percents
|| t
== tok_eof
)
1450 warn (_("previous rule lacks an ending `;'"));
1451 if (t
== tok_semicolon
)
1456 complain (_("invalid input: %s"), quote (token_buffer
));
1460 /* grammar has been read. Do some checking */
1463 fatal (_("no rules in the input grammar"));
1465 /* Report any undefined symbols and consider them nonterminals. */
1467 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1468 if (bp
->class == unknown_sym
)
1471 ("symbol %s is used, but is not defined as a token and has no rules"),
1473 bp
->class = nterm_sym
;
1474 bp
->number
= nvars
++;
1477 /* Insert the initial rule, which line is that of the first rule
1478 (not that of the start symbol):
1480 axiom: %start EOF. */
1481 p
= symbol_list_new (axiom
);
1482 p
->line
= grammar
->line
;
1483 p
->next
= symbol_list_new (startval
);
1484 p
->next
->next
= symbol_list_new (eoftoken
);
1485 p
->next
->next
->next
= symbol_list_new (NULL
);
1486 p
->next
->next
->next
->next
= grammar
;
1492 if (nsyms
> MAXSHORT
)
1493 fatal (_("too many symbols (tokens plus nonterminals); maximum %d"),
1496 ntokens
= nsyms
- nvars
;
1499 /* At the end of the grammar file, some C source code must
1500 be stored. It is going to be associated to the epilogue
1503 read_additionnal_code (void)
1506 struct obstack el_obstack
;
1508 obstack_init (&el_obstack
);
1512 obstack_fgrow2 (&el_obstack
, muscle_find ("linef"),
1513 lineno
, quotearg_style (c_quoting_style
,
1514 muscle_find ("filename")));
1517 while ((c
= getc (finput
)) != EOF
)
1518 obstack_1grow (&el_obstack
, c
);
1520 obstack_1grow (&el_obstack
, 0);
1521 muscle_insert ("epilogue", obstack_finish (&el_obstack
));
1525 /*------------------------------------------------------------------.
1526 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
1528 `------------------------------------------------------------------*/
1531 token_translations_init (void)
1536 token_translations
= XCALLOC (short, max_user_token_number
+ 1);
1538 /* Initialize all entries for literal tokens to 2, the internal
1539 token number for $undefined., which represents all invalid
1541 for (i
= 0; i
< max_user_token_number
+ 1; i
++)
1542 token_translations
[i
] = 2;
1544 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1547 if (bp
->number
>= ntokens
)
1549 /* A token string alias? */
1550 if (bp
->user_token_number
== SALIAS
)
1553 assert (bp
->user_token_number
!= SUNDEF
);
1555 /* A token which translation has already been set? */
1556 if (token_translations
[bp
->user_token_number
] != 2)
1557 complain (_("tokens %s and %s both assigned number %d"),
1558 symbols
[token_translations
[bp
->user_token_number
]]->tag
,
1559 bp
->tag
, bp
->user_token_number
);
1560 token_translations
[bp
->user_token_number
] = bp
->number
;
1565 /*----------------------------------------------------------------.
1566 | Assign symbol numbers, and write definition of token names into |
1567 | FDEFINES. Set up vectors SYMBOL_TABLE, TAGS of symbols. |
1568 `----------------------------------------------------------------*/
1575 int last_user_token_number
;
1577 symbols
= XCALLOC (bucket
*, nsyms
);
1579 max_user_token_number
= 256;
1580 last_user_token_number
= 256;
1582 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1584 if (bp
->class == nterm_sym
)
1586 bp
->number
+= ntokens
;
1590 /* This symbol and its alias are a single token defn.
1591 Allocate a tokno, and assign to both check agreement of
1592 prec and assoc fields and make both the same */
1593 if (bp
->number
== -1)
1595 if (bp
== eoftoken
|| bp
->alias
== eoftoken
)
1596 bp
->number
= bp
->alias
->number
= 0;
1599 bp
->number
= bp
->alias
->number
= tokno
++;
1603 if (bp
->prec
!= bp
->alias
->prec
)
1605 if (bp
->prec
!= 0 && bp
->alias
->prec
!= 0
1606 && bp
->user_token_number
== SALIAS
)
1607 complain (_("conflicting precedences for %s and %s"),
1608 bp
->tag
, bp
->alias
->tag
);
1610 bp
->alias
->prec
= bp
->prec
;
1612 bp
->prec
= bp
->alias
->prec
;
1615 if (bp
->assoc
!= bp
->alias
->assoc
)
1617 if (bp
->assoc
!= 0 && bp
->alias
->assoc
!= 0
1618 && bp
->user_token_number
== SALIAS
)
1619 complain (_("conflicting assoc values for %s and %s"),
1620 bp
->tag
, bp
->alias
->tag
);
1622 bp
->alias
->assoc
= bp
->assoc
;
1624 bp
->assoc
= bp
->alias
->assoc
;
1627 /* Do not do processing below for SALIASs. */
1628 if (bp
->user_token_number
== SALIAS
)
1632 else /* bp->class == token_sym */
1637 bp
->number
= tokno
++;
1640 if (bp
->class == token_sym
)
1642 if (bp
->user_token_number
== SUNDEF
)
1643 bp
->user_token_number
= ++last_user_token_number
;
1644 if (bp
->user_token_number
> max_user_token_number
)
1645 max_user_token_number
= bp
->user_token_number
;
1648 symbols
[bp
->number
] = bp
;
1651 token_translations_init ();
1653 error_token_number
= errtoken
->number
;
1655 if (startval
->class == unknown_sym
)
1656 fatal (_("the start symbol %s is undefined"), startval
->tag
);
1657 else if (startval
->class == token_sym
)
1658 fatal (_("the start symbol %s is a token"), startval
->tag
);
1660 start_symbol
= startval
->number
;
1664 /*---------------------------------------------------------------.
1665 | Convert the rules into the representation using RRHS, RLHS and |
1667 `---------------------------------------------------------------*/
1676 /* We use short to index items. */
1677 if (nitems
>= MAXSHORT
)
1678 fatal (_("too many items (max %d)"), MAXSHORT
);
1680 ritem
= XCALLOC (short, nitems
+ 1);
1681 rules
= XCALLOC (rule_t
, nrules
) - 1;
1689 bucket
*ruleprec
= p
->ruleprec
;
1690 rules
[ruleno
].user_number
= ruleno
;
1691 rules
[ruleno
].number
= ruleno
;
1692 rules
[ruleno
].lhs
= p
->sym
;
1693 rules
[ruleno
].rhs
= ritem
+ itemno
;
1694 rules
[ruleno
].line
= p
->line
;
1695 rules
[ruleno
].useful
= TRUE
;
1696 rules
[ruleno
].action
= p
->action
;
1697 rules
[ruleno
].action_line
= p
->action_line
;
1698 rules
[ruleno
].guard
= p
->guard
;
1699 rules
[ruleno
].guard_line
= p
->guard_line
;
1704 ritem
[itemno
++] = p
->sym
->number
;
1705 /* A rule gets by default the precedence and associativity
1706 of the last token in it. */
1707 if (p
->sym
->class == token_sym
)
1708 rules
[ruleno
].prec
= p
->sym
;
1713 /* If this rule has a %prec,
1714 the specified symbol's precedence replaces the default. */
1717 rules
[ruleno
].precsym
= ruleprec
;
1718 rules
[ruleno
].prec
= ruleprec
;
1720 ritem
[itemno
++] = -ruleno
;
1729 assert (nritems
== nitems
);
1732 ritem_print (stderr
);
1735 /*-------------------------------------------------------------------.
1736 | Read in the grammar specification and record it in the format |
1737 | described in gram.h. All guards are copied into the GUARD_OBSTACK |
1738 | and all actions into ACTION_OBSTACK, in each case forming the body |
1739 | of a C function (YYGUARD or YYACTION) which contains a switch |
1740 | statement to decide which guard or action to execute. |
1741 `-------------------------------------------------------------------*/
1749 /* Initialize the muscle obstack. */
1750 obstack_init (&muscle_obstack
);
1752 /* Initialize the symbol table. */
1755 /* Construct the axiom symbol. */
1756 axiom
= getsym ("$axiom");
1757 axiom
->class = nterm_sym
;
1758 axiom
->number
= nvars
++;
1760 /* Construct the error token */
1761 errtoken
= getsym ("error");
1762 errtoken
->class = token_sym
;
1763 errtoken
->user_token_number
= 256; /* Value specified by POSIX. */
1765 /* Construct a token that represents all undefined literal tokens.
1766 It is always token number 2. */
1767 undeftoken
= getsym ("$undefined.");
1768 undeftoken
->class = token_sym
;
1769 undeftoken
->user_token_number
= 2;
1771 /* Initialize the obstacks. */
1772 obstack_init (&action_obstack
);
1773 obstack_init (&attrs_obstack
);
1774 obstack_init (&output_obstack
);
1776 finput
= xfopen (infile
, "r");
1778 /* Read the declaration section. Copy %{ ... %} groups to
1779 TABLE_OBSTACK and FDEFINES file. Also notice any %token, %left,
1780 etc. found there. */
1781 read_declarations ();
1783 /* If the user did not define her EOFTOKEN, do it now. */
1786 eoftoken
= getsym ("$");
1787 eoftoken
->class = token_sym
;
1788 /* Value specified by POSIX. */
1789 eoftoken
->user_token_number
= 0;
1792 /* Read in the grammar, build grammar in list form. Write out
1793 guards and actions. */
1795 /* Some C code is given at the end of the grammar file. */
1796 read_additionnal_code ();
1801 /* Assign the symbols their symbol numbers. Write #defines for the
1802 token symbols into FDEFINES if requested. */
1805 /* Convert the grammar into the format described in gram.h. */
1808 /* The grammar as a symbol_list is no longer needed. */
1809 LIST_FREE (symbol_list
, grammar
);
1817 /* Free the symbol table data structure. */