]>
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
);
968 /*---------------------------------.
969 | Parse a double quoted parameter. |
970 `---------------------------------*/
973 parse_dquoted_param (const char *from
)
975 struct obstack param_obstack
;
976 const char *param
= NULL
;
979 obstack_init (¶m_obstack
);
980 c
= skip_white_space ();
984 complain (_("invalid %s declaration"), from
);
992 if (literalchar (NULL
, &c
, '\"'))
993 obstack_1grow (¶m_obstack
, c
);
998 obstack_1grow (¶m_obstack
, '\0');
999 param
= obstack_finish (¶m_obstack
);
1001 if (c
!= '"' || strlen (param
) == 0)
1003 complain (_("invalid %s declaration"), from
);
1013 /*----------------------------------.
1014 | Parse what comes after %skeleton. |
1015 `----------------------------------*/
1018 parse_skel_decl (void)
1020 skeleton
= parse_dquoted_param ("%skeleton");
1023 /*----------------------------------------------------------------.
1024 | Read from finput until `%%' is seen. Discard the `%%'. Handle |
1025 | any `%' declarations, and copy the contents of any `%{ ... %}' |
1026 | groups to ATTRS_OBSTACK. |
1027 `----------------------------------------------------------------*/
1030 read_declarations (void)
1034 int c
= skip_white_space ();
1038 token_t tok
= parse_percent_token ();
1042 case tok_two_percents
:
1045 case tok_percent_left_curly
:
1050 parse_token_decl (token_sym
, nterm_sym
);
1054 parse_token_decl (nterm_sym
, token_sym
);
1062 parse_start_decl ();
1066 parse_union_decl ();
1070 parse_expect_decl ();
1074 parse_thong_decl ();
1078 parse_assoc_decl (left_assoc
);
1082 parse_assoc_decl (right_assoc
);
1086 parse_assoc_decl (non_assoc
);
1090 parse_muscle_decl ();
1108 complain (_("unrecognized: %s"), token_buffer
);
1113 fatal (_("no input grammar"));
1118 complain (_("unknown character: %s"), quote (buf
));
1124 /*-------------------------------------------------------------------.
1125 | Assuming that a `{' has just been seen, copy everything up to the |
1126 | matching `}' into the actions file. STACK_OFFSET is the number of |
1127 | values in the current rule so far, which says where to find `$0' |
1128 | with respect to the top of the stack. |
1129 `-------------------------------------------------------------------*/
1132 copy_action (symbol_list
*rule
, int stack_offset
)
1138 /* offset is always 0 if parser has already popped the stack pointer */
1139 if (semantic_parser
)
1142 obstack_fgrow1 (&action_obstack
, "\ncase %d:\n", nrules
);
1146 obstack_fgrow2 (&action_obstack
, muscle_find ("linef"),
1147 lineno
, quotearg_style (c_quoting_style
,
1148 muscle_find ("filename")));
1150 obstack_1grow (&action_obstack
, '{');
1162 obstack_1grow (&action_obstack
, c
);
1167 obstack_1grow (&action_obstack
, c
);
1173 copy_string (finput
, &action_obstack
, c
);
1177 copy_comment (finput
, &action_obstack
);
1181 copy_dollar (finput
, &action_obstack
,
1182 rule
, stack_offset
);
1186 copy_at (finput
, &action_obstack
,
1191 fatal (_("unmatched %s"), "`{'");
1194 obstack_1grow (&action_obstack
, c
);
1200 /* above loop exits when c is '}' */
1204 obstack_1grow (&action_obstack
, c
);
1209 obstack_sgrow (&action_obstack
, ";\n break;}");
1212 /*-------------------------------------------------------------------.
1213 | After `%guard' is seen in the input file, copy the actual guard |
1214 | into the guards file. If the guard is followed by an action, copy |
1215 | that into the actions file. STACK_OFFSET is the number of values |
1216 | in the current rule so far, which says where to find `$0' with |
1217 | respect to the top of the stack, for the simple parser in which |
1218 | the stack is not popped until after the guard is run. |
1219 `-------------------------------------------------------------------*/
1222 copy_guard (symbol_list
*rule
, int stack_offset
)
1228 /* offset is always 0 if parser has already popped the stack pointer */
1229 if (semantic_parser
)
1232 obstack_fgrow1 (&guard_obstack
, "\ncase %d:\n", nrules
);
1234 obstack_fgrow2 (&guard_obstack
, muscle_find ("linef"),
1235 lineno
, quotearg_style (c_quoting_style
,
1236 muscle_find ("filename")));
1237 obstack_1grow (&guard_obstack
, '{');
1242 while (brace_flag
? (count
> 0) : (c
!= ';'))
1247 obstack_1grow (&guard_obstack
, c
);
1252 obstack_1grow (&guard_obstack
, c
);
1258 obstack_1grow (&guard_obstack
, c
);
1263 complain (_("unmatched %s"), "`}'");
1264 c
= getc (finput
); /* skip it */
1270 copy_string (finput
, &guard_obstack
, c
);
1274 copy_comment (finput
, &guard_obstack
);
1278 copy_dollar (finput
, &guard_obstack
, rule
, stack_offset
);
1282 copy_at (finput
, &guard_obstack
, stack_offset
);
1286 fatal ("%s", _("unterminated %guard clause"));
1289 obstack_1grow (&guard_obstack
, c
);
1292 if (c
!= '}' || count
!= 0)
1296 c
= skip_white_space ();
1298 obstack_sgrow (&guard_obstack
, ";\n break;}");
1300 copy_action (rule
, stack_offset
);
1303 c
= getc (finput
); /* why not skip_white_space -wjh */
1305 copy_action (rule
, stack_offset
);
1312 /*-------------------------------------------------------------------.
1313 | Generate a dummy symbol, a nonterminal, whose name cannot conflict |
1314 | with the user's names. |
1315 `-------------------------------------------------------------------*/
1320 /* Incremented for each generated symbol */
1321 static int gensym_count
= 0;
1322 static char buf
[256];
1326 sprintf (buf
, "@%d", ++gensym_count
);
1328 sym
= getsym (token_buffer
);
1329 sym
->class = nterm_sym
;
1330 sym
->value
= nvars
++;
1335 /*------------------------------------------------------------------.
1336 | read in a %type declaration and record its information for |
1337 | get_type_name to access. This is unused. It is only called from |
1338 | the #if 0 part of readgram |
1339 `------------------------------------------------------------------*/
1350 if (token
!= tok_typename
)
1352 complain (_("invalid %s declaration"), "%type");
1356 name
= xstrdup (token_buffer
);
1370 case tok_identifier
:
1371 if (symval
->type_name
== NULL
)
1372 symval
->type_name
= name
;
1373 else if (strcmp (name
, symval
->type_name
) != 0)
1374 complain (_("type redeclaration for %s"), symval
->tag
);
1386 /*------------------------------------------------------------------.
1387 | Parse the input grammar into a one symbol_list structure. Each |
1388 | rule is represented by a sequence of symbols: the left hand side |
1389 | followed by the contents of the right hand side, followed by a |
1390 | null pointer instead of a symbol to terminate the rule. The next |
1391 | symbol is the lhs of the following rule. |
1393 | All guards and actions are copied out to the appropriate files, |
1394 | labelled by the rule number they apply to. |
1395 `------------------------------------------------------------------*/
1406 /* Points to first symbol_list of current rule. its symbol is the
1409 /* Points to the symbol_list preceding crule. */
1410 symbol_list
*crule1
;
1416 while (t
!= tok_two_percents
&& t
!= tok_eof
)
1418 if (t
== tok_identifier
|| t
== tok_bar
)
1420 int action_flag
= 0;
1421 /* Number of symbols in rhs of this rule so far */
1423 int xactions
= 0; /* JF for error checking */
1424 bucket
*first_rhs
= 0;
1426 if (t
== tok_identifier
)
1439 complain (_("ill-formed rule: initial symbol not followed by colon"));
1444 if (nrules
== 0 && t
== tok_bar
)
1446 complain (_("grammar starts with vertical bar"));
1447 lhs
= symval
; /* BOGUS: use a random symval */
1449 /* start a new rule and record its lhs. */
1454 p
= symbol_list_new (lhs
);
1465 /* mark the rule's lhs as a nonterminal if not already so. */
1467 if (lhs
->class == unknown_sym
)
1469 lhs
->class = nterm_sym
;
1473 else if (lhs
->class == token_sym
)
1474 complain (_("rule given for %s, which is a token"), lhs
->tag
);
1476 /* read the rhs of the rule. */
1484 crule
->ruleprec
= symval
;
1488 if (!(t
== tok_identifier
|| t
== tok_left_curly
))
1491 /* If next token is an identifier, see if a colon follows it.
1492 If one does, exit this rule now. */
1493 if (t
== tok_identifier
)
1502 if (t1
== tok_colon
)
1505 if (!first_rhs
) /* JF */
1507 /* Not followed by colon =>
1508 process as part of this rule's rhs. */
1511 /* If we just passed an action, that action was in the middle
1512 of a rule, so make a dummy rule to reduce it to a
1516 /* Since the action was written out with this rule's
1517 number, we must give the new rule this number by
1518 inserting the new rule before it. */
1520 /* Make a dummy nonterminal, a gensym. */
1521 bucket
*sdummy
= gensym ();
1523 /* Make a new rule, whose body is empty, before the
1524 current one, so that the action just read can
1528 p
= symbol_list_new (sdummy
);
1529 /* Attach its lineno to that of the host rule. */
1530 p
->line
= crule
->line
;
1535 /* End of the rule. */
1536 crule1
= symbol_list_new (NULL
);
1537 crule1
->next
= crule
;
1541 /* Insert the dummy generated by that rule into this
1544 p
= symbol_list_new (sdummy
);
1551 if (t
== tok_identifier
)
1554 p
= symbol_list_new (symval
);
1558 else /* handle an action. */
1560 copy_action (crule
, rulelength
);
1562 xactions
++; /* JF */
1565 } /* end of read rhs of rule */
1567 /* Put an empty link in the list to mark the end of this rule */
1568 p
= symbol_list_new (NULL
);
1574 complain (_("two @prec's in a row"));
1576 crule
->ruleprec
= symval
;
1581 if (!semantic_parser
)
1582 complain (_("%%guard present but %%semantic_parser not specified"));
1584 copy_guard (crule
, rulelength
);
1587 else if (t
== tok_left_curly
)
1589 /* This case never occurs -wjh */
1591 complain (_("two actions at end of one rule"));
1592 copy_action (crule
, rulelength
);
1594 xactions
++; /* -wjh */
1597 /* If $$ is being set in default way, report if any type
1600 && first_rhs
&& lhs
->type_name
!= first_rhs
->type_name
)
1602 if (lhs
->type_name
== 0
1603 || first_rhs
->type_name
== 0
1604 || strcmp (lhs
->type_name
, first_rhs
->type_name
))
1605 complain (_("type clash (`%s' `%s') on default action"),
1606 lhs
->type_name
? lhs
->type_name
: "",
1607 first_rhs
->type_name
? first_rhs
->type_name
: "");
1609 /* Warn if there is no default for $$ but we need one. */
1610 else if (!xactions
&& !first_rhs
&& lhs
->type_name
!= 0)
1611 complain (_("empty rule for typed nonterminal, and no action"));
1612 if (t
== tok_semicolon
)
1616 /* these things can appear as alternatives to rules. */
1618 a) none of the documentation allows them
1619 b) most of them scan forward until finding a next %
1620 thus they may swallow lots of intervening rules
1622 else if (t
== tok_token
)
1624 parse_token_decl (token_sym
, nterm_sym
);
1627 else if (t
== tok_nterm
)
1629 parse_token_decl (nterm_sym
, token_sym
);
1632 else if (t
== tok_type
)
1636 else if (t
== tok_union
)
1638 parse_union_decl ();
1641 else if (t
== tok_expect
)
1643 parse_expect_decl ();
1646 else if (t
== tok_start
)
1648 parse_start_decl ();
1655 complain (_("invalid input: %s"), quote (token_buffer
));
1660 /* grammar has been read. Do some checking */
1662 if (nsyms
> MAXSHORT
)
1663 fatal (_("too many symbols (tokens plus nonterminals); maximum %d"),
1666 fatal (_("no rules in the input grammar"));
1668 /* Report any undefined symbols and consider them nonterminals. */
1670 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1671 if (bp
->class == unknown_sym
)
1674 ("symbol %s is used, but is not defined as a token and has no rules"),
1676 bp
->class = nterm_sym
;
1677 bp
->value
= nvars
++;
1680 ntokens
= nsyms
- nvars
;
1683 /* At the end of the grammar file, some C source code must
1684 be stored. It is going to be associated to the epilogue
1687 read_additionnal_code (void)
1690 struct obstack el_obstack
;
1692 obstack_init (&el_obstack
);
1694 while ((c
= getc (finput
)) != EOF
)
1695 obstack_1grow (&el_obstack
, c
);
1697 obstack_1grow (&el_obstack
, 0);
1698 muscle_insert ("epilogue", obstack_finish (&el_obstack
));
1702 /*--------------------------------------------------------------.
1703 | For named tokens, but not literal ones, define the name. The |
1704 | value is the user token number. |
1705 `--------------------------------------------------------------*/
1708 output_token_defines (struct obstack
*oout
)
1714 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1716 symbol
= bp
->tag
; /* get symbol */
1718 if (bp
->value
>= ntokens
)
1720 if (bp
->user_token_number
== SALIAS
)
1722 if ('\'' == *symbol
)
1723 continue; /* skip literal character */
1725 continue; /* skip error token */
1726 if ('\"' == *symbol
)
1728 /* use literal string only if given a symbol with an alias */
1730 symbol
= bp
->alias
->tag
;
1735 /* Don't #define nonliteral tokens whose names contain periods. */
1737 while ((c
= *cp
++) && c
!= '.');
1741 obstack_fgrow2 (oout
, "# define\t%s\t%d\n",
1742 symbol
, bp
->user_token_number
);
1743 if (semantic_parser
)
1744 /* FIXME: This is certainly dead wrong, and should be just as
1746 obstack_fgrow2 (oout
, "# define\tT%s\t%d\n", symbol
, bp
->value
);
1751 /*------------------------------------------------------------------.
1752 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
1754 `------------------------------------------------------------------*/
1757 token_translations_init (void)
1762 token_translations
= XCALLOC (short, max_user_token_number
+ 1);
1764 /* Initialize all entries for literal tokens to 2, the internal
1765 token number for $undefined., which represents all invalid
1767 for (i
= 0; i
<= max_user_token_number
; i
++)
1768 token_translations
[i
] = 2;
1770 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1773 if (bp
->value
>= ntokens
)
1775 /* A token string alias? */
1776 if (bp
->user_token_number
== SALIAS
)
1779 assert (bp
->user_token_number
!= SUNDEF
);
1781 /* A token which translation has already been set? */
1782 if (token_translations
[bp
->user_token_number
] != 2)
1783 complain (_("tokens %s and %s both assigned number %d"),
1784 tags
[token_translations
[bp
->user_token_number
]],
1785 bp
->tag
, bp
->user_token_number
);
1786 token_translations
[bp
->user_token_number
] = bp
->value
;
1791 /*------------------------------------------------------------------.
1792 | Assign symbol numbers, and write definition of token names into |
1793 | FDEFINES. Set up vectors TAGS and SPREC of names and precedences |
1795 `------------------------------------------------------------------*/
1802 int last_user_token_number
;
1803 static char DOLLAR
[] = "$";
1805 tags
= XCALLOC (char *, nsyms
+ 1);
1806 user_toknums
= XCALLOC (short, nsyms
+ 1);
1808 sprec
= XCALLOC (short, nsyms
);
1809 sassoc
= XCALLOC (short, nsyms
);
1811 /* The EOF token. */
1813 user_toknums
[0] = 0;
1815 max_user_token_number
= 256;
1816 last_user_token_number
= 256;
1818 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1820 if (bp
->class == nterm_sym
)
1822 bp
->value
+= ntokens
;
1826 /* this symbol and its alias are a single token defn.
1827 allocate a tokno, and assign to both check agreement of
1828 ->prec and ->assoc fields and make both the same */
1830 bp
->value
= bp
->alias
->value
= tokno
++;
1832 if (bp
->prec
!= bp
->alias
->prec
)
1834 if (bp
->prec
!= 0 && bp
->alias
->prec
!= 0
1835 && bp
->user_token_number
== SALIAS
)
1836 complain (_("conflicting precedences for %s and %s"),
1837 bp
->tag
, bp
->alias
->tag
);
1839 bp
->alias
->prec
= bp
->prec
;
1841 bp
->prec
= bp
->alias
->prec
;
1844 if (bp
->assoc
!= bp
->alias
->assoc
)
1846 if (bp
->assoc
!= 0 && bp
->alias
->assoc
!= 0
1847 && bp
->user_token_number
== SALIAS
)
1848 complain (_("conflicting assoc values for %s and %s"),
1849 bp
->tag
, bp
->alias
->tag
);
1851 bp
->alias
->assoc
= bp
->assoc
;
1853 bp
->assoc
= bp
->alias
->assoc
;
1856 if (bp
->user_token_number
== SALIAS
)
1857 continue; /* do not do processing below for SALIASs */
1860 else /* bp->class == token_sym */
1862 bp
->value
= tokno
++;
1865 if (bp
->class == token_sym
)
1867 if (bp
->user_token_number
== SUNDEF
)
1868 bp
->user_token_number
= ++last_user_token_number
;
1869 if (bp
->user_token_number
> max_user_token_number
)
1870 max_user_token_number
= bp
->user_token_number
;
1873 tags
[bp
->value
] = bp
->tag
;
1874 user_toknums
[bp
->value
] = bp
->user_token_number
;
1875 sprec
[bp
->value
] = bp
->prec
;
1876 sassoc
[bp
->value
] = bp
->assoc
;
1879 token_translations_init ();
1881 error_token_number
= errtoken
->value
;
1883 if (startval
->class == unknown_sym
)
1884 fatal (_("the start symbol %s is undefined"), startval
->tag
);
1885 else if (startval
->class == token_sym
)
1886 fatal (_("the start symbol %s is a token"), startval
->tag
);
1888 start_symbol
= startval
->value
;
1892 /*-----------------------------------.
1893 | Output definition of token names. |
1894 `-----------------------------------*/
1897 symbols_output (void)
1900 struct obstack tokendefs
;
1901 obstack_init (&tokendefs
);
1902 output_token_defines (&tokendefs
);
1903 obstack_1grow (&tokendefs
, 0);
1904 muscle_insert ("tokendef", xstrdup (obstack_finish (&tokendefs
)));
1905 obstack_free (&tokendefs
, NULL
);
1909 if (!no_parser_flag
)
1910 output_token_defines (&table_obstack
);
1915 output_token_defines (&defines_obstack
);
1919 if (spec_name_prefix
)
1920 obstack_fgrow1 (&defines_obstack
, "\nextern YYSTYPE %slval;\n",
1923 obstack_sgrow (&defines_obstack
,
1924 "\nextern YYSTYPE yylval;\n");
1927 if (semantic_parser
)
1931 for (i
= ntokens
; i
< nsyms
; i
++)
1933 /* don't make these for dummy nonterminals made by gensym. */
1934 if (*tags
[i
] != '@')
1935 obstack_fgrow2 (&defines_obstack
,
1936 "# define\tNT%s\t%d\n", tags
[i
], i
);
1939 /* `fdefines' is now a temporary file, so we need to copy its
1940 contents in `done', so we can't close it here. */
1949 /*---------------------------------------------------------------.
1950 | Convert the rules into the representation using RRHS, RLHS and |
1952 `---------------------------------------------------------------*/
1961 ritem
= XCALLOC (short, nitems
+ 1);
1962 rule_table
= XCALLOC (rule_t
, nrules
) - 1;
1970 bucket
*ruleprec
= p
->ruleprec
;
1971 rule_table
[ruleno
].lhs
= p
->sym
->value
;
1972 rule_table
[ruleno
].rhs
= itemno
;
1973 rule_table
[ruleno
].line
= p
->line
;
1978 ritem
[itemno
++] = p
->sym
->value
;
1979 /* A rule gets by default the precedence and associativity
1980 of the last token in it. */
1981 if (p
->sym
->class == token_sym
)
1983 rule_table
[ruleno
].prec
= p
->sym
->prec
;
1984 rule_table
[ruleno
].assoc
= p
->sym
->assoc
;
1990 /* If this rule has a %prec,
1991 the specified symbol's precedence replaces the default. */
1994 rule_table
[ruleno
].prec
= ruleprec
->prec
;
1995 rule_table
[ruleno
].assoc
= ruleprec
->assoc
;
1996 rule_table
[ruleno
].precsym
= ruleprec
->value
;
1999 ritem
[itemno
++] = -ruleno
;
2009 /*-------------------------------------------------------------------.
2010 | Read in the grammar specification and record it in the format |
2011 | described in gram.h. All guards are copied into the GUARD_OBSTACK |
2012 | and all actions into ACTION_OBSTACK, in each case forming the body |
2013 | of a C function (YYGUARD or YYACTION) which contains a switch |
2014 | statement to decide which guard or action to execute. |
2015 `-------------------------------------------------------------------*/
2021 startval
= NULL
; /* start symbol not specified yet. */
2031 semantic_parser
= 0;
2039 /* Initialize the muscle obstack. */
2040 obstack_init (&muscle_obstack
);
2042 /* Initialize the symbol table. */
2045 /* Construct the error token */
2046 errtoken
= getsym ("error");
2047 errtoken
->class = token_sym
;
2048 errtoken
->user_token_number
= 256; /* Value specified by POSIX. */
2050 /* Construct a token that represents all undefined literal tokens.
2051 It is always token number 2. */
2052 undeftoken
= getsym ("$undefined.");
2053 undeftoken
->class = token_sym
;
2054 undeftoken
->user_token_number
= 2;
2056 /* Read the declaration section. Copy %{ ... %} groups to
2057 TABLE_OBSTACK and FDEFINES file. Also notice any %token, %left,
2058 etc. found there. */
2059 read_declarations ();
2060 /* Read in the grammar, build grammar in list form. Write out
2061 guards and actions. */
2063 /* Some C code is given at the end of the grammar file. */
2064 read_additionnal_code ();
2066 /* Now we know whether we need the line-number stack. If we do,
2067 write its type into the .tab.h file.
2068 This is no longer need with header skeleton. */
2070 /* Assign the symbols their symbol numbers. Write #defines for the
2071 token symbols into FDEFINES if requested. */
2074 /* Convert the grammar into the format described in gram.h. */
2076 /* Output the headers. */