]>
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. */
36 #include "conflicts.h"
37 #include "muscle_tab.h"
39 typedef struct symbol_list
41 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
;
70 symbol_list_new (bucket
*sym
)
72 symbol_list
*res
= XMALLOC (symbol_list
, 1);
82 /*===================\
84 \===================*/
87 skip_to_char (int target
)
91 complain (_(" Skipping to next \\n"));
93 complain (_(" Skipping to next %c"), target
);
96 c
= skip_white_space ();
97 while (c
!= target
&& c
!= EOF
);
103 /*---------------------------------------------------------.
104 | Read a signed integer from STREAM and return its value. |
105 `---------------------------------------------------------*/
108 read_signed_integer (FILE *stream
)
110 int c
= getc (stream
);
122 n
= 10 * n
+ (c
- '0');
131 /*--------------------------------------------------------------.
132 | Get the data type (alternative in the union) of the value for |
133 | symbol N in rule RULE. |
134 `--------------------------------------------------------------*/
137 get_type_name (int n
, symbol_list
*rule
)
144 complain (_("invalid $ value"));
154 if (rp
== NULL
|| rp
->sym
== NULL
)
156 complain (_("invalid $ value"));
162 return rp
->sym
->type_name
;
165 /*------------------------------------------------------------.
166 | Dump the string from FIN to OOUT if non null. MATCH is the |
167 | delimiter of the string (either ' or "). |
168 `------------------------------------------------------------*/
171 copy_string2 (FILE *fin
, struct obstack
*oout
, int match
, int store
)
176 obstack_1grow (oout
, match
);
183 fatal (_("unterminated string at end of file"));
186 complain (_("unterminated string"));
188 c
= match
; /* invent terminator */
192 obstack_1grow (oout
, c
);
198 fatal (_("unterminated string at end of file"));
199 obstack_1grow (oout
, c
);
209 obstack_1grow (oout
, c
);
215 copy_string (FILE *fin
, struct obstack
*oout
, int match
)
217 copy_string2 (fin
, oout
, match
, 1);
223 copy_identifier (FILE *fin
, struct obstack
*oout
)
227 while (isalnum (c
= getc (fin
)) || c
== '_')
228 obstack_1grow (oout
, c
);
233 /*-----------------------------------------------------------------.
234 | Dump the wannabee comment from IN to OUT1 and OUT2 (which can be |
235 | NULL). In fact we just saw a `/', which might or might not be a |
236 | comment. In any case, copy what we saw. |
238 | OUT2 might be NULL. |
239 `-----------------------------------------------------------------*/
242 copy_comment2 (FILE *fin
, struct obstack
*oout1
, struct obstack
*oout2
)
248 /* We read a `/', output it. */
249 obstack_1grow (oout1
, '/');
251 obstack_1grow (oout2
, '/');
253 switch ((c
= getc (fin
)))
266 obstack_1grow (oout1
, c
);
268 obstack_1grow (oout2
, c
);
274 if (!cplus_comment
&& c
== '*')
278 obstack_1grow (oout1
, c
);
280 obstack_1grow (oout2
, c
);
286 obstack_1grow (oout1
, c
);
288 obstack_1grow (oout2
, c
);
295 obstack_1grow (oout1
, c
);
297 obstack_1grow (oout2
, c
);
304 fatal (_("unterminated comment"));
307 obstack_1grow (oout1
, c
);
309 obstack_1grow (oout2
, c
);
316 /*-------------------------------------------------------------------.
317 | Dump the comment (actually the current string starting with a `/') |
318 | from FIN to OOUT. |
319 `-------------------------------------------------------------------*/
322 copy_comment (FILE *fin
, struct obstack
*oout
)
324 copy_comment2 (fin
, oout
, NULL
);
328 /*-----------------------------------------------------------------.
329 | FIN is pointing to a location (i.e., a `@'). Output to OOUT a |
330 | reference to this location. STACK_OFFSET is the number of values |
331 | in the current rule so far, which says where to find `$0' with |
332 | respect to the top of the stack. |
333 `-----------------------------------------------------------------*/
336 copy_at (FILE *fin
, struct obstack
*oout
, int stack_offset
)
343 obstack_sgrow (oout
, "yyloc");
346 else if (isdigit (c
) || c
== '-')
351 n
= read_signed_integer (fin
);
353 obstack_fgrow1 (oout
, "yylsp[%d]", n
- stack_offset
);
360 complain (_("%s is invalid"), quote (buf
));
365 /*-------------------------------------------------------------------.
366 | FIN is pointing to a wannabee semantic value (i.e., a `$'). |
368 | Possible inputs: $[<TYPENAME>]($|integer) |
370 | Output to OOUT a reference to this semantic value. STACK_OFFSET is |
371 | the number of values in the current rule so far, which says where |
372 | to find `$0' with respect to the top of the stack. |
373 `-------------------------------------------------------------------*/
376 copy_dollar (FILE *fin
, struct obstack
*oout
,
377 symbol_list
*rule
, int stack_offset
)
380 const char *type_name
= NULL
;
382 /* Get the type name if explicit. */
385 read_type_name (fin
);
386 type_name
= token_buffer
;
387 value_components_used
= 1;
393 obstack_sgrow (oout
, "yyval");
396 type_name
= get_type_name (0, rule
);
398 obstack_fgrow1 (oout
, ".%s", type_name
);
399 if (!type_name
&& typed
)
400 complain (_("$$ of `%s' has no declared type"),
403 else if (isdigit (c
) || c
== '-')
407 n
= read_signed_integer (fin
);
409 if (!type_name
&& n
> 0)
410 type_name
= get_type_name (n
, rule
);
412 obstack_fgrow1 (oout
, "yyvsp[%d]", n
- stack_offset
);
415 obstack_fgrow1 (oout
, ".%s", type_name
);
416 if (!type_name
&& typed
)
417 complain (_("$%d of `%s' has no declared type"),
424 complain (_("%s is invalid"), quote (buf
));
428 /*-------------------------------------------------------------------.
429 | Copy the contents of a `%{ ... %}' into the definitions file. The |
430 | `%{' has already been read. Return after reading the `%}'. |
431 `-------------------------------------------------------------------*/
434 copy_definition (void)
437 /* -1 while reading a character if prev char was %. */
443 obstack_fgrow2 (&attrs_obstack
, muscle_find ("linef"),
444 lineno
, quotearg_style (c_quoting_style
,
445 muscle_find("filename")));
458 obstack_1grow (&attrs_obstack
, c
);
468 copy_string (finput
, &attrs_obstack
, c
);
472 copy_comment (finput
, &attrs_obstack
);
476 fatal ("%s", _("unterminated `%{' definition"));
479 obstack_1grow (&attrs_obstack
, c
);
488 obstack_1grow (&attrs_obstack
, '%');
495 /*-------------------------------------------------------------------.
496 | Parse what comes after %token or %nterm. For %token, WHAT_IS is |
497 | token_sym and WHAT_IS_NOT is nterm_sym. For %nterm, the arguments |
499 `-------------------------------------------------------------------*/
502 parse_token_decl (symbol_class what_is
, symbol_class what_is_not
)
504 token_t token
= tok_undef
;
505 char *typename
= NULL
;
507 /* The symbol being defined. */
508 struct bucket
*symbol
= NULL
;
510 /* After `%token' and `%nterm', any number of symbols maybe be
514 int tmp_char
= ungetc (skip_white_space (), finput
);
516 /* `%' (for instance from `%token', or from `%%' etc.) is the
517 only valid means to end this declaration. */
521 fatal (_("Premature EOF after %s"), token_buffer
);
524 if (token
== tok_comma
)
529 if (token
== tok_typename
)
531 typename
= xstrdup (token_buffer
);
532 value_components_used
= 1;
535 else if (token
== tok_identifier
&& *symval
->tag
== '\"' && symbol
)
538 warn (_("symbol `%s' used more than once as a literal string"),
540 else if (symbol
->alias
)
541 warn (_("symbol `%s' given more than one literal string"),
545 symval
->class = token_sym
;
546 symval
->type_name
= typename
;
547 symval
->user_token_number
= symbol
->user_token_number
;
548 symbol
->user_token_number
= SALIAS
;
549 symval
->alias
= symbol
;
550 symbol
->alias
= symval
;
551 /* symbol and symval combined are only one symbol */
556 else if (token
== tok_identifier
)
558 int oldclass
= symval
->class;
561 if (symbol
->class == what_is_not
)
562 complain (_("symbol %s redefined"), symbol
->tag
);
563 symbol
->class = what_is
;
564 if (what_is
== nterm_sym
&& oldclass
!= nterm_sym
)
565 symbol
->value
= nvars
++;
569 if (symbol
->type_name
== NULL
)
570 symbol
->type_name
= typename
;
571 else if (strcmp (typename
, symbol
->type_name
) != 0)
572 complain (_("type redeclaration for %s"), symbol
->tag
);
575 else if (symbol
&& token
== tok_number
)
577 symbol
->user_token_number
= numval
;
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)
755 struct obstack union_obstack
;
756 const char *prologue
= "\
759 const char *epilogue
= "\
761 # define YYSTYPE yystype\n\
765 complain (_("multiple %s declarations"), "%union");
769 /* FIXME: I'm worried: are you sure attrs_obstack is properly
771 /* I don't see any reasons to keep this line, because we should
772 create a special skeleton for this option. */
774 obstack_1grow (&attrs_obstack
, '\n');
776 obstack_init (&union_obstack
);
777 obstack_sgrow (&union_obstack
, "union");
779 obstack_sgrow (&defines_obstack
, prologue
);
785 /* If C contains '/', it is output by copy_comment (). */
788 obstack_1grow (&union_obstack
, c
);
790 obstack_1grow (&defines_obstack
, c
);
800 copy_comment2 (finput
, &defines_obstack
, &union_obstack
);
809 complain (_("unmatched %s"), "`}'");
814 obstack_sgrow (&defines_obstack
, epilogue
);
815 /* JF don't choke on trailing semi */
816 c
= skip_white_space ();
819 obstack_1grow (&union_obstack
, 0);
820 muscle_insert ("stype", obstack_finish (&union_obstack
));
831 /*-------------------------------------------------------.
832 | Parse the declaration %expect N which says to expect N |
833 | shift-reduce conflicts. |
834 `-------------------------------------------------------*/
837 parse_expect_decl (void)
839 int c
= skip_white_space ();
843 complain (_("argument of %%expect is not an integer"));
845 expected_conflicts
= read_signed_integer (finput
);
849 /*-------------------------------------------------------------------.
850 | Parse what comes after %thong. the full syntax is |
852 | %thong <type> token number literal |
854 | the <type> or number may be omitted. The number specifies the |
855 | user_token_number. |
857 | Two symbols are entered in the table, one for the token symbol and |
858 | one for the literal. Both are given the <type>, if any, from the |
859 | declaration. The ->user_token_number of the first is SALIAS and |
860 | the ->user_token_number of the second is set to the number, if |
861 | any, from the declaration. The two symbols are linked via |
862 | pointers in their ->alias fields. |
864 | During OUTPUT_DEFINES_TABLE, the symbol is reported thereafter, |
865 | only the literal string is retained it is the literal string that |
866 | is output to yytname |
867 `-------------------------------------------------------------------*/
870 parse_thong_decl (void)
873 struct bucket
*symbol
;
875 int usrtoknum
= SUNDEF
;
877 token
= lex (); /* fetch typename or first token */
878 if (token
== tok_typename
)
880 typename
= xstrdup (token_buffer
);
881 value_components_used
= 1;
882 token
= lex (); /* fetch first token */
885 /* process first token */
887 if (token
!= tok_identifier
)
889 complain (_("unrecognized item %s, expected an identifier"),
894 symval
->class = token_sym
;
895 symval
->type_name
= typename
;
896 symval
->user_token_number
= SALIAS
;
899 token
= lex (); /* get number or literal string */
901 if (token
== tok_number
)
904 token
= lex (); /* okay, did number, now get literal */
907 /* process literal string token */
909 if (token
!= tok_identifier
|| *symval
->tag
!= '\"')
911 complain (_("expected string constant instead of %s"), token_buffer
);
915 symval
->class = token_sym
;
916 symval
->type_name
= typename
;
917 symval
->user_token_number
= usrtoknum
;
919 symval
->alias
= symbol
;
920 symbol
->alias
= symval
;
922 /* symbol and symval combined are only one symbol. */
927 parse_muscle_decl (void)
929 int ch
= ungetc (skip_white_space (), finput
);
934 if (!isalpha (ch
) && ch
!= '_')
936 complain (_("invalid %s declaration"), "%define");
940 copy_identifier (finput
, &muscle_obstack
);
941 obstack_1grow (&muscle_obstack
, 0);
942 muscle_key
= obstack_finish (&muscle_obstack
);
945 ch
= skip_white_space ();
951 complain (_("invalid %s declaration"), "%define");
956 fatal (_("Premature EOF after %s"), "\"");
958 copy_string2 (finput
, &muscle_obstack
, '"', 0);
959 obstack_1grow (&muscle_obstack
, 0);
960 muscle_value
= obstack_finish (&muscle_obstack
);
962 /* Store the (key, value) pair in the environment. */
963 muscle_insert (muscle_key
, muscle_value
);
967 /*----------------------------------.
968 | Parse what comes after %skeleton. |
969 `----------------------------------*/
972 parse_skel_decl (void)
974 /* Complete with parse_dquoted_param () on the CVS branch 1.29. */
977 /*----------------------------------------------------------------.
978 | Read from finput until `%%' is seen. Discard the `%%'. Handle |
979 | any `%' declarations, and copy the contents of any `%{ ... %}' |
980 | groups to ATTRS_OBSTACK. |
981 `----------------------------------------------------------------*/
984 read_declarations (void)
988 int c
= skip_white_space ();
992 token_t tok
= parse_percent_token ();
996 case tok_two_percents
:
999 case tok_percent_left_curly
:
1004 parse_token_decl (token_sym
, nterm_sym
);
1008 parse_token_decl (nterm_sym
, token_sym
);
1016 parse_start_decl ();
1020 parse_union_decl ();
1024 parse_expect_decl ();
1028 parse_thong_decl ();
1032 parse_assoc_decl (left_assoc
);
1036 parse_assoc_decl (right_assoc
);
1040 parse_assoc_decl (non_assoc
);
1044 parse_muscle_decl ();
1062 complain (_("unrecognized: %s"), token_buffer
);
1067 fatal (_("no input grammar"));
1072 complain (_("unknown character: %s"), quote (buf
));
1078 /*-------------------------------------------------------------------.
1079 | Assuming that a `{' has just been seen, copy everything up to the |
1080 | matching `}' into the actions file. STACK_OFFSET is the number of |
1081 | values in the current rule so far, which says where to find `$0' |
1082 | with respect to the top of the stack. |
1083 `-------------------------------------------------------------------*/
1086 copy_action (symbol_list
*rule
, int stack_offset
)
1092 /* offset is always 0 if parser has already popped the stack pointer */
1093 if (semantic_parser
)
1096 obstack_fgrow1 (&action_obstack
, "\ncase %d:\n", nrules
);
1100 obstack_fgrow2 (&action_obstack
, muscle_find ("linef"),
1101 lineno
, quotearg_style (c_quoting_style
,
1102 muscle_find ("filename")));
1104 obstack_1grow (&action_obstack
, '{');
1116 obstack_1grow (&action_obstack
, c
);
1121 obstack_1grow (&action_obstack
, c
);
1127 copy_string (finput
, &action_obstack
, c
);
1131 copy_comment (finput
, &action_obstack
);
1135 copy_dollar (finput
, &action_obstack
,
1136 rule
, stack_offset
);
1140 copy_at (finput
, &action_obstack
,
1145 fatal (_("unmatched %s"), "`{'");
1148 obstack_1grow (&action_obstack
, c
);
1154 /* above loop exits when c is '}' */
1158 obstack_1grow (&action_obstack
, c
);
1163 obstack_sgrow (&action_obstack
, ";\n break;}");
1166 /*-------------------------------------------------------------------.
1167 | After `%guard' is seen in the input file, copy the actual guard |
1168 | into the guards file. If the guard is followed by an action, copy |
1169 | that into the actions file. STACK_OFFSET is the number of values |
1170 | in the current rule so far, which says where to find `$0' with |
1171 | respect to the top of the stack, for the simple parser in which |
1172 | the stack is not popped until after the guard is run. |
1173 `-------------------------------------------------------------------*/
1176 copy_guard (symbol_list
*rule
, int stack_offset
)
1182 /* offset is always 0 if parser has already popped the stack pointer */
1183 if (semantic_parser
)
1186 obstack_fgrow1 (&guard_obstack
, "\ncase %d:\n", nrules
);
1188 obstack_fgrow2 (&guard_obstack
, muscle_find ("linef"),
1189 lineno
, quotearg_style (c_quoting_style
,
1190 muscle_find ("filename")));
1191 obstack_1grow (&guard_obstack
, '{');
1196 while (brace_flag
? (count
> 0) : (c
!= ';'))
1201 obstack_1grow (&guard_obstack
, c
);
1206 obstack_1grow (&guard_obstack
, c
);
1212 obstack_1grow (&guard_obstack
, c
);
1217 complain (_("unmatched %s"), "`}'");
1218 c
= getc (finput
); /* skip it */
1224 copy_string (finput
, &guard_obstack
, c
);
1228 copy_comment (finput
, &guard_obstack
);
1232 copy_dollar (finput
, &guard_obstack
, rule
, stack_offset
);
1236 copy_at (finput
, &guard_obstack
, stack_offset
);
1240 fatal ("%s", _("unterminated %guard clause"));
1243 obstack_1grow (&guard_obstack
, c
);
1246 if (c
!= '}' || count
!= 0)
1250 c
= skip_white_space ();
1252 obstack_sgrow (&guard_obstack
, ";\n break;}");
1254 copy_action (rule
, stack_offset
);
1257 c
= getc (finput
); /* why not skip_white_space -wjh */
1259 copy_action (rule
, stack_offset
);
1266 /*-------------------------------------------------------------------.
1267 | Generate a dummy symbol, a nonterminal, whose name cannot conflict |
1268 | with the user's names. |
1269 `-------------------------------------------------------------------*/
1274 /* Incremented for each generated symbol */
1275 static int gensym_count
= 0;
1276 static char buf
[256];
1280 sprintf (buf
, "@%d", ++gensym_count
);
1282 sym
= getsym (token_buffer
);
1283 sym
->class = nterm_sym
;
1284 sym
->value
= nvars
++;
1289 /*------------------------------------------------------------------.
1290 | read in a %type declaration and record its information for |
1291 | get_type_name to access. This is unused. It is only called from |
1292 | the #if 0 part of readgram |
1293 `------------------------------------------------------------------*/
1304 if (token
!= tok_typename
)
1306 complain (_("invalid %s declaration"), "%type");
1310 name
= xstrdup (token_buffer
);
1324 case tok_identifier
:
1325 if (symval
->type_name
== NULL
)
1326 symval
->type_name
= name
;
1327 else if (strcmp (name
, symval
->type_name
) != 0)
1328 complain (_("type redeclaration for %s"), symval
->tag
);
1340 /*------------------------------------------------------------------.
1341 | Parse the input grammar into a one symbol_list structure. Each |
1342 | rule is represented by a sequence of symbols: the left hand side |
1343 | followed by the contents of the right hand side, followed by a |
1344 | null pointer instead of a symbol to terminate the rule. The next |
1345 | symbol is the lhs of the following rule. |
1347 | All guards and actions are copied out to the appropriate files, |
1348 | labelled by the rule number they apply to. |
1349 `------------------------------------------------------------------*/
1360 /* Points to first symbol_list of current rule. its symbol is the
1363 /* Points to the symbol_list preceding crule. */
1364 symbol_list
*crule1
;
1370 while (t
!= tok_two_percents
&& t
!= tok_eof
)
1372 if (t
== tok_identifier
|| t
== tok_bar
)
1374 int action_flag
= 0;
1375 /* Number of symbols in rhs of this rule so far */
1377 int xactions
= 0; /* JF for error checking */
1378 bucket
*first_rhs
= 0;
1380 if (t
== tok_identifier
)
1393 complain (_("ill-formed rule: initial symbol not followed by colon"));
1398 if (nrules
== 0 && t
== tok_bar
)
1400 complain (_("grammar starts with vertical bar"));
1401 lhs
= symval
; /* BOGUS: use a random symval */
1403 /* start a new rule and record its lhs. */
1408 p
= symbol_list_new (lhs
);
1419 /* mark the rule's lhs as a nonterminal if not already so. */
1421 if (lhs
->class == unknown_sym
)
1423 lhs
->class = nterm_sym
;
1427 else if (lhs
->class == token_sym
)
1428 complain (_("rule given for %s, which is a token"), lhs
->tag
);
1430 /* read the rhs of the rule. */
1438 crule
->ruleprec
= symval
;
1442 if (!(t
== tok_identifier
|| t
== tok_left_curly
))
1445 /* If next token is an identifier, see if a colon follows it.
1446 If one does, exit this rule now. */
1447 if (t
== tok_identifier
)
1456 if (t1
== tok_colon
)
1459 if (!first_rhs
) /* JF */
1461 /* Not followed by colon =>
1462 process as part of this rule's rhs. */
1465 /* If we just passed an action, that action was in the middle
1466 of a rule, so make a dummy rule to reduce it to a
1470 /* Since the action was written out with this rule's
1471 number, we must give the new rule this number by
1472 inserting the new rule before it. */
1474 /* Make a dummy nonterminal, a gensym. */
1475 bucket
*sdummy
= gensym ();
1477 /* Make a new rule, whose body is empty, before the
1478 current one, so that the action just read can
1482 p
= symbol_list_new (sdummy
);
1483 /* Attach its lineno to that of the host rule. */
1484 p
->line
= crule
->line
;
1489 /* End of the rule. */
1490 crule1
= symbol_list_new (NULL
);
1491 crule1
->next
= crule
;
1495 /* Insert the dummy generated by that rule into this
1498 p
= symbol_list_new (sdummy
);
1505 if (t
== tok_identifier
)
1508 p
= symbol_list_new (symval
);
1512 else /* handle an action. */
1514 copy_action (crule
, rulelength
);
1516 xactions
++; /* JF */
1519 } /* end of read rhs of rule */
1521 /* Put an empty link in the list to mark the end of this rule */
1522 p
= symbol_list_new (NULL
);
1528 complain (_("two @prec's in a row"));
1530 crule
->ruleprec
= symval
;
1535 if (!semantic_parser
)
1536 complain (_("%%guard present but %%semantic_parser not specified"));
1538 copy_guard (crule
, rulelength
);
1541 else if (t
== tok_left_curly
)
1543 /* This case never occurs -wjh */
1545 complain (_("two actions at end of one rule"));
1546 copy_action (crule
, rulelength
);
1548 xactions
++; /* -wjh */
1551 /* If $$ is being set in default way, report if any type
1554 && first_rhs
&& lhs
->type_name
!= first_rhs
->type_name
)
1556 if (lhs
->type_name
== 0
1557 || first_rhs
->type_name
== 0
1558 || strcmp (lhs
->type_name
, first_rhs
->type_name
))
1559 complain (_("type clash (`%s' `%s') on default action"),
1560 lhs
->type_name
? lhs
->type_name
: "",
1561 first_rhs
->type_name
? first_rhs
->type_name
: "");
1563 /* Warn if there is no default for $$ but we need one. */
1564 else if (!xactions
&& !first_rhs
&& lhs
->type_name
!= 0)
1565 complain (_("empty rule for typed nonterminal, and no action"));
1566 if (t
== tok_semicolon
)
1570 /* these things can appear as alternatives to rules. */
1572 a) none of the documentation allows them
1573 b) most of them scan forward until finding a next %
1574 thus they may swallow lots of intervening rules
1576 else if (t
== tok_token
)
1578 parse_token_decl (token_sym
, nterm_sym
);
1581 else if (t
== tok_nterm
)
1583 parse_token_decl (nterm_sym
, token_sym
);
1586 else if (t
== tok_type
)
1590 else if (t
== tok_union
)
1592 parse_union_decl ();
1595 else if (t
== tok_expect
)
1597 parse_expect_decl ();
1600 else if (t
== tok_start
)
1602 parse_start_decl ();
1609 complain (_("invalid input: %s"), quote (token_buffer
));
1614 /* grammar has been read. Do some checking */
1616 if (nsyms
> MAXSHORT
)
1617 fatal (_("too many symbols (tokens plus nonterminals); maximum %d"),
1620 fatal (_("no rules in the input grammar"));
1622 /* Report any undefined symbols and consider them nonterminals. */
1624 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1625 if (bp
->class == unknown_sym
)
1628 ("symbol %s is used, but is not defined as a token and has no rules"),
1630 bp
->class = nterm_sym
;
1631 bp
->value
= nvars
++;
1634 ntokens
= nsyms
- nvars
;
1637 /* At the end of the grammar file, some C source code must
1638 be stored. It is going to be associated to the epilogue
1641 read_additionnal_code (void)
1644 struct obstack el_obstack
;
1646 obstack_init (&el_obstack
);
1648 while ((c
= getc (finput
)) != EOF
)
1649 obstack_1grow (&el_obstack
, c
);
1651 obstack_1grow (&el_obstack
, 0);
1652 muscle_insert ("epilogue", obstack_finish (&el_obstack
));
1656 /*--------------------------------------------------------------.
1657 | For named tokens, but not literal ones, define the name. The |
1658 | value is the user token number. |
1659 `--------------------------------------------------------------*/
1662 output_token_defines (struct obstack
*oout
)
1668 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1670 symbol
= bp
->tag
; /* get symbol */
1672 if (bp
->value
>= ntokens
)
1674 if (bp
->user_token_number
== SALIAS
)
1676 if ('\'' == *symbol
)
1677 continue; /* skip literal character */
1679 continue; /* skip error token */
1680 if ('\"' == *symbol
)
1682 /* use literal string only if given a symbol with an alias */
1684 symbol
= bp
->alias
->tag
;
1689 /* Don't #define nonliteral tokens whose names contain periods. */
1691 while ((c
= *cp
++) && c
!= '.');
1695 obstack_fgrow2 (oout
, "# define\t%s\t%d\n",
1696 symbol
, bp
->user_token_number
);
1697 if (semantic_parser
)
1698 /* FIXME: This is certainly dead wrong, and should be just as
1700 obstack_fgrow2 (oout
, "# define\tT%s\t%d\n", symbol
, bp
->value
);
1705 /*------------------------------------------------------------------.
1706 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
1708 `------------------------------------------------------------------*/
1711 token_translations_init (void)
1716 token_translations
= XCALLOC (short, max_user_token_number
+ 1);
1718 /* Initialize all entries for literal tokens to 2, the internal
1719 token number for $undefined., which represents all invalid
1721 for (i
= 0; i
<= max_user_token_number
; i
++)
1722 token_translations
[i
] = 2;
1724 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1727 if (bp
->value
>= ntokens
)
1729 /* A token string alias? */
1730 if (bp
->user_token_number
== SALIAS
)
1733 assert (bp
->user_token_number
!= SUNDEF
);
1735 /* A token which translation has already been set? */
1736 if (token_translations
[bp
->user_token_number
] != 2)
1737 complain (_("tokens %s and %s both assigned number %d"),
1738 tags
[token_translations
[bp
->user_token_number
]],
1739 bp
->tag
, bp
->user_token_number
);
1740 token_translations
[bp
->user_token_number
] = bp
->value
;
1745 /*------------------------------------------------------------------.
1746 | Assign symbol numbers, and write definition of token names into |
1747 | FDEFINES. Set up vectors TAGS and SPREC of names and precedences |
1749 `------------------------------------------------------------------*/
1756 int last_user_token_number
;
1757 static char DOLLAR
[] = "$";
1759 tags
= XCALLOC (char *, nsyms
+ 1);
1760 user_toknums
= XCALLOC (short, nsyms
+ 1);
1762 sprec
= XCALLOC (short, nsyms
);
1763 sassoc
= XCALLOC (short, nsyms
);
1765 /* The EOF token. */
1767 user_toknums
[0] = 0;
1769 max_user_token_number
= 256;
1770 last_user_token_number
= 256;
1772 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1774 if (bp
->class == nterm_sym
)
1776 bp
->value
+= ntokens
;
1780 /* this symbol and its alias are a single token defn.
1781 allocate a tokno, and assign to both check agreement of
1782 ->prec and ->assoc fields and make both the same */
1784 bp
->value
= bp
->alias
->value
= tokno
++;
1786 if (bp
->prec
!= bp
->alias
->prec
)
1788 if (bp
->prec
!= 0 && bp
->alias
->prec
!= 0
1789 && bp
->user_token_number
== SALIAS
)
1790 complain (_("conflicting precedences for %s and %s"),
1791 bp
->tag
, bp
->alias
->tag
);
1793 bp
->alias
->prec
= bp
->prec
;
1795 bp
->prec
= bp
->alias
->prec
;
1798 if (bp
->assoc
!= bp
->alias
->assoc
)
1800 if (bp
->assoc
!= 0 && bp
->alias
->assoc
!= 0
1801 && bp
->user_token_number
== SALIAS
)
1802 complain (_("conflicting assoc values for %s and %s"),
1803 bp
->tag
, bp
->alias
->tag
);
1805 bp
->alias
->assoc
= bp
->assoc
;
1807 bp
->assoc
= bp
->alias
->assoc
;
1810 if (bp
->user_token_number
== SALIAS
)
1811 continue; /* do not do processing below for SALIASs */
1814 else /* bp->class == token_sym */
1816 bp
->value
= tokno
++;
1819 if (bp
->class == token_sym
)
1821 if (bp
->user_token_number
== SUNDEF
)
1822 bp
->user_token_number
= ++last_user_token_number
;
1823 if (bp
->user_token_number
> max_user_token_number
)
1824 max_user_token_number
= bp
->user_token_number
;
1827 tags
[bp
->value
] = bp
->tag
;
1828 user_toknums
[bp
->value
] = bp
->user_token_number
;
1829 sprec
[bp
->value
] = bp
->prec
;
1830 sassoc
[bp
->value
] = bp
->assoc
;
1833 token_translations_init ();
1835 error_token_number
= errtoken
->value
;
1837 if (startval
->class == unknown_sym
)
1838 fatal (_("the start symbol %s is undefined"), startval
->tag
);
1839 else if (startval
->class == token_sym
)
1840 fatal (_("the start symbol %s is a token"), startval
->tag
);
1842 start_symbol
= startval
->value
;
1846 /*-----------------------------------.
1847 | Output definition of token names. |
1848 `-----------------------------------*/
1851 symbols_output (void)
1854 struct obstack tokendefs
;
1855 obstack_init (&tokendefs
);
1856 output_token_defines (&tokendefs
);
1857 obstack_1grow (&tokendefs
, 0);
1858 muscle_insert ("tokendef", xstrdup (obstack_finish (&tokendefs
)));
1859 obstack_free (&tokendefs
, NULL
);
1863 if (!no_parser_flag
)
1864 output_token_defines (&table_obstack
);
1869 output_token_defines (&defines_obstack
);
1873 if (spec_name_prefix
)
1874 obstack_fgrow1 (&defines_obstack
, "\nextern YYSTYPE %slval;\n",
1877 obstack_sgrow (&defines_obstack
,
1878 "\nextern YYSTYPE yylval;\n");
1881 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. */
1903 /*---------------------------------------------------------------.
1904 | Convert the rules into the representation using RRHS, RLHS and |
1906 `---------------------------------------------------------------*/
1915 ritem
= XCALLOC (short, nitems
+ 1);
1916 rule_table
= XCALLOC (rule_t
, nrules
) - 1;
1924 bucket
*ruleprec
= p
->ruleprec
;
1925 rule_table
[ruleno
].lhs
= p
->sym
->value
;
1926 rule_table
[ruleno
].rhs
= itemno
;
1927 rule_table
[ruleno
].line
= p
->line
;
1932 ritem
[itemno
++] = p
->sym
->value
;
1933 /* A rule gets by default the precedence and associativity
1934 of the last token in it. */
1935 if (p
->sym
->class == token_sym
)
1937 rule_table
[ruleno
].prec
= p
->sym
->prec
;
1938 rule_table
[ruleno
].assoc
= p
->sym
->assoc
;
1944 /* If this rule has a %prec,
1945 the specified symbol's precedence replaces the default. */
1948 rule_table
[ruleno
].prec
= ruleprec
->prec
;
1949 rule_table
[ruleno
].assoc
= ruleprec
->assoc
;
1950 rule_table
[ruleno
].precsym
= ruleprec
->value
;
1953 ritem
[itemno
++] = -ruleno
;
1963 /*-------------------------------------------------------------------.
1964 | Read in the grammar specification and record it in the format |
1965 | described in gram.h. All guards are copied into the GUARD_OBSTACK |
1966 | and all actions into ACTION_OBSTACK, in each case forming the body |
1967 | of a C function (YYGUARD or YYACTION) which contains a switch |
1968 | statement to decide which guard or action to execute. |
1969 `-------------------------------------------------------------------*/
1975 startval
= NULL
; /* start symbol not specified yet. */
1985 semantic_parser
= 0;
1993 /* Initialize the muscle obstack. */
1994 obstack_init (&muscle_obstack
);
1996 /* Initialize the symbol table. */
1999 /* Construct the error token */
2000 errtoken
= getsym ("error");
2001 errtoken
->class = token_sym
;
2002 errtoken
->user_token_number
= 256; /* Value specified by POSIX. */
2004 /* Construct a token that represents all undefined literal tokens.
2005 It is always token number 2. */
2006 undeftoken
= getsym ("$undefined.");
2007 undeftoken
->class = token_sym
;
2008 undeftoken
->user_token_number
= 2;
2010 /* Read the declaration section. Copy %{ ... %} groups to
2011 TABLE_OBSTACK and FDEFINES file. Also notice any %token, %left,
2012 etc. found there. */
2013 read_declarations ();
2014 /* Read in the grammar, build grammar in list form. Write out
2015 guards and actions. */
2017 /* Some C code is given at the end of the grammar file. */
2018 read_additionnal_code ();
2020 /* Now we know whether we need the line-number stack. If we do,
2021 write its type into the .tab.h file.
2022 This is no longer need with header skeleton. */
2024 /* Assign the symbols their symbol numbers. Write #defines for the
2025 token symbols into FDEFINES if requested. */
2028 /* Convert the grammar into the format described in gram.h. */
2030 /* Output the headers. */