1 Ceci est le fichier Info bison.info, produit par Makeinfo version 4.0 à
5 * bison: (bison). GNU Project parser generator (yacc replacement).
8 This file documents the Bison parser generator.
10 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1995, 1998, 1999,
11 2000 Free Software Foundation, Inc.
13 Permission is granted to make and distribute verbatim copies of this
14 manual provided the copyright notice and this permission notice are
15 preserved on all copies.
17 Permission is granted to copy and distribute modified versions of
18 this manual under the conditions for verbatim copying, provided also
19 that the sections entitled "GNU General Public License" and "Conditions
20 for Using Bison" are included exactly as in the original, and provided
21 that the entire resulting derived work is distributed under the terms
22 of a permission notice identical to this one.
24 Permission is granted to copy and distribute translations of this
25 manual into another language, under the above conditions for modified
26 versions, except that the sections entitled "GNU General Public
27 License", "Conditions for Using Bison" and this permission notice may be
28 included in translations approved by the Free Software Foundation
29 instead of in the original English.
32 File: bison.info, Node: Mid-Rule Actions, Prev: Action Types, Up: Semantics
37 Occasionally it is useful to put an action in the middle of a rule.
38 These actions are written just like usual end-of-rule actions, but they
39 are executed before the parser even recognizes the following components.
41 A mid-rule action may refer to the components preceding it using
42 `$N', but it may not refer to subsequent components because it is run
43 before they are parsed.
45 The mid-rule action itself counts as one of the components of the
46 rule. This makes a difference when there is another action later in
47 the same rule (and usually there is another at the end): you have to
48 count the actions along with the symbols when working out which number
51 The mid-rule action can also have a semantic value. The action can
52 set its value with an assignment to `$$', and actions later in the rule
53 can refer to the value using `$N'. Since there is no symbol to name
54 the action, there is no way to declare a data type for the value in
55 advance, so you must use the `$<...>' construct to specify a data type
56 each time you refer to this value.
58 There is no way to set the value of the entire rule with a mid-rule
59 action, because assignments to `$$' do not have that effect. The only
60 way to set the value for the entire rule is with an ordinary action at
63 Here is an example from a hypothetical compiler, handling a `let'
64 statement that looks like `let (VARIABLE) STATEMENT' and serves to
65 create a variable named VARIABLE temporarily for the duration of
66 STATEMENT. To parse this construct, we must put VARIABLE into the
67 symbol table while STATEMENT is parsed, then remove it afterward. Here
71 { $<context>$ = push_context ();
72 declare_variable ($3); }
74 pop_context ($<context>5); }
76 As soon as `let (VARIABLE)' has been recognized, the first action is
77 run. It saves a copy of the current semantic context (the list of
78 accessible variables) as its semantic value, using alternative
79 `context' in the data-type union. Then it calls `declare_variable' to
80 add the new variable to that list. Once the first action is finished,
81 the embedded statement `stmt' can be parsed. Note that the mid-rule
82 action is component number 5, so the `stmt' is component number 6.
84 After the embedded statement is parsed, its semantic value becomes
85 the value of the entire `let'-statement. Then the semantic value from
86 the earlier action is used to restore the prior list of variables. This
87 removes the temporary `let'-variable from the list so that it won't
88 appear to exist while the rest of the program is parsed.
90 Taking action before a rule is completely recognized often leads to
91 conflicts since the parser must commit to a parse in order to execute
92 the action. For example, the following two rules, without mid-rule
93 actions, can coexist in a working parser because the parser can shift
94 the open-brace token and look at what follows before deciding whether
95 there is a declaration or not:
97 compound: '{' declarations statements '}'
101 But when we add a mid-rule action as follows, the rules become
104 compound: { prepare_for_local_variables (); }
105 '{' declarations statements '}'
109 Now the parser is forced to decide whether to run the mid-rule action
110 when it has read no farther than the open-brace. In other words, it
111 must commit to using one rule or the other, without sufficient
112 information to do it correctly. (The open-brace token is what is called
113 the "look-ahead" token at this time, since the parser is still deciding
114 what to do about it. *Note Look-Ahead Tokens: Look-Ahead.)
116 You might think that you could correct the problem by putting
117 identical actions into the two rules, like this:
119 compound: { prepare_for_local_variables (); }
120 '{' declarations statements '}'
121 | { prepare_for_local_variables (); }
125 But this does not help, because Bison does not realize that the two
126 actions are identical. (Bison never tries to understand the C code in
129 If the grammar is such that a declaration can be distinguished from a
130 statement by the first token (which is true in C), then one solution
131 which does work is to put the action after the open-brace, like this:
133 compound: '{' { prepare_for_local_variables (); }
134 declarations statements '}'
138 Now the first token of the following declaration or statement, which
139 would in any case tell Bison which rule to use, can still do so.
141 Another solution is to bury the action inside a nonterminal symbol
142 which serves as a subroutine:
144 subroutine: /* empty */
145 { prepare_for_local_variables (); }
149 '{' declarations statements '}'
154 Now Bison can execute the action in the rule for `subroutine' without
155 deciding which rule for `compound' it will eventually use. Note that
156 the action is now at the end of its rule. Any mid-rule action can be
157 converted to an end-of-rule action in this way, and this is what Bison
158 actually does to implement mid-rule actions.
161 File: bison.info, Node: Declarations, Next: Multiple Parsers, Prev: Semantics, Up: Grammar File
166 The "Bison declarations" section of a Bison grammar defines the
167 symbols used in formulating the grammar and the data types of semantic
168 values. *Note Symbols::.
170 All token type names (but not single-character literal tokens such as
171 `'+'' and `'*'') must be declared. Nonterminal symbols must be
172 declared if you need to specify which data type to use for the semantic
173 value (*note More Than One Value Type: Multiple Types.).
175 The first rule in the file also specifies the start symbol, by
176 default. If you want some other symbol to be the start symbol, you
177 must declare it explicitly (*note Languages and Context-Free Grammars:
178 Language and Grammar.).
182 * Token Decl:: Declaring terminal symbols.
183 * Precedence Decl:: Declaring terminals with precedence and associativity.
184 * Union Decl:: Declaring the set of all semantic value types.
185 * Type Decl:: Declaring the choice of type for a nonterminal symbol.
186 * Expect Decl:: Suppressing warnings about shift/reduce conflicts.
187 * Start Decl:: Specifying the start symbol.
188 * Pure Decl:: Requesting a reentrant parser.
189 * Decl Summary:: Table of all Bison declarations.
192 File: bison.info, Node: Token Decl, Next: Precedence Decl, Up: Declarations
197 The basic way to declare a token type name (terminal symbol) is as
202 Bison will convert this into a `#define' directive in the parser, so
203 that the function `yylex' (if it is in this file) can use the name NAME
204 to stand for this token type's code.
206 Alternatively, you can use `%left', `%right', or `%nonassoc' instead
207 of `%token', if you wish to specify associativity and precedence.
208 *Note Operator Precedence: Precedence Decl.
210 You can explicitly specify the numeric code for a token type by
211 appending an integer value in the field immediately following the token
216 It is generally best, however, to let Bison choose the numeric codes for
217 all token types. Bison will automatically select codes that don't
218 conflict with each other or with ASCII characters.
220 In the event that the stack type is a union, you must augment the
221 `%token' or other token declaration to include the data type
222 alternative delimited by angle-brackets (*note More Than One Value
223 Type: Multiple Types.).
227 %union { /* define stack type */
231 %token <val> NUM /* define token NUM and its type */
233 You can associate a literal string token with a token type name by
234 writing the literal string at the end of a `%token' declaration which
235 declares the name. For example:
239 For example, a grammar for the C language might specify these names with
240 equivalent literal string tokens:
242 %token <operator> OR "||"
243 %token <operator> LE 134 "<="
246 Once you equate the literal string and the token name, you can use them
247 interchangeably in further declarations or the grammar rules. The
248 `yylex' function can use the token name or the literal string to obtain
249 the token type code number (*note Calling Convention::).
252 File: bison.info, Node: Precedence Decl, Next: Union Decl, Prev: Token Decl, Up: Declarations
257 Use the `%left', `%right' or `%nonassoc' declaration to declare a
258 token and specify its precedence and associativity, all at once. These
259 are called "precedence declarations". *Note Operator Precedence:
260 Precedence, for general information on operator precedence.
262 The syntax of a precedence declaration is the same as that of
269 %left <TYPE> SYMBOLS...
271 And indeed any of these declarations serves the purposes of `%token'.
272 But in addition, they specify the associativity and relative precedence
275 * The associativity of an operator OP determines how repeated uses
276 of the operator nest: whether `X OP Y OP Z' is parsed by grouping
277 X with Y first or by grouping Y with Z first. `%left' specifies
278 left-associativity (grouping X with Y first) and `%right'
279 specifies right-associativity (grouping Y with Z first).
280 `%nonassoc' specifies no associativity, which means that `X OP Y
281 OP Z' is considered a syntax error.
283 * The precedence of an operator determines how it nests with other
284 operators. All the tokens declared in a single precedence
285 declaration have equal precedence and nest together according to
286 their associativity. When two tokens declared in different
287 precedence declarations associate, the one declared later has the
288 higher precedence and is grouped first.
291 File: bison.info, Node: Union Decl, Next: Type Decl, Prev: Precedence Decl, Up: Declarations
293 The Collection of Value Types
294 -----------------------------
296 The `%union' declaration specifies the entire collection of possible
297 data types for semantic values. The keyword `%union' is followed by a
298 pair of braces containing the same thing that goes inside a `union' in
308 This says that the two alternative types are `double' and `symrec *'.
309 They are given names `val' and `tptr'; these names are used in the
310 `%token' and `%type' declarations to pick one of the types for a
311 terminal or nonterminal symbol (*note Nonterminal Symbols: Type Decl.).
313 Note that, unlike making a `union' declaration in C, you do not write
314 a semicolon after the closing brace.
317 File: bison.info, Node: Type Decl, Next: Expect Decl, Prev: Union Decl, Up: Declarations
322 When you use `%union' to specify multiple value types, you must declare
323 the value type of each nonterminal symbol for which values are used.
324 This is done with a `%type' declaration, like this:
326 %type <TYPE> NONTERMINAL...
328 Here NONTERMINAL is the name of a nonterminal symbol, and TYPE is the
329 name given in the `%union' to the alternative that you want (*note The
330 Collection of Value Types: Union Decl.). You can give any number of
331 nonterminal symbols in the same `%type' declaration, if they have the
332 same value type. Use spaces to separate the symbol names.
334 You can also declare the value type of a terminal symbol. To do
335 this, use the same `<TYPE>' construction in a declaration for the
336 terminal symbol. All kinds of token declarations allow `<TYPE>'.
339 File: bison.info, Node: Expect Decl, Next: Start Decl, Prev: Type Decl, Up: Declarations
341 Suppressing Conflict Warnings
342 -----------------------------
344 Bison normally warns if there are any conflicts in the grammar
345 (*note Shift/Reduce Conflicts: Shift/Reduce.), but most real grammars
346 have harmless shift/reduce conflicts which are resolved in a
347 predictable way and would be difficult to eliminate. It is desirable
348 to suppress the warning about these conflicts unless the number of
349 conflicts changes. You can do this with the `%expect' declaration.
351 The declaration looks like this:
355 Here N is a decimal integer. The declaration says there should be no
356 warning if there are N shift/reduce conflicts and no reduce/reduce
357 conflicts. The usual warning is given if there are either more or fewer
358 conflicts, or if there are any reduce/reduce conflicts.
360 In general, using `%expect' involves these steps:
362 * Compile your grammar without `%expect'. Use the `-v' option to
363 get a verbose list of where the conflicts occur. Bison will also
364 print the number of conflicts.
366 * Check each of the conflicts to make sure that Bison's default
367 resolution is what you really want. If not, rewrite the grammar
368 and go back to the beginning.
370 * Add an `%expect' declaration, copying the number N from the number
373 Now Bison will stop annoying you about the conflicts you have
374 checked, but it will warn you again if changes in the grammar result in
375 additional conflicts.
378 File: bison.info, Node: Start Decl, Next: Pure Decl, Prev: Expect Decl, Up: Declarations
383 Bison assumes by default that the start symbol for the grammar is
384 the first nonterminal specified in the grammar specification section.
385 The programmer may override this restriction with the `%start'
386 declaration as follows:
391 File: bison.info, Node: Pure Decl, Next: Decl Summary, Prev: Start Decl, Up: Declarations
393 A Pure (Reentrant) Parser
394 -------------------------
396 A "reentrant" program is one which does not alter in the course of
397 execution; in other words, it consists entirely of "pure" (read-only)
398 code. Reentrancy is important whenever asynchronous execution is
399 possible; for example, a non-reentrant program may not be safe to call
400 from a signal handler. In systems with multiple threads of control, a
401 non-reentrant program must be called only within interlocks.
403 Normally, Bison generates a parser which is not reentrant. This is
404 suitable for most uses, and it permits compatibility with YACC. (The
405 standard YACC interfaces are inherently nonreentrant, because they use
406 statically allocated variables for communication with `yylex',
407 including `yylval' and `yylloc'.)
409 Alternatively, you can generate a pure, reentrant parser. The Bison
410 declaration `%pure_parser' says that you want the parser to be
411 reentrant. It looks like this:
415 The result is that the communication variables `yylval' and `yylloc'
416 become local variables in `yyparse', and a different calling convention
417 is used for the lexical analyzer function `yylex'. *Note Calling
418 Conventions for Pure Parsers: Pure Calling, for the details of this.
419 The variable `yynerrs' also becomes local in `yyparse' (*note The Error
420 Reporting Function `yyerror': Error Reporting.). The convention for
421 calling `yyparse' itself is unchanged.
423 Whether the parser is pure has nothing to do with the grammar rules.
424 You can generate either a pure parser or a nonreentrant parser from any
428 File: bison.info, Node: Decl Summary, Prev: Pure Decl, Up: Declarations
430 Bison Declaration Summary
431 -------------------------
433 Here is a summary of all Bison declarations:
436 Declare the collection of data types that semantic values may have
437 (*note The Collection of Value Types: Union Decl.).
440 Declare a terminal symbol (token type name) with no precedence or
441 associativity specified (*note Token Type Names: Token Decl.).
444 Declare a terminal symbol (token type name) that is
445 right-associative (*note Operator Precedence: Precedence Decl.).
448 Declare a terminal symbol (token type name) that is
449 left-associative (*note Operator Precedence: Precedence Decl.).
452 Declare a terminal symbol (token type name) that is nonassociative
453 (using it in a way that would be associative is a syntax error)
454 (*note Operator Precedence: Precedence Decl.).
457 Declare the type of semantic values for a nonterminal symbol
458 (*note Nonterminal Symbols: Type Decl.).
461 Specify the grammar's start symbol (*note The Start-Symbol: Start
465 Declare the expected number of shift-reduce conflicts (*note
466 Suppressing Conflict Warnings: Expect Decl.).
469 Generate the code processing the locations (*note Special Features
470 for Use in Actions: Action Features.). This mode is enabled as
471 soon as the grammar uses the special `@N' tokens, but if your
472 grammar does not use it, using `%locations' allows for more
473 accurate parse error messages.
476 Request a pure (reentrant) parser program (*note A Pure
477 (Reentrant) Parser: Pure Decl.).
480 Don't generate any `#line' preprocessor commands in the parser
481 file. Ordinarily Bison writes these commands in the parser file
482 so that the C compiler and debuggers will associate errors and
483 object code with your source file (the grammar file). This
484 directive causes them to associate errors with the parser file,
485 treating it an independent source file in its own right.
488 The output file `NAME.h' normally defines the tokens with
489 Yacc-compatible token numbers. If this option is specified, the
490 internal Bison numbers are used instead. (Yacc-compatible numbers
491 start at 257 except for single-character tokens; Bison assigns
492 token numbers sequentially for all tokens starting at 3.)
495 Generate an array of token names in the parser file. The name of
496 the array is `yytname'; `yytname[I]' is the name of the token
497 whose internal Bison token code number is I. The first three
498 elements of `yytname' are always `"$"', `"error"', and
499 `"$illegal"'; after these come the symbols defined in the grammar
502 For single-character literal tokens and literal string tokens, the
503 name in the table includes the single-quote or double-quote
504 characters: for example, `"'+'"' is a single-character literal and
505 `"\"<=\""' is a literal string token. All the characters of the
506 literal string token appear verbatim in the string found in the
507 table; even double-quote characters are not escaped. For example,
508 if the token consists of three characters `*"*', its string in
509 `yytname' contains `"*"*"'. (In C, that would be written as
512 When you specify `%token_table', Bison also generates macro
513 definitions for macros `YYNTOKENS', `YYNNTS', and `YYNRULES', and
517 The highest token number, plus one.
520 The number of nonterminal symbols.
523 The number of grammar rules,
526 The number of parser states (*note Parser States::).
529 File: bison.info, Node: Multiple Parsers, Prev: Declarations, Up: Grammar File
531 Multiple Parsers in the Same Program
532 ====================================
534 Most programs that use Bison parse only one language and therefore
535 contain only one Bison parser. But what if you want to parse more than
536 one language with the same program? Then you need to avoid a name
537 conflict between different definitions of `yyparse', `yylval', and so
540 The easy way to do this is to use the option `-p PREFIX' (*note
541 Invoking Bison: Invocation.). This renames the interface functions and
542 variables of the Bison parser to start with PREFIX instead of `yy'.
543 You can use this to give each parser distinct names that do not
546 The precise list of symbols renamed is `yyparse', `yylex',
547 `yyerror', `yynerrs', `yylval', `yychar' and `yydebug'. For example,
548 if you use `-p c', the names become `cparse', `clex', and so on.
550 *All the other variables and macros associated with Bison are not
551 renamed.* These others are not global; there is no conflict if the same
552 name is used in different parsers. For example, `YYSTYPE' is not
553 renamed, but defining this in different ways in different parsers causes
554 no trouble (*note Data Types of Semantic Values: Value Type.).
556 The `-p' option works by adding macro definitions to the beginning
557 of the parser source file, defining `yyparse' as `PREFIXparse', and so
558 on. This effectively substitutes one name for the other in the entire
562 File: bison.info, Node: Interface, Next: Algorithm, Prev: Grammar File, Up: Top
564 Parser C-Language Interface
565 ***************************
567 The Bison parser is actually a C function named `yyparse'. Here we
568 describe the interface conventions of `yyparse' and the other functions
569 that it needs to use.
571 Keep in mind that the parser uses many C identifiers starting with
572 `yy' and `YY' for internal purposes. If you use such an identifier
573 (aside from those in this manual) in an action or in additional C code
574 in the grammar file, you are likely to run into trouble.
578 * Parser Function:: How to call `yyparse' and what it returns.
579 * Lexical:: You must supply a function `yylex'
581 * Error Reporting:: You must supply a function `yyerror'.
582 * Action Features:: Special features for use in actions.
585 File: bison.info, Node: Parser Function, Next: Lexical, Up: Interface
587 The Parser Function `yyparse'
588 =============================
590 You call the function `yyparse' to cause parsing to occur. This
591 function reads tokens, executes actions, and ultimately returns when it
592 encounters end-of-input or an unrecoverable syntax error. You can also
593 write an action which directs `yyparse' to return immediately without
596 The value returned by `yyparse' is 0 if parsing was successful
597 (return is due to end-of-input).
599 The value is 1 if parsing failed (return is due to a syntax error).
601 In an action, you can cause immediate return from `yyparse' by using
605 Return immediately with value 0 (to report success).
608 Return immediately with value 1 (to report failure).
611 File: bison.info, Node: Lexical, Next: Error Reporting, Prev: Parser Function, Up: Interface
613 The Lexical Analyzer Function `yylex'
614 =====================================
616 The "lexical analyzer" function, `yylex', recognizes tokens from the
617 input stream and returns them to the parser. Bison does not create
618 this function automatically; you must write it so that `yyparse' can
619 call it. The function is sometimes referred to as a lexical scanner.
621 In simple programs, `yylex' is often defined at the end of the Bison
622 grammar file. If `yylex' is defined in a separate source file, you
623 need to arrange for the token-type macro definitions to be available
624 there. To do this, use the `-d' option when you run Bison, so that it
625 will write these macro definitions into a separate header file
626 `NAME.tab.h' which you can include in the other source files that need
627 it. *Note Invoking Bison: Invocation.
631 * Calling Convention:: How `yyparse' calls `yylex'.
632 * Token Values:: How `yylex' must return the semantic value
633 of the token it has read.
634 * Token Positions:: How `yylex' must return the text position
635 (line number, etc.) of the token, if the
637 * Pure Calling:: How the calling convention differs
638 in a pure parser (*note A Pure (Reentrant) Parser: Pure Decl.).
641 File: bison.info, Node: Calling Convention, Next: Token Values, Up: Lexical
643 Calling Convention for `yylex'
644 ------------------------------
646 The value that `yylex' returns must be the numeric code for the type
647 of token it has just found, or 0 for end-of-input.
649 When a token is referred to in the grammar rules by a name, that name
650 in the parser file becomes a C macro whose definition is the proper
651 numeric code for that token type. So `yylex' can use the name to
652 indicate that type. *Note Symbols::.
654 When a token is referred to in the grammar rules by a character
655 literal, the numeric code for that character is also the code for the
656 token type. So `yylex' can simply return that character code. The
657 null character must not be used this way, because its code is zero and
658 that is what signifies end-of-input.
660 Here is an example showing these things:
666 if (c == EOF) /* Detect end of file. */
669 if (c == '+' || c == '-')
670 return c; /* Assume token type for `+' is '+'. */
672 return INT; /* Return the type of the token. */
676 This interface has been designed so that the output from the `lex'
677 utility can be used without change as the definition of `yylex'.
679 If the grammar uses literal string tokens, there are two ways that
680 `yylex' can determine the token type codes for them:
682 * If the grammar defines symbolic token names as aliases for the
683 literal string tokens, `yylex' can use these symbolic names like
684 all others. In this case, the use of the literal string tokens in
685 the grammar file has no effect on `yylex'.
687 * `yylex' can find the multicharacter token in the `yytname' table.
688 The index of the token in the table is the token type's code. The
689 name of a multicharacter token is recorded in `yytname' with a
690 double-quote, the token's characters, and another double-quote.
691 The token's characters are not escaped in any way; they appear
692 verbatim in the contents of the string in the table.
694 Here's code for looking up a token in `yytname', assuming that the
695 characters of the token are stored in `token_buffer'.
697 for (i = 0; i < YYNTOKENS; i++)
700 && yytname[i][0] == '"'
701 && strncmp (yytname[i] + 1, token_buffer,
702 strlen (token_buffer))
703 && yytname[i][strlen (token_buffer) + 1] == '"'
704 && yytname[i][strlen (token_buffer) + 2] == 0)
708 The `yytname' table is generated only if you use the
709 `%token_table' declaration. *Note Decl Summary::.
712 File: bison.info, Node: Token Values, Next: Token Positions, Prev: Calling Convention, Up: Lexical
714 Semantic Values of Tokens
715 -------------------------
717 In an ordinary (non-reentrant) parser, the semantic value of the
718 token must be stored into the global variable `yylval'. When you are
719 using just one data type for semantic values, `yylval' has that type.
720 Thus, if the type is `int' (the default), you might write this in
724 yylval = value; /* Put value onto Bison stack. */
725 return INT; /* Return the type of the token. */
728 When you are using multiple data types, `yylval''s type is a union
729 made from the `%union' declaration (*note The Collection of Value
730 Types: Union Decl.). So when you store a token's value, you must use
731 the proper member of the union. If the `%union' declaration looks like
740 then the code in `yylex' might look like this:
743 yylval.intval = value; /* Put value onto Bison stack. */
744 return INT; /* Return the type of the token. */
748 File: bison.info, Node: Token Positions, Next: Pure Calling, Prev: Token Values, Up: Lexical
750 Textual Positions of Tokens
751 ---------------------------
753 If you are using the `@N'-feature (*note Special Features for Use in
754 Actions: Action Features.) in actions to keep track of the textual
755 locations of tokens and groupings, then you must provide this
756 information in `yylex'. The function `yyparse' expects to find the
757 textual location of a token just parsed in the global variable
758 `yylloc'. So `yylex' must store the proper data in that variable. The
759 value of `yylloc' is a structure and you need only initialize the
760 members that are going to be used by the actions. The four members are
761 called `first_line', `first_column', `last_line' and `last_column'.
762 Note that the use of this feature makes the parser noticeably slower.
764 The data type of `yylloc' has the name `YYLTYPE'.
767 File: bison.info, Node: Pure Calling, Prev: Token Positions, Up: Lexical
769 Calling Conventions for Pure Parsers
770 ------------------------------------
772 When you use the Bison declaration `%pure_parser' to request a pure,
773 reentrant parser, the global communication variables `yylval' and
774 `yylloc' cannot be used. (*Note A Pure (Reentrant) Parser: Pure Decl.)
775 In such parsers the two global variables are replaced by pointers
776 passed as arguments to `yylex'. You must declare them as shown here,
777 and pass the information back by storing it through those pointers.
780 yylex (YYSTYPE *lvalp, YYLTYPE *llocp)
783 *lvalp = value; /* Put value onto Bison stack. */
784 return INT; /* Return the type of the token. */
788 If the grammar file does not use the `@' constructs to refer to
789 textual positions, then the type `YYLTYPE' will not be defined. In
790 this case, omit the second argument; `yylex' will be called with only
793 If you use a reentrant parser, you can optionally pass additional
794 parameter information to it in a reentrant way. To do so, define the
795 macro `YYPARSE_PARAM' as a variable name. This modifies the `yyparse'
796 function to accept one argument, of type `void *', with that name.
798 When you call `yyparse', pass the address of an object, casting the
799 address to `void *'. The grammar actions can refer to the contents of
800 the object by casting the pointer value back to its proper type and
801 then dereferencing it. Here's an example. Write this in the parser:
804 struct parser_control
810 #define YYPARSE_PARAM parm
813 Then call the parser like this:
815 struct parser_control
824 struct parser_control foo;
825 ... /* Store proper data in `foo'. */
826 value = yyparse ((void *) &foo);
830 In the grammar actions, use expressions like this to refer to the data:
832 ((struct parser_control *) parm)->randomness
834 If you wish to pass the additional parameter data to `yylex', define
835 the macro `YYLEX_PARAM' just like `YYPARSE_PARAM', as shown here:
838 struct parser_control
844 #define YYPARSE_PARAM parm
845 #define YYLEX_PARAM parm
848 You should then define `yylex' to accept one additional
849 argument--the value of `parm'. (This makes either two or three
850 arguments in total, depending on whether an argument of type `YYLTYPE'
851 is passed.) You can declare the argument as a pointer to the proper
852 object type, or you can declare it as `void *' and access the contents
855 You can use `%pure_parser' to request a reentrant parser without
856 also using `YYPARSE_PARAM'. Then you should call `yyparse' with no
860 File: bison.info, Node: Error Reporting, Next: Action Features, Prev: Lexical, Up: Interface
862 The Error Reporting Function `yyerror'
863 ======================================
865 The Bison parser detects a "parse error" or "syntax error" whenever
866 it reads a token which cannot satisfy any syntax rule. An action in
867 the grammar can also explicitly proclaim an error, using the macro
868 `YYERROR' (*note Special Features for Use in Actions: Action Features.).
870 The Bison parser expects to report the error by calling an error
871 reporting function named `yyerror', which you must supply. It is
872 called by `yyparse' whenever a syntax error is found, and it receives
873 one argument. For a parse error, the string is normally
876 If you define the macro `YYERROR_VERBOSE' in the Bison declarations
877 section (*note The Bison Declarations Section: Bison Declarations.),
878 then Bison provides a more verbose and specific error message string
879 instead of just plain `"parse error"'. It doesn't matter what
880 definition you use for `YYERROR_VERBOSE', just whether you define it.
882 The parser can detect one other kind of error: stack overflow. This
883 happens when the input contains constructions that are very deeply
884 nested. It isn't likely you will encounter this, since the Bison
885 parser extends its stack automatically up to a very large limit. But
886 if overflow happens, `yyparse' calls `yyerror' in the usual fashion,
887 except that the argument string is `"parser stack overflow"'.
889 The following definition suffices in simple programs:
894 fprintf (stderr, "%s\n", s);
897 After `yyerror' returns to `yyparse', the latter will attempt error
898 recovery if you have written suitable error recovery grammar rules
899 (*note Error Recovery::). If recovery is impossible, `yyparse' will
900 immediately return 1.
902 The variable `yynerrs' contains the number of syntax errors
903 encountered so far. Normally this variable is global; but if you
904 request a pure parser (*note A Pure (Reentrant) Parser: Pure Decl.)
905 then it is a local variable which only the actions can access.
908 File: bison.info, Node: Action Features, Prev: Error Reporting, Up: Interface
910 Special Features for Use in Actions
911 ===================================
913 Here is a table of Bison constructs, variables and macros that are
917 Acts like a variable that contains the semantic value for the
918 grouping made by the current rule. *Note Actions::.
921 Acts like a variable that contains the semantic value for the Nth
922 component of the current rule. *Note Actions::.
925 Like `$$' but specifies alternative TYPEALT in the union specified
926 by the `%union' declaration. *Note Data Types of Values in
927 Actions: Action Types.
930 Like `$N' but specifies alternative TYPEALT in the union specified
931 by the `%union' declaration. *Note Data Types of Values in
932 Actions: Action Types.
935 Return immediately from `yyparse', indicating failure. *Note The
936 Parser Function `yyparse': Parser Function.
939 Return immediately from `yyparse', indicating success. *Note The
940 Parser Function `yyparse': Parser Function.
942 `YYBACKUP (TOKEN, VALUE);'
943 Unshift a token. This macro is allowed only for rules that reduce
944 a single value, and only when there is no look-ahead token. It
945 installs a look-ahead token with token type TOKEN and semantic
946 value VALUE; then it discards the value that was going to be
947 reduced by this rule.
949 If the macro is used when it is not valid, such as when there is a
950 look-ahead token already, then it reports a syntax error with a
951 message `cannot back up' and performs ordinary error recovery.
953 In either case, the rest of the action is not executed.
956 Value stored in `yychar' when there is no look-ahead token.
959 Cause an immediate syntax error. This statement initiates error
960 recovery just as if the parser itself had detected an error;
961 however, it does not call `yyerror', and does not print any
962 message. If you want to print an error message, call `yyerror'
963 explicitly before the `YYERROR;' statement. *Note Error
967 This macro stands for an expression that has the value 1 when the
968 parser is recovering from a syntax error, and 0 the rest of the
969 time. *Note Error Recovery::.
972 Variable containing the current look-ahead token. (In a pure
973 parser, this is actually a local variable within `yyparse'.) When
974 there is no look-ahead token, the value `YYEMPTY' is stored in the
975 variable. *Note Look-Ahead Tokens: Look-Ahead.
978 Discard the current look-ahead token. This is useful primarily in
979 error rules. *Note Error Recovery::.
982 Resume generating error messages immediately for subsequent syntax
983 errors. This is useful primarily in error rules. *Note Error
987 Acts like a structure variable containing information on the line
988 numbers and column numbers of the Nth component of the current
989 rule. The structure has four members, like this:
992 int first_line, last_line;
993 int first_column, last_column;
996 Thus, to get the starting line number of the third component, you
997 would use `@3.first_line'.
999 In order for the members of this structure to contain valid
1000 information, you must make `yylex' supply this information about
1001 each token. If you need only certain members, then `yylex' need
1002 only fill in those members.
1004 The use of this feature makes the parser noticeably slower.
1007 File: bison.info, Node: Algorithm, Next: Error Recovery, Prev: Interface, Up: Top
1009 The Bison Parser Algorithm
1010 **************************
1012 As Bison reads tokens, it pushes them onto a stack along with their
1013 semantic values. The stack is called the "parser stack". Pushing a
1014 token is traditionally called "shifting".
1016 For example, suppose the infix calculator has read `1 + 5 *', with a
1017 `3' to come. The stack will have four elements, one for each token
1020 But the stack does not always have an element for each token read.
1021 When the last N tokens and groupings shifted match the components of a
1022 grammar rule, they can be combined according to that rule. This is
1023 called "reduction". Those tokens and groupings are replaced on the
1024 stack by a single grouping whose symbol is the result (left hand side)
1025 of that rule. Running the rule's action is part of the process of
1026 reduction, because this is what computes the semantic value of the
1029 For example, if the infix calculator's parser stack contains this:
1033 and the next input token is a newline character, then the last three
1034 elements can be reduced to 15 via the rule:
1036 expr: expr '*' expr;
1038 Then the stack contains just these three elements:
1042 At this point, another reduction can be made, resulting in the single
1043 value 16. Then the newline token can be shifted.
1045 The parser tries, by shifts and reductions, to reduce the entire
1046 input down to a single grouping whose symbol is the grammar's
1047 start-symbol (*note Languages and Context-Free Grammars: Language and
1050 This kind of parser is known in the literature as a bottom-up parser.
1054 * Look-Ahead:: Parser looks one token ahead when deciding what to do.
1055 * Shift/Reduce:: Conflicts: when either shifting or reduction is valid.
1056 * Precedence:: Operator precedence works by resolving conflicts.
1057 * Contextual Precedence:: When an operator's precedence depends on context.
1058 * Parser States:: The parser is a finite-state-machine with stack.
1059 * Reduce/Reduce:: When two rules are applicable in the same situation.
1060 * Mystery Conflicts:: Reduce/reduce conflicts that look unjustified.
1061 * Stack Overflow:: What happens when stack gets full. How to avoid it.
1064 File: bison.info, Node: Look-Ahead, Next: Shift/Reduce, Up: Algorithm
1069 The Bison parser does _not_ always reduce immediately as soon as the
1070 last N tokens and groupings match a rule. This is because such a
1071 simple strategy is inadequate to handle most languages. Instead, when a
1072 reduction is possible, the parser sometimes "looks ahead" at the next
1073 token in order to decide what to do.
1075 When a token is read, it is not immediately shifted; first it
1076 becomes the "look-ahead token", which is not on the stack. Now the
1077 parser can perform one or more reductions of tokens and groupings on
1078 the stack, while the look-ahead token remains off to the side. When no
1079 more reductions should take place, the look-ahead token is shifted onto
1080 the stack. This does not mean that all possible reductions have been
1081 done; depending on the token type of the look-ahead token, some rules
1082 may choose to delay their application.
1084 Here is a simple case where look-ahead is needed. These three rules
1085 define expressions which contain binary addition operators and postfix
1086 unary factorial operators (`!'), and allow parentheses for grouping.
1097 Suppose that the tokens `1 + 2' have been read and shifted; what
1098 should be done? If the following token is `)', then the first three
1099 tokens must be reduced to form an `expr'. This is the only valid
1100 course, because shifting the `)' would produce a sequence of symbols
1101 `term ')'', and no rule allows this.
1103 If the following token is `!', then it must be shifted immediately so
1104 that `2 !' can be reduced to make a `term'. If instead the parser were
1105 to reduce before shifting, `1 + 2' would become an `expr'. It would
1106 then be impossible to shift the `!' because doing so would produce on
1107 the stack the sequence of symbols `expr '!''. No rule allows that
1110 The current look-ahead token is stored in the variable `yychar'.
1111 *Note Special Features for Use in Actions: Action Features.
1114 File: bison.info, Node: Shift/Reduce, Next: Precedence, Prev: Look-Ahead, Up: Algorithm
1116 Shift/Reduce Conflicts
1117 ======================
1119 Suppose we are parsing a language which has if-then and if-then-else
1120 statements, with a pair of rules like this:
1124 | IF expr THEN stmt ELSE stmt
1127 Here we assume that `IF', `THEN' and `ELSE' are terminal symbols for
1128 specific keyword tokens.
1130 When the `ELSE' token is read and becomes the look-ahead token, the
1131 contents of the stack (assuming the input is valid) are just right for
1132 reduction by the first rule. But it is also legitimate to shift the
1133 `ELSE', because that would lead to eventual reduction by the second
1136 This situation, where either a shift or a reduction would be valid,
1137 is called a "shift/reduce conflict". Bison is designed to resolve
1138 these conflicts by choosing to shift, unless otherwise directed by
1139 operator precedence declarations. To see the reason for this, let's
1140 contrast it with the other alternative.
1142 Since the parser prefers to shift the `ELSE', the result is to attach
1143 the else-clause to the innermost if-statement, making these two inputs
1146 if x then if y then win (); else lose;
1148 if x then do; if y then win (); else lose; end;
1150 But if the parser chose to reduce when possible rather than shift,
1151 the result would be to attach the else-clause to the outermost
1152 if-statement, making these two inputs equivalent:
1154 if x then if y then win (); else lose;
1156 if x then do; if y then win (); end; else lose;
1158 The conflict exists because the grammar as written is ambiguous:
1159 either parsing of the simple nested if-statement is legitimate. The
1160 established convention is that these ambiguities are resolved by
1161 attaching the else-clause to the innermost if-statement; this is what
1162 Bison accomplishes by choosing to shift rather than reduce. (It would
1163 ideally be cleaner to write an unambiguous grammar, but that is very
1164 hard to do in this case.) This particular ambiguity was first
1165 encountered in the specifications of Algol 60 and is called the
1166 "dangling `else'" ambiguity.
1168 To avoid warnings from Bison about predictable, legitimate
1169 shift/reduce conflicts, use the `%expect N' declaration. There will be
1170 no warning as long as the number of shift/reduce conflicts is exactly N.
1171 *Note Suppressing Conflict Warnings: Expect Decl.
1173 The definition of `if_stmt' above is solely to blame for the
1174 conflict, but the conflict does not actually appear without additional
1175 rules. Here is a complete Bison input file that actually manifests the
1178 %token IF THEN ELSE variable
1186 | IF expr THEN stmt ELSE stmt
1193 File: bison.info, Node: Precedence, Next: Contextual Precedence, Prev: Shift/Reduce, Up: Algorithm
1198 Another situation where shift/reduce conflicts appear is in
1199 arithmetic expressions. Here shifting is not always the preferred
1200 resolution; the Bison declarations for operator precedence allow you to
1201 specify when to shift and when to reduce.
1205 * Why Precedence:: An example showing why precedence is needed.
1206 * Using Precedence:: How to specify precedence in Bison grammars.
1207 * Precedence Examples:: How these features are used in the previous example.
1208 * How Precedence:: How they work.
1211 File: bison.info, Node: Why Precedence, Next: Using Precedence, Up: Precedence
1213 When Precedence is Needed
1214 -------------------------
1216 Consider the following ambiguous grammar fragment (ambiguous because
1217 the input `1 - 2 * 3' can be parsed in two different ways):
1226 Suppose the parser has seen the tokens `1', `-' and `2'; should it
1227 reduce them via the rule for the subtraction operator? It depends on
1228 the next token. Of course, if the next token is `)', we must reduce;
1229 shifting is invalid because no single rule can reduce the token
1230 sequence `- 2 )' or anything starting with that. But if the next token
1231 is `*' or `<', we have a choice: either shifting or reduction would
1232 allow the parse to complete, but with different results.
1234 To decide which one Bison should do, we must consider the results.
1235 If the next operator token OP is shifted, then it must be reduced first
1236 in order to permit another opportunity to reduce the difference. The
1237 result is (in effect) `1 - (2 OP 3)'. On the other hand, if the
1238 subtraction is reduced before shifting OP, the result is
1239 `(1 - 2) OP 3'. Clearly, then, the choice of shift or reduce should
1240 depend on the relative precedence of the operators `-' and OP: `*'
1241 should be shifted first, but not `<'.
1243 What about input such as `1 - 2 - 5'; should this be `(1 - 2) - 5'
1244 or should it be `1 - (2 - 5)'? For most operators we prefer the
1245 former, which is called "left association". The latter alternative,
1246 "right association", is desirable for assignment operators. The choice
1247 of left or right association is a matter of whether the parser chooses
1248 to shift or reduce when the stack contains `1 - 2' and the look-ahead
1249 token is `-': shifting makes right-associativity.
1252 File: bison.info, Node: Using Precedence, Next: Precedence Examples, Prev: Why Precedence, Up: Precedence
1254 Specifying Operator Precedence
1255 ------------------------------
1257 Bison allows you to specify these choices with the operator
1258 precedence declarations `%left' and `%right'. Each such declaration
1259 contains a list of tokens, which are operators whose precedence and
1260 associativity is being declared. The `%left' declaration makes all
1261 those operators left-associative and the `%right' declaration makes
1262 them right-associative. A third alternative is `%nonassoc', which
1263 declares that it is a syntax error to find the same operator twice "in a
1266 The relative precedence of different operators is controlled by the
1267 order in which they are declared. The first `%left' or `%right'
1268 declaration in the file declares the operators whose precedence is
1269 lowest, the next such declaration declares the operators whose
1270 precedence is a little higher, and so on.
1273 File: bison.info, Node: Precedence Examples, Next: How Precedence, Prev: Using Precedence, Up: Precedence
1278 In our example, we would want the following declarations:
1284 In a more complete example, which supports other operators as well,
1285 we would declare them in groups of equal precedence. For example,
1286 `'+'' is declared with `'-'':
1288 %left '<' '>' '=' NE LE GE
1292 (Here `NE' and so on stand for the operators for "not equal" and so on.
1293 We assume that these tokens are more than one character long and
1294 therefore are represented by names, not character literals.)