]>
git.saurik.com Git - bison.git/blob - src/reader.c
2263458aa1027254cce42330f59047c715a44d98
1 /* Input parser for bison
2 Copyright (C) 1984, 1986, 1989, 1992, 1998, 2000
3 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
7 Bison is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 Bison is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Bison; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
51 #define YYLTYPE yyltype\n\
55 /* Number of slots allocated (but not necessarily used yet) in `rline' */
56 static int rline_allocated
;
58 extern bucket
*symval
;
60 extern int expected_conflicts
;
61 extern char *token_buffer
;
64 extern void tabinit
PARAMS ((void));
65 extern void free_symtab
PARAMS ((void));
66 extern void open_extra_files
PARAMS ((void));
67 extern char *printable_version
PARAMS ((int));
69 typedef struct symbol_list
71 struct symbol_list
*next
;
78 extern void reader
PARAMS ((void));
79 extern void reader_output_yylsp
PARAMS ((FILE *));
84 static symbol_list
*grammar
;
85 static int start_flag
;
86 static bucket
*startval
;
88 /* Nonzero if components of semantic values are used, implying
89 they must be unions. */
90 static int value_components_used
;
92 static int typed
; /* nonzero if %union has been seen. */
94 static int lastprec
; /* incremented for each %left, %right or %nonassoc seen */
96 static int gensym_count
; /* incremented for each generated symbol */
98 static bucket
*errtoken
;
99 static bucket
*undeftoken
;
101 /* Nonzero if any action or guard uses the @n construct. */
102 static int yylsp_needed
;
105 /*===================\
106 | Low level lexing. |
107 \===================*/
110 skip_to_char (int target
)
114 complain (_(" Skipping to next \\n"));
116 complain (_(" Skipping to next %c"), target
);
119 c
= skip_white_space ();
120 while (c
!= target
&& c
!= EOF
);
126 /*---------------------------------------------------------.
127 | Read a signed integer from STREAM and return its value. |
128 `---------------------------------------------------------*/
131 read_signed_integer (FILE *stream
)
133 int c
= getc (stream
);
145 n
= 10 * n
+ (c
- '0');
154 /*-------------------------------------------------------------------.
155 | Dump the string from FINPUT to FOUTPUT. MATCH is the delimiter of |
156 | the string (either ' or "). |
157 `-------------------------------------------------------------------*/
160 copy_string (FILE *fin
, FILE *fout
, int match
)
170 fatal (_("unterminated string at end of file"));
173 complain (_("unterminated string"));
175 c
= match
; /* invent terminator */
185 fatal (_("unterminated string at end of file"));
198 /*---------------------------------------------------------------.
199 | Dump the comment from IN to OUT1 and OUT2. C is either `*' or |
200 | `/', depending upon the type of comments used. OUT2 might be |
202 `---------------------------------------------------------------*/
205 copy_comment2 (FILE *in
, FILE *out1
, FILE *out2
, int c
)
210 cplus_comment
= (c
== '/');
219 if (!cplus_comment
&& c
== '*')
249 fatal (_("unterminated comment"));
261 /*------------------------------------------------------------.
262 | Dump the comment from FIN to FOUT. C is either `*' or `/', |
263 | depending upon the type of comments used. |
264 `------------------------------------------------------------*/
267 copy_comment (FILE *fin
, FILE *fout
, int c
)
269 copy_comment2 (fin
, fout
, NULL
, c
);
273 /*-----------------------------------------------------------------.
274 | FIN is pointing to a location (i.e., a `@'). Output to FOUT a |
275 | reference to this location. STACK_OFFSET is the number of values |
276 | in the current rule so far, which says where to find `$0' with |
277 | respect to the top of the stack. |
278 `-----------------------------------------------------------------*/
281 copy_at (FILE *fin
, FILE *fout
, int stack_offset
)
288 fprintf (fout
, "yyloc");
291 else if (isdigit (c
) || c
== '-')
296 n
= read_signed_integer (fin
);
298 fprintf (fout
, "yylsp[%d]", n
- stack_offset
);
302 complain (_("@%s is invalid"), printable_version (c
));
305 /*-------------------------------------------------------------------.
306 | Copy the contents of a `%{ ... %}' into the definitions file. The |
307 | `%{' has already been read. Return after reading the `%}'. |
308 `-------------------------------------------------------------------*/
311 copy_definition (void)
314 /* -1 while reading a character if prev char was %. */
318 fprintf (fattrs
, "#line %d \"%s\"\n", lineno
, infile
);
339 copy_string (finput
, fattrs
, c
);
345 if (c
!= '*' && c
!= '/')
347 copy_comment (finput
, fattrs
, c
);
351 fatal ("%s", _("unterminated `%{' definition"));
372 /*-----------------------------------------------------------------.
373 | Parse what comes after %token or %nterm. For %token, what_is is |
374 | STOKEN and what_is_not is SNTERM. For %nterm, the arguments are |
376 `-----------------------------------------------------------------*/
379 parse_token_decl (int what_is
, int what_is_not
)
383 struct bucket
*symbol
= NULL
; /* pts to symbol being defined */
388 int tmp_char
= ungetc (skip_white_space (), finput
);
393 fatal (_("Premature EOF after %s"), token_buffer
);
401 if (token
== TYPENAME
)
403 k
= strlen (token_buffer
);
404 typename
= NEW2 (k
+ 1, char);
405 strcpy (typename
, token_buffer
);
406 value_components_used
= 1;
409 else if (token
== IDENTIFIER
&& *symval
->tag
== '\"' && symbol
)
412 symval
->class = STOKEN
;
413 symval
->type_name
= typename
;
414 symval
->user_token_number
= symbol
->user_token_number
;
415 symbol
->user_token_number
= SALIAS
;
417 symval
->alias
= symbol
;
418 symbol
->alias
= symval
;
421 nsyms
--; /* symbol and symval combined are only one symbol */
423 else if (token
== IDENTIFIER
)
425 int oldclass
= symval
->class;
428 if (symbol
->class == what_is_not
)
429 complain (_("symbol %s redefined"), symbol
->tag
);
430 symbol
->class = what_is
;
431 if (what_is
== SNTERM
&& oldclass
!= SNTERM
)
432 symbol
->value
= nvars
++;
436 if (symbol
->type_name
== NULL
)
437 symbol
->type_name
= typename
;
438 else if (strcmp (typename
, symbol
->type_name
) != 0)
439 complain (_("type redeclaration for %s"), symbol
->tag
);
442 else if (symbol
&& token
== NUMBER
)
444 symbol
->user_token_number
= numval
;
449 complain (_("`%s' is invalid in %s"),
450 token_buffer
, (what_is
== STOKEN
) ? "%token" : "%nterm");
458 /* Parse what comes after %start */
461 parse_start_decl (void)
464 complain (_("multiple %s declarations"), "%start");
465 if (lex () != IDENTIFIER
)
466 complain (_("invalid %s declaration"), "%start");
476 /*--------------------------------------------------------------.
477 | Get the data type (alternative in the union) of the value for |
478 | symbol n in rule rule. |
479 `--------------------------------------------------------------*/
482 get_type_name (int n
, symbol_list
* rule
)
489 complain (_("invalid $ value"));
499 if (rp
== NULL
|| rp
->sym
== NULL
)
501 complain (_("invalid $ value"));
507 return rp
->sym
->type_name
;
511 /*-----------------------------------------------------------.
512 | read in a %type declaration and record its information for |
513 | get_type_name to access |
514 `-----------------------------------------------------------*/
517 parse_type_decl (void)
522 if (lex () != TYPENAME
)
524 complain ("%s", _("%type declaration has no <typename>"));
529 k
= strlen (token_buffer
);
530 name
= NEW2 (k
+ 1, char);
531 strcpy (name
, token_buffer
);
536 int tmp_char
= ungetc (skip_white_space (), finput
);
541 fatal (_("Premature EOF after %s"), token_buffer
);
553 if (symval
->type_name
== NULL
)
554 symval
->type_name
= name
;
555 else if (strcmp (name
, symval
->type_name
) != 0)
556 complain (_("type redeclaration for %s"), symval
->tag
);
561 complain (_("invalid %%type declaration due to item: %s"),
570 /* read in a %left, %right or %nonassoc declaration and record its information. */
571 /* assoc is either LEFT_ASSOC, RIGHT_ASSOC or NON_ASSOC. */
574 parse_assoc_decl (int assoc
)
580 lastprec
++; /* Assign a new precedence level, never 0. */
585 int tmp_char
= ungetc (skip_white_space (), finput
);
590 fatal (_("Premature EOF after %s"), token_buffer
);
598 k
= strlen (token_buffer
);
599 name
= NEW2 (k
+ 1, char);
600 strcpy (name
, token_buffer
);
607 if (symval
->prec
!= 0)
608 complain (_("redefining precedence of %s"), symval
->tag
);
609 symval
->prec
= lastprec
;
610 symval
->assoc
= assoc
;
611 if (symval
->class == SNTERM
)
612 complain (_("symbol %s redefined"), symval
->tag
);
613 symval
->class = STOKEN
;
615 { /* record the type, if one is specified */
616 if (symval
->type_name
== NULL
)
617 symval
->type_name
= name
;
618 else if (strcmp (name
, symval
->type_name
) != 0)
619 complain (_("type redeclaration for %s"), symval
->tag
);
624 if (prev
== IDENTIFIER
)
626 symval
->user_token_number
= numval
;
632 ("invalid text (%s) - number should be after identifier"),
642 complain (_("unexpected item: %s"), token_buffer
);
653 /* copy the union declaration into fattrs (and fdefines),
654 where it is made into the
655 definition of YYSTYPE, the type of elements of the parser value stack. */
658 parse_union_decl (void)
664 complain (_("multiple %s declarations"), "%union");
669 fprintf (fattrs
, "\n#line %d \"%s\"\n", lineno
, infile
);
671 fprintf (fattrs
, "\n");
673 fprintf (fattrs
, "typedef union");
675 fprintf (fdefines
, "typedef union");
693 if (c
!= '*' && c
!= '/')
695 copy_comment2 (finput
, fattrs
, fdefines
, c
);
705 complain (_("unmatched %s"), "`}'");
709 fprintf (fattrs
, " YYSTYPE;\n");
711 fprintf (fdefines
, " YYSTYPE;\n");
712 /* JF don't choke on trailing semi */
713 c
= skip_white_space ();
724 /* parse the declaration %expect N which says to expect N
725 shift-reduce conflicts. */
728 parse_expect_decl (void)
735 while (c
== ' ' || c
== '\t')
739 while (c
>= '0' && c
<= '9')
749 if (count
<= 0 || count
> 10)
750 complain ("%s", _("argument of %expect is not an integer"));
751 expected_conflicts
= atoi (buffer
);
755 /*-------------------------------------------------------------------.
756 | Parse what comes after %thong. the full syntax is |
758 | %thong <type> token number literal |
760 | the <type> or number may be omitted. The number specifies the |
761 | user_token_number. |
763 | Two symbols are entered in the table, one for the token symbol and |
764 | one for the literal. Both are given the <type>, if any, from the |
765 | declaration. The ->user_token_number of the first is SALIAS and |
766 | the ->user_token_number of the second is set to the number, if |
767 | any, from the declaration. The two symbols are linked via |
768 | pointers in their ->alias fields. |
770 | During OUTPUT_DEFINES_TABLE, the symbol is reported thereafter, |
771 | only the literal string is retained it is the literal string that |
772 | is output to yytname |
773 `-------------------------------------------------------------------*/
776 parse_thong_decl (void)
779 struct bucket
*symbol
;
784 token
= lex (); /* fetch typename or first token */
785 if (token
== TYPENAME
)
787 k
= strlen (token_buffer
);
788 typename
= NEW2 (k
+ 1, char);
789 strcpy (typename
, token_buffer
);
790 value_components_used
= 1;
791 token
= lex (); /* fetch first token */
794 /* process first token */
796 if (token
!= IDENTIFIER
)
798 complain (_("unrecognized item %s, expected an identifier"),
803 symval
->class = STOKEN
;
804 symval
->type_name
= typename
;
805 symval
->user_token_number
= SALIAS
;
808 token
= lex (); /* get number or literal string */
813 token
= lex (); /* okay, did number, now get literal */
818 /* process literal string token */
820 if (token
!= IDENTIFIER
|| *symval
->tag
!= '\"')
822 complain (_("expected string constant instead of %s"), token_buffer
);
826 symval
->class = STOKEN
;
827 symval
->type_name
= typename
;
828 symval
->user_token_number
= usrtoknum
;
830 symval
->alias
= symbol
;
831 symbol
->alias
= symval
;
833 nsyms
--; /* symbol and symval combined are only one symbol */
836 /*----------------------------------------------------------------.
837 | Read from finput until `%%' is seen. Discard the `%%'. Handle |
838 | any `%' declarations, and copy the contents of any `%{ ... %}' |
839 | groups to fattrs. |
840 `----------------------------------------------------------------*/
843 read_declarations (void)
850 c
= skip_white_space ();
854 tok
= parse_percent_token ();
861 case PERCENT_LEFT_CURLY
:
866 parse_token_decl (STOKEN
, SNTERM
);
870 parse_token_decl (SNTERM
, STOKEN
);
886 parse_expect_decl ();
892 parse_assoc_decl (LEFT_ASSOC
);
896 parse_assoc_decl (RIGHT_ASSOC
);
900 parse_assoc_decl (NON_ASSOC
);
903 case SEMANTIC_PARSER
:
904 if (semantic_parser
== 0)
919 complain (_("unrecognized: %s"), token_buffer
);
924 fatal (_("no input grammar"));
927 complain (_("unknown character: %s"), printable_version (c
));
933 /*-------------------------------------------------------------------.
934 | Assuming that a `{' has just been seen, copy everything up to the |
935 | matching `}' into the actions file. STACK_OFFSET is the number of |
936 | values in the current rule so far, which says where to find `$0' |
937 | with respect to the top of the stack. |
938 `-------------------------------------------------------------------*/
941 copy_action (symbol_list
* rule
, int stack_offset
)
948 /* offset is always 0 if parser has already popped the stack pointer */
952 fprintf (faction
, "\ncase %d:\n", nrules
);
954 fprintf (faction
, "#line %d \"%s\"\n", lineno
, infile
);
978 copy_string (finput
, faction
, c
);
984 if (c
!= '*' && c
!= '/')
986 copy_comment (finput
, faction
, c
);
995 char *cp
= token_buffer
;
997 while ((c
= getc (finput
)) != '>' && c
> 0)
999 if (cp
== token_buffer
+ maxtoken
)
1000 cp
= grow_token_buffer (cp
);
1005 type_name
= token_buffer
;
1006 value_components_used
= 1;
1012 fprintf (faction
, "yyval");
1014 type_name
= get_type_name (0, rule
);
1016 fprintf (faction
, ".%s", type_name
);
1017 if (!type_name
&& typed
)
1018 complain (_("$$ of `%s' has no declared type"),
1021 else if (isdigit (c
) || c
== '-')
1024 n
= read_signed_integer (finput
);
1027 if (!type_name
&& n
> 0)
1028 type_name
= get_type_name (n
, rule
);
1030 fprintf (faction
, "yyvsp[%d]", n
- stack_offset
);
1032 fprintf (faction
, ".%s", type_name
);
1033 if (!type_name
&& typed
)
1034 complain (_("$%d of `%s' has no declared type"),
1039 complain (_("$%s is invalid"), printable_version (c
));
1044 copy_at (finput
, faction
, stack_offset
);
1048 fatal (_("unmatched %s"), "`{'");
1057 /* above loop exits when c is '}' */
1066 fprintf (faction
, ";\n break;}");
1069 /*-------------------------------------------------------------------.
1070 | After `%guard' is seen in the input file, copy the actual guard |
1071 | into the guards file. If the guard is followed by an action, copy |
1072 | that into the actions file. STACK_OFFSET is the number of values |
1073 | in the current rule so far, which says where to find `$0' with |
1074 | respect to the top of the stack, for the simple parser in which |
1075 | the stack is not popped until after the guard is run. |
1076 `-------------------------------------------------------------------*/
1079 copy_guard (symbol_list
* rule
, int stack_offset
)
1087 /* offset is always 0 if parser has already popped the stack pointer */
1088 if (semantic_parser
)
1091 fprintf (fguard
, "\ncase %d:\n", nrules
);
1093 fprintf (fguard
, "#line %d \"%s\"\n", lineno
, infile
);
1099 while (brace_flag
? (count
> 0) : (c
!= ';'))
1120 complain (_("unmatched %s"), "`}'");
1121 c
= getc (finput
); /* skip it */
1127 copy_string (finput
, fguard
, c
);
1133 if (c
!= '*' && c
!= '/')
1135 copy_comment (finput
, fguard
, c
);
1144 char *cp
= token_buffer
;
1146 while ((c
= getc (finput
)) != '>' && c
> 0)
1148 if (cp
== token_buffer
+ maxtoken
)
1149 cp
= grow_token_buffer (cp
);
1154 type_name
= token_buffer
;
1161 fprintf (fguard
, "yyval");
1163 type_name
= rule
->sym
->type_name
;
1165 fprintf (fguard
, ".%s", type_name
);
1166 if (!type_name
&& typed
)
1167 complain (_("$$ of `%s' has no declared type"),
1170 else if (isdigit (c
) || c
== '-')
1173 n
= read_signed_integer (finput
);
1176 if (!type_name
&& n
> 0)
1177 type_name
= get_type_name (n
, rule
);
1179 fprintf (fguard
, "yyvsp[%d]", n
- stack_offset
);
1181 fprintf (fguard
, ".%s", type_name
);
1182 if (!type_name
&& typed
)
1183 complain (_("$%d of `%s' has no declared type"),
1188 complain (_("$%s is invalid"), printable_version (c
));
1192 copy_at (finput
, fguard
, stack_offset
);
1196 fatal ("%s", _("unterminated %guard clause"));
1202 if (c
!= '}' || count
!= 0)
1206 c
= skip_white_space ();
1208 fprintf (fguard
, ";\n break;}");
1210 copy_action (rule
, stack_offset
);
1213 c
= getc (finput
); /* why not skip_white_space -wjh */
1215 copy_action (rule
, stack_offset
);
1223 record_rule_line (void)
1225 /* Record each rule's source line number in rline table. */
1227 if (nrules
>= rline_allocated
)
1229 rline_allocated
= nrules
* 2;
1230 rline
= (short *) xrealloc ((char *) rline
,
1231 rline_allocated
* sizeof (short));
1233 rline
[nrules
] = lineno
;
1237 /*-------------------------------------------------------------------.
1238 | Generate a dummy symbol, a nonterminal, whose name cannot conflict |
1239 | with the user's names. |
1240 `-------------------------------------------------------------------*/
1247 sprintf (token_buffer
, "@%d", ++gensym_count
);
1248 sym
= getsym (token_buffer
);
1249 sym
->class = SNTERM
;
1250 sym
->value
= nvars
++;
1255 /*------------------------------------------------------------------.
1256 | read in a %type declaration and record its information for |
1257 | get_type_name to access. This is unused. It is only called from |
1258 | the #if 0 part of readgram |
1259 `------------------------------------------------------------------*/
1272 complain (_("invalid %s declaration"), "%type");
1276 k
= strlen (token_buffer
);
1277 name
= NEW2 (k
+ 1, char);
1278 strcpy (name
, token_buffer
);
1293 if (symval
->type_name
== NULL
)
1294 symval
->type_name
= name
;
1295 else if (strcmp (name
, symval
->type_name
) != 0)
1296 complain (_("type redeclaration for %s"), symval
->tag
);
1308 /*------------------------------------------------------------------.
1309 | Parse the input grammar into a one symbol_list structure. Each |
1310 | rule is represented by a sequence of symbols: the left hand side |
1311 | followed by the contents of the right hand side, followed by a |
1312 | null pointer instead of a symbol to terminate the rule. The next |
1313 | symbol is the lhs of the following rule. |
1315 | All guards and actions are copied out to the appropriate files, |
1316 | labelled by the rule number they apply to. |
1317 `------------------------------------------------------------------*/
1328 symbol_list
*crule
; /* points to first symbol_list of current rule. */
1329 /* its symbol is the lhs of the rule. */
1330 symbol_list
*crule1
; /* points to the symbol_list preceding crule. */
1336 while (t
!= TWO_PERCENTS
&& t
!= ENDFILE
)
1338 if (t
== IDENTIFIER
|| t
== BAR
)
1341 int rulelength
= 0; /* number of symbols in rhs of this rule so far */
1342 int xactions
= 0; /* JF for error checking */
1343 bucket
*first_rhs
= 0;
1345 if (t
== IDENTIFIER
)
1358 complain (_("ill-formed rule: initial symbol not followed by colon"));
1363 if (nrules
== 0 && t
== BAR
)
1365 complain (_("grammar starts with vertical bar"));
1366 lhs
= symval
; /* BOGUS: use a random symval */
1368 /* start a new rule and record its lhs. */
1373 record_rule_line ();
1375 p
= NEW (symbol_list
);
1387 /* mark the rule's lhs as a nonterminal if not already so. */
1389 if (lhs
->class == SUNKNOWN
)
1391 lhs
->class = SNTERM
;
1395 else if (lhs
->class == STOKEN
)
1396 complain (_("rule given for %s, which is a token"), lhs
->tag
);
1398 /* read the rhs of the rule. */
1406 crule
->ruleprec
= symval
;
1410 if (!(t
== IDENTIFIER
|| t
== LEFT_CURLY
))
1413 /* If next token is an identifier, see if a colon follows it.
1414 If one does, exit this rule now. */
1415 if (t
== IDENTIFIER
)
1427 if (!first_rhs
) /* JF */
1429 /* Not followed by colon =>
1430 process as part of this rule's rhs. */
1433 /* If we just passed an action, that action was in the middle
1434 of a rule, so make a dummy rule to reduce it to a
1440 /* Since the action was written out with this rule's */
1441 /* number, we must give the new rule this number */
1442 /* by inserting the new rule before it. */
1444 /* Make a dummy nonterminal, a gensym. */
1447 /* Make a new rule, whose body is empty,
1448 before the current one, so that the action
1449 just read can belong to it. */
1452 record_rule_line ();
1453 p
= NEW (symbol_list
);
1459 crule1
= NEW (symbol_list
);
1461 crule1
->next
= crule
;
1463 /* insert the dummy generated by that rule into this rule. */
1465 p
= NEW (symbol_list
);
1473 if (t
== IDENTIFIER
)
1476 p
= NEW (symbol_list
);
1481 else /* handle an action. */
1483 copy_action (crule
, rulelength
);
1485 xactions
++; /* JF */
1488 } /* end of read rhs of rule */
1490 /* Put an empty link in the list to mark the end of this rule */
1491 p
= NEW (symbol_list
);
1497 complain (_("two @prec's in a row"));
1499 crule
->ruleprec
= symval
;
1504 if (!semantic_parser
)
1507 ("%guard present but %semantic_parser not specified"));
1509 copy_guard (crule
, rulelength
);
1512 else if (t
== LEFT_CURLY
)
1514 /* This case never occurs -wjh */
1516 complain (_("two actions at end of one rule"));
1517 copy_action (crule
, rulelength
);
1519 xactions
++; /* -wjh */
1522 /* If $$ is being set in default way, report if any type
1525 && first_rhs
&& lhs
->type_name
!= first_rhs
->type_name
)
1527 if (lhs
->type_name
== 0
1528 || first_rhs
->type_name
== 0
1529 || strcmp (lhs
->type_name
, first_rhs
->type_name
))
1530 complain (_("type clash (`%s' `%s') on default action"),
1531 lhs
->type_name
? lhs
->type_name
: "",
1532 first_rhs
->type_name
? first_rhs
->type_name
: "");
1534 /* Warn if there is no default for $$ but we need one. */
1535 else if (!xactions
&& !first_rhs
&& lhs
->type_name
!= 0)
1536 complain (_("empty rule for typed nonterminal, and no action"));
1541 /* these things can appear as alternatives to rules. */
1543 a) none of the documentation allows them
1544 b) most of them scan forward until finding a next %
1545 thus they may swallow lots of intervening rules
1547 else if (t
== TOKEN
)
1549 parse_token_decl (STOKEN
, SNTERM
);
1552 else if (t
== NTERM
)
1554 parse_token_decl (SNTERM
, STOKEN
);
1561 else if (t
== UNION
)
1563 parse_union_decl ();
1566 else if (t
== EXPECT
)
1568 parse_expect_decl ();
1571 else if (t
== START
)
1573 parse_start_decl ();
1580 complain (_("invalid input: %s"), token_buffer
);
1585 /* grammar has been read. Do some checking */
1587 if (nsyms
> MAXSHORT
)
1588 fatal (_("too many symbols (tokens plus nonterminals); maximum %d"),
1591 fatal (_("no rules in the input grammar"));
1593 if (typed
== 0 /* JF put out same default YYSTYPE as YACC does */
1594 && !value_components_used
)
1596 /* We used to use `unsigned long' as YYSTYPE on MSDOS,
1597 but it seems better to be consistent.
1598 Most programs should declare their own type anyway. */
1599 fprintf (fattrs
, "#ifndef YYSTYPE\n#define YYSTYPE int\n#endif\n");
1601 fprintf (fdefines
, "#ifndef YYSTYPE\n#define YYSTYPE int\n#endif\n");
1604 /* Report any undefined symbols and consider them nonterminals. */
1606 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1607 if (bp
->class == SUNKNOWN
)
1610 ("symbol %s is used, but is not defined as a token and has no rules"),
1613 bp
->value
= nvars
++;
1616 ntokens
= nsyms
- nvars
;
1619 /*--------------------------------------------------------------.
1620 | For named tokens, but not literal ones, define the name. The |
1621 | value is the user token number. |
1622 `--------------------------------------------------------------*/
1625 output_token_defines (FILE *file
)
1631 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1633 symbol
= bp
->tag
; /* get symbol */
1635 if (bp
->value
>= ntokens
)
1637 if (bp
->user_token_number
== SALIAS
)
1639 if ('\'' == *symbol
)
1640 continue; /* skip literal character */
1642 continue; /* skip error token */
1643 if ('\"' == *symbol
)
1645 /* use literal string only if given a symbol with an alias */
1647 symbol
= bp
->alias
->tag
;
1652 /* Don't #define nonliteral tokens whose names contain periods. */
1654 while ((c
= *cp
++) && c
!= '.');
1658 fprintf (file
, "#define\t%s\t%d\n", symbol
,
1659 ((translations
&& !rawtoknumflag
)
1660 ? bp
->user_token_number
: bp
->value
));
1661 if (semantic_parser
)
1662 fprintf (file
, "#define\tT%s\t%d\n", symbol
, bp
->value
);
1669 /*------------------------------------------------------------------.
1670 | Assign symbol numbers, and write definition of token names into |
1671 | fdefines. Set up vectors tags and sprec of names and precedences |
1673 `------------------------------------------------------------------*/
1681 int last_user_token_number
;
1682 static char DOLLAR
[] = "$";
1684 /* int lossage = 0; JF set but not used */
1686 tags
= NEW2 (nsyms
+ 1, char *);
1688 user_toknums
= NEW2 (nsyms
+ 1, short);
1689 user_toknums
[0] = 0;
1691 sprec
= NEW2 (nsyms
, short);
1692 sassoc
= NEW2 (nsyms
, short);
1694 max_user_token_number
= 256;
1695 last_user_token_number
= 256;
1697 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1699 if (bp
->class == SNTERM
)
1701 bp
->value
+= ntokens
;
1705 /* this symbol and its alias are a single token defn.
1706 allocate a tokno, and assign to both check agreement of
1707 ->prec and ->assoc fields and make both the same */
1709 bp
->value
= bp
->alias
->value
= tokno
++;
1711 if (bp
->prec
!= bp
->alias
->prec
)
1713 if (bp
->prec
!= 0 && bp
->alias
->prec
!= 0
1714 && bp
->user_token_number
== SALIAS
)
1715 complain (_("conflicting precedences for %s and %s"),
1716 bp
->tag
, bp
->alias
->tag
);
1718 bp
->alias
->prec
= bp
->prec
;
1720 bp
->prec
= bp
->alias
->prec
;
1723 if (bp
->assoc
!= bp
->alias
->assoc
)
1725 if (bp
->assoc
!= 0 && bp
->alias
->assoc
!= 0
1726 && bp
->user_token_number
== SALIAS
)
1727 complain (_("conflicting assoc values for %s and %s"),
1728 bp
->tag
, bp
->alias
->tag
);
1730 bp
->alias
->assoc
= bp
->assoc
;
1732 bp
->assoc
= bp
->alias
->assoc
;
1735 if (bp
->user_token_number
== SALIAS
)
1736 continue; /* do not do processing below for SALIASs */
1739 else /* bp->class == STOKEN */
1741 bp
->value
= tokno
++;
1744 if (bp
->class == STOKEN
)
1746 if (translations
&& !(bp
->user_token_number
))
1747 bp
->user_token_number
= ++last_user_token_number
;
1748 if (bp
->user_token_number
> max_user_token_number
)
1749 max_user_token_number
= bp
->user_token_number
;
1752 tags
[bp
->value
] = bp
->tag
;
1753 user_toknums
[bp
->value
] = bp
->user_token_number
;
1754 sprec
[bp
->value
] = bp
->prec
;
1755 sassoc
[bp
->value
] = bp
->assoc
;
1763 token_translations
= NEW2 (max_user_token_number
+ 1, short);
1765 /* initialize all entries for literal tokens to 2, the internal
1766 token number for $undefined., which represents all invalid
1768 for (j
= 0; j
<= max_user_token_number
; j
++)
1769 token_translations
[j
] = 2;
1771 for (bp
= firstsymbol
; bp
; bp
= bp
->next
)
1773 if (bp
->value
>= ntokens
)
1774 continue; /* non-terminal */
1775 if (bp
->user_token_number
== SALIAS
)
1777 if (token_translations
[bp
->user_token_number
] != 2)
1778 complain (_("tokens %s and %s both assigned number %d"),
1779 tags
[token_translations
[bp
->user_token_number
]],
1780 bp
->tag
, bp
->user_token_number
);
1781 token_translations
[bp
->user_token_number
] = bp
->value
;
1785 error_token_number
= errtoken
->value
;
1788 output_token_defines (ftable
);
1790 if (startval
->class == SUNKNOWN
)
1791 fatal (_("the start symbol %s is undefined"), startval
->tag
);
1792 else if (startval
->class == STOKEN
)
1793 fatal (_("the start symbol %s is a token"), startval
->tag
);
1795 start_symbol
= startval
->value
;
1799 output_token_defines (fdefines
);
1803 if (spec_name_prefix
)
1804 fprintf (fdefines
, "\nextern YYSTYPE %slval;\n",
1807 fprintf (fdefines
, "\nextern YYSTYPE yylval;\n");
1810 if (semantic_parser
)
1811 for (i
= ntokens
; i
< nsyms
; i
++)
1813 /* don't make these for dummy nonterminals made by gensym. */
1814 if (*tags
[i
] != '@')
1815 fprintf (fdefines
, "#define\tNT%s\t%d\n", tags
[i
], i
);
1818 /* `fdefines' is now a temporary file, so we need to copy its
1819 contents in `done', so we can't close it here. */
1827 /*---------------------------------------------------------------.
1828 | Convert the rules into the representation using RRHS, RLHS and |
1830 `---------------------------------------------------------------*/
1841 ritem
= NEW2 (nitems
+ 1, short);
1842 rlhs
= NEW2 (nrules
, short) - 1;
1843 rrhs
= NEW2 (nrules
, short) - 1;
1844 rprec
= NEW2 (nrules
, short) - 1;
1845 rprecsym
= NEW2 (nrules
, short) - 1;
1846 rassoc
= NEW2 (nrules
, short) - 1;
1854 rlhs
[ruleno
] = p
->sym
->value
;
1855 rrhs
[ruleno
] = itemno
;
1856 ruleprec
= p
->ruleprec
;
1861 ritem
[itemno
++] = p
->sym
->value
;
1862 /* A rule gets by default the precedence and associativity
1863 of the last token in it. */
1864 if (p
->sym
->class == STOKEN
)
1866 rprec
[ruleno
] = p
->sym
->prec
;
1867 rassoc
[ruleno
] = p
->sym
->assoc
;
1873 /* If this rule has a %prec,
1874 the specified symbol's precedence replaces the default. */
1877 rprec
[ruleno
] = ruleprec
->prec
;
1878 rassoc
[ruleno
] = ruleprec
->assoc
;
1879 rprecsym
[ruleno
] = ruleprec
->value
;
1882 ritem
[itemno
++] = -ruleno
;
1892 /*-------------------------------------------------------------------.
1893 | Read in the grammar specification and record it in the format |
1894 | described in gram.h. All guards are copied into the FGUARD file |
1895 | and all actions into FACTION, in each case forming the body of a C |
1896 | function (YYGUARD or YYACTION) which contains a switch statement |
1897 | to decide which guard or action to execute. |
1898 `-------------------------------------------------------------------*/
1904 startval
= NULL
; /* start symbol not specified yet. */
1907 /* initially assume token number translation not needed. */
1910 /* Nowadays translations is always set to 1, since we give `error' a
1911 user-token-number to satisfy the Posix demand for YYERRCODE==256.
1919 rline_allocated
= 10;
1920 rline
= NEW2 (rline_allocated
, short);
1927 semantic_parser
= 0;
1936 /* Initialize the symbol table. */
1938 /* Construct the error token */
1939 errtoken
= getsym ("error");
1940 errtoken
->class = STOKEN
;
1941 errtoken
->user_token_number
= 256; /* Value specified by POSIX. */
1942 /* Construct a token that represents all undefined literal tokens.
1943 It is always token number 2. */
1944 undeftoken
= getsym ("$undefined.");
1945 undeftoken
->class = STOKEN
;
1946 undeftoken
->user_token_number
= 2;
1948 /* Read the declaration section. Copy %{ ... %} groups to FTABLE
1949 and FDEFINES file. Also notice any %token, %left, etc. found
1951 putc ('\n', ftable
);
1953 /* %s, made from %s\n\
1954 by GNU bison %s. */\n\
1955 \n", noparserflag
? "Bison-generated parse tables" : "A Bison parser", infile
, VERSION
);
1957 fputs ("#define YYBISON 1 /* Identify Bison output. */\n\n", ftable
);
1958 read_declarations ();
1959 /* Start writing the guard and action files, if they are needed. */
1961 /* Read in the grammar, build grammar in list form. Write out
1962 guards and actions. */
1964 /* Now we know whether we need the line-number stack. If we do,
1965 write its type into the .tab.h file. */
1967 reader_output_yylsp (fdefines
);
1968 /* Write closing delimiters for actions and guards. */
1971 fputs ("#define YYLSP_NEEDED\n\n", ftable
);
1972 /* Assign the symbols their symbol numbers. Write #defines for the
1973 token symbols into FDEFINES if requested. */
1975 /* Convert the grammar into the format described in gram.h. */
1977 /* Free the symbol table data structure since symbols are now all
1978 referred to by symbol number. */
1983 reader_output_yylsp (FILE *f
)
1986 fprintf (f
, LTYPESTR
);