1 \input texinfo @c -*-texinfo-*-
2 @comment %**start of header
3 @setfilename bison.info
5 @settitle Bison @value{VERSION}
11 @c This edition has been formatted so that you can format and print it in
12 @c the smallbook format.
15 @c Set following if you want to document %default-prec and %no-default-prec.
16 @c This feature is experimental and may change in future Bison versions.
29 @comment %**end of header
33 This manual (@value{UPDATED}) is for GNU Bison (version
34 @value{VERSION}), the GNU parser generator.
36 Copyright @copyright{} 1988-1993, 1995, 1998-2011 Free Software
40 Permission is granted to copy, distribute and/or modify this document
41 under the terms of the GNU Free Documentation License,
42 Version 1.3 or any later version published by the Free Software
43 Foundation; with no Invariant Sections, with the Front-Cover texts
44 being ``A GNU Manual,'' and with the Back-Cover Texts as in
45 (a) below. A copy of the license is included in the section entitled
46 ``GNU Free Documentation License.''
48 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
49 modify this GNU manual. Buying copies from the FSF
50 supports it in developing GNU and promoting software
55 @dircategory Software development
57 * bison: (bison). GNU parser generator (Yacc replacement).
62 @subtitle The Yacc-compatible Parser Generator
63 @subtitle @value{UPDATED}, Bison Version @value{VERSION}
65 @author by Charles Donnelly and Richard Stallman
68 @vskip 0pt plus 1filll
71 Published by the Free Software Foundation @*
72 51 Franklin Street, Fifth Floor @*
73 Boston, MA 02110-1301 USA @*
74 Printed copies are available from the Free Software Foundation.@*
77 Cover art by Etienne Suvasa.
91 * Copying:: The GNU General Public License says
92 how you can copy and share Bison.
95 * Concepts:: Basic concepts for understanding Bison.
96 * Examples:: Three simple explained examples of using Bison.
99 * Grammar File:: Writing Bison declarations and rules.
100 * Interface:: C-language interface to the parser function @code{yyparse}.
101 * Algorithm:: How the Bison parser works at run-time.
102 * Error Recovery:: Writing rules for error recovery.
103 * Context Dependency:: What to do if your language syntax is too
104 messy for Bison to handle straightforwardly.
105 * Debugging:: Understanding or debugging Bison parsers.
106 * Invocation:: How to run Bison (to produce the parser source file).
107 * Other Languages:: Creating C++ and Java parsers.
108 * FAQ:: Frequently Asked Questions
109 * Table of Symbols:: All the keywords of the Bison language are explained.
110 * Glossary:: Basic concepts are explained.
111 * Copying This Manual:: License for copying this manual.
112 * Index:: Cross-references to the text.
115 --- The Detailed Node Listing ---
117 The Concepts of Bison
119 * Language and Grammar:: Languages and context-free grammars,
120 as mathematical ideas.
121 * Grammar in Bison:: How we represent grammars for Bison's sake.
122 * Semantic Values:: Each token or syntactic grouping can have
123 a semantic value (the value of an integer,
124 the name of an identifier, etc.).
125 * Semantic Actions:: Each rule can have an action containing C code.
126 * GLR Parsers:: Writing parsers for general context-free languages.
127 * Locations Overview:: Tracking Locations.
128 * Bison Parser:: What are Bison's input and output,
129 how is the output used?
130 * Stages:: Stages in writing and running Bison grammars.
131 * Grammar Layout:: Overall structure of a Bison grammar file.
135 * Simple GLR Parsers:: Using GLR parsers on unambiguous grammars.
136 * Merging GLR Parses:: Using GLR parsers to resolve ambiguities.
137 * GLR Semantic Actions:: Considerations for semantic values and deferred actions.
138 * Semantic Predicates:: Controlling a parse with arbitrary computations.
139 * Compiler Requirements:: GLR parsers require a modern C compiler.
143 * RPN Calc:: Reverse polish notation calculator;
144 a first example with no operator precedence.
145 * Infix Calc:: Infix (algebraic) notation calculator.
146 Operator precedence is introduced.
147 * Simple Error Recovery:: Continuing after syntax errors.
148 * Location Tracking Calc:: Demonstrating the use of @@@var{n} and @@$.
149 * Multi-function Calc:: Calculator with memory and trig functions.
150 It uses multiple data-types for semantic values.
151 * Exercises:: Ideas for improving the multi-function calculator.
153 Reverse Polish Notation Calculator
155 * Rpcalc Declarations:: Prologue (declarations) for rpcalc.
156 * Rpcalc Rules:: Grammar Rules for rpcalc, with explanation.
157 * Rpcalc Lexer:: The lexical analyzer.
158 * Rpcalc Main:: The controlling function.
159 * Rpcalc Error:: The error reporting function.
160 * Rpcalc Generate:: Running Bison on the grammar file.
161 * Rpcalc Compile:: Run the C compiler on the output code.
163 Grammar Rules for @code{rpcalc}
169 Location Tracking Calculator: @code{ltcalc}
171 * Ltcalc Declarations:: Bison and C declarations for ltcalc.
172 * Ltcalc Rules:: Grammar rules for ltcalc, with explanations.
173 * Ltcalc Lexer:: The lexical analyzer.
175 Multi-Function Calculator: @code{mfcalc}
177 * Mfcalc Declarations:: Bison declarations for multi-function calculator.
178 * Mfcalc Rules:: Grammar rules for the calculator.
179 * Mfcalc Symbol Table:: Symbol table management subroutines.
183 * Grammar Outline:: Overall layout of the grammar file.
184 * Symbols:: Terminal and nonterminal symbols.
185 * Rules:: How to write grammar rules.
186 * Recursion:: Writing recursive rules.
187 * Semantics:: Semantic values and actions.
188 * Locations:: Locations and actions.
189 * Declarations:: All kinds of Bison declarations are described here.
190 * Multiple Parsers:: Putting more than one Bison parser in one program.
192 Outline of a Bison Grammar
194 * Prologue:: Syntax and usage of the prologue.
195 * Prologue Alternatives:: Syntax and usage of alternatives to the prologue.
196 * Bison Declarations:: Syntax and usage of the Bison declarations section.
197 * Grammar Rules:: Syntax and usage of the grammar rules section.
198 * Epilogue:: Syntax and usage of the epilogue.
200 Defining Language Semantics
202 * Value Type:: Specifying one data type for all semantic values.
203 * Multiple Types:: Specifying several alternative data types.
204 * Actions:: An action is the semantic definition of a grammar rule.
205 * Action Types:: Specifying data types for actions to operate on.
206 * Mid-Rule Actions:: Most actions go at the end of a rule.
207 This says when, why and how to use the exceptional
208 action in the middle of a rule.
209 * Named References:: Using named references in actions.
213 * Location Type:: Specifying a data type for locations.
214 * Actions and Locations:: Using locations in actions.
215 * Location Default Action:: Defining a general way to compute locations.
219 * Require Decl:: Requiring a Bison version.
220 * Token Decl:: Declaring terminal symbols.
221 * Precedence Decl:: Declaring terminals with precedence and associativity.
222 * Union Decl:: Declaring the set of all semantic value types.
223 * Type Decl:: Declaring the choice of type for a nonterminal symbol.
224 * Initial Action Decl:: Code run before parsing starts.
225 * Destructor Decl:: Declaring how symbols are freed.
226 * Expect Decl:: Suppressing warnings about parsing conflicts.
227 * Start Decl:: Specifying the start symbol.
228 * Pure Decl:: Requesting a reentrant parser.
229 * Push Decl:: Requesting a push parser.
230 * Decl Summary:: Table of all Bison declarations.
232 Parser C-Language Interface
234 * Parser Function:: How to call @code{yyparse} and what it returns.
235 * Push Parser Function:: How to call @code{yypush_parse} and what it returns.
236 * Pull Parser Function:: How to call @code{yypull_parse} and what it returns.
237 * Parser Create Function:: How to call @code{yypstate_new} and what it returns.
238 * Parser Delete Function:: How to call @code{yypstate_delete} and what it returns.
239 * Lexical:: You must supply a function @code{yylex}
241 * Error Reporting:: You must supply a function @code{yyerror}.
242 * Action Features:: Special features for use in actions.
243 * Internationalization:: How to let the parser speak in the user's
246 The Lexical Analyzer Function @code{yylex}
248 * Calling Convention:: How @code{yyparse} calls @code{yylex}.
249 * Token Values:: How @code{yylex} must return the semantic value
250 of the token it has read.
251 * Token Locations:: How @code{yylex} must return the text location
252 (line number, etc.) of the token, if the
254 * Pure Calling:: How the calling convention differs in a pure parser
255 (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}).
257 The Bison Parser Algorithm
259 * Lookahead:: Parser looks one token ahead when deciding what to do.
260 * Shift/Reduce:: Conflicts: when either shifting or reduction is valid.
261 * Precedence:: Operator precedence works by resolving conflicts.
262 * Contextual Precedence:: When an operator's precedence depends on context.
263 * Parser States:: The parser is a finite-state-machine with stack.
264 * Reduce/Reduce:: When two rules are applicable in the same situation.
265 * Mystery Conflicts:: Reduce/reduce conflicts that look unjustified.
266 * Generalized LR Parsing:: Parsing arbitrary context-free grammars.
267 * Memory Management:: What happens when memory is exhausted. How to avoid it.
271 * Why Precedence:: An example showing why precedence is needed.
272 * Using Precedence:: How to specify precedence and associativity.
273 * Precedence Only:: How to specify precedence only.
274 * Precedence Examples:: How these features are used in the previous example.
275 * How Precedence:: How they work.
277 Handling Context Dependencies
279 * Semantic Tokens:: Token parsing can depend on the semantic context.
280 * Lexical Tie-ins:: Token parsing can depend on the syntactic context.
281 * Tie-in Recovery:: Lexical tie-ins have implications for how
282 error recovery rules must be written.
284 Debugging Your Parser
286 * Understanding:: Understanding the structure of your parser.
287 * Tracing:: Tracing the execution of your parser.
291 * Bison Options:: All the options described in detail,
292 in alphabetical order by short options.
293 * Option Cross Key:: Alphabetical list of long options.
294 * Yacc Library:: Yacc-compatible @code{yylex} and @code{main}.
296 Parsers Written In Other Languages
298 * C++ Parsers:: The interface to generate C++ parser classes
299 * Java Parsers:: The interface to generate Java parser classes
303 * C++ Bison Interface:: Asking for C++ parser generation
304 * C++ Semantic Values:: %union vs. C++
305 * C++ Location Values:: The position and location classes
306 * C++ Parser Interface:: Instantiating and running the parser
307 * C++ Scanner Interface:: Exchanges between yylex and parse
308 * A Complete C++ Example:: Demonstrating their use
310 A Complete C++ Example
312 * Calc++ --- C++ Calculator:: The specifications
313 * Calc++ Parsing Driver:: An active parsing context
314 * Calc++ Parser:: A parser class
315 * Calc++ Scanner:: A pure C++ Flex scanner
316 * Calc++ Top Level:: Conducting the band
320 * Java Bison Interface:: Asking for Java parser generation
321 * Java Semantic Values:: %type and %token vs. Java
322 * Java Location Values:: The position and location classes
323 * Java Parser Interface:: Instantiating and running the parser
324 * Java Scanner Interface:: Specifying the scanner for the parser
325 * Java Action Features:: Special features for use in actions
326 * Java Differences:: Differences between C/C++ and Java Grammars
327 * Java Declarations Summary:: List of Bison declarations used with Java
329 Frequently Asked Questions
331 * Memory Exhausted:: Breaking the Stack Limits
332 * How Can I Reset the Parser:: @code{yyparse} Keeps some State
333 * Strings are Destroyed:: @code{yylval} Loses Track of Strings
334 * Implementing Gotos/Loops:: Control Flow in the Calculator
335 * Multiple start-symbols:: Factoring closely related grammars
336 * Secure? Conform?:: Is Bison POSIX safe?
337 * I can't build Bison:: Troubleshooting
338 * Where can I find help?:: Troubleshouting
339 * Bug Reports:: Troublereporting
340 * More Languages:: Parsers in C++, Java, and so on
341 * Beta Testing:: Experimenting development versions
342 * Mailing Lists:: Meeting other Bison users
346 * Copying This Manual:: License for copying this manual.
352 @unnumbered Introduction
355 @dfn{Bison} is a general-purpose parser generator that converts an
356 annotated context-free grammar into a deterministic LR or
357 generalized LR (GLR) parser employing
358 LALR(1), IELR(1), or canonical LR(1)
360 Once you are proficient with Bison, you can use it to develop a wide
361 range of language parsers, from those used in simple desk calculators to
362 complex programming languages.
364 Bison is upward compatible with Yacc: all properly-written Yacc grammars
365 ought to work with Bison with no change. Anyone familiar with Yacc
366 should be able to use Bison with little trouble. You need to be fluent in
367 C or C++ programming in order to use Bison or to understand this manual.
369 We begin with tutorial chapters that explain the basic concepts of using
370 Bison and show three explained examples, each building on the last. If you
371 don't know Bison or Yacc, start by reading these chapters. Reference
372 chapters follow which describe specific aspects of Bison in detail.
374 Bison was written primarily by Robert Corbett; Richard Stallman made it
375 Yacc-compatible. Wilfred Hansen of Carnegie Mellon University added
376 multi-character string literals and other features.
378 This edition corresponds to version @value{VERSION} of Bison.
381 @unnumbered Conditions for Using Bison
383 The distribution terms for Bison-generated parsers permit using the
384 parsers in nonfree programs. Before Bison version 2.2, these extra
385 permissions applied only when Bison was generating LALR(1)
386 parsers in C@. And before Bison version 1.24, Bison-generated
387 parsers could be used only in programs that were free software.
389 The other GNU programming tools, such as the GNU C
391 had such a requirement. They could always be used for nonfree
392 software. The reason Bison was different was not due to a special
393 policy decision; it resulted from applying the usual General Public
394 License to all of the Bison source code.
396 The output of the Bison utility---the Bison parser file---contains a
397 verbatim copy of a sizable piece of Bison, which is the code for the
398 parser's implementation. (The actions from your grammar are inserted
399 into this implementation at one point, but most of the rest of the
400 implementation is not changed.) When we applied the GPL
401 terms to the skeleton code for the parser's implementation,
402 the effect was to restrict the use of Bison output to free software.
404 We didn't change the terms because of sympathy for people who want to
405 make software proprietary. @strong{Software should be free.} But we
406 concluded that limiting Bison's use to free software was doing little to
407 encourage people to make other software free. So we decided to make the
408 practical conditions for using Bison match the practical conditions for
409 using the other GNU tools.
411 This exception applies when Bison is generating code for a parser.
412 You can tell whether the exception applies to a Bison output file by
413 inspecting the file for text beginning with ``As a special
414 exception@dots{}''. The text spells out the exact terms of the
418 @unnumbered GNU GENERAL PUBLIC LICENSE
419 @include gpl-3.0.texi
422 @chapter The Concepts of Bison
424 This chapter introduces many of the basic concepts without which the
425 details of Bison will not make sense. If you do not already know how to
426 use Bison or Yacc, we suggest you start by reading this chapter carefully.
429 * Language and Grammar:: Languages and context-free grammars,
430 as mathematical ideas.
431 * Grammar in Bison:: How we represent grammars for Bison's sake.
432 * Semantic Values:: Each token or syntactic grouping can have
433 a semantic value (the value of an integer,
434 the name of an identifier, etc.).
435 * Semantic Actions:: Each rule can have an action containing C code.
436 * GLR Parsers:: Writing parsers for general context-free languages.
437 * Locations Overview:: Tracking Locations.
438 * Bison Parser:: What are Bison's input and output,
439 how is the output used?
440 * Stages:: Stages in writing and running Bison grammars.
441 * Grammar Layout:: Overall structure of a Bison grammar file.
444 @node Language and Grammar
445 @section Languages and Context-Free Grammars
447 @cindex context-free grammar
448 @cindex grammar, context-free
449 In order for Bison to parse a language, it must be described by a
450 @dfn{context-free grammar}. This means that you specify one or more
451 @dfn{syntactic groupings} and give rules for constructing them from their
452 parts. For example, in the C language, one kind of grouping is called an
453 `expression'. One rule for making an expression might be, ``An expression
454 can be made of a minus sign and another expression''. Another would be,
455 ``An expression can be an integer''. As you can see, rules are often
456 recursive, but there must be at least one rule which leads out of the
460 @cindex Backus-Naur form
461 The most common formal system for presenting such rules for humans to read
462 is @dfn{Backus-Naur Form} or ``BNF'', which was developed in
463 order to specify the language Algol 60. Any grammar expressed in
464 BNF is a context-free grammar. The input to Bison is
465 essentially machine-readable BNF.
467 @cindex LALR(1) grammars
468 @cindex IELR(1) grammars
469 @cindex LR(1) grammars
470 There are various important subclasses of context-free grammars.
471 Although it can handle almost all context-free grammars, Bison is
472 optimized for what are called LR(1) grammars.
473 In brief, in these grammars, it must be possible to tell how to parse
474 any portion of an input string with just a single token of lookahead.
475 For historical reasons, Bison by default is limited by the additional
476 restrictions of LALR(1), which is hard to explain simply.
477 @xref{Mystery Conflicts, ,Mysterious Reduce/Reduce Conflicts}, for
478 more information on this.
479 As an experimental feature, you can escape these additional restrictions by
480 requesting IELR(1) or canonical LR(1) parser tables.
481 @xref{Decl Summary,,lr.type}, to learn how.
484 @cindex generalized LR (GLR) parsing
485 @cindex ambiguous grammars
486 @cindex nondeterministic parsing
488 Parsers for LR(1) grammars are @dfn{deterministic}, meaning
489 roughly that the next grammar rule to apply at any point in the input is
490 uniquely determined by the preceding input and a fixed, finite portion
491 (called a @dfn{lookahead}) of the remaining input. A context-free
492 grammar can be @dfn{ambiguous}, meaning that there are multiple ways to
493 apply the grammar rules to get the same inputs. Even unambiguous
494 grammars can be @dfn{nondeterministic}, meaning that no fixed
495 lookahead always suffices to determine the next grammar rule to apply.
496 With the proper declarations, Bison is also able to parse these more
497 general context-free grammars, using a technique known as GLR
498 parsing (for Generalized LR). Bison's GLR parsers
499 are able to handle any context-free grammar for which the number of
500 possible parses of any given string is finite.
502 @cindex symbols (abstract)
504 @cindex syntactic grouping
505 @cindex grouping, syntactic
506 In the formal grammatical rules for a language, each kind of syntactic
507 unit or grouping is named by a @dfn{symbol}. Those which are built by
508 grouping smaller constructs according to grammatical rules are called
509 @dfn{nonterminal symbols}; those which can't be subdivided are called
510 @dfn{terminal symbols} or @dfn{token types}. We call a piece of input
511 corresponding to a single terminal symbol a @dfn{token}, and a piece
512 corresponding to a single nonterminal symbol a @dfn{grouping}.
514 We can use the C language as an example of what symbols, terminal and
515 nonterminal, mean. The tokens of C are identifiers, constants (numeric
516 and string), and the various keywords, arithmetic operators and
517 punctuation marks. So the terminal symbols of a grammar for C include
518 `identifier', `number', `string', plus one symbol for each keyword,
519 operator or punctuation mark: `if', `return', `const', `static', `int',
520 `char', `plus-sign', `open-brace', `close-brace', `comma' and many more.
521 (These tokens can be subdivided into characters, but that is a matter of
522 lexicography, not grammar.)
524 Here is a simple C function subdivided into tokens:
528 int /* @r{keyword `int'} */
529 square (int x) /* @r{identifier, open-paren, keyword `int',}
530 @r{identifier, close-paren} */
531 @{ /* @r{open-brace} */
532 return x * x; /* @r{keyword `return', identifier, asterisk,}
533 @r{identifier, semicolon} */
534 @} /* @r{close-brace} */
539 int /* @r{keyword `int'} */
540 square (int x) /* @r{identifier, open-paren, keyword `int', identifier, close-paren} */
541 @{ /* @r{open-brace} */
542 return x * x; /* @r{keyword `return', identifier, asterisk, identifier, semicolon} */
543 @} /* @r{close-brace} */
547 The syntactic groupings of C include the expression, the statement, the
548 declaration, and the function definition. These are represented in the
549 grammar of C by nonterminal symbols `expression', `statement',
550 `declaration' and `function definition'. The full grammar uses dozens of
551 additional language constructs, each with its own nonterminal symbol, in
552 order to express the meanings of these four. The example above is a
553 function definition; it contains one declaration, and one statement. In
554 the statement, each @samp{x} is an expression and so is @samp{x * x}.
556 Each nonterminal symbol must have grammatical rules showing how it is made
557 out of simpler constructs. For example, one kind of C statement is the
558 @code{return} statement; this would be described with a grammar rule which
559 reads informally as follows:
562 A `statement' can be made of a `return' keyword, an `expression' and a
567 There would be many other rules for `statement', one for each kind of
571 One nonterminal symbol must be distinguished as the special one which
572 defines a complete utterance in the language. It is called the @dfn{start
573 symbol}. In a compiler, this means a complete input program. In the C
574 language, the nonterminal symbol `sequence of definitions and declarations'
577 For example, @samp{1 + 2} is a valid C expression---a valid part of a C
578 program---but it is not valid as an @emph{entire} C program. In the
579 context-free grammar of C, this follows from the fact that `expression' is
580 not the start symbol.
582 The Bison parser reads a sequence of tokens as its input, and groups the
583 tokens using the grammar rules. If the input is valid, the end result is
584 that the entire token sequence reduces to a single grouping whose symbol is
585 the grammar's start symbol. If we use a grammar for C, the entire input
586 must be a `sequence of definitions and declarations'. If not, the parser
587 reports a syntax error.
589 @node Grammar in Bison
590 @section From Formal Rules to Bison Input
591 @cindex Bison grammar
592 @cindex grammar, Bison
593 @cindex formal grammar
595 A formal grammar is a mathematical construct. To define the language
596 for Bison, you must write a file expressing the grammar in Bison syntax:
597 a @dfn{Bison grammar} file. @xref{Grammar File, ,Bison Grammar Files}.
599 A nonterminal symbol in the formal grammar is represented in Bison input
600 as an identifier, like an identifier in C@. By convention, it should be
601 in lower case, such as @code{expr}, @code{stmt} or @code{declaration}.
603 The Bison representation for a terminal symbol is also called a @dfn{token
604 type}. Token types as well can be represented as C-like identifiers. By
605 convention, these identifiers should be upper case to distinguish them from
606 nonterminals: for example, @code{INTEGER}, @code{IDENTIFIER}, @code{IF} or
607 @code{RETURN}. A terminal symbol that stands for a particular keyword in
608 the language should be named after that keyword converted to upper case.
609 The terminal symbol @code{error} is reserved for error recovery.
612 A terminal symbol can also be represented as a character literal, just like
613 a C character constant. You should do this whenever a token is just a
614 single character (parenthesis, plus-sign, etc.): use that same character in
615 a literal as the terminal symbol for that token.
617 A third way to represent a terminal symbol is with a C string constant
618 containing several characters. @xref{Symbols}, for more information.
620 The grammar rules also have an expression in Bison syntax. For example,
621 here is the Bison rule for a C @code{return} statement. The semicolon in
622 quotes is a literal character token, representing part of the C syntax for
623 the statement; the naked semicolon, and the colon, are Bison punctuation
627 stmt: RETURN expr ';'
632 @xref{Rules, ,Syntax of Grammar Rules}.
634 @node Semantic Values
635 @section Semantic Values
636 @cindex semantic value
637 @cindex value, semantic
639 A formal grammar selects tokens only by their classifications: for example,
640 if a rule mentions the terminal symbol `integer constant', it means that
641 @emph{any} integer constant is grammatically valid in that position. The
642 precise value of the constant is irrelevant to how to parse the input: if
643 @samp{x+4} is grammatical then @samp{x+1} or @samp{x+3989} is equally
646 But the precise value is very important for what the input means once it is
647 parsed. A compiler is useless if it fails to distinguish between 4, 1 and
648 3989 as constants in the program! Therefore, each token in a Bison grammar
649 has both a token type and a @dfn{semantic value}. @xref{Semantics,
650 ,Defining Language Semantics},
653 The token type is a terminal symbol defined in the grammar, such as
654 @code{INTEGER}, @code{IDENTIFIER} or @code{','}. It tells everything
655 you need to know to decide where the token may validly appear and how to
656 group it with other tokens. The grammar rules know nothing about tokens
659 The semantic value has all the rest of the information about the
660 meaning of the token, such as the value of an integer, or the name of an
661 identifier. (A token such as @code{','} which is just punctuation doesn't
662 need to have any semantic value.)
664 For example, an input token might be classified as token type
665 @code{INTEGER} and have the semantic value 4. Another input token might
666 have the same token type @code{INTEGER} but value 3989. When a grammar
667 rule says that @code{INTEGER} is allowed, either of these tokens is
668 acceptable because each is an @code{INTEGER}. When the parser accepts the
669 token, it keeps track of the token's semantic value.
671 Each grouping can also have a semantic value as well as its nonterminal
672 symbol. For example, in a calculator, an expression typically has a
673 semantic value that is a number. In a compiler for a programming
674 language, an expression typically has a semantic value that is a tree
675 structure describing the meaning of the expression.
677 @node Semantic Actions
678 @section Semantic Actions
679 @cindex semantic actions
680 @cindex actions, semantic
682 In order to be useful, a program must do more than parse input; it must
683 also produce some output based on the input. In a Bison grammar, a grammar
684 rule can have an @dfn{action} made up of C statements. Each time the
685 parser recognizes a match for that rule, the action is executed.
688 Most of the time, the purpose of an action is to compute the semantic value
689 of the whole construct from the semantic values of its parts. For example,
690 suppose we have a rule which says an expression can be the sum of two
691 expressions. When the parser recognizes such a sum, each of the
692 subexpressions has a semantic value which describes how it was built up.
693 The action for this rule should create a similar sort of value for the
694 newly recognized larger expression.
696 For example, here is a rule that says an expression can be the sum of
700 expr: expr '+' expr @{ $$ = $1 + $3; @}
705 The action says how to produce the semantic value of the sum expression
706 from the values of the two subexpressions.
709 @section Writing GLR Parsers
711 @cindex generalized LR (GLR) parsing
714 @cindex shift/reduce conflicts
715 @cindex reduce/reduce conflicts
717 In some grammars, Bison's deterministic
718 LR(1) parsing algorithm cannot decide whether to apply a
719 certain grammar rule at a given point. That is, it may not be able to
720 decide (on the basis of the input read so far) which of two possible
721 reductions (applications of a grammar rule) applies, or whether to apply
722 a reduction or read more of the input and apply a reduction later in the
723 input. These are known respectively as @dfn{reduce/reduce} conflicts
724 (@pxref{Reduce/Reduce}), and @dfn{shift/reduce} conflicts
725 (@pxref{Shift/Reduce}).
727 To use a grammar that is not easily modified to be LR(1), a
728 more general parsing algorithm is sometimes necessary. If you include
729 @code{%glr-parser} among the Bison declarations in your file
730 (@pxref{Grammar Outline}), the result is a Generalized LR
731 (GLR) parser. These parsers handle Bison grammars that
732 contain no unresolved conflicts (i.e., after applying precedence
733 declarations) identically to deterministic parsers. However, when
734 faced with unresolved shift/reduce and reduce/reduce conflicts,
735 GLR parsers use the simple expedient of doing both,
736 effectively cloning the parser to follow both possibilities. Each of
737 the resulting parsers can again split, so that at any given time, there
738 can be any number of possible parses being explored. The parsers
739 proceed in lockstep; that is, all of them consume (shift) a given input
740 symbol before any of them proceed to the next. Each of the cloned
741 parsers eventually meets one of two possible fates: either it runs into
742 a parsing error, in which case it simply vanishes, or it merges with
743 another parser, because the two of them have reduced the input to an
744 identical set of symbols.
746 During the time that there are multiple parsers, semantic actions are
747 recorded, but not performed. When a parser disappears, its recorded
748 semantic actions disappear as well, and are never performed. When a
749 reduction makes two parsers identical, causing them to merge, Bison
750 records both sets of semantic actions. Whenever the last two parsers
751 merge, reverting to the single-parser case, Bison resolves all the
752 outstanding actions either by precedences given to the grammar rules
753 involved, or by performing both actions, and then calling a designated
754 user-defined function on the resulting values to produce an arbitrary
758 * Simple GLR Parsers:: Using GLR parsers on unambiguous grammars.
759 * Merging GLR Parses:: Using GLR parsers to resolve ambiguities.
760 * GLR Semantic Actions:: Considerations for semantic values and deferred actions.
761 * Semantic Predicates:: Controlling a parse with arbitrary computations.
762 * Compiler Requirements:: GLR parsers require a modern C compiler.
765 @node Simple GLR Parsers
766 @subsection Using GLR on Unambiguous Grammars
767 @cindex GLR parsing, unambiguous grammars
768 @cindex generalized LR (GLR) parsing, unambiguous grammars
772 @cindex reduce/reduce conflicts
773 @cindex shift/reduce conflicts
775 In the simplest cases, you can use the GLR algorithm
776 to parse grammars that are unambiguous but fail to be LR(1).
777 Such grammars typically require more than one symbol of lookahead.
779 Consider a problem that
780 arises in the declaration of enumerated and subrange types in the
781 programming language Pascal. Here are some examples:
784 type subrange = lo .. hi;
785 type enum = (a, b, c);
789 The original language standard allows only numeric
790 literals and constant identifiers for the subrange bounds (@samp{lo}
791 and @samp{hi}), but Extended Pascal (ISO/IEC
792 10206) and many other
793 Pascal implementations allow arbitrary expressions there. This gives
794 rise to the following situation, containing a superfluous pair of
798 type subrange = (a) .. b;
802 Compare this to the following declaration of an enumerated
803 type with only one value:
810 (These declarations are contrived, but they are syntactically
811 valid, and more-complicated cases can come up in practical programs.)
813 These two declarations look identical until the @samp{..} token.
814 With normal LR(1) one-token lookahead it is not
815 possible to decide between the two forms when the identifier
816 @samp{a} is parsed. It is, however, desirable
817 for a parser to decide this, since in the latter case
818 @samp{a} must become a new identifier to represent the enumeration
819 value, while in the former case @samp{a} must be evaluated with its
820 current meaning, which may be a constant or even a function call.
822 You could parse @samp{(a)} as an ``unspecified identifier in parentheses'',
823 to be resolved later, but this typically requires substantial
824 contortions in both semantic actions and large parts of the
825 grammar, where the parentheses are nested in the recursive rules for
828 You might think of using the lexer to distinguish between the two
829 forms by returning different tokens for currently defined and
830 undefined identifiers. But if these declarations occur in a local
831 scope, and @samp{a} is defined in an outer scope, then both forms
832 are possible---either locally redefining @samp{a}, or using the
833 value of @samp{a} from the outer scope. So this approach cannot
836 A simple solution to this problem is to declare the parser to
837 use the GLR algorithm.
838 When the GLR parser reaches the critical state, it
839 merely splits into two branches and pursues both syntax rules
840 simultaneously. Sooner or later, one of them runs into a parsing
841 error. If there is a @samp{..} token before the next
842 @samp{;}, the rule for enumerated types fails since it cannot
843 accept @samp{..} anywhere; otherwise, the subrange type rule
844 fails since it requires a @samp{..} token. So one of the branches
845 fails silently, and the other one continues normally, performing
846 all the intermediate actions that were postponed during the split.
848 If the input is syntactically incorrect, both branches fail and the parser
849 reports a syntax error as usual.
851 The effect of all this is that the parser seems to ``guess'' the
852 correct branch to take, or in other words, it seems to use more
853 lookahead than the underlying LR(1) algorithm actually allows
854 for. In this example, LR(2) would suffice, but also some cases
855 that are not LR(@math{k}) for any @math{k} can be handled this way.
857 In general, a GLR parser can take quadratic or cubic worst-case time,
858 and the current Bison parser even takes exponential time and space
859 for some grammars. In practice, this rarely happens, and for many
860 grammars it is possible to prove that it cannot happen.
861 The present example contains only one conflict between two
862 rules, and the type-declaration context containing the conflict
863 cannot be nested. So the number of
864 branches that can exist at any time is limited by the constant 2,
865 and the parsing time is still linear.
867 Here is a Bison grammar corresponding to the example above. It
868 parses a vastly simplified form of Pascal type declarations.
871 %token TYPE DOTDOT ID
881 type_decl : TYPE ID '=' type ';'
886 type : '(' id_list ')'
908 When used as a normal LR(1) grammar, Bison correctly complains
909 about one reduce/reduce conflict. In the conflicting situation the
910 parser chooses one of the alternatives, arbitrarily the one
911 declared first. Therefore the following correct input is not
918 The parser can be turned into a GLR parser, while also telling Bison
919 to be silent about the one known reduce/reduce conflict, by
920 adding these two declarations to the Bison input file (before the first
929 No change in the grammar itself is required. Now the
930 parser recognizes all valid declarations, according to the
931 limited syntax above, transparently. In fact, the user does not even
932 notice when the parser splits.
934 So here we have a case where we can use the benefits of GLR,
935 almost without disadvantages. Even in simple cases like this, however,
936 there are at least two potential problems to beware. First, always
937 analyze the conflicts reported by Bison to make sure that GLR
938 splitting is only done where it is intended. A GLR parser
939 splitting inadvertently may cause problems less obvious than an
940 LR parser statically choosing the wrong alternative in a
941 conflict. Second, consider interactions with the lexer (@pxref{Semantic
942 Tokens}) with great care. Since a split parser consumes tokens without
943 performing any actions during the split, the lexer cannot obtain
944 information via parser actions. Some cases of lexer interactions can be
945 eliminated by using GLR to shift the complications from the
946 lexer to the parser. You must check the remaining cases for
949 In our example, it would be safe for the lexer to return tokens based on
950 their current meanings in some symbol table, because no new symbols are
951 defined in the middle of a type declaration. Though it is possible for
952 a parser to define the enumeration constants as they are parsed, before
953 the type declaration is completed, it actually makes no difference since
954 they cannot be used within the same enumerated type declaration.
956 @node Merging GLR Parses
957 @subsection Using GLR to Resolve Ambiguities
958 @cindex GLR parsing, ambiguous grammars
959 @cindex generalized LR (GLR) parsing, ambiguous grammars
963 @cindex reduce/reduce conflicts
965 Let's consider an example, vastly simplified from a C++ grammar.
970 #define YYSTYPE char const *
972 void yyerror (char const *);
985 | prog stmt @{ printf ("\n"); @}
988 stmt : expr ';' %dprec 1
992 expr : ID @{ printf ("%s ", $$); @}
993 | TYPENAME '(' expr ')'
994 @{ printf ("%s <cast> ", $1); @}
995 | expr '+' expr @{ printf ("+ "); @}
996 | expr '=' expr @{ printf ("= "); @}
999 decl : TYPENAME declarator ';'
1000 @{ printf ("%s <declare> ", $1); @}
1001 | TYPENAME declarator '=' expr ';'
1002 @{ printf ("%s <init-declare> ", $1); @}
1005 declarator : ID @{ printf ("\"%s\" ", $1); @}
1006 | '(' declarator ')'
1011 This models a problematic part of the C++ grammar---the ambiguity between
1012 certain declarations and statements. For example,
1019 parses as either an @code{expr} or a @code{stmt}
1020 (assuming that @samp{T} is recognized as a @code{TYPENAME} and
1021 @samp{x} as an @code{ID}).
1022 Bison detects this as a reduce/reduce conflict between the rules
1023 @code{expr : ID} and @code{declarator : ID}, which it cannot resolve at the
1024 time it encounters @code{x} in the example above. Since this is a
1025 GLR parser, it therefore splits the problem into two parses, one for
1026 each choice of resolving the reduce/reduce conflict.
1027 Unlike the example from the previous section (@pxref{Simple GLR Parsers}),
1028 however, neither of these parses ``dies,'' because the grammar as it stands is
1029 ambiguous. One of the parsers eventually reduces @code{stmt : expr ';'} and
1030 the other reduces @code{stmt : decl}, after which both parsers are in an
1031 identical state: they've seen @samp{prog stmt} and have the same unprocessed
1032 input remaining. We say that these parses have @dfn{merged.}
1034 At this point, the GLR parser requires a specification in the
1035 grammar of how to choose between the competing parses.
1036 In the example above, the two @code{%dprec}
1037 declarations specify that Bison is to give precedence
1038 to the parse that interprets the example as a
1039 @code{decl}, which implies that @code{x} is a declarator.
1040 The parser therefore prints
1043 "x" y z + T <init-declare>
1046 The @code{%dprec} declarations only come into play when more than one
1047 parse survives. Consider a different input string for this parser:
1054 This is another example of using GLR to parse an unambiguous
1055 construct, as shown in the previous section (@pxref{Simple GLR Parsers}).
1056 Here, there is no ambiguity (this cannot be parsed as a declaration).
1057 However, at the time the Bison parser encounters @code{x}, it does not
1058 have enough information to resolve the reduce/reduce conflict (again,
1059 between @code{x} as an @code{expr} or a @code{declarator}). In this
1060 case, no precedence declaration is used. Again, the parser splits
1061 into two, one assuming that @code{x} is an @code{expr}, and the other
1062 assuming @code{x} is a @code{declarator}. The second of these parsers
1063 then vanishes when it sees @code{+}, and the parser prints
1069 Suppose that instead of resolving the ambiguity, you wanted to see all
1070 the possibilities. For this purpose, you must merge the semantic
1071 actions of the two possible parsers, rather than choosing one over the
1072 other. To do so, you could change the declaration of @code{stmt} as
1076 stmt : expr ';' %merge <stmtMerge>
1077 | decl %merge <stmtMerge>
1082 and define the @code{stmtMerge} function as:
1086 stmtMerge (YYSTYPE x0, YYSTYPE x1)
1094 with an accompanying forward declaration
1095 in the C declarations at the beginning of the file:
1099 #define YYSTYPE char const *
1100 static YYSTYPE stmtMerge (YYSTYPE x0, YYSTYPE x1);
1105 With these declarations, the resulting parser parses the first example
1106 as both an @code{expr} and a @code{decl}, and prints
1109 "x" y z + T <init-declare> x T <cast> y z + = <OR>
1112 Bison requires that all of the
1113 productions that participate in any particular merge have identical
1114 @samp{%merge} clauses. Otherwise, the ambiguity would be unresolvable,
1115 and the parser will report an error during any parse that results in
1116 the offending merge.
1118 @node GLR Semantic Actions
1119 @subsection GLR Semantic Actions
1121 The nature of GLR parsing and the structure of the generated
1122 parsers give rise to certain restrictions on semantic values and actions.
1124 @subsubsection Deferred semantic actions
1125 @cindex deferred semantic actions
1126 By definition, a deferred semantic action is not performed at the same time as
1127 the associated reduction.
1128 This raises caveats for several Bison features you might use in a semantic
1129 action in a GLR parser.
1132 @cindex GLR parsers and @code{yychar}
1134 @cindex GLR parsers and @code{yylval}
1136 @cindex GLR parsers and @code{yylloc}
1137 In any semantic action, you can examine @code{yychar} to determine the type of
1138 the lookahead token present at the time of the associated reduction.
1139 After checking that @code{yychar} is not set to @code{YYEMPTY} or @code{YYEOF},
1140 you can then examine @code{yylval} and @code{yylloc} to determine the
1141 lookahead token's semantic value and location, if any.
1142 In a nondeferred semantic action, you can also modify any of these variables to
1143 influence syntax analysis.
1144 @xref{Lookahead, ,Lookahead Tokens}.
1147 @cindex GLR parsers and @code{yyclearin}
1148 In a deferred semantic action, it's too late to influence syntax analysis.
1149 In this case, @code{yychar}, @code{yylval}, and @code{yylloc} are set to
1150 shallow copies of the values they had at the time of the associated reduction.
1151 For this reason alone, modifying them is dangerous.
1152 Moreover, the result of modifying them is undefined and subject to change with
1153 future versions of Bison.
1154 For example, if a semantic action might be deferred, you should never write it
1155 to invoke @code{yyclearin} (@pxref{Action Features}) or to attempt to free
1156 memory referenced by @code{yylval}.
1158 @subsubsection YYERROR
1160 @cindex GLR parsers and @code{YYERROR}
1161 Another Bison feature requiring special consideration is @code{YYERROR}
1162 (@pxref{Action Features}), which you can invoke in a semantic action to
1163 initiate error recovery.
1164 During deterministic GLR operation, the effect of @code{YYERROR} is
1165 the same as its effect in a deterministic parser.
1166 The effect in a deferred action is similar, but the precise point of the
1167 error is undefined; instead, the parser reverts to deterministic operation,
1168 selecting an unspecified stack on which to continue with a syntax error.
1169 In a semantic predicate (see @ref{Semantic Predicates}) during nondeterministic
1170 parsing, @code{YYERROR} silently prunes
1171 the parse that invoked the test.
1173 @subsubsection Restrictions on semantic values and locations
1174 GLR parsers require that you use POD (Plain Old Data) types for
1175 semantic values and location types when using the generated parsers as
1178 @node Semantic Predicates
1179 @subsection Controlling a Parse with Arbitrary Predicates
1181 @cindex Semantic predicates in GLR parsers
1183 In addition to the @code{%dprec} and @code{%merge} directives,
1185 allow you to reject parses on the basis of arbitrary computations executed
1186 in user code, without having Bison treat this rejection as an error
1187 if there are alternative parses. (This feature is experimental and may
1188 evolve. We welcome user feedback.) For example,
1192 %?@{ new_syntax @} "widget" id new_args @{ $$ = f($3, $4); @}
1193 | %?@{ !new_syntax @} "widget" id old_args @{ $$ = f($3, $4); @}
1198 is one way to allow the same parser to handle two different syntaxes for
1199 widgets. The clause preceded by @code{%?} is treated like an ordinary
1200 action, except that its text is treated as an expression and is always
1201 evaluated immediately (even when in nondeterministic mode). If the
1202 expression yields 0 (false), the clause is treated as a syntax error,
1203 which, in a nondeterministic parser, causes the stack in which it is reduced
1204 to die. In a deterministic parser, it acts like YYERROR.
1206 As the example shows, predicates otherwise look like semantic actions, and
1207 therefore you must be take them into account when determining the numbers
1208 to use for denoting the semantic values of right-hand side symbols.
1209 Predicate actions, however, have no defined value, and may not be given
1212 There is a subtle difference between semantic predicates and ordinary
1213 actions in nondeterministic mode, since the latter are deferred.
1214 For example, we could try to rewrite the previous example as
1218 @{ if (!new_syntax) YYERROR; @} "widget" id new_args @{ $$ = f($3, $4); @}
1219 | @{ if (new_syntax) YYERROR; @} "widget" id old_args @{ $$ = f($3, $4); @}
1224 (reversing the sense of the predicate tests to cause an error when they are
1225 false). However, this
1226 does @emph{not} have the same effect if @code{new_args} and @code{old_args}
1227 have overlapping syntax.
1228 Since the mid-rule actions testing @code{new_syntax} are deferred,
1229 a GLR parser first encounters the unresolved ambiguous reduction
1230 for cases where @code{new_args} and @code{old_args} recognize the same string
1231 @emph{before} performing the tests of @code{new_syntax}. It therefore
1234 Finally, be careful in writing predicates: deferred actions have not been
1235 evaluated, so that using them in a predicate will have undefined effects.
1237 @node Compiler Requirements
1238 @subsection Considerations when Compiling GLR Parsers
1239 @cindex @code{inline}
1240 @cindex GLR parsers and @code{inline}
1242 The GLR parsers require a compiler for ISO C89 or
1243 later. In addition, they use the @code{inline} keyword, which is not
1244 C89, but is C99 and is a common extension in pre-C99 compilers. It is
1245 up to the user of these parsers to handle
1246 portability issues. For instance, if using Autoconf and the Autoconf
1247 macro @code{AC_C_INLINE}, a mere
1256 will suffice. Otherwise, we suggest
1260 #if __STDC_VERSION__ < 199901 && ! defined __GNUC__ && ! defined inline
1266 @node Locations Overview
1269 @cindex textual location
1270 @cindex location, textual
1272 Many applications, like interpreters or compilers, have to produce verbose
1273 and useful error messages. To achieve this, one must be able to keep track of
1274 the @dfn{textual location}, or @dfn{location}, of each syntactic construct.
1275 Bison provides a mechanism for handling these locations.
1277 Each token has a semantic value. In a similar fashion, each token has an
1278 associated location, but the type of locations is the same for all tokens and
1279 groupings. Moreover, the output parser is equipped with a default data
1280 structure for storing locations (@pxref{Locations}, for more details).
1282 Like semantic values, locations can be reached in actions using a dedicated
1283 set of constructs. In the example above, the location of the whole grouping
1284 is @code{@@$}, while the locations of the subexpressions are @code{@@1} and
1287 When a rule is matched, a default action is used to compute the semantic value
1288 of its left hand side (@pxref{Actions}). In the same way, another default
1289 action is used for locations. However, the action for locations is general
1290 enough for most cases, meaning there is usually no need to describe for each
1291 rule how @code{@@$} should be formed. When building a new location for a given
1292 grouping, the default behavior of the output parser is to take the beginning
1293 of the first symbol, and the end of the last symbol.
1296 @section Bison Output: the Parser File
1297 @cindex Bison parser
1298 @cindex Bison utility
1299 @cindex lexical analyzer, purpose
1302 When you run Bison, you give it a Bison grammar file as input. The output
1303 is a C source file that parses the language described by the grammar.
1304 This file is called a @dfn{Bison parser}. Keep in mind that the Bison
1305 utility and the Bison parser are two distinct programs: the Bison utility
1306 is a program whose output is the Bison parser that becomes part of your
1309 The job of the Bison parser is to group tokens into groupings according to
1310 the grammar rules---for example, to build identifiers and operators into
1311 expressions. As it does this, it runs the actions for the grammar rules it
1314 The tokens come from a function called the @dfn{lexical analyzer} that
1315 you must supply in some fashion (such as by writing it in C). The Bison
1316 parser calls the lexical analyzer each time it wants a new token. It
1317 doesn't know what is ``inside'' the tokens (though their semantic values
1318 may reflect this). Typically the lexical analyzer makes the tokens by
1319 parsing characters of text, but Bison does not depend on this.
1320 @xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}.
1322 The Bison parser file is C code which defines a function named
1323 @code{yyparse} which implements that grammar. This function does not make
1324 a complete C program: you must supply some additional functions. One is
1325 the lexical analyzer. Another is an error-reporting function which the
1326 parser calls to report an error. In addition, a complete C program must
1327 start with a function called @code{main}; you have to provide this, and
1328 arrange for it to call @code{yyparse} or the parser will never run.
1329 @xref{Interface, ,Parser C-Language Interface}.
1331 Aside from the token type names and the symbols in the actions you
1332 write, all symbols defined in the Bison parser file itself
1333 begin with @samp{yy} or @samp{YY}. This includes interface functions
1334 such as the lexical analyzer function @code{yylex}, the error reporting
1335 function @code{yyerror} and the parser function @code{yyparse} itself.
1336 This also includes numerous identifiers used for internal purposes.
1337 Therefore, you should avoid using C identifiers starting with @samp{yy}
1338 or @samp{YY} in the Bison grammar file except for the ones defined in
1339 this manual. Also, you should avoid using the C identifiers
1340 @samp{malloc} and @samp{free} for anything other than their usual
1343 In some cases the Bison parser file includes system headers, and in
1344 those cases your code should respect the identifiers reserved by those
1345 headers. On some non-GNU hosts, @code{<alloca.h>}, @code{<malloc.h>},
1346 @code{<stddef.h>}, and @code{<stdlib.h>} are included as needed to
1347 declare memory allocators and related types. @code{<libintl.h>} is
1348 included if message translation is in use
1349 (@pxref{Internationalization}). Other system headers may
1350 be included if you define @code{YYDEBUG} to a nonzero value
1351 (@pxref{Tracing, ,Tracing Your Parser}).
1354 @section Stages in Using Bison
1355 @cindex stages in using Bison
1358 The actual language-design process using Bison, from grammar specification
1359 to a working compiler or interpreter, has these parts:
1363 Formally specify the grammar in a form recognized by Bison
1364 (@pxref{Grammar File, ,Bison Grammar Files}). For each grammatical rule
1365 in the language, describe the action that is to be taken when an
1366 instance of that rule is recognized. The action is described by a
1367 sequence of C statements.
1370 Write a lexical analyzer to process input and pass tokens to the parser.
1371 The lexical analyzer may be written by hand in C (@pxref{Lexical, ,The
1372 Lexical Analyzer Function @code{yylex}}). It could also be produced
1373 using Lex, but the use of Lex is not discussed in this manual.
1376 Write a controlling function that calls the Bison-produced parser.
1379 Write error-reporting routines.
1382 To turn this source code as written into a runnable program, you
1383 must follow these steps:
1387 Run Bison on the grammar to produce the parser.
1390 Compile the code output by Bison, as well as any other source files.
1393 Link the object files to produce the finished product.
1396 @node Grammar Layout
1397 @section The Overall Layout of a Bison Grammar
1398 @cindex grammar file
1400 @cindex format of grammar file
1401 @cindex layout of Bison grammar
1403 The input file for the Bison utility is a @dfn{Bison grammar file}. The
1404 general form of a Bison grammar file is as follows:
1411 @var{Bison declarations}
1420 The @samp{%%}, @samp{%@{} and @samp{%@}} are punctuation that appears
1421 in every Bison grammar file to separate the sections.
1423 The prologue may define types and variables used in the actions. You can
1424 also use preprocessor commands to define macros used there, and use
1425 @code{#include} to include header files that do any of these things.
1426 You need to declare the lexical analyzer @code{yylex} and the error
1427 printer @code{yyerror} here, along with any other global identifiers
1428 used by the actions in the grammar rules.
1430 The Bison declarations declare the names of the terminal and nonterminal
1431 symbols, and may also describe operator precedence and the data types of
1432 semantic values of various symbols.
1434 The grammar rules define how to construct each nonterminal symbol from its
1437 The epilogue can contain any code you want to use. Often the
1438 definitions of functions declared in the prologue go here. In a
1439 simple program, all the rest of the program can go here.
1443 @cindex simple examples
1444 @cindex examples, simple
1446 Now we show and explain three sample programs written using Bison: a
1447 reverse polish notation calculator, an algebraic (infix) notation
1448 calculator, and a multi-function calculator. All three have been tested
1449 under BSD Unix 4.3; each produces a usable, though limited, interactive
1450 desk-top calculator.
1452 These examples are simple, but Bison grammars for real programming
1453 languages are written the same way. You can copy these examples into a
1454 source file to try them.
1457 * RPN Calc:: Reverse polish notation calculator;
1458 a first example with no operator precedence.
1459 * Infix Calc:: Infix (algebraic) notation calculator.
1460 Operator precedence is introduced.
1461 * Simple Error Recovery:: Continuing after syntax errors.
1462 * Location Tracking Calc:: Demonstrating the use of @@@var{n} and @@$.
1463 * Multi-function Calc:: Calculator with memory and trig functions.
1464 It uses multiple data-types for semantic values.
1465 * Exercises:: Ideas for improving the multi-function calculator.
1469 @section Reverse Polish Notation Calculator
1470 @cindex reverse polish notation
1471 @cindex polish notation calculator
1472 @cindex @code{rpcalc}
1473 @cindex calculator, simple
1475 The first example is that of a simple double-precision @dfn{reverse polish
1476 notation} calculator (a calculator using postfix operators). This example
1477 provides a good starting point, since operator precedence is not an issue.
1478 The second example will illustrate how operator precedence is handled.
1480 The source code for this calculator is named @file{rpcalc.y}. The
1481 @samp{.y} extension is a convention used for Bison input files.
1484 * Rpcalc Declarations:: Prologue (declarations) for rpcalc.
1485 * Rpcalc Rules:: Grammar Rules for rpcalc, with explanation.
1486 * Rpcalc Lexer:: The lexical analyzer.
1487 * Rpcalc Main:: The controlling function.
1488 * Rpcalc Error:: The error reporting function.
1489 * Rpcalc Generate:: Running Bison on the grammar file.
1490 * Rpcalc Compile:: Run the C compiler on the output code.
1493 @node Rpcalc Declarations
1494 @subsection Declarations for @code{rpcalc}
1496 Here are the C and Bison declarations for the reverse polish notation
1497 calculator. As in C, comments are placed between @samp{/*@dots{}*/}.
1500 /* Reverse polish notation calculator. */
1503 #define YYSTYPE double
1506 void yyerror (char const *);
1511 %% /* Grammar rules and actions follow. */
1514 The declarations section (@pxref{Prologue, , The prologue}) contains two
1515 preprocessor directives and two forward declarations.
1517 The @code{#define} directive defines the macro @code{YYSTYPE}, thus
1518 specifying the C data type for semantic values of both tokens and
1519 groupings (@pxref{Value Type, ,Data Types of Semantic Values}). The
1520 Bison parser will use whatever type @code{YYSTYPE} is defined as; if you
1521 don't define it, @code{int} is the default. Because we specify
1522 @code{double}, each token and each expression has an associated value,
1523 which is a floating point number.
1525 The @code{#include} directive is used to declare the exponentiation
1526 function @code{pow}.
1528 The forward declarations for @code{yylex} and @code{yyerror} are
1529 needed because the C language requires that functions be declared
1530 before they are used. These functions will be defined in the
1531 epilogue, but the parser calls them so they must be declared in the
1534 The second section, Bison declarations, provides information to Bison
1535 about the token types (@pxref{Bison Declarations, ,The Bison
1536 Declarations Section}). Each terminal symbol that is not a
1537 single-character literal must be declared here. (Single-character
1538 literals normally don't need to be declared.) In this example, all the
1539 arithmetic operators are designated by single-character literals, so the
1540 only terminal symbol that needs to be declared is @code{NUM}, the token
1541 type for numeric constants.
1544 @subsection Grammar Rules for @code{rpcalc}
1546 Here are the grammar rules for the reverse polish notation calculator.
1554 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1557 exp: NUM @{ $$ = $1; @}
1558 | exp exp '+' @{ $$ = $1 + $2; @}
1559 | exp exp '-' @{ $$ = $1 - $2; @}
1560 | exp exp '*' @{ $$ = $1 * $2; @}
1561 | exp exp '/' @{ $$ = $1 / $2; @}
1562 /* Exponentiation */
1563 | exp exp '^' @{ $$ = pow ($1, $2); @}
1565 | exp 'n' @{ $$ = -$1; @}
1570 The groupings of the rpcalc ``language'' defined here are the expression
1571 (given the name @code{exp}), the line of input (@code{line}), and the
1572 complete input transcript (@code{input}). Each of these nonterminal
1573 symbols has several alternate rules, joined by the vertical bar @samp{|}
1574 which is read as ``or''. The following sections explain what these rules
1577 The semantics of the language is determined by the actions taken when a
1578 grouping is recognized. The actions are the C code that appears inside
1579 braces. @xref{Actions}.
1581 You must specify these actions in C, but Bison provides the means for
1582 passing semantic values between the rules. In each action, the
1583 pseudo-variable @code{$$} stands for the semantic value for the grouping
1584 that the rule is going to construct. Assigning a value to @code{$$} is the
1585 main job of most actions. The semantic values of the components of the
1586 rule are referred to as @code{$1}, @code{$2}, and so on.
1595 @subsubsection Explanation of @code{input}
1597 Consider the definition of @code{input}:
1605 This definition reads as follows: ``A complete input is either an empty
1606 string, or a complete input followed by an input line''. Notice that
1607 ``complete input'' is defined in terms of itself. This definition is said
1608 to be @dfn{left recursive} since @code{input} appears always as the
1609 leftmost symbol in the sequence. @xref{Recursion, ,Recursive Rules}.
1611 The first alternative is empty because there are no symbols between the
1612 colon and the first @samp{|}; this means that @code{input} can match an
1613 empty string of input (no tokens). We write the rules this way because it
1614 is legitimate to type @kbd{Ctrl-d} right after you start the calculator.
1615 It's conventional to put an empty alternative first and write the comment
1616 @samp{/* empty */} in it.
1618 The second alternate rule (@code{input line}) handles all nontrivial input.
1619 It means, ``After reading any number of lines, read one more line if
1620 possible.'' The left recursion makes this rule into a loop. Since the
1621 first alternative matches empty input, the loop can be executed zero or
1624 The parser function @code{yyparse} continues to process input until a
1625 grammatical error is seen or the lexical analyzer says there are no more
1626 input tokens; we will arrange for the latter to happen at end-of-input.
1629 @subsubsection Explanation of @code{line}
1631 Now consider the definition of @code{line}:
1635 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1639 The first alternative is a token which is a newline character; this means
1640 that rpcalc accepts a blank line (and ignores it, since there is no
1641 action). The second alternative is an expression followed by a newline.
1642 This is the alternative that makes rpcalc useful. The semantic value of
1643 the @code{exp} grouping is the value of @code{$1} because the @code{exp} in
1644 question is the first symbol in the alternative. The action prints this
1645 value, which is the result of the computation the user asked for.
1647 This action is unusual because it does not assign a value to @code{$$}. As
1648 a consequence, the semantic value associated with the @code{line} is
1649 uninitialized (its value will be unpredictable). This would be a bug if
1650 that value were ever used, but we don't use it: once rpcalc has printed the
1651 value of the user's input line, that value is no longer needed.
1654 @subsubsection Explanation of @code{expr}
1656 The @code{exp} grouping has several rules, one for each kind of expression.
1657 The first rule handles the simplest expressions: those that are just numbers.
1658 The second handles an addition-expression, which looks like two expressions
1659 followed by a plus-sign. The third handles subtraction, and so on.
1663 | exp exp '+' @{ $$ = $1 + $2; @}
1664 | exp exp '-' @{ $$ = $1 - $2; @}
1669 We have used @samp{|} to join all the rules for @code{exp}, but we could
1670 equally well have written them separately:
1674 exp: exp exp '+' @{ $$ = $1 + $2; @} ;
1675 exp: exp exp '-' @{ $$ = $1 - $2; @} ;
1679 Most of the rules have actions that compute the value of the expression in
1680 terms of the value of its parts. For example, in the rule for addition,
1681 @code{$1} refers to the first component @code{exp} and @code{$2} refers to
1682 the second one. The third component, @code{'+'}, has no meaningful
1683 associated semantic value, but if it had one you could refer to it as
1684 @code{$3}. When @code{yyparse} recognizes a sum expression using this
1685 rule, the sum of the two subexpressions' values is produced as the value of
1686 the entire expression. @xref{Actions}.
1688 You don't have to give an action for every rule. When a rule has no
1689 action, Bison by default copies the value of @code{$1} into @code{$$}.
1690 This is what happens in the first rule (the one that uses @code{NUM}).
1692 The formatting shown here is the recommended convention, but Bison does
1693 not require it. You can add or change white space as much as you wish.
1697 exp : NUM | exp exp '+' @{$$ = $1 + $2; @} | @dots{} ;
1701 means the same thing as this:
1705 | exp exp '+' @{ $$ = $1 + $2; @}
1711 The latter, however, is much more readable.
1714 @subsection The @code{rpcalc} Lexical Analyzer
1715 @cindex writing a lexical analyzer
1716 @cindex lexical analyzer, writing
1718 The lexical analyzer's job is low-level parsing: converting characters
1719 or sequences of characters into tokens. The Bison parser gets its
1720 tokens by calling the lexical analyzer. @xref{Lexical, ,The Lexical
1721 Analyzer Function @code{yylex}}.
1723 Only a simple lexical analyzer is needed for the RPN
1725 lexical analyzer skips blanks and tabs, then reads in numbers as
1726 @code{double} and returns them as @code{NUM} tokens. Any other character
1727 that isn't part of a number is a separate token. Note that the token-code
1728 for such a single-character token is the character itself.
1730 The return value of the lexical analyzer function is a numeric code which
1731 represents a token type. The same text used in Bison rules to stand for
1732 this token type is also a C expression for the numeric code for the type.
1733 This works in two ways. If the token type is a character literal, then its
1734 numeric code is that of the character; you can use the same
1735 character literal in the lexical analyzer to express the number. If the
1736 token type is an identifier, that identifier is defined by Bison as a C
1737 macro whose definition is the appropriate number. In this example,
1738 therefore, @code{NUM} becomes a macro for @code{yylex} to use.
1740 The semantic value of the token (if it has one) is stored into the
1741 global variable @code{yylval}, which is where the Bison parser will look
1742 for it. (The C data type of @code{yylval} is @code{YYSTYPE}, which was
1743 defined at the beginning of the grammar; @pxref{Rpcalc Declarations,
1744 ,Declarations for @code{rpcalc}}.)
1746 A token type code of zero is returned if the end-of-input is encountered.
1747 (Bison recognizes any nonpositive value as indicating end-of-input.)
1749 Here is the code for the lexical analyzer:
1753 /* The lexical analyzer returns a double floating point
1754 number on the stack and the token NUM, or the numeric code
1755 of the character read if not a number. It skips all blanks
1756 and tabs, and returns 0 for end-of-input. */
1767 /* Skip white space. */
1768 while ((c = getchar ()) == ' ' || c == '\t')
1772 /* Process numbers. */
1773 if (c == '.' || isdigit (c))
1776 scanf ("%lf", &yylval);
1781 /* Return end-of-input. */
1784 /* Return a single char. */
1791 @subsection The Controlling Function
1792 @cindex controlling function
1793 @cindex main function in simple example
1795 In keeping with the spirit of this example, the controlling function is
1796 kept to the bare minimum. The only requirement is that it call
1797 @code{yyparse} to start the process of parsing.
1810 @subsection The Error Reporting Routine
1811 @cindex error reporting routine
1813 When @code{yyparse} detects a syntax error, it calls the error reporting
1814 function @code{yyerror} to print an error message (usually but not
1815 always @code{"syntax error"}). It is up to the programmer to supply
1816 @code{yyerror} (@pxref{Interface, ,Parser C-Language Interface}), so
1817 here is the definition we will use:
1823 /* Called by yyparse on error. */
1825 yyerror (char const *s)
1827 fprintf (stderr, "%s\n", s);
1832 After @code{yyerror} returns, the Bison parser may recover from the error
1833 and continue parsing if the grammar contains a suitable error rule
1834 (@pxref{Error Recovery}). Otherwise, @code{yyparse} returns nonzero. We
1835 have not written any error rules in this example, so any invalid input will
1836 cause the calculator program to exit. This is not clean behavior for a
1837 real calculator, but it is adequate for the first example.
1839 @node Rpcalc Generate
1840 @subsection Running Bison to Make the Parser
1841 @cindex running Bison (introduction)
1843 Before running Bison to produce a parser, we need to decide how to
1844 arrange all the source code in one or more source files. For such a
1845 simple example, the easiest thing is to put everything in one file. The
1846 definitions of @code{yylex}, @code{yyerror} and @code{main} go at the
1847 end, in the epilogue of the file
1848 (@pxref{Grammar Layout, ,The Overall Layout of a Bison Grammar}).
1850 For a large project, you would probably have several source files, and use
1851 @code{make} to arrange to recompile them.
1853 With all the source in a single file, you use the following command to
1854 convert it into a parser file:
1861 In this example the file was called @file{rpcalc.y} (for ``Reverse Polish
1862 @sc{calc}ulator''). Bison produces a file named @file{@var{file}.tab.c},
1863 removing the @samp{.y} from the original file name. The file output by
1864 Bison contains the source code for @code{yyparse}. The additional
1865 functions in the input file (@code{yylex}, @code{yyerror} and @code{main})
1866 are copied verbatim to the output.
1868 @node Rpcalc Compile
1869 @subsection Compiling the Parser File
1870 @cindex compiling the parser
1872 Here is how to compile and run the parser file:
1876 # @r{List files in current directory.}
1878 rpcalc.tab.c rpcalc.y
1882 # @r{Compile the Bison parser.}
1883 # @r{@samp{-lm} tells compiler to search math library for @code{pow}.}
1884 $ @kbd{cc -lm -o rpcalc rpcalc.tab.c}
1888 # @r{List files again.}
1890 rpcalc rpcalc.tab.c rpcalc.y
1894 The file @file{rpcalc} now contains the executable code. Here is an
1895 example session using @code{rpcalc}.
1901 @kbd{3 7 + 3 4 5 *+-}
1903 @kbd{3 7 + 3 4 5 * + - n} @r{Note the unary minus, @samp{n}}
1907 @kbd{3 4 ^} @r{Exponentiation}
1909 @kbd{^D} @r{End-of-file indicator}
1914 @section Infix Notation Calculator: @code{calc}
1915 @cindex infix notation calculator
1917 @cindex calculator, infix notation
1919 We now modify rpcalc to handle infix operators instead of postfix. Infix
1920 notation involves the concept of operator precedence and the need for
1921 parentheses nested to arbitrary depth. Here is the Bison code for
1922 @file{calc.y}, an infix desk-top calculator.
1925 /* Infix notation calculator. */
1928 #define YYSTYPE double
1932 void yyerror (char const *);
1935 /* Bison declarations. */
1939 %precedence NEG /* negation--unary minus */
1940 %right '^' /* exponentiation */
1942 %% /* The grammar follows. */
1948 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1951 exp: NUM @{ $$ = $1; @}
1952 | exp '+' exp @{ $$ = $1 + $3; @}
1953 | exp '-' exp @{ $$ = $1 - $3; @}
1954 | exp '*' exp @{ $$ = $1 * $3; @}
1955 | exp '/' exp @{ $$ = $1 / $3; @}
1956 | '-' exp %prec NEG @{ $$ = -$2; @}
1957 | exp '^' exp @{ $$ = pow ($1, $3); @}
1958 | '(' exp ')' @{ $$ = $2; @}
1964 The functions @code{yylex}, @code{yyerror} and @code{main} can be the
1967 There are two important new features shown in this code.
1969 In the second section (Bison declarations), @code{%left} declares token
1970 types and says they are left-associative operators. The declarations
1971 @code{%left} and @code{%right} (right associativity) take the place of
1972 @code{%token} which is used to declare a token type name without
1973 associativity/precedence. (These tokens are single-character literals, which
1974 ordinarily don't need to be declared. We declare them here to specify
1975 the associativity/precedence.)
1977 Operator precedence is determined by the line ordering of the
1978 declarations; the higher the line number of the declaration (lower on
1979 the page or screen), the higher the precedence. Hence, exponentiation
1980 has the highest precedence, unary minus (@code{NEG}) is next, followed
1981 by @samp{*} and @samp{/}, and so on. Unary minus is not associative,
1982 only precedence matters (@code{%precedence}. @xref{Precedence, ,Operator
1985 The other important new feature is the @code{%prec} in the grammar
1986 section for the unary minus operator. The @code{%prec} simply instructs
1987 Bison that the rule @samp{| '-' exp} has the same precedence as
1988 @code{NEG}---in this case the next-to-highest. @xref{Contextual
1989 Precedence, ,Context-Dependent Precedence}.
1991 Here is a sample run of @file{calc.y}:
1996 @kbd{4 + 4.5 - (34/(8*3+-3))}
2004 @node Simple Error Recovery
2005 @section Simple Error Recovery
2006 @cindex error recovery, simple
2008 Up to this point, this manual has not addressed the issue of @dfn{error
2009 recovery}---how to continue parsing after the parser detects a syntax
2010 error. All we have handled is error reporting with @code{yyerror}.
2011 Recall that by default @code{yyparse} returns after calling
2012 @code{yyerror}. This means that an erroneous input line causes the
2013 calculator program to exit. Now we show how to rectify this deficiency.
2015 The Bison language itself includes the reserved word @code{error}, which
2016 may be included in the grammar rules. In the example below it has
2017 been added to one of the alternatives for @code{line}:
2022 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
2023 | error '\n' @{ yyerrok; @}
2028 This addition to the grammar allows for simple error recovery in the
2029 event of a syntax error. If an expression that cannot be evaluated is
2030 read, the error will be recognized by the third rule for @code{line},
2031 and parsing will continue. (The @code{yyerror} function is still called
2032 upon to print its message as well.) The action executes the statement
2033 @code{yyerrok}, a macro defined automatically by Bison; its meaning is
2034 that error recovery is complete (@pxref{Error Recovery}). Note the
2035 difference between @code{yyerrok} and @code{yyerror}; neither one is a
2038 This form of error recovery deals with syntax errors. There are other
2039 kinds of errors; for example, division by zero, which raises an exception
2040 signal that is normally fatal. A real calculator program must handle this
2041 signal and use @code{longjmp} to return to @code{main} and resume parsing
2042 input lines; it would also have to discard the rest of the current line of
2043 input. We won't discuss this issue further because it is not specific to
2046 @node Location Tracking Calc
2047 @section Location Tracking Calculator: @code{ltcalc}
2048 @cindex location tracking calculator
2049 @cindex @code{ltcalc}
2050 @cindex calculator, location tracking
2052 This example extends the infix notation calculator with location
2053 tracking. This feature will be used to improve the error messages. For
2054 the sake of clarity, this example is a simple integer calculator, since
2055 most of the work needed to use locations will be done in the lexical
2059 * Ltcalc Declarations:: Bison and C declarations for ltcalc.
2060 * Ltcalc Rules:: Grammar rules for ltcalc, with explanations.
2061 * Ltcalc Lexer:: The lexical analyzer.
2064 @node Ltcalc Declarations
2065 @subsection Declarations for @code{ltcalc}
2067 The C and Bison declarations for the location tracking calculator are
2068 the same as the declarations for the infix notation calculator.
2071 /* Location tracking calculator. */
2077 void yyerror (char const *);
2080 /* Bison declarations. */
2088 %% /* The grammar follows. */
2092 Note there are no declarations specific to locations. Defining a data
2093 type for storing locations is not needed: we will use the type provided
2094 by default (@pxref{Location Type, ,Data Types of Locations}), which is a
2095 four member structure with the following integer fields:
2096 @code{first_line}, @code{first_column}, @code{last_line} and
2097 @code{last_column}. By conventions, and in accordance with the GNU
2098 Coding Standards and common practice, the line and column count both
2102 @subsection Grammar Rules for @code{ltcalc}
2104 Whether handling locations or not has no effect on the syntax of your
2105 language. Therefore, grammar rules for this example will be very close
2106 to those of the previous example: we will only modify them to benefit
2107 from the new information.
2109 Here, we will use locations to report divisions by zero, and locate the
2110 wrong expressions or subexpressions.
2121 | exp '\n' @{ printf ("%d\n", $1); @}
2126 exp : NUM @{ $$ = $1; @}
2127 | exp '+' exp @{ $$ = $1 + $3; @}
2128 | exp '-' exp @{ $$ = $1 - $3; @}
2129 | exp '*' exp @{ $$ = $1 * $3; @}
2139 fprintf (stderr, "%d.%d-%d.%d: division by zero",
2140 @@3.first_line, @@3.first_column,
2141 @@3.last_line, @@3.last_column);
2146 | '-' exp %prec NEG @{ $$ = -$2; @}
2147 | exp '^' exp @{ $$ = pow ($1, $3); @}
2148 | '(' exp ')' @{ $$ = $2; @}
2152 This code shows how to reach locations inside of semantic actions, by
2153 using the pseudo-variables @code{@@@var{n}} for rule components, and the
2154 pseudo-variable @code{@@$} for groupings.
2156 We don't need to assign a value to @code{@@$}: the output parser does it
2157 automatically. By default, before executing the C code of each action,
2158 @code{@@$} is set to range from the beginning of @code{@@1} to the end
2159 of @code{@@@var{n}}, for a rule with @var{n} components. This behavior
2160 can be redefined (@pxref{Location Default Action, , Default Action for
2161 Locations}), and for very specific rules, @code{@@$} can be computed by
2165 @subsection The @code{ltcalc} Lexical Analyzer.
2167 Until now, we relied on Bison's defaults to enable location
2168 tracking. The next step is to rewrite the lexical analyzer, and make it
2169 able to feed the parser with the token locations, as it already does for
2172 To this end, we must take into account every single character of the
2173 input text, to avoid the computed locations of being fuzzy or wrong:
2184 /* Skip white space. */
2185 while ((c = getchar ()) == ' ' || c == '\t')
2186 ++yylloc.last_column;
2191 yylloc.first_line = yylloc.last_line;
2192 yylloc.first_column = yylloc.last_column;
2196 /* Process numbers. */
2200 ++yylloc.last_column;
2201 while (isdigit (c = getchar ()))
2203 ++yylloc.last_column;
2204 yylval = yylval * 10 + c - '0';
2211 /* Return end-of-input. */
2215 /* Return a single char, and update location. */
2219 yylloc.last_column = 0;
2222 ++yylloc.last_column;
2227 Basically, the lexical analyzer performs the same processing as before:
2228 it skips blanks and tabs, and reads numbers or single-character tokens.
2229 In addition, it updates @code{yylloc}, the global variable (of type
2230 @code{YYLTYPE}) containing the token's location.
2232 Now, each time this function returns a token, the parser has its number
2233 as well as its semantic value, and its location in the text. The last
2234 needed change is to initialize @code{yylloc}, for example in the
2235 controlling function:
2242 yylloc.first_line = yylloc.last_line = 1;
2243 yylloc.first_column = yylloc.last_column = 0;
2249 Remember that computing locations is not a matter of syntax. Every
2250 character must be associated to a location update, whether it is in
2251 valid input, in comments, in literal strings, and so on.
2253 @node Multi-function Calc
2254 @section Multi-Function Calculator: @code{mfcalc}
2255 @cindex multi-function calculator
2256 @cindex @code{mfcalc}
2257 @cindex calculator, multi-function
2259 Now that the basics of Bison have been discussed, it is time to move on to
2260 a more advanced problem. The above calculators provided only five
2261 functions, @samp{+}, @samp{-}, @samp{*}, @samp{/} and @samp{^}. It would
2262 be nice to have a calculator that provides other mathematical functions such
2263 as @code{sin}, @code{cos}, etc.
2265 It is easy to add new operators to the infix calculator as long as they are
2266 only single-character literals. The lexical analyzer @code{yylex} passes
2267 back all nonnumeric characters as tokens, so new grammar rules suffice for
2268 adding a new operator. But we want something more flexible: built-in
2269 functions whose syntax has this form:
2272 @var{function_name} (@var{argument})
2276 At the same time, we will add memory to the calculator, by allowing you
2277 to create named variables, store values in them, and use them later.
2278 Here is a sample session with the multi-function calculator:
2282 @kbd{pi = 3.141592653589}
2286 @kbd{alpha = beta1 = 2.3}
2292 @kbd{exp(ln(beta1))}
2297 Note that multiple assignment and nested function calls are permitted.
2300 * Mfcalc Declarations:: Bison declarations for multi-function calculator.
2301 * Mfcalc Rules:: Grammar rules for the calculator.
2302 * Mfcalc Symbol Table:: Symbol table management subroutines.
2305 @node Mfcalc Declarations
2306 @subsection Declarations for @code{mfcalc}
2308 Here are the C and Bison declarations for the multi-function calculator.
2313 #include <math.h> /* For math functions, cos(), sin(), etc. */
2314 #include "calc.h" /* Contains definition of `symrec'. */
2316 void yyerror (char const *);
2321 double val; /* For returning numbers. */
2322 symrec *tptr; /* For returning symbol-table pointers. */
2325 %token <val> NUM /* Simple double precision number. */
2326 %token <tptr> VAR FNCT /* Variable and Function. */
2333 %precedence NEG /* negation--unary minus */
2334 %right '^' /* exponentiation */
2336 %% /* The grammar follows. */
2339 The above grammar introduces only two new features of the Bison language.
2340 These features allow semantic values to have various data types
2341 (@pxref{Multiple Types, ,More Than One Value Type}).
2343 The @code{%union} declaration specifies the entire list of possible types;
2344 this is instead of defining @code{YYSTYPE}. The allowable types are now
2345 double-floats (for @code{exp} and @code{NUM}) and pointers to entries in
2346 the symbol table. @xref{Union Decl, ,The Collection of Value Types}.
2348 Since values can now have various types, it is necessary to associate a
2349 type with each grammar symbol whose semantic value is used. These symbols
2350 are @code{NUM}, @code{VAR}, @code{FNCT}, and @code{exp}. Their
2351 declarations are augmented with information about their data type (placed
2352 between angle brackets).
2354 The Bison construct @code{%type} is used for declaring nonterminal
2355 symbols, just as @code{%token} is used for declaring token types. We
2356 have not used @code{%type} before because nonterminal symbols are
2357 normally declared implicitly by the rules that define them. But
2358 @code{exp} must be declared explicitly so we can specify its value type.
2359 @xref{Type Decl, ,Nonterminal Symbols}.
2362 @subsection Grammar Rules for @code{mfcalc}
2364 Here are the grammar rules for the multi-function calculator.
2365 Most of them are copied directly from @code{calc}; three rules,
2366 those which mention @code{VAR} or @code{FNCT}, are new.
2378 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
2379 | error '\n' @{ yyerrok; @}
2384 exp: NUM @{ $$ = $1; @}
2385 | VAR @{ $$ = $1->value.var; @}
2386 | VAR '=' exp @{ $$ = $3; $1->value.var = $3; @}
2387 | FNCT '(' exp ')' @{ $$ = (*($1->value.fnctptr))($3); @}
2388 | exp '+' exp @{ $$ = $1 + $3; @}
2389 | exp '-' exp @{ $$ = $1 - $3; @}
2390 | exp '*' exp @{ $$ = $1 * $3; @}
2391 | exp '/' exp @{ $$ = $1 / $3; @}
2392 | '-' exp %prec NEG @{ $$ = -$2; @}
2393 | exp '^' exp @{ $$ = pow ($1, $3); @}
2394 | '(' exp ')' @{ $$ = $2; @}
2397 /* End of grammar. */
2401 @node Mfcalc Symbol Table
2402 @subsection The @code{mfcalc} Symbol Table
2403 @cindex symbol table example
2405 The multi-function calculator requires a symbol table to keep track of the
2406 names and meanings of variables and functions. This doesn't affect the
2407 grammar rules (except for the actions) or the Bison declarations, but it
2408 requires some additional C functions for support.
2410 The symbol table itself consists of a linked list of records. Its
2411 definition, which is kept in the header @file{calc.h}, is as follows. It
2412 provides for either functions or variables to be placed in the table.
2416 /* Function type. */
2417 typedef double (*func_t) (double);
2421 /* Data type for links in the chain of symbols. */
2424 char *name; /* name of symbol */
2425 int type; /* type of symbol: either VAR or FNCT */
2428 double var; /* value of a VAR */
2429 func_t fnctptr; /* value of a FNCT */
2431 struct symrec *next; /* link field */
2436 typedef struct symrec symrec;
2438 /* The symbol table: a chain of `struct symrec'. */
2439 extern symrec *sym_table;
2441 symrec *putsym (char const *, int);
2442 symrec *getsym (char const *);
2446 The new version of @code{main} includes a call to @code{init_table}, a
2447 function that initializes the symbol table. Here it is, and
2448 @code{init_table} as well:
2454 /* Called by yyparse on error. */
2456 yyerror (char const *s)
2466 double (*fnct) (double);
2471 struct init const arith_fncts[] =
2484 /* The symbol table: a chain of `struct symrec'. */
2489 /* Put arithmetic functions in table. */
2495 for (i = 0; arith_fncts[i].fname != 0; i++)
2497 ptr = putsym (arith_fncts[i].fname, FNCT);
2498 ptr->value.fnctptr = arith_fncts[i].fnct;
2513 By simply editing the initialization list and adding the necessary include
2514 files, you can add additional functions to the calculator.
2516 Two important functions allow look-up and installation of symbols in the
2517 symbol table. The function @code{putsym} is passed a name and the type
2518 (@code{VAR} or @code{FNCT}) of the object to be installed. The object is
2519 linked to the front of the list, and a pointer to the object is returned.
2520 The function @code{getsym} is passed the name of the symbol to look up. If
2521 found, a pointer to that symbol is returned; otherwise zero is returned.
2525 putsym (char const *sym_name, int sym_type)
2528 ptr = (symrec *) malloc (sizeof (symrec));
2529 ptr->name = (char *) malloc (strlen (sym_name) + 1);
2530 strcpy (ptr->name,sym_name);
2531 ptr->type = sym_type;
2532 ptr->value.var = 0; /* Set value to 0 even if fctn. */
2533 ptr->next = (struct symrec *)sym_table;
2539 getsym (char const *sym_name)
2542 for (ptr = sym_table; ptr != (symrec *) 0;
2543 ptr = (symrec *)ptr->next)
2544 if (strcmp (ptr->name,sym_name) == 0)
2550 The function @code{yylex} must now recognize variables, numeric values, and
2551 the single-character arithmetic operators. Strings of alphanumeric
2552 characters with a leading letter are recognized as either variables or
2553 functions depending on what the symbol table says about them.
2555 The string is passed to @code{getsym} for look up in the symbol table. If
2556 the name appears in the table, a pointer to its location and its type
2557 (@code{VAR} or @code{FNCT}) is returned to @code{yyparse}. If it is not
2558 already in the table, then it is installed as a @code{VAR} using
2559 @code{putsym}. Again, a pointer and its type (which must be @code{VAR}) is
2560 returned to @code{yyparse}.
2562 No change is needed in the handling of numeric values and arithmetic
2563 operators in @code{yylex}.
2576 /* Ignore white space, get first nonwhite character. */
2577 while ((c = getchar ()) == ' ' || c == '\t');
2584 /* Char starts a number => parse the number. */
2585 if (c == '.' || isdigit (c))
2588 scanf ("%lf", &yylval.val);
2594 /* Char starts an identifier => read the name. */
2598 static char *symbuf = 0;
2599 static int length = 0;
2604 /* Initially make the buffer long enough
2605 for a 40-character symbol name. */
2607 length = 40, symbuf = (char *)malloc (length + 1);
2614 /* If buffer is full, make it bigger. */
2618 symbuf = (char *) realloc (symbuf, length + 1);
2620 /* Add this character to the buffer. */
2622 /* Get another character. */
2627 while (isalnum (c));
2634 s = getsym (symbuf);
2636 s = putsym (symbuf, VAR);
2641 /* Any other character is a token by itself. */
2647 This program is both powerful and flexible. You may easily add new
2648 functions, and it is a simple job to modify this code to install
2649 predefined variables such as @code{pi} or @code{e} as well.
2657 Add some new functions from @file{math.h} to the initialization list.
2660 Add another array that contains constants and their values. Then
2661 modify @code{init_table} to add these constants to the symbol table.
2662 It will be easiest to give the constants type @code{VAR}.
2665 Make the program report an error if the user refers to an
2666 uninitialized variable in any way except to store a value in it.
2670 @chapter Bison Grammar Files
2672 Bison takes as input a context-free grammar specification and produces a
2673 C-language function that recognizes correct instances of the grammar.
2675 The Bison grammar input file conventionally has a name ending in @samp{.y}.
2676 @xref{Invocation, ,Invoking Bison}.
2679 * Grammar Outline:: Overall layout of the grammar file.
2680 * Symbols:: Terminal and nonterminal symbols.
2681 * Rules:: How to write grammar rules.
2682 * Recursion:: Writing recursive rules.
2683 * Semantics:: Semantic values and actions.
2684 * Locations:: Locations and actions.
2685 * Declarations:: All kinds of Bison declarations are described here.
2686 * Multiple Parsers:: Putting more than one Bison parser in one program.
2689 @node Grammar Outline
2690 @section Outline of a Bison Grammar
2692 A Bison grammar file has four main sections, shown here with the
2693 appropriate delimiters:
2700 @var{Bison declarations}
2709 Comments enclosed in @samp{/* @dots{} */} may appear in any of the sections.
2710 As a GNU extension, @samp{//} introduces a comment that
2711 continues until end of line.
2714 * Prologue:: Syntax and usage of the prologue.
2715 * Prologue Alternatives:: Syntax and usage of alternatives to the prologue.
2716 * Bison Declarations:: Syntax and usage of the Bison declarations section.
2717 * Grammar Rules:: Syntax and usage of the grammar rules section.
2718 * Epilogue:: Syntax and usage of the epilogue.
2722 @subsection The prologue
2723 @cindex declarations section
2725 @cindex declarations
2727 The @var{Prologue} section contains macro definitions and declarations
2728 of functions and variables that are used in the actions in the grammar
2729 rules. These are copied to the beginning of the parser file so that
2730 they precede the definition of @code{yyparse}. You can use
2731 @samp{#include} to get the declarations from a header file. If you
2732 don't need any C declarations, you may omit the @samp{%@{} and
2733 @samp{%@}} delimiters that bracket this section.
2735 The @var{Prologue} section is terminated by the first occurrence
2736 of @samp{%@}} that is outside a comment, a string literal, or a
2739 You may have more than one @var{Prologue} section, intermixed with the
2740 @var{Bison declarations}. This allows you to have C and Bison
2741 declarations that refer to each other. For example, the @code{%union}
2742 declaration may use types defined in a header file, and you may wish to
2743 prototype functions that take arguments of type @code{YYSTYPE}. This
2744 can be done with two @var{Prologue} blocks, one before and one after the
2745 @code{%union} declaration.
2756 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2760 static void print_token_value (FILE *, int, YYSTYPE);
2761 #define YYPRINT(F, N, L) print_token_value (F, N, L)
2767 When in doubt, it is usually safer to put prologue code before all
2768 Bison declarations, rather than after. For example, any definitions
2769 of feature test macros like @code{_GNU_SOURCE} or
2770 @code{_POSIX_C_SOURCE} should appear before all Bison declarations, as
2771 feature test macros can affect the behavior of Bison-generated
2772 @code{#include} directives.
2774 @node Prologue Alternatives
2775 @subsection Prologue Alternatives
2776 @cindex Prologue Alternatives
2779 @findex %code requires
2780 @findex %code provides
2783 The functionality of @var{Prologue} sections can often be subtle and
2785 As an alternative, Bison provides a %code directive with an explicit qualifier
2786 field, which identifies the purpose of the code and thus the location(s) where
2787 Bison should generate it.
2788 For C/C++, the qualifier can be omitted for the default location, or it can be
2789 one of @code{requires}, @code{provides}, @code{top}.
2790 @xref{Decl Summary,,%code}.
2792 Look again at the example of the previous section:
2803 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2807 static void print_token_value (FILE *, int, YYSTYPE);
2808 #define YYPRINT(F, N, L) print_token_value (F, N, L)
2815 Notice that there are two @var{Prologue} sections here, but there's a subtle
2816 distinction between their functionality.
2817 For example, if you decide to override Bison's default definition for
2818 @code{YYLTYPE}, in which @var{Prologue} section should you write your new
2820 You should write it in the first since Bison will insert that code into the
2821 parser source code file @emph{before} the default @code{YYLTYPE} definition.
2822 In which @var{Prologue} section should you prototype an internal function,
2823 @code{trace_token}, that accepts @code{YYLTYPE} and @code{yytokentype} as
2825 You should prototype it in the second since Bison will insert that code
2826 @emph{after} the @code{YYLTYPE} and @code{yytokentype} definitions.
2828 This distinction in functionality between the two @var{Prologue} sections is
2829 established by the appearance of the @code{%union} between them.
2830 This behavior raises a few questions.
2831 First, why should the position of a @code{%union} affect definitions related to
2832 @code{YYLTYPE} and @code{yytokentype}?
2833 Second, what if there is no @code{%union}?
2834 In that case, the second kind of @var{Prologue} section is not available.
2835 This behavior is not intuitive.
2837 To avoid this subtle @code{%union} dependency, rewrite the example using a
2838 @code{%code top} and an unqualified @code{%code}.
2839 Let's go ahead and add the new @code{YYLTYPE} definition and the
2840 @code{trace_token} prototype at the same time:
2847 /* WARNING: The following code really belongs
2848 * in a `%code requires'; see below. */
2851 #define YYLTYPE YYLTYPE
2852 typedef struct YYLTYPE
2864 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2868 static void print_token_value (FILE *, int, YYSTYPE);
2869 #define YYPRINT(F, N, L) print_token_value (F, N, L)
2870 static void trace_token (enum yytokentype token, YYLTYPE loc);
2877 In this way, @code{%code top} and the unqualified @code{%code} achieve the same
2878 functionality as the two kinds of @var{Prologue} sections, but it's always
2879 explicit which kind you intend.
2880 Moreover, both kinds are always available even in the absence of @code{%union}.
2882 The @code{%code top} block above logically contains two parts.
2883 The first two lines before the warning need to appear near the top of the
2884 parser source code file.
2885 The first line after the warning is required by @code{YYSTYPE} and thus also
2886 needs to appear in the parser source code file.
2887 However, if you've instructed Bison to generate a parser header file
2888 (@pxref{Decl Summary, ,%defines}), you probably want that line to appear before
2889 the @code{YYSTYPE} definition in that header file as well.
2890 The @code{YYLTYPE} definition should also appear in the parser header file to
2891 override the default @code{YYLTYPE} definition there.
2893 In other words, in the @code{%code top} block above, all but the first two
2894 lines are dependency code required by the @code{YYSTYPE} and @code{YYLTYPE}
2896 Thus, they belong in one or more @code{%code requires}:
2909 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2913 #define YYLTYPE YYLTYPE
2914 typedef struct YYLTYPE
2925 static void print_token_value (FILE *, int, YYSTYPE);
2926 #define YYPRINT(F, N, L) print_token_value (F, N, L)
2927 static void trace_token (enum yytokentype token, YYLTYPE loc);
2934 Now Bison will insert @code{#include "ptypes.h"} and the new @code{YYLTYPE}
2935 definition before the Bison-generated @code{YYSTYPE} and @code{YYLTYPE}
2936 definitions in both the parser source code file and the parser header file.
2937 (By the same reasoning, @code{%code requires} would also be the appropriate
2938 place to write your own definition for @code{YYSTYPE}.)
2940 When you are writing dependency code for @code{YYSTYPE} and @code{YYLTYPE}, you
2941 should prefer @code{%code requires} over @code{%code top} regardless of whether
2942 you instruct Bison to generate a parser header file.
2943 When you are writing code that you need Bison to insert only into the parser
2944 source code file and that has no special need to appear at the top of that
2945 file, you should prefer the unqualified @code{%code} over @code{%code top}.
2946 These practices will make the purpose of each block of your code explicit to
2947 Bison and to other developers reading your grammar file.
2948 Following these practices, we expect the unqualified @code{%code} and
2949 @code{%code requires} to be the most important of the four @var{Prologue}
2952 At some point while developing your parser, you might decide to provide
2953 @code{trace_token} to modules that are external to your parser.
2954 Thus, you might wish for Bison to insert the prototype into both the parser
2955 header file and the parser source code file.
2956 Since this function is not a dependency required by @code{YYSTYPE} or
2957 @code{YYLTYPE}, it doesn't make sense to move its prototype to a
2958 @code{%code requires}.
2959 More importantly, since it depends upon @code{YYLTYPE} and @code{yytokentype},
2960 @code{%code requires} is not sufficient.
2961 Instead, move its prototype from the unqualified @code{%code} to a
2962 @code{%code provides}:
2975 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2979 #define YYLTYPE YYLTYPE
2980 typedef struct YYLTYPE
2991 void trace_token (enum yytokentype token, YYLTYPE loc);
2995 static void print_token_value (FILE *, int, YYSTYPE);
2996 #define YYPRINT(F, N, L) print_token_value (F, N, L)
3003 Bison will insert the @code{trace_token} prototype into both the parser header
3004 file and the parser source code file after the definitions for
3005 @code{yytokentype}, @code{YYLTYPE}, and @code{YYSTYPE}.
3007 The above examples are careful to write directives in an order that reflects
3008 the layout of the generated parser source code and header files:
3009 @code{%code top}, @code{%code requires}, @code{%code provides}, and then
3011 While your grammar files may generally be easier to read if you also follow
3012 this order, Bison does not require it.
3013 Instead, Bison lets you choose an organization that makes sense to you.
3015 You may declare any of these directives multiple times in the grammar file.
3016 In that case, Bison concatenates the contained code in declaration order.
3017 This is the only way in which the position of one of these directives within
3018 the grammar file affects its functionality.
3020 The result of the previous two properties is greater flexibility in how you may
3021 organize your grammar file.
3022 For example, you may organize semantic-type-related directives by semantic
3026 %code requires @{ #include "type1.h" @}
3027 %union @{ type1 field1; @}
3028 %destructor @{ type1_free ($$); @} <field1>
3029 %printer @{ type1_print ($$); @} <field1>
3031 %code requires @{ #include "type2.h" @}
3032 %union @{ type2 field2; @}
3033 %destructor @{ type2_free ($$); @} <field2>
3034 %printer @{ type2_print ($$); @} <field2>
3038 You could even place each of the above directive groups in the rules section of
3039 the grammar file next to the set of rules that uses the associated semantic
3041 (In the rules section, you must terminate each of those directives with a
3043 And you don't have to worry that some directive (like a @code{%union}) in the
3044 definitions section is going to adversely affect their functionality in some
3045 counter-intuitive manner just because it comes first.
3046 Such an organization is not possible using @var{Prologue} sections.
3048 This section has been concerned with explaining the advantages of the four
3049 @var{Prologue} alternatives over the original Yacc @var{Prologue}.
3050 However, in most cases when using these directives, you shouldn't need to
3051 think about all the low-level ordering issues discussed here.
3052 Instead, you should simply use these directives to label each block of your
3053 code according to its purpose and let Bison handle the ordering.
3054 @code{%code} is the most generic label.
3055 Move code to @code{%code requires}, @code{%code provides}, or @code{%code top}
3058 @node Bison Declarations
3059 @subsection The Bison Declarations Section
3060 @cindex Bison declarations (introduction)
3061 @cindex declarations, Bison (introduction)
3063 The @var{Bison declarations} section contains declarations that define
3064 terminal and nonterminal symbols, specify precedence, and so on.
3065 In some simple grammars you may not need any declarations.
3066 @xref{Declarations, ,Bison Declarations}.
3069 @subsection The Grammar Rules Section
3070 @cindex grammar rules section
3071 @cindex rules section for grammar
3073 The @dfn{grammar rules} section contains one or more Bison grammar
3074 rules, and nothing else. @xref{Rules, ,Syntax of Grammar Rules}.
3076 There must always be at least one grammar rule, and the first
3077 @samp{%%} (which precedes the grammar rules) may never be omitted even
3078 if it is the first thing in the file.
3081 @subsection The epilogue
3082 @cindex additional C code section
3084 @cindex C code, section for additional
3086 The @var{Epilogue} is copied verbatim to the end of the parser file, just as
3087 the @var{Prologue} is copied to the beginning. This is the most convenient
3088 place to put anything that you want to have in the parser file but which need
3089 not come before the definition of @code{yyparse}. For example, the
3090 definitions of @code{yylex} and @code{yyerror} often go here. Because
3091 C requires functions to be declared before being used, you often need
3092 to declare functions like @code{yylex} and @code{yyerror} in the Prologue,
3093 even if you define them in the Epilogue.
3094 @xref{Interface, ,Parser C-Language Interface}.
3096 If the last section is empty, you may omit the @samp{%%} that separates it
3097 from the grammar rules.
3099 The Bison parser itself contains many macros and identifiers whose names
3100 start with @samp{yy} or @samp{YY}, so it is a good idea to avoid using
3101 any such names (except those documented in this manual) in the epilogue
3102 of the grammar file.
3105 @section Symbols, Terminal and Nonterminal
3106 @cindex nonterminal symbol
3107 @cindex terminal symbol
3111 @dfn{Symbols} in Bison grammars represent the grammatical classifications
3114 A @dfn{terminal symbol} (also known as a @dfn{token type}) represents a
3115 class of syntactically equivalent tokens. You use the symbol in grammar
3116 rules to mean that a token in that class is allowed. The symbol is
3117 represented in the Bison parser by a numeric code, and the @code{yylex}
3118 function returns a token type code to indicate what kind of token has
3119 been read. You don't need to know what the code value is; you can use
3120 the symbol to stand for it.
3122 A @dfn{nonterminal symbol} stands for a class of syntactically
3123 equivalent groupings. The symbol name is used in writing grammar rules.
3124 By convention, it should be all lower case.
3126 Symbol names can contain letters, underscores, periods, dashes, and (not
3127 at the beginning) digits. Dashes in symbol names are a GNU
3128 extension, incompatible with POSIX Yacc. Terminal symbols
3129 that contain periods or dashes make little sense: since they are not
3130 valid symbols (in most programming languages) they are not exported as
3133 There are three ways of writing terminal symbols in the grammar:
3137 A @dfn{named token type} is written with an identifier, like an
3138 identifier in C@. By convention, it should be all upper case. Each
3139 such name must be defined with a Bison declaration such as
3140 @code{%token}. @xref{Token Decl, ,Token Type Names}.
3143 @cindex character token
3144 @cindex literal token
3145 @cindex single-character literal
3146 A @dfn{character token type} (or @dfn{literal character token}) is
3147 written in the grammar using the same syntax used in C for character
3148 constants; for example, @code{'+'} is a character token type. A
3149 character token type doesn't need to be declared unless you need to
3150 specify its semantic value data type (@pxref{Value Type, ,Data Types of
3151 Semantic Values}), associativity, or precedence (@pxref{Precedence,
3152 ,Operator Precedence}).
3154 By convention, a character token type is used only to represent a
3155 token that consists of that particular character. Thus, the token
3156 type @code{'+'} is used to represent the character @samp{+} as a
3157 token. Nothing enforces this convention, but if you depart from it,
3158 your program will confuse other readers.
3160 All the usual escape sequences used in character literals in C can be
3161 used in Bison as well, but you must not use the null character as a
3162 character literal because its numeric code, zero, signifies
3163 end-of-input (@pxref{Calling Convention, ,Calling Convention
3164 for @code{yylex}}). Also, unlike standard C, trigraphs have no
3165 special meaning in Bison character literals, nor is backslash-newline
3169 @cindex string token
3170 @cindex literal string token
3171 @cindex multicharacter literal
3172 A @dfn{literal string token} is written like a C string constant; for
3173 example, @code{"<="} is a literal string token. A literal string token
3174 doesn't need to be declared unless you need to specify its semantic
3175 value data type (@pxref{Value Type}), associativity, or precedence
3176 (@pxref{Precedence}).
3178 You can associate the literal string token with a symbolic name as an
3179 alias, using the @code{%token} declaration (@pxref{Token Decl, ,Token
3180 Declarations}). If you don't do that, the lexical analyzer has to
3181 retrieve the token number for the literal string token from the
3182 @code{yytname} table (@pxref{Calling Convention}).
3184 @strong{Warning}: literal string tokens do not work in Yacc.
3186 By convention, a literal string token is used only to represent a token
3187 that consists of that particular string. Thus, you should use the token
3188 type @code{"<="} to represent the string @samp{<=} as a token. Bison
3189 does not enforce this convention, but if you depart from it, people who
3190 read your program will be confused.
3192 All the escape sequences used in string literals in C can be used in
3193 Bison as well, except that you must not use a null character within a
3194 string literal. Also, unlike Standard C, trigraphs have no special
3195 meaning in Bison string literals, nor is backslash-newline allowed. A
3196 literal string token must contain two or more characters; for a token
3197 containing just one character, use a character token (see above).
3200 How you choose to write a terminal symbol has no effect on its
3201 grammatical meaning. That depends only on where it appears in rules and
3202 on when the parser function returns that symbol.
3204 The value returned by @code{yylex} is always one of the terminal
3205 symbols, except that a zero or negative value signifies end-of-input.
3206 Whichever way you write the token type in the grammar rules, you write
3207 it the same way in the definition of @code{yylex}. The numeric code
3208 for a character token type is simply the positive numeric code of the
3209 character, so @code{yylex} can use the identical value to generate the
3210 requisite code, though you may need to convert it to @code{unsigned
3211 char} to avoid sign-extension on hosts where @code{char} is signed.
3212 Each named token type becomes a C macro in
3213 the parser file, so @code{yylex} can use the name to stand for the code.
3214 (This is why periods don't make sense in terminal symbols.)
3215 @xref{Calling Convention, ,Calling Convention for @code{yylex}}.
3217 If @code{yylex} is defined in a separate file, you need to arrange for the
3218 token-type macro definitions to be available there. Use the @samp{-d}
3219 option when you run Bison, so that it will write these macro definitions
3220 into a separate header file @file{@var{name}.tab.h} which you can include
3221 in the other source files that need it. @xref{Invocation, ,Invoking Bison}.
3223 If you want to write a grammar that is portable to any Standard C
3224 host, you must use only nonnull character tokens taken from the basic
3225 execution character set of Standard C@. This set consists of the ten
3226 digits, the 52 lower- and upper-case English letters, and the
3227 characters in the following C-language string:
3230 "\a\b\t\n\v\f\r !\"#%&'()*+,-./:;<=>?[\\]^_@{|@}~"
3233 The @code{yylex} function and Bison must use a consistent character set
3234 and encoding for character tokens. For example, if you run Bison in an
3235 ASCII environment, but then compile and run the resulting
3236 program in an environment that uses an incompatible character set like
3237 EBCDIC, the resulting program may not work because the tables
3238 generated by Bison will assume ASCII numeric values for
3239 character tokens. It is standard practice for software distributions to
3240 contain C source files that were generated by Bison in an
3241 ASCII environment, so installers on platforms that are
3242 incompatible with ASCII must rebuild those files before
3245 The symbol @code{error} is a terminal symbol reserved for error recovery
3246 (@pxref{Error Recovery}); you shouldn't use it for any other purpose.
3247 In particular, @code{yylex} should never return this value. The default
3248 value of the error token is 256, unless you explicitly assigned 256 to
3249 one of your tokens with a @code{%token} declaration.
3252 @section Syntax of Grammar Rules
3254 @cindex grammar rule syntax
3255 @cindex syntax of grammar rules
3257 A Bison grammar rule has the following general form:
3261 @var{result}: @var{components}@dots{}
3267 where @var{result} is the nonterminal symbol that this rule describes,
3268 and @var{components} are various terminal and nonterminal symbols that
3269 are put together by this rule (@pxref{Symbols}).
3281 says that two groupings of type @code{exp}, with a @samp{+} token in between,
3282 can be combined into a larger grouping of type @code{exp}.
3284 White space in rules is significant only to separate symbols. You can add
3285 extra white space as you wish.
3287 Scattered among the components can be @var{actions} that determine
3288 the semantics of the rule. An action looks like this:
3291 @{@var{C statements}@}
3296 This is an example of @dfn{braced code}, that is, C code surrounded by
3297 braces, much like a compound statement in C@. Braced code can contain
3298 any sequence of C tokens, so long as its braces are balanced. Bison
3299 does not check the braced code for correctness directly; it merely
3300 copies the code to the output file, where the C compiler can check it.
3302 Within braced code, the balanced-brace count is not affected by braces
3303 within comments, string literals, or character constants, but it is
3304 affected by the C digraphs @samp{<%} and @samp{%>} that represent
3305 braces. At the top level braced code must be terminated by @samp{@}}
3306 and not by a digraph. Bison does not look for trigraphs, so if braced
3307 code uses trigraphs you should ensure that they do not affect the
3308 nesting of braces or the boundaries of comments, string literals, or
3309 character constants.
3311 Usually there is only one action and it follows the components.
3315 Multiple rules for the same @var{result} can be written separately or can
3316 be joined with the vertical-bar character @samp{|} as follows:
3320 @var{result}: @var{rule1-components}@dots{}
3321 | @var{rule2-components}@dots{}
3328 They are still considered distinct rules even when joined in this way.
3330 If @var{components} in a rule is empty, it means that @var{result} can
3331 match the empty string. For example, here is how to define a
3332 comma-separated sequence of zero or more @code{exp} groupings:
3349 It is customary to write a comment @samp{/* empty */} in each rule
3353 @section Recursive Rules
3354 @cindex recursive rule
3356 A rule is called @dfn{recursive} when its @var{result} nonterminal
3357 appears also on its right hand side. Nearly all Bison grammars need to
3358 use recursion, because that is the only way to define a sequence of any
3359 number of a particular thing. Consider this recursive definition of a
3360 comma-separated sequence of one or more expressions:
3370 @cindex left recursion
3371 @cindex right recursion
3373 Since the recursive use of @code{expseq1} is the leftmost symbol in the
3374 right hand side, we call this @dfn{left recursion}. By contrast, here
3375 the same construct is defined using @dfn{right recursion}:
3386 Any kind of sequence can be defined using either left recursion or right
3387 recursion, but you should always use left recursion, because it can
3388 parse a sequence of any number of elements with bounded stack space.
3389 Right recursion uses up space on the Bison stack in proportion to the
3390 number of elements in the sequence, because all the elements must be
3391 shifted onto the stack before the rule can be applied even once.
3392 @xref{Algorithm, ,The Bison Parser Algorithm}, for further explanation
3395 @cindex mutual recursion
3396 @dfn{Indirect} or @dfn{mutual} recursion occurs when the result of the
3397 rule does not appear directly on its right hand side, but does appear
3398 in rules for other nonterminals which do appear on its right hand
3406 | primary '+' primary
3418 defines two mutually-recursive nonterminals, since each refers to the
3422 @section Defining Language Semantics
3423 @cindex defining language semantics
3424 @cindex language semantics, defining
3426 The grammar rules for a language determine only the syntax. The semantics
3427 are determined by the semantic values associated with various tokens and
3428 groupings, and by the actions taken when various groupings are recognized.
3430 For example, the calculator calculates properly because the value
3431 associated with each expression is the proper number; it adds properly
3432 because the action for the grouping @w{@samp{@var{x} + @var{y}}} is to add
3433 the numbers associated with @var{x} and @var{y}.
3436 * Value Type:: Specifying one data type for all semantic values.
3437 * Multiple Types:: Specifying several alternative data types.
3438 * Actions:: An action is the semantic definition of a grammar rule.
3439 * Action Types:: Specifying data types for actions to operate on.
3440 * Mid-Rule Actions:: Most actions go at the end of a rule.
3441 This says when, why and how to use the exceptional
3442 action in the middle of a rule.
3443 * Named References:: Using named references in actions.
3447 @subsection Data Types of Semantic Values
3448 @cindex semantic value type
3449 @cindex value type, semantic
3450 @cindex data types of semantic values
3451 @cindex default data type
3453 In a simple program it may be sufficient to use the same data type for
3454 the semantic values of all language constructs. This was true in the
3455 RPN and infix calculator examples (@pxref{RPN Calc, ,Reverse Polish
3456 Notation Calculator}).
3458 Bison normally uses the type @code{int} for semantic values if your
3459 program uses the same data type for all language constructs. To
3460 specify some other type, define @code{YYSTYPE} as a macro, like this:
3463 #define YYSTYPE double
3467 @code{YYSTYPE}'s replacement list should be a type name
3468 that does not contain parentheses or square brackets.
3469 This macro definition must go in the prologue of the grammar file
3470 (@pxref{Grammar Outline, ,Outline of a Bison Grammar}).
3472 @node Multiple Types
3473 @subsection More Than One Value Type
3475 In most programs, you will need different data types for different kinds
3476 of tokens and groupings. For example, a numeric constant may need type
3477 @code{int} or @code{long int}, while a string constant needs type
3478 @code{char *}, and an identifier might need a pointer to an entry in the
3481 To use more than one data type for semantic values in one parser, Bison
3482 requires you to do two things:
3486 Specify the entire collection of possible data types, either by using the
3487 @code{%union} Bison declaration (@pxref{Union Decl, ,The Collection of
3488 Value Types}), or by using a @code{typedef} or a @code{#define} to
3489 define @code{YYSTYPE} to be a union type whose member names are
3493 Choose one of those types for each symbol (terminal or nonterminal) for
3494 which semantic values are used. This is done for tokens with the
3495 @code{%token} Bison declaration (@pxref{Token Decl, ,Token Type Names})
3496 and for groupings with the @code{%type} Bison declaration (@pxref{Type
3497 Decl, ,Nonterminal Symbols}).
3506 @vindex $[@var{name}]
3508 An action accompanies a syntactic rule and contains C code to be executed
3509 each time an instance of that rule is recognized. The task of most actions
3510 is to compute a semantic value for the grouping built by the rule from the
3511 semantic values associated with tokens or smaller groupings.
3513 An action consists of braced code containing C statements, and can be
3514 placed at any position in the rule;
3515 it is executed at that position. Most rules have just one action at the
3516 end of the rule, following all the components. Actions in the middle of
3517 a rule are tricky and used only for special purposes (@pxref{Mid-Rule
3518 Actions, ,Actions in Mid-Rule}).
3520 The C code in an action can refer to the semantic values of the components
3521 matched by the rule with the construct @code{$@var{n}}, which stands for
3522 the value of the @var{n}th component. The semantic value for the grouping
3523 being constructed is @code{$$}. In addition, the semantic values of
3524 symbols can be accessed with the named references construct
3525 @code{$@var{name}} or @code{$[@var{name}]}. Bison translates both of these
3526 constructs into expressions of the appropriate type when it copies the
3527 actions into the parser file. @code{$$} (or @code{$@var{name}}, when it
3528 stands for the current grouping) is translated to a modifiable
3529 lvalue, so it can be assigned to.
3531 Here is a typical example:
3541 Or, in terms of named references:
3545 exp[result]: @dots{}
3546 | exp[left] '+' exp[right]
3547 @{ $result = $left + $right; @}
3552 This rule constructs an @code{exp} from two smaller @code{exp} groupings
3553 connected by a plus-sign token. In the action, @code{$1} and @code{$3}
3554 (@code{$left} and @code{$right})
3555 refer to the semantic values of the two component @code{exp} groupings,
3556 which are the first and third symbols on the right hand side of the rule.
3557 The sum is stored into @code{$$} (@code{$result}) so that it becomes the
3559 the addition-expression just recognized by the rule. If there were a
3560 useful semantic value associated with the @samp{+} token, it could be
3561 referred to as @code{$2}.
3563 @xref{Named References,,Using Named References}, for more information
3564 about using the named references construct.
3566 Note that the vertical-bar character @samp{|} is really a rule
3567 separator, and actions are attached to a single rule. This is a
3568 difference with tools like Flex, for which @samp{|} stands for either
3569 ``or'', or ``the same action as that of the next rule''. In the
3570 following example, the action is triggered only when @samp{b} is found:
3574 a-or-b: 'a'|'b' @{ a_or_b_found = 1; @};
3578 @cindex default action
3579 If you don't specify an action for a rule, Bison supplies a default:
3580 @w{@code{$$ = $1}.} Thus, the value of the first symbol in the rule
3581 becomes the value of the whole rule. Of course, the default action is
3582 valid only if the two data types match. There is no meaningful default
3583 action for an empty rule; every empty rule must have an explicit action
3584 unless the rule's value does not matter.
3586 @code{$@var{n}} with @var{n} zero or negative is allowed for reference
3587 to tokens and groupings on the stack @emph{before} those that match the
3588 current rule. This is a very risky practice, and to use it reliably
3589 you must be certain of the context in which the rule is applied. Here
3590 is a case in which you can use this reliably:
3594 foo: expr bar '+' expr @{ @dots{} @}
3595 | expr bar '-' expr @{ @dots{} @}
3601 @{ previous_expr = $0; @}
3606 As long as @code{bar} is used only in the fashion shown here, @code{$0}
3607 always refers to the @code{expr} which precedes @code{bar} in the
3608 definition of @code{foo}.
3611 It is also possible to access the semantic value of the lookahead token, if
3612 any, from a semantic action.
3613 This semantic value is stored in @code{yylval}.
3614 @xref{Action Features, ,Special Features for Use in Actions}.
3617 @subsection Data Types of Values in Actions
3618 @cindex action data types
3619 @cindex data types in actions
3621 If you have chosen a single data type for semantic values, the @code{$$}
3622 and @code{$@var{n}} constructs always have that data type.
3624 If you have used @code{%union} to specify a variety of data types, then you
3625 must declare a choice among these types for each terminal or nonterminal
3626 symbol that can have a semantic value. Then each time you use @code{$$} or
3627 @code{$@var{n}}, its data type is determined by which symbol it refers to
3628 in the rule. In this example,
3639 @code{$1} and @code{$3} refer to instances of @code{exp}, so they all
3640 have the data type declared for the nonterminal symbol @code{exp}. If
3641 @code{$2} were used, it would have the data type declared for the
3642 terminal symbol @code{'+'}, whatever that might be.
3644 Alternatively, you can specify the data type when you refer to the value,
3645 by inserting @samp{<@var{type}>} after the @samp{$} at the beginning of the
3646 reference. For example, if you have defined types as shown here:
3658 then you can write @code{$<itype>1} to refer to the first subunit of the
3659 rule as an integer, or @code{$<dtype>1} to refer to it as a double.
3661 @node Mid-Rule Actions
3662 @subsection Actions in Mid-Rule
3663 @cindex actions in mid-rule
3664 @cindex mid-rule actions
3666 Occasionally it is useful to put an action in the middle of a rule.
3667 These actions are written just like usual end-of-rule actions, but they
3668 are executed before the parser even recognizes the following components.
3670 A mid-rule action may refer to the components preceding it using
3671 @code{$@var{n}}, but it may not refer to subsequent components because
3672 it is run before they are parsed.
3674 The mid-rule action itself counts as one of the components of the rule.
3675 This makes a difference when there is another action later in the same rule
3676 (and usually there is another at the end): you have to count the actions
3677 along with the symbols when working out which number @var{n} to use in
3680 The mid-rule action can also have a semantic value. The action can set
3681 its value with an assignment to @code{$$}, and actions later in the rule
3682 can refer to the value using @code{$@var{n}}. Since there is no symbol
3683 to name the action, there is no way to declare a data type for the value
3684 in advance, so you must use the @samp{$<@dots{}>@var{n}} construct to
3685 specify a data type each time you refer to this value.
3687 There is no way to set the value of the entire rule with a mid-rule
3688 action, because assignments to @code{$$} do not have that effect. The
3689 only way to set the value for the entire rule is with an ordinary action
3690 at the end of the rule.
3692 Here is an example from a hypothetical compiler, handling a @code{let}
3693 statement that looks like @samp{let (@var{variable}) @var{statement}} and
3694 serves to create a variable named @var{variable} temporarily for the
3695 duration of @var{statement}. To parse this construct, we must put
3696 @var{variable} into the symbol table while @var{statement} is parsed, then
3697 remove it afterward. Here is how it is done:
3701 stmt: LET '(' var ')'
3702 @{ $<context>$ = push_context ();
3703 declare_variable ($3); @}
3705 pop_context ($<context>5); @}
3710 As soon as @samp{let (@var{variable})} has been recognized, the first
3711 action is run. It saves a copy of the current semantic context (the
3712 list of accessible variables) as its semantic value, using alternative
3713 @code{context} in the data-type union. Then it calls
3714 @code{declare_variable} to add the new variable to that list. Once the
3715 first action is finished, the embedded statement @code{stmt} can be
3716 parsed. Note that the mid-rule action is component number 5, so the
3717 @samp{stmt} is component number 6.
3719 After the embedded statement is parsed, its semantic value becomes the
3720 value of the entire @code{let}-statement. Then the semantic value from the
3721 earlier action is used to restore the prior list of variables. This
3722 removes the temporary @code{let}-variable from the list so that it won't
3723 appear to exist while the rest of the program is parsed.
3726 @cindex discarded symbols, mid-rule actions
3727 @cindex error recovery, mid-rule actions
3728 In the above example, if the parser initiates error recovery (@pxref{Error
3729 Recovery}) while parsing the tokens in the embedded statement @code{stmt},
3730 it might discard the previous semantic context @code{$<context>5} without
3732 Thus, @code{$<context>5} needs a destructor (@pxref{Destructor Decl, , Freeing
3733 Discarded Symbols}).
3734 However, Bison currently provides no means to declare a destructor specific to
3735 a particular mid-rule action's semantic value.
3737 One solution is to bury the mid-rule action inside a nonterminal symbol and to
3738 declare a destructor for that symbol:
3743 %destructor @{ pop_context ($$); @} let
3749 pop_context ($1); @}
3752 let: LET '(' var ')'
3753 @{ $$ = push_context ();
3754 declare_variable ($3); @}
3761 Note that the action is now at the end of its rule.
3762 Any mid-rule action can be converted to an end-of-rule action in this way, and
3763 this is what Bison actually does to implement mid-rule actions.
3765 Taking action before a rule is completely recognized often leads to
3766 conflicts since the parser must commit to a parse in order to execute the
3767 action. For example, the following two rules, without mid-rule actions,
3768 can coexist in a working parser because the parser can shift the open-brace
3769 token and look at what follows before deciding whether there is a
3774 compound: '@{' declarations statements '@}'
3775 | '@{' statements '@}'
3781 But when we add a mid-rule action as follows, the rules become nonfunctional:
3785 compound: @{ prepare_for_local_variables (); @}
3786 '@{' declarations statements '@}'
3789 | '@{' statements '@}'
3795 Now the parser is forced to decide whether to run the mid-rule action
3796 when it has read no farther than the open-brace. In other words, it
3797 must commit to using one rule or the other, without sufficient
3798 information to do it correctly. (The open-brace token is what is called
3799 the @dfn{lookahead} token at this time, since the parser is still
3800 deciding what to do about it. @xref{Lookahead, ,Lookahead Tokens}.)
3802 You might think that you could correct the problem by putting identical
3803 actions into the two rules, like this:
3807 compound: @{ prepare_for_local_variables (); @}
3808 '@{' declarations statements '@}'
3809 | @{ prepare_for_local_variables (); @}
3810 '@{' statements '@}'
3816 But this does not help, because Bison does not realize that the two actions
3817 are identical. (Bison never tries to understand the C code in an action.)
3819 If the grammar is such that a declaration can be distinguished from a
3820 statement by the first token (which is true in C), then one solution which
3821 does work is to put the action after the open-brace, like this:
3825 compound: '@{' @{ prepare_for_local_variables (); @}
3826 declarations statements '@}'
3827 | '@{' statements '@}'
3833 Now the first token of the following declaration or statement,
3834 which would in any case tell Bison which rule to use, can still do so.
3836 Another solution is to bury the action inside a nonterminal symbol which
3837 serves as a subroutine:
3841 subroutine: /* empty */
3842 @{ prepare_for_local_variables (); @}
3848 compound: subroutine
3849 '@{' declarations statements '@}'
3851 '@{' statements '@}'
3857 Now Bison can execute the action in the rule for @code{subroutine} without
3858 deciding which rule for @code{compound} it will eventually use.
3860 @node Named References
3861 @subsection Using Named References
3862 @cindex named references
3864 While every semantic value can be accessed with positional references
3865 @code{$@var{n}} and @code{$$}, it's often much more convenient to refer to
3866 them by name. First of all, original symbol names may be used as named
3867 references. For example:
3871 invocation: op '(' args ')'
3872 @{ $invocation = new_invocation ($op, $args, @@invocation); @}
3877 The positional @code{$$}, @code{@@$}, @code{$n}, and @code{@@n} can be
3878 mixed with @code{$name} and @code{@@name} arbitrarily. For example:
3882 invocation: op '(' args ')'
3883 @{ $$ = new_invocation ($op, $args, @@$); @}
3888 However, sometimes regular symbol names are not sufficient due to
3894 @{ $exp = $exp / $exp; @} // $exp is ambiguous.
3897 @{ $$ = $1 / $exp; @} // One usage is ambiguous.
3900 @{ $$ = $1 / $3; @} // No error.
3905 When ambiguity occurs, explicitly declared names may be used for values and
3906 locations. Explicit names are declared as a bracketed name after a symbol
3907 appearance in rule definitions. For example:
3910 exp[result]: exp[left] '/' exp[right]
3911 @{ $result = $left / $right; @}
3916 Explicit names may be declared for RHS and for LHS symbols as well. In order
3917 to access a semantic value generated by a mid-rule action, an explicit name
3918 may also be declared by putting a bracketed name after the closing brace of
3919 the mid-rule action code:
3922 exp[res]: exp[x] '+' @{$left = $x;@}[left] exp[right]
3923 @{ $res = $left + $right; @}
3929 In references, in order to specify names containing dots and dashes, an explicit
3930 bracketed syntax @code{$[name]} and @code{@@[name]} must be used:
3933 if-stmt: IF '(' expr ')' THEN then.stmt ';'
3934 @{ $[if-stmt] = new_if_stmt ($expr, $[then.stmt]); @}
3938 It often happens that named references are followed by a dot, dash or other
3939 C punctuation marks and operators. By default, Bison will read
3940 @code{$name.suffix} as a reference to symbol value @code{$name} followed by
3941 @samp{.suffix}, i.e., an access to the @samp{suffix} field of the semantic
3942 value. In order to force Bison to recognize @code{name.suffix} in its entirety
3943 as the name of a semantic value, bracketed syntax @code{$[name.suffix]}
3948 @section Tracking Locations
3950 @cindex textual location
3951 @cindex location, textual
3953 Though grammar rules and semantic actions are enough to write a fully
3954 functional parser, it can be useful to process some additional information,
3955 especially symbol locations.
3957 The way locations are handled is defined by providing a data type, and
3958 actions to take when rules are matched.
3961 * Location Type:: Specifying a data type for locations.
3962 * Actions and Locations:: Using locations in actions.
3963 * Location Default Action:: Defining a general way to compute locations.
3967 @subsection Data Type of Locations
3968 @cindex data type of locations
3969 @cindex default location type
3971 Defining a data type for locations is much simpler than for semantic values,
3972 since all tokens and groupings always use the same type.
3974 You can specify the type of locations by defining a macro called
3975 @code{YYLTYPE}, just as you can specify the semantic value type by
3976 defining a @code{YYSTYPE} macro (@pxref{Value Type}).
3977 When @code{YYLTYPE} is not defined, Bison uses a default structure type with
3981 typedef struct YYLTYPE
3990 When @code{YYLTYPE} is not defined, at the beginning of the parsing, Bison
3991 initializes all these fields to 1 for @code{yylloc}. To initialize
3992 @code{yylloc} with a custom location type (or to chose a different
3993 initialization), use the @code{%initial-action} directive. @xref{Initial
3994 Action Decl, , Performing Actions before Parsing}.
3996 @node Actions and Locations
3997 @subsection Actions and Locations
3998 @cindex location actions
3999 @cindex actions, location
4002 @vindex @@@var{name}
4003 @vindex @@[@var{name}]
4005 Actions are not only useful for defining language semantics, but also for
4006 describing the behavior of the output parser with locations.
4008 The most obvious way for building locations of syntactic groupings is very
4009 similar to the way semantic values are computed. In a given rule, several
4010 constructs can be used to access the locations of the elements being matched.
4011 The location of the @var{n}th component of the right hand side is
4012 @code{@@@var{n}}, while the location of the left hand side grouping is
4015 In addition, the named references construct @code{@@@var{name}} and
4016 @code{@@[@var{name}]} may also be used to address the symbol locations.
4017 @xref{Named References,,Using Named References}, for more information
4018 about using the named references construct.
4020 Here is a basic example using the default data type for locations:
4027 @@$.first_column = @@1.first_column;
4028 @@$.first_line = @@1.first_line;
4029 @@$.last_column = @@3.last_column;
4030 @@$.last_line = @@3.last_line;
4037 "Division by zero, l%d,c%d-l%d,c%d",
4038 @@3.first_line, @@3.first_column,
4039 @@3.last_line, @@3.last_column);
4045 As for semantic values, there is a default action for locations that is
4046 run each time a rule is matched. It sets the beginning of @code{@@$} to the
4047 beginning of the first symbol, and the end of @code{@@$} to the end of the
4050 With this default action, the location tracking can be fully automatic. The
4051 example above simply rewrites this way:
4064 "Division by zero, l%d,c%d-l%d,c%d",
4065 @@3.first_line, @@3.first_column,
4066 @@3.last_line, @@3.last_column);
4073 It is also possible to access the location of the lookahead token, if any,
4074 from a semantic action.
4075 This location is stored in @code{yylloc}.
4076 @xref{Action Features, ,Special Features for Use in Actions}.
4078 @node Location Default Action
4079 @subsection Default Action for Locations
4080 @vindex YYLLOC_DEFAULT
4081 @cindex GLR parsers and @code{YYLLOC_DEFAULT}
4083 Actually, actions are not the best place to compute locations. Since
4084 locations are much more general than semantic values, there is room in
4085 the output parser to redefine the default action to take for each
4086 rule. The @code{YYLLOC_DEFAULT} macro is invoked each time a rule is
4087 matched, before the associated action is run. It is also invoked
4088 while processing a syntax error, to compute the error's location.
4089 Before reporting an unresolvable syntactic ambiguity, a GLR
4090 parser invokes @code{YYLLOC_DEFAULT} recursively to compute the location
4093 Most of the time, this macro is general enough to suppress location
4094 dedicated code from semantic actions.
4096 The @code{YYLLOC_DEFAULT} macro takes three parameters. The first one is
4097 the location of the grouping (the result of the computation). When a
4098 rule is matched, the second parameter identifies locations of
4099 all right hand side elements of the rule being matched, and the third
4100 parameter is the size of the rule's right hand side.
4101 When a GLR parser reports an ambiguity, which of multiple candidate
4102 right hand sides it passes to @code{YYLLOC_DEFAULT} is undefined.
4103 When processing a syntax error, the second parameter identifies locations
4104 of the symbols that were discarded during error processing, and the third
4105 parameter is the number of discarded symbols.
4107 By default, @code{YYLLOC_DEFAULT} is defined this way:
4111 # define YYLLOC_DEFAULT(Current, Rhs, N) \
4115 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
4116 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
4117 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
4118 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
4122 (Current).first_line = (Current).last_line = \
4123 YYRHSLOC(Rhs, 0).last_line; \
4124 (Current).first_column = (Current).last_column = \
4125 YYRHSLOC(Rhs, 0).last_column; \
4131 where @code{YYRHSLOC (rhs, k)} is the location of the @var{k}th symbol
4132 in @var{rhs} when @var{k} is positive, and the location of the symbol
4133 just before the reduction when @var{k} and @var{n} are both zero.
4135 When defining @code{YYLLOC_DEFAULT}, you should consider that:
4139 All arguments are free of side-effects. However, only the first one (the
4140 result) should be modified by @code{YYLLOC_DEFAULT}.
4143 For consistency with semantic actions, valid indexes within the
4144 right hand side range from 1 to @var{n}. When @var{n} is zero, only 0 is a
4145 valid index, and it refers to the symbol just before the reduction.
4146 During error processing @var{n} is always positive.
4149 Your macro should parenthesize its arguments, if need be, since the
4150 actual arguments may not be surrounded by parentheses. Also, your
4151 macro should expand to something that can be used as a single
4152 statement when it is followed by a semicolon.
4156 @section Bison Declarations
4157 @cindex declarations, Bison
4158 @cindex Bison declarations
4160 The @dfn{Bison declarations} section of a Bison grammar defines the symbols
4161 used in formulating the grammar and the data types of semantic values.
4164 All token type names (but not single-character literal tokens such as
4165 @code{'+'} and @code{'*'}) must be declared. Nonterminal symbols must be
4166 declared if you need to specify which data type to use for the semantic
4167 value (@pxref{Multiple Types, ,More Than One Value Type}).
4169 The first rule in the file also specifies the start symbol, by default.
4170 If you want some other symbol to be the start symbol, you must declare
4171 it explicitly (@pxref{Language and Grammar, ,Languages and Context-Free
4175 * Require Decl:: Requiring a Bison version.
4176 * Token Decl:: Declaring terminal symbols.
4177 * Precedence Decl:: Declaring terminals with precedence and associativity.
4178 * Union Decl:: Declaring the set of all semantic value types.
4179 * Type Decl:: Declaring the choice of type for a nonterminal symbol.
4180 * Initial Action Decl:: Code run before parsing starts.
4181 * Destructor Decl:: Declaring how symbols are freed.
4182 * Expect Decl:: Suppressing warnings about parsing conflicts.
4183 * Start Decl:: Specifying the start symbol.
4184 * Pure Decl:: Requesting a reentrant parser.
4185 * Push Decl:: Requesting a push parser.
4186 * Decl Summary:: Table of all Bison declarations.
4190 @subsection Require a Version of Bison
4191 @cindex version requirement
4192 @cindex requiring a version of Bison
4195 You may require the minimum version of Bison to process the grammar. If
4196 the requirement is not met, @command{bison} exits with an error (exit
4200 %require "@var{version}"
4204 @subsection Token Type Names
4205 @cindex declaring token type names
4206 @cindex token type names, declaring
4207 @cindex declaring literal string tokens
4210 The basic way to declare a token type name (terminal symbol) is as follows:
4216 Bison will convert this into a @code{#define} directive in
4217 the parser, so that the function @code{yylex} (if it is in this file)
4218 can use the name @var{name} to stand for this token type's code.
4220 Alternatively, you can use @code{%left}, @code{%right},
4221 @code{%precedence}, or
4222 @code{%nonassoc} instead of @code{%token}, if you wish to specify
4223 associativity and precedence. @xref{Precedence Decl, ,Operator
4226 You can explicitly specify the numeric code for a token type by appending
4227 a nonnegative decimal or hexadecimal integer value in the field immediately
4228 following the token name:
4232 %token XNUM 0x12d // a GNU extension
4236 It is generally best, however, to let Bison choose the numeric codes for
4237 all token types. Bison will automatically select codes that don't conflict
4238 with each other or with normal characters.
4240 In the event that the stack type is a union, you must augment the
4241 @code{%token} or other token declaration to include the data type
4242 alternative delimited by angle-brackets (@pxref{Multiple Types, ,More
4243 Than One Value Type}).
4249 %union @{ /* define stack type */
4253 %token <val> NUM /* define token NUM and its type */
4257 You can associate a literal string token with a token type name by
4258 writing the literal string at the end of a @code{%token}
4259 declaration which declares the name. For example:
4266 For example, a grammar for the C language might specify these names with
4267 equivalent literal string tokens:
4270 %token <operator> OR "||"
4271 %token <operator> LE 134 "<="
4276 Once you equate the literal string and the token name, you can use them
4277 interchangeably in further declarations or the grammar rules. The
4278 @code{yylex} function can use the token name or the literal string to
4279 obtain the token type code number (@pxref{Calling Convention}).
4280 Syntax error messages passed to @code{yyerror} from the parser will reference
4281 the literal string instead of the token name.
4283 The token numbered as 0 corresponds to end of file; the following line
4284 allows for nicer error messages referring to ``end of file'' instead
4288 %token END 0 "end of file"
4291 @node Precedence Decl
4292 @subsection Operator Precedence
4293 @cindex precedence declarations
4294 @cindex declaring operator precedence
4295 @cindex operator precedence, declaring
4297 Use the @code{%left}, @code{%right}, @code{%nonassoc}, or
4298 @code{%precedence} declaration to
4299 declare a token and specify its precedence and associativity, all at
4300 once. These are called @dfn{precedence declarations}.
4301 @xref{Precedence, ,Operator Precedence}, for general information on
4302 operator precedence.
4304 The syntax of a precedence declaration is nearly the same as that of
4305 @code{%token}: either
4308 %left @var{symbols}@dots{}
4315 %left <@var{type}> @var{symbols}@dots{}
4318 And indeed any of these declarations serves the purposes of @code{%token}.
4319 But in addition, they specify the associativity and relative precedence for
4320 all the @var{symbols}:
4324 The associativity of an operator @var{op} determines how repeated uses
4325 of the operator nest: whether @samp{@var{x} @var{op} @var{y} @var{op}
4326 @var{z}} is parsed by grouping @var{x} with @var{y} first or by
4327 grouping @var{y} with @var{z} first. @code{%left} specifies
4328 left-associativity (grouping @var{x} with @var{y} first) and
4329 @code{%right} specifies right-associativity (grouping @var{y} with
4330 @var{z} first). @code{%nonassoc} specifies no associativity, which
4331 means that @samp{@var{x} @var{op} @var{y} @var{op} @var{z}} is
4332 considered a syntax error.
4334 @code{%precedence} gives only precedence to the @var{symbols}, and
4335 defines no associativity at all. Use this to define precedence only,
4336 and leave any potential conflict due to associativity enabled.
4339 The precedence of an operator determines how it nests with other operators.
4340 All the tokens declared in a single precedence declaration have equal
4341 precedence and nest together according to their associativity.
4342 When two tokens declared in different precedence declarations associate,
4343 the one declared later has the higher precedence and is grouped first.
4346 For backward compatibility, there is a confusing difference between the
4347 argument lists of @code{%token} and precedence declarations.
4348 Only a @code{%token} can associate a literal string with a token type name.
4349 A precedence declaration always interprets a literal string as a reference to a
4354 %left OR "<=" // Does not declare an alias.
4355 %left OR 134 "<=" 135 // Declares 134 for OR and 135 for "<=".
4359 @subsection The Collection of Value Types
4360 @cindex declaring value types
4361 @cindex value types, declaring
4364 The @code{%union} declaration specifies the entire collection of
4365 possible data types for semantic values. The keyword @code{%union} is
4366 followed by braced code containing the same thing that goes inside a
4381 This says that the two alternative types are @code{double} and @code{symrec
4382 *}. They are given names @code{val} and @code{tptr}; these names are used
4383 in the @code{%token} and @code{%type} declarations to pick one of the types
4384 for a terminal or nonterminal symbol (@pxref{Type Decl, ,Nonterminal Symbols}).
4386 As an extension to POSIX, a tag is allowed after the
4387 @code{union}. For example:
4399 specifies the union tag @code{value}, so the corresponding C type is
4400 @code{union value}. If you do not specify a tag, it defaults to
4403 As another extension to POSIX, you may specify multiple
4404 @code{%union} declarations; their contents are concatenated. However,
4405 only the first @code{%union} declaration can specify a tag.
4407 Note that, unlike making a @code{union} declaration in C, you need not write
4408 a semicolon after the closing brace.
4410 Instead of @code{%union}, you can define and use your own union type
4411 @code{YYSTYPE} if your grammar contains at least one
4412 @samp{<@var{type}>} tag. For example, you can put the following into
4413 a header file @file{parser.h}:
4421 typedef union YYSTYPE YYSTYPE;
4426 and then your grammar can use the following
4427 instead of @code{%union}:
4440 @subsection Nonterminal Symbols
4441 @cindex declaring value types, nonterminals
4442 @cindex value types, nonterminals, declaring
4446 When you use @code{%union} to specify multiple value types, you must
4447 declare the value type of each nonterminal symbol for which values are
4448 used. This is done with a @code{%type} declaration, like this:
4451 %type <@var{type}> @var{nonterminal}@dots{}
4455 Here @var{nonterminal} is the name of a nonterminal symbol, and
4456 @var{type} is the name given in the @code{%union} to the alternative
4457 that you want (@pxref{Union Decl, ,The Collection of Value Types}). You
4458 can give any number of nonterminal symbols in the same @code{%type}
4459 declaration, if they have the same value type. Use spaces to separate
4462 You can also declare the value type of a terminal symbol. To do this,
4463 use the same @code{<@var{type}>} construction in a declaration for the
4464 terminal symbol. All kinds of token declarations allow
4465 @code{<@var{type}>}.
4467 @node Initial Action Decl
4468 @subsection Performing Actions before Parsing
4469 @findex %initial-action
4471 Sometimes your parser needs to perform some initializations before
4472 parsing. The @code{%initial-action} directive allows for such arbitrary
4475 @deffn {Directive} %initial-action @{ @var{code} @}
4476 @findex %initial-action
4477 Declare that the braced @var{code} must be invoked before parsing each time
4478 @code{yyparse} is called. The @var{code} may use @code{$$} and
4479 @code{@@$} --- initial value and location of the lookahead --- and the
4480 @code{%parse-param}.
4483 For instance, if your locations use a file name, you may use
4486 %parse-param @{ char const *file_name @};
4489 @@$.initialize (file_name);
4494 @node Destructor Decl
4495 @subsection Freeing Discarded Symbols
4496 @cindex freeing discarded symbols
4500 During error recovery (@pxref{Error Recovery}), symbols already pushed
4501 on the stack and tokens coming from the rest of the file are discarded
4502 until the parser falls on its feet. If the parser runs out of memory,
4503 or if it returns via @code{YYABORT} or @code{YYACCEPT}, all the
4504 symbols on the stack must be discarded. Even if the parser succeeds, it
4505 must discard the start symbol.
4507 When discarded symbols convey heap based information, this memory is
4508 lost. While this behavior can be tolerable for batch parsers, such as
4509 in traditional compilers, it is unacceptable for programs like shells or
4510 protocol implementations that may parse and execute indefinitely.
4512 The @code{%destructor} directive defines code that is called when a
4513 symbol is automatically discarded.
4515 @deffn {Directive} %destructor @{ @var{code} @} @var{symbols}
4517 Invoke the braced @var{code} whenever the parser discards one of the
4519 Within @var{code}, @code{$$} designates the semantic value associated
4520 with the discarded symbol, and @code{@@$} designates its location.
4521 The additional parser parameters are also available (@pxref{Parser Function, ,
4522 The Parser Function @code{yyparse}}).
4524 When a symbol is listed among @var{symbols}, its @code{%destructor} is called a
4525 per-symbol @code{%destructor}.
4526 You may also define a per-type @code{%destructor} by listing a semantic type
4527 tag among @var{symbols}.
4528 In that case, the parser will invoke this @var{code} whenever it discards any
4529 grammar symbol that has that semantic type tag unless that symbol has its own
4530 per-symbol @code{%destructor}.
4532 Finally, you can define two different kinds of default @code{%destructor}s.
4533 (These default forms are experimental.
4534 More user feedback will help to determine whether they should become permanent
4536 You can place each of @code{<*>} and @code{<>} in the @var{symbols} list of
4537 exactly one @code{%destructor} declaration in your grammar file.
4538 The parser will invoke the @var{code} associated with one of these whenever it
4539 discards any user-defined grammar symbol that has no per-symbol and no per-type
4541 The parser uses the @var{code} for @code{<*>} in the case of such a grammar
4542 symbol for which you have formally declared a semantic type tag (@code{%type}
4543 counts as such a declaration, but @code{$<tag>$} does not).
4544 The parser uses the @var{code} for @code{<>} in the case of such a grammar
4545 symbol that has no declared semantic type tag.
4552 %union @{ char *string; @}
4553 %token <string> STRING1
4554 %token <string> STRING2
4555 %type <string> string1
4556 %type <string> string2
4557 %union @{ char character; @}
4558 %token <character> CHR
4559 %type <character> chr
4562 %destructor @{ @} <character>
4563 %destructor @{ free ($$); @} <*>
4564 %destructor @{ free ($$); printf ("%d", @@$.first_line); @} STRING1 string1
4565 %destructor @{ printf ("Discarding tagless symbol.\n"); @} <>
4569 guarantees that, when the parser discards any user-defined symbol that has a
4570 semantic type tag other than @code{<character>}, it passes its semantic value
4571 to @code{free} by default.
4572 However, when the parser discards a @code{STRING1} or a @code{string1}, it also
4573 prints its line number to @code{stdout}.
4574 It performs only the second @code{%destructor} in this case, so it invokes
4575 @code{free} only once.
4576 Finally, the parser merely prints a message whenever it discards any symbol,
4577 such as @code{TAGLESS}, that has no semantic type tag.
4579 A Bison-generated parser invokes the default @code{%destructor}s only for
4580 user-defined as opposed to Bison-defined symbols.
4581 For example, the parser will not invoke either kind of default
4582 @code{%destructor} for the special Bison-defined symbols @code{$accept},
4583 @code{$undefined}, or @code{$end} (@pxref{Table of Symbols, ,Bison Symbols}),
4584 none of which you can reference in your grammar.
4585 It also will not invoke either for the @code{error} token (@pxref{Table of
4586 Symbols, ,error}), which is always defined by Bison regardless of whether you
4587 reference it in your grammar.
4588 However, it may invoke one of them for the end token (token 0) if you
4589 redefine it from @code{$end} to, for example, @code{END}:
4595 @cindex actions in mid-rule
4596 @cindex mid-rule actions
4597 Finally, Bison will never invoke a @code{%destructor} for an unreferenced
4598 mid-rule semantic value (@pxref{Mid-Rule Actions,,Actions in Mid-Rule}).
4599 That is, Bison does not consider a mid-rule to have a semantic value if you do
4600 not reference @code{$$} in the mid-rule's action or @code{$@var{n}} (where
4601 @var{n} is the RHS symbol position of the mid-rule) in any later action in that
4603 However, if you do reference either, the Bison-generated parser will invoke the
4604 @code{<>} @code{%destructor} whenever it discards the mid-rule symbol.
4608 In the future, it may be possible to redefine the @code{error} token as a
4609 nonterminal that captures the discarded symbols.
4610 In that case, the parser will invoke the default destructor for it as well.
4615 @cindex discarded symbols
4616 @dfn{Discarded symbols} are the following:
4620 stacked symbols popped during the first phase of error recovery,
4622 incoming terminals during the second phase of error recovery,
4624 the current lookahead and the entire stack (except the current
4625 right-hand side symbols) when the parser returns immediately, and
4627 the start symbol, when the parser succeeds.
4630 The parser can @dfn{return immediately} because of an explicit call to
4631 @code{YYABORT} or @code{YYACCEPT}, or failed error recovery, or memory
4634 Right-hand side symbols of a rule that explicitly triggers a syntax
4635 error via @code{YYERROR} are not discarded automatically. As a rule
4636 of thumb, destructors are invoked only when user actions cannot manage
4640 @subsection Suppressing Conflict Warnings
4641 @cindex suppressing conflict warnings
4642 @cindex preventing warnings about conflicts
4643 @cindex warnings, preventing
4644 @cindex conflicts, suppressing warnings of
4648 Bison normally warns if there are any conflicts in the grammar
4649 (@pxref{Shift/Reduce, ,Shift/Reduce Conflicts}), but most real grammars
4650 have harmless shift/reduce conflicts which are resolved in a predictable
4651 way and would be difficult to eliminate. It is desirable to suppress
4652 the warning about these conflicts unless the number of conflicts
4653 changes. You can do this with the @code{%expect} declaration.
4655 The declaration looks like this:
4661 Here @var{n} is a decimal integer. The declaration says there should
4662 be @var{n} shift/reduce conflicts and no reduce/reduce conflicts.
4663 Bison reports an error if the number of shift/reduce conflicts differs
4664 from @var{n}, or if there are any reduce/reduce conflicts.
4666 For deterministic parsers, reduce/reduce conflicts are more
4667 serious, and should be eliminated entirely. Bison will always report
4668 reduce/reduce conflicts for these parsers. With GLR
4669 parsers, however, both kinds of conflicts are routine; otherwise,
4670 there would be no need to use GLR parsing. Therefore, it is
4671 also possible to specify an expected number of reduce/reduce conflicts
4672 in GLR parsers, using the declaration:
4678 In general, using @code{%expect} involves these steps:
4682 Compile your grammar without @code{%expect}. Use the @samp{-v} option
4683 to get a verbose list of where the conflicts occur. Bison will also
4684 print the number of conflicts.
4687 Check each of the conflicts to make sure that Bison's default
4688 resolution is what you really want. If not, rewrite the grammar and
4689 go back to the beginning.
4692 Add an @code{%expect} declaration, copying the number @var{n} from the
4693 number which Bison printed. With GLR parsers, add an
4694 @code{%expect-rr} declaration as well.
4697 Now Bison will report an error if you introduce an unexpected conflict,
4698 but will keep silent otherwise.
4701 @subsection The Start-Symbol
4702 @cindex declaring the start symbol
4703 @cindex start symbol, declaring
4704 @cindex default start symbol
4707 Bison assumes by default that the start symbol for the grammar is the first
4708 nonterminal specified in the grammar specification section. The programmer
4709 may override this restriction with the @code{%start} declaration as follows:
4716 @subsection A Pure (Reentrant) Parser
4717 @cindex reentrant parser
4719 @findex %define api.pure
4721 A @dfn{reentrant} program is one which does not alter in the course of
4722 execution; in other words, it consists entirely of @dfn{pure} (read-only)
4723 code. Reentrancy is important whenever asynchronous execution is possible;
4724 for example, a nonreentrant program may not be safe to call from a signal
4725 handler. In systems with multiple threads of control, a nonreentrant
4726 program must be called only within interlocks.
4728 Normally, Bison generates a parser which is not reentrant. This is
4729 suitable for most uses, and it permits compatibility with Yacc. (The
4730 standard Yacc interfaces are inherently nonreentrant, because they use
4731 statically allocated variables for communication with @code{yylex},
4732 including @code{yylval} and @code{yylloc}.)
4734 Alternatively, you can generate a pure, reentrant parser. The Bison
4735 declaration @samp{%define api.pure} says that you want the parser to be
4736 reentrant. It looks like this:
4742 The result is that the communication variables @code{yylval} and
4743 @code{yylloc} become local variables in @code{yyparse}, and a different
4744 calling convention is used for the lexical analyzer function
4745 @code{yylex}. @xref{Pure Calling, ,Calling Conventions for Pure
4746 Parsers}, for the details of this. The variable @code{yynerrs}
4747 becomes local in @code{yyparse} in pull mode but it becomes a member
4748 of yypstate in push mode. (@pxref{Error Reporting, ,The Error
4749 Reporting Function @code{yyerror}}). The convention for calling
4750 @code{yyparse} itself is unchanged.
4752 Whether the parser is pure has nothing to do with the grammar rules.
4753 You can generate either a pure parser or a nonreentrant parser from any
4757 @subsection A Push Parser
4760 @findex %define api.push-pull
4762 (The current push parsing interface is experimental and may evolve.
4763 More user feedback will help to stabilize it.)
4765 A pull parser is called once and it takes control until all its input
4766 is completely parsed. A push parser, on the other hand, is called
4767 each time a new token is made available.
4769 A push parser is typically useful when the parser is part of a
4770 main event loop in the client's application. This is typically
4771 a requirement of a GUI, when the main event loop needs to be triggered
4772 within a certain time period.
4774 Normally, Bison generates a pull parser.
4775 The following Bison declaration says that you want the parser to be a push
4776 parser (@pxref{Decl Summary,,%define api.push-pull}):
4779 %define api.push-pull push
4782 In almost all cases, you want to ensure that your push parser is also
4783 a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}). The only
4784 time you should create an impure push parser is to have backwards
4785 compatibility with the impure Yacc pull mode interface. Unless you know
4786 what you are doing, your declarations should look like this:
4790 %define api.push-pull push
4793 There is a major notable functional difference between the pure push parser
4794 and the impure push parser. It is acceptable for a pure push parser to have
4795 many parser instances, of the same type of parser, in memory at the same time.
4796 An impure push parser should only use one parser at a time.
4798 When a push parser is selected, Bison will generate some new symbols in
4799 the generated parser. @code{yypstate} is a structure that the generated
4800 parser uses to store the parser's state. @code{yypstate_new} is the
4801 function that will create a new parser instance. @code{yypstate_delete}
4802 will free the resources associated with the corresponding parser instance.
4803 Finally, @code{yypush_parse} is the function that should be called whenever a
4804 token is available to provide the parser. A trivial example
4805 of using a pure push parser would look like this:
4809 yypstate *ps = yypstate_new ();
4811 status = yypush_parse (ps, yylex (), NULL);
4812 @} while (status == YYPUSH_MORE);
4813 yypstate_delete (ps);
4816 If the user decided to use an impure push parser, a few things about
4817 the generated parser will change. The @code{yychar} variable becomes
4818 a global variable instead of a variable in the @code{yypush_parse} function.
4819 For this reason, the signature of the @code{yypush_parse} function is
4820 changed to remove the token as a parameter. A nonreentrant push parser
4821 example would thus look like this:
4826 yypstate *ps = yypstate_new ();
4829 status = yypush_parse (ps);
4830 @} while (status == YYPUSH_MORE);
4831 yypstate_delete (ps);
4834 That's it. Notice the next token is put into the global variable @code{yychar}
4835 for use by the next invocation of the @code{yypush_parse} function.
4837 Bison also supports both the push parser interface along with the pull parser
4838 interface in the same generated parser. In order to get this functionality,
4839 you should replace the @samp{%define api.push-pull push} declaration with the
4840 @samp{%define api.push-pull both} declaration. Doing this will create all of
4841 the symbols mentioned earlier along with the two extra symbols, @code{yyparse}
4842 and @code{yypull_parse}. @code{yyparse} can be used exactly as it normally
4843 would be used. However, the user should note that it is implemented in the
4844 generated parser by calling @code{yypull_parse}.
4845 This makes the @code{yyparse} function that is generated with the
4846 @samp{%define api.push-pull both} declaration slower than the normal
4847 @code{yyparse} function. If the user
4848 calls the @code{yypull_parse} function it will parse the rest of the input
4849 stream. It is possible to @code{yypush_parse} tokens to select a subgrammar
4850 and then @code{yypull_parse} the rest of the input stream. If you would like
4851 to switch back and forth between between parsing styles, you would have to
4852 write your own @code{yypull_parse} function that knows when to quit looking
4853 for input. An example of using the @code{yypull_parse} function would look
4857 yypstate *ps = yypstate_new ();
4858 yypull_parse (ps); /* Will call the lexer */
4859 yypstate_delete (ps);
4862 Adding the @samp{%define api.pure} declaration does exactly the same thing to
4863 the generated parser with @samp{%define api.push-pull both} as it did for
4864 @samp{%define api.push-pull push}.
4867 @subsection Bison Declaration Summary
4868 @cindex Bison declaration summary
4869 @cindex declaration summary
4870 @cindex summary, Bison declaration
4872 Here is a summary of the declarations used to define a grammar:
4874 @deffn {Directive} %union
4875 Declare the collection of data types that semantic values may have
4876 (@pxref{Union Decl, ,The Collection of Value Types}).
4879 @deffn {Directive} %token
4880 Declare a terminal symbol (token type name) with no precedence
4881 or associativity specified (@pxref{Token Decl, ,Token Type Names}).
4884 @deffn {Directive} %right
4885 Declare a terminal symbol (token type name) that is right-associative
4886 (@pxref{Precedence Decl, ,Operator Precedence}).
4889 @deffn {Directive} %left
4890 Declare a terminal symbol (token type name) that is left-associative
4891 (@pxref{Precedence Decl, ,Operator Precedence}).
4894 @deffn {Directive} %nonassoc
4895 Declare a terminal symbol (token type name) that is nonassociative
4896 (@pxref{Precedence Decl, ,Operator Precedence}).
4897 Using it in a way that would be associative is a syntax error.
4901 @deffn {Directive} %default-prec
4902 Assign a precedence to rules lacking an explicit @code{%prec} modifier
4903 (@pxref{Contextual Precedence, ,Context-Dependent Precedence}).
4907 @deffn {Directive} %type
4908 Declare the type of semantic values for a nonterminal symbol
4909 (@pxref{Type Decl, ,Nonterminal Symbols}).
4912 @deffn {Directive} %start
4913 Specify the grammar's start symbol (@pxref{Start Decl, ,The
4917 @deffn {Directive} %expect
4918 Declare the expected number of shift-reduce conflicts
4919 (@pxref{Expect Decl, ,Suppressing Conflict Warnings}).
4925 In order to change the behavior of @command{bison}, use the following
4928 @deffn {Directive} %code @{@var{code}@}
4930 This is the unqualified form of the @code{%code} directive.
4931 It inserts @var{code} verbatim at a language-dependent default location in the
4932 output@footnote{The default location is actually skeleton-dependent;
4933 writers of non-standard skeletons however should choose the default location
4934 consistently with the behavior of the standard Bison skeletons.}.
4937 For C/C++, the default location is the parser source code
4938 file after the usual contents of the parser header file.
4939 Thus, @code{%code} replaces the traditional Yacc prologue,
4940 @code{%@{@var{code}%@}}, for most purposes.
4941 For a detailed discussion, see @ref{Prologue Alternatives}.
4943 For Java, the default location is inside the parser class.
4946 @deffn {Directive} %code @var{qualifier} @{@var{code}@}
4947 This is the qualified form of the @code{%code} directive.
4948 If you need to specify location-sensitive verbatim @var{code} that does not
4949 belong at the default location selected by the unqualified @code{%code} form,
4950 use this form instead.
4952 @var{qualifier} identifies the purpose of @var{code} and thus the location(s)
4953 where Bison should generate it.
4954 Not all @var{qualifier}s are accepted for all target languages.
4955 Unaccepted @var{qualifier}s produce an error.
4956 Some of the accepted @var{qualifier}s are:
4960 @findex %code requires
4963 @item Language(s): C, C++
4965 @item Purpose: This is the best place to write dependency code required for
4966 @code{YYSTYPE} and @code{YYLTYPE}.
4967 In other words, it's the best place to define types referenced in @code{%union}
4968 directives, and it's the best place to override Bison's default @code{YYSTYPE}
4969 and @code{YYLTYPE} definitions.
4971 @item Location(s): The parser header file and the parser source code file
4972 before the Bison-generated @code{YYSTYPE} and @code{YYLTYPE} definitions.
4976 @findex %code provides
4979 @item Language(s): C, C++
4981 @item Purpose: This is the best place to write additional definitions and
4982 declarations that should be provided to other modules.
4984 @item Location(s): The parser header file and the parser source code file after
4985 the Bison-generated @code{YYSTYPE}, @code{YYLTYPE}, and token definitions.
4992 @item Language(s): C, C++
4994 @item Purpose: The unqualified @code{%code} or @code{%code requires} should
4995 usually be more appropriate than @code{%code top}.
4996 However, occasionally it is necessary to insert code much nearer the top of the
4997 parser source code file.
5007 @item Location(s): Near the top of the parser source code file.
5011 @findex %code imports
5014 @item Language(s): Java
5016 @item Purpose: This is the best place to write Java import directives.
5018 @item Location(s): The parser Java file after any Java package directive and
5019 before any class definitions.
5024 For a detailed discussion of how to use @code{%code} in place of the
5025 traditional Yacc prologue for C/C++, see @ref{Prologue Alternatives}.
5028 @deffn {Directive} %debug
5029 Instrument the output parser for traces. Obsoleted by @samp{%define
5031 @xref{Tracing, ,Tracing Your Parser}.
5034 @deffn {Directive} %define @var{variable}
5035 @deffnx {Directive} %define @var{variable} @var{value}
5036 @deffnx {Directive} %define @var{variable} "@var{value}"
5037 Define a variable to adjust Bison's behavior.
5039 It is an error if a @var{variable} is defined by @code{%define} multiple
5040 times, but see @ref{Bison Options,,-D @var{name}[=@var{value}]}.
5042 @var{value} must be placed in quotation marks if it contains any
5043 character other than a letter, underscore, period, dash, or non-initial
5046 Omitting @code{"@var{value}"} entirely is always equivalent to specifying
5049 Some @var{variable}s take Boolean values.
5050 In this case, Bison will complain if the variable definition does not meet one
5051 of the following four conditions:
5054 @item @code{@var{value}} is @code{true}
5056 @item @code{@var{value}} is omitted (or @code{""} is specified).
5057 This is equivalent to @code{true}.
5059 @item @code{@var{value}} is @code{false}.
5061 @item @var{variable} is never defined.
5062 In this case, Bison selects a default value.
5065 What @var{variable}s are accepted, as well as their meanings and default
5066 values, depend on the selected target language and/or the parser
5067 skeleton (@pxref{Decl Summary,,%language}, @pxref{Decl
5068 Summary,,%skeleton}).
5069 Unaccepted @var{variable}s produce an error.
5070 Some of the accepted @var{variable}s are:
5073 @c ================================================== api.namespace
5075 @findex %define api.namespace
5077 @item Languages(s): C++
5079 @item Purpose: Specify the namespace for the parser class.
5080 For example, if you specify:
5083 %define api.namespace "foo::bar"
5086 Bison uses @code{foo::bar} verbatim in references such as:
5089 foo::bar::parser::semantic_type
5092 However, to open a namespace, Bison removes any leading @code{::} and then
5093 splits on any remaining occurrences:
5096 namespace foo @{ namespace bar @{
5102 @item Accepted Values:
5103 Any absolute or relative C++ namespace reference without a trailing
5104 @code{"::"}. For example, @code{"foo"} or @code{"::foo::bar"}.
5106 @item Default Value:
5107 The value specified by @code{%name-prefix}, which defaults to @code{yy}.
5108 This usage of @code{%name-prefix} is for backward compatibility and can
5109 be confusing since @code{%name-prefix} also specifies the textual prefix
5110 for the lexical analyzer function. Thus, if you specify
5111 @code{%name-prefix}, it is best to also specify @samp{%define
5112 api.namespace} so that @code{%name-prefix} @emph{only} affects the
5113 lexical analyzer function. For example, if you specify:
5116 %define api.namespace "foo"
5117 %name-prefix "bar::"
5120 The parser namespace is @code{foo} and @code{yylex} is referenced as
5127 @c ================================================== api.pure
5129 @findex %define api.pure
5132 @item Language(s): C
5134 @item Purpose: Request a pure (reentrant) parser program.
5135 @xref{Pure Decl, ,A Pure (Reentrant) Parser}.
5137 @item Accepted Values: Boolean
5139 @item Default Value: @code{false}
5145 @c ================================================== api.push-pull
5147 @findex %define api.push-pull
5150 @item Language(s): C (deterministic parsers only)
5152 @item Purpose: Request a pull parser, a push parser, or both.
5153 @xref{Push Decl, ,A Push Parser}.
5154 (The current push parsing interface is experimental and may evolve.
5155 More user feedback will help to stabilize it.)
5157 @item Accepted Values: @code{pull}, @code{push}, @code{both}
5159 @item Default Value: @code{pull}
5165 @c ================================================== api.tokens.prefix
5166 @item api.tokens.prefix
5167 @findex %define api.tokens.prefix
5170 @item Languages(s): all
5173 Add a prefix to the token names when generating their definition in the
5174 target language. For instance
5177 %token FILE for ERROR
5178 %define api.tokens.prefix "TOK_"
5180 start: FILE for ERROR;
5184 generates the definition of the symbols @code{TOK_FILE}, @code{TOK_for},
5185 and @code{TOK_ERROR} in the generated source files. In particular, the
5186 scanner must use these prefixed token names, while the grammar itself
5187 may still use the short names (as in the sample rule given above). The
5188 generated informational files (@file{*.output}, @file{*.xml},
5189 @file{*.dot}) are not modified by this prefix. See @ref{Calc++ Parser}
5190 and @ref{Calc++ Scanner}, for a complete example.
5192 @item Accepted Values:
5193 Any string. Should be a valid identifier prefix in the target language,
5194 in other words, it should typically be an identifier itself (sequence of
5195 letters, underscores, and ---not at the beginning--- digits).
5197 @item Default Value:
5200 @c api.tokens.prefix
5203 @c ================================================== lex_symbol
5205 @findex %define lex_symbol
5212 When variant-based semantic values are enabled (@pxref{C++ Variants}),
5213 request that symbols be handled as a whole (type, value, and possibly
5214 location) in the scanner. @xref{Complete Symbols}, for details.
5216 @item Accepted Values:
5219 @item Default Value:
5225 @c ================================================== lr.default-reductions
5227 @item lr.default-reductions
5228 @cindex default reductions
5229 @findex %define lr.default-reductions
5230 @cindex delayed syntax errors
5231 @cindex syntax errors delayed
5236 @item Language(s): all
5238 @item Purpose: Specify the kind of states that are permitted to
5239 contain default reductions.
5240 That is, in such a state, Bison selects the reduction with the largest
5241 lookahead set to be the default parser action and then removes that
5243 (The ability to specify where default reductions should be used is
5245 More user feedback will help to stabilize it.)
5247 @item Accepted Values:
5250 This is the traditional Bison behavior.
5251 The main advantage is a significant decrease in the size of the parser
5253 The disadvantage is that, when the generated parser encounters a
5254 syntactically unacceptable token, the parser might then perform
5255 unnecessary default reductions before it can detect the syntax error.
5256 Such delayed syntax error detection is usually inherent in
5257 LALR and IELR parser tables anyway due to
5258 LR state merging (@pxref{Decl Summary,,lr.type}).
5259 Furthermore, the use of @code{%nonassoc} can contribute to delayed
5260 syntax error detection even in the case of canonical LR.
5261 As an experimental feature, delayed syntax error detection can be
5262 overcome in all cases by enabling LAC (@pxref{Decl
5263 Summary,,parse.lac}, for details, including a discussion of the effects
5264 of delayed syntax error detection).
5266 @item @code{consistent}.
5267 @cindex consistent states
5268 A consistent state is a state that has only one possible action.
5269 If that action is a reduction, then the parser does not need to request
5270 a lookahead token from the scanner before performing that action.
5271 However, the parser recognizes the ability to ignore the lookahead token
5272 in this way only when such a reduction is encoded as a default
5274 Thus, if default reductions are permitted only in consistent states,
5275 then a canonical LR parser that does not employ
5276 @code{%nonassoc} detects a syntax error as soon as it @emph{needs} the
5277 syntactically unacceptable token from the scanner.
5279 @item @code{accepting}.
5280 @cindex accepting state
5281 In the accepting state, the default reduction is actually the accept
5283 In this case, a canonical LR parser that does not employ
5284 @code{%nonassoc} detects a syntax error as soon as it @emph{reaches} the
5285 syntactically unacceptable token in the input.
5286 That is, it does not perform any extra reductions.
5289 @item Default Value:
5291 @item @code{accepting} if @code{lr.type} is @code{canonical-lr}.
5292 @item @code{all} otherwise.
5296 @c ============================================ lr.keep-unreachable-states
5298 @item lr.keep-unreachable-states
5299 @findex %define lr.keep-unreachable-states
5302 @item Language(s): all
5304 @item Purpose: Request that Bison allow unreachable parser states to
5305 remain in the parser tables.
5306 Bison considers a state to be unreachable if there exists no sequence of
5307 transitions from the start state to that state.
5308 A state can become unreachable during conflict resolution if Bison disables a
5309 shift action leading to it from a predecessor state.
5310 Keeping unreachable states is sometimes useful for analysis purposes, but they
5311 are useless in the generated parser.
5313 @item Accepted Values: Boolean
5315 @item Default Value: @code{false}
5321 @item Unreachable states may contain conflicts and may use rules not used in
5323 Thus, keeping unreachable states may induce warnings that are irrelevant to
5324 your parser's behavior, and it may eliminate warnings that are relevant.
5325 Of course, the change in warnings may actually be relevant to a parser table
5326 analysis that wants to keep unreachable states, so this behavior will likely
5327 remain in future Bison releases.
5329 @item While Bison is able to remove unreachable states, it is not guaranteed to
5330 remove other kinds of useless states.
5331 Specifically, when Bison disables reduce actions during conflict resolution,
5332 some goto actions may become useless, and thus some additional states may
5334 If Bison were to compute which goto actions were useless and then disable those
5335 actions, it could identify such states as unreachable and then remove those
5337 However, Bison does not compute which goto actions are useless.
5340 @c lr.keep-unreachable-states
5342 @c ================================================== lr.type
5345 @findex %define lr.type
5351 @item Language(s): all
5353 @item Purpose: Specify the type of parser tables within the
5355 (This feature is experimental.
5356 More user feedback will help to stabilize it.)
5358 @item Accepted Values:
5361 While Bison generates LALR parser tables by default for
5362 historical reasons, IELR or canonical LR is almost
5363 always preferable for deterministic parsers.
5364 The trouble is that LALR parser tables can suffer from
5365 mysterious conflicts and thus may not accept the full set of sentences
5366 that IELR and canonical LR accept.
5367 @xref{Mystery Conflicts}, for details.
5368 However, there are at least two scenarios where LALR may be
5371 @cindex GLR with LALR
5372 @item When employing GLR parsers (@pxref{GLR Parsers}), if you
5373 do not resolve any conflicts statically (for example, with @code{%left}
5374 or @code{%prec}), then the parser explores all potential parses of any
5376 In this case, the use of LALR parser tables is guaranteed not
5377 to alter the language accepted by the parser.
5378 LALR parser tables are the smallest parser tables Bison can
5379 currently generate, so they may be preferable.
5380 Nevertheless, once you begin to resolve conflicts statically,
5381 GLR begins to behave more like a deterministic parser, and so
5382 IELR and canonical LR can be helpful to avoid
5383 LALR's mysterious behavior.
5385 @item Occasionally during development, an especially malformed grammar
5386 with a major recurring flaw may severely impede the IELR or
5387 canonical LR parser table generation algorithm.
5388 LALR can be a quick way to generate parser tables in order to
5389 investigate such problems while ignoring the more subtle differences
5390 from IELR and canonical LR.
5394 IELR is a minimal LR algorithm.
5395 That is, given any grammar (LR or non-LR),
5396 IELR and canonical LR always accept exactly the same
5398 However, as for LALR, the number of parser states is often an
5399 order of magnitude less for IELR than for canonical
5401 More importantly, because canonical LR's extra parser states
5402 may contain duplicate conflicts in the case of non-LR
5403 grammars, the number of conflicts for IELR is often an order
5404 of magnitude less as well.
5405 This can significantly reduce the complexity of developing of a grammar.
5407 @item @code{canonical-lr}.
5408 @cindex delayed syntax errors
5409 @cindex syntax errors delayed
5412 While inefficient, canonical LR parser tables can be an
5413 interesting means to explore a grammar because they have a property that
5414 IELR and LALR tables do not.
5415 That is, if @code{%nonassoc} is not used and default reductions are left
5416 disabled (@pxref{Decl Summary,,lr.default-reductions}), then, for every
5417 left context of every canonical LR state, the set of tokens
5418 accepted by that state is guaranteed to be the exact set of tokens that
5419 is syntactically acceptable in that left context.
5420 It might then seem that an advantage of canonical LR parsers
5421 in production is that, under the above constraints, they are guaranteed
5422 to detect a syntax error as soon as possible without performing any
5423 unnecessary reductions.
5424 However, IELR parsers using LAC (@pxref{Decl
5425 Summary,,parse.lac}) are also able to achieve this behavior without
5426 sacrificing @code{%nonassoc} or default reductions.
5429 @item Default Value: @code{lalr}
5433 @c ================================================== namespace
5435 @findex %define namespace
5436 Obsoleted by @code{api.namespace}
5440 @c ================================================== parse.assert
5442 @findex %define parse.assert
5445 @item Languages(s): C++
5447 @item Purpose: Issue runtime assertions to catch invalid uses.
5448 In C++, when variants are used (@pxref{C++ Variants}), symbols must be
5450 destroyed properly. This option checks these constraints.
5452 @item Accepted Values: Boolean
5454 @item Default Value: @code{false}
5459 @c ================================================== parse.error
5461 @findex %define parse.error
5466 Control the kind of error messages passed to the error reporting
5467 function. @xref{Error Reporting, ,The Error Reporting Function
5469 @item Accepted Values:
5472 Error messages passed to @code{yyerror} are simply @w{@code{"syntax
5474 @item @code{verbose}
5475 Error messages report the unexpected token, and possibly the expected
5479 @item Default Value:
5485 @c ================================================== parse.lac
5487 @findex %define parse.lac
5489 @cindex lookahead correction
5492 @item Languages(s): C
5494 @item Purpose: Enable LAC (lookahead correction) to improve
5495 syntax error handling.
5497 Canonical LR, IELR, and LALR can suffer
5498 from a couple of problems upon encountering a syntax error. First, the
5499 parser might perform additional parser stack reductions before
5500 discovering the syntax error. Such reductions perform user semantic
5501 actions that are unexpected because they are based on an invalid token,
5502 and they cause error recovery to begin in a different syntactic context
5503 than the one in which the invalid token was encountered. Second, when
5504 verbose error messages are enabled (with @code{%error-verbose} or
5505 @code{#define YYERROR_VERBOSE}), the expected token list in the syntax
5506 error message can both contain invalid tokens and omit valid tokens.
5508 The culprits for the above problems are @code{%nonassoc}, default
5509 reductions in inconsistent states, and parser state merging. Thus,
5510 IELR and LALR suffer the most. Canonical
5511 LR can suffer only if @code{%nonassoc} is used or if default
5512 reductions are enabled for inconsistent states.
5514 LAC is a new mechanism within the parsing algorithm that
5515 completely solves these problems for canonical LR,
5516 IELR, and LALR without sacrificing @code{%nonassoc},
5517 default reductions, or state mering. Conceptually, the mechanism is
5518 straight-forward. Whenever the parser fetches a new token from the
5519 scanner so that it can determine the next parser action, it immediately
5520 suspends normal parsing and performs an exploratory parse using a
5521 temporary copy of the normal parser state stack. During this
5522 exploratory parse, the parser does not perform user semantic actions.
5523 If the exploratory parse reaches a shift action, normal parsing then
5524 resumes on the normal parser stacks. If the exploratory parse reaches
5525 an error instead, the parser reports a syntax error. If verbose syntax
5526 error messages are enabled, the parser must then discover the list of
5527 expected tokens, so it performs a separate exploratory parse for each
5528 token in the grammar.
5530 There is one subtlety about the use of LAC. That is, when in
5531 a consistent parser state with a default reduction, the parser will not
5532 attempt to fetch a token from the scanner because no lookahead is needed
5533 to determine the next parser action. Thus, whether default reductions
5534 are enabled in consistent states (@pxref{Decl
5535 Summary,,lr.default-reductions}) affects how soon the parser detects a
5536 syntax error: when it @emph{reaches} an erroneous token or when it
5537 eventually @emph{needs} that token as a lookahead. The latter behavior
5538 is probably more intuitive, so Bison currently provides no way to
5539 achieve the former behavior while default reductions are fully enabled.
5541 Thus, when LAC is in use, for some fixed decision of whether
5542 to enable default reductions in consistent states, canonical
5543 LR and IELR behave exactly the same for both
5544 syntactically acceptable and syntactically unacceptable input. While
5545 LALR still does not support the full language-recognition
5546 power of canonical LR and IELR, LAC at
5547 least enables LALR's syntax error handling to correctly
5548 reflect LALR's language-recognition power.
5550 Because LAC requires many parse actions to be performed twice,
5551 it can have a performance penalty. However, not all parse actions must
5552 be performed twice. Specifically, during a series of default reductions
5553 in consistent states and shift actions, the parser never has to initiate
5554 an exploratory parse. Moreover, the most time-consuming tasks in a
5555 parse are often the file I/O, the lexical analysis performed by the
5556 scanner, and the user's semantic actions, but none of these are
5557 performed during the exploratory parse. Finally, the base of the
5558 temporary stack used during an exploratory parse is a pointer into the
5559 normal parser state stack so that the stack is never physically copied.
5560 In our experience, the performance penalty of LAC has proven
5561 insignificant for practical grammars.
5563 @item Accepted Values: @code{none}, @code{full}
5565 @item Default Value: @code{none}
5569 @c ================================================== parse.trace
5571 @findex %define parse.trace
5574 @item Languages(s): C, C++
5576 @item Purpose: Require parser instrumentation for tracing.
5577 In C/C++, define the macro @code{YYDEBUG} to 1 in the parser file if it
5578 is not already defined, so that the debugging facilities are compiled.
5579 @xref{Tracing, ,Tracing Your Parser}.
5581 @item Accepted Values: Boolean
5583 @item Default Value: @code{false}
5587 @c ================================================== variant
5589 @findex %define variant
5596 Request variant-based semantic values.
5597 @xref{C++ Variants}.
5599 @item Accepted Values:
5602 @item Default Value:
5610 @c ---------------------------------------------------------- %define
5612 @deffn {Directive} %defines
5613 Write a header file containing macro definitions for the token type
5614 names defined in the grammar as well as a few other declarations.
5615 If the parser output file is named @file{@var{name}.c} then this file
5616 is named @file{@var{name}.h}.
5618 For C parsers, the output header declares @code{YYSTYPE} unless
5619 @code{YYSTYPE} is already defined as a macro or you have used a
5620 @code{<@var{type}>} tag without using @code{%union}.
5621 Therefore, if you are using a @code{%union}
5622 (@pxref{Multiple Types, ,More Than One Value Type}) with components that
5623 require other definitions, or if you have defined a @code{YYSTYPE} macro
5625 (@pxref{Value Type, ,Data Types of Semantic Values}), you need to
5626 arrange for these definitions to be propagated to all modules, e.g., by
5627 putting them in a prerequisite header that is included both by your
5628 parser and by any other module that needs @code{YYSTYPE}.
5630 Unless your parser is pure, the output header declares @code{yylval}
5631 as an external variable. @xref{Pure Decl, ,A Pure (Reentrant)
5634 If you have also used locations, the output header declares
5635 @code{YYLTYPE} and @code{yylloc} using a protocol similar to that of
5636 the @code{YYSTYPE} macro and @code{yylval}. @xref{Locations, ,Tracking
5639 This output file is normally essential if you wish to put the definition
5640 of @code{yylex} in a separate source file, because @code{yylex}
5641 typically needs to be able to refer to the above-mentioned declarations
5642 and to the token type codes. @xref{Token Values, ,Semantic Values of
5645 @findex %code requires
5646 @findex %code provides
5647 If you have declared @code{%code requires} or @code{%code provides}, the output
5648 header also contains their code.
5649 @xref{Decl Summary, ,%code}.
5652 @deffn {Directive} %defines @var{defines-file}
5653 Same as above, but save in the file @var{defines-file}.
5656 @deffn {Directive} %destructor
5657 Specify how the parser should reclaim the memory associated to
5658 discarded symbols. @xref{Destructor Decl, , Freeing Discarded Symbols}.
5661 @deffn {Directive} %file-prefix "@var{prefix}"
5662 Specify a prefix to use for all Bison output file names. The names are
5663 chosen as if the input file were named @file{@var{prefix}.y}.
5666 @deffn {Directive} %language "@var{language}"
5667 Specify the programming language for the generated parser. Currently
5668 supported languages include C, C++, and Java.
5669 @var{language} is case-insensitive.
5671 This directive is experimental and its effect may be modified in future
5675 @deffn {Directive} %locations
5676 Generate the code processing the locations (@pxref{Action Features,
5677 ,Special Features for Use in Actions}). This mode is enabled as soon as
5678 the grammar uses the special @samp{@@@var{n}} tokens, but if your
5679 grammar does not use it, using @samp{%locations} allows for more
5680 accurate syntax error messages.
5683 @deffn {Directive} %name-prefix "@var{prefix}"
5684 Rename the external symbols used in the parser so that they start with
5685 @var{prefix} instead of @samp{yy}. The precise list of symbols renamed
5687 is @code{yyparse}, @code{yylex}, @code{yyerror}, @code{yynerrs},
5688 @code{yylval}, @code{yychar}, @code{yydebug}, and
5689 (if locations are used) @code{yylloc}. If you use a push parser,
5690 @code{yypush_parse}, @code{yypull_parse}, @code{yypstate},
5691 @code{yypstate_new} and @code{yypstate_delete} will
5692 also be renamed. For example, if you use @samp{%name-prefix "c_"}, the
5693 names become @code{c_parse}, @code{c_lex}, and so on.
5694 For C++ parsers, see the @samp{%define api.namespace} documentation in this
5696 @xref{Multiple Parsers, ,Multiple Parsers in the Same Program}.
5700 @deffn {Directive} %no-default-prec
5701 Do not assign a precedence to rules lacking an explicit @code{%prec}
5702 modifier (@pxref{Contextual Precedence, ,Context-Dependent
5707 @deffn {Directive} %no-lines
5708 Don't generate any @code{#line} preprocessor commands in the parser
5709 file. Ordinarily Bison writes these commands in the parser file so that
5710 the C compiler and debuggers will associate errors and object code with
5711 your source file (the grammar file). This directive causes them to
5712 associate errors with the parser file, treating it an independent source
5713 file in its own right.
5716 @deffn {Directive} %output "@var{file}"
5717 Specify @var{file} for the parser file.
5720 @deffn {Directive} %pure-parser
5721 Deprecated version of @samp{%define api.pure} (@pxref{Decl Summary, ,%define}),
5722 for which Bison is more careful to warn about unreasonable usage.
5725 @deffn {Directive} %require "@var{version}"
5726 Require version @var{version} or higher of Bison. @xref{Require Decl, ,
5727 Require a Version of Bison}.
5730 @deffn {Directive} %skeleton "@var{file}"
5731 Specify the skeleton to use.
5733 @c You probably don't need this option unless you are developing Bison.
5734 @c You should use @code{%language} if you want to specify the skeleton for a
5735 @c different language, because it is clearer and because it will always choose the
5736 @c correct skeleton for non-deterministic or push parsers.
5738 If @var{file} does not contain a @code{/}, @var{file} is the name of a skeleton
5739 file in the Bison installation directory.
5740 If it does, @var{file} is an absolute file name or a file name relative to the
5741 directory of the grammar file.
5742 This is similar to how most shells resolve commands.
5745 @deffn {Directive} %token-table
5746 Generate an array of token names in the parser file. The name of the
5747 array is @code{yytname}; @code{yytname[@var{i}]} is the name of the
5748 token whose internal Bison token code number is @var{i}. The first
5749 three elements of @code{yytname} correspond to the predefined tokens
5751 @code{"error"}, and @code{"$undefined"}; after these come the symbols
5752 defined in the grammar file.
5754 The name in the table includes all the characters needed to represent
5755 the token in Bison. For single-character literals and literal
5756 strings, this includes the surrounding quoting characters and any
5757 escape sequences. For example, the Bison single-character literal
5758 @code{'+'} corresponds to a three-character name, represented in C as
5759 @code{"'+'"}; and the Bison two-character literal string @code{"\\/"}
5760 corresponds to a five-character name, represented in C as
5763 When you specify @code{%token-table}, Bison also generates macro
5764 definitions for macros @code{YYNTOKENS}, @code{YYNNTS}, and
5765 @code{YYNRULES}, and @code{YYNSTATES}:
5769 The highest token number, plus one.
5771 The number of nonterminal symbols.
5773 The number of grammar rules,
5775 The number of parser states (@pxref{Parser States}).
5779 @deffn {Directive} %verbose
5780 Write an extra output file containing verbose descriptions of the
5781 parser states and what is done for each type of lookahead token in
5782 that state. @xref{Understanding, , Understanding Your Parser}, for more
5786 @deffn {Directive} %yacc
5787 Pretend the option @option{--yacc} was given, i.e., imitate Yacc,
5788 including its naming conventions. @xref{Bison Options}, for more.
5792 @node Multiple Parsers
5793 @section Multiple Parsers in the Same Program
5795 Most programs that use Bison parse only one language and therefore contain
5796 only one Bison parser. But what if you want to parse more than one
5797 language with the same program? Then you need to avoid a name conflict
5798 between different definitions of @code{yyparse}, @code{yylval}, and so on.
5800 The easy way to do this is to use the option @samp{-p @var{prefix}}
5801 (@pxref{Invocation, ,Invoking Bison}). This renames the interface
5802 functions and variables of the Bison parser to start with @var{prefix}
5803 instead of @samp{yy}. You can use this to give each parser distinct
5804 names that do not conflict.
5806 The precise list of symbols renamed is @code{yyparse}, @code{yylex},
5807 @code{yyerror}, @code{yynerrs}, @code{yylval}, @code{yylloc},
5808 @code{yychar} and @code{yydebug}. If you use a push parser,
5809 @code{yypush_parse}, @code{yypull_parse}, @code{yypstate},
5810 @code{yypstate_new} and @code{yypstate_delete} will also be renamed.
5811 For example, if you use @samp{-p c}, the names become @code{cparse},
5812 @code{clex}, and so on.
5814 @strong{All the other variables and macros associated with Bison are not
5815 renamed.} These others are not global; there is no conflict if the same
5816 name is used in different parsers. For example, @code{YYSTYPE} is not
5817 renamed, but defining this in different ways in different parsers causes
5818 no trouble (@pxref{Value Type, ,Data Types of Semantic Values}).
5820 The @samp{-p} option works by adding macro definitions to the beginning
5821 of the parser source file, defining @code{yyparse} as
5822 @code{@var{prefix}parse}, and so on. This effectively substitutes one
5823 name for the other in the entire parser file.
5826 @chapter Parser C-Language Interface
5827 @cindex C-language interface
5830 The Bison parser is actually a C function named @code{yyparse}. Here we
5831 describe the interface conventions of @code{yyparse} and the other
5832 functions that it needs to use.
5834 Keep in mind that the parser uses many C identifiers starting with
5835 @samp{yy} and @samp{YY} for internal purposes. If you use such an
5836 identifier (aside from those in this manual) in an action or in epilogue
5837 in the grammar file, you are likely to run into trouble.
5840 * Parser Function:: How to call @code{yyparse} and what it returns.
5841 * Push Parser Function:: How to call @code{yypush_parse} and what it returns.
5842 * Pull Parser Function:: How to call @code{yypull_parse} and what it returns.
5843 * Parser Create Function:: How to call @code{yypstate_new} and what it returns.
5844 * Parser Delete Function:: How to call @code{yypstate_delete} and what it returns.
5845 * Lexical:: You must supply a function @code{yylex}
5847 * Error Reporting:: You must supply a function @code{yyerror}.
5848 * Action Features:: Special features for use in actions.
5849 * Internationalization:: How to let the parser speak in the user's
5853 @node Parser Function
5854 @section The Parser Function @code{yyparse}
5857 You call the function @code{yyparse} to cause parsing to occur. This
5858 function reads tokens, executes actions, and ultimately returns when it
5859 encounters end-of-input or an unrecoverable syntax error. You can also
5860 write an action which directs @code{yyparse} to return immediately
5861 without reading further.
5864 @deftypefun int yyparse (void)
5865 The value returned by @code{yyparse} is 0 if parsing was successful (return
5866 is due to end-of-input).
5868 The value is 1 if parsing failed because of invalid input, i.e., input
5869 that contains a syntax error or that causes @code{YYABORT} to be
5872 The value is 2 if parsing failed due to memory exhaustion.
5875 In an action, you can cause immediate return from @code{yyparse} by using
5880 Return immediately with value 0 (to report success).
5885 Return immediately with value 1 (to report failure).
5888 If you use a reentrant parser, you can optionally pass additional
5889 parameter information to it in a reentrant way. To do so, use the
5890 declaration @code{%parse-param}:
5892 @deffn {Directive} %parse-param @{@var{argument-declaration}@} @dots{}
5893 @findex %parse-param
5894 Declare that one or more
5895 @var{argument-declaration} are additional @code{yyparse} arguments.
5896 The @var{argument-declaration} is used when declaring
5897 functions or prototypes. The last identifier in
5898 @var{argument-declaration} must be the argument name.
5901 Here's an example. Write this in the parser:
5904 %parse-param @{int *nastiness@} @{int *randomness@}
5908 Then call the parser like this:
5912 int nastiness, randomness;
5913 @dots{} /* @r{Store proper data in @code{nastiness} and @code{randomness}.} */
5914 value = yyparse (&nastiness, &randomness);
5920 In the grammar actions, use expressions like this to refer to the data:
5923 exp: @dots{} @{ @dots{}; *randomness += 1; @dots{} @}
5926 @node Push Parser Function
5927 @section The Push Parser Function @code{yypush_parse}
5928 @findex yypush_parse
5930 (The current push parsing interface is experimental and may evolve.
5931 More user feedback will help to stabilize it.)
5933 You call the function @code{yypush_parse} to parse a single token. This
5934 function is available if either the @samp{%define api.push-pull push} or
5935 @samp{%define api.push-pull both} declaration is used.
5936 @xref{Push Decl, ,A Push Parser}.
5938 @deftypefun int yypush_parse (yypstate *yyps)
5939 The value returned by @code{yypush_parse} is the same as for yyparse with the
5940 following exception. @code{yypush_parse} will return YYPUSH_MORE if more input
5941 is required to finish parsing the grammar.
5944 @node Pull Parser Function
5945 @section The Pull Parser Function @code{yypull_parse}
5946 @findex yypull_parse
5948 (The current push parsing interface is experimental and may evolve.
5949 More user feedback will help to stabilize it.)
5951 You call the function @code{yypull_parse} to parse the rest of the input
5952 stream. This function is available if the @samp{%define api.push-pull both}
5953 declaration is used.
5954 @xref{Push Decl, ,A Push Parser}.
5956 @deftypefun int yypull_parse (yypstate *yyps)
5957 The value returned by @code{yypull_parse} is the same as for @code{yyparse}.
5960 @node Parser Create Function
5961 @section The Parser Create Function @code{yystate_new}
5962 @findex yypstate_new
5964 (The current push parsing interface is experimental and may evolve.
5965 More user feedback will help to stabilize it.)
5967 You call the function @code{yypstate_new} to create a new parser instance.
5968 This function is available if either the @samp{%define api.push-pull push} or
5969 @samp{%define api.push-pull both} declaration is used.
5970 @xref{Push Decl, ,A Push Parser}.
5972 @deftypefun yypstate *yypstate_new (void)
5973 The function will return a valid parser instance if there was memory available
5974 or 0 if no memory was available.
5975 In impure mode, it will also return 0 if a parser instance is currently
5979 @node Parser Delete Function
5980 @section The Parser Delete Function @code{yystate_delete}
5981 @findex yypstate_delete
5983 (The current push parsing interface is experimental and may evolve.
5984 More user feedback will help to stabilize it.)
5986 You call the function @code{yypstate_delete} to delete a parser instance.
5987 function is available if either the @samp{%define api.push-pull push} or
5988 @samp{%define api.push-pull both} declaration is used.
5989 @xref{Push Decl, ,A Push Parser}.
5991 @deftypefun void yypstate_delete (yypstate *yyps)
5992 This function will reclaim the memory associated with a parser instance.
5993 After this call, you should no longer attempt to use the parser instance.
5997 @section The Lexical Analyzer Function @code{yylex}
5999 @cindex lexical analyzer
6001 The @dfn{lexical analyzer} function, @code{yylex}, recognizes tokens from
6002 the input stream and returns them to the parser. Bison does not create
6003 this function automatically; you must write it so that @code{yyparse} can
6004 call it. The function is sometimes referred to as a lexical scanner.
6006 In simple programs, @code{yylex} is often defined at the end of the Bison
6007 grammar file. If @code{yylex} is defined in a separate source file, you
6008 need to arrange for the token-type macro definitions to be available there.
6009 To do this, use the @samp{-d} option when you run Bison, so that it will
6010 write these macro definitions into a separate header file
6011 @file{@var{name}.tab.h} which you can include in the other source files
6012 that need it. @xref{Invocation, ,Invoking Bison}.
6015 * Calling Convention:: How @code{yyparse} calls @code{yylex}.
6016 * Token Values:: How @code{yylex} must return the semantic value
6017 of the token it has read.
6018 * Token Locations:: How @code{yylex} must return the text location
6019 (line number, etc.) of the token, if the
6021 * Pure Calling:: How the calling convention differs in a pure parser
6022 (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}).
6025 @node Calling Convention
6026 @subsection Calling Convention for @code{yylex}
6028 The value that @code{yylex} returns must be the positive numeric code
6029 for the type of token it has just found; a zero or negative value
6030 signifies end-of-input.
6032 When a token is referred to in the grammar rules by a name, that name
6033 in the parser file becomes a C macro whose definition is the proper
6034 numeric code for that token type. So @code{yylex} can use the name
6035 to indicate that type. @xref{Symbols}.
6037 When a token is referred to in the grammar rules by a character literal,
6038 the numeric code for that character is also the code for the token type.
6039 So @code{yylex} can simply return that character code, possibly converted
6040 to @code{unsigned char} to avoid sign-extension. The null character
6041 must not be used this way, because its code is zero and that
6042 signifies end-of-input.
6044 Here is an example showing these things:
6051 if (c == EOF) /* Detect end-of-input. */
6054 if (c == '+' || c == '-')
6055 return c; /* Assume token type for `+' is '+'. */
6057 return INT; /* Return the type of the token. */
6063 This interface has been designed so that the output from the @code{lex}
6064 utility can be used without change as the definition of @code{yylex}.
6066 If the grammar uses literal string tokens, there are two ways that
6067 @code{yylex} can determine the token type codes for them:
6071 If the grammar defines symbolic token names as aliases for the
6072 literal string tokens, @code{yylex} can use these symbolic names like
6073 all others. In this case, the use of the literal string tokens in
6074 the grammar file has no effect on @code{yylex}.
6077 @code{yylex} can find the multicharacter token in the @code{yytname}
6078 table. The index of the token in the table is the token type's code.
6079 The name of a multicharacter token is recorded in @code{yytname} with a
6080 double-quote, the token's characters, and another double-quote. The
6081 token's characters are escaped as necessary to be suitable as input
6084 Here's code for looking up a multicharacter token in @code{yytname},
6085 assuming that the characters of the token are stored in
6086 @code{token_buffer}, and assuming that the token does not contain any
6087 characters like @samp{"} that require escaping.
6090 for (i = 0; i < YYNTOKENS; i++)
6093 && yytname[i][0] == '"'
6094 && ! strncmp (yytname[i] + 1, token_buffer,
6095 strlen (token_buffer))
6096 && yytname[i][strlen (token_buffer) + 1] == '"'
6097 && yytname[i][strlen (token_buffer) + 2] == 0)
6102 The @code{yytname} table is generated only if you use the
6103 @code{%token-table} declaration. @xref{Decl Summary}.
6107 @subsection Semantic Values of Tokens
6110 In an ordinary (nonreentrant) parser, the semantic value of the token must
6111 be stored into the global variable @code{yylval}. When you are using
6112 just one data type for semantic values, @code{yylval} has that type.
6113 Thus, if the type is @code{int} (the default), you might write this in
6119 yylval = value; /* Put value onto Bison stack. */
6120 return INT; /* Return the type of the token. */
6125 When you are using multiple data types, @code{yylval}'s type is a union
6126 made from the @code{%union} declaration (@pxref{Union Decl, ,The
6127 Collection of Value Types}). So when you store a token's value, you
6128 must use the proper member of the union. If the @code{%union}
6129 declaration looks like this:
6142 then the code in @code{yylex} might look like this:
6147 yylval.intval = value; /* Put value onto Bison stack. */
6148 return INT; /* Return the type of the token. */
6153 @node Token Locations
6154 @subsection Textual Locations of Tokens
6157 If you are using the @samp{@@@var{n}}-feature (@pxref{Locations, ,
6158 Tracking Locations}) in actions to keep track of the textual locations
6159 of tokens and groupings, then you must provide this information in
6160 @code{yylex}. The function @code{yyparse} expects to find the textual
6161 location of a token just parsed in the global variable @code{yylloc}.
6162 So @code{yylex} must store the proper data in that variable.
6164 By default, the value of @code{yylloc} is a structure and you need only
6165 initialize the members that are going to be used by the actions. The
6166 four members are called @code{first_line}, @code{first_column},
6167 @code{last_line} and @code{last_column}. Note that the use of this
6168 feature makes the parser noticeably slower.
6171 The data type of @code{yylloc} has the name @code{YYLTYPE}.
6174 @subsection Calling Conventions for Pure Parsers
6176 When you use the Bison declaration @samp{%define api.pure} to request a
6177 pure, reentrant parser, the global communication variables @code{yylval}
6178 and @code{yylloc} cannot be used. (@xref{Pure Decl, ,A Pure (Reentrant)
6179 Parser}.) In such parsers the two global variables are replaced by
6180 pointers passed as arguments to @code{yylex}. You must declare them as
6181 shown here, and pass the information back by storing it through those
6186 yylex (YYSTYPE *lvalp, YYLTYPE *llocp)
6189 *lvalp = value; /* Put value onto Bison stack. */
6190 return INT; /* Return the type of the token. */
6195 If the grammar file does not use the @samp{@@} constructs to refer to
6196 textual locations, then the type @code{YYLTYPE} will not be defined. In
6197 this case, omit the second argument; @code{yylex} will be called with
6200 If you wish to pass additional arguments to @code{yylex}, use
6201 @code{%lex-param} just like @code{%parse-param} (@pxref{Parser
6202 Function}). To pass additional arguments to both @code{yylex} and
6203 @code{yyparse}, use @code{%param}.
6205 @deffn {Directive} %lex-param @{@var{argument-declaration}@} @dots{}
6207 Specify that @var{argument-declaration} are additional @code{yylex} argument
6208 declarations. You may pass one or more such declarations, which is
6209 equivalent to repeating @code{%lex-param}.
6212 @deffn {Directive} %param @{@var{argument-declaration}@} @dots{}
6214 Specify that @var{argument-declaration} are additional
6215 @code{yylex}/@code{yyparse} argument declaration. This is equivalent to
6216 @samp{%lex-param @{@var{argument-declaration}@} @dots{} %parse-param
6217 @{@var{argument-declaration}@} @dots{}}. You may pass one or more
6218 declarations, which is equivalent to repeating @code{%param}.
6224 %lex-param @{scanner_mode *mode@}
6225 %parse-param @{parser_mode *mode@}
6226 %param @{environment_type *env@}
6230 results in the following signature:
6233 int yylex (scanner_mode *mode, environment_type *env);
6234 int yyparse (parser_mode *mode, environment_type *env);
6237 If @samp{%define api.pure} is added:
6240 int yylex (YYSTYPE *lvalp, scanner_mode *mode, environment_type *env);
6241 int yyparse (parser_mode *mode, environment_type *env);
6245 and finally, if both @samp{%define api.pure} and @code{%locations} are used:
6248 int yylex (YYSTYPE *lvalp, YYLTYPE *llocp,
6249 scanner_mode *mode, environment_type *env);
6250 int yyparse (parser_mode *mode, environment_type *env);
6253 @node Error Reporting
6254 @section The Error Reporting Function @code{yyerror}
6255 @cindex error reporting function
6258 @cindex syntax error
6260 The Bison parser detects a @dfn{syntax error} (or @dfn{parse error})
6261 whenever it reads a token which cannot satisfy any syntax rule. An
6262 action in the grammar can also explicitly proclaim an error, using the
6263 macro @code{YYERROR} (@pxref{Action Features, ,Special Features for Use
6266 The Bison parser expects to report the error by calling an error
6267 reporting function named @code{yyerror}, which you must supply. It is
6268 called by @code{yyparse} whenever a syntax error is found, and it
6269 receives one argument. For a syntax error, the string is normally
6270 @w{@code{"syntax error"}}.
6272 @findex %define parse.error
6273 If you invoke @samp{%define parse.error verbose} in the Bison
6274 declarations section (@pxref{Bison Declarations, ,The Bison Declarations
6275 Section}), then Bison provides a more verbose and specific error message
6276 string instead of just plain @w{@code{"syntax error"}}.
6278 The parser can detect one other kind of error: memory exhaustion. This
6279 can happen when the input contains constructions that are very deeply
6280 nested. It isn't likely you will encounter this, since the Bison
6281 parser normally extends its stack automatically up to a very large limit. But
6282 if memory is exhausted, @code{yyparse} calls @code{yyerror} in the usual
6283 fashion, except that the argument string is @w{@code{"memory exhausted"}}.
6285 In some cases diagnostics like @w{@code{"syntax error"}} are
6286 translated automatically from English to some other language before
6287 they are passed to @code{yyerror}. @xref{Internationalization}.
6289 The following definition suffices in simple programs:
6294 yyerror (char const *s)
6298 fprintf (stderr, "%s\n", s);
6303 After @code{yyerror} returns to @code{yyparse}, the latter will attempt
6304 error recovery if you have written suitable error recovery grammar rules
6305 (@pxref{Error Recovery}). If recovery is impossible, @code{yyparse} will
6306 immediately return 1.
6308 Obviously, in location tracking pure parsers, @code{yyerror} should have
6309 an access to the current location.
6310 This is indeed the case for the GLR
6311 parsers, but not for the Yacc parser, for historical reasons. I.e., if
6312 @samp{%locations %define api.pure} is passed then the prototypes for
6316 void yyerror (char const *msg); /* Yacc parsers. */
6317 void yyerror (YYLTYPE *locp, char const *msg); /* GLR parsers. */
6320 If @samp{%parse-param @{int *nastiness@}} is used, then:
6323 void yyerror (int *nastiness, char const *msg); /* Yacc parsers. */
6324 void yyerror (int *nastiness, char const *msg); /* GLR parsers. */
6327 Finally, GLR and Yacc parsers share the same @code{yyerror} calling
6328 convention for absolutely pure parsers, i.e., when the calling
6329 convention of @code{yylex} @emph{and} the calling convention of
6330 @samp{%define api.pure} are pure.
6334 /* Location tracking. */
6338 %lex-param @{int *nastiness@}
6340 %parse-param @{int *nastiness@}
6341 %parse-param @{int *randomness@}
6345 results in the following signatures for all the parser kinds:
6348 int yylex (YYSTYPE *lvalp, YYLTYPE *llocp, int *nastiness);
6349 int yyparse (int *nastiness, int *randomness);
6350 void yyerror (YYLTYPE *locp,
6351 int *nastiness, int *randomness,
6356 The prototypes are only indications of how the code produced by Bison
6357 uses @code{yyerror}. Bison-generated code always ignores the returned
6358 value, so @code{yyerror} can return any type, including @code{void}.
6359 Also, @code{yyerror} can be a variadic function; that is why the
6360 message is always passed last.
6362 Traditionally @code{yyerror} returns an @code{int} that is always
6363 ignored, but this is purely for historical reasons, and @code{void} is
6364 preferable since it more accurately describes the return type for
6368 The variable @code{yynerrs} contains the number of syntax errors
6369 reported so far. Normally this variable is global; but if you
6370 request a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser})
6371 then it is a local variable which only the actions can access.
6373 @node Action Features
6374 @section Special Features for Use in Actions
6375 @cindex summary, action features
6376 @cindex action features summary
6378 Here is a table of Bison constructs, variables and macros that
6379 are useful in actions.
6381 @deffn {Variable} $$
6382 Acts like a variable that contains the semantic value for the
6383 grouping made by the current rule. @xref{Actions}.
6386 @deffn {Variable} $@var{n}
6387 Acts like a variable that contains the semantic value for the
6388 @var{n}th component of the current rule. @xref{Actions}.
6391 @deffn {Variable} $<@var{typealt}>$
6392 Like @code{$$} but specifies alternative @var{typealt} in the union
6393 specified by the @code{%union} declaration. @xref{Action Types, ,Data
6394 Types of Values in Actions}.
6397 @deffn {Variable} $<@var{typealt}>@var{n}
6398 Like @code{$@var{n}} but specifies alternative @var{typealt} in the
6399 union specified by the @code{%union} declaration.
6400 @xref{Action Types, ,Data Types of Values in Actions}.
6403 @deffn {Macro} YYABORT;
6404 Return immediately from @code{yyparse}, indicating failure.
6405 @xref{Parser Function, ,The Parser Function @code{yyparse}}.
6408 @deffn {Macro} YYACCEPT;
6409 Return immediately from @code{yyparse}, indicating success.
6410 @xref{Parser Function, ,The Parser Function @code{yyparse}}.
6413 @deffn {Macro} YYBACKUP (@var{token}, @var{value});
6415 Unshift a token. This macro is allowed only for rules that reduce
6416 a single value, and only when there is no lookahead token.
6417 It is also disallowed in GLR parsers.
6418 It installs a lookahead token with token type @var{token} and
6419 semantic value @var{value}; then it discards the value that was
6420 going to be reduced by this rule.
6422 If the macro is used when it is not valid, such as when there is
6423 a lookahead token already, then it reports a syntax error with
6424 a message @samp{cannot back up} and performs ordinary error
6427 In either case, the rest of the action is not executed.
6430 @deffn {Macro} YYEMPTY
6432 Value stored in @code{yychar} when there is no lookahead token.
6435 @deffn {Macro} YYEOF
6437 Value stored in @code{yychar} when the lookahead is the end of the input
6441 @deffn {Macro} YYERROR;
6443 Cause an immediate syntax error. This statement initiates error
6444 recovery just as if the parser itself had detected an error; however, it
6445 does not call @code{yyerror}, and does not print any message. If you
6446 want to print an error message, call @code{yyerror} explicitly before
6447 the @samp{YYERROR;} statement. @xref{Error Recovery}.
6450 @deffn {Macro} YYRECOVERING
6451 @findex YYRECOVERING
6452 The expression @code{YYRECOVERING ()} yields 1 when the parser
6453 is recovering from a syntax error, and 0 otherwise.
6454 @xref{Error Recovery}.
6457 @deffn {Variable} yychar
6458 Variable containing either the lookahead token, or @code{YYEOF} when the
6459 lookahead is the end of the input stream, or @code{YYEMPTY} when no lookahead
6460 has been performed so the next token is not yet known.
6461 Do not modify @code{yychar} in a deferred semantic action (@pxref{GLR Semantic
6463 @xref{Lookahead, ,Lookahead Tokens}.
6466 @deffn {Macro} yyclearin;
6467 Discard the current lookahead token. This is useful primarily in
6469 Do not invoke @code{yyclearin} in a deferred semantic action (@pxref{GLR
6471 @xref{Error Recovery}.
6474 @deffn {Macro} yyerrok;
6475 Resume generating error messages immediately for subsequent syntax
6476 errors. This is useful primarily in error rules.
6477 @xref{Error Recovery}.
6480 @deffn {Variable} yylloc
6481 Variable containing the lookahead token location when @code{yychar} is not set
6482 to @code{YYEMPTY} or @code{YYEOF}.
6483 Do not modify @code{yylloc} in a deferred semantic action (@pxref{GLR Semantic
6485 @xref{Actions and Locations, ,Actions and Locations}.
6488 @deffn {Variable} yylval
6489 Variable containing the lookahead token semantic value when @code{yychar} is
6490 not set to @code{YYEMPTY} or @code{YYEOF}.
6491 Do not modify @code{yylval} in a deferred semantic action (@pxref{GLR Semantic
6493 @xref{Actions, ,Actions}.
6498 Acts like a structure variable containing information on the textual location
6499 of the grouping made by the current rule. @xref{Locations, ,
6500 Tracking Locations}.
6502 @c Check if those paragraphs are still useful or not.
6506 @c int first_line, last_line;
6507 @c int first_column, last_column;
6511 @c Thus, to get the starting line number of the third component, you would
6512 @c use @samp{@@3.first_line}.
6514 @c In order for the members of this structure to contain valid information,
6515 @c you must make @code{yylex} supply this information about each token.
6516 @c If you need only certain members, then @code{yylex} need only fill in
6519 @c The use of this feature makes the parser noticeably slower.
6522 @deffn {Value} @@@var{n}
6524 Acts like a structure variable containing information on the textual location
6525 of the @var{n}th component of the current rule. @xref{Locations, ,
6526 Tracking Locations}.
6529 @node Internationalization
6530 @section Parser Internationalization
6531 @cindex internationalization
6537 A Bison-generated parser can print diagnostics, including error and
6538 tracing messages. By default, they appear in English. However, Bison
6539 also supports outputting diagnostics in the user's native language. To
6540 make this work, the user should set the usual environment variables.
6541 @xref{Users, , The User's View, gettext, GNU @code{gettext} utilities}.
6542 For example, the shell command @samp{export LC_ALL=fr_CA.UTF-8} might
6543 set the user's locale to French Canadian using the UTF-8
6544 encoding. The exact set of available locales depends on the user's
6547 The maintainer of a package that uses a Bison-generated parser enables
6548 the internationalization of the parser's output through the following
6549 steps. Here we assume a package that uses GNU Autoconf and
6554 @cindex bison-i18n.m4
6555 Into the directory containing the GNU Autoconf macros used
6556 by the package---often called @file{m4}---copy the
6557 @file{bison-i18n.m4} file installed by Bison under
6558 @samp{share/aclocal/bison-i18n.m4} in Bison's installation directory.
6562 cp /usr/local/share/aclocal/bison-i18n.m4 m4/bison-i18n.m4
6567 @vindex BISON_LOCALEDIR
6568 @vindex YYENABLE_NLS
6569 In the top-level @file{configure.ac}, after the @code{AM_GNU_GETTEXT}
6570 invocation, add an invocation of @code{BISON_I18N}. This macro is
6571 defined in the file @file{bison-i18n.m4} that you copied earlier. It
6572 causes @samp{configure} to find the value of the
6573 @code{BISON_LOCALEDIR} variable, and it defines the source-language
6574 symbol @code{YYENABLE_NLS} to enable translations in the
6575 Bison-generated parser.
6578 In the @code{main} function of your program, designate the directory
6579 containing Bison's runtime message catalog, through a call to
6580 @samp{bindtextdomain} with domain name @samp{bison-runtime}.
6584 bindtextdomain ("bison-runtime", BISON_LOCALEDIR);
6587 Typically this appears after any other call @code{bindtextdomain
6588 (PACKAGE, LOCALEDIR)} that your package already has. Here we rely on
6589 @samp{BISON_LOCALEDIR} to be defined as a string through the
6593 In the @file{Makefile.am} that controls the compilation of the @code{main}
6594 function, make @samp{BISON_LOCALEDIR} available as a C preprocessor macro,
6595 either in @samp{DEFS} or in @samp{AM_CPPFLAGS}. For example:
6598 DEFS = @@DEFS@@ -DBISON_LOCALEDIR='"$(BISON_LOCALEDIR)"'
6604 AM_CPPFLAGS = -DBISON_LOCALEDIR='"$(BISON_LOCALEDIR)"'
6608 Finally, invoke the command @command{autoreconf} to generate the build
6614 @chapter The Bison Parser Algorithm
6615 @cindex Bison parser algorithm
6616 @cindex algorithm of parser
6619 @cindex parser stack
6620 @cindex stack, parser
6622 As Bison reads tokens, it pushes them onto a stack along with their
6623 semantic values. The stack is called the @dfn{parser stack}. Pushing a
6624 token is traditionally called @dfn{shifting}.
6626 For example, suppose the infix calculator has read @samp{1 + 5 *}, with a
6627 @samp{3} to come. The stack will have four elements, one for each token
6630 But the stack does not always have an element for each token read. When
6631 the last @var{n} tokens and groupings shifted match the components of a
6632 grammar rule, they can be combined according to that rule. This is called
6633 @dfn{reduction}. Those tokens and groupings are replaced on the stack by a
6634 single grouping whose symbol is the result (left hand side) of that rule.
6635 Running the rule's action is part of the process of reduction, because this
6636 is what computes the semantic value of the resulting grouping.
6638 For example, if the infix calculator's parser stack contains this:
6645 and the next input token is a newline character, then the last three
6646 elements can be reduced to 15 via the rule:
6649 expr: expr '*' expr;
6653 Then the stack contains just these three elements:
6660 At this point, another reduction can be made, resulting in the single value
6661 16. Then the newline token can be shifted.
6663 The parser tries, by shifts and reductions, to reduce the entire input down
6664 to a single grouping whose symbol is the grammar's start-symbol
6665 (@pxref{Language and Grammar, ,Languages and Context-Free Grammars}).
6667 This kind of parser is known in the literature as a bottom-up parser.
6670 * Lookahead:: Parser looks one token ahead when deciding what to do.
6671 * Shift/Reduce:: Conflicts: when either shifting or reduction is valid.
6672 * Precedence:: Operator precedence works by resolving conflicts.
6673 * Contextual Precedence:: When an operator's precedence depends on context.
6674 * Parser States:: The parser is a finite-state-machine with stack.
6675 * Reduce/Reduce:: When two rules are applicable in the same situation.
6676 * Mystery Conflicts:: Reduce/reduce conflicts that look unjustified.
6677 * Generalized LR Parsing:: Parsing arbitrary context-free grammars.
6678 * Memory Management:: What happens when memory is exhausted. How to avoid it.
6682 @section Lookahead Tokens
6683 @cindex lookahead token
6685 The Bison parser does @emph{not} always reduce immediately as soon as the
6686 last @var{n} tokens and groupings match a rule. This is because such a
6687 simple strategy is inadequate to handle most languages. Instead, when a
6688 reduction is possible, the parser sometimes ``looks ahead'' at the next
6689 token in order to decide what to do.
6691 When a token is read, it is not immediately shifted; first it becomes the
6692 @dfn{lookahead token}, which is not on the stack. Now the parser can
6693 perform one or more reductions of tokens and groupings on the stack, while
6694 the lookahead token remains off to the side. When no more reductions
6695 should take place, the lookahead token is shifted onto the stack. This
6696 does not mean that all possible reductions have been done; depending on the
6697 token type of the lookahead token, some rules may choose to delay their
6700 Here is a simple case where lookahead is needed. These three rules define
6701 expressions which contain binary addition operators and postfix unary
6702 factorial operators (@samp{!}), and allow parentheses for grouping.
6719 Suppose that the tokens @w{@samp{1 + 2}} have been read and shifted; what
6720 should be done? If the following token is @samp{)}, then the first three
6721 tokens must be reduced to form an @code{expr}. This is the only valid
6722 course, because shifting the @samp{)} would produce a sequence of symbols
6723 @w{@code{term ')'}}, and no rule allows this.
6725 If the following token is @samp{!}, then it must be shifted immediately so
6726 that @w{@samp{2 !}} can be reduced to make a @code{term}. If instead the
6727 parser were to reduce before shifting, @w{@samp{1 + 2}} would become an
6728 @code{expr}. It would then be impossible to shift the @samp{!} because
6729 doing so would produce on the stack the sequence of symbols @code{expr
6730 '!'}. No rule allows that sequence.
6735 The lookahead token is stored in the variable @code{yychar}.
6736 Its semantic value and location, if any, are stored in the variables
6737 @code{yylval} and @code{yylloc}.
6738 @xref{Action Features, ,Special Features for Use in Actions}.
6741 @section Shift/Reduce Conflicts
6743 @cindex shift/reduce conflicts
6744 @cindex dangling @code{else}
6745 @cindex @code{else}, dangling
6747 Suppose we are parsing a language which has if-then and if-then-else
6748 statements, with a pair of rules like this:
6754 | IF expr THEN stmt ELSE stmt
6760 Here we assume that @code{IF}, @code{THEN} and @code{ELSE} are
6761 terminal symbols for specific keyword tokens.
6763 When the @code{ELSE} token is read and becomes the lookahead token, the
6764 contents of the stack (assuming the input is valid) are just right for
6765 reduction by the first rule. But it is also legitimate to shift the
6766 @code{ELSE}, because that would lead to eventual reduction by the second
6769 This situation, where either a shift or a reduction would be valid, is
6770 called a @dfn{shift/reduce conflict}. Bison is designed to resolve
6771 these conflicts by choosing to shift, unless otherwise directed by
6772 operator precedence declarations. To see the reason for this, let's
6773 contrast it with the other alternative.
6775 Since the parser prefers to shift the @code{ELSE}, the result is to attach
6776 the else-clause to the innermost if-statement, making these two inputs
6780 if x then if y then win (); else lose;
6782 if x then do; if y then win (); else lose; end;
6785 But if the parser chose to reduce when possible rather than shift, the
6786 result would be to attach the else-clause to the outermost if-statement,
6787 making these two inputs equivalent:
6790 if x then if y then win (); else lose;
6792 if x then do; if y then win (); end; else lose;
6795 The conflict exists because the grammar as written is ambiguous: either
6796 parsing of the simple nested if-statement is legitimate. The established
6797 convention is that these ambiguities are resolved by attaching the
6798 else-clause to the innermost if-statement; this is what Bison accomplishes
6799 by choosing to shift rather than reduce. (It would ideally be cleaner to
6800 write an unambiguous grammar, but that is very hard to do in this case.)
6801 This particular ambiguity was first encountered in the specifications of
6802 Algol 60 and is called the ``dangling @code{else}'' ambiguity.
6804 To avoid warnings from Bison about predictable, legitimate shift/reduce
6805 conflicts, use the @code{%expect @var{n}} declaration.
6806 There will be no warning as long as the number of shift/reduce conflicts
6807 is exactly @var{n}, and Bison will report an error if there is a
6809 @xref{Expect Decl, ,Suppressing Conflict Warnings}.
6811 The definition of @code{if_stmt} above is solely to blame for the
6812 conflict, but the conflict does not actually appear without additional
6813 rules. Here is a complete Bison input file that actually manifests the
6818 %token IF THEN ELSE variable
6830 | IF expr THEN stmt ELSE stmt
6839 @section Operator Precedence
6840 @cindex operator precedence
6841 @cindex precedence of operators
6843 Another situation where shift/reduce conflicts appear is in arithmetic
6844 expressions. Here shifting is not always the preferred resolution; the
6845 Bison declarations for operator precedence allow you to specify when to
6846 shift and when to reduce.
6849 * Why Precedence:: An example showing why precedence is needed.
6850 * Using Precedence:: How to specify precedence and associativity.
6851 * Precedence Only:: How to specify precedence only.
6852 * Precedence Examples:: How these features are used in the previous example.
6853 * How Precedence:: How they work.
6856 @node Why Precedence
6857 @subsection When Precedence is Needed
6859 Consider the following ambiguous grammar fragment (ambiguous because the
6860 input @w{@samp{1 - 2 * 3}} can be parsed in two different ways):
6874 Suppose the parser has seen the tokens @samp{1}, @samp{-} and @samp{2};
6875 should it reduce them via the rule for the subtraction operator? It
6876 depends on the next token. Of course, if the next token is @samp{)}, we
6877 must reduce; shifting is invalid because no single rule can reduce the
6878 token sequence @w{@samp{- 2 )}} or anything starting with that. But if
6879 the next token is @samp{*} or @samp{<}, we have a choice: either
6880 shifting or reduction would allow the parse to complete, but with
6883 To decide which one Bison should do, we must consider the results. If
6884 the next operator token @var{op} is shifted, then it must be reduced
6885 first in order to permit another opportunity to reduce the difference.
6886 The result is (in effect) @w{@samp{1 - (2 @var{op} 3)}}. On the other
6887 hand, if the subtraction is reduced before shifting @var{op}, the result
6888 is @w{@samp{(1 - 2) @var{op} 3}}. Clearly, then, the choice of shift or
6889 reduce should depend on the relative precedence of the operators
6890 @samp{-} and @var{op}: @samp{*} should be shifted first, but not
6893 @cindex associativity
6894 What about input such as @w{@samp{1 - 2 - 5}}; should this be
6895 @w{@samp{(1 - 2) - 5}} or should it be @w{@samp{1 - (2 - 5)}}? For most
6896 operators we prefer the former, which is called @dfn{left association}.
6897 The latter alternative, @dfn{right association}, is desirable for
6898 assignment operators. The choice of left or right association is a
6899 matter of whether the parser chooses to shift or reduce when the stack
6900 contains @w{@samp{1 - 2}} and the lookahead token is @samp{-}: shifting
6901 makes right-associativity.
6903 @node Using Precedence
6904 @subsection Specifying Operator Precedence
6910 Bison allows you to specify these choices with the operator precedence
6911 declarations @code{%left} and @code{%right}. Each such declaration
6912 contains a list of tokens, which are operators whose precedence and
6913 associativity is being declared. The @code{%left} declaration makes all
6914 those operators left-associative and the @code{%right} declaration makes
6915 them right-associative. A third alternative is @code{%nonassoc}, which
6916 declares that it is a syntax error to find the same operator twice ``in a
6918 The last alternative, @code{%precedence}, allows to define only
6919 precedence and no associativity at all. As a result, any
6920 associativity-related conflict that remains will be reported as an
6921 compile-time error. The directive @code{%nonassoc} creates run-time
6922 error: using the operator in a associative way is a syntax error. The
6923 directive @code{%precedence} creates compile-time errors: an operator
6924 @emph{can} be involved in an associativity-related conflict, contrary to
6925 what expected the grammar author.
6927 The relative precedence of different operators is controlled by the
6928 order in which they are declared. The first precedence/associativity
6929 declaration in the file declares the operators whose
6930 precedence is lowest, the next such declaration declares the operators
6931 whose precedence is a little higher, and so on.
6933 @node Precedence Only
6934 @subsection Specifying Precedence Only
6937 Since POSIX Yacc defines only @code{%left}, @code{%right}, and
6938 @code{%nonassoc}, which all defines precedence and associativity, little
6939 attention is paid to the fact that precedence cannot be defined without
6940 defining associativity. Yet, sometimes, when trying to solve a
6941 conflict, precedence suffices. In such a case, using @code{%left},
6942 @code{%right}, or @code{%nonassoc} might hide future (associativity
6943 related) conflicts that would remain hidden.
6945 The dangling @code{else} ambiguity (@pxref{Shift/Reduce, , Shift/Reduce
6946 Conflicts}) can be solved explicitly. This shift/reduce conflicts occurs
6947 in the following situation, where the period denotes the current parsing
6951 if @var{e1} then if @var{e2} then @var{s1} . else @var{s2}
6954 The conflict involves the reduction of the rule @samp{IF expr THEN
6955 stmt}, which precedence is by default that of its last token
6956 (@code{THEN}), and the shifting of the token @code{ELSE}. The usual
6957 disambiguation (attach the @code{else} to the closest @code{if}),
6958 shifting must be preferred, i.e., the precedence of @code{ELSE} must be
6959 higher than that of @code{THEN}. But neither is expected to be involved
6960 in an associativity related conflict, which can be specified as follows.
6967 The unary-minus is another typical example where associativity is
6968 usually over-specified, see @ref{Infix Calc, , Infix Notation
6969 Calculator: @code{calc}}. The @code{%left} directive is traditionally
6970 used to declare the precedence of @code{NEG}, which is more than needed
6971 since it also defines its associativity. While this is harmless in the
6972 traditional example, who knows how @code{NEG} might be used in future
6973 evolutions of the grammar@dots{}
6975 @node Precedence Examples
6976 @subsection Precedence Examples
6978 In our example, we would want the following declarations:
6986 In a more complete example, which supports other operators as well, we
6987 would declare them in groups of equal precedence. For example, @code{'+'} is
6988 declared with @code{'-'}:
6991 %left '<' '>' '=' NE LE GE
6997 (Here @code{NE} and so on stand for the operators for ``not equal''
6998 and so on. We assume that these tokens are more than one character long
6999 and therefore are represented by names, not character literals.)
7001 @node How Precedence
7002 @subsection How Precedence Works
7004 The first effect of the precedence declarations is to assign precedence
7005 levels to the terminal symbols declared. The second effect is to assign
7006 precedence levels to certain rules: each rule gets its precedence from
7007 the last terminal symbol mentioned in the components. (You can also
7008 specify explicitly the precedence of a rule. @xref{Contextual
7009 Precedence, ,Context-Dependent Precedence}.)
7011 Finally, the resolution of conflicts works by comparing the precedence
7012 of the rule being considered with that of the lookahead token. If the
7013 token's precedence is higher, the choice is to shift. If the rule's
7014 precedence is higher, the choice is to reduce. If they have equal
7015 precedence, the choice is made based on the associativity of that
7016 precedence level. The verbose output file made by @samp{-v}
7017 (@pxref{Invocation, ,Invoking Bison}) says how each conflict was
7020 Not all rules and not all tokens have precedence. If either the rule or
7021 the lookahead token has no precedence, then the default is to shift.
7023 @node Contextual Precedence
7024 @section Context-Dependent Precedence
7025 @cindex context-dependent precedence
7026 @cindex unary operator precedence
7027 @cindex precedence, context-dependent
7028 @cindex precedence, unary operator
7031 Often the precedence of an operator depends on the context. This sounds
7032 outlandish at first, but it is really very common. For example, a minus
7033 sign typically has a very high precedence as a unary operator, and a
7034 somewhat lower precedence (lower than multiplication) as a binary operator.
7036 The Bison precedence declarations
7037 can only be used once for a given token; so a token has
7038 only one precedence declared in this way. For context-dependent
7039 precedence, you need to use an additional mechanism: the @code{%prec}
7042 The @code{%prec} modifier declares the precedence of a particular rule by
7043 specifying a terminal symbol whose precedence should be used for that rule.
7044 It's not necessary for that symbol to appear otherwise in the rule. The
7045 modifier's syntax is:
7048 %prec @var{terminal-symbol}
7052 and it is written after the components of the rule. Its effect is to
7053 assign the rule the precedence of @var{terminal-symbol}, overriding
7054 the precedence that would be deduced for it in the ordinary way. The
7055 altered rule precedence then affects how conflicts involving that rule
7056 are resolved (@pxref{Precedence, ,Operator Precedence}).
7058 Here is how @code{%prec} solves the problem of unary minus. First, declare
7059 a precedence for a fictitious terminal symbol named @code{UMINUS}. There
7060 are no tokens of this type, but the symbol serves to stand for its
7070 Now the precedence of @code{UMINUS} can be used in specific rules:
7077 | '-' exp %prec UMINUS
7082 If you forget to append @code{%prec UMINUS} to the rule for unary
7083 minus, Bison silently assumes that minus has its usual precedence.
7084 This kind of problem can be tricky to debug, since one typically
7085 discovers the mistake only by testing the code.
7087 The @code{%no-default-prec;} declaration makes it easier to discover
7088 this kind of problem systematically. It causes rules that lack a
7089 @code{%prec} modifier to have no precedence, even if the last terminal
7090 symbol mentioned in their components has a declared precedence.
7092 If @code{%no-default-prec;} is in effect, you must specify @code{%prec}
7093 for all rules that participate in precedence conflict resolution.
7094 Then you will see any shift/reduce conflict until you tell Bison how
7095 to resolve it, either by changing your grammar or by adding an
7096 explicit precedence. This will probably add declarations to the
7097 grammar, but it helps to protect against incorrect rule precedences.
7099 The effect of @code{%no-default-prec;} can be reversed by giving
7100 @code{%default-prec;}, which is the default.
7104 @section Parser States
7105 @cindex finite-state machine
7106 @cindex parser state
7107 @cindex state (of parser)
7109 The function @code{yyparse} is implemented using a finite-state machine.
7110 The values pushed on the parser stack are not simply token type codes; they
7111 represent the entire sequence of terminal and nonterminal symbols at or
7112 near the top of the stack. The current state collects all the information
7113 about previous input which is relevant to deciding what to do next.
7115 Each time a lookahead token is read, the current parser state together
7116 with the type of lookahead token are looked up in a table. This table
7117 entry can say, ``Shift the lookahead token.'' In this case, it also
7118 specifies the new parser state, which is pushed onto the top of the
7119 parser stack. Or it can say, ``Reduce using rule number @var{n}.''
7120 This means that a certain number of tokens or groupings are taken off
7121 the top of the stack, and replaced by one grouping. In other words,
7122 that number of states are popped from the stack, and one new state is
7125 There is one other alternative: the table can say that the lookahead token
7126 is erroneous in the current state. This causes error processing to begin
7127 (@pxref{Error Recovery}).
7130 @section Reduce/Reduce Conflicts
7131 @cindex reduce/reduce conflict
7132 @cindex conflicts, reduce/reduce
7134 A reduce/reduce conflict occurs if there are two or more rules that apply
7135 to the same sequence of input. This usually indicates a serious error
7138 For example, here is an erroneous attempt to define a sequence
7139 of zero or more @code{word} groupings.
7142 sequence: /* empty */
7143 @{ printf ("empty sequence\n"); @}
7146 @{ printf ("added word %s\n", $2); @}
7149 maybeword: /* empty */
7150 @{ printf ("empty maybeword\n"); @}
7152 @{ printf ("single word %s\n", $1); @}
7157 The error is an ambiguity: there is more than one way to parse a single
7158 @code{word} into a @code{sequence}. It could be reduced to a
7159 @code{maybeword} and then into a @code{sequence} via the second rule.
7160 Alternatively, nothing-at-all could be reduced into a @code{sequence}
7161 via the first rule, and this could be combined with the @code{word}
7162 using the third rule for @code{sequence}.
7164 There is also more than one way to reduce nothing-at-all into a
7165 @code{sequence}. This can be done directly via the first rule,
7166 or indirectly via @code{maybeword} and then the second rule.
7168 You might think that this is a distinction without a difference, because it
7169 does not change whether any particular input is valid or not. But it does
7170 affect which actions are run. One parsing order runs the second rule's
7171 action; the other runs the first rule's action and the third rule's action.
7172 In this example, the output of the program changes.
7174 Bison resolves a reduce/reduce conflict by choosing to use the rule that
7175 appears first in the grammar, but it is very risky to rely on this. Every
7176 reduce/reduce conflict must be studied and usually eliminated. Here is the
7177 proper way to define @code{sequence}:
7180 sequence: /* empty */
7181 @{ printf ("empty sequence\n"); @}
7183 @{ printf ("added word %s\n", $2); @}
7187 Here is another common error that yields a reduce/reduce conflict:
7190 sequence: /* empty */
7192 | sequence redirects
7199 redirects:/* empty */
7200 | redirects redirect
7205 The intention here is to define a sequence which can contain either
7206 @code{word} or @code{redirect} groupings. The individual definitions of
7207 @code{sequence}, @code{words} and @code{redirects} are error-free, but the
7208 three together make a subtle ambiguity: even an empty input can be parsed
7209 in infinitely many ways!
7211 Consider: nothing-at-all could be a @code{words}. Or it could be two
7212 @code{words} in a row, or three, or any number. It could equally well be a
7213 @code{redirects}, or two, or any number. Or it could be a @code{words}
7214 followed by three @code{redirects} and another @code{words}. And so on.
7216 Here are two ways to correct these rules. First, to make it a single level
7220 sequence: /* empty */
7226 Second, to prevent either a @code{words} or a @code{redirects}
7230 sequence: /* empty */
7232 | sequence redirects
7240 | redirects redirect
7244 @node Mystery Conflicts
7245 @section Mysterious Reduce/Reduce Conflicts
7247 Sometimes reduce/reduce conflicts can occur that don't look warranted.
7255 def: param_spec return_spec ','
7259 | name_list ':' type
7277 | name ',' name_list
7282 It would seem that this grammar can be parsed with only a single token
7283 of lookahead: when a @code{param_spec} is being read, an @code{ID} is
7284 a @code{name} if a comma or colon follows, or a @code{type} if another
7285 @code{ID} follows. In other words, this grammar is LR(1).
7289 However, for historical reasons, Bison cannot by default handle all
7291 In this grammar, two contexts, that after an @code{ID} at the beginning
7292 of a @code{param_spec} and likewise at the beginning of a
7293 @code{return_spec}, are similar enough that Bison assumes they are the
7295 They appear similar because the same set of rules would be
7296 active---the rule for reducing to a @code{name} and that for reducing to
7297 a @code{type}. Bison is unable to determine at that stage of processing
7298 that the rules would require different lookahead tokens in the two
7299 contexts, so it makes a single parser state for them both. Combining
7300 the two contexts causes a conflict later. In parser terminology, this
7301 occurrence means that the grammar is not LALR(1).
7303 For many practical grammars (specifically those that fall into the
7304 non-LR(1) class), the limitations of LALR(1) result in
7305 difficulties beyond just mysterious reduce/reduce conflicts.
7306 The best way to fix all these problems is to select a different parser
7307 table generation algorithm.
7308 Either IELR(1) or canonical LR(1) would suffice, but
7309 the former is more efficient and easier to debug during development.
7310 @xref{Decl Summary,,lr.type}, for details.
7311 (Bison's IELR(1) and canonical LR(1) implementations
7313 More user feedback will help to stabilize them.)
7315 If you instead wish to work around LALR(1)'s limitations, you
7316 can often fix a mysterious conflict by identifying the two parser states
7317 that are being confused, and adding something to make them look
7318 distinct. In the above example, adding one rule to
7319 @code{return_spec} as follows makes the problem go away:
7330 /* This rule is never used. */
7336 This corrects the problem because it introduces the possibility of an
7337 additional active rule in the context after the @code{ID} at the beginning of
7338 @code{return_spec}. This rule is not active in the corresponding context
7339 in a @code{param_spec}, so the two contexts receive distinct parser states.
7340 As long as the token @code{BOGUS} is never generated by @code{yylex},
7341 the added rule cannot alter the way actual input is parsed.
7343 In this particular example, there is another way to solve the problem:
7344 rewrite the rule for @code{return_spec} to use @code{ID} directly
7345 instead of via @code{name}. This also causes the two confusing
7346 contexts to have different sets of active rules, because the one for
7347 @code{return_spec} activates the altered rule for @code{return_spec}
7348 rather than the one for @code{name}.
7353 | name_list ':' type
7361 For a more detailed exposition of LALR(1) parsers and parser
7362 generators, please see:
7363 Frank DeRemer and Thomas Pennello, Efficient Computation of
7364 LALR(1) Look-Ahead Sets, @cite{ACM Transactions on
7365 Programming Languages and Systems}, Vol.@: 4, No.@: 4 (October 1982),
7366 pp.@: 615--649 @uref{http://doi.acm.org/10.1145/69622.357187}.
7368 @node Generalized LR Parsing
7369 @section Generalized LR (GLR) Parsing
7371 @cindex generalized LR (GLR) parsing
7372 @cindex ambiguous grammars
7373 @cindex nondeterministic parsing
7375 Bison produces @emph{deterministic} parsers that choose uniquely
7376 when to reduce and which reduction to apply
7377 based on a summary of the preceding input and on one extra token of lookahead.
7378 As a result, normal Bison handles a proper subset of the family of
7379 context-free languages.
7380 Ambiguous grammars, since they have strings with more than one possible
7381 sequence of reductions cannot have deterministic parsers in this sense.
7382 The same is true of languages that require more than one symbol of
7383 lookahead, since the parser lacks the information necessary to make a
7384 decision at the point it must be made in a shift-reduce parser.
7385 Finally, as previously mentioned (@pxref{Mystery Conflicts}),
7386 there are languages where Bison's default choice of how to
7387 summarize the input seen so far loses necessary information.
7389 When you use the @samp{%glr-parser} declaration in your grammar file,
7390 Bison generates a parser that uses a different algorithm, called
7391 Generalized LR (or GLR). A Bison GLR
7392 parser uses the same basic
7393 algorithm for parsing as an ordinary Bison parser, but behaves
7394 differently in cases where there is a shift-reduce conflict that has not
7395 been resolved by precedence rules (@pxref{Precedence}) or a
7396 reduce-reduce conflict. When a GLR parser encounters such a
7398 effectively @emph{splits} into a several parsers, one for each possible
7399 shift or reduction. These parsers then proceed as usual, consuming
7400 tokens in lock-step. Some of the stacks may encounter other conflicts
7401 and split further, with the result that instead of a sequence of states,
7402 a Bison GLR parsing stack is what is in effect a tree of states.
7404 In effect, each stack represents a guess as to what the proper parse
7405 is. Additional input may indicate that a guess was wrong, in which case
7406 the appropriate stack silently disappears. Otherwise, the semantics
7407 actions generated in each stack are saved, rather than being executed
7408 immediately. When a stack disappears, its saved semantic actions never
7409 get executed. When a reduction causes two stacks to become equivalent,
7410 their sets of semantic actions are both saved with the state that
7411 results from the reduction. We say that two stacks are equivalent
7412 when they both represent the same sequence of states,
7413 and each pair of corresponding states represents a
7414 grammar symbol that produces the same segment of the input token
7417 Whenever the parser makes a transition from having multiple
7418 states to having one, it reverts to the normal deterministic parsing
7419 algorithm, after resolving and executing the saved-up actions.
7420 At this transition, some of the states on the stack will have semantic
7421 values that are sets (actually multisets) of possible actions. The
7422 parser tries to pick one of the actions by first finding one whose rule
7423 has the highest dynamic precedence, as set by the @samp{%dprec}
7424 declaration. Otherwise, if the alternative actions are not ordered by
7425 precedence, but there the same merging function is declared for both
7426 rules by the @samp{%merge} declaration,
7427 Bison resolves and evaluates both and then calls the merge function on
7428 the result. Otherwise, it reports an ambiguity.
7430 It is possible to use a data structure for the GLR parsing tree that
7431 permits the processing of any LR(1) grammar in linear time (in the
7432 size of the input), any unambiguous (not necessarily
7434 quadratic worst-case time, and any general (possibly ambiguous)
7435 context-free grammar in cubic worst-case time. However, Bison currently
7436 uses a simpler data structure that requires time proportional to the
7437 length of the input times the maximum number of stacks required for any
7438 prefix of the input. Thus, really ambiguous or nondeterministic
7439 grammars can require exponential time and space to process. Such badly
7440 behaving examples, however, are not generally of practical interest.
7441 Usually, nondeterminism in a grammar is local---the parser is ``in
7442 doubt'' only for a few tokens at a time. Therefore, the current data
7443 structure should generally be adequate. On LR(1) portions of a
7444 grammar, in particular, it is only slightly slower than with the
7445 deterministic LR(1) Bison parser.
7447 For a more detailed exposition of GLR parsers, please see: Elizabeth
7448 Scott, Adrian Johnstone and Shamsa Sadaf Hussain, Tomita-Style
7449 Generalised LR Parsers, Royal Holloway, University of
7450 London, Department of Computer Science, TR-00-12,
7451 @uref{http://www.cs.rhul.ac.uk/research/languages/publications/tomita_style_1.ps},
7454 @node Memory Management
7455 @section Memory Management, and How to Avoid Memory Exhaustion
7456 @cindex memory exhaustion
7457 @cindex memory management
7458 @cindex stack overflow
7459 @cindex parser stack overflow
7460 @cindex overflow of parser stack
7462 The Bison parser stack can run out of memory if too many tokens are shifted and
7463 not reduced. When this happens, the parser function @code{yyparse}
7464 calls @code{yyerror} and then returns 2.
7466 Because Bison parsers have growing stacks, hitting the upper limit
7467 usually results from using a right recursion instead of a left
7468 recursion, @xref{Recursion, ,Recursive Rules}.
7471 By defining the macro @code{YYMAXDEPTH}, you can control how deep the
7472 parser stack can become before memory is exhausted. Define the
7473 macro with a value that is an integer. This value is the maximum number
7474 of tokens that can be shifted (and not reduced) before overflow.
7476 The stack space allowed is not necessarily allocated. If you specify a
7477 large value for @code{YYMAXDEPTH}, the parser normally allocates a small
7478 stack at first, and then makes it bigger by stages as needed. This
7479 increasing allocation happens automatically and silently. Therefore,
7480 you do not need to make @code{YYMAXDEPTH} painfully small merely to save
7481 space for ordinary inputs that do not need much stack.
7483 However, do not allow @code{YYMAXDEPTH} to be a value so large that
7484 arithmetic overflow could occur when calculating the size of the stack
7485 space. Also, do not allow @code{YYMAXDEPTH} to be less than
7488 @cindex default stack limit
7489 The default value of @code{YYMAXDEPTH}, if you do not define it, is
7493 You can control how much stack is allocated initially by defining the
7494 macro @code{YYINITDEPTH} to a positive integer. For the deterministic
7495 parser in C, this value must be a compile-time constant
7496 unless you are assuming C99 or some other target language or compiler
7497 that allows variable-length arrays. The default is 200.
7499 Do not allow @code{YYINITDEPTH} to be greater than @code{YYMAXDEPTH}.
7501 You can generate a deterministic parser containing C++ user code from
7502 the default (C) skeleton, as well as from the C++ skeleton
7503 (@pxref{C++ Parsers}). However, if you do use the default skeleton
7504 and want to allow the parsing stack to grow,
7505 be careful not to use semantic types or location types that require
7506 non-trivial copy constructors.
7507 The C skeleton bypasses these constructors when copying data to
7510 @node Error Recovery
7511 @chapter Error Recovery
7512 @cindex error recovery
7513 @cindex recovery from errors
7515 It is not usually acceptable to have a program terminate on a syntax
7516 error. For example, a compiler should recover sufficiently to parse the
7517 rest of the input file and check it for errors; a calculator should accept
7520 In a simple interactive command parser where each input is one line, it may
7521 be sufficient to allow @code{yyparse} to return 1 on error and have the
7522 caller ignore the rest of the input line when that happens (and then call
7523 @code{yyparse} again). But this is inadequate for a compiler, because it
7524 forgets all the syntactic context leading up to the error. A syntax error
7525 deep within a function in the compiler input should not cause the compiler
7526 to treat the following line like the beginning of a source file.
7529 You can define how to recover from a syntax error by writing rules to
7530 recognize the special token @code{error}. This is a terminal symbol that
7531 is always defined (you need not declare it) and reserved for error
7532 handling. The Bison parser generates an @code{error} token whenever a
7533 syntax error happens; if you have provided a rule to recognize this token
7534 in the current context, the parse can continue.
7539 stmnts: /* empty string */
7545 The fourth rule in this example says that an error followed by a newline
7546 makes a valid addition to any @code{stmnts}.
7548 What happens if a syntax error occurs in the middle of an @code{exp}? The
7549 error recovery rule, interpreted strictly, applies to the precise sequence
7550 of a @code{stmnts}, an @code{error} and a newline. If an error occurs in
7551 the middle of an @code{exp}, there will probably be some additional tokens
7552 and subexpressions on the stack after the last @code{stmnts}, and there
7553 will be tokens to read before the next newline. So the rule is not
7554 applicable in the ordinary way.
7556 But Bison can force the situation to fit the rule, by discarding part of
7557 the semantic context and part of the input. First it discards states
7558 and objects from the stack until it gets back to a state in which the
7559 @code{error} token is acceptable. (This means that the subexpressions
7560 already parsed are discarded, back to the last complete @code{stmnts}.)
7561 At this point the @code{error} token can be shifted. Then, if the old
7562 lookahead token is not acceptable to be shifted next, the parser reads
7563 tokens and discards them until it finds a token which is acceptable. In
7564 this example, Bison reads and discards input until the next newline so
7565 that the fourth rule can apply. Note that discarded symbols are
7566 possible sources of memory leaks, see @ref{Destructor Decl, , Freeing
7567 Discarded Symbols}, for a means to reclaim this memory.
7569 The choice of error rules in the grammar is a choice of strategies for
7570 error recovery. A simple and useful strategy is simply to skip the rest of
7571 the current input line or current statement if an error is detected:
7574 stmnt: error ';' /* On error, skip until ';' is read. */
7577 It is also useful to recover to the matching close-delimiter of an
7578 opening-delimiter that has already been parsed. Otherwise the
7579 close-delimiter will probably appear to be unmatched, and generate another,
7580 spurious error message:
7583 primary: '(' expr ')'
7589 Error recovery strategies are necessarily guesses. When they guess wrong,
7590 one syntax error often leads to another. In the above example, the error
7591 recovery rule guesses that an error is due to bad input within one
7592 @code{stmnt}. Suppose that instead a spurious semicolon is inserted in the
7593 middle of a valid @code{stmnt}. After the error recovery rule recovers
7594 from the first error, another syntax error will be found straightaway,
7595 since the text following the spurious semicolon is also an invalid
7598 To prevent an outpouring of error messages, the parser will output no error
7599 message for another syntax error that happens shortly after the first; only
7600 after three consecutive input tokens have been successfully shifted will
7601 error messages resume.
7603 Note that rules which accept the @code{error} token may have actions, just
7604 as any other rules can.
7607 You can make error messages resume immediately by using the macro
7608 @code{yyerrok} in an action. If you do this in the error rule's action, no
7609 error messages will be suppressed. This macro requires no arguments;
7610 @samp{yyerrok;} is a valid C statement.
7613 The previous lookahead token is reanalyzed immediately after an error. If
7614 this is unacceptable, then the macro @code{yyclearin} may be used to clear
7615 this token. Write the statement @samp{yyclearin;} in the error rule's
7617 @xref{Action Features, ,Special Features for Use in Actions}.
7619 For example, suppose that on a syntax error, an error handling routine is
7620 called that advances the input stream to some point where parsing should
7621 once again commence. The next symbol returned by the lexical scanner is
7622 probably correct. The previous lookahead token ought to be discarded
7623 with @samp{yyclearin;}.
7625 @vindex YYRECOVERING
7626 The expression @code{YYRECOVERING ()} yields 1 when the parser
7627 is recovering from a syntax error, and 0 otherwise.
7628 Syntax error diagnostics are suppressed while recovering from a syntax
7631 @node Context Dependency
7632 @chapter Handling Context Dependencies
7634 The Bison paradigm is to parse tokens first, then group them into larger
7635 syntactic units. In many languages, the meaning of a token is affected by
7636 its context. Although this violates the Bison paradigm, certain techniques
7637 (known as @dfn{kludges}) may enable you to write Bison parsers for such
7641 * Semantic Tokens:: Token parsing can depend on the semantic context.
7642 * Lexical Tie-ins:: Token parsing can depend on the syntactic context.
7643 * Tie-in Recovery:: Lexical tie-ins have implications for how
7644 error recovery rules must be written.
7647 (Actually, ``kludge'' means any technique that gets its job done but is
7648 neither clean nor robust.)
7650 @node Semantic Tokens
7651 @section Semantic Info in Token Types
7653 The C language has a context dependency: the way an identifier is used
7654 depends on what its current meaning is. For example, consider this:
7660 This looks like a function call statement, but if @code{foo} is a typedef
7661 name, then this is actually a declaration of @code{x}. How can a Bison
7662 parser for C decide how to parse this input?
7664 The method used in GNU C is to have two different token types,
7665 @code{IDENTIFIER} and @code{TYPENAME}. When @code{yylex} finds an
7666 identifier, it looks up the current declaration of the identifier in order
7667 to decide which token type to return: @code{TYPENAME} if the identifier is
7668 declared as a typedef, @code{IDENTIFIER} otherwise.
7670 The grammar rules can then express the context dependency by the choice of
7671 token type to recognize. @code{IDENTIFIER} is accepted as an expression,
7672 but @code{TYPENAME} is not. @code{TYPENAME} can start a declaration, but
7673 @code{IDENTIFIER} cannot. In contexts where the meaning of the identifier
7674 is @emph{not} significant, such as in declarations that can shadow a
7675 typedef name, either @code{TYPENAME} or @code{IDENTIFIER} is
7676 accepted---there is one rule for each of the two token types.
7678 This technique is simple to use if the decision of which kinds of
7679 identifiers to allow is made at a place close to where the identifier is
7680 parsed. But in C this is not always so: C allows a declaration to
7681 redeclare a typedef name provided an explicit type has been specified
7685 typedef int foo, bar;
7688 static bar (bar); /* @r{redeclare @code{bar} as static variable} */
7689 extern foo foo (foo); /* @r{redeclare @code{foo} as function} */
7694 Unfortunately, the name being declared is separated from the declaration
7695 construct itself by a complicated syntactic structure---the ``declarator''.
7697 As a result, part of the Bison parser for C needs to be duplicated, with
7698 all the nonterminal names changed: once for parsing a declaration in
7699 which a typedef name can be redefined, and once for parsing a
7700 declaration in which that can't be done. Here is a part of the
7701 duplication, with actions omitted for brevity:
7705 declarator maybeasm '='
7707 | declarator maybeasm
7711 notype_declarator maybeasm '='
7713 | notype_declarator maybeasm
7718 Here @code{initdcl} can redeclare a typedef name, but @code{notype_initdcl}
7719 cannot. The distinction between @code{declarator} and
7720 @code{notype_declarator} is the same sort of thing.
7722 There is some similarity between this technique and a lexical tie-in
7723 (described next), in that information which alters the lexical analysis is
7724 changed during parsing by other parts of the program. The difference is
7725 here the information is global, and is used for other purposes in the
7726 program. A true lexical tie-in has a special-purpose flag controlled by
7727 the syntactic context.
7729 @node Lexical Tie-ins
7730 @section Lexical Tie-ins
7731 @cindex lexical tie-in
7733 One way to handle context-dependency is the @dfn{lexical tie-in}: a flag
7734 which is set by Bison actions, whose purpose is to alter the way tokens are
7737 For example, suppose we have a language vaguely like C, but with a special
7738 construct @samp{hex (@var{hex-expr})}. After the keyword @code{hex} comes
7739 an expression in parentheses in which all integers are hexadecimal. In
7740 particular, the token @samp{a1b} must be treated as an integer rather than
7741 as an identifier if it appears in that context. Here is how you can do it:
7748 void yyerror (char const *);
7762 @{ $$ = make_sum ($1, $3); @}
7776 Here we assume that @code{yylex} looks at the value of @code{hexflag}; when
7777 it is nonzero, all integers are parsed in hexadecimal, and tokens starting
7778 with letters are parsed as integers if possible.
7780 The declaration of @code{hexflag} shown in the prologue of the parser file
7781 is needed to make it accessible to the actions (@pxref{Prologue, ,The Prologue}).
7782 You must also write the code in @code{yylex} to obey the flag.
7784 @node Tie-in Recovery
7785 @section Lexical Tie-ins and Error Recovery
7787 Lexical tie-ins make strict demands on any error recovery rules you have.
7788 @xref{Error Recovery}.
7790 The reason for this is that the purpose of an error recovery rule is to
7791 abort the parsing of one construct and resume in some larger construct.
7792 For example, in C-like languages, a typical error recovery rule is to skip
7793 tokens until the next semicolon, and then start a new statement, like this:
7797 | IF '(' expr ')' stmt @{ @dots{} @}
7804 If there is a syntax error in the middle of a @samp{hex (@var{expr})}
7805 construct, this error rule will apply, and then the action for the
7806 completed @samp{hex (@var{expr})} will never run. So @code{hexflag} would
7807 remain set for the entire rest of the input, or until the next @code{hex}
7808 keyword, causing identifiers to be misinterpreted as integers.
7810 To avoid this problem the error recovery rule itself clears @code{hexflag}.
7812 There may also be an error recovery rule that works within expressions.
7813 For example, there could be a rule which applies within parentheses
7814 and skips to the close-parenthesis:
7826 If this rule acts within the @code{hex} construct, it is not going to abort
7827 that construct (since it applies to an inner level of parentheses within
7828 the construct). Therefore, it should not clear the flag: the rest of
7829 the @code{hex} construct should be parsed with the flag still in effect.
7831 What if there is an error recovery rule which might abort out of the
7832 @code{hex} construct or might not, depending on circumstances? There is no
7833 way you can write the action to determine whether a @code{hex} construct is
7834 being aborted or not. So if you are using a lexical tie-in, you had better
7835 make sure your error recovery rules are not of this kind. Each rule must
7836 be such that you can be sure that it always will, or always won't, have to
7839 @c ================================================== Debugging Your Parser
7842 @chapter Debugging Your Parser
7844 Developing a parser can be a challenge, especially if you don't
7845 understand the algorithm (@pxref{Algorithm, ,The Bison Parser
7846 Algorithm}). Even so, sometimes a detailed description of the automaton
7847 can help (@pxref{Understanding, , Understanding Your Parser}), or
7848 tracing the execution of the parser can give some insight on why it
7849 behaves improperly (@pxref{Tracing, , Tracing Your Parser}).
7852 * Understanding:: Understanding the structure of your parser.
7853 * Tracing:: Tracing the execution of your parser.
7857 @section Understanding Your Parser
7859 As documented elsewhere (@pxref{Algorithm, ,The Bison Parser Algorithm})
7860 Bison parsers are @dfn{shift/reduce automata}. In some cases (much more
7861 frequent than one would hope), looking at this automaton is required to
7862 tune or simply fix a parser. Bison provides two different
7863 representation of it, either textually or graphically (as a DOT file).
7865 The textual file is generated when the options @option{--report} or
7866 @option{--verbose} are specified, see @xref{Invocation, , Invoking
7867 Bison}. Its name is made by removing @samp{.tab.c} or @samp{.c} from
7868 the parser output file name, and adding @samp{.output} instead.
7869 Therefore, if the input file is @file{foo.y}, then the parser file is
7870 called @file{foo.tab.c} by default. As a consequence, the verbose
7871 output file is called @file{foo.output}.
7873 The following grammar file, @file{calc.y}, will be used in the sequel:
7890 @command{bison} reports:
7893 calc.y: warning: 1 nonterminal useless in grammar
7894 calc.y: warning: 1 rule useless in grammar
7895 calc.y:11.1-7: warning: nonterminal useless in grammar: useless
7896 calc.y:11.10-12: warning: rule useless in grammar: useless: STR
7897 calc.y: conflicts: 7 shift/reduce
7900 When given @option{--report=state}, in addition to @file{calc.tab.c}, it
7901 creates a file @file{calc.output} with contents detailed below. The
7902 order of the output and the exact presentation might vary, but the
7903 interpretation is the same.
7905 The first section includes details on conflicts that were solved thanks
7906 to precedence and/or associativity:
7909 Conflict in state 8 between rule 2 and token '+' resolved as reduce.
7910 Conflict in state 8 between rule 2 and token '-' resolved as reduce.
7911 Conflict in state 8 between rule 2 and token '*' resolved as shift.
7916 The next section lists states that still have conflicts.
7919 State 8 conflicts: 1 shift/reduce
7920 State 9 conflicts: 1 shift/reduce
7921 State 10 conflicts: 1 shift/reduce
7922 State 11 conflicts: 4 shift/reduce
7926 @cindex token, useless
7927 @cindex useless token
7928 @cindex nonterminal, useless
7929 @cindex useless nonterminal
7930 @cindex rule, useless
7931 @cindex useless rule
7932 The next section reports useless tokens, nonterminal and rules. Useless
7933 nonterminals and rules are removed in order to produce a smaller parser,
7934 but useless tokens are preserved, since they might be used by the
7935 scanner (note the difference between ``useless'' and ``unused''
7939 Nonterminals useless in grammar:
7942 Terminals unused in grammar:
7945 Rules useless in grammar:
7950 The next section reproduces the exact grammar that Bison used:
7956 0 5 $accept -> exp $end
7957 1 5 exp -> exp '+' exp
7958 2 6 exp -> exp '-' exp
7959 3 7 exp -> exp '*' exp
7960 4 8 exp -> exp '/' exp
7965 and reports the uses of the symbols:
7968 Terminals, with rules where they appear
7978 Nonterminals, with rules where they appear
7983 on left: 1 2 3 4 5, on right: 0 1 2 3 4
7988 @cindex pointed rule
7989 @cindex rule, pointed
7990 Bison then proceeds onto the automaton itself, describing each state
7991 with it set of @dfn{items}, also known as @dfn{pointed rules}. Each
7992 item is a production rule together with a point (marked by @samp{.})
7993 that the input cursor.
7998 $accept -> . exp $ (rule 0)
8000 NUM shift, and go to state 1
8005 This reads as follows: ``state 0 corresponds to being at the very
8006 beginning of the parsing, in the initial rule, right before the start
8007 symbol (here, @code{exp}). When the parser returns to this state right
8008 after having reduced a rule that produced an @code{exp}, the control
8009 flow jumps to state 2. If there is no such transition on a nonterminal
8010 symbol, and the lookahead is a @code{NUM}, then this token is shifted on
8011 the parse stack, and the control flow jumps to state 1. Any other
8012 lookahead triggers a syntax error.''
8014 @cindex core, item set
8015 @cindex item set core
8016 @cindex kernel, item set
8017 @cindex item set core
8018 Even though the only active rule in state 0 seems to be rule 0, the
8019 report lists @code{NUM} as a lookahead token because @code{NUM} can be
8020 at the beginning of any rule deriving an @code{exp}. By default Bison
8021 reports the so-called @dfn{core} or @dfn{kernel} of the item set, but if
8022 you want to see more detail you can invoke @command{bison} with
8023 @option{--report=itemset} to list all the items, include those that can
8029 $accept -> . exp $ (rule 0)
8030 exp -> . exp '+' exp (rule 1)
8031 exp -> . exp '-' exp (rule 2)
8032 exp -> . exp '*' exp (rule 3)
8033 exp -> . exp '/' exp (rule 4)
8034 exp -> . NUM (rule 5)
8036 NUM shift, and go to state 1
8047 exp -> NUM . (rule 5)
8049 $default reduce using rule 5 (exp)
8053 the rule 5, @samp{exp: NUM;}, is completed. Whatever the lookahead token
8054 (@samp{$default}), the parser will reduce it. If it was coming from
8055 state 0, then, after this reduction it will return to state 0, and will
8056 jump to state 2 (@samp{exp: go to state 2}).
8061 $accept -> exp . $ (rule 0)
8062 exp -> exp . '+' exp (rule 1)
8063 exp -> exp . '-' exp (rule 2)
8064 exp -> exp . '*' exp (rule 3)
8065 exp -> exp . '/' exp (rule 4)
8067 $ shift, and go to state 3
8068 '+' shift, and go to state 4
8069 '-' shift, and go to state 5
8070 '*' shift, and go to state 6
8071 '/' shift, and go to state 7
8075 In state 2, the automaton can only shift a symbol. For instance,
8076 because of the item @samp{exp -> exp . '+' exp}, if the lookahead if
8077 @samp{+}, it will be shifted on the parse stack, and the automaton
8078 control will jump to state 4, corresponding to the item @samp{exp -> exp
8079 '+' . exp}. Since there is no default action, any other token than
8080 those listed above will trigger a syntax error.
8082 @cindex accepting state
8083 The state 3 is named the @dfn{final state}, or the @dfn{accepting
8089 $accept -> exp $ . (rule 0)
8095 the initial rule is completed (the start symbol and the end
8096 of input were read), the parsing exits successfully.
8098 The interpretation of states 4 to 7 is straightforward, and is left to
8104 exp -> exp '+' . exp (rule 1)
8106 NUM shift, and go to state 1
8112 exp -> exp '-' . exp (rule 2)
8114 NUM shift, and go to state 1
8120 exp -> exp '*' . exp (rule 3)
8122 NUM shift, and go to state 1
8128 exp -> exp '/' . exp (rule 4)
8130 NUM shift, and go to state 1
8135 As was announced in beginning of the report, @samp{State 8 conflicts:
8141 exp -> exp . '+' exp (rule 1)
8142 exp -> exp '+' exp . (rule 1)
8143 exp -> exp . '-' exp (rule 2)
8144 exp -> exp . '*' exp (rule 3)
8145 exp -> exp . '/' exp (rule 4)
8147 '*' shift, and go to state 6
8148 '/' shift, and go to state 7
8150 '/' [reduce using rule 1 (exp)]
8151 $default reduce using rule 1 (exp)
8154 Indeed, there are two actions associated to the lookahead @samp{/}:
8155 either shifting (and going to state 7), or reducing rule 1. The
8156 conflict means that either the grammar is ambiguous, or the parser lacks
8157 information to make the right decision. Indeed the grammar is
8158 ambiguous, as, since we did not specify the precedence of @samp{/}, the
8159 sentence @samp{NUM + NUM / NUM} can be parsed as @samp{NUM + (NUM /
8160 NUM)}, which corresponds to shifting @samp{/}, or as @samp{(NUM + NUM) /
8161 NUM}, which corresponds to reducing rule 1.
8163 Because in deterministic parsing a single decision can be made, Bison
8164 arbitrarily chose to disable the reduction, see @ref{Shift/Reduce, ,
8165 Shift/Reduce Conflicts}. Discarded actions are reported in between
8168 Note that all the previous states had a single possible action: either
8169 shifting the next token and going to the corresponding state, or
8170 reducing a single rule. In the other cases, i.e., when shifting
8171 @emph{and} reducing is possible or when @emph{several} reductions are
8172 possible, the lookahead is required to select the action. State 8 is
8173 one such state: if the lookahead is @samp{*} or @samp{/} then the action
8174 is shifting, otherwise the action is reducing rule 1. In other words,
8175 the first two items, corresponding to rule 1, are not eligible when the
8176 lookahead token is @samp{*}, since we specified that @samp{*} has higher
8177 precedence than @samp{+}. More generally, some items are eligible only
8178 with some set of possible lookahead tokens. When run with
8179 @option{--report=lookahead}, Bison specifies these lookahead tokens:
8184 exp -> exp . '+' exp (rule 1)
8185 exp -> exp '+' exp . [$, '+', '-', '/'] (rule 1)
8186 exp -> exp . '-' exp (rule 2)
8187 exp -> exp . '*' exp (rule 3)
8188 exp -> exp . '/' exp (rule 4)
8190 '*' shift, and go to state 6
8191 '/' shift, and go to state 7
8193 '/' [reduce using rule 1 (exp)]
8194 $default reduce using rule 1 (exp)
8197 The remaining states are similar:
8202 exp -> exp . '+' exp (rule 1)
8203 exp -> exp . '-' exp (rule 2)
8204 exp -> exp '-' exp . (rule 2)
8205 exp -> exp . '*' exp (rule 3)
8206 exp -> exp . '/' exp (rule 4)
8208 '*' shift, and go to state 6
8209 '/' shift, and go to state 7
8211 '/' [reduce using rule 2 (exp)]
8212 $default reduce using rule 2 (exp)
8216 exp -> exp . '+' exp (rule 1)
8217 exp -> exp . '-' exp (rule 2)
8218 exp -> exp . '*' exp (rule 3)
8219 exp -> exp '*' exp . (rule 3)
8220 exp -> exp . '/' exp (rule 4)
8222 '/' shift, and go to state 7
8224 '/' [reduce using rule 3 (exp)]
8225 $default reduce using rule 3 (exp)
8229 exp -> exp . '+' exp (rule 1)
8230 exp -> exp . '-' exp (rule 2)
8231 exp -> exp . '*' exp (rule 3)
8232 exp -> exp . '/' exp (rule 4)
8233 exp -> exp '/' exp . (rule 4)
8235 '+' shift, and go to state 4
8236 '-' shift, and go to state 5
8237 '*' shift, and go to state 6
8238 '/' shift, and go to state 7
8240 '+' [reduce using rule 4 (exp)]
8241 '-' [reduce using rule 4 (exp)]
8242 '*' [reduce using rule 4 (exp)]
8243 '/' [reduce using rule 4 (exp)]
8244 $default reduce using rule 4 (exp)
8248 Observe that state 11 contains conflicts not only due to the lack of
8249 precedence of @samp{/} with respect to @samp{+}, @samp{-}, and
8250 @samp{*}, but also because the
8251 associativity of @samp{/} is not specified.
8255 @section Tracing Your Parser
8258 @cindex tracing the parser
8260 If a Bison grammar compiles properly but doesn't do what you want when it
8261 runs, the @code{yydebug} parser-trace feature can help you figure out why.
8263 There are several means to enable compilation of trace facilities:
8266 @item the macro @code{YYDEBUG}
8268 Define the macro @code{YYDEBUG} to a nonzero value when you compile the
8269 parser. This is compliant with POSIX Yacc. You could use
8270 @samp{-DYYDEBUG=1} as a compiler option or you could put @samp{#define
8271 YYDEBUG 1} in the prologue of the grammar file (@pxref{Prologue, , The
8274 @item the option @option{-t}, @option{--debug}
8275 Use the @samp{-t} option when you run Bison (@pxref{Invocation,
8276 ,Invoking Bison}). This is POSIX compliant too.
8278 @item the directive @samp{%debug}
8280 Add the @code{%debug} directive (@pxref{Decl Summary, ,Bison Declaration
8281 Summary}). This Bison extension is maintained for backward
8282 compatibility with previous versions of Bison.
8284 @item the variable @samp{parse.trace}
8285 @findex %define parse.trace
8286 Add the @samp{%define parse.trace} directive (@pxref{Decl Summary,
8287 ,Bison Declaration Summary}), or pass the @option{-Dparse.trace} option
8288 (@pxref{Bison Options}). This is a Bison extension, which is especially
8289 useful for languages that don't use a preprocessor. Unless
8290 POSIX and Yacc portability matter to you, this is the
8294 We suggest that you always enable the trace option so that debugging is
8297 The trace facility outputs messages with macro calls of the form
8298 @code{YYFPRINTF (stderr, @var{format}, @var{args})} where
8299 @var{format} and @var{args} are the usual @code{printf} format and variadic
8300 arguments. If you define @code{YYDEBUG} to a nonzero value but do not
8301 define @code{YYFPRINTF}, @code{<stdio.h>} is automatically included
8302 and @code{YYFPRINTF} is defined to @code{fprintf}.
8304 Once you have compiled the program with trace facilities, the way to
8305 request a trace is to store a nonzero value in the variable @code{yydebug}.
8306 You can do this by making the C code do it (in @code{main}, perhaps), or
8307 you can alter the value with a C debugger.
8309 Each step taken by the parser when @code{yydebug} is nonzero produces a
8310 line or two of trace information, written on @code{stderr}. The trace
8311 messages tell you these things:
8315 Each time the parser calls @code{yylex}, what kind of token was read.
8318 Each time a token is shifted, the depth and complete contents of the
8319 state stack (@pxref{Parser States}).
8322 Each time a rule is reduced, which rule it is, and the complete contents
8323 of the state stack afterward.
8326 To make sense of this information, it helps to refer to the listing file
8327 produced by the Bison @samp{-v} option (@pxref{Invocation, ,Invoking
8328 Bison}). This file shows the meaning of each state in terms of
8329 positions in various rules, and also what each state will do with each
8330 possible input token. As you read the successive trace messages, you
8331 can see that the parser is functioning according to its specification in
8332 the listing file. Eventually you will arrive at the place where
8333 something undesirable happens, and you will see which parts of the
8334 grammar are to blame.
8336 The parser file is a C program and you can use C debuggers on it, but it's
8337 not easy to interpret what it is doing. The parser function is a
8338 finite-state machine interpreter, and aside from the actions it executes
8339 the same code over and over. Only the values of variables show where in
8340 the grammar it is working.
8343 The debugging information normally gives the token type of each token
8344 read, but not its semantic value. You can optionally define a macro
8345 named @code{YYPRINT} to provide a way to print the value. If you define
8346 @code{YYPRINT}, it should take three arguments. The parser will pass a
8347 standard I/O stream, the numeric code for the token type, and the token
8348 value (from @code{yylval}).
8350 Here is an example of @code{YYPRINT} suitable for the multi-function
8351 calculator (@pxref{Mfcalc Declarations, ,Declarations for @code{mfcalc}}):
8355 static void print_token_value (FILE *, int, YYSTYPE);
8356 #define YYPRINT(file, type, value) print_token_value (file, type, value)
8359 @dots{} %% @dots{} %% @dots{}
8362 print_token_value (FILE *file, int type, YYSTYPE value)
8365 fprintf (file, "%s", value.tptr->name);
8366 else if (type == NUM)
8367 fprintf (file, "%d", value.val);
8371 @c ================================================= Invoking Bison
8374 @chapter Invoking Bison
8375 @cindex invoking Bison
8376 @cindex Bison invocation
8377 @cindex options for invoking Bison
8379 The usual way to invoke Bison is as follows:
8385 Here @var{infile} is the grammar file name, which usually ends in
8386 @samp{.y}. The parser file's name is made by replacing the @samp{.y}
8387 with @samp{.tab.c} and removing any leading directory. Thus, the
8388 @samp{bison foo.y} file name yields
8389 @file{foo.tab.c}, and the @samp{bison hack/foo.y} file name yields
8390 @file{foo.tab.c}. It's also possible, in case you are writing
8391 C++ code instead of C in your grammar file, to name it @file{foo.ypp}
8392 or @file{foo.y++}. Then, the output files will take an extension like
8393 the given one as input (respectively @file{foo.tab.cpp} and
8394 @file{foo.tab.c++}).
8395 This feature takes effect with all options that manipulate file names like
8396 @samp{-o} or @samp{-d}.
8401 bison -d @var{infile.yxx}
8404 will produce @file{infile.tab.cxx} and @file{infile.tab.hxx}, and
8407 bison -d -o @var{output.c++} @var{infile.y}
8410 will produce @file{output.c++} and @file{outfile.h++}.
8412 For compatibility with POSIX, the standard Bison
8413 distribution also contains a shell script called @command{yacc} that
8414 invokes Bison with the @option{-y} option.
8417 * Bison Options:: All the options described in detail,
8418 in alphabetical order by short options.
8419 * Option Cross Key:: Alphabetical list of long options.
8420 * Yacc Library:: Yacc-compatible @code{yylex} and @code{main}.
8424 @section Bison Options
8426 Bison supports both traditional single-letter options and mnemonic long
8427 option names. Long option names are indicated with @samp{--} instead of
8428 @samp{-}. Abbreviations for option names are allowed as long as they
8429 are unique. When a long option takes an argument, like
8430 @samp{--file-prefix}, connect the option name and the argument with
8433 Here is a list of options that can be used with Bison, alphabetized by
8434 short option. It is followed by a cross key alphabetized by long
8437 @c Please, keep this ordered as in `bison --help'.
8443 Print a summary of the command-line options to Bison and exit.
8447 Print the version number of Bison and exit.
8449 @item --print-localedir
8450 Print the name of the directory containing locale-dependent data.
8452 @item --print-datadir
8453 Print the name of the directory containing skeletons and XSLT.
8457 Act more like the traditional Yacc command. This can cause
8458 different diagnostics to be generated, and may change behavior in
8459 other minor ways. Most importantly, imitate Yacc's output
8460 file name conventions, so that the parser output file is called
8461 @file{y.tab.c}, and the other outputs are called @file{y.output} and
8463 Also, if generating a deterministic parser in C, generate @code{#define}
8464 statements in addition to an @code{enum} to associate token numbers with token
8466 Thus, the following shell script can substitute for Yacc, and the Bison
8467 distribution contains such a script for compatibility with POSIX:
8474 The @option{-y}/@option{--yacc} option is intended for use with
8475 traditional Yacc grammars. If your grammar uses a Bison extension
8476 like @samp{%glr-parser}, Bison might not be Yacc-compatible even if
8477 this option is specified.
8479 @item -W [@var{category}]
8480 @itemx --warnings[=@var{category}]
8481 Output warnings falling in @var{category}. @var{category} can be one
8484 @item midrule-values
8485 Warn about mid-rule values that are set but not used within any of the actions
8487 For example, warn about unused @code{$2} in:
8490 exp: '1' @{ $$ = 1; @} '+' exp @{ $$ = $1 + $4; @};
8493 Also warn about mid-rule values that are used but not set.
8494 For example, warn about unset @code{$$} in the mid-rule action in:
8497 exp: '1' @{ $1 = 1; @} '+' exp @{ $$ = $2 + $4; @};
8500 These warnings are not enabled by default since they sometimes prove to
8501 be false alarms in existing grammars employing the Yacc constructs
8502 @code{$0} or @code{$-@var{n}} (where @var{n} is some positive integer).
8506 Incompatibilities with POSIX Yacc.
8511 Turn off all the warnings.
8513 Treat warnings as errors.
8516 A category can be turned off by prefixing its name with @samp{no-}. For
8517 instance, @option{-Wno-yacc} will hide the warnings about
8518 POSIX Yacc incompatibilities.
8527 In the parser file, define the macro @code{YYDEBUG} to 1 if it is not
8528 already defined, so that the debugging facilities are compiled.
8529 @xref{Tracing, ,Tracing Your Parser}.
8531 @item -D @var{name}[=@var{value}]
8532 @itemx --define=@var{name}[=@var{value}]
8533 @itemx -F @var{name}[=@var{value}]
8534 @itemx --force-define=@var{name}[=@var{value}]
8535 Each of these is equivalent to @samp{%define @var{name} "@var{value}"}
8536 (@pxref{Decl Summary, ,%define}) except that Bison processes multiple
8537 definitions for the same @var{name} as follows:
8541 Bison quietly ignores all command-line definitions for @var{name} except
8544 If that command-line definition is specified by a @code{-D} or
8545 @code{--define}, Bison reports an error for any @code{%define}
8546 definition for @var{name}.
8548 If that command-line definition is specified by a @code{-F} or
8549 @code{--force-define} instead, Bison quietly ignores all @code{%define}
8550 definitions for @var{name}.
8552 Otherwise, Bison reports an error if there are multiple @code{%define}
8553 definitions for @var{name}.
8556 You should avoid using @code{-F} and @code{--force-define} in your
8557 makefiles unless you are confident that it is safe to quietly ignore any
8558 conflicting @code{%define} that may be added to the grammar file.
8560 @item -L @var{language}
8561 @itemx --language=@var{language}
8562 Specify the programming language for the generated parser, as if
8563 @code{%language} was specified (@pxref{Decl Summary, , Bison Declaration
8564 Summary}). Currently supported languages include C, C++, and Java.
8565 @var{language} is case-insensitive.
8567 This option is experimental and its effect may be modified in future
8571 Pretend that @code{%locations} was specified. @xref{Decl Summary}.
8573 @item -p @var{prefix}
8574 @itemx --name-prefix=@var{prefix}
8575 Pretend that @code{%name-prefix "@var{prefix}"} was specified.
8576 @xref{Decl Summary}.
8580 Don't put any @code{#line} preprocessor commands in the parser file.
8581 Ordinarily Bison puts them in the parser file so that the C compiler
8582 and debuggers will associate errors with your source file, the
8583 grammar file. This option causes them to associate errors with the
8584 parser file, treating it as an independent source file in its own right.
8587 @itemx --skeleton=@var{file}
8588 Specify the skeleton to use, similar to @code{%skeleton}
8589 (@pxref{Decl Summary, , Bison Declaration Summary}).
8591 @c You probably don't need this option unless you are developing Bison.
8592 @c You should use @option{--language} if you want to specify the skeleton for a
8593 @c different language, because it is clearer and because it will always
8594 @c choose the correct skeleton for non-deterministic or push parsers.
8596 If @var{file} does not contain a @code{/}, @var{file} is the name of a skeleton
8597 file in the Bison installation directory.
8598 If it does, @var{file} is an absolute file name or a file name relative to the
8599 current working directory.
8600 This is similar to how most shells resolve commands.
8603 @itemx --token-table
8604 Pretend that @code{%token-table} was specified. @xref{Decl Summary}.
8611 @item --defines[=@var{file}]
8612 Pretend that @code{%defines} was specified, i.e., write an extra output
8613 file containing macro definitions for the token type names defined in
8614 the grammar, as well as a few other declarations. @xref{Decl Summary}.
8617 This is the same as @code{--defines} except @code{-d} does not accept a
8618 @var{file} argument since POSIX Yacc requires that @code{-d} can be bundled
8619 with other short options.
8621 @item -b @var{file-prefix}
8622 @itemx --file-prefix=@var{prefix}
8623 Pretend that @code{%file-prefix} was specified, i.e., specify prefix to use
8624 for all Bison output file names. @xref{Decl Summary}.
8626 @item -r @var{things}
8627 @itemx --report=@var{things}
8628 Write an extra output file containing verbose description of the comma
8629 separated list of @var{things} among:
8633 Description of the grammar, conflicts (resolved and unresolved), and
8637 Implies @code{state} and augments the description of the automaton with
8638 each rule's lookahead set.
8641 Implies @code{state} and augments the description of the automaton with
8642 the full set of items for each state, instead of its core only.
8645 @item --report-file=@var{file}
8646 Specify the @var{file} for the verbose description.
8650 Pretend that @code{%verbose} was specified, i.e., write an extra output
8651 file containing verbose descriptions of the grammar and
8652 parser. @xref{Decl Summary}.
8655 @itemx --output=@var{file}
8656 Specify the @var{file} for the parser file.
8658 The other output files' names are constructed from @var{file} as
8659 described under the @samp{-v} and @samp{-d} options.
8661 @item -g [@var{file}]
8662 @itemx --graph[=@var{file}]
8663 Output a graphical representation of the parser's
8664 automaton computed by Bison, in @uref{http://www.graphviz.org/, Graphviz}
8665 @uref{http://www.graphviz.org/doc/info/lang.html, DOT} format.
8666 @code{@var{file}} is optional.
8667 If omitted and the grammar file is @file{foo.y}, the output file will be
8670 @item -x [@var{file}]
8671 @itemx --xml[=@var{file}]
8672 Output an XML report of the parser's automaton computed by Bison.
8673 @code{@var{file}} is optional.
8674 If omitted and the grammar file is @file{foo.y}, the output file will be
8676 (The current XML schema is experimental and may evolve.
8677 More user feedback will help to stabilize it.)
8680 @node Option Cross Key
8681 @section Option Cross Key
8683 Here is a list of options, alphabetized by long option, to help you find
8684 the corresponding short option and directive.
8686 @multitable {@option{--force-define=@var{name}[=@var{value}]}} {@option{-F @var{name}[=@var{value}]}} {@code{%nondeterministic-parser}}
8687 @headitem Long Option @tab Short Option @tab Bison Directive
8688 @include cross-options.texi
8692 @section Yacc Library
8694 The Yacc library contains default implementations of the
8695 @code{yyerror} and @code{main} functions. These default
8696 implementations are normally not useful, but POSIX requires
8697 them. To use the Yacc library, link your program with the
8698 @option{-ly} option. Note that Bison's implementation of the Yacc
8699 library is distributed under the terms of the GNU General
8700 Public License (@pxref{Copying}).
8702 If you use the Yacc library's @code{yyerror} function, you should
8703 declare @code{yyerror} as follows:
8706 int yyerror (char const *);
8709 Bison ignores the @code{int} value returned by this @code{yyerror}.
8710 If you use the Yacc library's @code{main} function, your
8711 @code{yyparse} function should have the following type signature:
8717 @c ================================================= C++ Bison
8719 @node Other Languages
8720 @chapter Parsers Written In Other Languages
8723 * C++ Parsers:: The interface to generate C++ parser classes
8724 * Java Parsers:: The interface to generate Java parser classes
8728 @section C++ Parsers
8731 * C++ Bison Interface:: Asking for C++ parser generation
8732 * C++ Semantic Values:: %union vs. C++
8733 * C++ Location Values:: The position and location classes
8734 * C++ Parser Interface:: Instantiating and running the parser
8735 * C++ Scanner Interface:: Exchanges between yylex and parse
8736 * A Complete C++ Example:: Demonstrating their use
8739 @node C++ Bison Interface
8740 @subsection C++ Bison Interface
8741 @c - %skeleton "lalr1.cc"
8745 The C++ deterministic parser is selected using the skeleton directive,
8746 @samp{%skeleton "lalr1.cc"}, or the synonymous command-line option
8747 @option{--skeleton=lalr1.cc}.
8748 @xref{Decl Summary}.
8750 When run, @command{bison} will create several entities in the @samp{yy}
8752 @findex %define api.namespace
8753 Use the @samp{%define api.namespace} directive to change the namespace
8756 The various classes are generated in the following files:
8761 The definition of the classes @code{position} and @code{location},
8762 used for location tracking when enabled. @xref{C++ Location Values}.
8765 An auxiliary class @code{stack} used by the parser.
8768 @itemx @var{file}.cc
8769 (Assuming the extension of the input file was @samp{.yy}.) The
8770 declaration and implementation of the C++ parser class. The basename
8771 and extension of these two files follow the same rules as with regular C
8772 parsers (@pxref{Invocation}).
8774 The header is @emph{mandatory}; you must either pass
8775 @option{-d}/@option{--defines} to @command{bison}, or use the
8776 @samp{%defines} directive.
8779 All these files are documented using Doxygen; run @command{doxygen}
8780 for a complete and accurate documentation.
8782 @node C++ Semantic Values
8783 @subsection C++ Semantic Values
8784 @c - No objects in unions
8786 @c - Printer and destructor
8788 Bison supports two different means to handle semantic values in C++. One is
8789 alike the C interface, and relies on unions (@pxref{C++ Unions}). As C++
8790 practitioners know, unions are inconvenient in C++, therefore another
8791 approach is provided, based on variants (@pxref{C++ Variants}).
8794 * C++ Unions:: Semantic values cannot be objects
8795 * C++ Variants:: Using objects as semantic values
8799 @subsubsection C++ Unions
8801 The @code{%union} directive works as for C, see @ref{Union Decl, ,The
8802 Collection of Value Types}. In particular it produces a genuine
8803 @code{union}, which have a few specific features in C++.
8806 The type @code{YYSTYPE} is defined but its use is discouraged: rather
8807 you should refer to the parser's encapsulated type
8808 @code{yy::parser::semantic_type}.
8810 Non POD (Plain Old Data) types cannot be used. C++ forbids any
8811 instance of classes with constructors in unions: only @emph{pointers}
8812 to such objects are allowed.
8815 Because objects have to be stored via pointers, memory is not
8816 reclaimed automatically: using the @code{%destructor} directive is the
8817 only means to avoid leaks. @xref{Destructor Decl, , Freeing Discarded
8821 @subsubsection C++ Variants
8823 Starting with version 2.6, Bison provides a @emph{variant} based
8824 implementation of semantic values for C++. This alleviates all the
8825 limitations reported in the previous section, and in particular, object
8826 types can be used without pointers.
8828 To enable variant-based semantic values, set @code{%define} variable
8829 @code{variant} (@pxref{Decl Summary, , variant}). Once this defined,
8830 @code{%union} is ignored, and instead of using the name of the fields of the
8831 @code{%union} to ``type'' the symbols, use genuine types.
8833 For instance, instead of
8841 %token <ival> NUMBER;
8842 %token <sval> STRING;
8849 %token <int> NUMBER;
8850 %token <std::string> STRING;
8853 @code{STRING} is no longer a pointer, which should fairly simplify the user
8854 actions in the grammar and in the scanner (in particular the memory
8857 Since C++ features destructors, and since it is customary to specialize
8858 @code{operator<<} to support uniform printing of values, variants also
8859 typically simplify Bison printers and destructors.
8861 Variants are stricter than unions. When based on unions, you may play any
8862 dirty game with @code{yylval}, say storing an @code{int}, reading a
8863 @code{char*}, and then storing a @code{double} in it. This is no longer
8864 possible with variants: they must be initialized, then assigned to, and
8865 eventually, destroyed.
8867 @deftypemethod {semantic_type} {T&} build<T> ()
8868 Initialize, but leave empty. Returns the address where the actual value may
8869 be stored. Requires that the variant was not initialized yet.
8872 @deftypemethod {semantic_type} {T&} build<T> (const T& @var{t})
8873 Initialize, and copy-construct from @var{t}.
8877 @strong{Warning}: We do not use Boost.Variant, for two reasons. First, it
8878 appeared unacceptable to require Boost on the user's machine (i.e., the
8879 machine on which the generated parser will be compiled, not the machine on
8880 which @command{bison} was run). Second, for each possible semantic value,
8881 Boost.Variant not only stores the value, but also a tag specifying its
8882 type. But the parser already ``knows'' the type of the semantic value, so
8883 that would be duplicating the information.
8885 Therefore we developed light-weight variants whose type tag is external (so
8886 they are really like @code{unions} for C++ actually). But our code is much
8887 less mature that Boost.Variant. So there is a number of limitations in
8888 (the current implementation of) variants:
8891 Alignment must be enforced: values should be aligned in memory according to
8892 the most demanding type. Computing the smallest alignment possible requires
8893 meta-programming techniques that are not currently implemented in Bison, and
8894 therefore, since, as far as we know, @code{double} is the most demanding
8895 type on all platforms, alignments are enforced for @code{double} whatever
8896 types are actually used. This may waste space in some cases.
8899 Our implementation is not conforming with strict aliasing rules. Alias
8900 analysis is a technique used in optimizing compilers to detect when two
8901 pointers are disjoint (they cannot ``meet''). Our implementation breaks
8902 some of the rules that G++ 4.4 uses in its alias analysis, so @emph{strict
8903 alias analysis must be disabled}. Use the option
8904 @option{-fno-strict-aliasing} to compile the generated parser.
8907 There might be portability issues we are not aware of.
8910 As far as we know, these limitations @emph{can} be alleviated. All it takes
8911 is some time and/or some talented C++ hacker willing to contribute to Bison.
8913 @node C++ Location Values
8914 @subsection C++ Location Values
8918 @c - %define filename_type "const symbol::Symbol"
8920 When the directive @code{%locations} is used, the C++ parser supports
8921 location tracking, see @ref{Locations, , Locations Overview}. Two
8922 auxiliary classes define a @code{position}, a single point in a file,
8923 and a @code{location}, a range composed of a pair of
8924 @code{position}s (possibly spanning several files).
8926 @deftypemethod {position} {std::string*} file
8927 The name of the file. It will always be handled as a pointer, the
8928 parser will never duplicate nor deallocate it. As an experimental
8929 feature you may change it to @samp{@var{type}*} using @samp{%define
8930 filename_type "@var{type}"}.
8933 @deftypemethod {position} {unsigned int} line
8934 The line, starting at 1.
8937 @deftypemethod {position} {unsigned int} lines (int @var{height} = 1)
8938 Advance by @var{height} lines, resetting the column number.
8941 @deftypemethod {position} {unsigned int} column
8942 The column, starting at 0.
8945 @deftypemethod {position} {unsigned int} columns (int @var{width} = 1)
8946 Advance by @var{width} columns, without changing the line number.
8949 @deftypemethod {position} {position&} operator+= (position& @var{pos}, int @var{width})
8950 @deftypemethodx {position} {position} operator+ (const position& @var{pos}, int @var{width})
8951 @deftypemethodx {position} {position&} operator-= (const position& @var{pos}, int @var{width})
8952 @deftypemethodx {position} {position} operator- (position& @var{pos}, int @var{width})
8953 Various forms of syntactic sugar for @code{columns}.
8956 @deftypemethod {position} {position} operator<< (std::ostream @var{o}, const position& @var{p})
8957 Report @var{p} on @var{o} like this:
8958 @samp{@var{file}:@var{line}.@var{column}}, or
8959 @samp{@var{line}.@var{column}} if @var{file} is null.
8962 @deftypemethod {location} {position} begin
8963 @deftypemethodx {location} {position} end
8964 The first, inclusive, position of the range, and the first beyond.
8967 @deftypemethod {location} {unsigned int} columns (int @var{width} = 1)
8968 @deftypemethodx {location} {unsigned int} lines (int @var{height} = 1)
8969 Advance the @code{end} position.
8972 @deftypemethod {location} {location} operator+ (const location& @var{begin}, const location& @var{end})
8973 @deftypemethodx {location} {location} operator+ (const location& @var{begin}, int @var{width})
8974 @deftypemethodx {location} {location} operator+= (const location& @var{loc}, int @var{width})
8975 Various forms of syntactic sugar.
8978 @deftypemethod {location} {void} step ()
8979 Move @code{begin} onto @code{end}.
8983 @node C++ Parser Interface
8984 @subsection C++ Parser Interface
8985 @c - define parser_class_name
8987 @c - parse, error, set_debug_level, debug_level, set_debug_stream,
8989 @c - Reporting errors
8991 The output files @file{@var{output}.hh} and @file{@var{output}.cc}
8992 declare and define the parser class in the namespace @code{yy}. The
8993 class name defaults to @code{parser}, but may be changed using
8994 @samp{%define parser_class_name "@var{name}"}. The interface of
8995 this class is detailed below. It can be extended using the
8996 @code{%parse-param} feature: its semantics is slightly changed since
8997 it describes an additional member of the parser class, and an
8998 additional argument for its constructor.
9000 @defcv {Type} {parser} {semantic_type}
9001 @defcvx {Type} {parser} {location_type}
9002 The types for semantic values and locations (if enabled).
9005 @defcv {Type} {parser} {token}
9006 A structure that contains (only) the definition of the tokens as the
9007 @code{yytokentype} enumeration. To refer to the token @code{FOO}, the
9008 scanner should use @code{yy::parser::token::FOO}. The scanner can use
9009 @samp{typedef yy::parser::token token;} to ``import'' the token enumeration
9010 (@pxref{Calc++ Scanner}).
9013 @defcv {Type} {parser} {syntax_error}
9014 This class derives from @code{std::runtime_error}. Throw instances of it
9015 from user actions to raise parse errors. This is equivalent with first
9016 invoking @code{error} to report the location and message of the syntax
9017 error, and then to invoke @code{YYERROR} to enter the error-recovery mode.
9018 But contrary to @code{YYERROR} which can only be invoked from user actions
9019 (i.e., written in the action itself), the exception can be thrown from
9020 function invoked from the user action.
9023 @deftypemethod {parser} {} parser (@var{type1} @var{arg1}, ...)
9024 Build a new parser object. There are no arguments by default, unless
9025 @samp{%parse-param @{@var{type1} @var{arg1}@}} was used.
9028 @deftypemethod {syntax_error} {} syntax_error (const location_type& @var{l}, const std::string& @var{m})
9029 @deftypemethodx {syntax_error} {} syntax_error (const std::string& @var{m})
9030 Instantiate a syntax-error exception.
9033 @deftypemethod {parser} {int} parse ()
9034 Run the syntactic analysis, and return 0 on success, 1 otherwise.
9037 @deftypemethod {parser} {std::ostream&} debug_stream ()
9038 @deftypemethodx {parser} {void} set_debug_stream (std::ostream& @var{o})
9039 Get or set the stream used for tracing the parsing. It defaults to
9043 @deftypemethod {parser} {debug_level_type} debug_level ()
9044 @deftypemethodx {parser} {void} set_debug_level (debug_level @var{l})
9045 Get or set the tracing level. Currently its value is either 0, no trace,
9046 or nonzero, full tracing.
9049 @deftypemethod {parser} {void} error (const location_type& @var{l}, const std::string& @var{m})
9050 @deftypemethodx {parser} {void} error (const std::string& @var{m})
9051 The definition for this member function must be supplied by the user:
9052 the parser uses it to report a parser error occurring at @var{l},
9053 described by @var{m}. If location tracking is not enabled, the second
9058 @node C++ Scanner Interface
9059 @subsection C++ Scanner Interface
9060 @c - prefix for yylex.
9061 @c - Pure interface to yylex
9064 The parser invokes the scanner by calling @code{yylex}. Contrary to C
9065 parsers, C++ parsers are always pure: there is no point in using the
9066 @samp{%define api.pure} directive. The actual interface with @code{yylex}
9067 depends whether you use unions, or variants.
9070 * Split Symbols:: Passing symbols as two/three components
9071 * Complete Symbols:: Making symbols a whole
9075 @subsubsection Split Symbols
9077 Therefore the interface is as follows.
9079 @deftypemethod {parser} {int} yylex (semantic_type* @var{yylval}, location_type* @var{yylloc}, @var{type1} @var{arg1}, ...)
9080 @deftypemethodx {parser} {int} yylex (semantic_type* @var{yylval}, @var{type1} @var{arg1}, ...)
9081 Return the next token. Its type is the return value, its semantic value and
9082 location (if enabled) being @var{yylval} and @var{yylloc}. Invocations of
9083 @samp{%lex-param @{@var{type1} @var{arg1}@}} yield additional arguments.
9086 Note that when using variants, the interface for @code{yylex} is the same,
9087 but @code{yylval} is handled differently.
9089 Regular union-based code in Lex scanner typically look like:
9093 yylval.ival = text_to_int (yytext);
9094 return yy::parser::INTEGER;
9097 yylval.sval = new std::string (yytext);
9098 return yy::parser::IDENTIFIER;
9102 Using variants, @code{yylval} is already constructed, but it is not
9103 initialized. So the code would look like:
9107 yylval.build<int>() = text_to_int (yytext);
9108 return yy::parser::INTEGER;
9111 yylval.build<std::string> = yytext;
9112 return yy::parser::IDENTIFIER;
9121 yylval.build(text_to_int (yytext));
9122 return yy::parser::INTEGER;
9125 yylval.build(yytext);
9126 return yy::parser::IDENTIFIER;
9131 @node Complete Symbols
9132 @subsubsection Complete Symbols
9134 If you specified both @code{%define variant} and @code{%define lex_symbol},
9135 the @code{parser} class also defines the class @code{parser::symbol_type}
9136 which defines a @emph{complete} symbol, aggregating its type (i.e., the
9137 traditional value returned by @code{yylex}), its semantic value (i.e., the
9138 value passed in @code{yylval}, and possibly its location (@code{yylloc}).
9140 @deftypemethod {symbol_type} {} symbol_type (token_type @var{type}, const semantic_type& @var{value}, const location_type& @var{location})
9141 Build a complete terminal symbol which token type is @var{type}, and which
9142 semantic value is @var{value}. If location tracking is enabled, also pass
9146 This interface is low-level and should not be used for two reasons. First,
9147 it is inconvenient, as you still have to build the semantic value, which is
9148 a variant, and second, because consistency is not enforced: as with unions,
9149 it is still possible to give an integer as semantic value for a string.
9151 So for each token type, Bison generates named constructors as follows.
9153 @deftypemethod {symbol_type} {} make_@var{token} (const @var{value_type}& @var{value}, const location_type& @var{location})
9154 @deftypemethodx {symbol_type} {} make_@var{token} (const location_type& @var{location})
9155 Build a complete terminal symbol for the token type @var{token} (not
9156 including the @code{api.tokens.prefix}) whose possible semantic value is
9157 @var{value} of adequate @var{value_type}. If location tracking is enabled,
9158 also pass the @var{location}.
9161 For instance, given the following declarations:
9164 %define api.tokens.prefix "TOK_"
9165 %token <std::string> IDENTIFIER;
9166 %token <int> INTEGER;
9171 Bison generates the following functions:
9174 symbol_type make_IDENTIFIER(const std::string& v,
9175 const location_type& l);
9176 symbol_type make_INTEGER(const int& v,
9177 const location_type& loc);
9178 symbol_type make_COLON(const location_type& loc);
9182 which should be used in a Lex-scanner as follows.
9185 [0-9]+ return yy::parser::make_INTEGER(text_to_int (yytext), loc);
9186 [a-z]+ return yy::parser::make_IDENTIFIER(yytext, loc);
9187 ":" return yy::parser::make_COLON(loc);
9190 Tokens that do not have an identifier are not accessible: you cannot simply
9191 use characters such as @code{':'}, they must be declared with @code{%token}.
9193 @node A Complete C++ Example
9194 @subsection A Complete C++ Example
9196 This section demonstrates the use of a C++ parser with a simple but
9197 complete example. This example should be available on your system,
9198 ready to compile, in the directory @dfn{.../bison/examples/calc++}. It
9199 focuses on the use of Bison, therefore the design of the various C++
9200 classes is very naive: no accessors, no encapsulation of members etc.
9201 We will use a Lex scanner, and more precisely, a Flex scanner, to
9202 demonstrate the various interactions. A hand-written scanner is
9203 actually easier to interface with.
9206 * Calc++ --- C++ Calculator:: The specifications
9207 * Calc++ Parsing Driver:: An active parsing context
9208 * Calc++ Parser:: A parser class
9209 * Calc++ Scanner:: A pure C++ Flex scanner
9210 * Calc++ Top Level:: Conducting the band
9213 @node Calc++ --- C++ Calculator
9214 @subsubsection Calc++ --- C++ Calculator
9216 Of course the grammar is dedicated to arithmetics, a single
9217 expression, possibly preceded by variable assignments. An
9218 environment containing possibly predefined variables such as
9219 @code{one} and @code{two}, is exchanged with the parser. An example
9220 of valid input follows.
9224 seven := one + two * three
9228 @node Calc++ Parsing Driver
9229 @subsubsection Calc++ Parsing Driver
9231 @c - A place to store error messages
9232 @c - A place for the result
9234 To support a pure interface with the parser (and the scanner) the
9235 technique of the ``parsing context'' is convenient: a structure
9236 containing all the data to exchange. Since, in addition to simply
9237 launch the parsing, there are several auxiliary tasks to execute (open
9238 the file for parsing, instantiate the parser etc.), we recommend
9239 transforming the simple parsing context structure into a fully blown
9240 @dfn{parsing driver} class.
9242 The declaration of this driver class, @file{calc++-driver.hh}, is as
9243 follows. The first part includes the CPP guard and imports the
9244 required standard library components, and the declaration of the parser
9247 @comment file: calc++-driver.hh
9249 #ifndef CALCXX_DRIVER_HH
9250 # define CALCXX_DRIVER_HH
9253 # include "calc++-parser.hh"
9258 Then comes the declaration of the scanning function. Flex expects
9259 the signature of @code{yylex} to be defined in the macro
9260 @code{YY_DECL}, and the C++ parser expects it to be declared. We can
9261 factor both as follows.
9263 @comment file: calc++-driver.hh
9265 // Tell Flex the lexer's prototype ...
9267 yy::calcxx_parser::symbol_type yylex (calcxx_driver& driver)
9268 // ... and declare it for the parser's sake.
9273 The @code{calcxx_driver} class is then declared with its most obvious
9276 @comment file: calc++-driver.hh
9278 // Conducting the whole scanning and parsing of Calc++.
9283 virtual ~calcxx_driver ();
9285 std::map<std::string, int> variables;
9291 To encapsulate the coordination with the Flex scanner, it is useful to have
9292 member functions to open and close the scanning phase.
9294 @comment file: calc++-driver.hh
9296 // Handling the scanner.
9299 bool trace_scanning;
9303 Similarly for the parser itself.
9305 @comment file: calc++-driver.hh
9307 // Run the parser on file F.
9308 // Return 0 on success.
9309 int parse (const std::string& f);
9310 // The name of the file being parsed.
9311 // Used later to pass the file name to the location tracker.
9313 // Whether parser traces should be generated.
9318 To demonstrate pure handling of parse errors, instead of simply
9319 dumping them on the standard error output, we will pass them to the
9320 compiler driver using the following two member functions. Finally, we
9321 close the class declaration and CPP guard.
9323 @comment file: calc++-driver.hh
9326 void error (const yy::location& l, const std::string& m);
9327 void error (const std::string& m);
9329 #endif // ! CALCXX_DRIVER_HH
9332 The implementation of the driver is straightforward. The @code{parse}
9333 member function deserves some attention. The @code{error} functions
9334 are simple stubs, they should actually register the located error
9335 messages and set error state.
9337 @comment file: calc++-driver.cc
9339 #include "calc++-driver.hh"
9340 #include "calc++-parser.hh"
9342 calcxx_driver::calcxx_driver ()
9343 : trace_scanning (false), trace_parsing (false)
9345 variables["one"] = 1;
9346 variables["two"] = 2;
9349 calcxx_driver::~calcxx_driver ()
9354 calcxx_driver::parse (const std::string &f)
9358 yy::calcxx_parser parser (*this);
9359 parser.set_debug_level (trace_parsing);
9360 int res = parser.parse ();
9366 calcxx_driver::error (const yy::location& l, const std::string& m)
9368 std::cerr << l << ": " << m << std::endl;
9372 calcxx_driver::error (const std::string& m)
9374 std::cerr << m << std::endl;
9379 @subsubsection Calc++ Parser
9381 The parser definition file @file{calc++-parser.yy} starts by asking for
9382 the C++ deterministic parser skeleton, the creation of the parser header
9383 file, and specifies the name of the parser class.
9384 Because the C++ skeleton changed several times, it is safer to require
9385 the version you designed the grammar for.
9387 @comment file: calc++-parser.yy
9389 %skeleton "lalr1.cc" /* -*- C++ -*- */
9390 %require "@value{VERSION}"
9392 %define parser_class_name "calcxx_parser"
9396 @findex %define variant
9397 @findex %define lex_symbol
9398 This example will use genuine C++ objects as semantic values, therefore, we
9399 require the variant-based interface. To make sure we properly use it, we
9400 enable assertions. To fully benefit from type-safety and more natural
9401 definition of ``symbol'', we enable @code{lex_symbol}.
9403 @comment file: calc++-parser.yy
9406 %define parse.assert
9411 @findex %code requires
9412 Then come the declarations/inclusions needed by the semantic values.
9413 Because the parser uses the parsing driver and reciprocally, both would like
9414 to include the header of the other, which is, of course, insane. This
9415 mutual dependency will be broken using forward declarations. Because the
9416 driver's header needs detailed knowledge about the parser class (in
9417 particular its inner types), it is the parser's header which will use a
9418 forward declaration of the driver. @xref{Decl Summary, ,%code}.
9420 @comment file: calc++-parser.yy
9425 class calcxx_driver;
9430 The driver is passed by reference to the parser and to the scanner.
9431 This provides a simple but effective pure interface, not relying on
9434 @comment file: calc++-parser.yy
9436 // The parsing context.
9437 %param @{ calcxx_driver& driver @}
9441 Then we request location tracking, and initialize the
9442 first location's file name. Afterward new locations are computed
9443 relatively to the previous locations: the file name will be
9446 @comment file: calc++-parser.yy
9451 // Initialize the initial location.
9452 @@$.begin.filename = @@$.end.filename = &driver.file;
9457 Use the following two directives to enable parser tracing and verbose
9460 @comment file: calc++-parser.yy
9463 %define parse.error verbose
9468 The code between @samp{%code @{} and @samp{@}} is output in the
9469 @file{*.cc} file; it needs detailed knowledge about the driver.
9471 @comment file: calc++-parser.yy
9475 # include "calc++-driver.hh"
9481 The token numbered as 0 corresponds to end of file; the following line
9482 allows for nicer error messages referring to ``end of file'' instead of
9483 ``$end''. Similarly user friendly names are provided for each symbol.
9484 To avoid name clashes in the generated files (@pxref{Calc++ Scanner}),
9485 prefix tokens with @code{TOK_} (@pxref{Decl Summary,, api.tokens.prefix}).
9487 @comment file: calc++-parser.yy
9489 %define api.tokens.prefix "TOK_"
9503 Since we use variant-based semantic values, @code{%union} is not used, and
9504 both @code{%type} and @code{%token} expect genuine types, as opposed to type
9507 @comment file: calc++-parser.yy
9509 %token <std::string> IDENTIFIER "identifier"
9510 %token <int> NUMBER "number"
9515 No @code{%destructor} is needed to enable memory deallocation during error
9516 recovery; the memory, for strings for instance, will be reclaimed by the
9517 regular destructors. All the values are printed using their
9520 @c FIXME: Document %printer, and mention that it takes a braced-code operand.
9521 @comment file: calc++-parser.yy
9523 %printer @{ debug_stream () << $$; @} <*>;
9527 The grammar itself is straightforward (@pxref{Location Tracking Calc, ,
9528 Location Tracking Calculator: @code{ltcalc}}).
9530 @comment file: calc++-parser.yy
9534 unit: assignments exp @{ driver.result = $2; @};
9537 assignments assignment @{@}
9538 | /* Nothing. */ @{@};
9541 "identifier" ":=" exp @{ driver.variables[$1] = $3; @};
9546 exp "+" exp @{ $$ = $1 + $3; @}
9547 | exp "-" exp @{ $$ = $1 - $3; @}
9548 | exp "*" exp @{ $$ = $1 * $3; @}
9549 | exp "/" exp @{ $$ = $1 / $3; @}
9550 | "(" exp ")" @{ std::swap ($$, $2); @}
9551 | "identifier" @{ $$ = driver.variables[$1]; @}
9552 | "number" @{ std::swap ($$, $1); @};
9557 Finally the @code{error} member function registers the errors to the
9560 @comment file: calc++-parser.yy
9563 yy::calcxx_parser::error (const location_type& l,
9564 const std::string& m)
9566 driver.error (l, m);
9570 @node Calc++ Scanner
9571 @subsubsection Calc++ Scanner
9573 The Flex scanner first includes the driver declaration, then the
9574 parser's to get the set of defined tokens.
9576 @comment file: calc++-scanner.ll
9578 %@{ /* -*- C++ -*- */
9583 # include "calc++-driver.hh"
9584 # include "calc++-parser.hh"
9586 // Work around an incompatibility in flex (at least versions
9587 // 2.5.31 through 2.5.33): it generates code that does
9588 // not conform to C89. See Debian bug 333231
9589 // <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333231>.
9593 // The location of the current token.
9594 static yy::location loc;
9599 Because there is no @code{#include}-like feature we don't need
9600 @code{yywrap}, we don't need @code{unput} either, and we parse an
9601 actual file, this is not an interactive session with the user.
9602 Finally, we enable scanner tracing.
9604 @comment file: calc++-scanner.ll
9606 %option noyywrap nounput batch debug
9610 Abbreviations allow for more readable rules.
9612 @comment file: calc++-scanner.ll
9614 id [a-zA-Z][a-zA-Z_0-9]*
9620 The following paragraph suffices to track locations accurately. Each
9621 time @code{yylex} is invoked, the begin position is moved onto the end
9622 position. Then when a pattern is matched, its width is added to the end
9623 column. When matching ends of lines, the end
9624 cursor is adjusted, and each time blanks are matched, the begin cursor
9625 is moved onto the end cursor to effectively ignore the blanks
9626 preceding tokens. Comments would be treated equally.
9628 @comment file: calc++-scanner.ll
9631 // Code run each time a pattern is matched.
9632 # define YY_USER_ACTION loc.columns (yyleng);
9636 // Code run each time yylex is called.
9639 @{blank@}+ loc.step ();
9640 [\n]+ loc.lines (yyleng); loc.step ();
9644 The rules are simple. The driver is used to report errors.
9646 @comment file: calc++-scanner.ll
9648 "-" return yy::calcxx_parser::make_MINUS(loc);
9649 "+" return yy::calcxx_parser::make_PLUS(loc);
9650 "*" return yy::calcxx_parser::make_STAR(loc);
9651 "/" return yy::calcxx_parser::make_SLASH(loc);
9652 "(" return yy::calcxx_parser::make_LPAREN(loc);
9653 ")" return yy::calcxx_parser::make_RPAREN(loc);
9654 ":=" return yy::calcxx_parser::make_ASSIGN(loc);
9658 long n = strtol (yytext, NULL, 10);
9659 if (! (INT_MIN <= n && n <= INT_MAX && errno != ERANGE))
9660 driver.error (loc, "integer is out of range");
9661 return yy::calcxx_parser::make_NUMBER(n, loc);
9663 @{id@} return yy::calcxx_parser::make_IDENTIFIER(yytext, loc);
9664 . driver.error (loc, "invalid character");
9665 <<EOF>> return yy::calcxx_parser::make_END(loc);
9670 Finally, because the scanner-related driver's member-functions depend
9671 on the scanner's data, it is simpler to implement them in this file.
9673 @comment file: calc++-scanner.ll
9676 calcxx_driver::scan_begin ()
9678 yy_flex_debug = trace_scanning;
9681 else if (!(yyin = fopen (file.c_str (), "r")))
9683 error (std::string ("cannot open ") + file + ": " + strerror(errno));
9689 calcxx_driver::scan_end ()
9695 @node Calc++ Top Level
9696 @subsubsection Calc++ Top Level
9698 The top level file, @file{calc++.cc}, poses no problem.
9700 @comment file: calc++.cc
9703 #include "calc++-driver.hh"
9706 main (int argc, char *argv[])
9709 calcxx_driver driver;
9710 for (++argv; argv[0]; ++argv)
9711 if (*argv == std::string ("-p"))
9712 driver.trace_parsing = true;
9713 else if (*argv == std::string ("-s"))
9714 driver.trace_scanning = true;
9715 else if (!driver.parse (*argv))
9716 std::cout << driver.result << std::endl;
9724 @section Java Parsers
9727 * Java Bison Interface:: Asking for Java parser generation
9728 * Java Semantic Values:: %type and %token vs. Java
9729 * Java Location Values:: The position and location classes
9730 * Java Parser Interface:: Instantiating and running the parser
9731 * Java Scanner Interface:: Specifying the scanner for the parser
9732 * Java Action Features:: Special features for use in actions
9733 * Java Differences:: Differences between C/C++ and Java Grammars
9734 * Java Declarations Summary:: List of Bison declarations used with Java
9737 @node Java Bison Interface
9738 @subsection Java Bison Interface
9739 @c - %language "Java"
9741 (The current Java interface is experimental and may evolve.
9742 More user feedback will help to stabilize it.)
9744 The Java parser skeletons are selected using the @code{%language "Java"}
9745 directive or the @option{-L java}/@option{--language=java} option.
9747 @c FIXME: Documented bug.
9748 When generating a Java parser, @code{bison @var{basename}.y} will create
9749 a single Java source file named @file{@var{basename}.java}. Using an
9750 input file without a @file{.y} suffix is currently broken. The basename
9751 of the output file can be changed by the @code{%file-prefix} directive
9752 or the @option{-p}/@option{--name-prefix} option. The entire output file
9753 name can be changed by the @code{%output} directive or the
9754 @option{-o}/@option{--output} option. The output file contains a single
9755 class for the parser.
9757 You can create documentation for generated parsers using Javadoc.
9759 Contrary to C parsers, Java parsers do not use global variables; the
9760 state of the parser is always local to an instance of the parser class.
9761 Therefore, all Java parsers are ``pure'', and the @code{%pure-parser}
9762 and @samp{%define api.pure} directives does not do anything when used in
9765 Push parsers are currently unsupported in Java and @code{%define
9766 api.push-pull} have no effect.
9768 GLR parsers are currently unsupported in Java. Do not use the
9769 @code{glr-parser} directive.
9771 No header file can be generated for Java parsers. Do not use the
9772 @code{%defines} directive or the @option{-d}/@option{--defines} options.
9774 @c FIXME: Possible code change.
9775 Currently, support for tracing is always compiled
9776 in. Thus the @samp{%define parse.trace} and @samp{%token-table}
9778 @option{-t}/@option{--debug} and @option{-k}/@option{--token-table}
9779 options have no effect. This may change in the future to eliminate
9780 unused code in the generated parser, so use @samp{%define parse.trace}
9782 if needed. Also, in the future the
9783 @code{%token-table} directive might enable a public interface to
9784 access the token names and codes.
9786 Getting a ``code too large'' error from the Java compiler means the code
9787 hit the 64KB bytecode per method limitation of the Java class file.
9788 Try reducing the amount of code in actions and static initializers;
9789 otherwise, report a bug so that the parser skeleton will be improved.
9792 @node Java Semantic Values
9793 @subsection Java Semantic Values
9794 @c - No %union, specify type in %type/%token.
9796 @c - Printer and destructor
9798 There is no @code{%union} directive in Java parsers. Instead, the
9799 semantic values' types (class names) should be specified in the
9800 @code{%type} or @code{%token} directive:
9803 %type <Expression> expr assignment_expr term factor
9804 %type <Integer> number
9807 By default, the semantic stack is declared to have @code{Object} members,
9808 which means that the class types you specify can be of any class.
9809 To improve the type safety of the parser, you can declare the common
9810 superclass of all the semantic values using the @samp{%define stype}
9811 directive. For example, after the following declaration:
9814 %define stype "ASTNode"
9818 any @code{%type} or @code{%token} specifying a semantic type which
9819 is not a subclass of ASTNode, will cause a compile-time error.
9821 @c FIXME: Documented bug.
9822 Types used in the directives may be qualified with a package name.
9823 Primitive data types are accepted for Java version 1.5 or later. Note
9824 that in this case the autoboxing feature of Java 1.5 will be used.
9825 Generic types may not be used; this is due to a limitation in the
9826 implementation of Bison, and may change in future releases.
9828 Java parsers do not support @code{%destructor}, since the language
9829 adopts garbage collection. The parser will try to hold references
9830 to semantic values for as little time as needed.
9832 Java parsers do not support @code{%printer}, as @code{toString()}
9833 can be used to print the semantic values. This however may change
9834 (in a backwards-compatible way) in future versions of Bison.
9837 @node Java Location Values
9838 @subsection Java Location Values
9843 When the directive @code{%locations} is used, the Java parser
9844 supports location tracking, see @ref{Locations, , Locations Overview}.
9845 An auxiliary user-defined class defines a @dfn{position}, a single point
9846 in a file; Bison itself defines a class representing a @dfn{location},
9847 a range composed of a pair of positions (possibly spanning several
9848 files). The location class is an inner class of the parser; the name
9849 is @code{Location} by default, and may also be renamed using
9850 @samp{%define location_type "@var{class-name}"}.
9852 The location class treats the position as a completely opaque value.
9853 By default, the class name is @code{Position}, but this can be changed
9854 with @samp{%define position_type "@var{class-name}"}. This class must
9855 be supplied by the user.
9858 @deftypeivar {Location} {Position} begin
9859 @deftypeivarx {Location} {Position} end
9860 The first, inclusive, position of the range, and the first beyond.
9863 @deftypeop {Constructor} {Location} {} Location (Position @var{loc})
9864 Create a @code{Location} denoting an empty range located at a given point.
9867 @deftypeop {Constructor} {Location} {} Location (Position @var{begin}, Position @var{end})
9868 Create a @code{Location} from the endpoints of the range.
9871 @deftypemethod {Location} {String} toString ()
9872 Prints the range represented by the location. For this to work
9873 properly, the position class should override the @code{equals} and
9874 @code{toString} methods appropriately.
9878 @node Java Parser Interface
9879 @subsection Java Parser Interface
9880 @c - define parser_class_name
9882 @c - parse, error, set_debug_level, debug_level, set_debug_stream,
9884 @c - Reporting errors
9886 The name of the generated parser class defaults to @code{YYParser}. The
9887 @code{YY} prefix may be changed using the @code{%name-prefix} directive
9888 or the @option{-p}/@option{--name-prefix} option. Alternatively, use
9889 @samp{%define parser_class_name "@var{name}"} to give a custom name to
9890 the class. The interface of this class is detailed below.
9892 By default, the parser class has package visibility. A declaration
9893 @samp{%define public} will change to public visibility. Remember that,
9894 according to the Java language specification, the name of the @file{.java}
9895 file should match the name of the class in this case. Similarly, you can
9896 use @code{abstract}, @code{final} and @code{strictfp} with the
9897 @code{%define} declaration to add other modifiers to the parser class.
9898 A single @samp{%define annotations "@var{annotations}"} directive can
9899 be used to add any number of annotations to the parser class.
9901 The Java package name of the parser class can be specified using the
9902 @samp{%define package} directive. The superclass and the implemented
9903 interfaces of the parser class can be specified with the @code{%define
9904 extends} and @samp{%define implements} directives.
9906 The parser class defines an inner class, @code{Location}, that is used
9907 for location tracking (see @ref{Java Location Values}), and a inner
9908 interface, @code{Lexer} (see @ref{Java Scanner Interface}). Other than
9909 these inner class/interface, and the members described in the interface
9910 below, all the other members and fields are preceded with a @code{yy} or
9911 @code{YY} prefix to avoid clashes with user code.
9913 The parser class can be extended using the @code{%parse-param}
9914 directive. Each occurrence of the directive will add a @code{protected
9915 final} field to the parser class, and an argument to its constructor,
9916 which initialize them automatically.
9918 @deftypeop {Constructor} {YYParser} {} YYParser (@var{lex_param}, @dots{}, @var{parse_param}, @dots{})
9919 Build a new parser object with embedded @code{%code lexer}. There are
9920 no parameters, unless @code{%param}s and/or @code{%parse-param}s and/or
9921 @code{%lex-param}s are used.
9923 Use @code{%code init} for code added to the start of the constructor
9924 body. This is especially useful to initialize superclasses. Use
9925 @samp{%define init_throws} to specify any uncaught exceptions.
9928 @deftypeop {Constructor} {YYParser} {} YYParser (Lexer @var{lexer}, @var{parse_param}, @dots{})
9929 Build a new parser object using the specified scanner. There are no
9930 additional parameters unless @code{%param}s and/or @code{%parse-param}s are
9933 If the scanner is defined by @code{%code lexer}, this constructor is
9934 declared @code{protected} and is called automatically with a scanner
9935 created with the correct @code{%param}s and/or @code{%lex-param}s.
9937 Use @code{%code init} for code added to the start of the constructor
9938 body. This is especially useful to initialize superclasses. Use
9939 @samp{%define init_throws} to specify any uncatch exceptions.
9942 @deftypemethod {YYParser} {boolean} parse ()
9943 Run the syntactic analysis, and return @code{true} on success,
9944 @code{false} otherwise.
9947 @deftypemethod {YYParser} {boolean} getErrorVerbose ()
9948 @deftypemethodx {YYParser} {void} setErrorVerbose (boolean @var{verbose})
9949 Get or set the option to produce verbose error messages. These are only
9950 available with @samp{%define parse.error verbose}, which also turns on
9951 verbose error messages.
9954 @deftypemethod {YYParser} {void} yyerror (String @var{msg})
9955 @deftypemethodx {YYParser} {void} yyerror (Position @var{pos}, String @var{msg})
9956 @deftypemethodx {YYParser} {void} yyerror (Location @var{loc}, String @var{msg})
9957 Print an error message using the @code{yyerror} method of the scanner
9958 instance in use. The @code{Location} and @code{Position} parameters are
9959 available only if location tracking is active.
9962 @deftypemethod {YYParser} {boolean} recovering ()
9963 During the syntactic analysis, return @code{true} if recovering
9964 from a syntax error.
9965 @xref{Error Recovery}.
9968 @deftypemethod {YYParser} {java.io.PrintStream} getDebugStream ()
9969 @deftypemethodx {YYParser} {void} setDebugStream (java.io.printStream @var{o})
9970 Get or set the stream used for tracing the parsing. It defaults to
9974 @deftypemethod {YYParser} {int} getDebugLevel ()
9975 @deftypemethodx {YYParser} {void} setDebugLevel (int @var{l})
9976 Get or set the tracing level. Currently its value is either 0, no trace,
9977 or nonzero, full tracing.
9980 @deftypecv {Constant} {YYParser} {String} {bisonVersion}
9981 @deftypecvx {Constant} {YYParser} {String} {bisonSkeleton}
9982 Identify the Bison version and skeleton used to generate this parser.
9986 @node Java Scanner Interface
9987 @subsection Java Scanner Interface
9990 @c - Lexer interface
9992 There are two possible ways to interface a Bison-generated Java parser
9993 with a scanner: the scanner may be defined by @code{%code lexer}, or
9994 defined elsewhere. In either case, the scanner has to implement the
9995 @code{Lexer} inner interface of the parser class. This interface also
9996 contain constants for all user-defined token names and the predefined
9999 In the first case, the body of the scanner class is placed in
10000 @code{%code lexer} blocks. If you want to pass parameters from the
10001 parser constructor to the scanner constructor, specify them with
10002 @code{%lex-param}; they are passed before @code{%parse-param}s to the
10005 In the second case, the scanner has to implement the @code{Lexer} interface,
10006 which is defined within the parser class (e.g., @code{YYParser.Lexer}).
10007 The constructor of the parser object will then accept an object
10008 implementing the interface; @code{%lex-param} is not used in this
10011 In both cases, the scanner has to implement the following methods.
10013 @deftypemethod {Lexer} {void} yyerror (Location @var{loc}, String @var{msg})
10014 This method is defined by the user to emit an error message. The first
10015 parameter is omitted if location tracking is not active. Its type can be
10016 changed using @samp{%define location_type "@var{class-name}".}
10019 @deftypemethod {Lexer} {int} yylex ()
10020 Return the next token. Its type is the return value, its semantic
10021 value and location are saved and returned by the their methods in the
10024 Use @samp{%define lex_throws} to specify any uncaught exceptions.
10025 Default is @code{java.io.IOException}.
10028 @deftypemethod {Lexer} {Position} getStartPos ()
10029 @deftypemethodx {Lexer} {Position} getEndPos ()
10030 Return respectively the first position of the last token that
10031 @code{yylex} returned, and the first position beyond it. These
10032 methods are not needed unless location tracking is active.
10034 The return type can be changed using @samp{%define position_type
10035 "@var{class-name}".}
10038 @deftypemethod {Lexer} {Object} getLVal ()
10039 Return the semantic value of the last token that yylex returned.
10041 The return type can be changed using @samp{%define stype
10042 "@var{class-name}".}
10046 @node Java Action Features
10047 @subsection Special Features for Use in Java Actions
10049 The following special constructs can be uses in Java actions.
10050 Other analogous C action features are currently unavailable for Java.
10052 Use @samp{%define throws} to specify any uncaught exceptions from parser
10053 actions, and initial actions specified by @code{%initial-action}.
10056 The semantic value for the @var{n}th component of the current rule.
10057 This may not be assigned to.
10058 @xref{Java Semantic Values}.
10061 @defvar $<@var{typealt}>@var{n}
10062 Like @code{$@var{n}} but specifies a alternative type @var{typealt}.
10063 @xref{Java Semantic Values}.
10067 The semantic value for the grouping made by the current rule. As a
10068 value, this is in the base type (@code{Object} or as specified by
10069 @samp{%define stype}) as in not cast to the declared subtype because
10070 casts are not allowed on the left-hand side of Java assignments.
10071 Use an explicit Java cast if the correct subtype is needed.
10072 @xref{Java Semantic Values}.
10075 @defvar $<@var{typealt}>$
10076 Same as @code{$$} since Java always allow assigning to the base type.
10077 Perhaps we should use this and @code{$<>$} for the value and @code{$$}
10078 for setting the value but there is currently no easy way to distinguish
10080 @xref{Java Semantic Values}.
10084 The location information of the @var{n}th component of the current rule.
10085 This may not be assigned to.
10086 @xref{Java Location Values}.
10090 The location information of the grouping made by the current rule.
10091 @xref{Java Location Values}.
10094 @deffn {Statement} {return YYABORT;}
10095 Return immediately from the parser, indicating failure.
10096 @xref{Java Parser Interface}.
10099 @deffn {Statement} {return YYACCEPT;}
10100 Return immediately from the parser, indicating success.
10101 @xref{Java Parser Interface}.
10104 @deffn {Statement} {return YYERROR;}
10105 Start error recovery without printing an error message.
10106 @xref{Error Recovery}.
10109 @deftypefn {Function} {boolean} recovering ()
10110 Return whether error recovery is being done. In this state, the parser
10111 reads token until it reaches a known state, and then restarts normal
10113 @xref{Error Recovery}.
10116 @deftypefn {Function} {void} yyerror (String @var{msg})
10117 @deftypefnx {Function} {void} yyerror (Position @var{loc}, String @var{msg})
10118 @deftypefnx {Function} {void} yyerror (Location @var{loc}, String @var{msg})
10119 Print an error message using the @code{yyerror} method of the scanner
10120 instance in use. The @code{Location} and @code{Position} parameters are
10121 available only if location tracking is active.
10125 @node Java Differences
10126 @subsection Differences between C/C++ and Java Grammars
10128 The different structure of the Java language forces several differences
10129 between C/C++ grammars, and grammars designed for Java parsers. This
10130 section summarizes these differences.
10134 Java lacks a preprocessor, so the @code{YYERROR}, @code{YYACCEPT},
10135 @code{YYABORT} symbols (@pxref{Table of Symbols}) cannot obviously be
10136 macros. Instead, they should be preceded by @code{return} when they
10137 appear in an action. The actual definition of these symbols is
10138 opaque to the Bison grammar, and it might change in the future. The
10139 only meaningful operation that you can do, is to return them.
10140 See @pxref{Java Action Features}.
10142 Note that of these three symbols, only @code{YYACCEPT} and
10143 @code{YYABORT} will cause a return from the @code{yyparse}
10144 method@footnote{Java parsers include the actions in a separate
10145 method than @code{yyparse} in order to have an intuitive syntax that
10146 corresponds to these C macros.}.
10149 Java lacks unions, so @code{%union} has no effect. Instead, semantic
10150 values have a common base type: @code{Object} or as specified by
10151 @samp{%define stype}. Angle brackets on @code{%token}, @code{type},
10152 @code{$@var{n}} and @code{$$} specify subtypes rather than fields of
10153 an union. The type of @code{$$}, even with angle brackets, is the base
10154 type since Java casts are not allow on the left-hand side of assignments.
10155 Also, @code{$@var{n}} and @code{@@@var{n}} are not allowed on the
10156 left-hand side of assignments. See @pxref{Java Semantic Values} and
10157 @pxref{Java Action Features}.
10160 The prologue declarations have a different meaning than in C/C++ code.
10162 @item @code{%code imports}
10163 blocks are placed at the beginning of the Java source code. They may
10164 include copyright notices. For a @code{package} declarations, it is
10165 suggested to use @samp{%define package} instead.
10167 @item unqualified @code{%code}
10168 blocks are placed inside the parser class.
10170 @item @code{%code lexer}
10171 blocks, if specified, should include the implementation of the
10172 scanner. If there is no such block, the scanner can be any class
10173 that implements the appropriate interface (see @pxref{Java Scanner
10177 Other @code{%code} blocks are not supported in Java parsers.
10178 In particular, @code{%@{ @dots{} %@}} blocks should not be used
10179 and may give an error in future versions of Bison.
10181 The epilogue has the same meaning as in C/C++ code and it can
10182 be used to define other classes used by the parser @emph{outside}
10187 @node Java Declarations Summary
10188 @subsection Java Declarations Summary
10190 This summary only include declarations specific to Java or have special
10191 meaning when used in a Java parser.
10193 @deffn {Directive} {%language "Java"}
10194 Generate a Java class for the parser.
10197 @deffn {Directive} %lex-param @{@var{type} @var{name}@}
10198 A parameter for the lexer class defined by @code{%code lexer}
10199 @emph{only}, added as parameters to the lexer constructor and the parser
10200 constructor that @emph{creates} a lexer. Default is none.
10201 @xref{Java Scanner Interface}.
10204 @deffn {Directive} %name-prefix "@var{prefix}"
10205 The prefix of the parser class name @code{@var{prefix}Parser} if
10206 @samp{%define parser_class_name} is not used. Default is @code{YY}.
10207 @xref{Java Bison Interface}.
10210 @deffn {Directive} %parse-param @{@var{type} @var{name}@}
10211 A parameter for the parser class added as parameters to constructor(s)
10212 and as fields initialized by the constructor(s). Default is none.
10213 @xref{Java Parser Interface}.
10216 @deffn {Directive} %token <@var{type}> @var{token} @dots{}
10217 Declare tokens. Note that the angle brackets enclose a Java @emph{type}.
10218 @xref{Java Semantic Values}.
10221 @deffn {Directive} %type <@var{type}> @var{nonterminal} @dots{}
10222 Declare the type of nonterminals. Note that the angle brackets enclose
10223 a Java @emph{type}.
10224 @xref{Java Semantic Values}.
10227 @deffn {Directive} %code @{ @var{code} @dots{} @}
10228 Code appended to the inside of the parser class.
10229 @xref{Java Differences}.
10232 @deffn {Directive} {%code imports} @{ @var{code} @dots{} @}
10233 Code inserted just after the @code{package} declaration.
10234 @xref{Java Differences}.
10237 @deffn {Directive} {%code init} @{ @var{code} @dots{} @}
10238 Code inserted at the beginning of the parser constructor body.
10239 @xref{Java Parser Interface}.
10242 @deffn {Directive} {%code lexer} @{ @var{code} @dots{} @}
10243 Code added to the body of a inner lexer class within the parser class.
10244 @xref{Java Scanner Interface}.
10247 @deffn {Directive} %% @var{code} @dots{}
10248 Code (after the second @code{%%}) appended to the end of the file,
10249 @emph{outside} the parser class.
10250 @xref{Java Differences}.
10253 @deffn {Directive} %@{ @var{code} @dots{} %@}
10254 Not supported. Use @code{%code imports} instead.
10255 @xref{Java Differences}.
10258 @deffn {Directive} {%define abstract}
10259 Whether the parser class is declared @code{abstract}. Default is false.
10260 @xref{Java Bison Interface}.
10263 @deffn {Directive} {%define annotations} "@var{annotations}"
10264 The Java annotations for the parser class. Default is none.
10265 @xref{Java Bison Interface}.
10268 @deffn {Directive} {%define extends} "@var{superclass}"
10269 The superclass of the parser class. Default is none.
10270 @xref{Java Bison Interface}.
10273 @deffn {Directive} {%define final}
10274 Whether the parser class is declared @code{final}. Default is false.
10275 @xref{Java Bison Interface}.
10278 @deffn {Directive} {%define implements} "@var{interfaces}"
10279 The implemented interfaces of the parser class, a comma-separated list.
10281 @xref{Java Bison Interface}.
10284 @deffn {Directive} {%define init_throws} "@var{exceptions}"
10285 The exceptions thrown by @code{%code init} from the parser class
10286 constructor. Default is none.
10287 @xref{Java Parser Interface}.
10290 @deffn {Directive} {%define lex_throws} "@var{exceptions}"
10291 The exceptions thrown by the @code{yylex} method of the lexer, a
10292 comma-separated list. Default is @code{java.io.IOException}.
10293 @xref{Java Scanner Interface}.
10296 @deffn {Directive} {%define location_type} "@var{class}"
10297 The name of the class used for locations (a range between two
10298 positions). This class is generated as an inner class of the parser
10299 class by @command{bison}. Default is @code{Location}.
10300 @xref{Java Location Values}.
10303 @deffn {Directive} {%define package} "@var{package}"
10304 The package to put the parser class in. Default is none.
10305 @xref{Java Bison Interface}.
10308 @deffn {Directive} {%define parser_class_name} "@var{name}"
10309 The name of the parser class. Default is @code{YYParser} or
10310 @code{@var{name-prefix}Parser}.
10311 @xref{Java Bison Interface}.
10314 @deffn {Directive} {%define position_type} "@var{class}"
10315 The name of the class used for positions. This class must be supplied by
10316 the user. Default is @code{Position}.
10317 @xref{Java Location Values}.
10320 @deffn {Directive} {%define public}
10321 Whether the parser class is declared @code{public}. Default is false.
10322 @xref{Java Bison Interface}.
10325 @deffn {Directive} {%define stype} "@var{class}"
10326 The base type of semantic values. Default is @code{Object}.
10327 @xref{Java Semantic Values}.
10330 @deffn {Directive} {%define strictfp}
10331 Whether the parser class is declared @code{strictfp}. Default is false.
10332 @xref{Java Bison Interface}.
10335 @deffn {Directive} {%define throws} "@var{exceptions}"
10336 The exceptions thrown by user-supplied parser actions and
10337 @code{%initial-action}, a comma-separated list. Default is none.
10338 @xref{Java Parser Interface}.
10342 @c ================================================= FAQ
10345 @chapter Frequently Asked Questions
10346 @cindex frequently asked questions
10349 Several questions about Bison come up occasionally. Here some of them
10353 * Memory Exhausted:: Breaking the Stack Limits
10354 * How Can I Reset the Parser:: @code{yyparse} Keeps some State
10355 * Strings are Destroyed:: @code{yylval} Loses Track of Strings
10356 * Implementing Gotos/Loops:: Control Flow in the Calculator
10357 * Multiple start-symbols:: Factoring closely related grammars
10358 * Secure? Conform?:: Is Bison POSIX safe?
10359 * I can't build Bison:: Troubleshooting
10360 * Where can I find help?:: Troubleshouting
10361 * Bug Reports:: Troublereporting
10362 * More Languages:: Parsers in C++, Java, and so on
10363 * Beta Testing:: Experimenting development versions
10364 * Mailing Lists:: Meeting other Bison users
10367 @node Memory Exhausted
10368 @section Memory Exhausted
10371 My parser returns with error with a @samp{memory exhausted}
10372 message. What can I do?
10375 This question is already addressed elsewhere, @xref{Recursion,
10378 @node How Can I Reset the Parser
10379 @section How Can I Reset the Parser
10381 The following phenomenon has several symptoms, resulting in the
10382 following typical questions:
10385 I invoke @code{yyparse} several times, and on correct input it works
10386 properly; but when a parse error is found, all the other calls fail
10387 too. How can I reset the error flag of @code{yyparse}?
10394 My parser includes support for an @samp{#include}-like feature, in
10395 which case I run @code{yyparse} from @code{yyparse}. This fails
10396 although I did specify @samp{%define api.pure}.
10399 These problems typically come not from Bison itself, but from
10400 Lex-generated scanners. Because these scanners use large buffers for
10401 speed, they might not notice a change of input file. As a
10402 demonstration, consider the following source file,
10403 @file{first-line.l}:
10408 #include <stdlib.h>
10411 .*\n ECHO; return 1;
10414 yyparse (char const *file)
10416 yyin = fopen (file, "r");
10419 /* One token only. */
10421 if (fclose (yyin) != 0)
10436 If the file @file{input} contains
10444 then instead of getting the first line twice, you get:
10447 $ @kbd{flex -ofirst-line.c first-line.l}
10448 $ @kbd{gcc -ofirst-line first-line.c -ll}
10449 $ @kbd{./first-line}
10454 Therefore, whenever you change @code{yyin}, you must tell the
10455 Lex-generated scanner to discard its current buffer and switch to the
10456 new one. This depends upon your implementation of Lex; see its
10457 documentation for more. For Flex, it suffices to call
10458 @samp{YY_FLUSH_BUFFER} after each change to @code{yyin}. If your
10459 Flex-generated scanner needs to read from several input streams to
10460 handle features like include files, you might consider using Flex
10461 functions like @samp{yy_switch_to_buffer} that manipulate multiple
10464 If your Flex-generated scanner uses start conditions (@pxref{Start
10465 conditions, , Start conditions, flex, The Flex Manual}), you might
10466 also want to reset the scanner's state, i.e., go back to the initial
10467 start condition, through a call to @samp{BEGIN (0)}.
10469 @node Strings are Destroyed
10470 @section Strings are Destroyed
10473 My parser seems to destroy old strings, or maybe it loses track of
10474 them. Instead of reporting @samp{"foo", "bar"}, it reports
10475 @samp{"bar", "bar"}, or even @samp{"foo\nbar", "bar"}.
10478 This error is probably the single most frequent ``bug report'' sent to
10479 Bison lists, but is only concerned with a misunderstanding of the role
10480 of the scanner. Consider the following Lex code:
10485 char *yylval = NULL;
10488 .* yylval = yytext; return 1;
10494 /* Similar to using $1, $2 in a Bison action. */
10495 char *fst = (yylex (), yylval);
10496 char *snd = (yylex (), yylval);
10497 printf ("\"%s\", \"%s\"\n", fst, snd);
10502 If you compile and run this code, you get:
10505 $ @kbd{flex -osplit-lines.c split-lines.l}
10506 $ @kbd{gcc -osplit-lines split-lines.c -ll}
10507 $ @kbd{printf 'one\ntwo\n' | ./split-lines}
10513 this is because @code{yytext} is a buffer provided for @emph{reading}
10514 in the action, but if you want to keep it, you have to duplicate it
10515 (e.g., using @code{strdup}). Note that the output may depend on how
10516 your implementation of Lex handles @code{yytext}. For instance, when
10517 given the Lex compatibility option @option{-l} (which triggers the
10518 option @samp{%array}) Flex generates a different behavior:
10521 $ @kbd{flex -l -osplit-lines.c split-lines.l}
10522 $ @kbd{gcc -osplit-lines split-lines.c -ll}
10523 $ @kbd{printf 'one\ntwo\n' | ./split-lines}
10528 @node Implementing Gotos/Loops
10529 @section Implementing Gotos/Loops
10532 My simple calculator supports variables, assignments, and functions,
10533 but how can I implement gotos, or loops?
10536 Although very pedagogical, the examples included in the document blur
10537 the distinction to make between the parser---whose job is to recover
10538 the structure of a text and to transmit it to subsequent modules of
10539 the program---and the processing (such as the execution) of this
10540 structure. This works well with so called straight line programs,
10541 i.e., precisely those that have a straightforward execution model:
10542 execute simple instructions one after the others.
10544 @cindex abstract syntax tree
10546 If you want a richer model, you will probably need to use the parser
10547 to construct a tree that does represent the structure it has
10548 recovered; this tree is usually called the @dfn{abstract syntax tree},
10549 or @dfn{AST} for short. Then, walking through this tree,
10550 traversing it in various ways, will enable treatments such as its
10551 execution or its translation, which will result in an interpreter or a
10554 This topic is way beyond the scope of this manual, and the reader is
10555 invited to consult the dedicated literature.
10558 @node Multiple start-symbols
10559 @section Multiple start-symbols
10562 I have several closely related grammars, and I would like to share their
10563 implementations. In fact, I could use a single grammar but with
10564 multiple entry points.
10567 Bison does not support multiple start-symbols, but there is a very
10568 simple means to simulate them. If @code{foo} and @code{bar} are the two
10569 pseudo start-symbols, then introduce two new tokens, say
10570 @code{START_FOO} and @code{START_BAR}, and use them as switches from the
10574 %token START_FOO START_BAR;
10576 start: START_FOO foo
10580 These tokens prevents the introduction of new conflicts. As far as the
10581 parser goes, that is all that is needed.
10583 Now the difficult part is ensuring that the scanner will send these
10584 tokens first. If your scanner is hand-written, that should be
10585 straightforward. If your scanner is generated by Lex, them there is
10586 simple means to do it: recall that anything between @samp{%@{ ... %@}}
10587 after the first @code{%%} is copied verbatim in the top of the generated
10588 @code{yylex} function. Make sure a variable @code{start_token} is
10589 available in the scanner (e.g., a global variable or using
10590 @code{%lex-param} etc.), and use the following:
10593 /* @r{Prologue.} */
10598 int t = start_token;
10603 /* @r{The rules.} */
10607 @node Secure? Conform?
10608 @section Secure? Conform?
10611 Is Bison secure? Does it conform to POSIX?
10614 If you're looking for a guarantee or certification, we don't provide it.
10615 However, Bison is intended to be a reliable program that conforms to the
10616 POSIX specification for Yacc. If you run into problems,
10617 please send us a bug report.
10619 @node I can't build Bison
10620 @section I can't build Bison
10623 I can't build Bison because @command{make} complains that
10624 @code{msgfmt} is not found.
10628 Like most GNU packages with internationalization support, that feature
10629 is turned on by default. If you have problems building in the @file{po}
10630 subdirectory, it indicates that your system's internationalization
10631 support is lacking. You can re-configure Bison with
10632 @option{--disable-nls} to turn off this support, or you can install GNU
10633 gettext from @url{ftp://ftp.gnu.org/gnu/gettext/} and re-configure
10634 Bison. See the file @file{ABOUT-NLS} for more information.
10637 @node Where can I find help?
10638 @section Where can I find help?
10641 I'm having trouble using Bison. Where can I find help?
10644 First, read this fine manual. Beyond that, you can send mail to
10645 @email{help-bison@@gnu.org}. This mailing list is intended to be
10646 populated with people who are willing to answer questions about using
10647 and installing Bison. Please keep in mind that (most of) the people on
10648 the list have aspects of their lives which are not related to Bison (!),
10649 so you may not receive an answer to your question right away. This can
10650 be frustrating, but please try not to honk them off; remember that any
10651 help they provide is purely voluntary and out of the kindness of their
10655 @section Bug Reports
10658 I found a bug. What should I include in the bug report?
10661 Before you send a bug report, make sure you are using the latest
10662 version. Check @url{ftp://ftp.gnu.org/pub/gnu/bison/} or one of its
10663 mirrors. Be sure to include the version number in your bug report. If
10664 the bug is present in the latest version but not in a previous version,
10665 try to determine the most recent version which did not contain the bug.
10667 If the bug is parser-related, you should include the smallest grammar
10668 you can which demonstrates the bug. The grammar file should also be
10669 complete (i.e., I should be able to run it through Bison without having
10670 to edit or add anything). The smaller and simpler the grammar, the
10671 easier it will be to fix the bug.
10673 Include information about your compilation environment, including your
10674 operating system's name and version and your compiler's name and
10675 version. If you have trouble compiling, you should also include a
10676 transcript of the build session, starting with the invocation of
10677 `configure'. Depending on the nature of the bug, you may be asked to
10678 send additional files as well (such as `config.h' or `config.cache').
10680 Patches are most welcome, but not required. That is, do not hesitate to
10681 send a bug report just because you can not provide a fix.
10683 Send bug reports to @email{bug-bison@@gnu.org}.
10685 @node More Languages
10686 @section More Languages
10689 Will Bison ever have C++ and Java support? How about @var{insert your
10690 favorite language here}?
10693 C++ and Java support is there now, and is documented. We'd love to add other
10694 languages; contributions are welcome.
10697 @section Beta Testing
10700 What is involved in being a beta tester?
10703 It's not terribly involved. Basically, you would download a test
10704 release, compile it, and use it to build and run a parser or two. After
10705 that, you would submit either a bug report or a message saying that
10706 everything is okay. It is important to report successes as well as
10707 failures because test releases eventually become mainstream releases,
10708 but only if they are adequately tested. If no one tests, development is
10709 essentially halted.
10711 Beta testers are particularly needed for operating systems to which the
10712 developers do not have easy access. They currently have easy access to
10713 recent GNU/Linux and Solaris versions. Reports about other operating
10714 systems are especially welcome.
10716 @node Mailing Lists
10717 @section Mailing Lists
10720 How do I join the help-bison and bug-bison mailing lists?
10723 See @url{http://lists.gnu.org/}.
10725 @c ================================================= Table of Symbols
10727 @node Table of Symbols
10728 @appendix Bison Symbols
10729 @cindex Bison symbols, table of
10730 @cindex symbols in Bison, table of
10732 @deffn {Variable} @@$
10733 In an action, the location of the left-hand side of the rule.
10734 @xref{Locations, , Locations Overview}.
10737 @deffn {Variable} @@@var{n}
10738 In an action, the location of the @var{n}-th symbol of the right-hand
10739 side of the rule. @xref{Locations, , Locations Overview}.
10742 @deffn {Variable} @@@var{name}
10743 In an action, the location of a symbol addressed by name.
10744 @xref{Locations, , Locations Overview}.
10747 @deffn {Variable} @@[@var{name}]
10748 In an action, the location of a symbol addressed by name.
10749 @xref{Locations, , Locations Overview}.
10752 @deffn {Variable} $$
10753 In an action, the semantic value of the left-hand side of the rule.
10757 @deffn {Variable} $@var{n}
10758 In an action, the semantic value of the @var{n}-th symbol of the
10759 right-hand side of the rule. @xref{Actions}.
10762 @deffn {Variable} $@var{name}
10763 In an action, the semantic value of a symbol addressed by name.
10767 @deffn {Variable} $[@var{name}]
10768 In an action, the semantic value of a symbol addressed by name.
10772 @deffn {Delimiter} %%
10773 Delimiter used to separate the grammar rule section from the
10774 Bison declarations section or the epilogue.
10775 @xref{Grammar Layout, ,The Overall Layout of a Bison Grammar}.
10778 @c Don't insert spaces, or check the DVI output.
10779 @deffn {Delimiter} %@{@var{code}%@}
10780 All code listed between @samp{%@{} and @samp{%@}} is copied directly to
10781 the output file uninterpreted. Such code forms the prologue of the input
10782 file. @xref{Grammar Outline, ,Outline of a Bison
10786 @deffn {Directive} %?@{@var{expression}@}
10787 Predicate actions. This is a type of action clause that may appear in
10788 rules. The expression is evaluated, and if false, causes a syntax error. In
10789 GLR parsers during nondeterministic operation,
10790 this silently causes an alternative parse to die. During deterministic
10791 operation, it is the same as the effect of YYERROR.
10792 @xref{Semantic Predicates}.
10794 This feature is experimental.
10795 More user feedback will help to determine whether it should become a permanent
10799 @deffn {Construct} /*@dots{}*/
10800 Comment delimiters, as in C.
10803 @deffn {Delimiter} :
10804 Separates a rule's result from its components. @xref{Rules, ,Syntax of
10808 @deffn {Delimiter} ;
10809 Terminates a rule. @xref{Rules, ,Syntax of Grammar Rules}.
10812 @deffn {Delimiter} |
10813 Separates alternate rules for the same result nonterminal.
10814 @xref{Rules, ,Syntax of Grammar Rules}.
10817 @deffn {Directive} <*>
10818 Used to define a default tagged @code{%destructor} or default tagged
10821 This feature is experimental.
10822 More user feedback will help to determine whether it should become a permanent
10825 @xref{Destructor Decl, , Freeing Discarded Symbols}.
10828 @deffn {Directive} <>
10829 Used to define a default tagless @code{%destructor} or default tagless
10832 This feature is experimental.
10833 More user feedback will help to determine whether it should become a permanent
10836 @xref{Destructor Decl, , Freeing Discarded Symbols}.
10839 @deffn {Symbol} $accept
10840 The predefined nonterminal whose only rule is @samp{$accept: @var{start}
10841 $end}, where @var{start} is the start symbol. @xref{Start Decl, , The
10842 Start-Symbol}. It cannot be used in the grammar.
10845 @deffn {Directive} %code @{@var{code}@}
10846 @deffnx {Directive} %code @var{qualifier} @{@var{code}@}
10847 Insert @var{code} verbatim into output parser source.
10848 @xref{Decl Summary,,%code}.
10851 @deffn {Directive} %debug
10852 Equip the parser for debugging. @xref{Decl Summary}.
10856 @deffn {Directive} %default-prec
10857 Assign a precedence to rules that lack an explicit @samp{%prec}
10858 modifier. @xref{Contextual Precedence, ,Context-Dependent
10863 @deffn {Directive} %define @var{define-variable}
10864 @deffnx {Directive} %define @var{define-variable} @var{value}
10865 @deffnx {Directive} %define @var{define-variable} "@var{value}"
10866 Define a variable to adjust Bison's behavior.
10867 @xref{Decl Summary,,%define}.
10870 @deffn {Directive} %defines
10871 Bison declaration to create a header file meant for the scanner.
10872 @xref{Decl Summary}.
10875 @deffn {Directive} %defines @var{defines-file}
10876 Same as above, but save in the file @var{defines-file}.
10877 @xref{Decl Summary}.
10880 @deffn {Directive} %destructor
10881 Specify how the parser should reclaim the memory associated to
10882 discarded symbols. @xref{Destructor Decl, , Freeing Discarded Symbols}.
10885 @deffn {Directive} %dprec
10886 Bison declaration to assign a precedence to a rule that is used at parse
10887 time to resolve reduce/reduce conflicts. @xref{GLR Parsers, ,Writing
10891 @deffn {Symbol} $end
10892 The predefined token marking the end of the token stream. It cannot be
10893 used in the grammar.
10896 @deffn {Symbol} error
10897 A token name reserved for error recovery. This token may be used in
10898 grammar rules so as to allow the Bison parser to recognize an error in
10899 the grammar without halting the process. In effect, a sentence
10900 containing an error may be recognized as valid. On a syntax error, the
10901 token @code{error} becomes the current lookahead token. Actions
10902 corresponding to @code{error} are then executed, and the lookahead
10903 token is reset to the token that originally caused the violation.
10904 @xref{Error Recovery}.
10907 @deffn {Directive} %error-verbose
10908 An obsolete directive standing for @samp{%define parse.error verbose}.
10911 @deffn {Directive} %file-prefix "@var{prefix}"
10912 Bison declaration to set the prefix of the output files. @xref{Decl
10916 @deffn {Directive} %glr-parser
10917 Bison declaration to produce a GLR parser. @xref{GLR
10918 Parsers, ,Writing GLR Parsers}.
10921 @deffn {Directive} %initial-action
10922 Run user code before parsing. @xref{Initial Action Decl, , Performing Actions before Parsing}.
10925 @deffn {Directive} %language
10926 Specify the programming language for the generated parser.
10927 @xref{Decl Summary}.
10930 @deffn {Directive} %left
10931 Bison declaration to assign precedence and left associativity to token(s).
10932 @xref{Precedence Decl, ,Operator Precedence}.
10935 @deffn {Directive} %lex-param @{@var{argument-declaration}@} @dots{}
10936 Bison declaration to specifying additional arguments that
10937 @code{yylex} should accept. @xref{Pure Calling,, Calling Conventions
10941 @deffn {Directive} %merge
10942 Bison declaration to assign a merging function to a rule. If there is a
10943 reduce/reduce conflict with a rule having the same merging function, the
10944 function is applied to the two semantic values to get a single result.
10945 @xref{GLR Parsers, ,Writing GLR Parsers}.
10948 @deffn {Directive} %name-prefix "@var{prefix}"
10949 Bison declaration to rename the external symbols. @xref{Decl Summary}.
10953 @deffn {Directive} %no-default-prec
10954 Do not assign a precedence to rules that lack an explicit @samp{%prec}
10955 modifier. @xref{Contextual Precedence, ,Context-Dependent
10960 @deffn {Directive} %no-lines
10961 Bison declaration to avoid generating @code{#line} directives in the
10962 parser file. @xref{Decl Summary}.
10965 @deffn {Directive} %nonassoc
10966 Bison declaration to assign precedence and nonassociativity to token(s).
10967 @xref{Precedence Decl, ,Operator Precedence}.
10970 @deffn {Directive} %output "@var{file}"
10971 Bison declaration to set the name of the parser file. @xref{Decl
10975 @deffn {Directive} %param @{@var{argument-declaration}@} @dots{}
10976 Bison declaration to specify additional arguments that both
10977 @code{yylex} and @code{yyparse} should accept. @xref{Parser Function,, The
10978 Parser Function @code{yyparse}}.
10981 @deffn {Directive} %parse-param @{@var{argument-declaration}@} @dots{}
10982 Bison declaration to specify additional arguments that @code{yyparse}
10983 should accept. @xref{Parser Function,, The Parser Function @code{yyparse}}.
10986 @deffn {Directive} %prec
10987 Bison declaration to assign a precedence to a specific rule.
10988 @xref{Contextual Precedence, ,Context-Dependent Precedence}.
10991 @deffn {Directive} %precedence
10992 Bison declaration to assign precedence to token(s), but no associativity
10993 @xref{Precedence Decl, ,Operator Precedence}.
10996 @deffn {Directive} %pure-parser
10997 Deprecated version of @samp{%define api.pure} (@pxref{Decl Summary, ,%define}),
10998 for which Bison is more careful to warn about unreasonable usage.
11001 @deffn {Directive} %require "@var{version}"
11002 Require version @var{version} or higher of Bison. @xref{Require Decl, ,
11003 Require a Version of Bison}.
11006 @deffn {Directive} %right
11007 Bison declaration to assign precedence and right associativity to token(s).
11008 @xref{Precedence Decl, ,Operator Precedence}.
11011 @deffn {Directive} %skeleton
11012 Specify the skeleton to use; usually for development.
11013 @xref{Decl Summary}.
11016 @deffn {Directive} %start
11017 Bison declaration to specify the start symbol. @xref{Start Decl, ,The
11021 @deffn {Directive} %token
11022 Bison declaration to declare token(s) without specifying precedence.
11023 @xref{Token Decl, ,Token Type Names}.
11026 @deffn {Directive} %token-table
11027 Bison declaration to include a token name table in the parser file.
11028 @xref{Decl Summary}.
11031 @deffn {Directive} %type
11032 Bison declaration to declare nonterminals. @xref{Type Decl,
11033 ,Nonterminal Symbols}.
11036 @deffn {Symbol} $undefined
11037 The predefined token onto which all undefined values returned by
11038 @code{yylex} are mapped. It cannot be used in the grammar, rather, use
11042 @deffn {Directive} %union
11043 Bison declaration to specify several possible data types for semantic
11044 values. @xref{Union Decl, ,The Collection of Value Types}.
11047 @deffn {Macro} YYABORT
11048 Macro to pretend that an unrecoverable syntax error has occurred, by
11049 making @code{yyparse} return 1 immediately. The error reporting
11050 function @code{yyerror} is not called. @xref{Parser Function, ,The
11051 Parser Function @code{yyparse}}.
11053 For Java parsers, this functionality is invoked using @code{return YYABORT;}
11057 @deffn {Macro} YYACCEPT
11058 Macro to pretend that a complete utterance of the language has been
11059 read, by making @code{yyparse} return 0 immediately.
11060 @xref{Parser Function, ,The Parser Function @code{yyparse}}.
11062 For Java parsers, this functionality is invoked using @code{return YYACCEPT;}
11066 @deffn {Macro} YYBACKUP
11067 Macro to discard a value from the parser stack and fake a lookahead
11068 token. @xref{Action Features, ,Special Features for Use in Actions}.
11071 @deffn {Variable} yychar
11072 External integer variable that contains the integer value of the
11073 lookahead token. (In a pure parser, it is a local variable within
11074 @code{yyparse}.) Error-recovery rule actions may examine this variable.
11075 @xref{Action Features, ,Special Features for Use in Actions}.
11078 @deffn {Variable} yyclearin
11079 Macro used in error-recovery rule actions. It clears the previous
11080 lookahead token. @xref{Error Recovery}.
11083 @deffn {Macro} YYDEBUG
11084 Macro to define to equip the parser with tracing code. @xref{Tracing,
11085 ,Tracing Your Parser}.
11088 @deffn {Variable} yydebug
11089 External integer variable set to zero by default. If @code{yydebug}
11090 is given a nonzero value, the parser will output information on input
11091 symbols and parser action. @xref{Tracing, ,Tracing Your Parser}.
11094 @deffn {Macro} yyerrok
11095 Macro to cause parser to recover immediately to its normal mode
11096 after a syntax error. @xref{Error Recovery}.
11099 @deffn {Macro} YYERROR
11100 Macro to pretend that a syntax error has just been detected: call
11101 @code{yyerror} and then perform normal error recovery if possible
11102 (@pxref{Error Recovery}), or (if recovery is impossible) make
11103 @code{yyparse} return 1. @xref{Error Recovery}.
11105 For Java parsers, this functionality is invoked using @code{return YYERROR;}
11109 @deffn {Function} yyerror
11110 User-supplied function to be called by @code{yyparse} on error.
11111 @xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}.
11114 @deffn {Macro} YYERROR_VERBOSE
11115 An obsolete macro used in the @file{yacc.c} skeleton, that you define
11116 with @code{#define} in the prologue to request verbose, specific error
11117 message strings when @code{yyerror} is called. It doesn't matter what
11118 definition you use for @code{YYERROR_VERBOSE}, just whether you define
11119 it. Using @samp{%define parse.error verbose} is preferred
11120 (@pxref{Error Reporting, ,The Error Reporting Function @code{yyerror}}).
11123 @deffn {Macro} YYINITDEPTH
11124 Macro for specifying the initial size of the parser stack.
11125 @xref{Memory Management}.
11128 @deffn {Function} yylex
11129 User-supplied lexical analyzer function, called with no arguments to get
11130 the next token. @xref{Lexical, ,The Lexical Analyzer Function
11134 @deffn {Macro} YYLEX_PARAM
11135 An obsolete macro for specifying an extra argument (or list of extra
11136 arguments) for @code{yyparse} to pass to @code{yylex}. The use of this
11137 macro is deprecated, and is supported only for Yacc like parsers.
11138 @xref{Pure Calling,, Calling Conventions for Pure Parsers}.
11141 @deffn {Variable} yylloc
11142 External variable in which @code{yylex} should place the line and column
11143 numbers associated with a token. (In a pure parser, it is a local
11144 variable within @code{yyparse}, and its address is passed to
11146 You can ignore this variable if you don't use the @samp{@@} feature in the
11148 @xref{Token Locations, ,Textual Locations of Tokens}.
11149 In semantic actions, it stores the location of the lookahead token.
11150 @xref{Actions and Locations, ,Actions and Locations}.
11153 @deffn {Type} YYLTYPE
11154 Data type of @code{yylloc}; by default, a structure with four
11155 members. @xref{Location Type, , Data Types of Locations}.
11158 @deffn {Variable} yylval
11159 External variable in which @code{yylex} should place the semantic
11160 value associated with a token. (In a pure parser, it is a local
11161 variable within @code{yyparse}, and its address is passed to
11163 @xref{Token Values, ,Semantic Values of Tokens}.
11164 In semantic actions, it stores the semantic value of the lookahead token.
11165 @xref{Actions, ,Actions}.
11168 @deffn {Macro} YYMAXDEPTH
11169 Macro for specifying the maximum size of the parser stack. @xref{Memory
11173 @deffn {Variable} yynerrs
11174 Global variable which Bison increments each time it reports a syntax error.
11175 (In a pure parser, it is a local variable within @code{yyparse}. In a
11176 pure push parser, it is a member of yypstate.)
11177 @xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}.
11180 @deffn {Function} yyparse
11181 The parser function produced by Bison; call this function to start
11182 parsing. @xref{Parser Function, ,The Parser Function @code{yyparse}}.
11185 @deffn {Function} yypstate_delete
11186 The function to delete a parser instance, produced by Bison in push mode;
11187 call this function to delete the memory associated with a parser.
11188 @xref{Parser Delete Function, ,The Parser Delete Function
11189 @code{yypstate_delete}}.
11190 (The current push parsing interface is experimental and may evolve.
11191 More user feedback will help to stabilize it.)
11194 @deffn {Function} yypstate_new
11195 The function to create a parser instance, produced by Bison in push mode;
11196 call this function to create a new parser.
11197 @xref{Parser Create Function, ,The Parser Create Function
11198 @code{yypstate_new}}.
11199 (The current push parsing interface is experimental and may evolve.
11200 More user feedback will help to stabilize it.)
11203 @deffn {Function} yypull_parse
11204 The parser function produced by Bison in push mode; call this function to
11205 parse the rest of the input stream.
11206 @xref{Pull Parser Function, ,The Pull Parser Function
11207 @code{yypull_parse}}.
11208 (The current push parsing interface is experimental and may evolve.
11209 More user feedback will help to stabilize it.)
11212 @deffn {Function} yypush_parse
11213 The parser function produced by Bison in push mode; call this function to
11214 parse a single token. @xref{Push Parser Function, ,The Push Parser Function
11215 @code{yypush_parse}}.
11216 (The current push parsing interface is experimental and may evolve.
11217 More user feedback will help to stabilize it.)
11220 @deffn {Macro} YYPARSE_PARAM
11221 An obsolete macro for specifying the name of a parameter that
11222 @code{yyparse} should accept. The use of this macro is deprecated, and
11223 is supported only for Yacc like parsers. @xref{Pure Calling,, Calling
11224 Conventions for Pure Parsers}.
11227 @deffn {Macro} YYRECOVERING
11228 The expression @code{YYRECOVERING ()} yields 1 when the parser
11229 is recovering from a syntax error, and 0 otherwise.
11230 @xref{Action Features, ,Special Features for Use in Actions}.
11233 @deffn {Macro} YYSTACK_USE_ALLOCA
11234 Macro used to control the use of @code{alloca} when the
11235 deterministic parser in C needs to extend its stacks. If defined to 0,
11236 the parser will use @code{malloc} to extend its stacks. If defined to
11237 1, the parser will use @code{alloca}. Values other than 0 and 1 are
11238 reserved for future Bison extensions. If not defined,
11239 @code{YYSTACK_USE_ALLOCA} defaults to 0.
11241 In the all-too-common case where your code may run on a host with a
11242 limited stack and with unreliable stack-overflow checking, you should
11243 set @code{YYMAXDEPTH} to a value that cannot possibly result in
11244 unchecked stack overflow on any of your target hosts when
11245 @code{alloca} is called. You can inspect the code that Bison
11246 generates in order to determine the proper numeric values. This will
11247 require some expertise in low-level implementation details.
11250 @deffn {Type} YYSTYPE
11251 Data type of semantic values; @code{int} by default.
11252 @xref{Value Type, ,Data Types of Semantic Values}.
11260 @item Accepting State
11261 A state whose only action is the accept action.
11262 The accepting state is thus a consistent state.
11263 @xref{Understanding,,}.
11265 @item Backus-Naur Form (BNF; also called ``Backus Normal Form'')
11266 Formal method of specifying context-free grammars originally proposed
11267 by John Backus, and slightly improved by Peter Naur in his 1960-01-02
11268 committee document contributing to what became the Algol 60 report.
11269 @xref{Language and Grammar, ,Languages and Context-Free Grammars}.
11271 @item Consistent State
11272 A state containing only one possible action.
11273 @xref{Decl Summary,,lr.default-reductions}.
11275 @item Context-free grammars
11276 Grammars specified as rules that can be applied regardless of context.
11277 Thus, if there is a rule which says that an integer can be used as an
11278 expression, integers are allowed @emph{anywhere} an expression is
11279 permitted. @xref{Language and Grammar, ,Languages and Context-Free
11282 @item Default Reduction
11283 The reduction that a parser should perform if the current parser state
11284 contains no other action for the lookahead token.
11285 In permitted parser states, Bison declares the reduction with the
11286 largest lookahead set to be the default reduction and removes that
11288 @xref{Decl Summary,,lr.default-reductions}.
11290 @item Dynamic allocation
11291 Allocation of memory that occurs during execution, rather than at
11292 compile time or on entry to a function.
11295 Analogous to the empty set in set theory, the empty string is a
11296 character string of length zero.
11298 @item Finite-state stack machine
11299 A ``machine'' that has discrete states in which it is said to exist at
11300 each instant in time. As input to the machine is processed, the
11301 machine moves from state to state as specified by the logic of the
11302 machine. In the case of the parser, the input is the language being
11303 parsed, and the states correspond to various stages in the grammar
11304 rules. @xref{Algorithm, ,The Bison Parser Algorithm}.
11306 @item Generalized LR (GLR)
11307 A parsing algorithm that can handle all context-free grammars, including those
11308 that are not LR(1). It resolves situations that Bison's
11309 deterministic parsing
11310 algorithm cannot by effectively splitting off multiple parsers, trying all
11311 possible parsers, and discarding those that fail in the light of additional
11312 right context. @xref{Generalized LR Parsing, ,Generalized
11316 A language construct that is (in general) grammatically divisible;
11317 for example, `expression' or `declaration' in C@.
11318 @xref{Language and Grammar, ,Languages and Context-Free Grammars}.
11321 A minimal LR(1) parser table generation algorithm.
11322 That is, given any context-free grammar, IELR(1) generates
11323 parser tables with the full language recognition power of canonical
11324 LR(1) but with nearly the same number of parser states as
11326 This reduction in parser states is often an order of magnitude.
11327 More importantly, because canonical LR(1)'s extra parser
11328 states may contain duplicate conflicts in the case of
11329 non-LR(1) grammars, the number of conflicts for
11330 IELR(1) is often an order of magnitude less as well.
11331 This can significantly reduce the complexity of developing of a grammar.
11332 @xref{Decl Summary,,lr.type}.
11334 @item Infix operator
11335 An arithmetic operator that is placed between the operands on which it
11336 performs some operation.
11339 A continuous flow of data between devices or programs.
11341 @item LAC (Lookahead Correction)
11342 A parsing mechanism that fixes the problem of delayed syntax error
11343 detection, which is caused by LR state merging, default reductions, and
11344 the use of @code{%nonassoc}. Delayed syntax error detection results in
11345 unexpected semantic actions, initiation of error recovery in the wrong
11346 syntactic context, and an incorrect list of expected tokens in a verbose
11347 syntax error message. @xref{Decl Summary,,parse.lac}.
11349 @item Language construct
11350 One of the typical usage schemas of the language. For example, one of
11351 the constructs of the C language is the @code{if} statement.
11352 @xref{Language and Grammar, ,Languages and Context-Free Grammars}.
11354 @item Left associativity
11355 Operators having left associativity are analyzed from left to right:
11356 @samp{a+b+c} first computes @samp{a+b} and then combines with
11357 @samp{c}. @xref{Precedence, ,Operator Precedence}.
11359 @item Left recursion
11360 A rule whose result symbol is also its first component symbol; for
11361 example, @samp{expseq1 : expseq1 ',' exp;}. @xref{Recursion, ,Recursive
11364 @item Left-to-right parsing
11365 Parsing a sentence of a language by analyzing it token by token from
11366 left to right. @xref{Algorithm, ,The Bison Parser Algorithm}.
11368 @item Lexical analyzer (scanner)
11369 A function that reads an input stream and returns tokens one by one.
11370 @xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}.
11372 @item Lexical tie-in
11373 A flag, set by actions in the grammar rules, which alters the way
11374 tokens are parsed. @xref{Lexical Tie-ins}.
11376 @item Literal string token
11377 A token which consists of two or more fixed characters. @xref{Symbols}.
11379 @item Lookahead token
11380 A token already read but not yet shifted. @xref{Lookahead, ,Lookahead
11384 The class of context-free grammars that Bison (like most other parser
11385 generators) can handle by default; a subset of LR(1).
11386 @xref{Mystery Conflicts, ,Mysterious Reduce/Reduce Conflicts}.
11389 The class of context-free grammars in which at most one token of
11390 lookahead is needed to disambiguate the parsing of any piece of input.
11392 @item Nonterminal symbol
11393 A grammar symbol standing for a grammatical construct that can
11394 be expressed through rules in terms of smaller constructs; in other
11395 words, a construct that is not a token. @xref{Symbols}.
11398 A function that recognizes valid sentences of a language by analyzing
11399 the syntax structure of a set of tokens passed to it from a lexical
11402 @item Postfix operator
11403 An arithmetic operator that is placed after the operands upon which it
11404 performs some operation.
11407 Replacing a string of nonterminals and/or terminals with a single
11408 nonterminal, according to a grammar rule. @xref{Algorithm, ,The Bison
11412 A reentrant subprogram is a subprogram which can be in invoked any
11413 number of times in parallel, without interference between the various
11414 invocations. @xref{Pure Decl, ,A Pure (Reentrant) Parser}.
11416 @item Reverse polish notation
11417 A language in which all operators are postfix operators.
11419 @item Right recursion
11420 A rule whose result symbol is also its last component symbol; for
11421 example, @samp{expseq1: exp ',' expseq1;}. @xref{Recursion, ,Recursive
11425 In computer languages, the semantics are specified by the actions
11426 taken for each instance of the language, i.e., the meaning of
11427 each statement. @xref{Semantics, ,Defining Language Semantics}.
11430 A parser is said to shift when it makes the choice of analyzing
11431 further input from the stream rather than reducing immediately some
11432 already-recognized rule. @xref{Algorithm, ,The Bison Parser Algorithm}.
11434 @item Single-character literal
11435 A single character that is recognized and interpreted as is.
11436 @xref{Grammar in Bison, ,From Formal Rules to Bison Input}.
11439 The nonterminal symbol that stands for a complete valid utterance in
11440 the language being parsed. The start symbol is usually listed as the
11441 first nonterminal symbol in a language specification.
11442 @xref{Start Decl, ,The Start-Symbol}.
11445 A data structure where symbol names and associated data are stored
11446 during parsing to allow for recognition and use of existing
11447 information in repeated uses of a symbol. @xref{Multi-function Calc}.
11450 An error encountered during parsing of an input stream due to invalid
11451 syntax. @xref{Error Recovery}.
11454 A basic, grammatically indivisible unit of a language. The symbol
11455 that describes a token in the grammar is a terminal symbol.
11456 The input of the Bison parser is a stream of tokens which comes from
11457 the lexical analyzer. @xref{Symbols}.
11459 @item Terminal symbol
11460 A grammar symbol that has no rules in the grammar and therefore is
11461 grammatically indivisible. The piece of text it represents is a token.
11462 @xref{Language and Grammar, ,Languages and Context-Free Grammars}.
11465 @node Copying This Manual
11466 @appendix Copying This Manual
11476 @c LocalWords: texinfo setfilename settitle setchapternewpage finalout texi FSF
11477 @c LocalWords: ifinfo smallbook shorttitlepage titlepage GPL FIXME iftex FSF's
11478 @c LocalWords: akim fn cp syncodeindex vr tp synindex dircategory direntry Naur
11479 @c LocalWords: ifset vskip pt filll insertcopying sp ISBN Etienne Suvasa Multi
11480 @c LocalWords: ifnottex yyparse detailmenu GLR RPN Calc var Decls Rpcalc multi
11481 @c LocalWords: rpcalc Lexer Expr ltcalc mfcalc yylex defaultprec Donnelly Gotos
11482 @c LocalWords: yyerror pxref LR yylval cindex dfn LALR samp gpl BNF xref yypush
11483 @c LocalWords: const int paren ifnotinfo AC noindent emph expr stmt findex lr
11484 @c LocalWords: glr YYSTYPE TYPENAME prog dprec printf decl init stmtMerge POSIX
11485 @c LocalWords: pre STDC GNUC endif yy YY alloca lf stddef stdlib YYDEBUG yypull
11486 @c LocalWords: NUM exp subsubsection kbd Ctrl ctype EOF getchar isdigit nonfree
11487 @c LocalWords: ungetc stdin scanf sc calc ulator ls lm cc NEG prec yyerrok rr
11488 @c LocalWords: longjmp fprintf stderr yylloc YYLTYPE cos ln Stallman Destructor
11489 @c LocalWords: smallexample symrec val tptr FNCT fnctptr func struct sym enum
11490 @c LocalWords: fnct putsym getsym fname arith fncts atan ptr malloc sizeof Lex
11491 @c LocalWords: strlen strcpy fctn strcmp isalpha symbuf realloc isalnum DOTDOT
11492 @c LocalWords: ptypes itype YYPRINT trigraphs yytname expseq vindex dtype Unary
11493 @c LocalWords: Rhs YYRHSLOC LE nonassoc op deffn typeless yynerrs nonterminal
11494 @c LocalWords: yychar yydebug msg YYNTOKENS YYNNTS YYNRULES YYNSTATES reentrant
11495 @c LocalWords: cparse clex deftypefun NE defmac YYACCEPT YYABORT param yypstate
11496 @c LocalWords: strncmp intval tindex lvalp locp llocp typealt YYBACKUP subrange
11497 @c LocalWords: YYEMPTY YYEOF YYRECOVERING yyclearin GE def UMINUS maybeword loc
11498 @c LocalWords: Johnstone Shamsa Sadaf Hussain Tomita TR uref YYMAXDEPTH inline
11499 @c LocalWords: YYINITDEPTH stmnts ref stmnt initdcl maybeasm notype Lookahead
11500 @c LocalWords: hexflag STR exdent itemset asis DYYDEBUG YYFPRINTF args Autoconf
11501 @c LocalWords: infile ypp yxx outfile itemx tex leaderfill Troubleshouting sqrt
11502 @c LocalWords: hbox hss hfill tt ly yyin fopen fclose ofirst gcc ll lookahead
11503 @c LocalWords: nbar yytext fst snd osplit ntwo strdup AST Troublereporting th
11504 @c LocalWords: YYSTACK DVI fdl printindex IELR nondeterministic nonterminals ps
11505 @c LocalWords: subexpressions declarator nondeferred config libintl postfix LAC
11506 @c LocalWords: preprocessor nonpositive unary nonnumeric typedef extern rhs
11507 @c LocalWords: yytokentype filename destructor multicharacter nonnull EBCDIC
11508 @c LocalWords: lvalue nonnegative XNUM CHR chr TAGLESS tagless stdout api TOK
11509 @c LocalWords: destructors Reentrancy nonreentrant subgrammar nonassociative
11510 @c LocalWords: deffnx namespace xml goto lalr ielr runtime lex yacc yyps env
11511 @c LocalWords: yystate variadic Unshift NLS gettext po UTF Automake LOCALEDIR
11512 @c LocalWords: YYENABLE bindtextdomain Makefile DEFS CPPFLAGS DBISON DeRemer
11513 @c LocalWords: autoreconf Pennello multisets nondeterminism Generalised baz
11514 @c LocalWords: redeclare automata Dparse localedir datadir XSLT midrule Wno
11515 @c LocalWords: makefiles Graphviz multitable headitem hh basename Doxygen fno
11516 @c LocalWords: doxygen ival sval deftypemethod deallocate pos deftypemethodx
11517 @c LocalWords: Ctor defcv defcvx arg accessors arithmetics CPP ifndef CALCXX
11518 @c LocalWords: lexer's calcxx bool LPAREN RPAREN deallocation cerrno climits
11519 @c LocalWords: cstdlib Debian undef yywrap unput noyywrap nounput zA yyleng
11520 @c LocalWords: errno strtol ERANGE str strerror iostream argc argv Javadoc
11521 @c LocalWords: bytecode initializers superclass stype ASTNode autoboxing nls
11522 @c LocalWords: toString deftypeivar deftypeivarx deftypeop YYParser strictfp
11523 @c LocalWords: superclasses boolean getErrorVerbose setErrorVerbose deftypecv
11524 @c LocalWords: getDebugStream setDebugStream getDebugLevel setDebugLevel url
11525 @c LocalWords: bisonVersion deftypecvx bisonSkeleton getStartPos getEndPos
11526 @c LocalWords: getLVal defvar deftypefn deftypefnx gotos msgfmt
11527 @c LocalWords: subdirectory Solaris nonassociativity
11529 @c Local Variables:
11530 @c ispell-dictionary: "american"