1 This is bison.info, produced by makeinfo version 4.0 from bison.texinfo.
4 * bison: (bison). GNU Project parser generator (yacc replacement).
7 This file documents the Bison parser generator.
9 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1995, 1998, 1999,
10 2000 Free Software Foundation, Inc.
12 Permission is granted to make and distribute verbatim copies of this
13 manual provided the copyright notice and this permission notice are
14 preserved on all copies.
16 Permission is granted to copy and distribute modified versions of
17 this manual under the conditions for verbatim copying, provided also
18 that the sections entitled "GNU General Public License" and "Conditions
19 for Using Bison" are included exactly as in the original, and provided
20 that the entire resulting derived work is distributed under the terms
21 of a permission notice identical to this one.
23 Permission is granted to copy and distribute translations of this
24 manual into another language, under the above conditions for modified
25 versions, except that the sections entitled "GNU General Public
26 License", "Conditions for Using Bison" and this permission notice may be
27 included in translations approved by the Free Software Foundation
28 instead of in the original English.
31 File: bison.info, Node: Rpcalc Rules, Next: Rpcalc Lexer, Prev: Rpcalc Decls, Up: RPN Calc
33 Grammar Rules for `rpcalc'
34 --------------------------
36 Here are the grammar rules for the reverse polish notation
44 | exp '\n' { printf ("\t%.10g\n", $1); }
48 | exp exp '+' { $$ = $1 + $2; }
49 | exp exp '-' { $$ = $1 - $2; }
50 | exp exp '*' { $$ = $1 * $2; }
51 | exp exp '/' { $$ = $1 / $2; }
53 | exp exp '^' { $$ = pow ($1, $2); }
55 | exp 'n' { $$ = -$1; }
59 The groupings of the rpcalc "language" defined here are the
60 expression (given the name `exp'), the line of input (`line'), and the
61 complete input transcript (`input'). Each of these nonterminal symbols
62 has several alternate rules, joined by the `|' punctuator which is read
63 as "or". The following sections explain what these rules mean.
65 The semantics of the language is determined by the actions taken
66 when a grouping is recognized. The actions are the C code that appears
67 inside braces. *Note Actions::.
69 You must specify these actions in C, but Bison provides the means for
70 passing semantic values between the rules. In each action, the
71 pseudo-variable `$$' stands for the semantic value for the grouping
72 that the rule is going to construct. Assigning a value to `$$' is the
73 main job of most actions. The semantic values of the components of the
74 rule are referred to as `$1', `$2', and so on.
83 File: bison.info, Node: Rpcalc Input, Next: Rpcalc Line, Up: Rpcalc Rules
85 Explanation of `input'
86 ......................
88 Consider the definition of `input':
94 This definition reads as follows: "A complete input is either an
95 empty string, or a complete input followed by an input line". Notice
96 that "complete input" is defined in terms of itself. This definition
97 is said to be "left recursive" since `input' appears always as the
98 leftmost symbol in the sequence. *Note Recursive Rules: Recursion.
100 The first alternative is empty because there are no symbols between
101 the colon and the first `|'; this means that `input' can match an empty
102 string of input (no tokens). We write the rules this way because it is
103 legitimate to type `Ctrl-d' right after you start the calculator. It's
104 conventional to put an empty alternative first and write the comment
107 The second alternate rule (`input line') handles all nontrivial
108 input. It means, "After reading any number of lines, read one more
109 line if possible." The left recursion makes this rule into a loop.
110 Since the first alternative matches empty input, the loop can be
111 executed zero or more times.
113 The parser function `yyparse' continues to process input until a
114 grammatical error is seen or the lexical analyzer says there are no more
115 input tokens; we will arrange for the latter to happen at end of file.
118 File: bison.info, Node: Rpcalc Line, Next: Rpcalc Expr, Prev: Rpcalc Input, Up: Rpcalc Rules
120 Explanation of `line'
121 .....................
123 Now consider the definition of `line':
126 | exp '\n' { printf ("\t%.10g\n", $1); }
129 The first alternative is a token which is a newline character; this
130 means that rpcalc accepts a blank line (and ignores it, since there is
131 no action). The second alternative is an expression followed by a
132 newline. This is the alternative that makes rpcalc useful. The
133 semantic value of the `exp' grouping is the value of `$1' because the
134 `exp' in question is the first symbol in the alternative. The action
135 prints this value, which is the result of the computation the user
138 This action is unusual because it does not assign a value to `$$'.
139 As a consequence, the semantic value associated with the `line' is
140 uninitialized (its value will be unpredictable). This would be a bug if
141 that value were ever used, but we don't use it: once rpcalc has printed
142 the value of the user's input line, that value is no longer needed.
145 File: bison.info, Node: Rpcalc Expr, Prev: Rpcalc Line, Up: Rpcalc Rules
147 Explanation of `expr'
148 .....................
150 The `exp' grouping has several rules, one for each kind of
151 expression. The first rule handles the simplest expressions: those
152 that are just numbers. The second handles an addition-expression,
153 which looks like two expressions followed by a plus-sign. The third
154 handles subtraction, and so on.
157 | exp exp '+' { $$ = $1 + $2; }
158 | exp exp '-' { $$ = $1 - $2; }
162 We have used `|' to join all the rules for `exp', but we could
163 equally well have written them separately:
166 exp: exp exp '+' { $$ = $1 + $2; } ;
167 exp: exp exp '-' { $$ = $1 - $2; } ;
170 Most of the rules have actions that compute the value of the
171 expression in terms of the value of its parts. For example, in the
172 rule for addition, `$1' refers to the first component `exp' and `$2'
173 refers to the second one. The third component, `'+'', has no meaningful
174 associated semantic value, but if it had one you could refer to it as
175 `$3'. When `yyparse' recognizes a sum expression using this rule, the
176 sum of the two subexpressions' values is produced as the value of the
177 entire expression. *Note Actions::.
179 You don't have to give an action for every rule. When a rule has no
180 action, Bison by default copies the value of `$1' into `$$'. This is
181 what happens in the first rule (the one that uses `NUM').
183 The formatting shown here is the recommended convention, but Bison
184 does not require it. You can add or change whitespace as much as you
185 wish. For example, this:
187 exp : NUM | exp exp '+' {$$ = $1 + $2; } | ...
189 means the same thing as this:
192 | exp exp '+' { $$ = $1 + $2; }
195 The latter, however, is much more readable.
198 File: bison.info, Node: Rpcalc Lexer, Next: Rpcalc Main, Prev: Rpcalc Rules, Up: RPN Calc
200 The `rpcalc' Lexical Analyzer
201 -----------------------------
203 The lexical analyzer's job is low-level parsing: converting
204 characters or sequences of characters into tokens. The Bison parser
205 gets its tokens by calling the lexical analyzer. *Note The Lexical
206 Analyzer Function `yylex': Lexical.
208 Only a simple lexical analyzer is needed for the RPN calculator.
209 This lexical analyzer skips blanks and tabs, then reads in numbers as
210 `double' and returns them as `NUM' tokens. Any other character that
211 isn't part of a number is a separate token. Note that the token-code
212 for such a single-character token is the character itself.
214 The return value of the lexical analyzer function is a numeric code
215 which represents a token type. The same text used in Bison rules to
216 stand for this token type is also a C expression for the numeric code
217 for the type. This works in two ways. If the token type is a
218 character literal, then its numeric code is the ASCII code for that
219 character; you can use the same character literal in the lexical
220 analyzer to express the number. If the token type is an identifier,
221 that identifier is defined by Bison as a C macro whose definition is
222 the appropriate number. In this example, therefore, `NUM' becomes a
223 macro for `yylex' to use.
225 The semantic value of the token (if it has one) is stored into the
226 global variable `yylval', which is where the Bison parser will look for
227 it. (The C data type of `yylval' is `YYSTYPE', which was defined at
228 the beginning of the grammar; *note Declarations for `rpcalc': Rpcalc
231 A token type code of zero is returned if the end-of-file is
232 encountered. (Bison recognizes any nonpositive value as indicating the
235 Here is the code for the lexical analyzer:
237 /* Lexical analyzer returns a double floating point
238 number on the stack and the token NUM, or the ASCII
239 character read if not a number. Skips all blanks
240 and tabs, returns 0 for EOF. */
249 /* skip white space */
250 while ((c = getchar ()) == ' ' || c == '\t')
252 /* process numbers */
253 if (c == '.' || isdigit (c))
256 scanf ("%lf", &yylval);
259 /* return end-of-file */
262 /* return single chars */
267 File: bison.info, Node: Rpcalc Main, Next: Rpcalc Error, Prev: Rpcalc Lexer, Up: RPN Calc
269 The Controlling Function
270 ------------------------
272 In keeping with the spirit of this example, the controlling function
273 is kept to the bare minimum. The only requirement is that it call
274 `yyparse' to start the process of parsing.
283 File: bison.info, Node: Rpcalc Error, Next: Rpcalc Gen, Prev: Rpcalc Main, Up: RPN Calc
285 The Error Reporting Routine
286 ---------------------------
288 When `yyparse' detects a syntax error, it calls the error reporting
289 function `yyerror' to print an error message (usually but not always
290 `"parse error"'). It is up to the programmer to supply `yyerror'
291 (*note Parser C-Language Interface: Interface.), so here is the
292 definition we will use:
297 yyerror (const char *s) /* Called by yyparse on error */
302 After `yyerror' returns, the Bison parser may recover from the error
303 and continue parsing if the grammar contains a suitable error rule
304 (*note Error Recovery::). Otherwise, `yyparse' returns nonzero. We
305 have not written any error rules in this example, so any invalid input
306 will cause the calculator program to exit. This is not clean behavior
307 for a real calculator, but it is adequate for the first example.
310 File: bison.info, Node: Rpcalc Gen, Next: Rpcalc Compile, Prev: Rpcalc Error, Up: RPN Calc
312 Running Bison to Make the Parser
313 --------------------------------
315 Before running Bison to produce a parser, we need to decide how to
316 arrange all the source code in one or more source files. For such a
317 simple example, the easiest thing is to put everything in one file. The
318 definitions of `yylex', `yyerror' and `main' go at the end, in the
319 "additional C code" section of the file (*note The Overall Layout of a
320 Bison Grammar: Grammar Layout.).
322 For a large project, you would probably have several source files,
323 and use `make' to arrange to recompile them.
325 With all the source in a single file, you use the following command
326 to convert it into a parser file:
330 In this example the file was called `rpcalc.y' (for "Reverse Polish
331 CALCulator"). Bison produces a file named `FILE_NAME.tab.c', removing
332 the `.y' from the original file name. The file output by Bison contains
333 the source code for `yyparse'. The additional functions in the input
334 file (`yylex', `yyerror' and `main') are copied verbatim to the output.
337 File: bison.info, Node: Rpcalc Compile, Prev: Rpcalc Gen, Up: RPN Calc
339 Compiling the Parser File
340 -------------------------
342 Here is how to compile and run the parser file:
344 # List files in current directory.
346 rpcalc.tab.c rpcalc.y
348 # Compile the Bison parser.
349 # `-lm' tells compiler to search math library for `pow'.
350 % cc rpcalc.tab.c -lm -o rpcalc
354 rpcalc rpcalc.tab.c rpcalc.y
356 The file `rpcalc' now contains the executable code. Here is an
357 example session using `rpcalc'.
364 3 7 + 3 4 5 * + - n Note the unary minus, `n'
370 ^D End-of-file indicator
374 File: bison.info, Node: Infix Calc, Next: Simple Error Recovery, Prev: RPN Calc, Up: Examples
376 Infix Notation Calculator: `calc'
377 =================================
379 We now modify rpcalc to handle infix operators instead of postfix.
380 Infix notation involves the concept of operator precedence and the need
381 for parentheses nested to arbitrary depth. Here is the Bison code for
382 `calc.y', an infix desk-top calculator.
384 /* Infix notation calculator--calc */
387 #define YYSTYPE double
391 /* BISON Declarations */
395 %left NEG /* negation--unary minus */
396 %right '^' /* exponentiation */
398 /* Grammar follows */
400 input: /* empty string */
405 | exp '\n' { printf ("\t%.10g\n", $1); }
408 exp: NUM { $$ = $1; }
409 | exp '+' exp { $$ = $1 + $3; }
410 | exp '-' exp { $$ = $1 - $3; }
411 | exp '*' exp { $$ = $1 * $3; }
412 | exp '/' exp { $$ = $1 / $3; }
413 | '-' exp %prec NEG { $$ = -$2; }
414 | exp '^' exp { $$ = pow ($1, $3); }
415 | '(' exp ')' { $$ = $2; }
419 The functions `yylex', `yyerror' and `main' can be the same as before.
421 There are two important new features shown in this code.
423 In the second section (Bison declarations), `%left' declares token
424 types and says they are left-associative operators. The declarations
425 `%left' and `%right' (right associativity) take the place of `%token'
426 which is used to declare a token type name without associativity.
427 (These tokens are single-character literals, which ordinarily don't
428 need to be declared. We declare them here to specify the
431 Operator precedence is determined by the line ordering of the
432 declarations; the higher the line number of the declaration (lower on
433 the page or screen), the higher the precedence. Hence, exponentiation
434 has the highest precedence, unary minus (`NEG') is next, followed by
435 `*' and `/', and so on. *Note Operator Precedence: Precedence.
437 The other important new feature is the `%prec' in the grammar section
438 for the unary minus operator. The `%prec' simply instructs Bison that
439 the rule `| '-' exp' has the same precedence as `NEG'--in this case the
440 next-to-highest. *Note Context-Dependent Precedence: Contextual
443 Here is a sample run of `calc.y':
446 4 + 4.5 - (34/(8*3+-3))
454 File: bison.info, Node: Simple Error Recovery, Next: Multi-function Calc, Prev: Infix Calc, Up: Examples
456 Simple Error Recovery
457 =====================
459 Up to this point, this manual has not addressed the issue of "error
460 recovery"--how to continue parsing after the parser detects a syntax
461 error. All we have handled is error reporting with `yyerror'. Recall
462 that by default `yyparse' returns after calling `yyerror'. This means
463 that an erroneous input line causes the calculator program to exit.
464 Now we show how to rectify this deficiency.
466 The Bison language itself includes the reserved word `error', which
467 may be included in the grammar rules. In the example below it has been
468 added to one of the alternatives for `line':
471 | exp '\n' { printf ("\t%.10g\n", $1); }
472 | error '\n' { yyerrok; }
475 This addition to the grammar allows for simple error recovery in the
476 event of a parse error. If an expression that cannot be evaluated is
477 read, the error will be recognized by the third rule for `line', and
478 parsing will continue. (The `yyerror' function is still called upon to
479 print its message as well.) The action executes the statement
480 `yyerrok', a macro defined automatically by Bison; its meaning is that
481 error recovery is complete (*note Error Recovery::). Note the
482 difference between `yyerrok' and `yyerror'; neither one is a misprint.
484 This form of error recovery deals with syntax errors. There are
485 other kinds of errors; for example, division by zero, which raises an
486 exception signal that is normally fatal. A real calculator program
487 must handle this signal and use `longjmp' to return to `main' and
488 resume parsing input lines; it would also have to discard the rest of
489 the current line of input. We won't discuss this issue further because
490 it is not specific to Bison programs.
493 File: bison.info, Node: Multi-function Calc, Next: Exercises, Prev: Simple Error Recovery, Up: Examples
495 Multi-Function Calculator: `mfcalc'
496 ===================================
498 Now that the basics of Bison have been discussed, it is time to move
499 on to a more advanced problem. The above calculators provided only five
500 functions, `+', `-', `*', `/' and `^'. It would be nice to have a
501 calculator that provides other mathematical functions such as `sin',
504 It is easy to add new operators to the infix calculator as long as
505 they are only single-character literals. The lexical analyzer `yylex'
506 passes back all nonnumber characters as tokens, so new grammar rules
507 suffice for adding a new operator. But we want something more
508 flexible: built-in functions whose syntax has this form:
510 FUNCTION_NAME (ARGUMENT)
512 At the same time, we will add memory to the calculator, by allowing you
513 to create named variables, store values in them, and use them later.
514 Here is a sample session with the multi-function calculator:
531 Note that multiple assignment and nested function calls are
536 * Decl: Mfcalc Decl. Bison declarations for multi-function calculator.
537 * Rules: Mfcalc Rules. Grammar rules for the calculator.
538 * Symtab: Mfcalc Symtab. Symbol table management subroutines.
541 File: bison.info, Node: Mfcalc Decl, Next: Mfcalc Rules, Up: Multi-function Calc
543 Declarations for `mfcalc'
544 -------------------------
546 Here are the C and Bison declarations for the multi-function
550 #include <math.h> /* For math functions, cos(), sin(), etc. */
551 #include "calc.h" /* Contains definition of `symrec' */
554 double val; /* For returning numbers. */
555 symrec *tptr; /* For returning symbol-table pointers */
558 %token <val> NUM /* Simple double precision number */
559 %token <tptr> VAR FNCT /* Variable and Function */
565 %left NEG /* Negation--unary minus */
566 %right '^' /* Exponentiation */
568 /* Grammar follows */
572 The above grammar introduces only two new features of the Bison
573 language. These features allow semantic values to have various data
574 types (*note More Than One Value Type: Multiple Types.).
576 The `%union' declaration specifies the entire list of possible types;
577 this is instead of defining `YYSTYPE'. The allowable types are now
578 double-floats (for `exp' and `NUM') and pointers to entries in the
579 symbol table. *Note The Collection of Value Types: Union Decl.
581 Since values can now have various types, it is necessary to
582 associate a type with each grammar symbol whose semantic value is used.
583 These symbols are `NUM', `VAR', `FNCT', and `exp'. Their declarations
584 are augmented with information about their data type (placed between
587 The Bison construct `%type' is used for declaring nonterminal
588 symbols, just as `%token' is used for declaring token types. We have
589 not used `%type' before because nonterminal symbols are normally
590 declared implicitly by the rules that define them. But `exp' must be
591 declared explicitly so we can specify its value type. *Note
592 Nonterminal Symbols: Type Decl.
595 File: bison.info, Node: Mfcalc Rules, Next: Mfcalc Symtab, Prev: Mfcalc Decl, Up: Multi-function Calc
597 Grammar Rules for `mfcalc'
598 --------------------------
600 Here are the grammar rules for the multi-function calculator. Most
601 of them are copied directly from `calc'; three rules, those which
602 mention `VAR' or `FNCT', are new.
610 | exp '\n' { printf ("\t%.10g\n", $1); }
611 | error '\n' { yyerrok; }
614 exp: NUM { $$ = $1; }
615 | VAR { $$ = $1->value.var; }
616 | VAR '=' exp { $$ = $3; $1->value.var = $3; }
617 | FNCT '(' exp ')' { $$ = (*($1->value.fnctptr))($3); }
618 | exp '+' exp { $$ = $1 + $3; }
619 | exp '-' exp { $$ = $1 - $3; }
620 | exp '*' exp { $$ = $1 * $3; }
621 | exp '/' exp { $$ = $1 / $3; }
622 | '-' exp %prec NEG { $$ = -$2; }
623 | exp '^' exp { $$ = pow ($1, $3); }
624 | '(' exp ')' { $$ = $2; }
630 File: bison.info, Node: Mfcalc Symtab, Prev: Mfcalc Rules, Up: Multi-function Calc
632 The `mfcalc' Symbol Table
633 -------------------------
635 The multi-function calculator requires a symbol table to keep track
636 of the names and meanings of variables and functions. This doesn't
637 affect the grammar rules (except for the actions) or the Bison
638 declarations, but it requires some additional C functions for support.
640 The symbol table itself consists of a linked list of records. Its
641 definition, which is kept in the header `calc.h', is as follows. It
642 provides for either functions or variables to be placed in the table.
644 /* Fonctions type. */
645 typedef double (*func_t) (double);
647 /* Data type for links in the chain of symbols. */
650 char *name; /* name of symbol */
651 int type; /* type of symbol: either VAR or FNCT */
654 double var; /* value of a VAR */
655 func_t fnctptr; /* value of a FNCT */
657 struct symrec *next; /* link field */
660 typedef struct symrec symrec;
662 /* The symbol table: a chain of `struct symrec'. */
663 extern symrec *sym_table;
665 symrec *putsym (const char *, func_t);
666 symrec *getsym (const char *);
668 The new version of `main' includes a call to `init_table', a
669 function that initializes the symbol table. Here it is, and
670 `init_table' as well:
682 yyerror (const char *s) /* Called by yyparse on error */
690 double (*fnct)(double);
693 struct init arith_fncts[] =
704 /* The symbol table: a chain of `struct symrec'. */
705 symrec *sym_table = (symrec *) 0;
707 /* Put arithmetic functions in table. */
713 for (i = 0; arith_fncts[i].fname != 0; i++)
715 ptr = putsym (arith_fncts[i].fname, FNCT);
716 ptr->value.fnctptr = arith_fncts[i].fnct;
720 By simply editing the initialization list and adding the necessary
721 include files, you can add additional functions to the calculator.
723 Two important functions allow look-up and installation of symbols in
724 the symbol table. The function `putsym' is passed a name and the type
725 (`VAR' or `FNCT') of the object to be installed. The object is linked
726 to the front of the list, and a pointer to the object is returned. The
727 function `getsym' is passed the name of the symbol to look up. If
728 found, a pointer to that symbol is returned; otherwise zero is returned.
731 putsym (char *sym_name, int sym_type)
734 ptr = (symrec *) malloc (sizeof (symrec));
735 ptr->name = (char *) malloc (strlen (sym_name) + 1);
736 strcpy (ptr->name,sym_name);
737 ptr->type = sym_type;
738 ptr->value.var = 0; /* set value to 0 even if fctn. */
739 ptr->next = (struct symrec *)sym_table;
745 getsym (const char *sym_name)
748 for (ptr = sym_table; ptr != (symrec *) 0;
749 ptr = (symrec *)ptr->next)
750 if (strcmp (ptr->name,sym_name) == 0)
755 The function `yylex' must now recognize variables, numeric values,
756 and the single-character arithmetic operators. Strings of alphanumeric
757 characters with a leading non-digit are recognized as either variables
758 or functions depending on what the symbol table says about them.
760 The string is passed to `getsym' for look up in the symbol table. If
761 the name appears in the table, a pointer to its location and its type
762 (`VAR' or `FNCT') is returned to `yyparse'. If it is not already in
763 the table, then it is installed as a `VAR' using `putsym'. Again, a
764 pointer and its type (which must be `VAR') is returned to `yyparse'.
766 No change is needed in the handling of numeric values and arithmetic
767 operators in `yylex'.
776 /* Ignore whitespace, get first nonwhite character. */
777 while ((c = getchar ()) == ' ' || c == '\t');
782 /* Char starts a number => parse the number. */
783 if (c == '.' || isdigit (c))
786 scanf ("%lf", &yylval.val);
790 /* Char starts an identifier => read the name. */
794 static char *symbuf = 0;
795 static int length = 0;
798 /* Initially make the buffer long enough
799 for a 40-character symbol name. */
801 length = 40, symbuf = (char *)malloc (length + 1);
806 /* If buffer is full, make it bigger. */
810 symbuf = (char *)realloc (symbuf, length + 1);
812 /* Add this character to the buffer. */
814 /* Get another character. */
817 while (c != EOF && isalnum (c));
824 s = putsym (symbuf, VAR);
829 /* Any other character is a token by itself. */
833 This program is both powerful and flexible. You may easily add new
834 functions, and it is a simple job to modify this code to install
835 predefined variables such as `pi' or `e' as well.
838 File: bison.info, Node: Exercises, Prev: Multi-function Calc, Up: Examples
843 1. Add some new functions from `math.h' to the initialization list.
845 2. Add another array that contains constants and their values. Then
846 modify `init_table' to add these constants to the symbol table.
847 It will be easiest to give the constants type `VAR'.
849 3. Make the program report an error if the user refers to an
850 uninitialized variable in any way except to store a value in it.
853 File: bison.info, Node: Grammar File, Next: Interface, Prev: Examples, Up: Top
858 Bison takes as input a context-free grammar specification and
859 produces a C-language function that recognizes correct instances of the
862 The Bison grammar input file conventionally has a name ending in
867 * Grammar Outline:: Overall layout of the grammar file.
868 * Symbols:: Terminal and nonterminal symbols.
869 * Rules:: How to write grammar rules.
870 * Recursion:: Writing recursive rules.
871 * Semantics:: Semantic values and actions.
872 * Declarations:: All kinds of Bison declarations are described here.
873 * Multiple Parsers:: Putting more than one Bison parser in one program.
876 File: bison.info, Node: Grammar Outline, Next: Symbols, Up: Grammar File
878 Outline of a Bison Grammar
879 ==========================
881 A Bison grammar file has four main sections, shown here with the
882 appropriate delimiters:
896 Comments enclosed in `/* ... */' may appear in any of the sections.
900 * C Declarations:: Syntax and usage of the C declarations section.
901 * Bison Declarations:: Syntax and usage of the Bison declarations section.
902 * Grammar Rules:: Syntax and usage of the grammar rules section.
903 * C Code:: Syntax and usage of the additional C code section.
906 File: bison.info, Node: C Declarations, Next: Bison Declarations, Up: Grammar Outline
908 The C Declarations Section
909 --------------------------
911 The C DECLARATIONS section contains macro definitions and
912 declarations of functions and variables that are used in the actions in
913 the grammar rules. These are copied to the beginning of the parser
914 file so that they precede the definition of `yyparse'. You can use
915 `#include' to get the declarations from a header file. If you don't
916 need any C declarations, you may omit the `%{' and `%}' delimiters that
917 bracket this section.
920 File: bison.info, Node: Bison Declarations, Next: Grammar Rules, Prev: C Declarations, Up: Grammar Outline
922 The Bison Declarations Section
923 ------------------------------
925 The BISON DECLARATIONS section contains declarations that define
926 terminal and nonterminal symbols, specify precedence, and so on. In
927 some simple grammars you may not need any declarations. *Note Bison
928 Declarations: Declarations.
931 File: bison.info, Node: Grammar Rules, Next: C Code, Prev: Bison Declarations, Up: Grammar Outline
933 The Grammar Rules Section
934 -------------------------
936 The "grammar rules" section contains one or more Bison grammar
937 rules, and nothing else. *Note Syntax of Grammar Rules: Rules.
939 There must always be at least one grammar rule, and the first `%%'
940 (which precedes the grammar rules) may never be omitted even if it is
941 the first thing in the file.
944 File: bison.info, Node: C Code, Prev: Grammar Rules, Up: Grammar Outline
946 The Additional C Code Section
947 -----------------------------
949 The ADDITIONAL C CODE section is copied verbatim to the end of the
950 parser file, just as the C DECLARATIONS section is copied to the
951 beginning. This is the most convenient place to put anything that you
952 want to have in the parser file but which need not come before the
953 definition of `yyparse'. For example, the definitions of `yylex' and
954 `yyerror' often go here. *Note Parser C-Language Interface: Interface.
956 If the last section is empty, you may omit the `%%' that separates it
957 from the grammar rules.
959 The Bison parser itself contains many static variables whose names
960 start with `yy' and many macros whose names start with `YY'. It is a
961 good idea to avoid using any such names (except those documented in this
962 manual) in the additional C code section of the grammar file.
965 File: bison.info, Node: Symbols, Next: Rules, Prev: Grammar Outline, Up: Grammar File
967 Symbols, Terminal and Nonterminal
968 =================================
970 "Symbols" in Bison grammars represent the grammatical classifications
973 A "terminal symbol" (also known as a "token type") represents a
974 class of syntactically equivalent tokens. You use the symbol in grammar
975 rules to mean that a token in that class is allowed. The symbol is
976 represented in the Bison parser by a numeric code, and the `yylex'
977 function returns a token type code to indicate what kind of token has
978 been read. You don't need to know what the code value is; you can use
979 the symbol to stand for it.
981 A "nonterminal symbol" stands for a class of syntactically equivalent
982 groupings. The symbol name is used in writing grammar rules. By
983 convention, it should be all lower case.
985 Symbol names can contain letters, digits (not at the beginning),
986 underscores and periods. Periods make sense only in nonterminals.
988 There are three ways of writing terminal symbols in the grammar:
990 * A "named token type" is written with an identifier, like an
991 identifier in C. By convention, it should be all upper case. Each
992 such name must be defined with a Bison declaration such as
993 `%token'. *Note Token Type Names: Token Decl.
995 * A "character token type" (or "literal character token") is written
996 in the grammar using the same syntax used in C for character
997 constants; for example, `'+'' is a character token type. A
998 character token type doesn't need to be declared unless you need to
999 specify its semantic value data type (*note Data Types of Semantic
1000 Values: Value Type.), associativity, or precedence (*note Operator
1001 Precedence: Precedence.).
1003 By convention, a character token type is used only to represent a
1004 token that consists of that particular character. Thus, the token
1005 type `'+'' is used to represent the character `+' as a token.
1006 Nothing enforces this convention, but if you depart from it, your
1007 program will confuse other readers.
1009 All the usual escape sequences used in character literals in C can
1010 be used in Bison as well, but you must not use the null character
1011 as a character literal because its ASCII code, zero, is the code
1012 `yylex' returns for end-of-input (*note Calling Convention for
1013 `yylex': Calling Convention.).
1015 * A "literal string token" is written like a C string constant; for
1016 example, `"<="' is a literal string token. A literal string token
1017 doesn't need to be declared unless you need to specify its semantic
1018 value data type (*note Value Type::), associativity, or precedence
1019 (*note Precedence::).
1021 You can associate the literal string token with a symbolic name as
1022 an alias, using the `%token' declaration (*note Token
1023 Declarations: Token Decl.). If you don't do that, the lexical
1024 analyzer has to retrieve the token number for the literal string
1025 token from the `yytname' table (*note Calling Convention::).
1027 *WARNING*: literal string tokens do not work in Yacc.
1029 By convention, a literal string token is used only to represent a
1030 token that consists of that particular string. Thus, you should
1031 use the token type `"<="' to represent the string `<=' as a token.
1032 Bison does not enforce this convention, but if you depart from
1033 it, people who read your program will be confused.
1035 All the escape sequences used in string literals in C can be used
1036 in Bison as well. A literal string token must contain two or more
1037 characters; for a token containing just one character, use a
1038 character token (see above).
1040 How you choose to write a terminal symbol has no effect on its
1041 grammatical meaning. That depends only on where it appears in rules and
1042 on when the parser function returns that symbol.
1044 The value returned by `yylex' is always one of the terminal symbols
1045 (or 0 for end-of-input). Whichever way you write the token type in the
1046 grammar rules, you write it the same way in the definition of `yylex'.
1047 The numeric code for a character token type is simply the ASCII code for
1048 the character, so `yylex' can use the identical character constant to
1049 generate the requisite code. Each named token type becomes a C macro in
1050 the parser file, so `yylex' can use the name to stand for the code.
1051 (This is why periods don't make sense in terminal symbols.) *Note
1052 Calling Convention for `yylex': Calling Convention.
1054 If `yylex' is defined in a separate file, you need to arrange for the
1055 token-type macro definitions to be available there. Use the `-d'
1056 option when you run Bison, so that it will write these macro definitions
1057 into a separate header file `NAME.tab.h' which you can include in the
1058 other source files that need it. *Note Invoking Bison: Invocation.
1060 The symbol `error' is a terminal symbol reserved for error recovery
1061 (*note Error Recovery::); you shouldn't use it for any other purpose.
1062 In particular, `yylex' should never return this value.
1065 File: bison.info, Node: Rules, Next: Recursion, Prev: Symbols, Up: Grammar File
1067 Syntax of Grammar Rules
1068 =======================
1070 A Bison grammar rule has the following general form:
1072 RESULT: COMPONENTS...
1075 where RESULT is the nonterminal symbol that this rule describes, and
1076 COMPONENTS are various terminal and nonterminal symbols that are put
1077 together by this rule (*note Symbols::).
1084 says that two groupings of type `exp', with a `+' token in between, can
1085 be combined into a larger grouping of type `exp'.
1087 Whitespace in rules is significant only to separate symbols. You
1088 can add extra whitespace as you wish.
1090 Scattered among the components can be ACTIONS that determine the
1091 semantics of the rule. An action looks like this:
1095 Usually there is only one action and it follows the components. *Note
1098 Multiple rules for the same RESULT can be written separately or can
1099 be joined with the vertical-bar character `|' as follows:
1101 RESULT: RULE1-COMPONENTS...
1102 | RULE2-COMPONENTS...
1106 They are still considered distinct rules even when joined in this way.
1108 If COMPONENTS in a rule is empty, it means that RESULT can match the
1109 empty string. For example, here is how to define a comma-separated
1110 sequence of zero or more `exp' groupings:
1120 It is customary to write a comment `/* empty */' in each rule with no
1124 File: bison.info, Node: Recursion, Next: Semantics, Prev: Rules, Up: Grammar File
1129 A rule is called "recursive" when its RESULT nonterminal appears
1130 also on its right hand side. Nearly all Bison grammars need to use
1131 recursion, because that is the only way to define a sequence of any
1132 number of a particular thing. Consider this recursive definition of a
1133 comma-separated sequence of one or more expressions:
1139 Since the recursive use of `expseq1' is the leftmost symbol in the
1140 right hand side, we call this "left recursion". By contrast, here the
1141 same construct is defined using "right recursion":
1147 Any kind of sequence can be defined using either left recursion or
1148 right recursion, but you should always use left recursion, because it
1149 can parse a sequence of any number of elements with bounded stack
1150 space. Right recursion uses up space on the Bison stack in proportion
1151 to the number of elements in the sequence, because all the elements
1152 must be shifted onto the stack before the rule can be applied even
1153 once. *Note The Bison Parser Algorithm: Algorithm, for further
1154 explanation of this.
1156 "Indirect" or "mutual" recursion occurs when the result of the rule
1157 does not appear directly on its right hand side, but does appear in
1158 rules for other nonterminals which do appear on its right hand side.
1163 | primary '+' primary
1170 defines two mutually-recursive nonterminals, since each refers to the
1174 File: bison.info, Node: Semantics, Next: Declarations, Prev: Recursion, Up: Grammar File
1176 Defining Language Semantics
1177 ===========================
1179 The grammar rules for a language determine only the syntax. The
1180 semantics are determined by the semantic values associated with various
1181 tokens and groupings, and by the actions taken when various groupings
1184 For example, the calculator calculates properly because the value
1185 associated with each expression is the proper number; it adds properly
1186 because the action for the grouping `X + Y' is to add the numbers
1187 associated with X and Y.
1191 * Value Type:: Specifying one data type for all semantic values.
1192 * Multiple Types:: Specifying several alternative data types.
1193 * Actions:: An action is the semantic definition of a grammar rule.
1194 * Action Types:: Specifying data types for actions to operate on.
1195 * Mid-Rule Actions:: Most actions go at the end of a rule.
1196 This says when, why and how to use the exceptional
1197 action in the middle of a rule.
1200 File: bison.info, Node: Value Type, Next: Multiple Types, Up: Semantics
1202 Data Types of Semantic Values
1203 -----------------------------
1205 In a simple program it may be sufficient to use the same data type
1206 for the semantic values of all language constructs. This was true in
1207 the RPN and infix calculator examples (*note Reverse Polish Notation
1208 Calculator: RPN Calc.).
1210 Bison's default is to use type `int' for all semantic values. To
1211 specify some other type, define `YYSTYPE' as a macro, like this:
1213 #define YYSTYPE double
1215 This macro definition must go in the C declarations section of the
1216 grammar file (*note Outline of a Bison Grammar: Grammar Outline.).
1219 File: bison.info, Node: Multiple Types, Next: Actions, Prev: Value Type, Up: Semantics
1221 More Than One Value Type
1222 ------------------------
1224 In most programs, you will need different data types for different
1225 kinds of tokens and groupings. For example, a numeric constant may
1226 need type `int' or `long', while a string constant needs type `char *',
1227 and an identifier might need a pointer to an entry in the symbol table.
1229 To use more than one data type for semantic values in one parser,
1230 Bison requires you to do two things:
1232 * Specify the entire collection of possible data types, with the
1233 `%union' Bison declaration (*note The Collection of Value Types:
1236 * Choose one of those types for each symbol (terminal or
1237 nonterminal) for which semantic values are used. This is done for
1238 tokens with the `%token' Bison declaration (*note Token Type
1239 Names: Token Decl.) and for groupings with the `%type' Bison
1240 declaration (*note Nonterminal Symbols: Type Decl.).
1243 File: bison.info, Node: Actions, Next: Action Types, Prev: Multiple Types, Up: Semantics
1248 An action accompanies a syntactic rule and contains C code to be
1249 executed each time an instance of that rule is recognized. The task of
1250 most actions is to compute a semantic value for the grouping built by
1251 the rule from the semantic values associated with tokens or smaller
1254 An action consists of C statements surrounded by braces, much like a
1255 compound statement in C. It can be placed at any position in the rule;
1256 it is executed at that position. Most rules have just one action at
1257 the end of the rule, following all the components. Actions in the
1258 middle of a rule are tricky and used only for special purposes (*note
1259 Actions in Mid-Rule: Mid-Rule Actions.).
1261 The C code in an action can refer to the semantic values of the
1262 components matched by the rule with the construct `$N', which stands for
1263 the value of the Nth component. The semantic value for the grouping
1264 being constructed is `$$'. (Bison translates both of these constructs
1265 into array element references when it copies the actions into the parser
1268 Here is a typical example:
1274 This rule constructs an `exp' from two smaller `exp' groupings
1275 connected by a plus-sign token. In the action, `$1' and `$3' refer to
1276 the semantic values of the two component `exp' groupings, which are the
1277 first and third symbols on the right hand side of the rule. The sum is
1278 stored into `$$' so that it becomes the semantic value of the
1279 addition-expression just recognized by the rule. If there were a
1280 useful semantic value associated with the `+' token, it could be
1281 referred to as `$2'.
1283 If you don't specify an action for a rule, Bison supplies a default:
1284 `$$ = $1'. Thus, the value of the first symbol in the rule becomes the
1285 value of the whole rule. Of course, the default rule is valid only if
1286 the two data types match. There is no meaningful default action for an
1287 empty rule; every empty rule must have an explicit action unless the
1288 rule's value does not matter.
1290 `$N' with N zero or negative is allowed for reference to tokens and
1291 groupings on the stack _before_ those that match the current rule.
1292 This is a very risky practice, and to use it reliably you must be
1293 certain of the context in which the rule is applied. Here is a case in
1294 which you can use this reliably:
1296 foo: expr bar '+' expr { ... }
1297 | expr bar '-' expr { ... }
1301 { previous_expr = $0; }
1304 As long as `bar' is used only in the fashion shown here, `$0' always
1305 refers to the `expr' which precedes `bar' in the definition of `foo'.
1308 File: bison.info, Node: Action Types, Next: Mid-Rule Actions, Prev: Actions, Up: Semantics
1310 Data Types of Values in Actions
1311 -------------------------------
1313 If you have chosen a single data type for semantic values, the `$$'
1314 and `$N' constructs always have that data type.
1316 If you have used `%union' to specify a variety of data types, then
1317 you must declare a choice among these types for each terminal or
1318 nonterminal symbol that can have a semantic value. Then each time you
1319 use `$$' or `$N', its data type is determined by which symbol it refers
1320 to in the rule. In this example,
1326 `$1' and `$3' refer to instances of `exp', so they all have the data
1327 type declared for the nonterminal symbol `exp'. If `$2' were used, it
1328 would have the data type declared for the terminal symbol `'+'',
1329 whatever that might be.
1331 Alternatively, you can specify the data type when you refer to the
1332 value, by inserting `<TYPE>' after the `$' at the beginning of the
1333 reference. For example, if you have defined types as shown here:
1340 then you can write `$<itype>1' to refer to the first subunit of the
1341 rule as an integer, or `$<dtype>1' to refer to it as a double.