]> git.saurik.com Git - bison.git/blame_incremental - doc/bison.texinfo
Simplify handling of '.' and '-' after unbracketed named references.
[bison.git] / doc / bison.texinfo
... / ...
CommitLineData
1\input texinfo @c -*-texinfo-*-
2@comment %**start of header
3@setfilename bison.info
4@include version.texi
5@settitle Bison @value{VERSION}
6@setchapternewpage odd
7
8@finalout
9
10@c SMALL BOOK version
11@c This edition has been formatted so that you can format and print it in
12@c the smallbook format.
13@c @smallbook
14
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.
17@c @set defaultprec
18
19@ifnotinfo
20@syncodeindex fn cp
21@syncodeindex vr cp
22@syncodeindex tp cp
23@end ifnotinfo
24@ifinfo
25@synindex fn cp
26@synindex vr cp
27@synindex tp cp
28@end ifinfo
29@comment %**end of header
30
31@copying
32
33This manual (@value{UPDATED}) is for GNU Bison (version
34@value{VERSION}), the GNU parser generator.
35
36Copyright @copyright{} 1988-1993, 1995, 1998-2011 Free Software
37Foundation, Inc.
38
39@quotation
40Permission is granted to copy, distribute and/or modify this document
41under the terms of the GNU Free Documentation License,
42Version 1.3 or any later version published by the Free Software
43Foundation; with no Invariant Sections, with the Front-Cover texts
44being ``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.''
47
48(a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
49modify this GNU manual. Buying copies from the FSF
50supports it in developing GNU and promoting software
51freedom.''
52@end quotation
53@end copying
54
55@dircategory Software development
56@direntry
57* bison: (bison). GNU parser generator (Yacc replacement).
58@end direntry
59
60@titlepage
61@title Bison
62@subtitle The Yacc-compatible Parser Generator
63@subtitle @value{UPDATED}, Bison Version @value{VERSION}
64
65@author by Charles Donnelly and Richard Stallman
66
67@page
68@vskip 0pt plus 1filll
69@insertcopying
70@sp 2
71Published by the Free Software Foundation @*
7251 Franklin Street, Fifth Floor @*
73Boston, MA 02110-1301 USA @*
74Printed copies are available from the Free Software Foundation.@*
75ISBN 1-882114-44-2
76@sp 2
77Cover art by Etienne Suvasa.
78@end titlepage
79
80@contents
81
82@ifnottex
83@node Top
84@top Bison
85@insertcopying
86@end ifnottex
87
88@menu
89* Introduction::
90* Conditions::
91* Copying:: The GNU General Public License says
92 how you can copy and share Bison.
93
94Tutorial sections:
95* Concepts:: Basic concepts for understanding Bison.
96* Examples:: Three simple explained examples of using Bison.
97
98Reference sections:
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.
113
114@detailmenu
115 --- The Detailed Node Listing ---
116
117The Concepts of Bison
118
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.
132
133Writing GLR Parsers
134
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.
140
141Examples
142
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.
152
153Reverse Polish Notation Calculator
154
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.
162
163Grammar Rules for @code{rpcalc}
164
165* Rpcalc Input::
166* Rpcalc Line::
167* Rpcalc Expr::
168
169Location Tracking Calculator: @code{ltcalc}
170
171* Ltcalc Declarations:: Bison and C declarations for ltcalc.
172* Ltcalc Rules:: Grammar rules for ltcalc, with explanations.
173* Ltcalc Lexer:: The lexical analyzer.
174
175Multi-Function Calculator: @code{mfcalc}
176
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.
180
181Bison Grammar Files
182
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.
191
192Outline of a Bison Grammar
193
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.
199
200Defining Language Semantics
201
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.
210
211Tracking Locations
212
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.
216
217Bison Declarations
218
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.
231
232Parser C-Language Interface
233
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}
240 which reads tokens.
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
244 native language.
245
246The Lexical Analyzer Function @code{yylex}
247
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
253 actions want that.
254* Pure Calling:: How the calling convention differs in a pure parser
255 (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}).
256
257The Bison Parser Algorithm
258
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.
268
269Operator Precedence
270
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.
276
277Handling Context Dependencies
278
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.
283
284Debugging Your Parser
285
286* Understanding:: Understanding the structure of your parser.
287* Tracing:: Tracing the execution of your parser.
288
289Invoking Bison
290
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}.
295
296Parsers Written In Other Languages
297
298* C++ Parsers:: The interface to generate C++ parser classes
299* Java Parsers:: The interface to generate Java parser classes
300
301C++ Parsers
302
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
309
310A Complete C++ Example
311
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
317
318Java Parsers
319
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
328
329Frequently Asked Questions
330
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
343
344Copying This Manual
345
346* Copying This Manual:: License for copying this manual.
347
348@end detailmenu
349@end menu
350
351@node Introduction
352@unnumbered Introduction
353@cindex introduction
354
355@dfn{Bison} is a general-purpose parser generator that converts an
356annotated context-free grammar into a deterministic LR or
357generalized LR (GLR) parser employing
358LALR(1), IELR(1), or canonical LR(1)
359parser tables.
360Once you are proficient with Bison, you can use it to develop a wide
361range of language parsers, from those used in simple desk calculators to
362complex programming languages.
363
364Bison is upward compatible with Yacc: all properly-written Yacc grammars
365ought to work with Bison with no change. Anyone familiar with Yacc
366should be able to use Bison with little trouble. You need to be fluent in
367C or C++ programming in order to use Bison or to understand this manual.
368
369We begin with tutorial chapters that explain the basic concepts of using
370Bison and show three explained examples, each building on the last. If you
371don't know Bison or Yacc, start by reading these chapters. Reference
372chapters follow which describe specific aspects of Bison in detail.
373
374Bison was written primarily by Robert Corbett; Richard Stallman made it
375Yacc-compatible. Wilfred Hansen of Carnegie Mellon University added
376multi-character string literals and other features.
377
378This edition corresponds to version @value{VERSION} of Bison.
379
380@node Conditions
381@unnumbered Conditions for Using Bison
382
383The distribution terms for Bison-generated parsers permit using the
384parsers in nonfree programs. Before Bison version 2.2, these extra
385permissions applied only when Bison was generating LALR(1)
386parsers in C@. And before Bison version 1.24, Bison-generated
387parsers could be used only in programs that were free software.
388
389The other GNU programming tools, such as the GNU C
390compiler, have never
391had such a requirement. They could always be used for nonfree
392software. The reason Bison was different was not due to a special
393policy decision; it resulted from applying the usual General Public
394License to all of the Bison source code.
395
396The output of the Bison utility---the Bison parser file---contains a
397verbatim copy of a sizable piece of Bison, which is the code for the
398parser's implementation. (The actions from your grammar are inserted
399into this implementation at one point, but most of the rest of the
400implementation is not changed.) When we applied the GPL
401terms to the skeleton code for the parser's implementation,
402the effect was to restrict the use of Bison output to free software.
403
404We didn't change the terms because of sympathy for people who want to
405make software proprietary. @strong{Software should be free.} But we
406concluded that limiting Bison's use to free software was doing little to
407encourage people to make other software free. So we decided to make the
408practical conditions for using Bison match the practical conditions for
409using the other GNU tools.
410
411This exception applies when Bison is generating code for a parser.
412You can tell whether the exception applies to a Bison output file by
413inspecting the file for text beginning with ``As a special
414exception@dots{}''. The text spells out the exact terms of the
415exception.
416
417@node Copying
418@unnumbered GNU GENERAL PUBLIC LICENSE
419@include gpl-3.0.texi
420
421@node Concepts
422@chapter The Concepts of Bison
423
424This chapter introduces many of the basic concepts without which the
425details of Bison will not make sense. If you do not already know how to
426use Bison or Yacc, we suggest you start by reading this chapter carefully.
427
428@menu
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.
442@end menu
443
444@node Language and Grammar
445@section Languages and Context-Free Grammars
446
447@cindex context-free grammar
448@cindex grammar, context-free
449In 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
452parts. 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
454can 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
456recursive, but there must be at least one rule which leads out of the
457recursion.
458
459@cindex BNF
460@cindex Backus-Naur form
461The most common formal system for presenting such rules for humans to read
462is @dfn{Backus-Naur Form} or ``BNF'', which was developed in
463order to specify the language Algol 60. Any grammar expressed in
464BNF is a context-free grammar. The input to Bison is
465essentially machine-readable BNF.
466
467@cindex LALR(1) grammars
468@cindex IELR(1) grammars
469@cindex LR(1) grammars
470There are various important subclasses of context-free grammars.
471Although it can handle almost all context-free grammars, Bison is
472optimized for what are called LR(1) grammars.
473In brief, in these grammars, it must be possible to tell how to parse
474any portion of an input string with just a single token of lookahead.
475For historical reasons, Bison by default is limited by the additional
476restrictions of LALR(1), which is hard to explain simply.
477@xref{Mystery Conflicts, ,Mysterious Reduce/Reduce Conflicts}, for
478more information on this.
479As an experimental feature, you can escape these additional restrictions by
480requesting IELR(1) or canonical LR(1) parser tables.
481@xref{Decl Summary,,lr.type}, to learn how.
482
483@cindex GLR parsing
484@cindex generalized LR (GLR) parsing
485@cindex ambiguous grammars
486@cindex nondeterministic parsing
487
488Parsers for LR(1) grammars are @dfn{deterministic}, meaning
489roughly that the next grammar rule to apply at any point in the input is
490uniquely determined by the preceding input and a fixed, finite portion
491(called a @dfn{lookahead}) of the remaining input. A context-free
492grammar can be @dfn{ambiguous}, meaning that there are multiple ways to
493apply the grammar rules to get the same inputs. Even unambiguous
494grammars can be @dfn{nondeterministic}, meaning that no fixed
495lookahead always suffices to determine the next grammar rule to apply.
496With the proper declarations, Bison is also able to parse these more
497general context-free grammars, using a technique known as GLR
498parsing (for Generalized LR). Bison's GLR parsers
499are able to handle any context-free grammar for which the number of
500possible parses of any given string is finite.
501
502@cindex symbols (abstract)
503@cindex token
504@cindex syntactic grouping
505@cindex grouping, syntactic
506In the formal grammatical rules for a language, each kind of syntactic
507unit or grouping is named by a @dfn{symbol}. Those which are built by
508grouping 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
511corresponding to a single terminal symbol a @dfn{token}, and a piece
512corresponding to a single nonterminal symbol a @dfn{grouping}.
513
514We can use the C language as an example of what symbols, terminal and
515nonterminal, mean. The tokens of C are identifiers, constants (numeric
516and string), and the various keywords, arithmetic operators and
517punctuation marks. So the terminal symbols of a grammar for C include
518`identifier', `number', `string', plus one symbol for each keyword,
519operator 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
522lexicography, not grammar.)
523
524Here is a simple C function subdivided into tokens:
525
526@ifinfo
527@example
528int /* @r{keyword `int'} */
529square (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} */
535@end example
536@end ifinfo
537@ifnotinfo
538@example
539int /* @r{keyword `int'} */
540square (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} */
544@end example
545@end ifnotinfo
546
547The syntactic groupings of C include the expression, the statement, the
548declaration, and the function definition. These are represented in the
549grammar of C by nonterminal symbols `expression', `statement',
550`declaration' and `function definition'. The full grammar uses dozens of
551additional language constructs, each with its own nonterminal symbol, in
552order to express the meanings of these four. The example above is a
553function definition; it contains one declaration, and one statement. In
554the statement, each @samp{x} is an expression and so is @samp{x * x}.
555
556Each nonterminal symbol must have grammatical rules showing how it is made
557out 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
559reads informally as follows:
560
561@quotation
562A `statement' can be made of a `return' keyword, an `expression' and a
563`semicolon'.
564@end quotation
565
566@noindent
567There would be many other rules for `statement', one for each kind of
568statement in C.
569
570@cindex start symbol
571One nonterminal symbol must be distinguished as the special one which
572defines a complete utterance in the language. It is called the @dfn{start
573symbol}. In a compiler, this means a complete input program. In the C
574language, the nonterminal symbol `sequence of definitions and declarations'
575plays this role.
576
577For example, @samp{1 + 2} is a valid C expression---a valid part of a C
578program---but it is not valid as an @emph{entire} C program. In the
579context-free grammar of C, this follows from the fact that `expression' is
580not the start symbol.
581
582The Bison parser reads a sequence of tokens as its input, and groups the
583tokens using the grammar rules. If the input is valid, the end result is
584that the entire token sequence reduces to a single grouping whose symbol is
585the grammar's start symbol. If we use a grammar for C, the entire input
586must be a `sequence of definitions and declarations'. If not, the parser
587reports a syntax error.
588
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
594
595A formal grammar is a mathematical construct. To define the language
596for Bison, you must write a file expressing the grammar in Bison syntax:
597a @dfn{Bison grammar} file. @xref{Grammar File, ,Bison Grammar Files}.
598
599A nonterminal symbol in the formal grammar is represented in Bison input
600as an identifier, like an identifier in C@. By convention, it should be
601in lower case, such as @code{expr}, @code{stmt} or @code{declaration}.
602
603The Bison representation for a terminal symbol is also called a @dfn{token
604type}. Token types as well can be represented as C-like identifiers. By
605convention, these identifiers should be upper case to distinguish them from
606nonterminals: for example, @code{INTEGER}, @code{IDENTIFIER}, @code{IF} or
607@code{RETURN}. A terminal symbol that stands for a particular keyword in
608the language should be named after that keyword converted to upper case.
609The terminal symbol @code{error} is reserved for error recovery.
610@xref{Symbols}.
611
612A terminal symbol can also be represented as a character literal, just like
613a C character constant. You should do this whenever a token is just a
614single character (parenthesis, plus-sign, etc.): use that same character in
615a literal as the terminal symbol for that token.
616
617A third way to represent a terminal symbol is with a C string constant
618containing several characters. @xref{Symbols}, for more information.
619
620The grammar rules also have an expression in Bison syntax. For example,
621here is the Bison rule for a C @code{return} statement. The semicolon in
622quotes is a literal character token, representing part of the C syntax for
623the statement; the naked semicolon, and the colon, are Bison punctuation
624used in every rule.
625
626@example
627stmt: RETURN expr ';'
628 ;
629@end example
630
631@noindent
632@xref{Rules, ,Syntax of Grammar Rules}.
633
634@node Semantic Values
635@section Semantic Values
636@cindex semantic value
637@cindex value, semantic
638
639A formal grammar selects tokens only by their classifications: for example,
640if a rule mentions the terminal symbol `integer constant', it means that
641@emph{any} integer constant is grammatically valid in that position. The
642precise 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
644grammatical.
645
646But the precise value is very important for what the input means once it is
647parsed. A compiler is useless if it fails to distinguish between 4, 1 and
6483989 as constants in the program! Therefore, each token in a Bison grammar
649has both a token type and a @dfn{semantic value}. @xref{Semantics,
650,Defining Language Semantics},
651for details.
652
653The token type is a terminal symbol defined in the grammar, such as
654@code{INTEGER}, @code{IDENTIFIER} or @code{','}. It tells everything
655you need to know to decide where the token may validly appear and how to
656group it with other tokens. The grammar rules know nothing about tokens
657except their types.
658
659The semantic value has all the rest of the information about the
660meaning of the token, such as the value of an integer, or the name of an
661identifier. (A token such as @code{','} which is just punctuation doesn't
662need to have any semantic value.)
663
664For example, an input token might be classified as token type
665@code{INTEGER} and have the semantic value 4. Another input token might
666have the same token type @code{INTEGER} but value 3989. When a grammar
667rule says that @code{INTEGER} is allowed, either of these tokens is
668acceptable because each is an @code{INTEGER}. When the parser accepts the
669token, it keeps track of the token's semantic value.
670
671Each grouping can also have a semantic value as well as its nonterminal
672symbol. For example, in a calculator, an expression typically has a
673semantic value that is a number. In a compiler for a programming
674language, an expression typically has a semantic value that is a tree
675structure describing the meaning of the expression.
676
677@node Semantic Actions
678@section Semantic Actions
679@cindex semantic actions
680@cindex actions, semantic
681
682In order to be useful, a program must do more than parse input; it must
683also produce some output based on the input. In a Bison grammar, a grammar
684rule can have an @dfn{action} made up of C statements. Each time the
685parser recognizes a match for that rule, the action is executed.
686@xref{Actions}.
687
688Most of the time, the purpose of an action is to compute the semantic value
689of the whole construct from the semantic values of its parts. For example,
690suppose we have a rule which says an expression can be the sum of two
691expressions. When the parser recognizes such a sum, each of the
692subexpressions has a semantic value which describes how it was built up.
693The action for this rule should create a similar sort of value for the
694newly recognized larger expression.
695
696For example, here is a rule that says an expression can be the sum of
697two subexpressions:
698
699@example
700expr: expr '+' expr @{ $$ = $1 + $3; @}
701 ;
702@end example
703
704@noindent
705The action says how to produce the semantic value of the sum expression
706from the values of the two subexpressions.
707
708@node GLR Parsers
709@section Writing GLR Parsers
710@cindex GLR parsing
711@cindex generalized LR (GLR) parsing
712@findex %glr-parser
713@cindex conflicts
714@cindex shift/reduce conflicts
715@cindex reduce/reduce conflicts
716
717In some grammars, Bison's deterministic
718LR(1) parsing algorithm cannot decide whether to apply a
719certain grammar rule at a given point. That is, it may not be able to
720decide (on the basis of the input read so far) which of two possible
721reductions (applications of a grammar rule) applies, or whether to apply
722a reduction or read more of the input and apply a reduction later in the
723input. These are known respectively as @dfn{reduce/reduce} conflicts
724(@pxref{Reduce/Reduce}), and @dfn{shift/reduce} conflicts
725(@pxref{Shift/Reduce}).
726
727To use a grammar that is not easily modified to be LR(1), a
728more 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
732contain no unresolved conflicts (i.e., after applying precedence
733declarations) identically to deterministic parsers. However, when
734faced with unresolved shift/reduce and reduce/reduce conflicts,
735GLR parsers use the simple expedient of doing both,
736effectively cloning the parser to follow both possibilities. Each of
737the resulting parsers can again split, so that at any given time, there
738can be any number of possible parses being explored. The parsers
739proceed in lockstep; that is, all of them consume (shift) a given input
740symbol before any of them proceed to the next. Each of the cloned
741parsers eventually meets one of two possible fates: either it runs into
742a parsing error, in which case it simply vanishes, or it merges with
743another parser, because the two of them have reduced the input to an
744identical set of symbols.
745
746During the time that there are multiple parsers, semantic actions are
747recorded, but not performed. When a parser disappears, its recorded
748semantic actions disappear as well, and are never performed. When a
749reduction makes two parsers identical, causing them to merge, Bison
750records both sets of semantic actions. Whenever the last two parsers
751merge, reverting to the single-parser case, Bison resolves all the
752outstanding actions either by precedences given to the grammar rules
753involved, or by performing both actions, and then calling a designated
754user-defined function on the resulting values to produce an arbitrary
755merged result.
756
757@menu
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.
763@end menu
764
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
769@findex %glr-parser
770@findex %expect-rr
771@cindex conflicts
772@cindex reduce/reduce conflicts
773@cindex shift/reduce conflicts
774
775In the simplest cases, you can use the GLR algorithm
776to parse grammars that are unambiguous but fail to be LR(1).
777Such grammars typically require more than one symbol of lookahead.
778
779Consider a problem that
780arises in the declaration of enumerated and subrange types in the
781programming language Pascal. Here are some examples:
782
783@example
784type subrange = lo .. hi;
785type enum = (a, b, c);
786@end example
787
788@noindent
789The original language standard allows only numeric
790literals and constant identifiers for the subrange bounds (@samp{lo}
791and @samp{hi}), but Extended Pascal (ISO/IEC
79210206) and many other
793Pascal implementations allow arbitrary expressions there. This gives
794rise to the following situation, containing a superfluous pair of
795parentheses:
796
797@example
798type subrange = (a) .. b;
799@end example
800
801@noindent
802Compare this to the following declaration of an enumerated
803type with only one value:
804
805@example
806type enum = (a);
807@end example
808
809@noindent
810(These declarations are contrived, but they are syntactically
811valid, and more-complicated cases can come up in practical programs.)
812
813These two declarations look identical until the @samp{..} token.
814With normal LR(1) one-token lookahead it is not
815possible to decide between the two forms when the identifier
816@samp{a} is parsed. It is, however, desirable
817for a parser to decide this, since in the latter case
818@samp{a} must become a new identifier to represent the enumeration
819value, while in the former case @samp{a} must be evaluated with its
820current meaning, which may be a constant or even a function call.
821
822You could parse @samp{(a)} as an ``unspecified identifier in parentheses'',
823to be resolved later, but this typically requires substantial
824contortions in both semantic actions and large parts of the
825grammar, where the parentheses are nested in the recursive rules for
826expressions.
827
828You might think of using the lexer to distinguish between the two
829forms by returning different tokens for currently defined and
830undefined identifiers. But if these declarations occur in a local
831scope, and @samp{a} is defined in an outer scope, then both forms
832are possible---either locally redefining @samp{a}, or using the
833value of @samp{a} from the outer scope. So this approach cannot
834work.
835
836A simple solution to this problem is to declare the parser to
837use the GLR algorithm.
838When the GLR parser reaches the critical state, it
839merely splits into two branches and pursues both syntax rules
840simultaneously. Sooner or later, one of them runs into a parsing
841error. If there is a @samp{..} token before the next
842@samp{;}, the rule for enumerated types fails since it cannot
843accept @samp{..} anywhere; otherwise, the subrange type rule
844fails since it requires a @samp{..} token. So one of the branches
845fails silently, and the other one continues normally, performing
846all the intermediate actions that were postponed during the split.
847
848If the input is syntactically incorrect, both branches fail and the parser
849reports a syntax error as usual.
850
851The effect of all this is that the parser seems to ``guess'' the
852correct branch to take, or in other words, it seems to use more
853lookahead than the underlying LR(1) algorithm actually allows
854for. In this example, LR(2) would suffice, but also some cases
855that are not LR(@math{k}) for any @math{k} can be handled this way.
856
857In general, a GLR parser can take quadratic or cubic worst-case time,
858and the current Bison parser even takes exponential time and space
859for some grammars. In practice, this rarely happens, and for many
860grammars it is possible to prove that it cannot happen.
861The present example contains only one conflict between two
862rules, and the type-declaration context containing the conflict
863cannot be nested. So the number of
864branches that can exist at any time is limited by the constant 2,
865and the parsing time is still linear.
866
867Here is a Bison grammar corresponding to the example above. It
868parses a vastly simplified form of Pascal type declarations.
869
870@example
871%token TYPE DOTDOT ID
872
873@group
874%left '+' '-'
875%left '*' '/'
876@end group
877
878%%
879
880@group
881type_decl : TYPE ID '=' type ';'
882 ;
883@end group
884
885@group
886type : '(' id_list ')'
887 | expr DOTDOT expr
888 ;
889@end group
890
891@group
892id_list : ID
893 | id_list ',' ID
894 ;
895@end group
896
897@group
898expr : '(' expr ')'
899 | expr '+' expr
900 | expr '-' expr
901 | expr '*' expr
902 | expr '/' expr
903 | ID
904 ;
905@end group
906@end example
907
908When used as a normal LR(1) grammar, Bison correctly complains
909about one reduce/reduce conflict. In the conflicting situation the
910parser chooses one of the alternatives, arbitrarily the one
911declared first. Therefore the following correct input is not
912recognized:
913
914@example
915type t = (a) .. b;
916@end example
917
918The parser can be turned into a GLR parser, while also telling Bison
919to be silent about the one known reduce/reduce conflict, by
920adding these two declarations to the Bison input file (before the first
921@samp{%%}):
922
923@example
924%glr-parser
925%expect-rr 1
926@end example
927
928@noindent
929No change in the grammar itself is required. Now the
930parser recognizes all valid declarations, according to the
931limited syntax above, transparently. In fact, the user does not even
932notice when the parser splits.
933
934So here we have a case where we can use the benefits of GLR,
935almost without disadvantages. Even in simple cases like this, however,
936there are at least two potential problems to beware. First, always
937analyze the conflicts reported by Bison to make sure that GLR
938splitting is only done where it is intended. A GLR parser
939splitting inadvertently may cause problems less obvious than an
940LR parser statically choosing the wrong alternative in a
941conflict. Second, consider interactions with the lexer (@pxref{Semantic
942Tokens}) with great care. Since a split parser consumes tokens without
943performing any actions during the split, the lexer cannot obtain
944information via parser actions. Some cases of lexer interactions can be
945eliminated by using GLR to shift the complications from the
946lexer to the parser. You must check the remaining cases for
947correctness.
948
949In our example, it would be safe for the lexer to return tokens based on
950their current meanings in some symbol table, because no new symbols are
951defined in the middle of a type declaration. Though it is possible for
952a parser to define the enumeration constants as they are parsed, before
953the type declaration is completed, it actually makes no difference since
954they cannot be used within the same enumerated type declaration.
955
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
960@findex %dprec
961@findex %merge
962@cindex conflicts
963@cindex reduce/reduce conflicts
964
965Let's consider an example, vastly simplified from a C++ grammar.
966
967@example
968%@{
969 #include <stdio.h>
970 #define YYSTYPE char const *
971 int yylex (void);
972 void yyerror (char const *);
973%@}
974
975%token TYPENAME ID
976
977%right '='
978%left '+'
979
980%glr-parser
981
982%%
983
984prog :
985 | prog stmt @{ printf ("\n"); @}
986 ;
987
988stmt : expr ';' %dprec 1
989 | decl %dprec 2
990 ;
991
992expr : ID @{ printf ("%s ", $$); @}
993 | TYPENAME '(' expr ')'
994 @{ printf ("%s <cast> ", $1); @}
995 | expr '+' expr @{ printf ("+ "); @}
996 | expr '=' expr @{ printf ("= "); @}
997 ;
998
999decl : TYPENAME declarator ';'
1000 @{ printf ("%s <declare> ", $1); @}
1001 | TYPENAME declarator '=' expr ';'
1002 @{ printf ("%s <init-declare> ", $1); @}
1003 ;
1004
1005declarator : ID @{ printf ("\"%s\" ", $1); @}
1006 | '(' declarator ')'
1007 ;
1008@end example
1009
1010@noindent
1011This models a problematic part of the C++ grammar---the ambiguity between
1012certain declarations and statements. For example,
1013
1014@example
1015T (x) = y+z;
1016@end example
1017
1018@noindent
1019parses 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}).
1022Bison detects this as a reduce/reduce conflict between the rules
1023@code{expr : ID} and @code{declarator : ID}, which it cannot resolve at the
1024time it encounters @code{x} in the example above. Since this is a
1025GLR parser, it therefore splits the problem into two parses, one for
1026each choice of resolving the reduce/reduce conflict.
1027Unlike the example from the previous section (@pxref{Simple GLR Parsers}),
1028however, neither of these parses ``dies,'' because the grammar as it stands is
1029ambiguous. One of the parsers eventually reduces @code{stmt : expr ';'} and
1030the other reduces @code{stmt : decl}, after which both parsers are in an
1031identical state: they've seen @samp{prog stmt} and have the same unprocessed
1032input remaining. We say that these parses have @dfn{merged.}
1033
1034At this point, the GLR parser requires a specification in the
1035grammar of how to choose between the competing parses.
1036In the example above, the two @code{%dprec}
1037declarations specify that Bison is to give precedence
1038to the parse that interprets the example as a
1039@code{decl}, which implies that @code{x} is a declarator.
1040The parser therefore prints
1041
1042@example
1043"x" y z + T <init-declare>
1044@end example
1045
1046The @code{%dprec} declarations only come into play when more than one
1047parse survives. Consider a different input string for this parser:
1048
1049@example
1050T (x) + y;
1051@end example
1052
1053@noindent
1054This is another example of using GLR to parse an unambiguous
1055construct, as shown in the previous section (@pxref{Simple GLR Parsers}).
1056Here, there is no ambiguity (this cannot be parsed as a declaration).
1057However, at the time the Bison parser encounters @code{x}, it does not
1058have enough information to resolve the reduce/reduce conflict (again,
1059between @code{x} as an @code{expr} or a @code{declarator}). In this
1060case, no precedence declaration is used. Again, the parser splits
1061into two, one assuming that @code{x} is an @code{expr}, and the other
1062assuming @code{x} is a @code{declarator}. The second of these parsers
1063then vanishes when it sees @code{+}, and the parser prints
1064
1065@example
1066x T <cast> y +
1067@end example
1068
1069Suppose that instead of resolving the ambiguity, you wanted to see all
1070the possibilities. For this purpose, you must merge the semantic
1071actions of the two possible parsers, rather than choosing one over the
1072other. To do so, you could change the declaration of @code{stmt} as
1073follows:
1074
1075@example
1076stmt : expr ';' %merge <stmtMerge>
1077 | decl %merge <stmtMerge>
1078 ;
1079@end example
1080
1081@noindent
1082and define the @code{stmtMerge} function as:
1083
1084@example
1085static YYSTYPE
1086stmtMerge (YYSTYPE x0, YYSTYPE x1)
1087@{
1088 printf ("<OR> ");
1089 return "";
1090@}
1091@end example
1092
1093@noindent
1094with an accompanying forward declaration
1095in the C declarations at the beginning of the file:
1096
1097@example
1098%@{
1099 #define YYSTYPE char const *
1100 static YYSTYPE stmtMerge (YYSTYPE x0, YYSTYPE x1);
1101%@}
1102@end example
1103
1104@noindent
1105With these declarations, the resulting parser parses the first example
1106as both an @code{expr} and a @code{decl}, and prints
1107
1108@example
1109"x" y z + T <init-declare> x T <cast> y z + = <OR>
1110@end example
1111
1112Bison requires that all of the
1113productions that participate in any particular merge have identical
1114@samp{%merge} clauses. Otherwise, the ambiguity would be unresolvable,
1115and the parser will report an error during any parse that results in
1116the offending merge.
1117
1118@node GLR Semantic Actions
1119@subsection GLR Semantic Actions
1120
1121The nature of GLR parsing and the structure of the generated
1122parsers give rise to certain restrictions on semantic values and actions.
1123
1124@subsubsection Deferred semantic actions
1125@cindex deferred semantic actions
1126By definition, a deferred semantic action is not performed at the same time as
1127the associated reduction.
1128This raises caveats for several Bison features you might use in a semantic
1129action in a GLR parser.
1130
1131@vindex yychar
1132@cindex GLR parsers and @code{yychar}
1133@vindex yylval
1134@cindex GLR parsers and @code{yylval}
1135@vindex yylloc
1136@cindex GLR parsers and @code{yylloc}
1137In any semantic action, you can examine @code{yychar} to determine the type of
1138the lookahead token present at the time of the associated reduction.
1139After checking that @code{yychar} is not set to @code{YYEMPTY} or @code{YYEOF},
1140you can then examine @code{yylval} and @code{yylloc} to determine the
1141lookahead token's semantic value and location, if any.
1142In a nondeferred semantic action, you can also modify any of these variables to
1143influence syntax analysis.
1144@xref{Lookahead, ,Lookahead Tokens}.
1145
1146@findex yyclearin
1147@cindex GLR parsers and @code{yyclearin}
1148In a deferred semantic action, it's too late to influence syntax analysis.
1149In this case, @code{yychar}, @code{yylval}, and @code{yylloc} are set to
1150shallow copies of the values they had at the time of the associated reduction.
1151For this reason alone, modifying them is dangerous.
1152Moreover, the result of modifying them is undefined and subject to change with
1153future versions of Bison.
1154For example, if a semantic action might be deferred, you should never write it
1155to invoke @code{yyclearin} (@pxref{Action Features}) or to attempt to free
1156memory referenced by @code{yylval}.
1157
1158@subsubsection YYERROR
1159@findex YYERROR
1160@cindex GLR parsers and @code{YYERROR}
1161Another Bison feature requiring special consideration is @code{YYERROR}
1162(@pxref{Action Features}), which you can invoke in a semantic action to
1163initiate error recovery.
1164During deterministic GLR operation, the effect of @code{YYERROR} is
1165the same as its effect in a deterministic parser.
1166The effect in a deferred action is similar, but the precise point of the
1167error is undefined; instead, the parser reverts to deterministic operation,
1168selecting an unspecified stack on which to continue with a syntax error.
1169In a semantic predicate (see @ref{Semantic Predicates}) during nondeterministic
1170parsing, @code{YYERROR} silently prunes
1171the parse that invoked the test.
1172
1173@subsubsection Restrictions on semantic values and locations
1174GLR parsers require that you use POD (Plain Old Data) types for
1175semantic values and location types when using the generated parsers as
1176C++ code.
1177
1178@node Semantic Predicates
1179@subsection Controlling a Parse with Arbitrary Predicates
1180@findex %?
1181@cindex Semantic predicates in GLR parsers
1182
1183In addition to the @code{%dprec} and @code{%merge} directives,
1184GLR parsers
1185allow you to reject parses on the basis of arbitrary computations executed
1186in user code, without having Bison treat this rejection as an error
1187if there are alternative parses. (This feature is experimental and may
1188evolve. We welcome user feedback.) For example,
1189
1190@smallexample
1191widget :
1192 %?@{ new_syntax @} "widget" id new_args @{ $$ = f($3, $4); @}
1193 | %?@{ !new_syntax @} "widget" id old_args @{ $$ = f($3, $4); @}
1194 ;
1195@end smallexample
1196
1197@noindent
1198is one way to allow the same parser to handle two different syntaxes for
1199widgets. The clause preceded by @code{%?} is treated like an ordinary
1200action, except that its text is treated as an expression and is always
1201evaluated immediately (even when in nondeterministic mode). If the
1202expression yields 0 (false), the clause is treated as a syntax error,
1203which, in a nondeterministic parser, causes the stack in which it is reduced
1204to die. In a deterministic parser, it acts like YYERROR.
1205
1206As the example shows, predicates otherwise look like semantic actions, and
1207therefore you must be take them into account when determining the numbers
1208to use for denoting the semantic values of right-hand side symbols.
1209Predicate actions, however, have no defined value, and may not be given
1210labels.
1211
1212There is a subtle difference between semantic predicates and ordinary
1213actions in nondeterministic mode, since the latter are deferred.
1214For example, we could try to rewrite the previous example as
1215
1216@smallexample
1217widget :
1218 @{ if (!new_syntax) YYERROR; @} "widget" id new_args @{ $$ = f($3, $4); @}
1219 | @{ if (new_syntax) YYERROR; @} "widget" id old_args @{ $$ = f($3, $4); @}
1220 ;
1221@end smallexample
1222
1223@noindent
1224(reversing the sense of the predicate tests to cause an error when they are
1225false). However, this
1226does @emph{not} have the same effect if @code{new_args} and @code{old_args}
1227have overlapping syntax.
1228Since the mid-rule actions testing @code{new_syntax} are deferred,
1229a GLR parser first encounters the unresolved ambiguous reduction
1230for 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
1232reports an error.
1233
1234Finally, be careful in writing predicates: deferred actions have not been
1235evaluated, so that using them in a predicate will have undefined effects.
1236
1237@node Compiler Requirements
1238@subsection Considerations when Compiling GLR Parsers
1239@cindex @code{inline}
1240@cindex GLR parsers and @code{inline}
1241
1242The GLR parsers require a compiler for ISO C89 or
1243later. In addition, they use the @code{inline} keyword, which is not
1244C89, but is C99 and is a common extension in pre-C99 compilers. It is
1245up to the user of these parsers to handle
1246portability issues. For instance, if using Autoconf and the Autoconf
1247macro @code{AC_C_INLINE}, a mere
1248
1249@example
1250%@{
1251 #include <config.h>
1252%@}
1253@end example
1254
1255@noindent
1256will suffice. Otherwise, we suggest
1257
1258@example
1259%@{
1260 #if __STDC_VERSION__ < 199901 && ! defined __GNUC__ && ! defined inline
1261 #define inline
1262 #endif
1263%@}
1264@end example
1265
1266@node Locations Overview
1267@section Locations
1268@cindex location
1269@cindex textual location
1270@cindex location, textual
1271
1272Many applications, like interpreters or compilers, have to produce verbose
1273and useful error messages. To achieve this, one must be able to keep track of
1274the @dfn{textual location}, or @dfn{location}, of each syntactic construct.
1275Bison provides a mechanism for handling these locations.
1276
1277Each token has a semantic value. In a similar fashion, each token has an
1278associated location, but the type of locations is the same for all tokens and
1279groupings. Moreover, the output parser is equipped with a default data
1280structure for storing locations (@pxref{Locations}, for more details).
1281
1282Like semantic values, locations can be reached in actions using a dedicated
1283set of constructs. In the example above, the location of the whole grouping
1284is @code{@@$}, while the locations of the subexpressions are @code{@@1} and
1285@code{@@3}.
1286
1287When a rule is matched, a default action is used to compute the semantic value
1288of its left hand side (@pxref{Actions}). In the same way, another default
1289action is used for locations. However, the action for locations is general
1290enough for most cases, meaning there is usually no need to describe for each
1291rule how @code{@@$} should be formed. When building a new location for a given
1292grouping, the default behavior of the output parser is to take the beginning
1293of the first symbol, and the end of the last symbol.
1294
1295@node Bison Parser
1296@section Bison Output: the Parser File
1297@cindex Bison parser
1298@cindex Bison utility
1299@cindex lexical analyzer, purpose
1300@cindex parser
1301
1302When you run Bison, you give it a Bison grammar file as input. The output
1303is a C source file that parses the language described by the grammar.
1304This file is called a @dfn{Bison parser}. Keep in mind that the Bison
1305utility and the Bison parser are two distinct programs: the Bison utility
1306is a program whose output is the Bison parser that becomes part of your
1307program.
1308
1309The job of the Bison parser is to group tokens into groupings according to
1310the grammar rules---for example, to build identifiers and operators into
1311expressions. As it does this, it runs the actions for the grammar rules it
1312uses.
1313
1314The tokens come from a function called the @dfn{lexical analyzer} that
1315you must supply in some fashion (such as by writing it in C). The Bison
1316parser calls the lexical analyzer each time it wants a new token. It
1317doesn't know what is ``inside'' the tokens (though their semantic values
1318may reflect this). Typically the lexical analyzer makes the tokens by
1319parsing characters of text, but Bison does not depend on this.
1320@xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}.
1321
1322The Bison parser file is C code which defines a function named
1323@code{yyparse} which implements that grammar. This function does not make
1324a complete C program: you must supply some additional functions. One is
1325the lexical analyzer. Another is an error-reporting function which the
1326parser calls to report an error. In addition, a complete C program must
1327start with a function called @code{main}; you have to provide this, and
1328arrange for it to call @code{yyparse} or the parser will never run.
1329@xref{Interface, ,Parser C-Language Interface}.
1330
1331Aside from the token type names and the symbols in the actions you
1332write, all symbols defined in the Bison parser file itself
1333begin with @samp{yy} or @samp{YY}. This includes interface functions
1334such as the lexical analyzer function @code{yylex}, the error reporting
1335function @code{yyerror} and the parser function @code{yyparse} itself.
1336This also includes numerous identifiers used for internal purposes.
1337Therefore, you should avoid using C identifiers starting with @samp{yy}
1338or @samp{YY} in the Bison grammar file except for the ones defined in
1339this manual. Also, you should avoid using the C identifiers
1340@samp{malloc} and @samp{free} for anything other than their usual
1341meanings.
1342
1343In some cases the Bison parser file includes system headers, and in
1344those cases your code should respect the identifiers reserved by those
1345headers. On some non-GNU hosts, @code{<alloca.h>}, @code{<malloc.h>},
1346@code{<stddef.h>}, and @code{<stdlib.h>} are included as needed to
1347declare memory allocators and related types. @code{<libintl.h>} is
1348included if message translation is in use
1349(@pxref{Internationalization}). Other system headers may
1350be included if you define @code{YYDEBUG} to a nonzero value
1351(@pxref{Tracing, ,Tracing Your Parser}).
1352
1353@node Stages
1354@section Stages in Using Bison
1355@cindex stages in using Bison
1356@cindex using Bison
1357
1358The actual language-design process using Bison, from grammar specification
1359to a working compiler or interpreter, has these parts:
1360
1361@enumerate
1362@item
1363Formally specify the grammar in a form recognized by Bison
1364(@pxref{Grammar File, ,Bison Grammar Files}). For each grammatical rule
1365in the language, describe the action that is to be taken when an
1366instance of that rule is recognized. The action is described by a
1367sequence of C statements.
1368
1369@item
1370Write a lexical analyzer to process input and pass tokens to the parser.
1371The lexical analyzer may be written by hand in C (@pxref{Lexical, ,The
1372Lexical Analyzer Function @code{yylex}}). It could also be produced
1373using Lex, but the use of Lex is not discussed in this manual.
1374
1375@item
1376Write a controlling function that calls the Bison-produced parser.
1377
1378@item
1379Write error-reporting routines.
1380@end enumerate
1381
1382To turn this source code as written into a runnable program, you
1383must follow these steps:
1384
1385@enumerate
1386@item
1387Run Bison on the grammar to produce the parser.
1388
1389@item
1390Compile the code output by Bison, as well as any other source files.
1391
1392@item
1393Link the object files to produce the finished product.
1394@end enumerate
1395
1396@node Grammar Layout
1397@section The Overall Layout of a Bison Grammar
1398@cindex grammar file
1399@cindex file format
1400@cindex format of grammar file
1401@cindex layout of Bison grammar
1402
1403The input file for the Bison utility is a @dfn{Bison grammar file}. The
1404general form of a Bison grammar file is as follows:
1405
1406@example
1407%@{
1408@var{Prologue}
1409%@}
1410
1411@var{Bison declarations}
1412
1413%%
1414@var{Grammar rules}
1415%%
1416@var{Epilogue}
1417@end example
1418
1419@noindent
1420The @samp{%%}, @samp{%@{} and @samp{%@}} are punctuation that appears
1421in every Bison grammar file to separate the sections.
1422
1423The prologue may define types and variables used in the actions. You can
1424also use preprocessor commands to define macros used there, and use
1425@code{#include} to include header files that do any of these things.
1426You need to declare the lexical analyzer @code{yylex} and the error
1427printer @code{yyerror} here, along with any other global identifiers
1428used by the actions in the grammar rules.
1429
1430The Bison declarations declare the names of the terminal and nonterminal
1431symbols, and may also describe operator precedence and the data types of
1432semantic values of various symbols.
1433
1434The grammar rules define how to construct each nonterminal symbol from its
1435parts.
1436
1437The epilogue can contain any code you want to use. Often the
1438definitions of functions declared in the prologue go here. In a
1439simple program, all the rest of the program can go here.
1440
1441@node Examples
1442@chapter Examples
1443@cindex simple examples
1444@cindex examples, simple
1445
1446Now we show and explain three sample programs written using Bison: a
1447reverse polish notation calculator, an algebraic (infix) notation
1448calculator, and a multi-function calculator. All three have been tested
1449under BSD Unix 4.3; each produces a usable, though limited, interactive
1450desk-top calculator.
1451
1452These examples are simple, but Bison grammars for real programming
1453languages are written the same way. You can copy these examples into a
1454source file to try them.
1455
1456@menu
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.
1466@end menu
1467
1468@node RPN Calc
1469@section Reverse Polish Notation Calculator
1470@cindex reverse polish notation
1471@cindex polish notation calculator
1472@cindex @code{rpcalc}
1473@cindex calculator, simple
1474
1475The first example is that of a simple double-precision @dfn{reverse polish
1476notation} calculator (a calculator using postfix operators). This example
1477provides a good starting point, since operator precedence is not an issue.
1478The second example will illustrate how operator precedence is handled.
1479
1480The source code for this calculator is named @file{rpcalc.y}. The
1481@samp{.y} extension is a convention used for Bison input files.
1482
1483@menu
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.
1491@end menu
1492
1493@node Rpcalc Declarations
1494@subsection Declarations for @code{rpcalc}
1495
1496Here are the C and Bison declarations for the reverse polish notation
1497calculator. As in C, comments are placed between @samp{/*@dots{}*/}.
1498
1499@example
1500/* Reverse polish notation calculator. */
1501
1502%@{
1503 #define YYSTYPE double
1504 #include <math.h>
1505 int yylex (void);
1506 void yyerror (char const *);
1507%@}
1508
1509%token NUM
1510
1511%% /* Grammar rules and actions follow. */
1512@end example
1513
1514The declarations section (@pxref{Prologue, , The prologue}) contains two
1515preprocessor directives and two forward declarations.
1516
1517The @code{#define} directive defines the macro @code{YYSTYPE}, thus
1518specifying the C data type for semantic values of both tokens and
1519groupings (@pxref{Value Type, ,Data Types of Semantic Values}). The
1520Bison parser will use whatever type @code{YYSTYPE} is defined as; if you
1521don't define it, @code{int} is the default. Because we specify
1522@code{double}, each token and each expression has an associated value,
1523which is a floating point number.
1524
1525The @code{#include} directive is used to declare the exponentiation
1526function @code{pow}.
1527
1528The forward declarations for @code{yylex} and @code{yyerror} are
1529needed because the C language requires that functions be declared
1530before they are used. These functions will be defined in the
1531epilogue, but the parser calls them so they must be declared in the
1532prologue.
1533
1534The second section, Bison declarations, provides information to Bison
1535about the token types (@pxref{Bison Declarations, ,The Bison
1536Declarations Section}). Each terminal symbol that is not a
1537single-character literal must be declared here. (Single-character
1538literals normally don't need to be declared.) In this example, all the
1539arithmetic operators are designated by single-character literals, so the
1540only terminal symbol that needs to be declared is @code{NUM}, the token
1541type for numeric constants.
1542
1543@node Rpcalc Rules
1544@subsection Grammar Rules for @code{rpcalc}
1545
1546Here are the grammar rules for the reverse polish notation calculator.
1547
1548@example
1549input: /* empty */
1550 | input line
1551;
1552
1553line: '\n'
1554 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1555;
1556
1557exp: 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); @}
1564 /* Unary minus */
1565 | exp 'n' @{ $$ = -$1; @}
1566;
1567%%
1568@end example
1569
1570The groupings of the rpcalc ``language'' defined here are the expression
1571(given the name @code{exp}), the line of input (@code{line}), and the
1572complete input transcript (@code{input}). Each of these nonterminal
1573symbols has several alternate rules, joined by the vertical bar @samp{|}
1574which is read as ``or''. The following sections explain what these rules
1575mean.
1576
1577The semantics of the language is determined by the actions taken when a
1578grouping is recognized. The actions are the C code that appears inside
1579braces. @xref{Actions}.
1580
1581You must specify these actions in C, but Bison provides the means for
1582passing semantic values between the rules. In each action, the
1583pseudo-variable @code{$$} stands for the semantic value for the grouping
1584that the rule is going to construct. Assigning a value to @code{$$} is the
1585main job of most actions. The semantic values of the components of the
1586rule are referred to as @code{$1}, @code{$2}, and so on.
1587
1588@menu
1589* Rpcalc Input::
1590* Rpcalc Line::
1591* Rpcalc Expr::
1592@end menu
1593
1594@node Rpcalc Input
1595@subsubsection Explanation of @code{input}
1596
1597Consider the definition of @code{input}:
1598
1599@example
1600input: /* empty */
1601 | input line
1602;
1603@end example
1604
1605This definition reads as follows: ``A complete input is either an empty
1606string, or a complete input followed by an input line''. Notice that
1607``complete input'' is defined in terms of itself. This definition is said
1608to be @dfn{left recursive} since @code{input} appears always as the
1609leftmost symbol in the sequence. @xref{Recursion, ,Recursive Rules}.
1610
1611The first alternative is empty because there are no symbols between the
1612colon and the first @samp{|}; this means that @code{input} can match an
1613empty string of input (no tokens). We write the rules this way because it
1614is legitimate to type @kbd{Ctrl-d} right after you start the calculator.
1615It's conventional to put an empty alternative first and write the comment
1616@samp{/* empty */} in it.
1617
1618The second alternate rule (@code{input line}) handles all nontrivial input.
1619It means, ``After reading any number of lines, read one more line if
1620possible.'' The left recursion makes this rule into a loop. Since the
1621first alternative matches empty input, the loop can be executed zero or
1622more times.
1623
1624The parser function @code{yyparse} continues to process input until a
1625grammatical error is seen or the lexical analyzer says there are no more
1626input tokens; we will arrange for the latter to happen at end-of-input.
1627
1628@node Rpcalc Line
1629@subsubsection Explanation of @code{line}
1630
1631Now consider the definition of @code{line}:
1632
1633@example
1634line: '\n'
1635 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1636;
1637@end example
1638
1639The first alternative is a token which is a newline character; this means
1640that rpcalc accepts a blank line (and ignores it, since there is no
1641action). The second alternative is an expression followed by a newline.
1642This is the alternative that makes rpcalc useful. The semantic value of
1643the @code{exp} grouping is the value of @code{$1} because the @code{exp} in
1644question is the first symbol in the alternative. The action prints this
1645value, which is the result of the computation the user asked for.
1646
1647This action is unusual because it does not assign a value to @code{$$}. As
1648a consequence, the semantic value associated with the @code{line} is
1649uninitialized (its value will be unpredictable). This would be a bug if
1650that value were ever used, but we don't use it: once rpcalc has printed the
1651value of the user's input line, that value is no longer needed.
1652
1653@node Rpcalc Expr
1654@subsubsection Explanation of @code{expr}
1655
1656The @code{exp} grouping has several rules, one for each kind of expression.
1657The first rule handles the simplest expressions: those that are just numbers.
1658The second handles an addition-expression, which looks like two expressions
1659followed by a plus-sign. The third handles subtraction, and so on.
1660
1661@example
1662exp: NUM
1663 | exp exp '+' @{ $$ = $1 + $2; @}
1664 | exp exp '-' @{ $$ = $1 - $2; @}
1665 @dots{}
1666 ;
1667@end example
1668
1669We have used @samp{|} to join all the rules for @code{exp}, but we could
1670equally well have written them separately:
1671
1672@example
1673exp: NUM ;
1674exp: exp exp '+' @{ $$ = $1 + $2; @} ;
1675exp: exp exp '-' @{ $$ = $1 - $2; @} ;
1676 @dots{}
1677@end example
1678
1679Most of the rules have actions that compute the value of the expression in
1680terms 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
1682the second one. The third component, @code{'+'}, has no meaningful
1683associated 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
1685rule, the sum of the two subexpressions' values is produced as the value of
1686the entire expression. @xref{Actions}.
1687
1688You don't have to give an action for every rule. When a rule has no
1689action, Bison by default copies the value of @code{$1} into @code{$$}.
1690This is what happens in the first rule (the one that uses @code{NUM}).
1691
1692The formatting shown here is the recommended convention, but Bison does
1693not require it. You can add or change white space as much as you wish.
1694For example, this:
1695
1696@example
1697exp : NUM | exp exp '+' @{$$ = $1 + $2; @} | @dots{} ;
1698@end example
1699
1700@noindent
1701means the same thing as this:
1702
1703@example
1704exp: NUM
1705 | exp exp '+' @{ $$ = $1 + $2; @}
1706 | @dots{}
1707;
1708@end example
1709
1710@noindent
1711The latter, however, is much more readable.
1712
1713@node Rpcalc Lexer
1714@subsection The @code{rpcalc} Lexical Analyzer
1715@cindex writing a lexical analyzer
1716@cindex lexical analyzer, writing
1717
1718The lexical analyzer's job is low-level parsing: converting characters
1719or sequences of characters into tokens. The Bison parser gets its
1720tokens by calling the lexical analyzer. @xref{Lexical, ,The Lexical
1721Analyzer Function @code{yylex}}.
1722
1723Only a simple lexical analyzer is needed for the RPN
1724calculator. This
1725lexical analyzer skips blanks and tabs, then reads in numbers as
1726@code{double} and returns them as @code{NUM} tokens. Any other character
1727that isn't part of a number is a separate token. Note that the token-code
1728for such a single-character token is the character itself.
1729
1730The return value of the lexical analyzer function is a numeric code which
1731represents a token type. The same text used in Bison rules to stand for
1732this token type is also a C expression for the numeric code for the type.
1733This works in two ways. If the token type is a character literal, then its
1734numeric code is that of the character; you can use the same
1735character literal in the lexical analyzer to express the number. If the
1736token type is an identifier, that identifier is defined by Bison as a C
1737macro whose definition is the appropriate number. In this example,
1738therefore, @code{NUM} becomes a macro for @code{yylex} to use.
1739
1740The semantic value of the token (if it has one) is stored into the
1741global variable @code{yylval}, which is where the Bison parser will look
1742for it. (The C data type of @code{yylval} is @code{YYSTYPE}, which was
1743defined at the beginning of the grammar; @pxref{Rpcalc Declarations,
1744,Declarations for @code{rpcalc}}.)
1745
1746A 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.)
1748
1749Here is the code for the lexical analyzer:
1750
1751@example
1752@group
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. */
1757
1758#include <ctype.h>
1759@end group
1760
1761@group
1762int
1763yylex (void)
1764@{
1765 int c;
1766
1767 /* Skip white space. */
1768 while ((c = getchar ()) == ' ' || c == '\t')
1769 ;
1770@end group
1771@group
1772 /* Process numbers. */
1773 if (c == '.' || isdigit (c))
1774 @{
1775 ungetc (c, stdin);
1776 scanf ("%lf", &yylval);
1777 return NUM;
1778 @}
1779@end group
1780@group
1781 /* Return end-of-input. */
1782 if (c == EOF)
1783 return 0;
1784 /* Return a single char. */
1785 return c;
1786@}
1787@end group
1788@end example
1789
1790@node Rpcalc Main
1791@subsection The Controlling Function
1792@cindex controlling function
1793@cindex main function in simple example
1794
1795In keeping with the spirit of this example, the controlling function is
1796kept to the bare minimum. The only requirement is that it call
1797@code{yyparse} to start the process of parsing.
1798
1799@example
1800@group
1801int
1802main (void)
1803@{
1804 return yyparse ();
1805@}
1806@end group
1807@end example
1808
1809@node Rpcalc Error
1810@subsection The Error Reporting Routine
1811@cindex error reporting routine
1812
1813When @code{yyparse} detects a syntax error, it calls the error reporting
1814function @code{yyerror} to print an error message (usually but not
1815always @code{"syntax error"}). It is up to the programmer to supply
1816@code{yyerror} (@pxref{Interface, ,Parser C-Language Interface}), so
1817here is the definition we will use:
1818
1819@example
1820@group
1821#include <stdio.h>
1822
1823/* Called by yyparse on error. */
1824void
1825yyerror (char const *s)
1826@{
1827 fprintf (stderr, "%s\n", s);
1828@}
1829@end group
1830@end example
1831
1832After @code{yyerror} returns, the Bison parser may recover from the error
1833and continue parsing if the grammar contains a suitable error rule
1834(@pxref{Error Recovery}). Otherwise, @code{yyparse} returns nonzero. We
1835have not written any error rules in this example, so any invalid input will
1836cause the calculator program to exit. This is not clean behavior for a
1837real calculator, but it is adequate for the first example.
1838
1839@node Rpcalc Generate
1840@subsection Running Bison to Make the Parser
1841@cindex running Bison (introduction)
1842
1843Before running Bison to produce a parser, we need to decide how to
1844arrange all the source code in one or more source files. For such a
1845simple example, the easiest thing is to put everything in one file. The
1846definitions of @code{yylex}, @code{yyerror} and @code{main} go at the
1847end, in the epilogue of the file
1848(@pxref{Grammar Layout, ,The Overall Layout of a Bison Grammar}).
1849
1850For a large project, you would probably have several source files, and use
1851@code{make} to arrange to recompile them.
1852
1853With all the source in a single file, you use the following command to
1854convert it into a parser file:
1855
1856@example
1857bison @var{file}.y
1858@end example
1859
1860@noindent
1861In 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},
1863removing the @samp{.y} from the original file name. The file output by
1864Bison contains the source code for @code{yyparse}. The additional
1865functions in the input file (@code{yylex}, @code{yyerror} and @code{main})
1866are copied verbatim to the output.
1867
1868@node Rpcalc Compile
1869@subsection Compiling the Parser File
1870@cindex compiling the parser
1871
1872Here is how to compile and run the parser file:
1873
1874@example
1875@group
1876# @r{List files in current directory.}
1877$ @kbd{ls}
1878rpcalc.tab.c rpcalc.y
1879@end group
1880
1881@group
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}
1885@end group
1886
1887@group
1888# @r{List files again.}
1889$ @kbd{ls}
1890rpcalc rpcalc.tab.c rpcalc.y
1891@end group
1892@end example
1893
1894The file @file{rpcalc} now contains the executable code. Here is an
1895example session using @code{rpcalc}.
1896
1897@example
1898$ @kbd{rpcalc}
1899@kbd{4 9 +}
190013
1901@kbd{3 7 + 3 4 5 *+-}
1902-13
1903@kbd{3 7 + 3 4 5 * + - n} @r{Note the unary minus, @samp{n}}
190413
1905@kbd{5 6 / 4 n +}
1906-3.166666667
1907@kbd{3 4 ^} @r{Exponentiation}
190881
1909@kbd{^D} @r{End-of-file indicator}
1910$
1911@end example
1912
1913@node Infix Calc
1914@section Infix Notation Calculator: @code{calc}
1915@cindex infix notation calculator
1916@cindex @code{calc}
1917@cindex calculator, infix notation
1918
1919We now modify rpcalc to handle infix operators instead of postfix. Infix
1920notation involves the concept of operator precedence and the need for
1921parentheses nested to arbitrary depth. Here is the Bison code for
1922@file{calc.y}, an infix desk-top calculator.
1923
1924@example
1925/* Infix notation calculator. */
1926
1927%@{
1928 #define YYSTYPE double
1929 #include <math.h>
1930 #include <stdio.h>
1931 int yylex (void);
1932 void yyerror (char const *);
1933%@}
1934
1935/* Bison declarations. */
1936%token NUM
1937%left '-' '+'
1938%left '*' '/'
1939%precedence NEG /* negation--unary minus */
1940%right '^' /* exponentiation */
1941
1942%% /* The grammar follows. */
1943input: /* empty */
1944 | input line
1945;
1946
1947line: '\n'
1948 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1949;
1950
1951exp: 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; @}
1959;
1960%%
1961@end example
1962
1963@noindent
1964The functions @code{yylex}, @code{yyerror} and @code{main} can be the
1965same as before.
1966
1967There are two important new features shown in this code.
1968
1969In the second section (Bison declarations), @code{%left} declares token
1970types 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
1973associativity/precedence. (These tokens are single-character literals, which
1974ordinarily don't need to be declared. We declare them here to specify
1975the associativity/precedence.)
1976
1977Operator precedence is determined by the line ordering of the
1978declarations; the higher the line number of the declaration (lower on
1979the page or screen), the higher the precedence. Hence, exponentiation
1980has the highest precedence, unary minus (@code{NEG}) is next, followed
1981by @samp{*} and @samp{/}, and so on. Unary minus is not associative,
1982only precedence matters (@code{%precedence}. @xref{Precedence, ,Operator
1983Precedence}.
1984
1985The other important new feature is the @code{%prec} in the grammar
1986section for the unary minus operator. The @code{%prec} simply instructs
1987Bison that the rule @samp{| '-' exp} has the same precedence as
1988@code{NEG}---in this case the next-to-highest. @xref{Contextual
1989Precedence, ,Context-Dependent Precedence}.
1990
1991Here is a sample run of @file{calc.y}:
1992
1993@need 500
1994@example
1995$ @kbd{calc}
1996@kbd{4 + 4.5 - (34/(8*3+-3))}
19976.880952381
1998@kbd{-56 + 2}
1999-54
2000@kbd{3 ^ 2}
20019
2002@end example
2003
2004@node Simple Error Recovery
2005@section Simple Error Recovery
2006@cindex error recovery, simple
2007
2008Up to this point, this manual has not addressed the issue of @dfn{error
2009recovery}---how to continue parsing after the parser detects a syntax
2010error. All we have handled is error reporting with @code{yyerror}.
2011Recall that by default @code{yyparse} returns after calling
2012@code{yyerror}. This means that an erroneous input line causes the
2013calculator program to exit. Now we show how to rectify this deficiency.
2014
2015The Bison language itself includes the reserved word @code{error}, which
2016may be included in the grammar rules. In the example below it has
2017been added to one of the alternatives for @code{line}:
2018
2019@example
2020@group
2021line: '\n'
2022 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
2023 | error '\n' @{ yyerrok; @}
2024;
2025@end group
2026@end example
2027
2028This addition to the grammar allows for simple error recovery in the
2029event of a syntax error. If an expression that cannot be evaluated is
2030read, the error will be recognized by the third rule for @code{line},
2031and parsing will continue. (The @code{yyerror} function is still called
2032upon to print its message as well.) The action executes the statement
2033@code{yyerrok}, a macro defined automatically by Bison; its meaning is
2034that error recovery is complete (@pxref{Error Recovery}). Note the
2035difference between @code{yyerrok} and @code{yyerror}; neither one is a
2036misprint.
2037
2038This form of error recovery deals with syntax errors. There are other
2039kinds of errors; for example, division by zero, which raises an exception
2040signal that is normally fatal. A real calculator program must handle this
2041signal and use @code{longjmp} to return to @code{main} and resume parsing
2042input lines; it would also have to discard the rest of the current line of
2043input. We won't discuss this issue further because it is not specific to
2044Bison programs.
2045
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
2051
2052This example extends the infix notation calculator with location
2053tracking. This feature will be used to improve the error messages. For
2054the sake of clarity, this example is a simple integer calculator, since
2055most of the work needed to use locations will be done in the lexical
2056analyzer.
2057
2058@menu
2059* Ltcalc Declarations:: Bison and C declarations for ltcalc.
2060* Ltcalc Rules:: Grammar rules for ltcalc, with explanations.
2061* Ltcalc Lexer:: The lexical analyzer.
2062@end menu
2063
2064@node Ltcalc Declarations
2065@subsection Declarations for @code{ltcalc}
2066
2067The C and Bison declarations for the location tracking calculator are
2068the same as the declarations for the infix notation calculator.
2069
2070@example
2071/* Location tracking calculator. */
2072
2073%@{
2074 #define YYSTYPE int
2075 #include <math.h>
2076 int yylex (void);
2077 void yyerror (char const *);
2078%@}
2079
2080/* Bison declarations. */
2081%token NUM
2082
2083%left '-' '+'
2084%left '*' '/'
2085%precedence NEG
2086%right '^'
2087
2088%% /* The grammar follows. */
2089@end example
2090
2091@noindent
2092Note there are no declarations specific to locations. Defining a data
2093type for storing locations is not needed: we will use the type provided
2094by default (@pxref{Location Type, ,Data Types of Locations}), which is a
2095four 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
2098Coding Standards and common practice, the line and column count both
2099start at 1.
2100
2101@node Ltcalc Rules
2102@subsection Grammar Rules for @code{ltcalc}
2103
2104Whether handling locations or not has no effect on the syntax of your
2105language. Therefore, grammar rules for this example will be very close
2106to those of the previous example: we will only modify them to benefit
2107from the new information.
2108
2109Here, we will use locations to report divisions by zero, and locate the
2110wrong expressions or subexpressions.
2111
2112@example
2113@group
2114input : /* empty */
2115 | input line
2116;
2117@end group
2118
2119@group
2120line : '\n'
2121 | exp '\n' @{ printf ("%d\n", $1); @}
2122;
2123@end group
2124
2125@group
2126exp : NUM @{ $$ = $1; @}
2127 | exp '+' exp @{ $$ = $1 + $3; @}
2128 | exp '-' exp @{ $$ = $1 - $3; @}
2129 | exp '*' exp @{ $$ = $1 * $3; @}
2130@end group
2131@group
2132 | exp '/' exp
2133 @{
2134 if ($3)
2135 $$ = $1 / $3;
2136 else
2137 @{
2138 $$ = 1;
2139 fprintf (stderr, "%d.%d-%d.%d: division by zero",
2140 @@3.first_line, @@3.first_column,
2141 @@3.last_line, @@3.last_column);
2142 @}
2143 @}
2144@end group
2145@group
2146 | '-' exp %prec NEG @{ $$ = -$2; @}
2147 | exp '^' exp @{ $$ = pow ($1, $3); @}
2148 | '(' exp ')' @{ $$ = $2; @}
2149@end group
2150@end example
2151
2152This code shows how to reach locations inside of semantic actions, by
2153using the pseudo-variables @code{@@@var{n}} for rule components, and the
2154pseudo-variable @code{@@$} for groupings.
2155
2156We don't need to assign a value to @code{@@$}: the output parser does it
2157automatically. 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
2159of @code{@@@var{n}}, for a rule with @var{n} components. This behavior
2160can be redefined (@pxref{Location Default Action, , Default Action for
2161Locations}), and for very specific rules, @code{@@$} can be computed by
2162hand.
2163
2164@node Ltcalc Lexer
2165@subsection The @code{ltcalc} Lexical Analyzer.
2166
2167Until now, we relied on Bison's defaults to enable location
2168tracking. The next step is to rewrite the lexical analyzer, and make it
2169able to feed the parser with the token locations, as it already does for
2170semantic values.
2171
2172To this end, we must take into account every single character of the
2173input text, to avoid the computed locations of being fuzzy or wrong:
2174
2175@example
2176@group
2177int
2178yylex (void)
2179@{
2180 int c;
2181@end group
2182
2183@group
2184 /* Skip white space. */
2185 while ((c = getchar ()) == ' ' || c == '\t')
2186 ++yylloc.last_column;
2187@end group
2188
2189@group
2190 /* Step. */
2191 yylloc.first_line = yylloc.last_line;
2192 yylloc.first_column = yylloc.last_column;
2193@end group
2194
2195@group
2196 /* Process numbers. */
2197 if (isdigit (c))
2198 @{
2199 yylval = c - '0';
2200 ++yylloc.last_column;
2201 while (isdigit (c = getchar ()))
2202 @{
2203 ++yylloc.last_column;
2204 yylval = yylval * 10 + c - '0';
2205 @}
2206 ungetc (c, stdin);
2207 return NUM;
2208 @}
2209@end group
2210
2211 /* Return end-of-input. */
2212 if (c == EOF)
2213 return 0;
2214
2215 /* Return a single char, and update location. */
2216 if (c == '\n')
2217 @{
2218 ++yylloc.last_line;
2219 yylloc.last_column = 0;
2220 @}
2221 else
2222 ++yylloc.last_column;
2223 return c;
2224@}
2225@end example
2226
2227Basically, the lexical analyzer performs the same processing as before:
2228it skips blanks and tabs, and reads numbers or single-character tokens.
2229In addition, it updates @code{yylloc}, the global variable (of type
2230@code{YYLTYPE}) containing the token's location.
2231
2232Now, each time this function returns a token, the parser has its number
2233as well as its semantic value, and its location in the text. The last
2234needed change is to initialize @code{yylloc}, for example in the
2235controlling function:
2236
2237@example
2238@group
2239int
2240main (void)
2241@{
2242 yylloc.first_line = yylloc.last_line = 1;
2243 yylloc.first_column = yylloc.last_column = 0;
2244 return yyparse ();
2245@}
2246@end group
2247@end example
2248
2249Remember that computing locations is not a matter of syntax. Every
2250character must be associated to a location update, whether it is in
2251valid input, in comments, in literal strings, and so on.
2252
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
2258
2259Now that the basics of Bison have been discussed, it is time to move on to
2260a more advanced problem. The above calculators provided only five
2261functions, @samp{+}, @samp{-}, @samp{*}, @samp{/} and @samp{^}. It would
2262be nice to have a calculator that provides other mathematical functions such
2263as @code{sin}, @code{cos}, etc.
2264
2265It is easy to add new operators to the infix calculator as long as they are
2266only single-character literals. The lexical analyzer @code{yylex} passes
2267back all nonnumeric characters as tokens, so new grammar rules suffice for
2268adding a new operator. But we want something more flexible: built-in
2269functions whose syntax has this form:
2270
2271@example
2272@var{function_name} (@var{argument})
2273@end example
2274
2275@noindent
2276At the same time, we will add memory to the calculator, by allowing you
2277to create named variables, store values in them, and use them later.
2278Here is a sample session with the multi-function calculator:
2279
2280@example
2281$ @kbd{mfcalc}
2282@kbd{pi = 3.141592653589}
22833.1415926536
2284@kbd{sin(pi)}
22850.0000000000
2286@kbd{alpha = beta1 = 2.3}
22872.3000000000
2288@kbd{alpha}
22892.3000000000
2290@kbd{ln(alpha)}
22910.8329091229
2292@kbd{exp(ln(beta1))}
22932.3000000000
2294$
2295@end example
2296
2297Note that multiple assignment and nested function calls are permitted.
2298
2299@menu
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.
2303@end menu
2304
2305@node Mfcalc Declarations
2306@subsection Declarations for @code{mfcalc}
2307
2308Here are the C and Bison declarations for the multi-function calculator.
2309
2310@smallexample
2311@group
2312%@{
2313 #include <math.h> /* For math functions, cos(), sin(), etc. */
2314 #include "calc.h" /* Contains definition of `symrec'. */
2315 int yylex (void);
2316 void yyerror (char const *);
2317%@}
2318@end group
2319@group
2320%union @{
2321 double val; /* For returning numbers. */
2322 symrec *tptr; /* For returning symbol-table pointers. */
2323@}
2324@end group
2325%token <val> NUM /* Simple double precision number. */
2326%token <tptr> VAR FNCT /* Variable and Function. */
2327%type <val> exp
2328
2329@group
2330%right '='
2331%left '-' '+'
2332%left '*' '/'
2333%precedence NEG /* negation--unary minus */
2334%right '^' /* exponentiation */
2335@end group
2336%% /* The grammar follows. */
2337@end smallexample
2338
2339The above grammar introduces only two new features of the Bison language.
2340These features allow semantic values to have various data types
2341(@pxref{Multiple Types, ,More Than One Value Type}).
2342
2343The @code{%union} declaration specifies the entire list of possible types;
2344this is instead of defining @code{YYSTYPE}. The allowable types are now
2345double-floats (for @code{exp} and @code{NUM}) and pointers to entries in
2346the symbol table. @xref{Union Decl, ,The Collection of Value Types}.
2347
2348Since values can now have various types, it is necessary to associate a
2349type with each grammar symbol whose semantic value is used. These symbols
2350are @code{NUM}, @code{VAR}, @code{FNCT}, and @code{exp}. Their
2351declarations are augmented with information about their data type (placed
2352between angle brackets).
2353
2354The Bison construct @code{%type} is used for declaring nonterminal
2355symbols, just as @code{%token} is used for declaring token types. We
2356have not used @code{%type} before because nonterminal symbols are
2357normally 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}.
2360
2361@node Mfcalc Rules
2362@subsection Grammar Rules for @code{mfcalc}
2363
2364Here are the grammar rules for the multi-function calculator.
2365Most of them are copied directly from @code{calc}; three rules,
2366those which mention @code{VAR} or @code{FNCT}, are new.
2367
2368@smallexample
2369@group
2370input: /* empty */
2371 | input line
2372;
2373@end group
2374
2375@group
2376line:
2377 '\n'
2378 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
2379 | error '\n' @{ yyerrok; @}
2380;
2381@end group
2382
2383@group
2384exp: 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; @}
2395;
2396@end group
2397/* End of grammar. */
2398%%
2399@end smallexample
2400
2401@node Mfcalc Symbol Table
2402@subsection The @code{mfcalc} Symbol Table
2403@cindex symbol table example
2404
2405The multi-function calculator requires a symbol table to keep track of the
2406names and meanings of variables and functions. This doesn't affect the
2407grammar rules (except for the actions) or the Bison declarations, but it
2408requires some additional C functions for support.
2409
2410The symbol table itself consists of a linked list of records. Its
2411definition, which is kept in the header @file{calc.h}, is as follows. It
2412provides for either functions or variables to be placed in the table.
2413
2414@smallexample
2415@group
2416/* Function type. */
2417typedef double (*func_t) (double);
2418@end group
2419
2420@group
2421/* Data type for links in the chain of symbols. */
2422struct symrec
2423@{
2424 char *name; /* name of symbol */
2425 int type; /* type of symbol: either VAR or FNCT */
2426 union
2427 @{
2428 double var; /* value of a VAR */
2429 func_t fnctptr; /* value of a FNCT */
2430 @} value;
2431 struct symrec *next; /* link field */
2432@};
2433@end group
2434
2435@group
2436typedef struct symrec symrec;
2437
2438/* The symbol table: a chain of `struct symrec'. */
2439extern symrec *sym_table;
2440
2441symrec *putsym (char const *, int);
2442symrec *getsym (char const *);
2443@end group
2444@end smallexample
2445
2446The new version of @code{main} includes a call to @code{init_table}, a
2447function that initializes the symbol table. Here it is, and
2448@code{init_table} as well:
2449
2450@smallexample
2451#include <stdio.h>
2452
2453@group
2454/* Called by yyparse on error. */
2455void
2456yyerror (char const *s)
2457@{
2458 printf ("%s\n", s);
2459@}
2460@end group
2461
2462@group
2463struct init
2464@{
2465 char const *fname;
2466 double (*fnct) (double);
2467@};
2468@end group
2469
2470@group
2471struct init const arith_fncts[] =
2472@{
2473 "sin", sin,
2474 "cos", cos,
2475 "atan", atan,
2476 "ln", log,
2477 "exp", exp,
2478 "sqrt", sqrt,
2479 0, 0
2480@};
2481@end group
2482
2483@group
2484/* The symbol table: a chain of `struct symrec'. */
2485symrec *sym_table;
2486@end group
2487
2488@group
2489/* Put arithmetic functions in table. */
2490void
2491init_table (void)
2492@{
2493 int i;
2494 symrec *ptr;
2495 for (i = 0; arith_fncts[i].fname != 0; i++)
2496 @{
2497 ptr = putsym (arith_fncts[i].fname, FNCT);
2498 ptr->value.fnctptr = arith_fncts[i].fnct;
2499 @}
2500@}
2501@end group
2502
2503@group
2504int
2505main (void)
2506@{
2507 init_table ();
2508 return yyparse ();
2509@}
2510@end group
2511@end smallexample
2512
2513By simply editing the initialization list and adding the necessary include
2514files, you can add additional functions to the calculator.
2515
2516Two important functions allow look-up and installation of symbols in the
2517symbol 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
2519linked to the front of the list, and a pointer to the object is returned.
2520The function @code{getsym} is passed the name of the symbol to look up. If
2521found, a pointer to that symbol is returned; otherwise zero is returned.
2522
2523@smallexample
2524symrec *
2525putsym (char const *sym_name, int sym_type)
2526@{
2527 symrec *ptr;
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;
2534 sym_table = ptr;
2535 return ptr;
2536@}
2537
2538symrec *
2539getsym (char const *sym_name)
2540@{
2541 symrec *ptr;
2542 for (ptr = sym_table; ptr != (symrec *) 0;
2543 ptr = (symrec *)ptr->next)
2544 if (strcmp (ptr->name,sym_name) == 0)
2545 return ptr;
2546 return 0;
2547@}
2548@end smallexample
2549
2550The function @code{yylex} must now recognize variables, numeric values, and
2551the single-character arithmetic operators. Strings of alphanumeric
2552characters with a leading letter are recognized as either variables or
2553functions depending on what the symbol table says about them.
2554
2555The string is passed to @code{getsym} for look up in the symbol table. If
2556the 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
2558already 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
2560returned to @code{yyparse}.
2561
2562No change is needed in the handling of numeric values and arithmetic
2563operators in @code{yylex}.
2564
2565@smallexample
2566@group
2567#include <ctype.h>
2568@end group
2569
2570@group
2571int
2572yylex (void)
2573@{
2574 int c;
2575
2576 /* Ignore white space, get first nonwhite character. */
2577 while ((c = getchar ()) == ' ' || c == '\t');
2578
2579 if (c == EOF)
2580 return 0;
2581@end group
2582
2583@group
2584 /* Char starts a number => parse the number. */
2585 if (c == '.' || isdigit (c))
2586 @{
2587 ungetc (c, stdin);
2588 scanf ("%lf", &yylval.val);
2589 return NUM;
2590 @}
2591@end group
2592
2593@group
2594 /* Char starts an identifier => read the name. */
2595 if (isalpha (c))
2596 @{
2597 symrec *s;
2598 static char *symbuf = 0;
2599 static int length = 0;
2600 int i;
2601@end group
2602
2603@group
2604 /* Initially make the buffer long enough
2605 for a 40-character symbol name. */
2606 if (length == 0)
2607 length = 40, symbuf = (char *)malloc (length + 1);
2608
2609 i = 0;
2610 do
2611@end group
2612@group
2613 @{
2614 /* If buffer is full, make it bigger. */
2615 if (i == length)
2616 @{
2617 length *= 2;
2618 symbuf = (char *) realloc (symbuf, length + 1);
2619 @}
2620 /* Add this character to the buffer. */
2621 symbuf[i++] = c;
2622 /* Get another character. */
2623 c = getchar ();
2624 @}
2625@end group
2626@group
2627 while (isalnum (c));
2628
2629 ungetc (c, stdin);
2630 symbuf[i] = '\0';
2631@end group
2632
2633@group
2634 s = getsym (symbuf);
2635 if (s == 0)
2636 s = putsym (symbuf, VAR);
2637 yylval.tptr = s;
2638 return s->type;
2639 @}
2640
2641 /* Any other character is a token by itself. */
2642 return c;
2643@}
2644@end group
2645@end smallexample
2646
2647This program is both powerful and flexible. You may easily add new
2648functions, and it is a simple job to modify this code to install
2649predefined variables such as @code{pi} or @code{e} as well.
2650
2651@node Exercises
2652@section Exercises
2653@cindex exercises
2654
2655@enumerate
2656@item
2657Add some new functions from @file{math.h} to the initialization list.
2658
2659@item
2660Add another array that contains constants and their values. Then
2661modify @code{init_table} to add these constants to the symbol table.
2662It will be easiest to give the constants type @code{VAR}.
2663
2664@item
2665Make the program report an error if the user refers to an
2666uninitialized variable in any way except to store a value in it.
2667@end enumerate
2668
2669@node Grammar File
2670@chapter Bison Grammar Files
2671
2672Bison takes as input a context-free grammar specification and produces a
2673C-language function that recognizes correct instances of the grammar.
2674
2675The Bison grammar input file conventionally has a name ending in @samp{.y}.
2676@xref{Invocation, ,Invoking Bison}.
2677
2678@menu
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.
2687@end menu
2688
2689@node Grammar Outline
2690@section Outline of a Bison Grammar
2691
2692A Bison grammar file has four main sections, shown here with the
2693appropriate delimiters:
2694
2695@example
2696%@{
2697 @var{Prologue}
2698%@}
2699
2700@var{Bison declarations}
2701
2702%%
2703@var{Grammar rules}
2704%%
2705
2706@var{Epilogue}
2707@end example
2708
2709Comments enclosed in @samp{/* @dots{} */} may appear in any of the sections.
2710As a GNU extension, @samp{//} introduces a comment that
2711continues until end of line.
2712
2713@menu
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.
2719@end menu
2720
2721@node Prologue
2722@subsection The prologue
2723@cindex declarations section
2724@cindex Prologue
2725@cindex declarations
2726
2727The @var{Prologue} section contains macro definitions and declarations
2728of functions and variables that are used in the actions in the grammar
2729rules. These are copied to the beginning of the parser file so that
2730they precede the definition of @code{yyparse}. You can use
2731@samp{#include} to get the declarations from a header file. If you
2732don't need any C declarations, you may omit the @samp{%@{} and
2733@samp{%@}} delimiters that bracket this section.
2734
2735The @var{Prologue} section is terminated by the first occurrence
2736of @samp{%@}} that is outside a comment, a string literal, or a
2737character constant.
2738
2739You may have more than one @var{Prologue} section, intermixed with the
2740@var{Bison declarations}. This allows you to have C and Bison
2741declarations that refer to each other. For example, the @code{%union}
2742declaration may use types defined in a header file, and you may wish to
2743prototype functions that take arguments of type @code{YYSTYPE}. This
2744can be done with two @var{Prologue} blocks, one before and one after the
2745@code{%union} declaration.
2746
2747@smallexample
2748%@{
2749 #define _GNU_SOURCE
2750 #include <stdio.h>
2751 #include "ptypes.h"
2752%@}
2753
2754%union @{
2755 long int n;
2756 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2757@}
2758
2759%@{
2760 static void print_token_value (FILE *, int, YYSTYPE);
2761 #define YYPRINT(F, N, L) print_token_value (F, N, L)
2762%@}
2763
2764@dots{}
2765@end smallexample
2766
2767When in doubt, it is usually safer to put prologue code before all
2768Bison declarations, rather than after. For example, any definitions
2769of feature test macros like @code{_GNU_SOURCE} or
2770@code{_POSIX_C_SOURCE} should appear before all Bison declarations, as
2771feature test macros can affect the behavior of Bison-generated
2772@code{#include} directives.
2773
2774@node Prologue Alternatives
2775@subsection Prologue Alternatives
2776@cindex Prologue Alternatives
2777
2778@findex %code
2779@findex %code requires
2780@findex %code provides
2781@findex %code top
2782
2783The functionality of @var{Prologue} sections can often be subtle and
2784inflexible.
2785As an alternative, Bison provides a %code directive with an explicit qualifier
2786field, which identifies the purpose of the code and thus the location(s) where
2787Bison should generate it.
2788For C/C++, the qualifier can be omitted for the default location, or it can be
2789one of @code{requires}, @code{provides}, @code{top}.
2790@xref{Decl Summary,,%code}.
2791
2792Look again at the example of the previous section:
2793
2794@smallexample
2795%@{
2796 #define _GNU_SOURCE
2797 #include <stdio.h>
2798 #include "ptypes.h"
2799%@}
2800
2801%union @{
2802 long int n;
2803 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2804@}
2805
2806%@{
2807 static void print_token_value (FILE *, int, YYSTYPE);
2808 #define YYPRINT(F, N, L) print_token_value (F, N, L)
2809%@}
2810
2811@dots{}
2812@end smallexample
2813
2814@noindent
2815Notice that there are two @var{Prologue} sections here, but there's a subtle
2816distinction between their functionality.
2817For example, if you decide to override Bison's default definition for
2818@code{YYLTYPE}, in which @var{Prologue} section should you write your new
2819definition?
2820You should write it in the first since Bison will insert that code into the
2821parser source code file @emph{before} the default @code{YYLTYPE} definition.
2822In which @var{Prologue} section should you prototype an internal function,
2823@code{trace_token}, that accepts @code{YYLTYPE} and @code{yytokentype} as
2824arguments?
2825You should prototype it in the second since Bison will insert that code
2826@emph{after} the @code{YYLTYPE} and @code{yytokentype} definitions.
2827
2828This distinction in functionality between the two @var{Prologue} sections is
2829established by the appearance of the @code{%union} between them.
2830This behavior raises a few questions.
2831First, why should the position of a @code{%union} affect definitions related to
2832@code{YYLTYPE} and @code{yytokentype}?
2833Second, what if there is no @code{%union}?
2834In that case, the second kind of @var{Prologue} section is not available.
2835This behavior is not intuitive.
2836
2837To avoid this subtle @code{%union} dependency, rewrite the example using a
2838@code{%code top} and an unqualified @code{%code}.
2839Let's go ahead and add the new @code{YYLTYPE} definition and the
2840@code{trace_token} prototype at the same time:
2841
2842@smallexample
2843%code top @{
2844 #define _GNU_SOURCE
2845 #include <stdio.h>
2846
2847 /* WARNING: The following code really belongs
2848 * in a `%code requires'; see below. */
2849
2850 #include "ptypes.h"
2851 #define YYLTYPE YYLTYPE
2852 typedef struct YYLTYPE
2853 @{
2854 int first_line;
2855 int first_column;
2856 int last_line;
2857 int last_column;
2858 char *filename;
2859 @} YYLTYPE;
2860@}
2861
2862%union @{
2863 long int n;
2864 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2865@}
2866
2867%code @{
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);
2871@}
2872
2873@dots{}
2874@end smallexample
2875
2876@noindent
2877In this way, @code{%code top} and the unqualified @code{%code} achieve the same
2878functionality as the two kinds of @var{Prologue} sections, but it's always
2879explicit which kind you intend.
2880Moreover, both kinds are always available even in the absence of @code{%union}.
2881
2882The @code{%code top} block above logically contains two parts.
2883The first two lines before the warning need to appear near the top of the
2884parser source code file.
2885The first line after the warning is required by @code{YYSTYPE} and thus also
2886needs to appear in the parser source code file.
2887However, if you've instructed Bison to generate a parser header file
2888(@pxref{Decl Summary, ,%defines}), you probably want that line to appear before
2889the @code{YYSTYPE} definition in that header file as well.
2890The @code{YYLTYPE} definition should also appear in the parser header file to
2891override the default @code{YYLTYPE} definition there.
2892
2893In other words, in the @code{%code top} block above, all but the first two
2894lines are dependency code required by the @code{YYSTYPE} and @code{YYLTYPE}
2895definitions.
2896Thus, they belong in one or more @code{%code requires}:
2897
2898@smallexample
2899%code top @{
2900 #define _GNU_SOURCE
2901 #include <stdio.h>
2902@}
2903
2904%code requires @{
2905 #include "ptypes.h"
2906@}
2907%union @{
2908 long int n;
2909 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2910@}
2911
2912%code requires @{
2913 #define YYLTYPE YYLTYPE
2914 typedef struct YYLTYPE
2915 @{
2916 int first_line;
2917 int first_column;
2918 int last_line;
2919 int last_column;
2920 char *filename;
2921 @} YYLTYPE;
2922@}
2923
2924%code @{
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);
2928@}
2929
2930@dots{}
2931@end smallexample
2932
2933@noindent
2934Now Bison will insert @code{#include "ptypes.h"} and the new @code{YYLTYPE}
2935definition before the Bison-generated @code{YYSTYPE} and @code{YYLTYPE}
2936definitions 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
2938place to write your own definition for @code{YYSTYPE}.)
2939
2940When you are writing dependency code for @code{YYSTYPE} and @code{YYLTYPE}, you
2941should prefer @code{%code requires} over @code{%code top} regardless of whether
2942you instruct Bison to generate a parser header file.
2943When you are writing code that you need Bison to insert only into the parser
2944source code file and that has no special need to appear at the top of that
2945file, you should prefer the unqualified @code{%code} over @code{%code top}.
2946These practices will make the purpose of each block of your code explicit to
2947Bison and to other developers reading your grammar file.
2948Following these practices, we expect the unqualified @code{%code} and
2949@code{%code requires} to be the most important of the four @var{Prologue}
2950alternatives.
2951
2952At some point while developing your parser, you might decide to provide
2953@code{trace_token} to modules that are external to your parser.
2954Thus, you might wish for Bison to insert the prototype into both the parser
2955header file and the parser source code file.
2956Since 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}.
2959More importantly, since it depends upon @code{YYLTYPE} and @code{yytokentype},
2960@code{%code requires} is not sufficient.
2961Instead, move its prototype from the unqualified @code{%code} to a
2962@code{%code provides}:
2963
2964@smallexample
2965%code top @{
2966 #define _GNU_SOURCE
2967 #include <stdio.h>
2968@}
2969
2970%code requires @{
2971 #include "ptypes.h"
2972@}
2973%union @{
2974 long int n;
2975 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2976@}
2977
2978%code requires @{
2979 #define YYLTYPE YYLTYPE
2980 typedef struct YYLTYPE
2981 @{
2982 int first_line;
2983 int first_column;
2984 int last_line;
2985 int last_column;
2986 char *filename;
2987 @} YYLTYPE;
2988@}
2989
2990%code provides @{
2991 void trace_token (enum yytokentype token, YYLTYPE loc);
2992@}
2993
2994%code @{
2995 static void print_token_value (FILE *, int, YYSTYPE);
2996 #define YYPRINT(F, N, L) print_token_value (F, N, L)
2997@}
2998
2999@dots{}
3000@end smallexample
3001
3002@noindent
3003Bison will insert the @code{trace_token} prototype into both the parser header
3004file and the parser source code file after the definitions for
3005@code{yytokentype}, @code{YYLTYPE}, and @code{YYSTYPE}.
3006
3007The above examples are careful to write directives in an order that reflects
3008the layout of the generated parser source code and header files:
3009@code{%code top}, @code{%code requires}, @code{%code provides}, and then
3010@code{%code}.
3011While your grammar files may generally be easier to read if you also follow
3012this order, Bison does not require it.
3013Instead, Bison lets you choose an organization that makes sense to you.
3014
3015You may declare any of these directives multiple times in the grammar file.
3016In that case, Bison concatenates the contained code in declaration order.
3017This is the only way in which the position of one of these directives within
3018the grammar file affects its functionality.
3019
3020The result of the previous two properties is greater flexibility in how you may
3021organize your grammar file.
3022For example, you may organize semantic-type-related directives by semantic
3023type:
3024
3025@smallexample
3026%code requires @{ #include "type1.h" @}
3027%union @{ type1 field1; @}
3028%destructor @{ type1_free ($$); @} <field1>
3029%printer @{ type1_print ($$); @} <field1>
3030
3031%code requires @{ #include "type2.h" @}
3032%union @{ type2 field2; @}
3033%destructor @{ type2_free ($$); @} <field2>
3034%printer @{ type2_print ($$); @} <field2>
3035@end smallexample
3036
3037@noindent
3038You could even place each of the above directive groups in the rules section of
3039the grammar file next to the set of rules that uses the associated semantic
3040type.
3041(In the rules section, you must terminate each of those directives with a
3042semicolon.)
3043And you don't have to worry that some directive (like a @code{%union}) in the
3044definitions section is going to adversely affect their functionality in some
3045counter-intuitive manner just because it comes first.
3046Such an organization is not possible using @var{Prologue} sections.
3047
3048This section has been concerned with explaining the advantages of the four
3049@var{Prologue} alternatives over the original Yacc @var{Prologue}.
3050However, in most cases when using these directives, you shouldn't need to
3051think about all the low-level ordering issues discussed here.
3052Instead, you should simply use these directives to label each block of your
3053code according to its purpose and let Bison handle the ordering.
3054@code{%code} is the most generic label.
3055Move code to @code{%code requires}, @code{%code provides}, or @code{%code top}
3056as needed.
3057
3058@node Bison Declarations
3059@subsection The Bison Declarations Section
3060@cindex Bison declarations (introduction)
3061@cindex declarations, Bison (introduction)
3062
3063The @var{Bison declarations} section contains declarations that define
3064terminal and nonterminal symbols, specify precedence, and so on.
3065In some simple grammars you may not need any declarations.
3066@xref{Declarations, ,Bison Declarations}.
3067
3068@node Grammar Rules
3069@subsection The Grammar Rules Section
3070@cindex grammar rules section
3071@cindex rules section for grammar
3072
3073The @dfn{grammar rules} section contains one or more Bison grammar
3074rules, and nothing else. @xref{Rules, ,Syntax of Grammar Rules}.
3075
3076There must always be at least one grammar rule, and the first
3077@samp{%%} (which precedes the grammar rules) may never be omitted even
3078if it is the first thing in the file.
3079
3080@node Epilogue
3081@subsection The epilogue
3082@cindex additional C code section
3083@cindex epilogue
3084@cindex C code, section for additional
3085
3086The @var{Epilogue} is copied verbatim to the end of the parser file, just as
3087the @var{Prologue} is copied to the beginning. This is the most convenient
3088place to put anything that you want to have in the parser file but which need
3089not come before the definition of @code{yyparse}. For example, the
3090definitions of @code{yylex} and @code{yyerror} often go here. Because
3091C requires functions to be declared before being used, you often need
3092to declare functions like @code{yylex} and @code{yyerror} in the Prologue,
3093even if you define them in the Epilogue.
3094@xref{Interface, ,Parser C-Language Interface}.
3095
3096If the last section is empty, you may omit the @samp{%%} that separates it
3097from the grammar rules.
3098
3099The Bison parser itself contains many macros and identifiers whose names
3100start with @samp{yy} or @samp{YY}, so it is a good idea to avoid using
3101any such names (except those documented in this manual) in the epilogue
3102of the grammar file.
3103
3104@node Symbols
3105@section Symbols, Terminal and Nonterminal
3106@cindex nonterminal symbol
3107@cindex terminal symbol
3108@cindex token type
3109@cindex symbol
3110
3111@dfn{Symbols} in Bison grammars represent the grammatical classifications
3112of the language.
3113
3114A @dfn{terminal symbol} (also known as a @dfn{token type}) represents a
3115class of syntactically equivalent tokens. You use the symbol in grammar
3116rules to mean that a token in that class is allowed. The symbol is
3117represented in the Bison parser by a numeric code, and the @code{yylex}
3118function returns a token type code to indicate what kind of token has
3119been read. You don't need to know what the code value is; you can use
3120the symbol to stand for it.
3121
3122A @dfn{nonterminal symbol} stands for a class of syntactically
3123equivalent groupings. The symbol name is used in writing grammar rules.
3124By convention, it should be all lower case.
3125
3126Symbol names can contain letters, underscores, periods, dashes, and (not
3127at the beginning) digits. Dashes in symbol names are a GNU
3128extension, incompatible with POSIX Yacc. Periods and dashes make symbol
3129names less convenient to use with named references, which require brackets
3130around such names (@pxref{Named References}). Terminal symbols
3131that contain periods or dashes make little sense: since they are not
3132valid symbols (in most programming languages) they are not exported as
3133token names.
3134
3135There are three ways of writing terminal symbols in the grammar:
3136
3137@itemize @bullet
3138@item
3139A @dfn{named token type} is written with an identifier, like an
3140identifier in C@. By convention, it should be all upper case. Each
3141such name must be defined with a Bison declaration such as
3142@code{%token}. @xref{Token Decl, ,Token Type Names}.
3143
3144@item
3145@cindex character token
3146@cindex literal token
3147@cindex single-character literal
3148A @dfn{character token type} (or @dfn{literal character token}) is
3149written in the grammar using the same syntax used in C for character
3150constants; for example, @code{'+'} is a character token type. A
3151character token type doesn't need to be declared unless you need to
3152specify its semantic value data type (@pxref{Value Type, ,Data Types of
3153Semantic Values}), associativity, or precedence (@pxref{Precedence,
3154,Operator Precedence}).
3155
3156By convention, a character token type is used only to represent a
3157token that consists of that particular character. Thus, the token
3158type @code{'+'} is used to represent the character @samp{+} as a
3159token. Nothing enforces this convention, but if you depart from it,
3160your program will confuse other readers.
3161
3162All the usual escape sequences used in character literals in C can be
3163used in Bison as well, but you must not use the null character as a
3164character literal because its numeric code, zero, signifies
3165end-of-input (@pxref{Calling Convention, ,Calling Convention
3166for @code{yylex}}). Also, unlike standard C, trigraphs have no
3167special meaning in Bison character literals, nor is backslash-newline
3168allowed.
3169
3170@item
3171@cindex string token
3172@cindex literal string token
3173@cindex multicharacter literal
3174A @dfn{literal string token} is written like a C string constant; for
3175example, @code{"<="} is a literal string token. A literal string token
3176doesn't need to be declared unless you need to specify its semantic
3177value data type (@pxref{Value Type}), associativity, or precedence
3178(@pxref{Precedence}).
3179
3180You can associate the literal string token with a symbolic name as an
3181alias, using the @code{%token} declaration (@pxref{Token Decl, ,Token
3182Declarations}). If you don't do that, the lexical analyzer has to
3183retrieve the token number for the literal string token from the
3184@code{yytname} table (@pxref{Calling Convention}).
3185
3186@strong{Warning}: literal string tokens do not work in Yacc.
3187
3188By convention, a literal string token is used only to represent a token
3189that consists of that particular string. Thus, you should use the token
3190type @code{"<="} to represent the string @samp{<=} as a token. Bison
3191does not enforce this convention, but if you depart from it, people who
3192read your program will be confused.
3193
3194All the escape sequences used in string literals in C can be used in
3195Bison as well, except that you must not use a null character within a
3196string literal. Also, unlike Standard C, trigraphs have no special
3197meaning in Bison string literals, nor is backslash-newline allowed. A
3198literal string token must contain two or more characters; for a token
3199containing just one character, use a character token (see above).
3200@end itemize
3201
3202How you choose to write a terminal symbol has no effect on its
3203grammatical meaning. That depends only on where it appears in rules and
3204on when the parser function returns that symbol.
3205
3206The value returned by @code{yylex} is always one of the terminal
3207symbols, except that a zero or negative value signifies end-of-input.
3208Whichever way you write the token type in the grammar rules, you write
3209it the same way in the definition of @code{yylex}. The numeric code
3210for a character token type is simply the positive numeric code of the
3211character, so @code{yylex} can use the identical value to generate the
3212requisite code, though you may need to convert it to @code{unsigned
3213char} to avoid sign-extension on hosts where @code{char} is signed.
3214Each named token type becomes a C macro in
3215the parser file, so @code{yylex} can use the name to stand for the code.
3216(This is why periods don't make sense in terminal symbols.)
3217@xref{Calling Convention, ,Calling Convention for @code{yylex}}.
3218
3219If @code{yylex} is defined in a separate file, you need to arrange for the
3220token-type macro definitions to be available there. Use the @samp{-d}
3221option when you run Bison, so that it will write these macro definitions
3222into a separate header file @file{@var{name}.tab.h} which you can include
3223in the other source files that need it. @xref{Invocation, ,Invoking Bison}.
3224
3225If you want to write a grammar that is portable to any Standard C
3226host, you must use only nonnull character tokens taken from the basic
3227execution character set of Standard C@. This set consists of the ten
3228digits, the 52 lower- and upper-case English letters, and the
3229characters in the following C-language string:
3230
3231@example
3232"\a\b\t\n\v\f\r !\"#%&'()*+,-./:;<=>?[\\]^_@{|@}~"
3233@end example
3234
3235The @code{yylex} function and Bison must use a consistent character set
3236and encoding for character tokens. For example, if you run Bison in an
3237ASCII environment, but then compile and run the resulting
3238program in an environment that uses an incompatible character set like
3239EBCDIC, the resulting program may not work because the tables
3240generated by Bison will assume ASCII numeric values for
3241character tokens. It is standard practice for software distributions to
3242contain C source files that were generated by Bison in an
3243ASCII environment, so installers on platforms that are
3244incompatible with ASCII must rebuild those files before
3245compiling them.
3246
3247The symbol @code{error} is a terminal symbol reserved for error recovery
3248(@pxref{Error Recovery}); you shouldn't use it for any other purpose.
3249In particular, @code{yylex} should never return this value. The default
3250value of the error token is 256, unless you explicitly assigned 256 to
3251one of your tokens with a @code{%token} declaration.
3252
3253@node Rules
3254@section Syntax of Grammar Rules
3255@cindex rule syntax
3256@cindex grammar rule syntax
3257@cindex syntax of grammar rules
3258
3259A Bison grammar rule has the following general form:
3260
3261@example
3262@group
3263@var{result}: @var{components}@dots{}
3264 ;
3265@end group
3266@end example
3267
3268@noindent
3269where @var{result} is the nonterminal symbol that this rule describes,
3270and @var{components} are various terminal and nonterminal symbols that
3271are put together by this rule (@pxref{Symbols}).
3272
3273For example,
3274
3275@example
3276@group
3277exp: exp '+' exp
3278 ;
3279@end group
3280@end example
3281
3282@noindent
3283says that two groupings of type @code{exp}, with a @samp{+} token in between,
3284can be combined into a larger grouping of type @code{exp}.
3285
3286White space in rules is significant only to separate symbols. You can add
3287extra white space as you wish.
3288
3289Scattered among the components can be @var{actions} that determine
3290the semantics of the rule. An action looks like this:
3291
3292@example
3293@{@var{C statements}@}
3294@end example
3295
3296@noindent
3297@cindex braced code
3298This is an example of @dfn{braced code}, that is, C code surrounded by
3299braces, much like a compound statement in C@. Braced code can contain
3300any sequence of C tokens, so long as its braces are balanced. Bison
3301does not check the braced code for correctness directly; it merely
3302copies the code to the output file, where the C compiler can check it.
3303
3304Within braced code, the balanced-brace count is not affected by braces
3305within comments, string literals, or character constants, but it is
3306affected by the C digraphs @samp{<%} and @samp{%>} that represent
3307braces. At the top level braced code must be terminated by @samp{@}}
3308and not by a digraph. Bison does not look for trigraphs, so if braced
3309code uses trigraphs you should ensure that they do not affect the
3310nesting of braces or the boundaries of comments, string literals, or
3311character constants.
3312
3313Usually there is only one action and it follows the components.
3314@xref{Actions}.
3315
3316@findex |
3317Multiple rules for the same @var{result} can be written separately or can
3318be joined with the vertical-bar character @samp{|} as follows:
3319
3320@example
3321@group
3322@var{result}: @var{rule1-components}@dots{}
3323 | @var{rule2-components}@dots{}
3324 @dots{}
3325 ;
3326@end group
3327@end example
3328
3329@noindent
3330They are still considered distinct rules even when joined in this way.
3331
3332If @var{components} in a rule is empty, it means that @var{result} can
3333match the empty string. For example, here is how to define a
3334comma-separated sequence of zero or more @code{exp} groupings:
3335
3336@example
3337@group
3338expseq: /* empty */
3339 | expseq1
3340 ;
3341@end group
3342
3343@group
3344expseq1: exp
3345 | expseq1 ',' exp
3346 ;
3347@end group
3348@end example
3349
3350@noindent
3351It is customary to write a comment @samp{/* empty */} in each rule
3352with no components.
3353
3354@node Recursion
3355@section Recursive Rules
3356@cindex recursive rule
3357
3358A rule is called @dfn{recursive} when its @var{result} nonterminal
3359appears also on its right hand side. Nearly all Bison grammars need to
3360use recursion, because that is the only way to define a sequence of any
3361number of a particular thing. Consider this recursive definition of a
3362comma-separated sequence of one or more expressions:
3363
3364@example
3365@group
3366expseq1: exp
3367 | expseq1 ',' exp
3368 ;
3369@end group
3370@end example
3371
3372@cindex left recursion
3373@cindex right recursion
3374@noindent
3375Since the recursive use of @code{expseq1} is the leftmost symbol in the
3376right hand side, we call this @dfn{left recursion}. By contrast, here
3377the same construct is defined using @dfn{right recursion}:
3378
3379@example
3380@group
3381expseq1: exp
3382 | exp ',' expseq1
3383 ;
3384@end group
3385@end example
3386
3387@noindent
3388Any kind of sequence can be defined using either left recursion or right
3389recursion, but you should always use left recursion, because it can
3390parse a sequence of any number of elements with bounded stack space.
3391Right recursion uses up space on the Bison stack in proportion to the
3392number of elements in the sequence, because all the elements must be
3393shifted onto the stack before the rule can be applied even once.
3394@xref{Algorithm, ,The Bison Parser Algorithm}, for further explanation
3395of this.
3396
3397@cindex mutual recursion
3398@dfn{Indirect} or @dfn{mutual} recursion occurs when the result of the
3399rule does not appear directly on its right hand side, but does appear
3400in rules for other nonterminals which do appear on its right hand
3401side.
3402
3403For example:
3404
3405@example
3406@group
3407expr: primary
3408 | primary '+' primary
3409 ;
3410@end group
3411
3412@group
3413primary: constant
3414 | '(' expr ')'
3415 ;
3416@end group
3417@end example
3418
3419@noindent
3420defines two mutually-recursive nonterminals, since each refers to the
3421other.
3422
3423@node Semantics
3424@section Defining Language Semantics
3425@cindex defining language semantics
3426@cindex language semantics, defining
3427
3428The grammar rules for a language determine only the syntax. The semantics
3429are determined by the semantic values associated with various tokens and
3430groupings, and by the actions taken when various groupings are recognized.
3431
3432For example, the calculator calculates properly because the value
3433associated with each expression is the proper number; it adds properly
3434because the action for the grouping @w{@samp{@var{x} + @var{y}}} is to add
3435the numbers associated with @var{x} and @var{y}.
3436
3437@menu
3438* Value Type:: Specifying one data type for all semantic values.
3439* Multiple Types:: Specifying several alternative data types.
3440* Actions:: An action is the semantic definition of a grammar rule.
3441* Action Types:: Specifying data types for actions to operate on.
3442* Mid-Rule Actions:: Most actions go at the end of a rule.
3443 This says when, why and how to use the exceptional
3444 action in the middle of a rule.
3445* Named References:: Using named references in actions.
3446@end menu
3447
3448@node Value Type
3449@subsection Data Types of Semantic Values
3450@cindex semantic value type
3451@cindex value type, semantic
3452@cindex data types of semantic values
3453@cindex default data type
3454
3455In a simple program it may be sufficient to use the same data type for
3456the semantic values of all language constructs. This was true in the
3457RPN and infix calculator examples (@pxref{RPN Calc, ,Reverse Polish
3458Notation Calculator}).
3459
3460Bison normally uses the type @code{int} for semantic values if your
3461program uses the same data type for all language constructs. To
3462specify some other type, define @code{YYSTYPE} as a macro, like this:
3463
3464@example
3465#define YYSTYPE double
3466@end example
3467
3468@noindent
3469@code{YYSTYPE}'s replacement list should be a type name
3470that does not contain parentheses or square brackets.
3471This macro definition must go in the prologue of the grammar file
3472(@pxref{Grammar Outline, ,Outline of a Bison Grammar}).
3473
3474@node Multiple Types
3475@subsection More Than One Value Type
3476
3477In most programs, you will need different data types for different kinds
3478of tokens and groupings. For example, a numeric constant may need type
3479@code{int} or @code{long int}, while a string constant needs type
3480@code{char *}, and an identifier might need a pointer to an entry in the
3481symbol table.
3482
3483To use more than one data type for semantic values in one parser, Bison
3484requires you to do two things:
3485
3486@itemize @bullet
3487@item
3488Specify the entire collection of possible data types, either by using the
3489@code{%union} Bison declaration (@pxref{Union Decl, ,The Collection of
3490Value Types}), or by using a @code{typedef} or a @code{#define} to
3491define @code{YYSTYPE} to be a union type whose member names are
3492the type tags.
3493
3494@item
3495Choose one of those types for each symbol (terminal or nonterminal) for
3496which semantic values are used. This is done for tokens with the
3497@code{%token} Bison declaration (@pxref{Token Decl, ,Token Type Names})
3498and for groupings with the @code{%type} Bison declaration (@pxref{Type
3499Decl, ,Nonterminal Symbols}).
3500@end itemize
3501
3502@node Actions
3503@subsection Actions
3504@cindex action
3505@vindex $$
3506@vindex $@var{n}
3507@vindex $@var{name}
3508@vindex $[@var{name}]
3509
3510An action accompanies a syntactic rule and contains C code to be executed
3511each time an instance of that rule is recognized. The task of most actions
3512is to compute a semantic value for the grouping built by the rule from the
3513semantic values associated with tokens or smaller groupings.
3514
3515An action consists of braced code containing C statements, and can be
3516placed at any position in the rule;
3517it is executed at that position. Most rules have just one action at the
3518end of the rule, following all the components. Actions in the middle of
3519a rule are tricky and used only for special purposes (@pxref{Mid-Rule
3520Actions, ,Actions in Mid-Rule}).
3521
3522The C code in an action can refer to the semantic values of the components
3523matched by the rule with the construct @code{$@var{n}}, which stands for
3524the value of the @var{n}th component. The semantic value for the grouping
3525being constructed is @code{$$}. In addition, the semantic values of
3526symbols can be accessed with the named references construct
3527@code{$@var{name}} or @code{$[@var{name}]}. Bison translates both of these
3528constructs into expressions of the appropriate type when it copies the
3529actions into the parser file. @code{$$} (or @code{$@var{name}}, when it
3530stands for the current grouping) is translated to a modifiable
3531lvalue, so it can be assigned to.
3532
3533Here is a typical example:
3534
3535@example
3536@group
3537exp: @dots{}
3538 | exp '+' exp
3539 @{ $$ = $1 + $3; @}
3540@end group
3541@end example
3542
3543Or, in terms of named references:
3544
3545@example
3546@group
3547exp[result]: @dots{}
3548 | exp[left] '+' exp[right]
3549 @{ $result = $left + $right; @}
3550@end group
3551@end example
3552
3553@noindent
3554This rule constructs an @code{exp} from two smaller @code{exp} groupings
3555connected by a plus-sign token. In the action, @code{$1} and @code{$3}
3556(@code{$left} and @code{$right})
3557refer to the semantic values of the two component @code{exp} groupings,
3558which are the first and third symbols on the right hand side of the rule.
3559The sum is stored into @code{$$} (@code{$result}) so that it becomes the
3560semantic value of
3561the addition-expression just recognized by the rule. If there were a
3562useful semantic value associated with the @samp{+} token, it could be
3563referred to as @code{$2}.
3564
3565@xref{Named References,,Using Named References}, for more information
3566about using the named references construct.
3567
3568Note that the vertical-bar character @samp{|} is really a rule
3569separator, and actions are attached to a single rule. This is a
3570difference with tools like Flex, for which @samp{|} stands for either
3571``or'', or ``the same action as that of the next rule''. In the
3572following example, the action is triggered only when @samp{b} is found:
3573
3574@example
3575@group
3576a-or-b: 'a'|'b' @{ a_or_b_found = 1; @};
3577@end group
3578@end example
3579
3580@cindex default action
3581If you don't specify an action for a rule, Bison supplies a default:
3582@w{@code{$$ = $1}.} Thus, the value of the first symbol in the rule
3583becomes the value of the whole rule. Of course, the default action is
3584valid only if the two data types match. There is no meaningful default
3585action for an empty rule; every empty rule must have an explicit action
3586unless the rule's value does not matter.
3587
3588@code{$@var{n}} with @var{n} zero or negative is allowed for reference
3589to tokens and groupings on the stack @emph{before} those that match the
3590current rule. This is a very risky practice, and to use it reliably
3591you must be certain of the context in which the rule is applied. Here
3592is a case in which you can use this reliably:
3593
3594@example
3595@group
3596foo: expr bar '+' expr @{ @dots{} @}
3597 | expr bar '-' expr @{ @dots{} @}
3598 ;
3599@end group
3600
3601@group
3602bar: /* empty */
3603 @{ previous_expr = $0; @}
3604 ;
3605@end group
3606@end example
3607
3608As long as @code{bar} is used only in the fashion shown here, @code{$0}
3609always refers to the @code{expr} which precedes @code{bar} in the
3610definition of @code{foo}.
3611
3612@vindex yylval
3613It is also possible to access the semantic value of the lookahead token, if
3614any, from a semantic action.
3615This semantic value is stored in @code{yylval}.
3616@xref{Action Features, ,Special Features for Use in Actions}.
3617
3618@node Action Types
3619@subsection Data Types of Values in Actions
3620@cindex action data types
3621@cindex data types in actions
3622
3623If you have chosen a single data type for semantic values, the @code{$$}
3624and @code{$@var{n}} constructs always have that data type.
3625
3626If you have used @code{%union} to specify a variety of data types, then you
3627must declare a choice among these types for each terminal or nonterminal
3628symbol that can have a semantic value. Then each time you use @code{$$} or
3629@code{$@var{n}}, its data type is determined by which symbol it refers to
3630in the rule. In this example,
3631
3632@example
3633@group
3634exp: @dots{}
3635 | exp '+' exp
3636 @{ $$ = $1 + $3; @}
3637@end group
3638@end example
3639
3640@noindent
3641@code{$1} and @code{$3} refer to instances of @code{exp}, so they all
3642have the data type declared for the nonterminal symbol @code{exp}. If
3643@code{$2} were used, it would have the data type declared for the
3644terminal symbol @code{'+'}, whatever that might be.
3645
3646Alternatively, you can specify the data type when you refer to the value,
3647by inserting @samp{<@var{type}>} after the @samp{$} at the beginning of the
3648reference. For example, if you have defined types as shown here:
3649
3650@example
3651@group
3652%union @{
3653 int itype;
3654 double dtype;
3655@}
3656@end group
3657@end example
3658
3659@noindent
3660then you can write @code{$<itype>1} to refer to the first subunit of the
3661rule as an integer, or @code{$<dtype>1} to refer to it as a double.
3662
3663@node Mid-Rule Actions
3664@subsection Actions in Mid-Rule
3665@cindex actions in mid-rule
3666@cindex mid-rule actions
3667
3668Occasionally it is useful to put an action in the middle of a rule.
3669These actions are written just like usual end-of-rule actions, but they
3670are executed before the parser even recognizes the following components.
3671
3672A mid-rule action may refer to the components preceding it using
3673@code{$@var{n}}, but it may not refer to subsequent components because
3674it is run before they are parsed.
3675
3676The mid-rule action itself counts as one of the components of the rule.
3677This makes a difference when there is another action later in the same rule
3678(and usually there is another at the end): you have to count the actions
3679along with the symbols when working out which number @var{n} to use in
3680@code{$@var{n}}.
3681
3682The mid-rule action can also have a semantic value. The action can set
3683its value with an assignment to @code{$$}, and actions later in the rule
3684can refer to the value using @code{$@var{n}}. Since there is no symbol
3685to name the action, there is no way to declare a data type for the value
3686in advance, so you must use the @samp{$<@dots{}>@var{n}} construct to
3687specify a data type each time you refer to this value.
3688
3689There is no way to set the value of the entire rule with a mid-rule
3690action, because assignments to @code{$$} do not have that effect. The
3691only way to set the value for the entire rule is with an ordinary action
3692at the end of the rule.
3693
3694Here is an example from a hypothetical compiler, handling a @code{let}
3695statement that looks like @samp{let (@var{variable}) @var{statement}} and
3696serves to create a variable named @var{variable} temporarily for the
3697duration of @var{statement}. To parse this construct, we must put
3698@var{variable} into the symbol table while @var{statement} is parsed, then
3699remove it afterward. Here is how it is done:
3700
3701@example
3702@group
3703stmt: LET '(' var ')'
3704 @{ $<context>$ = push_context ();
3705 declare_variable ($3); @}
3706 stmt @{ $$ = $6;
3707 pop_context ($<context>5); @}
3708@end group
3709@end example
3710
3711@noindent
3712As soon as @samp{let (@var{variable})} has been recognized, the first
3713action is run. It saves a copy of the current semantic context (the
3714list of accessible variables) as its semantic value, using alternative
3715@code{context} in the data-type union. Then it calls
3716@code{declare_variable} to add the new variable to that list. Once the
3717first action is finished, the embedded statement @code{stmt} can be
3718parsed. Note that the mid-rule action is component number 5, so the
3719@samp{stmt} is component number 6.
3720
3721After the embedded statement is parsed, its semantic value becomes the
3722value of the entire @code{let}-statement. Then the semantic value from the
3723earlier action is used to restore the prior list of variables. This
3724removes the temporary @code{let}-variable from the list so that it won't
3725appear to exist while the rest of the program is parsed.
3726
3727@findex %destructor
3728@cindex discarded symbols, mid-rule actions
3729@cindex error recovery, mid-rule actions
3730In the above example, if the parser initiates error recovery (@pxref{Error
3731Recovery}) while parsing the tokens in the embedded statement @code{stmt},
3732it might discard the previous semantic context @code{$<context>5} without
3733restoring it.
3734Thus, @code{$<context>5} needs a destructor (@pxref{Destructor Decl, , Freeing
3735Discarded Symbols}).
3736However, Bison currently provides no means to declare a destructor specific to
3737a particular mid-rule action's semantic value.
3738
3739One solution is to bury the mid-rule action inside a nonterminal symbol and to
3740declare a destructor for that symbol:
3741
3742@example
3743@group
3744%type <context> let
3745%destructor @{ pop_context ($$); @} let
3746
3747%%
3748
3749stmt: let stmt
3750 @{ $$ = $2;
3751 pop_context ($1); @}
3752 ;
3753
3754let: LET '(' var ')'
3755 @{ $$ = push_context ();
3756 declare_variable ($3); @}
3757 ;
3758
3759@end group
3760@end example
3761
3762@noindent
3763Note that the action is now at the end of its rule.
3764Any mid-rule action can be converted to an end-of-rule action in this way, and
3765this is what Bison actually does to implement mid-rule actions.
3766
3767Taking action before a rule is completely recognized often leads to
3768conflicts since the parser must commit to a parse in order to execute the
3769action. For example, the following two rules, without mid-rule actions,
3770can coexist in a working parser because the parser can shift the open-brace
3771token and look at what follows before deciding whether there is a
3772declaration or not:
3773
3774@example
3775@group
3776compound: '@{' declarations statements '@}'
3777 | '@{' statements '@}'
3778 ;
3779@end group
3780@end example
3781
3782@noindent
3783But when we add a mid-rule action as follows, the rules become nonfunctional:
3784
3785@example
3786@group
3787compound: @{ prepare_for_local_variables (); @}
3788 '@{' declarations statements '@}'
3789@end group
3790@group
3791 | '@{' statements '@}'
3792 ;
3793@end group
3794@end example
3795
3796@noindent
3797Now the parser is forced to decide whether to run the mid-rule action
3798when it has read no farther than the open-brace. In other words, it
3799must commit to using one rule or the other, without sufficient
3800information to do it correctly. (The open-brace token is what is called
3801the @dfn{lookahead} token at this time, since the parser is still
3802deciding what to do about it. @xref{Lookahead, ,Lookahead Tokens}.)
3803
3804You might think that you could correct the problem by putting identical
3805actions into the two rules, like this:
3806
3807@example
3808@group
3809compound: @{ prepare_for_local_variables (); @}
3810 '@{' declarations statements '@}'
3811 | @{ prepare_for_local_variables (); @}
3812 '@{' statements '@}'
3813 ;
3814@end group
3815@end example
3816
3817@noindent
3818But this does not help, because Bison does not realize that the two actions
3819are identical. (Bison never tries to understand the C code in an action.)
3820
3821If the grammar is such that a declaration can be distinguished from a
3822statement by the first token (which is true in C), then one solution which
3823does work is to put the action after the open-brace, like this:
3824
3825@example
3826@group
3827compound: '@{' @{ prepare_for_local_variables (); @}
3828 declarations statements '@}'
3829 | '@{' statements '@}'
3830 ;
3831@end group
3832@end example
3833
3834@noindent
3835Now the first token of the following declaration or statement,
3836which would in any case tell Bison which rule to use, can still do so.
3837
3838Another solution is to bury the action inside a nonterminal symbol which
3839serves as a subroutine:
3840
3841@example
3842@group
3843subroutine: /* empty */
3844 @{ prepare_for_local_variables (); @}
3845 ;
3846
3847@end group
3848
3849@group
3850compound: subroutine
3851 '@{' declarations statements '@}'
3852 | subroutine
3853 '@{' statements '@}'
3854 ;
3855@end group
3856@end example
3857
3858@noindent
3859Now Bison can execute the action in the rule for @code{subroutine} without
3860deciding which rule for @code{compound} it will eventually use.
3861
3862@node Named References
3863@subsection Using Named References
3864@cindex named references
3865
3866While every semantic value can be accessed with positional references
3867@code{$@var{n}} and @code{$$}, it's often much more convenient to refer to
3868them by name. First of all, original symbol names may be used as named
3869references. For example:
3870
3871@example
3872@group
3873invocation: op '(' args ')'
3874 @{ $invocation = new_invocation ($op, $args, @@invocation); @}
3875@end group
3876@end example
3877
3878@noindent
3879The positional @code{$$}, @code{@@$}, @code{$n}, and @code{@@n} can be
3880mixed with @code{$name} and @code{@@name} arbitrarily. For example:
3881
3882@example
3883@group
3884invocation: op '(' args ')'
3885 @{ $$ = new_invocation ($op, $args, @@$); @}
3886@end group
3887@end example
3888
3889@noindent
3890However, sometimes regular symbol names are not sufficient due to
3891ambiguities:
3892
3893@example
3894@group
3895exp: exp '/' exp
3896 @{ $exp = $exp / $exp; @} // $exp is ambiguous.
3897
3898exp: exp '/' exp
3899 @{ $$ = $1 / $exp; @} // One usage is ambiguous.
3900
3901exp: exp '/' exp
3902 @{ $$ = $1 / $3; @} // No error.
3903@end group
3904@end example
3905
3906@noindent
3907When ambiguity occurs, explicitly declared names may be used for values and
3908locations. Explicit names are declared as a bracketed name after a symbol
3909appearance in rule definitions. For example:
3910@example
3911@group
3912exp[result]: exp[left] '/' exp[right]
3913 @{ $result = $left / $right; @}
3914@end group
3915@end example
3916
3917@noindent
3918Explicit names may be declared for RHS and for LHS symbols as well. In order
3919to access a semantic value generated by a mid-rule action, an explicit name
3920may also be declared by putting a bracketed name after the closing brace of
3921the mid-rule action code:
3922@example
3923@group
3924exp[res]: exp[x] '+' @{$left = $x;@}[left] exp[right]
3925 @{ $res = $left + $right; @}
3926@end group
3927@end example
3928
3929@noindent
3930
3931In references, in order to specify names containing dots and dashes, an explicit
3932bracketed syntax @code{$[name]} and @code{@@[name]} must be used:
3933@example
3934@group
3935if-stmt: IF '(' expr ')' THEN then.stmt ';'
3936 @{ $[if-stmt] = new_if_stmt ($expr, $[then.stmt]); @}
3937@end group
3938@end example
3939
3940It often happens that named references are followed by a dot, dash or other
3941C punctuation marks and operators. By default, Bison will read
3942@code{$name.suffix} as a reference to symbol value @code{$name} followed by
3943@samp{.suffix}, i.e., an access to the @samp{suffix} field of the semantic
3944value. In order to force Bison to recognize @code{name.suffix} in its entirety
3945as the name of a semantic value, bracketed syntax @code{$[name.suffix]}
3946must be used.
3947
3948
3949@node Locations
3950@section Tracking Locations
3951@cindex location
3952@cindex textual location
3953@cindex location, textual
3954
3955Though grammar rules and semantic actions are enough to write a fully
3956functional parser, it can be useful to process some additional information,
3957especially symbol locations.
3958
3959The way locations are handled is defined by providing a data type, and
3960actions to take when rules are matched.
3961
3962@menu
3963* Location Type:: Specifying a data type for locations.
3964* Actions and Locations:: Using locations in actions.
3965* Location Default Action:: Defining a general way to compute locations.
3966@end menu
3967
3968@node Location Type
3969@subsection Data Type of Locations
3970@cindex data type of locations
3971@cindex default location type
3972
3973Defining a data type for locations is much simpler than for semantic values,
3974since all tokens and groupings always use the same type.
3975
3976You can specify the type of locations by defining a macro called
3977@code{YYLTYPE}, just as you can specify the semantic value type by
3978defining a @code{YYSTYPE} macro (@pxref{Value Type}).
3979When @code{YYLTYPE} is not defined, Bison uses a default structure type with
3980four members:
3981
3982@example
3983typedef struct YYLTYPE
3984@{
3985 int first_line;
3986 int first_column;
3987 int last_line;
3988 int last_column;
3989@} YYLTYPE;
3990@end example
3991
3992When @code{YYLTYPE} is not defined, at the beginning of the parsing, Bison
3993initializes all these fields to 1 for @code{yylloc}. To initialize
3994@code{yylloc} with a custom location type (or to chose a different
3995initialization), use the @code{%initial-action} directive. @xref{Initial
3996Action Decl, , Performing Actions before Parsing}.
3997
3998@node Actions and Locations
3999@subsection Actions and Locations
4000@cindex location actions
4001@cindex actions, location
4002@vindex @@$
4003@vindex @@@var{n}
4004@vindex @@@var{name}
4005@vindex @@[@var{name}]
4006
4007Actions are not only useful for defining language semantics, but also for
4008describing the behavior of the output parser with locations.
4009
4010The most obvious way for building locations of syntactic groupings is very
4011similar to the way semantic values are computed. In a given rule, several
4012constructs can be used to access the locations of the elements being matched.
4013The location of the @var{n}th component of the right hand side is
4014@code{@@@var{n}}, while the location of the left hand side grouping is
4015@code{@@$}.
4016
4017In addition, the named references construct @code{@@@var{name}} and
4018@code{@@[@var{name}]} may also be used to address the symbol locations.
4019@xref{Named References,,Using Named References}, for more information
4020about using the named references construct.
4021
4022Here is a basic example using the default data type for locations:
4023
4024@example
4025@group
4026exp: @dots{}
4027 | exp '/' exp
4028 @{
4029 @@$.first_column = @@1.first_column;
4030 @@$.first_line = @@1.first_line;
4031 @@$.last_column = @@3.last_column;
4032 @@$.last_line = @@3.last_line;
4033 if ($3)
4034 $$ = $1 / $3;
4035 else
4036 @{
4037 $$ = 1;
4038 fprintf (stderr,
4039 "Division by zero, l%d,c%d-l%d,c%d",
4040 @@3.first_line, @@3.first_column,
4041 @@3.last_line, @@3.last_column);
4042 @}
4043 @}
4044@end group
4045@end example
4046
4047As for semantic values, there is a default action for locations that is
4048run each time a rule is matched. It sets the beginning of @code{@@$} to the
4049beginning of the first symbol, and the end of @code{@@$} to the end of the
4050last symbol.
4051
4052With this default action, the location tracking can be fully automatic. The
4053example above simply rewrites this way:
4054
4055@example
4056@group
4057exp: @dots{}
4058 | exp '/' exp
4059 @{
4060 if ($3)
4061 $$ = $1 / $3;
4062 else
4063 @{
4064 $$ = 1;
4065 fprintf (stderr,
4066 "Division by zero, l%d,c%d-l%d,c%d",
4067 @@3.first_line, @@3.first_column,
4068 @@3.last_line, @@3.last_column);
4069 @}
4070 @}
4071@end group
4072@end example
4073
4074@vindex yylloc
4075It is also possible to access the location of the lookahead token, if any,
4076from a semantic action.
4077This location is stored in @code{yylloc}.
4078@xref{Action Features, ,Special Features for Use in Actions}.
4079
4080@node Location Default Action
4081@subsection Default Action for Locations
4082@vindex YYLLOC_DEFAULT
4083@cindex GLR parsers and @code{YYLLOC_DEFAULT}
4084
4085Actually, actions are not the best place to compute locations. Since
4086locations are much more general than semantic values, there is room in
4087the output parser to redefine the default action to take for each
4088rule. The @code{YYLLOC_DEFAULT} macro is invoked each time a rule is
4089matched, before the associated action is run. It is also invoked
4090while processing a syntax error, to compute the error's location.
4091Before reporting an unresolvable syntactic ambiguity, a GLR
4092parser invokes @code{YYLLOC_DEFAULT} recursively to compute the location
4093of that ambiguity.
4094
4095Most of the time, this macro is general enough to suppress location
4096dedicated code from semantic actions.
4097
4098The @code{YYLLOC_DEFAULT} macro takes three parameters. The first one is
4099the location of the grouping (the result of the computation). When a
4100rule is matched, the second parameter identifies locations of
4101all right hand side elements of the rule being matched, and the third
4102parameter is the size of the rule's right hand side.
4103When a GLR parser reports an ambiguity, which of multiple candidate
4104right hand sides it passes to @code{YYLLOC_DEFAULT} is undefined.
4105When processing a syntax error, the second parameter identifies locations
4106of the symbols that were discarded during error processing, and the third
4107parameter is the number of discarded symbols.
4108
4109By default, @code{YYLLOC_DEFAULT} is defined this way:
4110
4111@smallexample
4112@group
4113# define YYLLOC_DEFAULT(Current, Rhs, N) \
4114 do \
4115 if (N) \
4116 @{ \
4117 (Current).first_line = YYRHSLOC(Rhs, 1).first_line; \
4118 (Current).first_column = YYRHSLOC(Rhs, 1).first_column; \
4119 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
4120 (Current).last_column = YYRHSLOC(Rhs, N).last_column; \
4121 @} \
4122 else \
4123 @{ \
4124 (Current).first_line = (Current).last_line = \
4125 YYRHSLOC(Rhs, 0).last_line; \
4126 (Current).first_column = (Current).last_column = \
4127 YYRHSLOC(Rhs, 0).last_column; \
4128 @} \
4129 while (0)
4130@end group
4131@end smallexample
4132
4133where @code{YYRHSLOC (rhs, k)} is the location of the @var{k}th symbol
4134in @var{rhs} when @var{k} is positive, and the location of the symbol
4135just before the reduction when @var{k} and @var{n} are both zero.
4136
4137When defining @code{YYLLOC_DEFAULT}, you should consider that:
4138
4139@itemize @bullet
4140@item
4141All arguments are free of side-effects. However, only the first one (the
4142result) should be modified by @code{YYLLOC_DEFAULT}.
4143
4144@item
4145For consistency with semantic actions, valid indexes within the
4146right hand side range from 1 to @var{n}. When @var{n} is zero, only 0 is a
4147valid index, and it refers to the symbol just before the reduction.
4148During error processing @var{n} is always positive.
4149
4150@item
4151Your macro should parenthesize its arguments, if need be, since the
4152actual arguments may not be surrounded by parentheses. Also, your
4153macro should expand to something that can be used as a single
4154statement when it is followed by a semicolon.
4155@end itemize
4156
4157@node Declarations
4158@section Bison Declarations
4159@cindex declarations, Bison
4160@cindex Bison declarations
4161
4162The @dfn{Bison declarations} section of a Bison grammar defines the symbols
4163used in formulating the grammar and the data types of semantic values.
4164@xref{Symbols}.
4165
4166All token type names (but not single-character literal tokens such as
4167@code{'+'} and @code{'*'}) must be declared. Nonterminal symbols must be
4168declared if you need to specify which data type to use for the semantic
4169value (@pxref{Multiple Types, ,More Than One Value Type}).
4170
4171The first rule in the file also specifies the start symbol, by default.
4172If you want some other symbol to be the start symbol, you must declare
4173it explicitly (@pxref{Language and Grammar, ,Languages and Context-Free
4174Grammars}).
4175
4176@menu
4177* Require Decl:: Requiring a Bison version.
4178* Token Decl:: Declaring terminal symbols.
4179* Precedence Decl:: Declaring terminals with precedence and associativity.
4180* Union Decl:: Declaring the set of all semantic value types.
4181* Type Decl:: Declaring the choice of type for a nonterminal symbol.
4182* Initial Action Decl:: Code run before parsing starts.
4183* Destructor Decl:: Declaring how symbols are freed.
4184* Expect Decl:: Suppressing warnings about parsing conflicts.
4185* Start Decl:: Specifying the start symbol.
4186* Pure Decl:: Requesting a reentrant parser.
4187* Push Decl:: Requesting a push parser.
4188* Decl Summary:: Table of all Bison declarations.
4189@end menu
4190
4191@node Require Decl
4192@subsection Require a Version of Bison
4193@cindex version requirement
4194@cindex requiring a version of Bison
4195@findex %require
4196
4197You may require the minimum version of Bison to process the grammar. If
4198the requirement is not met, @command{bison} exits with an error (exit
4199status 63).
4200
4201@example
4202%require "@var{version}"
4203@end example
4204
4205@node Token Decl
4206@subsection Token Type Names
4207@cindex declaring token type names
4208@cindex token type names, declaring
4209@cindex declaring literal string tokens
4210@findex %token
4211
4212The basic way to declare a token type name (terminal symbol) is as follows:
4213
4214@example
4215%token @var{name}
4216@end example
4217
4218Bison will convert this into a @code{#define} directive in
4219the parser, so that the function @code{yylex} (if it is in this file)
4220can use the name @var{name} to stand for this token type's code.
4221
4222Alternatively, you can use @code{%left}, @code{%right},
4223@code{%precedence}, or
4224@code{%nonassoc} instead of @code{%token}, if you wish to specify
4225associativity and precedence. @xref{Precedence Decl, ,Operator
4226Precedence}.
4227
4228You can explicitly specify the numeric code for a token type by appending
4229a nonnegative decimal or hexadecimal integer value in the field immediately
4230following the token name:
4231
4232@example
4233%token NUM 300
4234%token XNUM 0x12d // a GNU extension
4235@end example
4236
4237@noindent
4238It is generally best, however, to let Bison choose the numeric codes for
4239all token types. Bison will automatically select codes that don't conflict
4240with each other or with normal characters.
4241
4242In the event that the stack type is a union, you must augment the
4243@code{%token} or other token declaration to include the data type
4244alternative delimited by angle-brackets (@pxref{Multiple Types, ,More
4245Than One Value Type}).
4246
4247For example:
4248
4249@example
4250@group
4251%union @{ /* define stack type */
4252 double val;
4253 symrec *tptr;
4254@}
4255%token <val> NUM /* define token NUM and its type */
4256@end group
4257@end example
4258
4259You can associate a literal string token with a token type name by
4260writing the literal string at the end of a @code{%token}
4261declaration which declares the name. For example:
4262
4263@example
4264%token arrow "=>"
4265@end example
4266
4267@noindent
4268For example, a grammar for the C language might specify these names with
4269equivalent literal string tokens:
4270
4271@example
4272%token <operator> OR "||"
4273%token <operator> LE 134 "<="
4274%left OR "<="
4275@end example
4276
4277@noindent
4278Once you equate the literal string and the token name, you can use them
4279interchangeably in further declarations or the grammar rules. The
4280@code{yylex} function can use the token name or the literal string to
4281obtain the token type code number (@pxref{Calling Convention}).
4282Syntax error messages passed to @code{yyerror} from the parser will reference
4283the literal string instead of the token name.
4284
4285The token numbered as 0 corresponds to end of file; the following line
4286allows for nicer error messages referring to ``end of file'' instead
4287of ``$end'':
4288
4289@example
4290%token END 0 "end of file"
4291@end example
4292
4293@node Precedence Decl
4294@subsection Operator Precedence
4295@cindex precedence declarations
4296@cindex declaring operator precedence
4297@cindex operator precedence, declaring
4298
4299Use the @code{%left}, @code{%right}, @code{%nonassoc}, or
4300@code{%precedence} declaration to
4301declare a token and specify its precedence and associativity, all at
4302once. These are called @dfn{precedence declarations}.
4303@xref{Precedence, ,Operator Precedence}, for general information on
4304operator precedence.
4305
4306The syntax of a precedence declaration is nearly the same as that of
4307@code{%token}: either
4308
4309@example
4310%left @var{symbols}@dots{}
4311@end example
4312
4313@noindent
4314or
4315
4316@example
4317%left <@var{type}> @var{symbols}@dots{}
4318@end example
4319
4320And indeed any of these declarations serves the purposes of @code{%token}.
4321But in addition, they specify the associativity and relative precedence for
4322all the @var{symbols}:
4323
4324@itemize @bullet
4325@item
4326The associativity of an operator @var{op} determines how repeated uses
4327of the operator nest: whether @samp{@var{x} @var{op} @var{y} @var{op}
4328@var{z}} is parsed by grouping @var{x} with @var{y} first or by
4329grouping @var{y} with @var{z} first. @code{%left} specifies
4330left-associativity (grouping @var{x} with @var{y} first) and
4331@code{%right} specifies right-associativity (grouping @var{y} with
4332@var{z} first). @code{%nonassoc} specifies no associativity, which
4333means that @samp{@var{x} @var{op} @var{y} @var{op} @var{z}} is
4334considered a syntax error.
4335
4336@code{%precedence} gives only precedence to the @var{symbols}, and
4337defines no associativity at all. Use this to define precedence only,
4338and leave any potential conflict due to associativity enabled.
4339
4340@item
4341The precedence of an operator determines how it nests with other operators.
4342All the tokens declared in a single precedence declaration have equal
4343precedence and nest together according to their associativity.
4344When two tokens declared in different precedence declarations associate,
4345the one declared later has the higher precedence and is grouped first.
4346@end itemize
4347
4348For backward compatibility, there is a confusing difference between the
4349argument lists of @code{%token} and precedence declarations.
4350Only a @code{%token} can associate a literal string with a token type name.
4351A precedence declaration always interprets a literal string as a reference to a
4352separate token.
4353For example:
4354
4355@example
4356%left OR "<=" // Does not declare an alias.
4357%left OR 134 "<=" 135 // Declares 134 for OR and 135 for "<=".
4358@end example
4359
4360@node Union Decl
4361@subsection The Collection of Value Types
4362@cindex declaring value types
4363@cindex value types, declaring
4364@findex %union
4365
4366The @code{%union} declaration specifies the entire collection of
4367possible data types for semantic values. The keyword @code{%union} is
4368followed by braced code containing the same thing that goes inside a
4369@code{union} in C@.
4370
4371For example:
4372
4373@example
4374@group
4375%union @{
4376 double val;
4377 symrec *tptr;
4378@}
4379@end group
4380@end example
4381
4382@noindent
4383This says that the two alternative types are @code{double} and @code{symrec
4384*}. They are given names @code{val} and @code{tptr}; these names are used
4385in the @code{%token} and @code{%type} declarations to pick one of the types
4386for a terminal or nonterminal symbol (@pxref{Type Decl, ,Nonterminal Symbols}).
4387
4388As an extension to POSIX, a tag is allowed after the
4389@code{union}. For example:
4390
4391@example
4392@group
4393%union value @{
4394 double val;
4395 symrec *tptr;
4396@}
4397@end group
4398@end example
4399
4400@noindent
4401specifies the union tag @code{value}, so the corresponding C type is
4402@code{union value}. If you do not specify a tag, it defaults to
4403@code{YYSTYPE}.
4404
4405As another extension to POSIX, you may specify multiple
4406@code{%union} declarations; their contents are concatenated. However,
4407only the first @code{%union} declaration can specify a tag.
4408
4409Note that, unlike making a @code{union} declaration in C, you need not write
4410a semicolon after the closing brace.
4411
4412Instead of @code{%union}, you can define and use your own union type
4413@code{YYSTYPE} if your grammar contains at least one
4414@samp{<@var{type}>} tag. For example, you can put the following into
4415a header file @file{parser.h}:
4416
4417@example
4418@group
4419union YYSTYPE @{
4420 double val;
4421 symrec *tptr;
4422@};
4423typedef union YYSTYPE YYSTYPE;
4424@end group
4425@end example
4426
4427@noindent
4428and then your grammar can use the following
4429instead of @code{%union}:
4430
4431@example
4432@group
4433%@{
4434#include "parser.h"
4435%@}
4436%type <val> expr
4437%token <tptr> ID
4438@end group
4439@end example
4440
4441@node Type Decl
4442@subsection Nonterminal Symbols
4443@cindex declaring value types, nonterminals
4444@cindex value types, nonterminals, declaring
4445@findex %type
4446
4447@noindent
4448When you use @code{%union} to specify multiple value types, you must
4449declare the value type of each nonterminal symbol for which values are
4450used. This is done with a @code{%type} declaration, like this:
4451
4452@example
4453%type <@var{type}> @var{nonterminal}@dots{}
4454@end example
4455
4456@noindent
4457Here @var{nonterminal} is the name of a nonterminal symbol, and
4458@var{type} is the name given in the @code{%union} to the alternative
4459that you want (@pxref{Union Decl, ,The Collection of Value Types}). You
4460can give any number of nonterminal symbols in the same @code{%type}
4461declaration, if they have the same value type. Use spaces to separate
4462the symbol names.
4463
4464You can also declare the value type of a terminal symbol. To do this,
4465use the same @code{<@var{type}>} construction in a declaration for the
4466terminal symbol. All kinds of token declarations allow
4467@code{<@var{type}>}.
4468
4469@node Initial Action Decl
4470@subsection Performing Actions before Parsing
4471@findex %initial-action
4472
4473Sometimes your parser needs to perform some initializations before
4474parsing. The @code{%initial-action} directive allows for such arbitrary
4475code.
4476
4477@deffn {Directive} %initial-action @{ @var{code} @}
4478@findex %initial-action
4479Declare that the braced @var{code} must be invoked before parsing each time
4480@code{yyparse} is called. The @var{code} may use @code{$$} and
4481@code{@@$} --- initial value and location of the lookahead --- and the
4482@code{%parse-param}.
4483@end deffn
4484
4485For instance, if your locations use a file name, you may use
4486
4487@example
4488%parse-param @{ char const *file_name @};
4489%initial-action
4490@{
4491 @@$.initialize (file_name);
4492@};
4493@end example
4494
4495
4496@node Destructor Decl
4497@subsection Freeing Discarded Symbols
4498@cindex freeing discarded symbols
4499@findex %destructor
4500@findex <*>
4501@findex <>
4502During error recovery (@pxref{Error Recovery}), symbols already pushed
4503on the stack and tokens coming from the rest of the file are discarded
4504until the parser falls on its feet. If the parser runs out of memory,
4505or if it returns via @code{YYABORT} or @code{YYACCEPT}, all the
4506symbols on the stack must be discarded. Even if the parser succeeds, it
4507must discard the start symbol.
4508
4509When discarded symbols convey heap based information, this memory is
4510lost. While this behavior can be tolerable for batch parsers, such as
4511in traditional compilers, it is unacceptable for programs like shells or
4512protocol implementations that may parse and execute indefinitely.
4513
4514The @code{%destructor} directive defines code that is called when a
4515symbol is automatically discarded.
4516
4517@deffn {Directive} %destructor @{ @var{code} @} @var{symbols}
4518@findex %destructor
4519Invoke the braced @var{code} whenever the parser discards one of the
4520@var{symbols}.
4521Within @var{code}, @code{$$} designates the semantic value associated
4522with the discarded symbol, and @code{@@$} designates its location.
4523The additional parser parameters are also available (@pxref{Parser Function, ,
4524The Parser Function @code{yyparse}}).
4525
4526When a symbol is listed among @var{symbols}, its @code{%destructor} is called a
4527per-symbol @code{%destructor}.
4528You may also define a per-type @code{%destructor} by listing a semantic type
4529tag among @var{symbols}.
4530In that case, the parser will invoke this @var{code} whenever it discards any
4531grammar symbol that has that semantic type tag unless that symbol has its own
4532per-symbol @code{%destructor}.
4533
4534Finally, you can define two different kinds of default @code{%destructor}s.
4535(These default forms are experimental.
4536More user feedback will help to determine whether they should become permanent
4537features.)
4538You can place each of @code{<*>} and @code{<>} in the @var{symbols} list of
4539exactly one @code{%destructor} declaration in your grammar file.
4540The parser will invoke the @var{code} associated with one of these whenever it
4541discards any user-defined grammar symbol that has no per-symbol and no per-type
4542@code{%destructor}.
4543The parser uses the @var{code} for @code{<*>} in the case of such a grammar
4544symbol for which you have formally declared a semantic type tag (@code{%type}
4545counts as such a declaration, but @code{$<tag>$} does not).
4546The parser uses the @var{code} for @code{<>} in the case of such a grammar
4547symbol that has no declared semantic type tag.
4548@end deffn
4549
4550@noindent
4551For example:
4552
4553@smallexample
4554%union @{ char *string; @}
4555%token <string> STRING1
4556%token <string> STRING2
4557%type <string> string1
4558%type <string> string2
4559%union @{ char character; @}
4560%token <character> CHR
4561%type <character> chr
4562%token TAGLESS
4563
4564%destructor @{ @} <character>
4565%destructor @{ free ($$); @} <*>
4566%destructor @{ free ($$); printf ("%d", @@$.first_line); @} STRING1 string1
4567%destructor @{ printf ("Discarding tagless symbol.\n"); @} <>
4568@end smallexample
4569
4570@noindent
4571guarantees that, when the parser discards any user-defined symbol that has a
4572semantic type tag other than @code{<character>}, it passes its semantic value
4573to @code{free} by default.
4574However, when the parser discards a @code{STRING1} or a @code{string1}, it also
4575prints its line number to @code{stdout}.
4576It performs only the second @code{%destructor} in this case, so it invokes
4577@code{free} only once.
4578Finally, the parser merely prints a message whenever it discards any symbol,
4579such as @code{TAGLESS}, that has no semantic type tag.
4580
4581A Bison-generated parser invokes the default @code{%destructor}s only for
4582user-defined as opposed to Bison-defined symbols.
4583For example, the parser will not invoke either kind of default
4584@code{%destructor} for the special Bison-defined symbols @code{$accept},
4585@code{$undefined}, or @code{$end} (@pxref{Table of Symbols, ,Bison Symbols}),
4586none of which you can reference in your grammar.
4587It also will not invoke either for the @code{error} token (@pxref{Table of
4588Symbols, ,error}), which is always defined by Bison regardless of whether you
4589reference it in your grammar.
4590However, it may invoke one of them for the end token (token 0) if you
4591redefine it from @code{$end} to, for example, @code{END}:
4592
4593@smallexample
4594%token END 0
4595@end smallexample
4596
4597@cindex actions in mid-rule
4598@cindex mid-rule actions
4599Finally, Bison will never invoke a @code{%destructor} for an unreferenced
4600mid-rule semantic value (@pxref{Mid-Rule Actions,,Actions in Mid-Rule}).
4601That is, Bison does not consider a mid-rule to have a semantic value if you do
4602not reference @code{$$} in the mid-rule's action or @code{$@var{n}} (where
4603@var{n} is the RHS symbol position of the mid-rule) in any later action in that
4604rule.
4605However, if you do reference either, the Bison-generated parser will invoke the
4606@code{<>} @code{%destructor} whenever it discards the mid-rule symbol.
4607
4608@ignore
4609@noindent
4610In the future, it may be possible to redefine the @code{error} token as a
4611nonterminal that captures the discarded symbols.
4612In that case, the parser will invoke the default destructor for it as well.
4613@end ignore
4614
4615@sp 1
4616
4617@cindex discarded symbols
4618@dfn{Discarded symbols} are the following:
4619
4620@itemize
4621@item
4622stacked symbols popped during the first phase of error recovery,
4623@item
4624incoming terminals during the second phase of error recovery,
4625@item
4626the current lookahead and the entire stack (except the current
4627right-hand side symbols) when the parser returns immediately, and
4628@item
4629the start symbol, when the parser succeeds.
4630@end itemize
4631
4632The parser can @dfn{return immediately} because of an explicit call to
4633@code{YYABORT} or @code{YYACCEPT}, or failed error recovery, or memory
4634exhaustion.
4635
4636Right-hand side symbols of a rule that explicitly triggers a syntax
4637error via @code{YYERROR} are not discarded automatically. As a rule
4638of thumb, destructors are invoked only when user actions cannot manage
4639the memory.
4640
4641@node Expect Decl
4642@subsection Suppressing Conflict Warnings
4643@cindex suppressing conflict warnings
4644@cindex preventing warnings about conflicts
4645@cindex warnings, preventing
4646@cindex conflicts, suppressing warnings of
4647@findex %expect
4648@findex %expect-rr
4649
4650Bison normally warns if there are any conflicts in the grammar
4651(@pxref{Shift/Reduce, ,Shift/Reduce Conflicts}), but most real grammars
4652have harmless shift/reduce conflicts which are resolved in a predictable
4653way and would be difficult to eliminate. It is desirable to suppress
4654the warning about these conflicts unless the number of conflicts
4655changes. You can do this with the @code{%expect} declaration.
4656
4657The declaration looks like this:
4658
4659@example
4660%expect @var{n}
4661@end example
4662
4663Here @var{n} is a decimal integer. The declaration says there should
4664be @var{n} shift/reduce conflicts and no reduce/reduce conflicts.
4665Bison reports an error if the number of shift/reduce conflicts differs
4666from @var{n}, or if there are any reduce/reduce conflicts.
4667
4668For deterministic parsers, reduce/reduce conflicts are more
4669serious, and should be eliminated entirely. Bison will always report
4670reduce/reduce conflicts for these parsers. With GLR
4671parsers, however, both kinds of conflicts are routine; otherwise,
4672there would be no need to use GLR parsing. Therefore, it is
4673also possible to specify an expected number of reduce/reduce conflicts
4674in GLR parsers, using the declaration:
4675
4676@example
4677%expect-rr @var{n}
4678@end example
4679
4680In general, using @code{%expect} involves these steps:
4681
4682@itemize @bullet
4683@item
4684Compile your grammar without @code{%expect}. Use the @samp{-v} option
4685to get a verbose list of where the conflicts occur. Bison will also
4686print the number of conflicts.
4687
4688@item
4689Check each of the conflicts to make sure that Bison's default
4690resolution is what you really want. If not, rewrite the grammar and
4691go back to the beginning.
4692
4693@item
4694Add an @code{%expect} declaration, copying the number @var{n} from the
4695number which Bison printed. With GLR parsers, add an
4696@code{%expect-rr} declaration as well.
4697@end itemize
4698
4699Now Bison will report an error if you introduce an unexpected conflict,
4700but will keep silent otherwise.
4701
4702@node Start Decl
4703@subsection The Start-Symbol
4704@cindex declaring the start symbol
4705@cindex start symbol, declaring
4706@cindex default start symbol
4707@findex %start
4708
4709Bison assumes by default that the start symbol for the grammar is the first
4710nonterminal specified in the grammar specification section. The programmer
4711may override this restriction with the @code{%start} declaration as follows:
4712
4713@example
4714%start @var{symbol}
4715@end example
4716
4717@node Pure Decl
4718@subsection A Pure (Reentrant) Parser
4719@cindex reentrant parser
4720@cindex pure parser
4721@findex %define api.pure
4722
4723A @dfn{reentrant} program is one which does not alter in the course of
4724execution; in other words, it consists entirely of @dfn{pure} (read-only)
4725code. Reentrancy is important whenever asynchronous execution is possible;
4726for example, a nonreentrant program may not be safe to call from a signal
4727handler. In systems with multiple threads of control, a nonreentrant
4728program must be called only within interlocks.
4729
4730Normally, Bison generates a parser which is not reentrant. This is
4731suitable for most uses, and it permits compatibility with Yacc. (The
4732standard Yacc interfaces are inherently nonreentrant, because they use
4733statically allocated variables for communication with @code{yylex},
4734including @code{yylval} and @code{yylloc}.)
4735
4736Alternatively, you can generate a pure, reentrant parser. The Bison
4737declaration @samp{%define api.pure} says that you want the parser to be
4738reentrant. It looks like this:
4739
4740@example
4741%define api.pure
4742@end example
4743
4744The result is that the communication variables @code{yylval} and
4745@code{yylloc} become local variables in @code{yyparse}, and a different
4746calling convention is used for the lexical analyzer function
4747@code{yylex}. @xref{Pure Calling, ,Calling Conventions for Pure
4748Parsers}, for the details of this. The variable @code{yynerrs}
4749becomes local in @code{yyparse} in pull mode but it becomes a member
4750of yypstate in push mode. (@pxref{Error Reporting, ,The Error
4751Reporting Function @code{yyerror}}). The convention for calling
4752@code{yyparse} itself is unchanged.
4753
4754Whether the parser is pure has nothing to do with the grammar rules.
4755You can generate either a pure parser or a nonreentrant parser from any
4756valid grammar.
4757
4758@node Push Decl
4759@subsection A Push Parser
4760@cindex push parser
4761@cindex push parser
4762@findex %define api.push-pull
4763
4764(The current push parsing interface is experimental and may evolve.
4765More user feedback will help to stabilize it.)
4766
4767A pull parser is called once and it takes control until all its input
4768is completely parsed. A push parser, on the other hand, is called
4769each time a new token is made available.
4770
4771A push parser is typically useful when the parser is part of a
4772main event loop in the client's application. This is typically
4773a requirement of a GUI, when the main event loop needs to be triggered
4774within a certain time period.
4775
4776Normally, Bison generates a pull parser.
4777The following Bison declaration says that you want the parser to be a push
4778parser (@pxref{Decl Summary,,%define api.push-pull}):
4779
4780@example
4781%define api.push-pull push
4782@end example
4783
4784In almost all cases, you want to ensure that your push parser is also
4785a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}). The only
4786time you should create an impure push parser is to have backwards
4787compatibility with the impure Yacc pull mode interface. Unless you know
4788what you are doing, your declarations should look like this:
4789
4790@example
4791%define api.pure
4792%define api.push-pull push
4793@end example
4794
4795There is a major notable functional difference between the pure push parser
4796and the impure push parser. It is acceptable for a pure push parser to have
4797many parser instances, of the same type of parser, in memory at the same time.
4798An impure push parser should only use one parser at a time.
4799
4800When a push parser is selected, Bison will generate some new symbols in
4801the generated parser. @code{yypstate} is a structure that the generated
4802parser uses to store the parser's state. @code{yypstate_new} is the
4803function that will create a new parser instance. @code{yypstate_delete}
4804will free the resources associated with the corresponding parser instance.
4805Finally, @code{yypush_parse} is the function that should be called whenever a
4806token is available to provide the parser. A trivial example
4807of using a pure push parser would look like this:
4808
4809@example
4810int status;
4811yypstate *ps = yypstate_new ();
4812do @{
4813 status = yypush_parse (ps, yylex (), NULL);
4814@} while (status == YYPUSH_MORE);
4815yypstate_delete (ps);
4816@end example
4817
4818If the user decided to use an impure push parser, a few things about
4819the generated parser will change. The @code{yychar} variable becomes
4820a global variable instead of a variable in the @code{yypush_parse} function.
4821For this reason, the signature of the @code{yypush_parse} function is
4822changed to remove the token as a parameter. A nonreentrant push parser
4823example would thus look like this:
4824
4825@example
4826extern int yychar;
4827int status;
4828yypstate *ps = yypstate_new ();
4829do @{
4830 yychar = yylex ();
4831 status = yypush_parse (ps);
4832@} while (status == YYPUSH_MORE);
4833yypstate_delete (ps);
4834@end example
4835
4836That's it. Notice the next token is put into the global variable @code{yychar}
4837for use by the next invocation of the @code{yypush_parse} function.
4838
4839Bison also supports both the push parser interface along with the pull parser
4840interface in the same generated parser. In order to get this functionality,
4841you should replace the @samp{%define api.push-pull push} declaration with the
4842@samp{%define api.push-pull both} declaration. Doing this will create all of
4843the symbols mentioned earlier along with the two extra symbols, @code{yyparse}
4844and @code{yypull_parse}. @code{yyparse} can be used exactly as it normally
4845would be used. However, the user should note that it is implemented in the
4846generated parser by calling @code{yypull_parse}.
4847This makes the @code{yyparse} function that is generated with the
4848@samp{%define api.push-pull both} declaration slower than the normal
4849@code{yyparse} function. If the user
4850calls the @code{yypull_parse} function it will parse the rest of the input
4851stream. It is possible to @code{yypush_parse} tokens to select a subgrammar
4852and then @code{yypull_parse} the rest of the input stream. If you would like
4853to switch back and forth between between parsing styles, you would have to
4854write your own @code{yypull_parse} function that knows when to quit looking
4855for input. An example of using the @code{yypull_parse} function would look
4856like this:
4857
4858@example
4859yypstate *ps = yypstate_new ();
4860yypull_parse (ps); /* Will call the lexer */
4861yypstate_delete (ps);
4862@end example
4863
4864Adding the @samp{%define api.pure} declaration does exactly the same thing to
4865the generated parser with @samp{%define api.push-pull both} as it did for
4866@samp{%define api.push-pull push}.
4867
4868@node Decl Summary
4869@subsection Bison Declaration Summary
4870@cindex Bison declaration summary
4871@cindex declaration summary
4872@cindex summary, Bison declaration
4873
4874Here is a summary of the declarations used to define a grammar:
4875
4876@deffn {Directive} %union
4877Declare the collection of data types that semantic values may have
4878(@pxref{Union Decl, ,The Collection of Value Types}).
4879@end deffn
4880
4881@deffn {Directive} %token
4882Declare a terminal symbol (token type name) with no precedence
4883or associativity specified (@pxref{Token Decl, ,Token Type Names}).
4884@end deffn
4885
4886@deffn {Directive} %right
4887Declare a terminal symbol (token type name) that is right-associative
4888(@pxref{Precedence Decl, ,Operator Precedence}).
4889@end deffn
4890
4891@deffn {Directive} %left
4892Declare a terminal symbol (token type name) that is left-associative
4893(@pxref{Precedence Decl, ,Operator Precedence}).
4894@end deffn
4895
4896@deffn {Directive} %nonassoc
4897Declare a terminal symbol (token type name) that is nonassociative
4898(@pxref{Precedence Decl, ,Operator Precedence}).
4899Using it in a way that would be associative is a syntax error.
4900@end deffn
4901
4902@ifset defaultprec
4903@deffn {Directive} %default-prec
4904Assign a precedence to rules lacking an explicit @code{%prec} modifier
4905(@pxref{Contextual Precedence, ,Context-Dependent Precedence}).
4906@end deffn
4907@end ifset
4908
4909@deffn {Directive} %type
4910Declare the type of semantic values for a nonterminal symbol
4911(@pxref{Type Decl, ,Nonterminal Symbols}).
4912@end deffn
4913
4914@deffn {Directive} %start
4915Specify the grammar's start symbol (@pxref{Start Decl, ,The
4916Start-Symbol}).
4917@end deffn
4918
4919@deffn {Directive} %expect
4920Declare the expected number of shift-reduce conflicts
4921(@pxref{Expect Decl, ,Suppressing Conflict Warnings}).
4922@end deffn
4923
4924
4925@sp 1
4926@noindent
4927In order to change the behavior of @command{bison}, use the following
4928directives:
4929
4930@deffn {Directive} %code @{@var{code}@}
4931@findex %code
4932This is the unqualified form of the @code{%code} directive.
4933It inserts @var{code} verbatim at a language-dependent default location in the
4934output@footnote{The default location is actually skeleton-dependent;
4935 writers of non-standard skeletons however should choose the default location
4936 consistently with the behavior of the standard Bison skeletons.}.
4937
4938@cindex Prologue
4939For C/C++, the default location is the parser source code
4940file after the usual contents of the parser header file.
4941Thus, @code{%code} replaces the traditional Yacc prologue,
4942@code{%@{@var{code}%@}}, for most purposes.
4943For a detailed discussion, see @ref{Prologue Alternatives}.
4944
4945For Java, the default location is inside the parser class.
4946@end deffn
4947
4948@deffn {Directive} %code @var{qualifier} @{@var{code}@}
4949This is the qualified form of the @code{%code} directive.
4950If you need to specify location-sensitive verbatim @var{code} that does not
4951belong at the default location selected by the unqualified @code{%code} form,
4952use this form instead.
4953
4954@var{qualifier} identifies the purpose of @var{code} and thus the location(s)
4955where Bison should generate it.
4956Not all @var{qualifier}s are accepted for all target languages.
4957Unaccepted @var{qualifier}s produce an error.
4958Some of the accepted @var{qualifier}s are:
4959
4960@itemize @bullet
4961@item requires
4962@findex %code requires
4963
4964@itemize @bullet
4965@item Language(s): C, C++
4966
4967@item Purpose: This is the best place to write dependency code required for
4968@code{YYSTYPE} and @code{YYLTYPE}.
4969In other words, it's the best place to define types referenced in @code{%union}
4970directives, and it's the best place to override Bison's default @code{YYSTYPE}
4971and @code{YYLTYPE} definitions.
4972
4973@item Location(s): The parser header file and the parser source code file
4974before the Bison-generated @code{YYSTYPE} and @code{YYLTYPE} definitions.
4975@end itemize
4976
4977@item provides
4978@findex %code provides
4979
4980@itemize @bullet
4981@item Language(s): C, C++
4982
4983@item Purpose: This is the best place to write additional definitions and
4984declarations that should be provided to other modules.
4985
4986@item Location(s): The parser header file and the parser source code file after
4987the Bison-generated @code{YYSTYPE}, @code{YYLTYPE}, and token definitions.
4988@end itemize
4989
4990@item top
4991@findex %code top
4992
4993@itemize @bullet
4994@item Language(s): C, C++
4995
4996@item Purpose: The unqualified @code{%code} or @code{%code requires} should
4997usually be more appropriate than @code{%code top}.
4998However, occasionally it is necessary to insert code much nearer the top of the
4999parser source code file.
5000For example:
5001
5002@smallexample
5003%code top @{
5004 #define _GNU_SOURCE
5005 #include <stdio.h>
5006@}
5007@end smallexample
5008
5009@item Location(s): Near the top of the parser source code file.
5010@end itemize
5011
5012@item imports
5013@findex %code imports
5014
5015@itemize @bullet
5016@item Language(s): Java
5017
5018@item Purpose: This is the best place to write Java import directives.
5019
5020@item Location(s): The parser Java file after any Java package directive and
5021before any class definitions.
5022@end itemize
5023@end itemize
5024
5025@cindex Prologue
5026For a detailed discussion of how to use @code{%code} in place of the
5027traditional Yacc prologue for C/C++, see @ref{Prologue Alternatives}.
5028@end deffn
5029
5030@deffn {Directive} %debug
5031Instrument the output parser for traces. Obsoleted by @samp{%define
5032parse.trace}.
5033@xref{Tracing, ,Tracing Your Parser}.
5034@end deffn
5035
5036@deffn {Directive} %define @var{variable}
5037@deffnx {Directive} %define @var{variable} @var{value}
5038@deffnx {Directive} %define @var{variable} "@var{value}"
5039Define a variable to adjust Bison's behavior.
5040
5041It is an error if a @var{variable} is defined by @code{%define} multiple
5042times, but see @ref{Bison Options,,-D @var{name}[=@var{value}]}.
5043
5044@var{value} must be placed in quotation marks if it contains any
5045character other than a letter, underscore, period, dash, or non-initial
5046digit.
5047
5048Omitting @code{"@var{value}"} entirely is always equivalent to specifying
5049@code{""}.
5050
5051Some @var{variable}s take Boolean values.
5052In this case, Bison will complain if the variable definition does not meet one
5053of the following four conditions:
5054
5055@enumerate
5056@item @code{@var{value}} is @code{true}
5057
5058@item @code{@var{value}} is omitted (or @code{""} is specified).
5059This is equivalent to @code{true}.
5060
5061@item @code{@var{value}} is @code{false}.
5062
5063@item @var{variable} is never defined.
5064In this case, Bison selects a default value.
5065@end enumerate
5066
5067What @var{variable}s are accepted, as well as their meanings and default
5068values, depend on the selected target language and/or the parser
5069skeleton (@pxref{Decl Summary,,%language}, @pxref{Decl
5070Summary,,%skeleton}).
5071Unaccepted @var{variable}s produce an error.
5072Some of the accepted @var{variable}s are:
5073
5074@table @code
5075@c ================================================== api.namespace
5076@item api.namespace
5077@findex %define api.namespace
5078@itemize
5079@item Languages(s): C++
5080
5081@item Purpose: Specify the namespace for the parser class.
5082For example, if you specify:
5083
5084@smallexample
5085%define api.namespace "foo::bar"
5086@end smallexample
5087
5088Bison uses @code{foo::bar} verbatim in references such as:
5089
5090@smallexample
5091foo::bar::parser::semantic_type
5092@end smallexample
5093
5094However, to open a namespace, Bison removes any leading @code{::} and then
5095splits on any remaining occurrences:
5096
5097@smallexample
5098namespace foo @{ namespace bar @{
5099 class position;
5100 class location;
5101@} @}
5102@end smallexample
5103
5104@item Accepted Values:
5105Any absolute or relative C++ namespace reference without a trailing
5106@code{"::"}. For example, @code{"foo"} or @code{"::foo::bar"}.
5107
5108@item Default Value:
5109The value specified by @code{%name-prefix}, which defaults to @code{yy}.
5110This usage of @code{%name-prefix} is for backward compatibility and can
5111be confusing since @code{%name-prefix} also specifies the textual prefix
5112for the lexical analyzer function. Thus, if you specify
5113@code{%name-prefix}, it is best to also specify @samp{%define
5114api.namespace} so that @code{%name-prefix} @emph{only} affects the
5115lexical analyzer function. For example, if you specify:
5116
5117@smallexample
5118%define api.namespace "foo"
5119%name-prefix "bar::"
5120@end smallexample
5121
5122The parser namespace is @code{foo} and @code{yylex} is referenced as
5123@code{bar::lex}.
5124@end itemize
5125@c namespace
5126
5127
5128
5129@c ================================================== api.pure
5130@item api.pure
5131@findex %define api.pure
5132
5133@itemize @bullet
5134@item Language(s): C
5135
5136@item Purpose: Request a pure (reentrant) parser program.
5137@xref{Pure Decl, ,A Pure (Reentrant) Parser}.
5138
5139@item Accepted Values: Boolean
5140
5141@item Default Value: @code{false}
5142@end itemize
5143@c api.pure
5144
5145
5146
5147@c ================================================== api.push-pull
5148@item api.push-pull
5149@findex %define api.push-pull
5150
5151@itemize @bullet
5152@item Language(s): C (deterministic parsers only)
5153
5154@item Purpose: Request a pull parser, a push parser, or both.
5155@xref{Push Decl, ,A Push Parser}.
5156(The current push parsing interface is experimental and may evolve.
5157More user feedback will help to stabilize it.)
5158
5159@item Accepted Values: @code{pull}, @code{push}, @code{both}
5160
5161@item Default Value: @code{pull}
5162@end itemize
5163@c api.push-pull
5164
5165
5166
5167@c ================================================== api.tokens.prefix
5168@item api.tokens.prefix
5169@findex %define api.tokens.prefix
5170
5171@itemize
5172@item Languages(s): all
5173
5174@item Purpose:
5175Add a prefix to the token names when generating their definition in the
5176target language. For instance
5177
5178@example
5179%token FILE for ERROR
5180%define api.tokens.prefix "TOK_"
5181%%
5182start: FILE for ERROR;
5183@end example
5184
5185@noindent
5186generates the definition of the symbols @code{TOK_FILE}, @code{TOK_for},
5187and @code{TOK_ERROR} in the generated source files. In particular, the
5188scanner must use these prefixed token names, while the grammar itself
5189may still use the short names (as in the sample rule given above). The
5190generated informational files (@file{*.output}, @file{*.xml},
5191@file{*.dot}) are not modified by this prefix. See @ref{Calc++ Parser}
5192and @ref{Calc++ Scanner}, for a complete example.
5193
5194@item Accepted Values:
5195Any string. Should be a valid identifier prefix in the target language,
5196in other words, it should typically be an identifier itself (sequence of
5197letters, underscores, and ---not at the beginning--- digits).
5198
5199@item Default Value:
5200empty
5201@end itemize
5202@c api.tokens.prefix
5203
5204
5205@c ================================================== lex_symbol
5206@item variant
5207@findex %define lex_symbol
5208
5209@itemize @bullet
5210@item Language(s):
5211C++
5212
5213@item Purpose:
5214When variant-based semantic values are enabled (@pxref{C++ Variants}),
5215request that symbols be handled as a whole (type, value, and possibly
5216location) in the scanner. @xref{Complete Symbols}, for details.
5217
5218@item Accepted Values:
5219Boolean.
5220
5221@item Default Value:
5222@code{false}
5223@end itemize
5224@c lex_symbol
5225
5226
5227@c ================================================== lr.default-reductions
5228
5229@item lr.default-reductions
5230@cindex default reductions
5231@findex %define lr.default-reductions
5232@cindex delayed syntax errors
5233@cindex syntax errors delayed
5234@cindex LAC
5235@findex %nonassoc
5236
5237@itemize @bullet
5238@item Language(s): all
5239
5240@item Purpose: Specify the kind of states that are permitted to
5241contain default reductions.
5242That is, in such a state, Bison selects the reduction with the largest
5243lookahead set to be the default parser action and then removes that
5244lookahead set.
5245(The ability to specify where default reductions should be used is
5246experimental.
5247More user feedback will help to stabilize it.)
5248
5249@item Accepted Values:
5250@itemize
5251@item @code{all}.
5252This is the traditional Bison behavior.
5253The main advantage is a significant decrease in the size of the parser
5254tables.
5255The disadvantage is that, when the generated parser encounters a
5256syntactically unacceptable token, the parser might then perform
5257unnecessary default reductions before it can detect the syntax error.
5258Such delayed syntax error detection is usually inherent in
5259LALR and IELR parser tables anyway due to
5260LR state merging (@pxref{Decl Summary,,lr.type}).
5261Furthermore, the use of @code{%nonassoc} can contribute to delayed
5262syntax error detection even in the case of canonical LR.
5263As an experimental feature, delayed syntax error detection can be
5264overcome in all cases by enabling LAC (@pxref{Decl
5265Summary,,parse.lac}, for details, including a discussion of the effects
5266of delayed syntax error detection).
5267
5268@item @code{consistent}.
5269@cindex consistent states
5270A consistent state is a state that has only one possible action.
5271If that action is a reduction, then the parser does not need to request
5272a lookahead token from the scanner before performing that action.
5273However, the parser recognizes the ability to ignore the lookahead token
5274in this way only when such a reduction is encoded as a default
5275reduction.
5276Thus, if default reductions are permitted only in consistent states,
5277then a canonical LR parser that does not employ
5278@code{%nonassoc} detects a syntax error as soon as it @emph{needs} the
5279syntactically unacceptable token from the scanner.
5280
5281@item @code{accepting}.
5282@cindex accepting state
5283In the accepting state, the default reduction is actually the accept
5284action.
5285In this case, a canonical LR parser that does not employ
5286@code{%nonassoc} detects a syntax error as soon as it @emph{reaches} the
5287syntactically unacceptable token in the input.
5288That is, it does not perform any extra reductions.
5289@end itemize
5290
5291@item Default Value:
5292@itemize
5293@item @code{accepting} if @code{lr.type} is @code{canonical-lr}.
5294@item @code{all} otherwise.
5295@end itemize
5296@end itemize
5297
5298@c ============================================ lr.keep-unreachable-states
5299
5300@item lr.keep-unreachable-states
5301@findex %define lr.keep-unreachable-states
5302
5303@itemize @bullet
5304@item Language(s): all
5305
5306@item Purpose: Request that Bison allow unreachable parser states to
5307remain in the parser tables.
5308Bison considers a state to be unreachable if there exists no sequence of
5309transitions from the start state to that state.
5310A state can become unreachable during conflict resolution if Bison disables a
5311shift action leading to it from a predecessor state.
5312Keeping unreachable states is sometimes useful for analysis purposes, but they
5313are useless in the generated parser.
5314
5315@item Accepted Values: Boolean
5316
5317@item Default Value: @code{false}
5318
5319@item Caveats:
5320
5321@itemize @bullet
5322
5323@item Unreachable states may contain conflicts and may use rules not used in
5324any other state.
5325Thus, keeping unreachable states may induce warnings that are irrelevant to
5326your parser's behavior, and it may eliminate warnings that are relevant.
5327Of course, the change in warnings may actually be relevant to a parser table
5328analysis that wants to keep unreachable states, so this behavior will likely
5329remain in future Bison releases.
5330
5331@item While Bison is able to remove unreachable states, it is not guaranteed to
5332remove other kinds of useless states.
5333Specifically, when Bison disables reduce actions during conflict resolution,
5334some goto actions may become useless, and thus some additional states may
5335become useless.
5336If Bison were to compute which goto actions were useless and then disable those
5337actions, it could identify such states as unreachable and then remove those
5338states.
5339However, Bison does not compute which goto actions are useless.
5340@end itemize
5341@end itemize
5342@c lr.keep-unreachable-states
5343
5344@c ================================================== lr.type
5345
5346@item lr.type
5347@findex %define lr.type
5348@cindex LALR
5349@cindex IELR
5350@cindex LR
5351
5352@itemize @bullet
5353@item Language(s): all
5354
5355@item Purpose: Specify the type of parser tables within the
5356LR(1) family.
5357(This feature is experimental.
5358More user feedback will help to stabilize it.)
5359
5360@item Accepted Values:
5361@itemize
5362@item @code{lalr}.
5363While Bison generates LALR parser tables by default for
5364historical reasons, IELR or canonical LR is almost
5365always preferable for deterministic parsers.
5366The trouble is that LALR parser tables can suffer from
5367mysterious conflicts and thus may not accept the full set of sentences
5368that IELR and canonical LR accept.
5369@xref{Mystery Conflicts}, for details.
5370However, there are at least two scenarios where LALR may be
5371worthwhile:
5372@itemize
5373@cindex GLR with LALR
5374@item When employing GLR parsers (@pxref{GLR Parsers}), if you
5375do not resolve any conflicts statically (for example, with @code{%left}
5376or @code{%prec}), then the parser explores all potential parses of any
5377given input.
5378In this case, the use of LALR parser tables is guaranteed not
5379to alter the language accepted by the parser.
5380LALR parser tables are the smallest parser tables Bison can
5381currently generate, so they may be preferable.
5382Nevertheless, once you begin to resolve conflicts statically,
5383GLR begins to behave more like a deterministic parser, and so
5384IELR and canonical LR can be helpful to avoid
5385LALR's mysterious behavior.
5386
5387@item Occasionally during development, an especially malformed grammar
5388with a major recurring flaw may severely impede the IELR or
5389canonical LR parser table generation algorithm.
5390LALR can be a quick way to generate parser tables in order to
5391investigate such problems while ignoring the more subtle differences
5392from IELR and canonical LR.
5393@end itemize
5394
5395@item @code{ielr}.
5396IELR is a minimal LR algorithm.
5397That is, given any grammar (LR or non-LR),
5398IELR and canonical LR always accept exactly the same
5399set of sentences.
5400However, as for LALR, the number of parser states is often an
5401order of magnitude less for IELR than for canonical
5402LR.
5403More importantly, because canonical LR's extra parser states
5404may contain duplicate conflicts in the case of non-LR
5405grammars, the number of conflicts for IELR is often an order
5406of magnitude less as well.
5407This can significantly reduce the complexity of developing of a grammar.
5408
5409@item @code{canonical-lr}.
5410@cindex delayed syntax errors
5411@cindex syntax errors delayed
5412@cindex LAC
5413@findex %nonassoc
5414While inefficient, canonical LR parser tables can be an
5415interesting means to explore a grammar because they have a property that
5416IELR and LALR tables do not.
5417That is, if @code{%nonassoc} is not used and default reductions are left
5418disabled (@pxref{Decl Summary,,lr.default-reductions}), then, for every
5419left context of every canonical LR state, the set of tokens
5420accepted by that state is guaranteed to be the exact set of tokens that
5421is syntactically acceptable in that left context.
5422It might then seem that an advantage of canonical LR parsers
5423in production is that, under the above constraints, they are guaranteed
5424to detect a syntax error as soon as possible without performing any
5425unnecessary reductions.
5426However, IELR parsers using LAC (@pxref{Decl
5427Summary,,parse.lac}) are also able to achieve this behavior without
5428sacrificing @code{%nonassoc} or default reductions.
5429@end itemize
5430
5431@item Default Value: @code{lalr}
5432@end itemize
5433
5434
5435@c ================================================== namespace
5436@item namespace
5437@findex %define namespace
5438Obsoleted by @code{api.namespace}
5439@c namespace
5440
5441
5442@c ================================================== parse.assert
5443@item parse.assert
5444@findex %define parse.assert
5445
5446@itemize
5447@item Languages(s): C++
5448
5449@item Purpose: Issue runtime assertions to catch invalid uses.
5450In C++, when variants are used (@pxref{C++ Variants}), symbols must be
5451constructed and
5452destroyed properly. This option checks these constraints.
5453
5454@item Accepted Values: Boolean
5455
5456@item Default Value: @code{false}
5457@end itemize
5458@c parse.assert
5459
5460
5461@c ================================================== parse.error
5462@item parse.error
5463@findex %define parse.error
5464@itemize
5465@item Languages(s):
5466all
5467@item Purpose:
5468Control the kind of error messages passed to the error reporting
5469function. @xref{Error Reporting, ,The Error Reporting Function
5470@code{yyerror}}.
5471@item Accepted Values:
5472@itemize
5473@item @code{simple}
5474Error messages passed to @code{yyerror} are simply @w{@code{"syntax
5475error"}}.
5476@item @code{verbose}
5477Error messages report the unexpected token, and possibly the expected
5478ones.
5479@end itemize
5480
5481@item Default Value:
5482@code{simple}
5483@end itemize
5484@c parse.error
5485
5486
5487@c ================================================== parse.lac
5488@item parse.lac
5489@findex %define parse.lac
5490@cindex LAC
5491@cindex lookahead correction
5492
5493@itemize
5494@item Languages(s): C
5495
5496@item Purpose: Enable LAC (lookahead correction) to improve
5497syntax error handling.
5498
5499Canonical LR, IELR, and LALR can suffer
5500from a couple of problems upon encountering a syntax error. First, the
5501parser might perform additional parser stack reductions before
5502discovering the syntax error. Such reductions perform user semantic
5503actions that are unexpected because they are based on an invalid token,
5504and they cause error recovery to begin in a different syntactic context
5505than the one in which the invalid token was encountered. Second, when
5506verbose error messages are enabled (with @code{%error-verbose} or
5507@code{#define YYERROR_VERBOSE}), the expected token list in the syntax
5508error message can both contain invalid tokens and omit valid tokens.
5509
5510The culprits for the above problems are @code{%nonassoc}, default
5511reductions in inconsistent states, and parser state merging. Thus,
5512IELR and LALR suffer the most. Canonical
5513LR can suffer only if @code{%nonassoc} is used or if default
5514reductions are enabled for inconsistent states.
5515
5516LAC is a new mechanism within the parsing algorithm that
5517completely solves these problems for canonical LR,
5518IELR, and LALR without sacrificing @code{%nonassoc},
5519default reductions, or state mering. Conceptually, the mechanism is
5520straight-forward. Whenever the parser fetches a new token from the
5521scanner so that it can determine the next parser action, it immediately
5522suspends normal parsing and performs an exploratory parse using a
5523temporary copy of the normal parser state stack. During this
5524exploratory parse, the parser does not perform user semantic actions.
5525If the exploratory parse reaches a shift action, normal parsing then
5526resumes on the normal parser stacks. If the exploratory parse reaches
5527an error instead, the parser reports a syntax error. If verbose syntax
5528error messages are enabled, the parser must then discover the list of
5529expected tokens, so it performs a separate exploratory parse for each
5530token in the grammar.
5531
5532There is one subtlety about the use of LAC. That is, when in
5533a consistent parser state with a default reduction, the parser will not
5534attempt to fetch a token from the scanner because no lookahead is needed
5535to determine the next parser action. Thus, whether default reductions
5536are enabled in consistent states (@pxref{Decl
5537Summary,,lr.default-reductions}) affects how soon the parser detects a
5538syntax error: when it @emph{reaches} an erroneous token or when it
5539eventually @emph{needs} that token as a lookahead. The latter behavior
5540is probably more intuitive, so Bison currently provides no way to
5541achieve the former behavior while default reductions are fully enabled.
5542
5543Thus, when LAC is in use, for some fixed decision of whether
5544to enable default reductions in consistent states, canonical
5545LR and IELR behave exactly the same for both
5546syntactically acceptable and syntactically unacceptable input. While
5547LALR still does not support the full language-recognition
5548power of canonical LR and IELR, LAC at
5549least enables LALR's syntax error handling to correctly
5550reflect LALR's language-recognition power.
5551
5552Because LAC requires many parse actions to be performed twice,
5553it can have a performance penalty. However, not all parse actions must
5554be performed twice. Specifically, during a series of default reductions
5555in consistent states and shift actions, the parser never has to initiate
5556an exploratory parse. Moreover, the most time-consuming tasks in a
5557parse are often the file I/O, the lexical analysis performed by the
5558scanner, and the user's semantic actions, but none of these are
5559performed during the exploratory parse. Finally, the base of the
5560temporary stack used during an exploratory parse is a pointer into the
5561normal parser state stack so that the stack is never physically copied.
5562In our experience, the performance penalty of LAC has proven
5563insignificant for practical grammars.
5564
5565@item Accepted Values: @code{none}, @code{full}
5566
5567@item Default Value: @code{none}
5568@end itemize
5569@c parse.lac
5570
5571@c ================================================== parse.trace
5572@item parse.trace
5573@findex %define parse.trace
5574
5575@itemize
5576@item Languages(s): C, C++
5577
5578@item Purpose: Require parser instrumentation for tracing.
5579In C/C++, define the macro @code{YYDEBUG} to 1 in the parser file if it
5580is not already defined, so that the debugging facilities are compiled.
5581@xref{Tracing, ,Tracing Your Parser}.
5582
5583@item Accepted Values: Boolean
5584
5585@item Default Value: @code{false}
5586@end itemize
5587@c parse.trace
5588
5589@c ================================================== variant
5590@item variant
5591@findex %define variant
5592
5593@itemize @bullet
5594@item Language(s):
5595C++
5596
5597@item Purpose:
5598Request variant-based semantic values.
5599@xref{C++ Variants}.
5600
5601@item Accepted Values:
5602Boolean.
5603
5604@item Default Value:
5605@code{false}
5606@end itemize
5607@c variant
5608
5609
5610@end table
5611@end deffn
5612@c ---------------------------------------------------------- %define
5613
5614@deffn {Directive} %defines
5615Write a header file containing macro definitions for the token type
5616names defined in the grammar as well as a few other declarations.
5617If the parser output file is named @file{@var{name}.c} then this file
5618is named @file{@var{name}.h}.
5619
5620For C parsers, the output header declares @code{YYSTYPE} unless
5621@code{YYSTYPE} is already defined as a macro or you have used a
5622@code{<@var{type}>} tag without using @code{%union}.
5623Therefore, if you are using a @code{%union}
5624(@pxref{Multiple Types, ,More Than One Value Type}) with components that
5625require other definitions, or if you have defined a @code{YYSTYPE} macro
5626or type definition
5627(@pxref{Value Type, ,Data Types of Semantic Values}), you need to
5628arrange for these definitions to be propagated to all modules, e.g., by
5629putting them in a prerequisite header that is included both by your
5630parser and by any other module that needs @code{YYSTYPE}.
5631
5632Unless your parser is pure, the output header declares @code{yylval}
5633as an external variable. @xref{Pure Decl, ,A Pure (Reentrant)
5634Parser}.
5635
5636If you have also used locations, the output header declares
5637@code{YYLTYPE} and @code{yylloc} using a protocol similar to that of
5638the @code{YYSTYPE} macro and @code{yylval}. @xref{Locations, ,Tracking
5639Locations}.
5640
5641This output file is normally essential if you wish to put the definition
5642of @code{yylex} in a separate source file, because @code{yylex}
5643typically needs to be able to refer to the above-mentioned declarations
5644and to the token type codes. @xref{Token Values, ,Semantic Values of
5645Tokens}.
5646
5647@findex %code requires
5648@findex %code provides
5649If you have declared @code{%code requires} or @code{%code provides}, the output
5650header also contains their code.
5651@xref{Decl Summary, ,%code}.
5652@end deffn
5653
5654@deffn {Directive} %defines @var{defines-file}
5655Same as above, but save in the file @var{defines-file}.
5656@end deffn
5657
5658@deffn {Directive} %destructor
5659Specify how the parser should reclaim the memory associated to
5660discarded symbols. @xref{Destructor Decl, , Freeing Discarded Symbols}.
5661@end deffn
5662
5663@deffn {Directive} %file-prefix "@var{prefix}"
5664Specify a prefix to use for all Bison output file names. The names are
5665chosen as if the input file were named @file{@var{prefix}.y}.
5666@end deffn
5667
5668@deffn {Directive} %language "@var{language}"
5669Specify the programming language for the generated parser. Currently
5670supported languages include C, C++, and Java.
5671@var{language} is case-insensitive.
5672
5673This directive is experimental and its effect may be modified in future
5674releases.
5675@end deffn
5676
5677@deffn {Directive} %locations
5678Generate the code processing the locations (@pxref{Action Features,
5679,Special Features for Use in Actions}). This mode is enabled as soon as
5680the grammar uses the special @samp{@@@var{n}} tokens, but if your
5681grammar does not use it, using @samp{%locations} allows for more
5682accurate syntax error messages.
5683@end deffn
5684
5685@deffn {Directive} %name-prefix "@var{prefix}"
5686Rename the external symbols used in the parser so that they start with
5687@var{prefix} instead of @samp{yy}. The precise list of symbols renamed
5688in C parsers
5689is @code{yyparse}, @code{yylex}, @code{yyerror}, @code{yynerrs},
5690@code{yylval}, @code{yychar}, @code{yydebug}, and
5691(if locations are used) @code{yylloc}. If you use a push parser,
5692@code{yypush_parse}, @code{yypull_parse}, @code{yypstate},
5693@code{yypstate_new} and @code{yypstate_delete} will
5694also be renamed. For example, if you use @samp{%name-prefix "c_"}, the
5695names become @code{c_parse}, @code{c_lex}, and so on.
5696For C++ parsers, see the @samp{%define api.namespace} documentation in this
5697section.
5698@xref{Multiple Parsers, ,Multiple Parsers in the Same Program}.
5699@end deffn
5700
5701@ifset defaultprec
5702@deffn {Directive} %no-default-prec
5703Do not assign a precedence to rules lacking an explicit @code{%prec}
5704modifier (@pxref{Contextual Precedence, ,Context-Dependent
5705Precedence}).
5706@end deffn
5707@end ifset
5708
5709@deffn {Directive} %no-lines
5710Don't generate any @code{#line} preprocessor commands in the parser
5711file. Ordinarily Bison writes these commands in the parser file so that
5712the C compiler and debuggers will associate errors and object code with
5713your source file (the grammar file). This directive causes them to
5714associate errors with the parser file, treating it an independent source
5715file in its own right.
5716@end deffn
5717
5718@deffn {Directive} %output "@var{file}"
5719Specify @var{file} for the parser file.
5720@end deffn
5721
5722@deffn {Directive} %pure-parser
5723Deprecated version of @samp{%define api.pure} (@pxref{Decl Summary, ,%define}),
5724for which Bison is more careful to warn about unreasonable usage.
5725@end deffn
5726
5727@deffn {Directive} %require "@var{version}"
5728Require version @var{version} or higher of Bison. @xref{Require Decl, ,
5729Require a Version of Bison}.
5730@end deffn
5731
5732@deffn {Directive} %skeleton "@var{file}"
5733Specify the skeleton to use.
5734
5735@c You probably don't need this option unless you are developing Bison.
5736@c You should use @code{%language} if you want to specify the skeleton for a
5737@c different language, because it is clearer and because it will always choose the
5738@c correct skeleton for non-deterministic or push parsers.
5739
5740If @var{file} does not contain a @code{/}, @var{file} is the name of a skeleton
5741file in the Bison installation directory.
5742If it does, @var{file} is an absolute file name or a file name relative to the
5743directory of the grammar file.
5744This is similar to how most shells resolve commands.
5745@end deffn
5746
5747@deffn {Directive} %token-table
5748Generate an array of token names in the parser file. The name of the
5749array is @code{yytname}; @code{yytname[@var{i}]} is the name of the
5750token whose internal Bison token code number is @var{i}. The first
5751three elements of @code{yytname} correspond to the predefined tokens
5752@code{"$end"},
5753@code{"error"}, and @code{"$undefined"}; after these come the symbols
5754defined in the grammar file.
5755
5756The name in the table includes all the characters needed to represent
5757the token in Bison. For single-character literals and literal
5758strings, this includes the surrounding quoting characters and any
5759escape sequences. For example, the Bison single-character literal
5760@code{'+'} corresponds to a three-character name, represented in C as
5761@code{"'+'"}; and the Bison two-character literal string @code{"\\/"}
5762corresponds to a five-character name, represented in C as
5763@code{"\"\\\\/\""}.
5764
5765When you specify @code{%token-table}, Bison also generates macro
5766definitions for macros @code{YYNTOKENS}, @code{YYNNTS}, and
5767@code{YYNRULES}, and @code{YYNSTATES}:
5768
5769@table @code
5770@item YYNTOKENS
5771The highest token number, plus one.
5772@item YYNNTS
5773The number of nonterminal symbols.
5774@item YYNRULES
5775The number of grammar rules,
5776@item YYNSTATES
5777The number of parser states (@pxref{Parser States}).
5778@end table
5779@end deffn
5780
5781@deffn {Directive} %verbose
5782Write an extra output file containing verbose descriptions of the
5783parser states and what is done for each type of lookahead token in
5784that state. @xref{Understanding, , Understanding Your Parser}, for more
5785information.
5786@end deffn
5787
5788@deffn {Directive} %yacc
5789Pretend the option @option{--yacc} was given, i.e., imitate Yacc,
5790including its naming conventions. @xref{Bison Options}, for more.
5791@end deffn
5792
5793
5794@node Multiple Parsers
5795@section Multiple Parsers in the Same Program
5796
5797Most programs that use Bison parse only one language and therefore contain
5798only one Bison parser. But what if you want to parse more than one
5799language with the same program? Then you need to avoid a name conflict
5800between different definitions of @code{yyparse}, @code{yylval}, and so on.
5801
5802The easy way to do this is to use the option @samp{-p @var{prefix}}
5803(@pxref{Invocation, ,Invoking Bison}). This renames the interface
5804functions and variables of the Bison parser to start with @var{prefix}
5805instead of @samp{yy}. You can use this to give each parser distinct
5806names that do not conflict.
5807
5808The precise list of symbols renamed is @code{yyparse}, @code{yylex},
5809@code{yyerror}, @code{yynerrs}, @code{yylval}, @code{yylloc},
5810@code{yychar} and @code{yydebug}. If you use a push parser,
5811@code{yypush_parse}, @code{yypull_parse}, @code{yypstate},
5812@code{yypstate_new} and @code{yypstate_delete} will also be renamed.
5813For example, if you use @samp{-p c}, the names become @code{cparse},
5814@code{clex}, and so on.
5815
5816@strong{All the other variables and macros associated with Bison are not
5817renamed.} These others are not global; there is no conflict if the same
5818name is used in different parsers. For example, @code{YYSTYPE} is not
5819renamed, but defining this in different ways in different parsers causes
5820no trouble (@pxref{Value Type, ,Data Types of Semantic Values}).
5821
5822The @samp{-p} option works by adding macro definitions to the beginning
5823of the parser source file, defining @code{yyparse} as
5824@code{@var{prefix}parse}, and so on. This effectively substitutes one
5825name for the other in the entire parser file.
5826
5827@node Interface
5828@chapter Parser C-Language Interface
5829@cindex C-language interface
5830@cindex interface
5831
5832The Bison parser is actually a C function named @code{yyparse}. Here we
5833describe the interface conventions of @code{yyparse} and the other
5834functions that it needs to use.
5835
5836Keep in mind that the parser uses many C identifiers starting with
5837@samp{yy} and @samp{YY} for internal purposes. If you use such an
5838identifier (aside from those in this manual) in an action or in epilogue
5839in the grammar file, you are likely to run into trouble.
5840
5841@menu
5842* Parser Function:: How to call @code{yyparse} and what it returns.
5843* Push Parser Function:: How to call @code{yypush_parse} and what it returns.
5844* Pull Parser Function:: How to call @code{yypull_parse} and what it returns.
5845* Parser Create Function:: How to call @code{yypstate_new} and what it returns.
5846* Parser Delete Function:: How to call @code{yypstate_delete} and what it returns.
5847* Lexical:: You must supply a function @code{yylex}
5848 which reads tokens.
5849* Error Reporting:: You must supply a function @code{yyerror}.
5850* Action Features:: Special features for use in actions.
5851* Internationalization:: How to let the parser speak in the user's
5852 native language.
5853@end menu
5854
5855@node Parser Function
5856@section The Parser Function @code{yyparse}
5857@findex yyparse
5858
5859You call the function @code{yyparse} to cause parsing to occur. This
5860function reads tokens, executes actions, and ultimately returns when it
5861encounters end-of-input or an unrecoverable syntax error. You can also
5862write an action which directs @code{yyparse} to return immediately
5863without reading further.
5864
5865
5866@deftypefun int yyparse (void)
5867The value returned by @code{yyparse} is 0 if parsing was successful (return
5868is due to end-of-input).
5869
5870The value is 1 if parsing failed because of invalid input, i.e., input
5871that contains a syntax error or that causes @code{YYABORT} to be
5872invoked.
5873
5874The value is 2 if parsing failed due to memory exhaustion.
5875@end deftypefun
5876
5877In an action, you can cause immediate return from @code{yyparse} by using
5878these macros:
5879
5880@defmac YYACCEPT
5881@findex YYACCEPT
5882Return immediately with value 0 (to report success).
5883@end defmac
5884
5885@defmac YYABORT
5886@findex YYABORT
5887Return immediately with value 1 (to report failure).
5888@end defmac
5889
5890If you use a reentrant parser, you can optionally pass additional
5891parameter information to it in a reentrant way. To do so, use the
5892declaration @code{%parse-param}:
5893
5894@deffn {Directive} %parse-param @{@var{argument-declaration}@} @dots{}
5895@findex %parse-param
5896Declare that one or more
5897@var{argument-declaration} are additional @code{yyparse} arguments.
5898The @var{argument-declaration} is used when declaring
5899functions or prototypes. The last identifier in
5900@var{argument-declaration} must be the argument name.
5901@end deffn
5902
5903Here's an example. Write this in the parser:
5904
5905@example
5906%parse-param @{int *nastiness@} @{int *randomness@}
5907@end example
5908
5909@noindent
5910Then call the parser like this:
5911
5912@example
5913@{
5914 int nastiness, randomness;
5915 @dots{} /* @r{Store proper data in @code{nastiness} and @code{randomness}.} */
5916 value = yyparse (&nastiness, &randomness);
5917 @dots{}
5918@}
5919@end example
5920
5921@noindent
5922In the grammar actions, use expressions like this to refer to the data:
5923
5924@example
5925exp: @dots{} @{ @dots{}; *randomness += 1; @dots{} @}
5926@end example
5927
5928@node Push Parser Function
5929@section The Push Parser Function @code{yypush_parse}
5930@findex yypush_parse
5931
5932(The current push parsing interface is experimental and may evolve.
5933More user feedback will help to stabilize it.)
5934
5935You call the function @code{yypush_parse} to parse a single token. This
5936function is available if either the @samp{%define api.push-pull push} or
5937@samp{%define api.push-pull both} declaration is used.
5938@xref{Push Decl, ,A Push Parser}.
5939
5940@deftypefun int yypush_parse (yypstate *yyps)
5941The value returned by @code{yypush_parse} is the same as for yyparse with the
5942following exception. @code{yypush_parse} will return YYPUSH_MORE if more input
5943is required to finish parsing the grammar.
5944@end deftypefun
5945
5946@node Pull Parser Function
5947@section The Pull Parser Function @code{yypull_parse}
5948@findex yypull_parse
5949
5950(The current push parsing interface is experimental and may evolve.
5951More user feedback will help to stabilize it.)
5952
5953You call the function @code{yypull_parse} to parse the rest of the input
5954stream. This function is available if the @samp{%define api.push-pull both}
5955declaration is used.
5956@xref{Push Decl, ,A Push Parser}.
5957
5958@deftypefun int yypull_parse (yypstate *yyps)
5959The value returned by @code{yypull_parse} is the same as for @code{yyparse}.
5960@end deftypefun
5961
5962@node Parser Create Function
5963@section The Parser Create Function @code{yystate_new}
5964@findex yypstate_new
5965
5966(The current push parsing interface is experimental and may evolve.
5967More user feedback will help to stabilize it.)
5968
5969You call the function @code{yypstate_new} to create a new parser instance.
5970This function is available if either the @samp{%define api.push-pull push} or
5971@samp{%define api.push-pull both} declaration is used.
5972@xref{Push Decl, ,A Push Parser}.
5973
5974@deftypefun yypstate *yypstate_new (void)
5975The function will return a valid parser instance if there was memory available
5976or 0 if no memory was available.
5977In impure mode, it will also return 0 if a parser instance is currently
5978allocated.
5979@end deftypefun
5980
5981@node Parser Delete Function
5982@section The Parser Delete Function @code{yystate_delete}
5983@findex yypstate_delete
5984
5985(The current push parsing interface is experimental and may evolve.
5986More user feedback will help to stabilize it.)
5987
5988You call the function @code{yypstate_delete} to delete a parser instance.
5989function is available if either the @samp{%define api.push-pull push} or
5990@samp{%define api.push-pull both} declaration is used.
5991@xref{Push Decl, ,A Push Parser}.
5992
5993@deftypefun void yypstate_delete (yypstate *yyps)
5994This function will reclaim the memory associated with a parser instance.
5995After this call, you should no longer attempt to use the parser instance.
5996@end deftypefun
5997
5998@node Lexical
5999@section The Lexical Analyzer Function @code{yylex}
6000@findex yylex
6001@cindex lexical analyzer
6002
6003The @dfn{lexical analyzer} function, @code{yylex}, recognizes tokens from
6004the input stream and returns them to the parser. Bison does not create
6005this function automatically; you must write it so that @code{yyparse} can
6006call it. The function is sometimes referred to as a lexical scanner.
6007
6008In simple programs, @code{yylex} is often defined at the end of the Bison
6009grammar file. If @code{yylex} is defined in a separate source file, you
6010need to arrange for the token-type macro definitions to be available there.
6011To do this, use the @samp{-d} option when you run Bison, so that it will
6012write these macro definitions into a separate header file
6013@file{@var{name}.tab.h} which you can include in the other source files
6014that need it. @xref{Invocation, ,Invoking Bison}.
6015
6016@menu
6017* Calling Convention:: How @code{yyparse} calls @code{yylex}.
6018* Token Values:: How @code{yylex} must return the semantic value
6019 of the token it has read.
6020* Token Locations:: How @code{yylex} must return the text location
6021 (line number, etc.) of the token, if the
6022 actions want that.
6023* Pure Calling:: How the calling convention differs in a pure parser
6024 (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}).
6025@end menu
6026
6027@node Calling Convention
6028@subsection Calling Convention for @code{yylex}
6029
6030The value that @code{yylex} returns must be the positive numeric code
6031for the type of token it has just found; a zero or negative value
6032signifies end-of-input.
6033
6034When a token is referred to in the grammar rules by a name, that name
6035in the parser file becomes a C macro whose definition is the proper
6036numeric code for that token type. So @code{yylex} can use the name
6037to indicate that type. @xref{Symbols}.
6038
6039When a token is referred to in the grammar rules by a character literal,
6040the numeric code for that character is also the code for the token type.
6041So @code{yylex} can simply return that character code, possibly converted
6042to @code{unsigned char} to avoid sign-extension. The null character
6043must not be used this way, because its code is zero and that
6044signifies end-of-input.
6045
6046Here is an example showing these things:
6047
6048@example
6049int
6050yylex (void)
6051@{
6052 @dots{}
6053 if (c == EOF) /* Detect end-of-input. */
6054 return 0;
6055 @dots{}
6056 if (c == '+' || c == '-')
6057 return c; /* Assume token type for `+' is '+'. */
6058 @dots{}
6059 return INT; /* Return the type of the token. */
6060 @dots{}
6061@}
6062@end example
6063
6064@noindent
6065This interface has been designed so that the output from the @code{lex}
6066utility can be used without change as the definition of @code{yylex}.
6067
6068If the grammar uses literal string tokens, there are two ways that
6069@code{yylex} can determine the token type codes for them:
6070
6071@itemize @bullet
6072@item
6073If the grammar defines symbolic token names as aliases for the
6074literal string tokens, @code{yylex} can use these symbolic names like
6075all others. In this case, the use of the literal string tokens in
6076the grammar file has no effect on @code{yylex}.
6077
6078@item
6079@code{yylex} can find the multicharacter token in the @code{yytname}
6080table. The index of the token in the table is the token type's code.
6081The name of a multicharacter token is recorded in @code{yytname} with a
6082double-quote, the token's characters, and another double-quote. The
6083token's characters are escaped as necessary to be suitable as input
6084to Bison.
6085
6086Here's code for looking up a multicharacter token in @code{yytname},
6087assuming that the characters of the token are stored in
6088@code{token_buffer}, and assuming that the token does not contain any
6089characters like @samp{"} that require escaping.
6090
6091@smallexample
6092for (i = 0; i < YYNTOKENS; i++)
6093 @{
6094 if (yytname[i] != 0
6095 && yytname[i][0] == '"'
6096 && ! strncmp (yytname[i] + 1, token_buffer,
6097 strlen (token_buffer))
6098 && yytname[i][strlen (token_buffer) + 1] == '"'
6099 && yytname[i][strlen (token_buffer) + 2] == 0)
6100 break;
6101 @}
6102@end smallexample
6103
6104The @code{yytname} table is generated only if you use the
6105@code{%token-table} declaration. @xref{Decl Summary}.
6106@end itemize
6107
6108@node Token Values
6109@subsection Semantic Values of Tokens
6110
6111@vindex yylval
6112In an ordinary (nonreentrant) parser, the semantic value of the token must
6113be stored into the global variable @code{yylval}. When you are using
6114just one data type for semantic values, @code{yylval} has that type.
6115Thus, if the type is @code{int} (the default), you might write this in
6116@code{yylex}:
6117
6118@example
6119@group
6120 @dots{}
6121 yylval = value; /* Put value onto Bison stack. */
6122 return INT; /* Return the type of the token. */
6123 @dots{}
6124@end group
6125@end example
6126
6127When you are using multiple data types, @code{yylval}'s type is a union
6128made from the @code{%union} declaration (@pxref{Union Decl, ,The
6129Collection of Value Types}). So when you store a token's value, you
6130must use the proper member of the union. If the @code{%union}
6131declaration looks like this:
6132
6133@example
6134@group
6135%union @{
6136 int intval;
6137 double val;
6138 symrec *tptr;
6139@}
6140@end group
6141@end example
6142
6143@noindent
6144then the code in @code{yylex} might look like this:
6145
6146@example
6147@group
6148 @dots{}
6149 yylval.intval = value; /* Put value onto Bison stack. */
6150 return INT; /* Return the type of the token. */
6151 @dots{}
6152@end group
6153@end example
6154
6155@node Token Locations
6156@subsection Textual Locations of Tokens
6157
6158@vindex yylloc
6159If you are using the @samp{@@@var{n}}-feature (@pxref{Locations, ,
6160Tracking Locations}) in actions to keep track of the textual locations
6161of tokens and groupings, then you must provide this information in
6162@code{yylex}. The function @code{yyparse} expects to find the textual
6163location of a token just parsed in the global variable @code{yylloc}.
6164So @code{yylex} must store the proper data in that variable.
6165
6166By default, the value of @code{yylloc} is a structure and you need only
6167initialize the members that are going to be used by the actions. The
6168four members are called @code{first_line}, @code{first_column},
6169@code{last_line} and @code{last_column}. Note that the use of this
6170feature makes the parser noticeably slower.
6171
6172@tindex YYLTYPE
6173The data type of @code{yylloc} has the name @code{YYLTYPE}.
6174
6175@node Pure Calling
6176@subsection Calling Conventions for Pure Parsers
6177
6178When you use the Bison declaration @samp{%define api.pure} to request a
6179pure, reentrant parser, the global communication variables @code{yylval}
6180and @code{yylloc} cannot be used. (@xref{Pure Decl, ,A Pure (Reentrant)
6181Parser}.) In such parsers the two global variables are replaced by
6182pointers passed as arguments to @code{yylex}. You must declare them as
6183shown here, and pass the information back by storing it through those
6184pointers.
6185
6186@example
6187int
6188yylex (YYSTYPE *lvalp, YYLTYPE *llocp)
6189@{
6190 @dots{}
6191 *lvalp = value; /* Put value onto Bison stack. */
6192 return INT; /* Return the type of the token. */
6193 @dots{}
6194@}
6195@end example
6196
6197If the grammar file does not use the @samp{@@} constructs to refer to
6198textual locations, then the type @code{YYLTYPE} will not be defined. In
6199this case, omit the second argument; @code{yylex} will be called with
6200only one argument.
6201
6202If you wish to pass additional arguments to @code{yylex}, use
6203@code{%lex-param} just like @code{%parse-param} (@pxref{Parser
6204Function}). To pass additional arguments to both @code{yylex} and
6205@code{yyparse}, use @code{%param}.
6206
6207@deffn {Directive} %lex-param @{@var{argument-declaration}@} @dots{}
6208@findex %lex-param
6209Specify that @var{argument-declaration} are additional @code{yylex} argument
6210declarations. You may pass one or more such declarations, which is
6211equivalent to repeating @code{%lex-param}.
6212@end deffn
6213
6214@deffn {Directive} %param @{@var{argument-declaration}@} @dots{}
6215@findex %param
6216Specify that @var{argument-declaration} are additional
6217@code{yylex}/@code{yyparse} argument declaration. This is equivalent to
6218@samp{%lex-param @{@var{argument-declaration}@} @dots{} %parse-param
6219@{@var{argument-declaration}@} @dots{}}. You may pass one or more
6220declarations, which is equivalent to repeating @code{%param}.
6221@end deffn
6222
6223For instance:
6224
6225@example
6226%lex-param @{scanner_mode *mode@}
6227%parse-param @{parser_mode *mode@}
6228%param @{environment_type *env@}
6229@end example
6230
6231@noindent
6232results in the following signature:
6233
6234@example
6235int yylex (scanner_mode *mode, environment_type *env);
6236int yyparse (parser_mode *mode, environment_type *env);
6237@end example
6238
6239If @samp{%define api.pure} is added:
6240
6241@example
6242int yylex (YYSTYPE *lvalp, scanner_mode *mode, environment_type *env);
6243int yyparse (parser_mode *mode, environment_type *env);
6244@end example
6245
6246@noindent
6247and finally, if both @samp{%define api.pure} and @code{%locations} are used:
6248
6249@example
6250int yylex (YYSTYPE *lvalp, YYLTYPE *llocp,
6251 scanner_mode *mode, environment_type *env);
6252int yyparse (parser_mode *mode, environment_type *env);
6253@end example
6254
6255@node Error Reporting
6256@section The Error Reporting Function @code{yyerror}
6257@cindex error reporting function
6258@findex yyerror
6259@cindex parse error
6260@cindex syntax error
6261
6262The Bison parser detects a @dfn{syntax error} (or @dfn{parse error})
6263whenever it reads a token which cannot satisfy any syntax rule. An
6264action in the grammar can also explicitly proclaim an error, using the
6265macro @code{YYERROR} (@pxref{Action Features, ,Special Features for Use
6266in Actions}).
6267
6268The Bison parser expects to report the error by calling an error
6269reporting function named @code{yyerror}, which you must supply. It is
6270called by @code{yyparse} whenever a syntax error is found, and it
6271receives one argument. For a syntax error, the string is normally
6272@w{@code{"syntax error"}}.
6273
6274@findex %define parse.error
6275If you invoke @samp{%define parse.error verbose} in the Bison
6276declarations section (@pxref{Bison Declarations, ,The Bison Declarations
6277Section}), then Bison provides a more verbose and specific error message
6278string instead of just plain @w{@code{"syntax error"}}.
6279
6280The parser can detect one other kind of error: memory exhaustion. This
6281can happen when the input contains constructions that are very deeply
6282nested. It isn't likely you will encounter this, since the Bison
6283parser normally extends its stack automatically up to a very large limit. But
6284if memory is exhausted, @code{yyparse} calls @code{yyerror} in the usual
6285fashion, except that the argument string is @w{@code{"memory exhausted"}}.
6286
6287In some cases diagnostics like @w{@code{"syntax error"}} are
6288translated automatically from English to some other language before
6289they are passed to @code{yyerror}. @xref{Internationalization}.
6290
6291The following definition suffices in simple programs:
6292
6293@example
6294@group
6295void
6296yyerror (char const *s)
6297@{
6298@end group
6299@group
6300 fprintf (stderr, "%s\n", s);
6301@}
6302@end group
6303@end example
6304
6305After @code{yyerror} returns to @code{yyparse}, the latter will attempt
6306error recovery if you have written suitable error recovery grammar rules
6307(@pxref{Error Recovery}). If recovery is impossible, @code{yyparse} will
6308immediately return 1.
6309
6310Obviously, in location tracking pure parsers, @code{yyerror} should have
6311an access to the current location.
6312This is indeed the case for the GLR
6313parsers, but not for the Yacc parser, for historical reasons. I.e., if
6314@samp{%locations %define api.pure} is passed then the prototypes for
6315@code{yyerror} are:
6316
6317@example
6318void yyerror (char const *msg); /* Yacc parsers. */
6319void yyerror (YYLTYPE *locp, char const *msg); /* GLR parsers. */
6320@end example
6321
6322If @samp{%parse-param @{int *nastiness@}} is used, then:
6323
6324@example
6325void yyerror (int *nastiness, char const *msg); /* Yacc parsers. */
6326void yyerror (int *nastiness, char const *msg); /* GLR parsers. */
6327@end example
6328
6329Finally, GLR and Yacc parsers share the same @code{yyerror} calling
6330convention for absolutely pure parsers, i.e., when the calling
6331convention of @code{yylex} @emph{and} the calling convention of
6332@samp{%define api.pure} are pure.
6333I.e.:
6334
6335@example
6336/* Location tracking. */
6337%locations
6338/* Pure yylex. */
6339%define api.pure
6340%lex-param @{int *nastiness@}
6341/* Pure yyparse. */
6342%parse-param @{int *nastiness@}
6343%parse-param @{int *randomness@}
6344@end example
6345
6346@noindent
6347results in the following signatures for all the parser kinds:
6348
6349@example
6350int yylex (YYSTYPE *lvalp, YYLTYPE *llocp, int *nastiness);
6351int yyparse (int *nastiness, int *randomness);
6352void yyerror (YYLTYPE *locp,
6353 int *nastiness, int *randomness,
6354 char const *msg);
6355@end example
6356
6357@noindent
6358The prototypes are only indications of how the code produced by Bison
6359uses @code{yyerror}. Bison-generated code always ignores the returned
6360value, so @code{yyerror} can return any type, including @code{void}.
6361Also, @code{yyerror} can be a variadic function; that is why the
6362message is always passed last.
6363
6364Traditionally @code{yyerror} returns an @code{int} that is always
6365ignored, but this is purely for historical reasons, and @code{void} is
6366preferable since it more accurately describes the return type for
6367@code{yyerror}.
6368
6369@vindex yynerrs
6370The variable @code{yynerrs} contains the number of syntax errors
6371reported so far. Normally this variable is global; but if you
6372request a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser})
6373then it is a local variable which only the actions can access.
6374
6375@node Action Features
6376@section Special Features for Use in Actions
6377@cindex summary, action features
6378@cindex action features summary
6379
6380Here is a table of Bison constructs, variables and macros that
6381are useful in actions.
6382
6383@deffn {Variable} $$
6384Acts like a variable that contains the semantic value for the
6385grouping made by the current rule. @xref{Actions}.
6386@end deffn
6387
6388@deffn {Variable} $@var{n}
6389Acts like a variable that contains the semantic value for the
6390@var{n}th component of the current rule. @xref{Actions}.
6391@end deffn
6392
6393@deffn {Variable} $<@var{typealt}>$
6394Like @code{$$} but specifies alternative @var{typealt} in the union
6395specified by the @code{%union} declaration. @xref{Action Types, ,Data
6396Types of Values in Actions}.
6397@end deffn
6398
6399@deffn {Variable} $<@var{typealt}>@var{n}
6400Like @code{$@var{n}} but specifies alternative @var{typealt} in the
6401union specified by the @code{%union} declaration.
6402@xref{Action Types, ,Data Types of Values in Actions}.
6403@end deffn
6404
6405@deffn {Macro} YYABORT;
6406Return immediately from @code{yyparse}, indicating failure.
6407@xref{Parser Function, ,The Parser Function @code{yyparse}}.
6408@end deffn
6409
6410@deffn {Macro} YYACCEPT;
6411Return immediately from @code{yyparse}, indicating success.
6412@xref{Parser Function, ,The Parser Function @code{yyparse}}.
6413@end deffn
6414
6415@deffn {Macro} YYBACKUP (@var{token}, @var{value});
6416@findex YYBACKUP
6417Unshift a token. This macro is allowed only for rules that reduce
6418a single value, and only when there is no lookahead token.
6419It is also disallowed in GLR parsers.
6420It installs a lookahead token with token type @var{token} and
6421semantic value @var{value}; then it discards the value that was
6422going to be reduced by this rule.
6423
6424If the macro is used when it is not valid, such as when there is
6425a lookahead token already, then it reports a syntax error with
6426a message @samp{cannot back up} and performs ordinary error
6427recovery.
6428
6429In either case, the rest of the action is not executed.
6430@end deffn
6431
6432@deffn {Macro} YYEMPTY
6433@vindex YYEMPTY
6434Value stored in @code{yychar} when there is no lookahead token.
6435@end deffn
6436
6437@deffn {Macro} YYEOF
6438@vindex YYEOF
6439Value stored in @code{yychar} when the lookahead is the end of the input
6440stream.
6441@end deffn
6442
6443@deffn {Macro} YYERROR;
6444@findex YYERROR
6445Cause an immediate syntax error. This statement initiates error
6446recovery just as if the parser itself had detected an error; however, it
6447does not call @code{yyerror}, and does not print any message. If you
6448want to print an error message, call @code{yyerror} explicitly before
6449the @samp{YYERROR;} statement. @xref{Error Recovery}.
6450@end deffn
6451
6452@deffn {Macro} YYRECOVERING
6453@findex YYRECOVERING
6454The expression @code{YYRECOVERING ()} yields 1 when the parser
6455is recovering from a syntax error, and 0 otherwise.
6456@xref{Error Recovery}.
6457@end deffn
6458
6459@deffn {Variable} yychar
6460Variable containing either the lookahead token, or @code{YYEOF} when the
6461lookahead is the end of the input stream, or @code{YYEMPTY} when no lookahead
6462has been performed so the next token is not yet known.
6463Do not modify @code{yychar} in a deferred semantic action (@pxref{GLR Semantic
6464Actions}).
6465@xref{Lookahead, ,Lookahead Tokens}.
6466@end deffn
6467
6468@deffn {Macro} yyclearin;
6469Discard the current lookahead token. This is useful primarily in
6470error rules.
6471Do not invoke @code{yyclearin} in a deferred semantic action (@pxref{GLR
6472Semantic Actions}).
6473@xref{Error Recovery}.
6474@end deffn
6475
6476@deffn {Macro} yyerrok;
6477Resume generating error messages immediately for subsequent syntax
6478errors. This is useful primarily in error rules.
6479@xref{Error Recovery}.
6480@end deffn
6481
6482@deffn {Variable} yylloc
6483Variable containing the lookahead token location when @code{yychar} is not set
6484to @code{YYEMPTY} or @code{YYEOF}.
6485Do not modify @code{yylloc} in a deferred semantic action (@pxref{GLR Semantic
6486Actions}).
6487@xref{Actions and Locations, ,Actions and Locations}.
6488@end deffn
6489
6490@deffn {Variable} yylval
6491Variable containing the lookahead token semantic value when @code{yychar} is
6492not set to @code{YYEMPTY} or @code{YYEOF}.
6493Do not modify @code{yylval} in a deferred semantic action (@pxref{GLR Semantic
6494Actions}).
6495@xref{Actions, ,Actions}.
6496@end deffn
6497
6498@deffn {Value} @@$
6499@findex @@$
6500Acts like a structure variable containing information on the textual location
6501of the grouping made by the current rule. @xref{Locations, ,
6502Tracking Locations}.
6503
6504@c Check if those paragraphs are still useful or not.
6505
6506@c @example
6507@c struct @{
6508@c int first_line, last_line;
6509@c int first_column, last_column;
6510@c @};
6511@c @end example
6512
6513@c Thus, to get the starting line number of the third component, you would
6514@c use @samp{@@3.first_line}.
6515
6516@c In order for the members of this structure to contain valid information,
6517@c you must make @code{yylex} supply this information about each token.
6518@c If you need only certain members, then @code{yylex} need only fill in
6519@c those members.
6520
6521@c The use of this feature makes the parser noticeably slower.
6522@end deffn
6523
6524@deffn {Value} @@@var{n}
6525@findex @@@var{n}
6526Acts like a structure variable containing information on the textual location
6527of the @var{n}th component of the current rule. @xref{Locations, ,
6528Tracking Locations}.
6529@end deffn
6530
6531@node Internationalization
6532@section Parser Internationalization
6533@cindex internationalization
6534@cindex i18n
6535@cindex NLS
6536@cindex gettext
6537@cindex bison-po
6538
6539A Bison-generated parser can print diagnostics, including error and
6540tracing messages. By default, they appear in English. However, Bison
6541also supports outputting diagnostics in the user's native language. To
6542make this work, the user should set the usual environment variables.
6543@xref{Users, , The User's View, gettext, GNU @code{gettext} utilities}.
6544For example, the shell command @samp{export LC_ALL=fr_CA.UTF-8} might
6545set the user's locale to French Canadian using the UTF-8
6546encoding. The exact set of available locales depends on the user's
6547installation.
6548
6549The maintainer of a package that uses a Bison-generated parser enables
6550the internationalization of the parser's output through the following
6551steps. Here we assume a package that uses GNU Autoconf and
6552GNU Automake.
6553
6554@enumerate
6555@item
6556@cindex bison-i18n.m4
6557Into the directory containing the GNU Autoconf macros used
6558by the package---often called @file{m4}---copy the
6559@file{bison-i18n.m4} file installed by Bison under
6560@samp{share/aclocal/bison-i18n.m4} in Bison's installation directory.
6561For example:
6562
6563@example
6564cp /usr/local/share/aclocal/bison-i18n.m4 m4/bison-i18n.m4
6565@end example
6566
6567@item
6568@findex BISON_I18N
6569@vindex BISON_LOCALEDIR
6570@vindex YYENABLE_NLS
6571In the top-level @file{configure.ac}, after the @code{AM_GNU_GETTEXT}
6572invocation, add an invocation of @code{BISON_I18N}. This macro is
6573defined in the file @file{bison-i18n.m4} that you copied earlier. It
6574causes @samp{configure} to find the value of the
6575@code{BISON_LOCALEDIR} variable, and it defines the source-language
6576symbol @code{YYENABLE_NLS} to enable translations in the
6577Bison-generated parser.
6578
6579@item
6580In the @code{main} function of your program, designate the directory
6581containing Bison's runtime message catalog, through a call to
6582@samp{bindtextdomain} with domain name @samp{bison-runtime}.
6583For example:
6584
6585@example
6586bindtextdomain ("bison-runtime", BISON_LOCALEDIR);
6587@end example
6588
6589Typically this appears after any other call @code{bindtextdomain
6590(PACKAGE, LOCALEDIR)} that your package already has. Here we rely on
6591@samp{BISON_LOCALEDIR} to be defined as a string through the
6592@file{Makefile}.
6593
6594@item
6595In the @file{Makefile.am} that controls the compilation of the @code{main}
6596function, make @samp{BISON_LOCALEDIR} available as a C preprocessor macro,
6597either in @samp{DEFS} or in @samp{AM_CPPFLAGS}. For example:
6598
6599@example
6600DEFS = @@DEFS@@ -DBISON_LOCALEDIR='"$(BISON_LOCALEDIR)"'
6601@end example
6602
6603or:
6604
6605@example
6606AM_CPPFLAGS = -DBISON_LOCALEDIR='"$(BISON_LOCALEDIR)"'
6607@end example
6608
6609@item
6610Finally, invoke the command @command{autoreconf} to generate the build
6611infrastructure.
6612@end enumerate
6613
6614
6615@node Algorithm
6616@chapter The Bison Parser Algorithm
6617@cindex Bison parser algorithm
6618@cindex algorithm of parser
6619@cindex shifting
6620@cindex reduction
6621@cindex parser stack
6622@cindex stack, parser
6623
6624As Bison reads tokens, it pushes them onto a stack along with their
6625semantic values. The stack is called the @dfn{parser stack}. Pushing a
6626token is traditionally called @dfn{shifting}.
6627
6628For example, suppose the infix calculator has read @samp{1 + 5 *}, with a
6629@samp{3} to come. The stack will have four elements, one for each token
6630that was shifted.
6631
6632But the stack does not always have an element for each token read. When
6633the last @var{n} tokens and groupings shifted match the components of a
6634grammar rule, they can be combined according to that rule. This is called
6635@dfn{reduction}. Those tokens and groupings are replaced on the stack by a
6636single grouping whose symbol is the result (left hand side) of that rule.
6637Running the rule's action is part of the process of reduction, because this
6638is what computes the semantic value of the resulting grouping.
6639
6640For example, if the infix calculator's parser stack contains this:
6641
6642@example
66431 + 5 * 3
6644@end example
6645
6646@noindent
6647and the next input token is a newline character, then the last three
6648elements can be reduced to 15 via the rule:
6649
6650@example
6651expr: expr '*' expr;
6652@end example
6653
6654@noindent
6655Then the stack contains just these three elements:
6656
6657@example
66581 + 15
6659@end example
6660
6661@noindent
6662At this point, another reduction can be made, resulting in the single value
666316. Then the newline token can be shifted.
6664
6665The parser tries, by shifts and reductions, to reduce the entire input down
6666to a single grouping whose symbol is the grammar's start-symbol
6667(@pxref{Language and Grammar, ,Languages and Context-Free Grammars}).
6668
6669This kind of parser is known in the literature as a bottom-up parser.
6670
6671@menu
6672* Lookahead:: Parser looks one token ahead when deciding what to do.
6673* Shift/Reduce:: Conflicts: when either shifting or reduction is valid.
6674* Precedence:: Operator precedence works by resolving conflicts.
6675* Contextual Precedence:: When an operator's precedence depends on context.
6676* Parser States:: The parser is a finite-state-machine with stack.
6677* Reduce/Reduce:: When two rules are applicable in the same situation.
6678* Mystery Conflicts:: Reduce/reduce conflicts that look unjustified.
6679* Generalized LR Parsing:: Parsing arbitrary context-free grammars.
6680* Memory Management:: What happens when memory is exhausted. How to avoid it.
6681@end menu
6682
6683@node Lookahead
6684@section Lookahead Tokens
6685@cindex lookahead token
6686
6687The Bison parser does @emph{not} always reduce immediately as soon as the
6688last @var{n} tokens and groupings match a rule. This is because such a
6689simple strategy is inadequate to handle most languages. Instead, when a
6690reduction is possible, the parser sometimes ``looks ahead'' at the next
6691token in order to decide what to do.
6692
6693When a token is read, it is not immediately shifted; first it becomes the
6694@dfn{lookahead token}, which is not on the stack. Now the parser can
6695perform one or more reductions of tokens and groupings on the stack, while
6696the lookahead token remains off to the side. When no more reductions
6697should take place, the lookahead token is shifted onto the stack. This
6698does not mean that all possible reductions have been done; depending on the
6699token type of the lookahead token, some rules may choose to delay their
6700application.
6701
6702Here is a simple case where lookahead is needed. These three rules define
6703expressions which contain binary addition operators and postfix unary
6704factorial operators (@samp{!}), and allow parentheses for grouping.
6705
6706@example
6707@group
6708expr: term '+' expr
6709 | term
6710 ;
6711@end group
6712
6713@group
6714term: '(' expr ')'
6715 | term '!'
6716 | NUMBER
6717 ;
6718@end group
6719@end example
6720
6721Suppose that the tokens @w{@samp{1 + 2}} have been read and shifted; what
6722should be done? If the following token is @samp{)}, then the first three
6723tokens must be reduced to form an @code{expr}. This is the only valid
6724course, because shifting the @samp{)} would produce a sequence of symbols
6725@w{@code{term ')'}}, and no rule allows this.
6726
6727If the following token is @samp{!}, then it must be shifted immediately so
6728that @w{@samp{2 !}} can be reduced to make a @code{term}. If instead the
6729parser were to reduce before shifting, @w{@samp{1 + 2}} would become an
6730@code{expr}. It would then be impossible to shift the @samp{!} because
6731doing so would produce on the stack the sequence of symbols @code{expr
6732'!'}. No rule allows that sequence.
6733
6734@vindex yychar
6735@vindex yylval
6736@vindex yylloc
6737The lookahead token is stored in the variable @code{yychar}.
6738Its semantic value and location, if any, are stored in the variables
6739@code{yylval} and @code{yylloc}.
6740@xref{Action Features, ,Special Features for Use in Actions}.
6741
6742@node Shift/Reduce
6743@section Shift/Reduce Conflicts
6744@cindex conflicts
6745@cindex shift/reduce conflicts
6746@cindex dangling @code{else}
6747@cindex @code{else}, dangling
6748
6749Suppose we are parsing a language which has if-then and if-then-else
6750statements, with a pair of rules like this:
6751
6752@example
6753@group
6754if_stmt:
6755 IF expr THEN stmt
6756 | IF expr THEN stmt ELSE stmt
6757 ;
6758@end group
6759@end example
6760
6761@noindent
6762Here we assume that @code{IF}, @code{THEN} and @code{ELSE} are
6763terminal symbols for specific keyword tokens.
6764
6765When the @code{ELSE} token is read and becomes the lookahead token, the
6766contents of the stack (assuming the input is valid) are just right for
6767reduction by the first rule. But it is also legitimate to shift the
6768@code{ELSE}, because that would lead to eventual reduction by the second
6769rule.
6770
6771This situation, where either a shift or a reduction would be valid, is
6772called a @dfn{shift/reduce conflict}. Bison is designed to resolve
6773these conflicts by choosing to shift, unless otherwise directed by
6774operator precedence declarations. To see the reason for this, let's
6775contrast it with the other alternative.
6776
6777Since the parser prefers to shift the @code{ELSE}, the result is to attach
6778the else-clause to the innermost if-statement, making these two inputs
6779equivalent:
6780
6781@example
6782if x then if y then win (); else lose;
6783
6784if x then do; if y then win (); else lose; end;
6785@end example
6786
6787But if the parser chose to reduce when possible rather than shift, the
6788result would be to attach the else-clause to the outermost if-statement,
6789making these two inputs equivalent:
6790
6791@example
6792if x then if y then win (); else lose;
6793
6794if x then do; if y then win (); end; else lose;
6795@end example
6796
6797The conflict exists because the grammar as written is ambiguous: either
6798parsing of the simple nested if-statement is legitimate. The established
6799convention is that these ambiguities are resolved by attaching the
6800else-clause to the innermost if-statement; this is what Bison accomplishes
6801by choosing to shift rather than reduce. (It would ideally be cleaner to
6802write an unambiguous grammar, but that is very hard to do in this case.)
6803This particular ambiguity was first encountered in the specifications of
6804Algol 60 and is called the ``dangling @code{else}'' ambiguity.
6805
6806To avoid warnings from Bison about predictable, legitimate shift/reduce
6807conflicts, use the @code{%expect @var{n}} declaration.
6808There will be no warning as long as the number of shift/reduce conflicts
6809is exactly @var{n}, and Bison will report an error if there is a
6810different number.
6811@xref{Expect Decl, ,Suppressing Conflict Warnings}.
6812
6813The definition of @code{if_stmt} above is solely to blame for the
6814conflict, but the conflict does not actually appear without additional
6815rules. Here is a complete Bison input file that actually manifests the
6816conflict:
6817
6818@example
6819@group
6820%token IF THEN ELSE variable
6821%%
6822@end group
6823@group
6824stmt: expr
6825 | if_stmt
6826 ;
6827@end group
6828
6829@group
6830if_stmt:
6831 IF expr THEN stmt
6832 | IF expr THEN stmt ELSE stmt
6833 ;
6834@end group
6835
6836expr: variable
6837 ;
6838@end example
6839
6840@node Precedence
6841@section Operator Precedence
6842@cindex operator precedence
6843@cindex precedence of operators
6844
6845Another situation where shift/reduce conflicts appear is in arithmetic
6846expressions. Here shifting is not always the preferred resolution; the
6847Bison declarations for operator precedence allow you to specify when to
6848shift and when to reduce.
6849
6850@menu
6851* Why Precedence:: An example showing why precedence is needed.
6852* Using Precedence:: How to specify precedence and associativity.
6853* Precedence Only:: How to specify precedence only.
6854* Precedence Examples:: How these features are used in the previous example.
6855* How Precedence:: How they work.
6856@end menu
6857
6858@node Why Precedence
6859@subsection When Precedence is Needed
6860
6861Consider the following ambiguous grammar fragment (ambiguous because the
6862input @w{@samp{1 - 2 * 3}} can be parsed in two different ways):
6863
6864@example
6865@group
6866expr: expr '-' expr
6867 | expr '*' expr
6868 | expr '<' expr
6869 | '(' expr ')'
6870 @dots{}
6871 ;
6872@end group
6873@end example
6874
6875@noindent
6876Suppose the parser has seen the tokens @samp{1}, @samp{-} and @samp{2};
6877should it reduce them via the rule for the subtraction operator? It
6878depends on the next token. Of course, if the next token is @samp{)}, we
6879must reduce; shifting is invalid because no single rule can reduce the
6880token sequence @w{@samp{- 2 )}} or anything starting with that. But if
6881the next token is @samp{*} or @samp{<}, we have a choice: either
6882shifting or reduction would allow the parse to complete, but with
6883different results.
6884
6885To decide which one Bison should do, we must consider the results. If
6886the next operator token @var{op} is shifted, then it must be reduced
6887first in order to permit another opportunity to reduce the difference.
6888The result is (in effect) @w{@samp{1 - (2 @var{op} 3)}}. On the other
6889hand, if the subtraction is reduced before shifting @var{op}, the result
6890is @w{@samp{(1 - 2) @var{op} 3}}. Clearly, then, the choice of shift or
6891reduce should depend on the relative precedence of the operators
6892@samp{-} and @var{op}: @samp{*} should be shifted first, but not
6893@samp{<}.
6894
6895@cindex associativity
6896What about input such as @w{@samp{1 - 2 - 5}}; should this be
6897@w{@samp{(1 - 2) - 5}} or should it be @w{@samp{1 - (2 - 5)}}? For most
6898operators we prefer the former, which is called @dfn{left association}.
6899The latter alternative, @dfn{right association}, is desirable for
6900assignment operators. The choice of left or right association is a
6901matter of whether the parser chooses to shift or reduce when the stack
6902contains @w{@samp{1 - 2}} and the lookahead token is @samp{-}: shifting
6903makes right-associativity.
6904
6905@node Using Precedence
6906@subsection Specifying Operator Precedence
6907@findex %left
6908@findex %nonassoc
6909@findex %precedence
6910@findex %right
6911
6912Bison allows you to specify these choices with the operator precedence
6913declarations @code{%left} and @code{%right}. Each such declaration
6914contains a list of tokens, which are operators whose precedence and
6915associativity is being declared. The @code{%left} declaration makes all
6916those operators left-associative and the @code{%right} declaration makes
6917them right-associative. A third alternative is @code{%nonassoc}, which
6918declares that it is a syntax error to find the same operator twice ``in a
6919row''.
6920The last alternative, @code{%precedence}, allows to define only
6921precedence and no associativity at all. As a result, any
6922associativity-related conflict that remains will be reported as an
6923compile-time error. The directive @code{%nonassoc} creates run-time
6924error: using the operator in a associative way is a syntax error. The
6925directive @code{%precedence} creates compile-time errors: an operator
6926@emph{can} be involved in an associativity-related conflict, contrary to
6927what expected the grammar author.
6928
6929The relative precedence of different operators is controlled by the
6930order in which they are declared. The first precedence/associativity
6931declaration in the file declares the operators whose
6932precedence is lowest, the next such declaration declares the operators
6933whose precedence is a little higher, and so on.
6934
6935@node Precedence Only
6936@subsection Specifying Precedence Only
6937@findex %precedence
6938
6939Since POSIX Yacc defines only @code{%left}, @code{%right}, and
6940@code{%nonassoc}, which all defines precedence and associativity, little
6941attention is paid to the fact that precedence cannot be defined without
6942defining associativity. Yet, sometimes, when trying to solve a
6943conflict, precedence suffices. In such a case, using @code{%left},
6944@code{%right}, or @code{%nonassoc} might hide future (associativity
6945related) conflicts that would remain hidden.
6946
6947The dangling @code{else} ambiguity (@pxref{Shift/Reduce, , Shift/Reduce
6948Conflicts}) can be solved explicitly. This shift/reduce conflicts occurs
6949in the following situation, where the period denotes the current parsing
6950state:
6951
6952@example
6953if @var{e1} then if @var{e2} then @var{s1} . else @var{s2}
6954@end example
6955
6956The conflict involves the reduction of the rule @samp{IF expr THEN
6957stmt}, which precedence is by default that of its last token
6958(@code{THEN}), and the shifting of the token @code{ELSE}. The usual
6959disambiguation (attach the @code{else} to the closest @code{if}),
6960shifting must be preferred, i.e., the precedence of @code{ELSE} must be
6961higher than that of @code{THEN}. But neither is expected to be involved
6962in an associativity related conflict, which can be specified as follows.
6963
6964@example
6965%precedence THEN
6966%precedence ELSE
6967@end example
6968
6969The unary-minus is another typical example where associativity is
6970usually over-specified, see @ref{Infix Calc, , Infix Notation
6971Calculator: @code{calc}}. The @code{%left} directive is traditionally
6972used to declare the precedence of @code{NEG}, which is more than needed
6973since it also defines its associativity. While this is harmless in the
6974traditional example, who knows how @code{NEG} might be used in future
6975evolutions of the grammar@dots{}
6976
6977@node Precedence Examples
6978@subsection Precedence Examples
6979
6980In our example, we would want the following declarations:
6981
6982@example
6983%left '<'
6984%left '-'
6985%left '*'
6986@end example
6987
6988In a more complete example, which supports other operators as well, we
6989would declare them in groups of equal precedence. For example, @code{'+'} is
6990declared with @code{'-'}:
6991
6992@example
6993%left '<' '>' '=' NE LE GE
6994%left '+' '-'
6995%left '*' '/'
6996@end example
6997
6998@noindent
6999(Here @code{NE} and so on stand for the operators for ``not equal''
7000and so on. We assume that these tokens are more than one character long
7001and therefore are represented by names, not character literals.)
7002
7003@node How Precedence
7004@subsection How Precedence Works
7005
7006The first effect of the precedence declarations is to assign precedence
7007levels to the terminal symbols declared. The second effect is to assign
7008precedence levels to certain rules: each rule gets its precedence from
7009the last terminal symbol mentioned in the components. (You can also
7010specify explicitly the precedence of a rule. @xref{Contextual
7011Precedence, ,Context-Dependent Precedence}.)
7012
7013Finally, the resolution of conflicts works by comparing the precedence
7014of the rule being considered with that of the lookahead token. If the
7015token's precedence is higher, the choice is to shift. If the rule's
7016precedence is higher, the choice is to reduce. If they have equal
7017precedence, the choice is made based on the associativity of that
7018precedence level. The verbose output file made by @samp{-v}
7019(@pxref{Invocation, ,Invoking Bison}) says how each conflict was
7020resolved.
7021
7022Not all rules and not all tokens have precedence. If either the rule or
7023the lookahead token has no precedence, then the default is to shift.
7024
7025@node Contextual Precedence
7026@section Context-Dependent Precedence
7027@cindex context-dependent precedence
7028@cindex unary operator precedence
7029@cindex precedence, context-dependent
7030@cindex precedence, unary operator
7031@findex %prec
7032
7033Often the precedence of an operator depends on the context. This sounds
7034outlandish at first, but it is really very common. For example, a minus
7035sign typically has a very high precedence as a unary operator, and a
7036somewhat lower precedence (lower than multiplication) as a binary operator.
7037
7038The Bison precedence declarations
7039can only be used once for a given token; so a token has
7040only one precedence declared in this way. For context-dependent
7041precedence, you need to use an additional mechanism: the @code{%prec}
7042modifier for rules.
7043
7044The @code{%prec} modifier declares the precedence of a particular rule by
7045specifying a terminal symbol whose precedence should be used for that rule.
7046It's not necessary for that symbol to appear otherwise in the rule. The
7047modifier's syntax is:
7048
7049@example
7050%prec @var{terminal-symbol}
7051@end example
7052
7053@noindent
7054and it is written after the components of the rule. Its effect is to
7055assign the rule the precedence of @var{terminal-symbol}, overriding
7056the precedence that would be deduced for it in the ordinary way. The
7057altered rule precedence then affects how conflicts involving that rule
7058are resolved (@pxref{Precedence, ,Operator Precedence}).
7059
7060Here is how @code{%prec} solves the problem of unary minus. First, declare
7061a precedence for a fictitious terminal symbol named @code{UMINUS}. There
7062are no tokens of this type, but the symbol serves to stand for its
7063precedence:
7064
7065@example
7066@dots{}
7067%left '+' '-'
7068%left '*'
7069%left UMINUS
7070@end example
7071
7072Now the precedence of @code{UMINUS} can be used in specific rules:
7073
7074@example
7075@group
7076exp: @dots{}
7077 | exp '-' exp
7078 @dots{}
7079 | '-' exp %prec UMINUS
7080@end group
7081@end example
7082
7083@ifset defaultprec
7084If you forget to append @code{%prec UMINUS} to the rule for unary
7085minus, Bison silently assumes that minus has its usual precedence.
7086This kind of problem can be tricky to debug, since one typically
7087discovers the mistake only by testing the code.
7088
7089The @code{%no-default-prec;} declaration makes it easier to discover
7090this kind of problem systematically. It causes rules that lack a
7091@code{%prec} modifier to have no precedence, even if the last terminal
7092symbol mentioned in their components has a declared precedence.
7093
7094If @code{%no-default-prec;} is in effect, you must specify @code{%prec}
7095for all rules that participate in precedence conflict resolution.
7096Then you will see any shift/reduce conflict until you tell Bison how
7097to resolve it, either by changing your grammar or by adding an
7098explicit precedence. This will probably add declarations to the
7099grammar, but it helps to protect against incorrect rule precedences.
7100
7101The effect of @code{%no-default-prec;} can be reversed by giving
7102@code{%default-prec;}, which is the default.
7103@end ifset
7104
7105@node Parser States
7106@section Parser States
7107@cindex finite-state machine
7108@cindex parser state
7109@cindex state (of parser)
7110
7111The function @code{yyparse} is implemented using a finite-state machine.
7112The values pushed on the parser stack are not simply token type codes; they
7113represent the entire sequence of terminal and nonterminal symbols at or
7114near the top of the stack. The current state collects all the information
7115about previous input which is relevant to deciding what to do next.
7116
7117Each time a lookahead token is read, the current parser state together
7118with the type of lookahead token are looked up in a table. This table
7119entry can say, ``Shift the lookahead token.'' In this case, it also
7120specifies the new parser state, which is pushed onto the top of the
7121parser stack. Or it can say, ``Reduce using rule number @var{n}.''
7122This means that a certain number of tokens or groupings are taken off
7123the top of the stack, and replaced by one grouping. In other words,
7124that number of states are popped from the stack, and one new state is
7125pushed.
7126
7127There is one other alternative: the table can say that the lookahead token
7128is erroneous in the current state. This causes error processing to begin
7129(@pxref{Error Recovery}).
7130
7131@node Reduce/Reduce
7132@section Reduce/Reduce Conflicts
7133@cindex reduce/reduce conflict
7134@cindex conflicts, reduce/reduce
7135
7136A reduce/reduce conflict occurs if there are two or more rules that apply
7137to the same sequence of input. This usually indicates a serious error
7138in the grammar.
7139
7140For example, here is an erroneous attempt to define a sequence
7141of zero or more @code{word} groupings.
7142
7143@example
7144sequence: /* empty */
7145 @{ printf ("empty sequence\n"); @}
7146 | maybeword
7147 | sequence word
7148 @{ printf ("added word %s\n", $2); @}
7149 ;
7150
7151maybeword: /* empty */
7152 @{ printf ("empty maybeword\n"); @}
7153 | word
7154 @{ printf ("single word %s\n", $1); @}
7155 ;
7156@end example
7157
7158@noindent
7159The error is an ambiguity: there is more than one way to parse a single
7160@code{word} into a @code{sequence}. It could be reduced to a
7161@code{maybeword} and then into a @code{sequence} via the second rule.
7162Alternatively, nothing-at-all could be reduced into a @code{sequence}
7163via the first rule, and this could be combined with the @code{word}
7164using the third rule for @code{sequence}.
7165
7166There is also more than one way to reduce nothing-at-all into a
7167@code{sequence}. This can be done directly via the first rule,
7168or indirectly via @code{maybeword} and then the second rule.
7169
7170You might think that this is a distinction without a difference, because it
7171does not change whether any particular input is valid or not. But it does
7172affect which actions are run. One parsing order runs the second rule's
7173action; the other runs the first rule's action and the third rule's action.
7174In this example, the output of the program changes.
7175
7176Bison resolves a reduce/reduce conflict by choosing to use the rule that
7177appears first in the grammar, but it is very risky to rely on this. Every
7178reduce/reduce conflict must be studied and usually eliminated. Here is the
7179proper way to define @code{sequence}:
7180
7181@example
7182sequence: /* empty */
7183 @{ printf ("empty sequence\n"); @}
7184 | sequence word
7185 @{ printf ("added word %s\n", $2); @}
7186 ;
7187@end example
7188
7189Here is another common error that yields a reduce/reduce conflict:
7190
7191@example
7192sequence: /* empty */
7193 | sequence words
7194 | sequence redirects
7195 ;
7196
7197words: /* empty */
7198 | words word
7199 ;
7200
7201redirects:/* empty */
7202 | redirects redirect
7203 ;
7204@end example
7205
7206@noindent
7207The intention here is to define a sequence which can contain either
7208@code{word} or @code{redirect} groupings. The individual definitions of
7209@code{sequence}, @code{words} and @code{redirects} are error-free, but the
7210three together make a subtle ambiguity: even an empty input can be parsed
7211in infinitely many ways!
7212
7213Consider: nothing-at-all could be a @code{words}. Or it could be two
7214@code{words} in a row, or three, or any number. It could equally well be a
7215@code{redirects}, or two, or any number. Or it could be a @code{words}
7216followed by three @code{redirects} and another @code{words}. And so on.
7217
7218Here are two ways to correct these rules. First, to make it a single level
7219of sequence:
7220
7221@example
7222sequence: /* empty */
7223 | sequence word
7224 | sequence redirect
7225 ;
7226@end example
7227
7228Second, to prevent either a @code{words} or a @code{redirects}
7229from being empty:
7230
7231@example
7232sequence: /* empty */
7233 | sequence words
7234 | sequence redirects
7235 ;
7236
7237words: word
7238 | words word
7239 ;
7240
7241redirects:redirect
7242 | redirects redirect
7243 ;
7244@end example
7245
7246@node Mystery Conflicts
7247@section Mysterious Reduce/Reduce Conflicts
7248
7249Sometimes reduce/reduce conflicts can occur that don't look warranted.
7250Here is an example:
7251
7252@example
7253@group
7254%token ID
7255
7256%%
7257def: param_spec return_spec ','
7258 ;
7259param_spec:
7260 type
7261 | name_list ':' type
7262 ;
7263@end group
7264@group
7265return_spec:
7266 type
7267 | name ':' type
7268 ;
7269@end group
7270@group
7271type: ID
7272 ;
7273@end group
7274@group
7275name: ID
7276 ;
7277name_list:
7278 name
7279 | name ',' name_list
7280 ;
7281@end group
7282@end example
7283
7284It would seem that this grammar can be parsed with only a single token
7285of lookahead: when a @code{param_spec} is being read, an @code{ID} is
7286a @code{name} if a comma or colon follows, or a @code{type} if another
7287@code{ID} follows. In other words, this grammar is LR(1).
7288
7289@cindex LR(1)
7290@cindex LALR(1)
7291However, for historical reasons, Bison cannot by default handle all
7292LR(1) grammars.
7293In this grammar, two contexts, that after an @code{ID} at the beginning
7294of a @code{param_spec} and likewise at the beginning of a
7295@code{return_spec}, are similar enough that Bison assumes they are the
7296same.
7297They appear similar because the same set of rules would be
7298active---the rule for reducing to a @code{name} and that for reducing to
7299a @code{type}. Bison is unable to determine at that stage of processing
7300that the rules would require different lookahead tokens in the two
7301contexts, so it makes a single parser state for them both. Combining
7302the two contexts causes a conflict later. In parser terminology, this
7303occurrence means that the grammar is not LALR(1).
7304
7305For many practical grammars (specifically those that fall into the
7306non-LR(1) class), the limitations of LALR(1) result in
7307difficulties beyond just mysterious reduce/reduce conflicts.
7308The best way to fix all these problems is to select a different parser
7309table generation algorithm.
7310Either IELR(1) or canonical LR(1) would suffice, but
7311the former is more efficient and easier to debug during development.
7312@xref{Decl Summary,,lr.type}, for details.
7313(Bison's IELR(1) and canonical LR(1) implementations
7314are experimental.
7315More user feedback will help to stabilize them.)
7316
7317If you instead wish to work around LALR(1)'s limitations, you
7318can often fix a mysterious conflict by identifying the two parser states
7319that are being confused, and adding something to make them look
7320distinct. In the above example, adding one rule to
7321@code{return_spec} as follows makes the problem go away:
7322
7323@example
7324@group
7325%token BOGUS
7326@dots{}
7327%%
7328@dots{}
7329return_spec:
7330 type
7331 | name ':' type
7332 /* This rule is never used. */
7333 | ID BOGUS
7334 ;
7335@end group
7336@end example
7337
7338This corrects the problem because it introduces the possibility of an
7339additional active rule in the context after the @code{ID} at the beginning of
7340@code{return_spec}. This rule is not active in the corresponding context
7341in a @code{param_spec}, so the two contexts receive distinct parser states.
7342As long as the token @code{BOGUS} is never generated by @code{yylex},
7343the added rule cannot alter the way actual input is parsed.
7344
7345In this particular example, there is another way to solve the problem:
7346rewrite the rule for @code{return_spec} to use @code{ID} directly
7347instead of via @code{name}. This also causes the two confusing
7348contexts to have different sets of active rules, because the one for
7349@code{return_spec} activates the altered rule for @code{return_spec}
7350rather than the one for @code{name}.
7351
7352@example
7353param_spec:
7354 type
7355 | name_list ':' type
7356 ;
7357return_spec:
7358 type
7359 | ID ':' type
7360 ;
7361@end example
7362
7363For a more detailed exposition of LALR(1) parsers and parser
7364generators, please see:
7365Frank DeRemer and Thomas Pennello, Efficient Computation of
7366LALR(1) Look-Ahead Sets, @cite{ACM Transactions on
7367Programming Languages and Systems}, Vol.@: 4, No.@: 4 (October 1982),
7368pp.@: 615--649 @uref{http://doi.acm.org/10.1145/69622.357187}.
7369
7370@node Generalized LR Parsing
7371@section Generalized LR (GLR) Parsing
7372@cindex GLR parsing
7373@cindex generalized LR (GLR) parsing
7374@cindex ambiguous grammars
7375@cindex nondeterministic parsing
7376
7377Bison produces @emph{deterministic} parsers that choose uniquely
7378when to reduce and which reduction to apply
7379based on a summary of the preceding input and on one extra token of lookahead.
7380As a result, normal Bison handles a proper subset of the family of
7381context-free languages.
7382Ambiguous grammars, since they have strings with more than one possible
7383sequence of reductions cannot have deterministic parsers in this sense.
7384The same is true of languages that require more than one symbol of
7385lookahead, since the parser lacks the information necessary to make a
7386decision at the point it must be made in a shift-reduce parser.
7387Finally, as previously mentioned (@pxref{Mystery Conflicts}),
7388there are languages where Bison's default choice of how to
7389summarize the input seen so far loses necessary information.
7390
7391When you use the @samp{%glr-parser} declaration in your grammar file,
7392Bison generates a parser that uses a different algorithm, called
7393Generalized LR (or GLR). A Bison GLR
7394parser uses the same basic
7395algorithm for parsing as an ordinary Bison parser, but behaves
7396differently in cases where there is a shift-reduce conflict that has not
7397been resolved by precedence rules (@pxref{Precedence}) or a
7398reduce-reduce conflict. When a GLR parser encounters such a
7399situation, it
7400effectively @emph{splits} into a several parsers, one for each possible
7401shift or reduction. These parsers then proceed as usual, consuming
7402tokens in lock-step. Some of the stacks may encounter other conflicts
7403and split further, with the result that instead of a sequence of states,
7404a Bison GLR parsing stack is what is in effect a tree of states.
7405
7406In effect, each stack represents a guess as to what the proper parse
7407is. Additional input may indicate that a guess was wrong, in which case
7408the appropriate stack silently disappears. Otherwise, the semantics
7409actions generated in each stack are saved, rather than being executed
7410immediately. When a stack disappears, its saved semantic actions never
7411get executed. When a reduction causes two stacks to become equivalent,
7412their sets of semantic actions are both saved with the state that
7413results from the reduction. We say that two stacks are equivalent
7414when they both represent the same sequence of states,
7415and each pair of corresponding states represents a
7416grammar symbol that produces the same segment of the input token
7417stream.
7418
7419Whenever the parser makes a transition from having multiple
7420states to having one, it reverts to the normal deterministic parsing
7421algorithm, after resolving and executing the saved-up actions.
7422At this transition, some of the states on the stack will have semantic
7423values that are sets (actually multisets) of possible actions. The
7424parser tries to pick one of the actions by first finding one whose rule
7425has the highest dynamic precedence, as set by the @samp{%dprec}
7426declaration. Otherwise, if the alternative actions are not ordered by
7427precedence, but there the same merging function is declared for both
7428rules by the @samp{%merge} declaration,
7429Bison resolves and evaluates both and then calls the merge function on
7430the result. Otherwise, it reports an ambiguity.
7431
7432It is possible to use a data structure for the GLR parsing tree that
7433permits the processing of any LR(1) grammar in linear time (in the
7434size of the input), any unambiguous (not necessarily
7435LR(1)) grammar in
7436quadratic worst-case time, and any general (possibly ambiguous)
7437context-free grammar in cubic worst-case time. However, Bison currently
7438uses a simpler data structure that requires time proportional to the
7439length of the input times the maximum number of stacks required for any
7440prefix of the input. Thus, really ambiguous or nondeterministic
7441grammars can require exponential time and space to process. Such badly
7442behaving examples, however, are not generally of practical interest.
7443Usually, nondeterminism in a grammar is local---the parser is ``in
7444doubt'' only for a few tokens at a time. Therefore, the current data
7445structure should generally be adequate. On LR(1) portions of a
7446grammar, in particular, it is only slightly slower than with the
7447deterministic LR(1) Bison parser.
7448
7449For a more detailed exposition of GLR parsers, please see: Elizabeth
7450Scott, Adrian Johnstone and Shamsa Sadaf Hussain, Tomita-Style
7451Generalised LR Parsers, Royal Holloway, University of
7452London, Department of Computer Science, TR-00-12,
7453@uref{http://www.cs.rhul.ac.uk/research/languages/publications/tomita_style_1.ps},
7454(2000-12-24).
7455
7456@node Memory Management
7457@section Memory Management, and How to Avoid Memory Exhaustion
7458@cindex memory exhaustion
7459@cindex memory management
7460@cindex stack overflow
7461@cindex parser stack overflow
7462@cindex overflow of parser stack
7463
7464The Bison parser stack can run out of memory if too many tokens are shifted and
7465not reduced. When this happens, the parser function @code{yyparse}
7466calls @code{yyerror} and then returns 2.
7467
7468Because Bison parsers have growing stacks, hitting the upper limit
7469usually results from using a right recursion instead of a left
7470recursion, @xref{Recursion, ,Recursive Rules}.
7471
7472@vindex YYMAXDEPTH
7473By defining the macro @code{YYMAXDEPTH}, you can control how deep the
7474parser stack can become before memory is exhausted. Define the
7475macro with a value that is an integer. This value is the maximum number
7476of tokens that can be shifted (and not reduced) before overflow.
7477
7478The stack space allowed is not necessarily allocated. If you specify a
7479large value for @code{YYMAXDEPTH}, the parser normally allocates a small
7480stack at first, and then makes it bigger by stages as needed. This
7481increasing allocation happens automatically and silently. Therefore,
7482you do not need to make @code{YYMAXDEPTH} painfully small merely to save
7483space for ordinary inputs that do not need much stack.
7484
7485However, do not allow @code{YYMAXDEPTH} to be a value so large that
7486arithmetic overflow could occur when calculating the size of the stack
7487space. Also, do not allow @code{YYMAXDEPTH} to be less than
7488@code{YYINITDEPTH}.
7489
7490@cindex default stack limit
7491The default value of @code{YYMAXDEPTH}, if you do not define it, is
749210000.
7493
7494@vindex YYINITDEPTH
7495You can control how much stack is allocated initially by defining the
7496macro @code{YYINITDEPTH} to a positive integer. For the deterministic
7497parser in C, this value must be a compile-time constant
7498unless you are assuming C99 or some other target language or compiler
7499that allows variable-length arrays. The default is 200.
7500
7501Do not allow @code{YYINITDEPTH} to be greater than @code{YYMAXDEPTH}.
7502
7503You can generate a deterministic parser containing C++ user code from
7504the default (C) skeleton, as well as from the C++ skeleton
7505(@pxref{C++ Parsers}). However, if you do use the default skeleton
7506and want to allow the parsing stack to grow,
7507be careful not to use semantic types or location types that require
7508non-trivial copy constructors.
7509The C skeleton bypasses these constructors when copying data to
7510new, larger stacks.
7511
7512@node Error Recovery
7513@chapter Error Recovery
7514@cindex error recovery
7515@cindex recovery from errors
7516
7517It is not usually acceptable to have a program terminate on a syntax
7518error. For example, a compiler should recover sufficiently to parse the
7519rest of the input file and check it for errors; a calculator should accept
7520another expression.
7521
7522In a simple interactive command parser where each input is one line, it may
7523be sufficient to allow @code{yyparse} to return 1 on error and have the
7524caller ignore the rest of the input line when that happens (and then call
7525@code{yyparse} again). But this is inadequate for a compiler, because it
7526forgets all the syntactic context leading up to the error. A syntax error
7527deep within a function in the compiler input should not cause the compiler
7528to treat the following line like the beginning of a source file.
7529
7530@findex error
7531You can define how to recover from a syntax error by writing rules to
7532recognize the special token @code{error}. This is a terminal symbol that
7533is always defined (you need not declare it) and reserved for error
7534handling. The Bison parser generates an @code{error} token whenever a
7535syntax error happens; if you have provided a rule to recognize this token
7536in the current context, the parse can continue.
7537
7538For example:
7539
7540@example
7541stmnts: /* empty string */
7542 | stmnts '\n'
7543 | stmnts exp '\n'
7544 | stmnts error '\n'
7545@end example
7546
7547The fourth rule in this example says that an error followed by a newline
7548makes a valid addition to any @code{stmnts}.
7549
7550What happens if a syntax error occurs in the middle of an @code{exp}? The
7551error recovery rule, interpreted strictly, applies to the precise sequence
7552of a @code{stmnts}, an @code{error} and a newline. If an error occurs in
7553the middle of an @code{exp}, there will probably be some additional tokens
7554and subexpressions on the stack after the last @code{stmnts}, and there
7555will be tokens to read before the next newline. So the rule is not
7556applicable in the ordinary way.
7557
7558But Bison can force the situation to fit the rule, by discarding part of
7559the semantic context and part of the input. First it discards states
7560and objects from the stack until it gets back to a state in which the
7561@code{error} token is acceptable. (This means that the subexpressions
7562already parsed are discarded, back to the last complete @code{stmnts}.)
7563At this point the @code{error} token can be shifted. Then, if the old
7564lookahead token is not acceptable to be shifted next, the parser reads
7565tokens and discards them until it finds a token which is acceptable. In
7566this example, Bison reads and discards input until the next newline so
7567that the fourth rule can apply. Note that discarded symbols are
7568possible sources of memory leaks, see @ref{Destructor Decl, , Freeing
7569Discarded Symbols}, for a means to reclaim this memory.
7570
7571The choice of error rules in the grammar is a choice of strategies for
7572error recovery. A simple and useful strategy is simply to skip the rest of
7573the current input line or current statement if an error is detected:
7574
7575@example
7576stmnt: error ';' /* On error, skip until ';' is read. */
7577@end example
7578
7579It is also useful to recover to the matching close-delimiter of an
7580opening-delimiter that has already been parsed. Otherwise the
7581close-delimiter will probably appear to be unmatched, and generate another,
7582spurious error message:
7583
7584@example
7585primary: '(' expr ')'
7586 | '(' error ')'
7587 @dots{}
7588 ;
7589@end example
7590
7591Error recovery strategies are necessarily guesses. When they guess wrong,
7592one syntax error often leads to another. In the above example, the error
7593recovery rule guesses that an error is due to bad input within one
7594@code{stmnt}. Suppose that instead a spurious semicolon is inserted in the
7595middle of a valid @code{stmnt}. After the error recovery rule recovers
7596from the first error, another syntax error will be found straightaway,
7597since the text following the spurious semicolon is also an invalid
7598@code{stmnt}.
7599
7600To prevent an outpouring of error messages, the parser will output no error
7601message for another syntax error that happens shortly after the first; only
7602after three consecutive input tokens have been successfully shifted will
7603error messages resume.
7604
7605Note that rules which accept the @code{error} token may have actions, just
7606as any other rules can.
7607
7608@findex yyerrok
7609You can make error messages resume immediately by using the macro
7610@code{yyerrok} in an action. If you do this in the error rule's action, no
7611error messages will be suppressed. This macro requires no arguments;
7612@samp{yyerrok;} is a valid C statement.
7613
7614@findex yyclearin
7615The previous lookahead token is reanalyzed immediately after an error. If
7616this is unacceptable, then the macro @code{yyclearin} may be used to clear
7617this token. Write the statement @samp{yyclearin;} in the error rule's
7618action.
7619@xref{Action Features, ,Special Features for Use in Actions}.
7620
7621For example, suppose that on a syntax error, an error handling routine is
7622called that advances the input stream to some point where parsing should
7623once again commence. The next symbol returned by the lexical scanner is
7624probably correct. The previous lookahead token ought to be discarded
7625with @samp{yyclearin;}.
7626
7627@vindex YYRECOVERING
7628The expression @code{YYRECOVERING ()} yields 1 when the parser
7629is recovering from a syntax error, and 0 otherwise.
7630Syntax error diagnostics are suppressed while recovering from a syntax
7631error.
7632
7633@node Context Dependency
7634@chapter Handling Context Dependencies
7635
7636The Bison paradigm is to parse tokens first, then group them into larger
7637syntactic units. In many languages, the meaning of a token is affected by
7638its context. Although this violates the Bison paradigm, certain techniques
7639(known as @dfn{kludges}) may enable you to write Bison parsers for such
7640languages.
7641
7642@menu
7643* Semantic Tokens:: Token parsing can depend on the semantic context.
7644* Lexical Tie-ins:: Token parsing can depend on the syntactic context.
7645* Tie-in Recovery:: Lexical tie-ins have implications for how
7646 error recovery rules must be written.
7647@end menu
7648
7649(Actually, ``kludge'' means any technique that gets its job done but is
7650neither clean nor robust.)
7651
7652@node Semantic Tokens
7653@section Semantic Info in Token Types
7654
7655The C language has a context dependency: the way an identifier is used
7656depends on what its current meaning is. For example, consider this:
7657
7658@example
7659foo (x);
7660@end example
7661
7662This looks like a function call statement, but if @code{foo} is a typedef
7663name, then this is actually a declaration of @code{x}. How can a Bison
7664parser for C decide how to parse this input?
7665
7666The method used in GNU C is to have two different token types,
7667@code{IDENTIFIER} and @code{TYPENAME}. When @code{yylex} finds an
7668identifier, it looks up the current declaration of the identifier in order
7669to decide which token type to return: @code{TYPENAME} if the identifier is
7670declared as a typedef, @code{IDENTIFIER} otherwise.
7671
7672The grammar rules can then express the context dependency by the choice of
7673token type to recognize. @code{IDENTIFIER} is accepted as an expression,
7674but @code{TYPENAME} is not. @code{TYPENAME} can start a declaration, but
7675@code{IDENTIFIER} cannot. In contexts where the meaning of the identifier
7676is @emph{not} significant, such as in declarations that can shadow a
7677typedef name, either @code{TYPENAME} or @code{IDENTIFIER} is
7678accepted---there is one rule for each of the two token types.
7679
7680This technique is simple to use if the decision of which kinds of
7681identifiers to allow is made at a place close to where the identifier is
7682parsed. But in C this is not always so: C allows a declaration to
7683redeclare a typedef name provided an explicit type has been specified
7684earlier:
7685
7686@example
7687typedef int foo, bar;
7688int baz (void)
7689@{
7690 static bar (bar); /* @r{redeclare @code{bar} as static variable} */
7691 extern foo foo (foo); /* @r{redeclare @code{foo} as function} */
7692 return foo (bar);
7693@}
7694@end example
7695
7696Unfortunately, the name being declared is separated from the declaration
7697construct itself by a complicated syntactic structure---the ``declarator''.
7698
7699As a result, part of the Bison parser for C needs to be duplicated, with
7700all the nonterminal names changed: once for parsing a declaration in
7701which a typedef name can be redefined, and once for parsing a
7702declaration in which that can't be done. Here is a part of the
7703duplication, with actions omitted for brevity:
7704
7705@example
7706initdcl:
7707 declarator maybeasm '='
7708 init
7709 | declarator maybeasm
7710 ;
7711
7712notype_initdcl:
7713 notype_declarator maybeasm '='
7714 init
7715 | notype_declarator maybeasm
7716 ;
7717@end example
7718
7719@noindent
7720Here @code{initdcl} can redeclare a typedef name, but @code{notype_initdcl}
7721cannot. The distinction between @code{declarator} and
7722@code{notype_declarator} is the same sort of thing.
7723
7724There is some similarity between this technique and a lexical tie-in
7725(described next), in that information which alters the lexical analysis is
7726changed during parsing by other parts of the program. The difference is
7727here the information is global, and is used for other purposes in the
7728program. A true lexical tie-in has a special-purpose flag controlled by
7729the syntactic context.
7730
7731@node Lexical Tie-ins
7732@section Lexical Tie-ins
7733@cindex lexical tie-in
7734
7735One way to handle context-dependency is the @dfn{lexical tie-in}: a flag
7736which is set by Bison actions, whose purpose is to alter the way tokens are
7737parsed.
7738
7739For example, suppose we have a language vaguely like C, but with a special
7740construct @samp{hex (@var{hex-expr})}. After the keyword @code{hex} comes
7741an expression in parentheses in which all integers are hexadecimal. In
7742particular, the token @samp{a1b} must be treated as an integer rather than
7743as an identifier if it appears in that context. Here is how you can do it:
7744
7745@example
7746@group
7747%@{
7748 int hexflag;
7749 int yylex (void);
7750 void yyerror (char const *);
7751%@}
7752%%
7753@dots{}
7754@end group
7755@group
7756expr: IDENTIFIER
7757 | constant
7758 | HEX '('
7759 @{ hexflag = 1; @}
7760 expr ')'
7761 @{ hexflag = 0;
7762 $$ = $4; @}
7763 | expr '+' expr
7764 @{ $$ = make_sum ($1, $3); @}
7765 @dots{}
7766 ;
7767@end group
7768
7769@group
7770constant:
7771 INTEGER
7772 | STRING
7773 ;
7774@end group
7775@end example
7776
7777@noindent
7778Here we assume that @code{yylex} looks at the value of @code{hexflag}; when
7779it is nonzero, all integers are parsed in hexadecimal, and tokens starting
7780with letters are parsed as integers if possible.
7781
7782The declaration of @code{hexflag} shown in the prologue of the parser file
7783is needed to make it accessible to the actions (@pxref{Prologue, ,The Prologue}).
7784You must also write the code in @code{yylex} to obey the flag.
7785
7786@node Tie-in Recovery
7787@section Lexical Tie-ins and Error Recovery
7788
7789Lexical tie-ins make strict demands on any error recovery rules you have.
7790@xref{Error Recovery}.
7791
7792The reason for this is that the purpose of an error recovery rule is to
7793abort the parsing of one construct and resume in some larger construct.
7794For example, in C-like languages, a typical error recovery rule is to skip
7795tokens until the next semicolon, and then start a new statement, like this:
7796
7797@example
7798stmt: expr ';'
7799 | IF '(' expr ')' stmt @{ @dots{} @}
7800 @dots{}
7801 error ';'
7802 @{ hexflag = 0; @}
7803 ;
7804@end example
7805
7806If there is a syntax error in the middle of a @samp{hex (@var{expr})}
7807construct, this error rule will apply, and then the action for the
7808completed @samp{hex (@var{expr})} will never run. So @code{hexflag} would
7809remain set for the entire rest of the input, or until the next @code{hex}
7810keyword, causing identifiers to be misinterpreted as integers.
7811
7812To avoid this problem the error recovery rule itself clears @code{hexflag}.
7813
7814There may also be an error recovery rule that works within expressions.
7815For example, there could be a rule which applies within parentheses
7816and skips to the close-parenthesis:
7817
7818@example
7819@group
7820expr: @dots{}
7821 | '(' expr ')'
7822 @{ $$ = $2; @}
7823 | '(' error ')'
7824 @dots{}
7825@end group
7826@end example
7827
7828If this rule acts within the @code{hex} construct, it is not going to abort
7829that construct (since it applies to an inner level of parentheses within
7830the construct). Therefore, it should not clear the flag: the rest of
7831the @code{hex} construct should be parsed with the flag still in effect.
7832
7833What if there is an error recovery rule which might abort out of the
7834@code{hex} construct or might not, depending on circumstances? There is no
7835way you can write the action to determine whether a @code{hex} construct is
7836being aborted or not. So if you are using a lexical tie-in, you had better
7837make sure your error recovery rules are not of this kind. Each rule must
7838be such that you can be sure that it always will, or always won't, have to
7839clear the flag.
7840
7841@c ================================================== Debugging Your Parser
7842
7843@node Debugging
7844@chapter Debugging Your Parser
7845
7846Developing a parser can be a challenge, especially if you don't
7847understand the algorithm (@pxref{Algorithm, ,The Bison Parser
7848Algorithm}). Even so, sometimes a detailed description of the automaton
7849can help (@pxref{Understanding, , Understanding Your Parser}), or
7850tracing the execution of the parser can give some insight on why it
7851behaves improperly (@pxref{Tracing, , Tracing Your Parser}).
7852
7853@menu
7854* Understanding:: Understanding the structure of your parser.
7855* Tracing:: Tracing the execution of your parser.
7856@end menu
7857
7858@node Understanding
7859@section Understanding Your Parser
7860
7861As documented elsewhere (@pxref{Algorithm, ,The Bison Parser Algorithm})
7862Bison parsers are @dfn{shift/reduce automata}. In some cases (much more
7863frequent than one would hope), looking at this automaton is required to
7864tune or simply fix a parser. Bison provides two different
7865representation of it, either textually or graphically (as a DOT file).
7866
7867The textual file is generated when the options @option{--report} or
7868@option{--verbose} are specified, see @xref{Invocation, , Invoking
7869Bison}. Its name is made by removing @samp{.tab.c} or @samp{.c} from
7870the parser output file name, and adding @samp{.output} instead.
7871Therefore, if the input file is @file{foo.y}, then the parser file is
7872called @file{foo.tab.c} by default. As a consequence, the verbose
7873output file is called @file{foo.output}.
7874
7875The following grammar file, @file{calc.y}, will be used in the sequel:
7876
7877@example
7878%token NUM STR
7879%left '+' '-'
7880%left '*'
7881%%
7882exp: exp '+' exp
7883 | exp '-' exp
7884 | exp '*' exp
7885 | exp '/' exp
7886 | NUM
7887 ;
7888useless: STR;
7889%%
7890@end example
7891
7892@command{bison} reports:
7893
7894@example
7895calc.y: warning: 1 nonterminal useless in grammar
7896calc.y: warning: 1 rule useless in grammar
7897calc.y:11.1-7: warning: nonterminal useless in grammar: useless
7898calc.y:11.10-12: warning: rule useless in grammar: useless: STR
7899calc.y: conflicts: 7 shift/reduce
7900@end example
7901
7902When given @option{--report=state}, in addition to @file{calc.tab.c}, it
7903creates a file @file{calc.output} with contents detailed below. The
7904order of the output and the exact presentation might vary, but the
7905interpretation is the same.
7906
7907The first section includes details on conflicts that were solved thanks
7908to precedence and/or associativity:
7909
7910@example
7911Conflict in state 8 between rule 2 and token '+' resolved as reduce.
7912Conflict in state 8 between rule 2 and token '-' resolved as reduce.
7913Conflict in state 8 between rule 2 and token '*' resolved as shift.
7914@exdent @dots{}
7915@end example
7916
7917@noindent
7918The next section lists states that still have conflicts.
7919
7920@example
7921State 8 conflicts: 1 shift/reduce
7922State 9 conflicts: 1 shift/reduce
7923State 10 conflicts: 1 shift/reduce
7924State 11 conflicts: 4 shift/reduce
7925@end example
7926
7927@noindent
7928@cindex token, useless
7929@cindex useless token
7930@cindex nonterminal, useless
7931@cindex useless nonterminal
7932@cindex rule, useless
7933@cindex useless rule
7934The next section reports useless tokens, nonterminal and rules. Useless
7935nonterminals and rules are removed in order to produce a smaller parser,
7936but useless tokens are preserved, since they might be used by the
7937scanner (note the difference between ``useless'' and ``unused''
7938below):
7939
7940@example
7941Nonterminals useless in grammar:
7942 useless
7943
7944Terminals unused in grammar:
7945 STR
7946
7947Rules useless in grammar:
7948#6 useless: STR;
7949@end example
7950
7951@noindent
7952The next section reproduces the exact grammar that Bison used:
7953
7954@example
7955Grammar
7956
7957 Number, Line, Rule
7958 0 5 $accept -> exp $end
7959 1 5 exp -> exp '+' exp
7960 2 6 exp -> exp '-' exp
7961 3 7 exp -> exp '*' exp
7962 4 8 exp -> exp '/' exp
7963 5 9 exp -> NUM
7964@end example
7965
7966@noindent
7967and reports the uses of the symbols:
7968
7969@example
7970Terminals, with rules where they appear
7971
7972$end (0) 0
7973'*' (42) 3
7974'+' (43) 1
7975'-' (45) 2
7976'/' (47) 4
7977error (256)
7978NUM (258) 5
7979
7980Nonterminals, with rules where they appear
7981
7982$accept (8)
7983 on left: 0
7984exp (9)
7985 on left: 1 2 3 4 5, on right: 0 1 2 3 4
7986@end example
7987
7988@noindent
7989@cindex item
7990@cindex pointed rule
7991@cindex rule, pointed
7992Bison then proceeds onto the automaton itself, describing each state
7993with it set of @dfn{items}, also known as @dfn{pointed rules}. Each
7994item is a production rule together with a point (marked by @samp{.})
7995that the input cursor.
7996
7997@example
7998state 0
7999
8000 $accept -> . exp $ (rule 0)
8001
8002 NUM shift, and go to state 1
8003
8004 exp go to state 2
8005@end example
8006
8007This reads as follows: ``state 0 corresponds to being at the very
8008beginning of the parsing, in the initial rule, right before the start
8009symbol (here, @code{exp}). When the parser returns to this state right
8010after having reduced a rule that produced an @code{exp}, the control
8011flow jumps to state 2. If there is no such transition on a nonterminal
8012symbol, and the lookahead is a @code{NUM}, then this token is shifted on
8013the parse stack, and the control flow jumps to state 1. Any other
8014lookahead triggers a syntax error.''
8015
8016@cindex core, item set
8017@cindex item set core
8018@cindex kernel, item set
8019@cindex item set core
8020Even though the only active rule in state 0 seems to be rule 0, the
8021report lists @code{NUM} as a lookahead token because @code{NUM} can be
8022at the beginning of any rule deriving an @code{exp}. By default Bison
8023reports the so-called @dfn{core} or @dfn{kernel} of the item set, but if
8024you want to see more detail you can invoke @command{bison} with
8025@option{--report=itemset} to list all the items, include those that can
8026be derived:
8027
8028@example
8029state 0
8030
8031 $accept -> . exp $ (rule 0)
8032 exp -> . exp '+' exp (rule 1)
8033 exp -> . exp '-' exp (rule 2)
8034 exp -> . exp '*' exp (rule 3)
8035 exp -> . exp '/' exp (rule 4)
8036 exp -> . NUM (rule 5)
8037
8038 NUM shift, and go to state 1
8039
8040 exp go to state 2
8041@end example
8042
8043@noindent
8044In the state 1...
8045
8046@example
8047state 1
8048
8049 exp -> NUM . (rule 5)
8050
8051 $default reduce using rule 5 (exp)
8052@end example
8053
8054@noindent
8055the rule 5, @samp{exp: NUM;}, is completed. Whatever the lookahead token
8056(@samp{$default}), the parser will reduce it. If it was coming from
8057state 0, then, after this reduction it will return to state 0, and will
8058jump to state 2 (@samp{exp: go to state 2}).
8059
8060@example
8061state 2
8062
8063 $accept -> exp . $ (rule 0)
8064 exp -> exp . '+' exp (rule 1)
8065 exp -> exp . '-' exp (rule 2)
8066 exp -> exp . '*' exp (rule 3)
8067 exp -> exp . '/' exp (rule 4)
8068
8069 $ shift, and go to state 3
8070 '+' shift, and go to state 4
8071 '-' shift, and go to state 5
8072 '*' shift, and go to state 6
8073 '/' shift, and go to state 7
8074@end example
8075
8076@noindent
8077In state 2, the automaton can only shift a symbol. For instance,
8078because of the item @samp{exp -> exp . '+' exp}, if the lookahead if
8079@samp{+}, it will be shifted on the parse stack, and the automaton
8080control will jump to state 4, corresponding to the item @samp{exp -> exp
8081'+' . exp}. Since there is no default action, any other token than
8082those listed above will trigger a syntax error.
8083
8084@cindex accepting state
8085The state 3 is named the @dfn{final state}, or the @dfn{accepting
8086state}:
8087
8088@example
8089state 3
8090
8091 $accept -> exp $ . (rule 0)
8092
8093 $default accept
8094@end example
8095
8096@noindent
8097the initial rule is completed (the start symbol and the end
8098of input were read), the parsing exits successfully.
8099
8100The interpretation of states 4 to 7 is straightforward, and is left to
8101the reader.
8102
8103@example
8104state 4
8105
8106 exp -> exp '+' . exp (rule 1)
8107
8108 NUM shift, and go to state 1
8109
8110 exp go to state 8
8111
8112state 5
8113
8114 exp -> exp '-' . exp (rule 2)
8115
8116 NUM shift, and go to state 1
8117
8118 exp go to state 9
8119
8120state 6
8121
8122 exp -> exp '*' . exp (rule 3)
8123
8124 NUM shift, and go to state 1
8125
8126 exp go to state 10
8127
8128state 7
8129
8130 exp -> exp '/' . exp (rule 4)
8131
8132 NUM shift, and go to state 1
8133
8134 exp go to state 11
8135@end example
8136
8137As was announced in beginning of the report, @samp{State 8 conflicts:
81381 shift/reduce}:
8139
8140@example
8141state 8
8142
8143 exp -> exp . '+' exp (rule 1)
8144 exp -> exp '+' exp . (rule 1)
8145 exp -> exp . '-' exp (rule 2)
8146 exp -> exp . '*' exp (rule 3)
8147 exp -> exp . '/' exp (rule 4)
8148
8149 '*' shift, and go to state 6
8150 '/' shift, and go to state 7
8151
8152 '/' [reduce using rule 1 (exp)]
8153 $default reduce using rule 1 (exp)
8154@end example
8155
8156Indeed, there are two actions associated to the lookahead @samp{/}:
8157either shifting (and going to state 7), or reducing rule 1. The
8158conflict means that either the grammar is ambiguous, or the parser lacks
8159information to make the right decision. Indeed the grammar is
8160ambiguous, as, since we did not specify the precedence of @samp{/}, the
8161sentence @samp{NUM + NUM / NUM} can be parsed as @samp{NUM + (NUM /
8162NUM)}, which corresponds to shifting @samp{/}, or as @samp{(NUM + NUM) /
8163NUM}, which corresponds to reducing rule 1.
8164
8165Because in deterministic parsing a single decision can be made, Bison
8166arbitrarily chose to disable the reduction, see @ref{Shift/Reduce, ,
8167Shift/Reduce Conflicts}. Discarded actions are reported in between
8168square brackets.
8169
8170Note that all the previous states had a single possible action: either
8171shifting the next token and going to the corresponding state, or
8172reducing a single rule. In the other cases, i.e., when shifting
8173@emph{and} reducing is possible or when @emph{several} reductions are
8174possible, the lookahead is required to select the action. State 8 is
8175one such state: if the lookahead is @samp{*} or @samp{/} then the action
8176is shifting, otherwise the action is reducing rule 1. In other words,
8177the first two items, corresponding to rule 1, are not eligible when the
8178lookahead token is @samp{*}, since we specified that @samp{*} has higher
8179precedence than @samp{+}. More generally, some items are eligible only
8180with some set of possible lookahead tokens. When run with
8181@option{--report=lookahead}, Bison specifies these lookahead tokens:
8182
8183@example
8184state 8
8185
8186 exp -> exp . '+' exp (rule 1)
8187 exp -> exp '+' exp . [$, '+', '-', '/'] (rule 1)
8188 exp -> exp . '-' exp (rule 2)
8189 exp -> exp . '*' exp (rule 3)
8190 exp -> exp . '/' exp (rule 4)
8191
8192 '*' shift, and go to state 6
8193 '/' shift, and go to state 7
8194
8195 '/' [reduce using rule 1 (exp)]
8196 $default reduce using rule 1 (exp)
8197@end example
8198
8199The remaining states are similar:
8200
8201@example
8202state 9
8203
8204 exp -> exp . '+' exp (rule 1)
8205 exp -> exp . '-' exp (rule 2)
8206 exp -> exp '-' exp . (rule 2)
8207 exp -> exp . '*' exp (rule 3)
8208 exp -> exp . '/' exp (rule 4)
8209
8210 '*' shift, and go to state 6
8211 '/' shift, and go to state 7
8212
8213 '/' [reduce using rule 2 (exp)]
8214 $default reduce using rule 2 (exp)
8215
8216state 10
8217
8218 exp -> exp . '+' exp (rule 1)
8219 exp -> exp . '-' exp (rule 2)
8220 exp -> exp . '*' exp (rule 3)
8221 exp -> exp '*' exp . (rule 3)
8222 exp -> exp . '/' exp (rule 4)
8223
8224 '/' shift, and go to state 7
8225
8226 '/' [reduce using rule 3 (exp)]
8227 $default reduce using rule 3 (exp)
8228
8229state 11
8230
8231 exp -> exp . '+' exp (rule 1)
8232 exp -> exp . '-' exp (rule 2)
8233 exp -> exp . '*' exp (rule 3)
8234 exp -> exp . '/' exp (rule 4)
8235 exp -> exp '/' exp . (rule 4)
8236
8237 '+' shift, and go to state 4
8238 '-' shift, and go to state 5
8239 '*' shift, and go to state 6
8240 '/' shift, and go to state 7
8241
8242 '+' [reduce using rule 4 (exp)]
8243 '-' [reduce using rule 4 (exp)]
8244 '*' [reduce using rule 4 (exp)]
8245 '/' [reduce using rule 4 (exp)]
8246 $default reduce using rule 4 (exp)
8247@end example
8248
8249@noindent
8250Observe that state 11 contains conflicts not only due to the lack of
8251precedence of @samp{/} with respect to @samp{+}, @samp{-}, and
8252@samp{*}, but also because the
8253associativity of @samp{/} is not specified.
8254
8255
8256@node Tracing
8257@section Tracing Your Parser
8258@findex yydebug
8259@cindex debugging
8260@cindex tracing the parser
8261
8262If a Bison grammar compiles properly but doesn't do what you want when it
8263runs, the @code{yydebug} parser-trace feature can help you figure out why.
8264
8265There are several means to enable compilation of trace facilities:
8266
8267@table @asis
8268@item the macro @code{YYDEBUG}
8269@findex YYDEBUG
8270Define the macro @code{YYDEBUG} to a nonzero value when you compile the
8271parser. This is compliant with POSIX Yacc. You could use
8272@samp{-DYYDEBUG=1} as a compiler option or you could put @samp{#define
8273YYDEBUG 1} in the prologue of the grammar file (@pxref{Prologue, , The
8274Prologue}).
8275
8276@item the option @option{-t}, @option{--debug}
8277Use the @samp{-t} option when you run Bison (@pxref{Invocation,
8278,Invoking Bison}). This is POSIX compliant too.
8279
8280@item the directive @samp{%debug}
8281@findex %debug
8282Add the @code{%debug} directive (@pxref{Decl Summary, ,Bison Declaration
8283Summary}). This Bison extension is maintained for backward
8284compatibility with previous versions of Bison.
8285
8286@item the variable @samp{parse.trace}
8287@findex %define parse.trace
8288Add the @samp{%define parse.trace} directive (@pxref{Decl Summary,
8289,Bison Declaration Summary}), or pass the @option{-Dparse.trace} option
8290(@pxref{Bison Options}). This is a Bison extension, which is especially
8291useful for languages that don't use a preprocessor. Unless
8292POSIX and Yacc portability matter to you, this is the
8293preferred solution.
8294@end table
8295
8296We suggest that you always enable the trace option so that debugging is
8297always possible.
8298
8299The trace facility outputs messages with macro calls of the form
8300@code{YYFPRINTF (stderr, @var{format}, @var{args})} where
8301@var{format} and @var{args} are the usual @code{printf} format and variadic
8302arguments. If you define @code{YYDEBUG} to a nonzero value but do not
8303define @code{YYFPRINTF}, @code{<stdio.h>} is automatically included
8304and @code{YYFPRINTF} is defined to @code{fprintf}.
8305
8306Once you have compiled the program with trace facilities, the way to
8307request a trace is to store a nonzero value in the variable @code{yydebug}.
8308You can do this by making the C code do it (in @code{main}, perhaps), or
8309you can alter the value with a C debugger.
8310
8311Each step taken by the parser when @code{yydebug} is nonzero produces a
8312line or two of trace information, written on @code{stderr}. The trace
8313messages tell you these things:
8314
8315@itemize @bullet
8316@item
8317Each time the parser calls @code{yylex}, what kind of token was read.
8318
8319@item
8320Each time a token is shifted, the depth and complete contents of the
8321state stack (@pxref{Parser States}).
8322
8323@item
8324Each time a rule is reduced, which rule it is, and the complete contents
8325of the state stack afterward.
8326@end itemize
8327
8328To make sense of this information, it helps to refer to the listing file
8329produced by the Bison @samp{-v} option (@pxref{Invocation, ,Invoking
8330Bison}). This file shows the meaning of each state in terms of
8331positions in various rules, and also what each state will do with each
8332possible input token. As you read the successive trace messages, you
8333can see that the parser is functioning according to its specification in
8334the listing file. Eventually you will arrive at the place where
8335something undesirable happens, and you will see which parts of the
8336grammar are to blame.
8337
8338The parser file is a C program and you can use C debuggers on it, but it's
8339not easy to interpret what it is doing. The parser function is a
8340finite-state machine interpreter, and aside from the actions it executes
8341the same code over and over. Only the values of variables show where in
8342the grammar it is working.
8343
8344@findex YYPRINT
8345The debugging information normally gives the token type of each token
8346read, but not its semantic value. You can optionally define a macro
8347named @code{YYPRINT} to provide a way to print the value. If you define
8348@code{YYPRINT}, it should take three arguments. The parser will pass a
8349standard I/O stream, the numeric code for the token type, and the token
8350value (from @code{yylval}).
8351
8352Here is an example of @code{YYPRINT} suitable for the multi-function
8353calculator (@pxref{Mfcalc Declarations, ,Declarations for @code{mfcalc}}):
8354
8355@smallexample
8356%@{
8357 static void print_token_value (FILE *, int, YYSTYPE);
8358 #define YYPRINT(file, type, value) print_token_value (file, type, value)
8359%@}
8360
8361@dots{} %% @dots{} %% @dots{}
8362
8363static void
8364print_token_value (FILE *file, int type, YYSTYPE value)
8365@{
8366 if (type == VAR)
8367 fprintf (file, "%s", value.tptr->name);
8368 else if (type == NUM)
8369 fprintf (file, "%d", value.val);
8370@}
8371@end smallexample
8372
8373@c ================================================= Invoking Bison
8374
8375@node Invocation
8376@chapter Invoking Bison
8377@cindex invoking Bison
8378@cindex Bison invocation
8379@cindex options for invoking Bison
8380
8381The usual way to invoke Bison is as follows:
8382
8383@example
8384bison @var{infile}
8385@end example
8386
8387Here @var{infile} is the grammar file name, which usually ends in
8388@samp{.y}. The parser file's name is made by replacing the @samp{.y}
8389with @samp{.tab.c} and removing any leading directory. Thus, the
8390@samp{bison foo.y} file name yields
8391@file{foo.tab.c}, and the @samp{bison hack/foo.y} file name yields
8392@file{foo.tab.c}. It's also possible, in case you are writing
8393C++ code instead of C in your grammar file, to name it @file{foo.ypp}
8394or @file{foo.y++}. Then, the output files will take an extension like
8395the given one as input (respectively @file{foo.tab.cpp} and
8396@file{foo.tab.c++}).
8397This feature takes effect with all options that manipulate file names like
8398@samp{-o} or @samp{-d}.
8399
8400For example :
8401
8402@example
8403bison -d @var{infile.yxx}
8404@end example
8405@noindent
8406will produce @file{infile.tab.cxx} and @file{infile.tab.hxx}, and
8407
8408@example
8409bison -d -o @var{output.c++} @var{infile.y}
8410@end example
8411@noindent
8412will produce @file{output.c++} and @file{outfile.h++}.
8413
8414For compatibility with POSIX, the standard Bison
8415distribution also contains a shell script called @command{yacc} that
8416invokes Bison with the @option{-y} option.
8417
8418@menu
8419* Bison Options:: All the options described in detail,
8420 in alphabetical order by short options.
8421* Option Cross Key:: Alphabetical list of long options.
8422* Yacc Library:: Yacc-compatible @code{yylex} and @code{main}.
8423@end menu
8424
8425@node Bison Options
8426@section Bison Options
8427
8428Bison supports both traditional single-letter options and mnemonic long
8429option names. Long option names are indicated with @samp{--} instead of
8430@samp{-}. Abbreviations for option names are allowed as long as they
8431are unique. When a long option takes an argument, like
8432@samp{--file-prefix}, connect the option name and the argument with
8433@samp{=}.
8434
8435Here is a list of options that can be used with Bison, alphabetized by
8436short option. It is followed by a cross key alphabetized by long
8437option.
8438
8439@c Please, keep this ordered as in `bison --help'.
8440@noindent
8441Operations modes:
8442@table @option
8443@item -h
8444@itemx --help
8445Print a summary of the command-line options to Bison and exit.
8446
8447@item -V
8448@itemx --version
8449Print the version number of Bison and exit.
8450
8451@item --print-localedir
8452Print the name of the directory containing locale-dependent data.
8453
8454@item --print-datadir
8455Print the name of the directory containing skeletons and XSLT.
8456
8457@item -y
8458@itemx --yacc
8459Act more like the traditional Yacc command. This can cause
8460different diagnostics to be generated, and may change behavior in
8461other minor ways. Most importantly, imitate Yacc's output
8462file name conventions, so that the parser output file is called
8463@file{y.tab.c}, and the other outputs are called @file{y.output} and
8464@file{y.tab.h}.
8465Also, if generating a deterministic parser in C, generate @code{#define}
8466statements in addition to an @code{enum} to associate token numbers with token
8467names.
8468Thus, the following shell script can substitute for Yacc, and the Bison
8469distribution contains such a script for compatibility with POSIX:
8470
8471@example
8472#! /bin/sh
8473bison -y "$@@"
8474@end example
8475
8476The @option{-y}/@option{--yacc} option is intended for use with
8477traditional Yacc grammars. If your grammar uses a Bison extension
8478like @samp{%glr-parser}, Bison might not be Yacc-compatible even if
8479this option is specified.
8480
8481@item -W [@var{category}]
8482@itemx --warnings[=@var{category}]
8483Output warnings falling in @var{category}. @var{category} can be one
8484of:
8485@table @code
8486@item midrule-values
8487Warn about mid-rule values that are set but not used within any of the actions
8488of the parent rule.
8489For example, warn about unused @code{$2} in:
8490
8491@example
8492exp: '1' @{ $$ = 1; @} '+' exp @{ $$ = $1 + $4; @};
8493@end example
8494
8495Also warn about mid-rule values that are used but not set.
8496For example, warn about unset @code{$$} in the mid-rule action in:
8497
8498@example
8499 exp: '1' @{ $1 = 1; @} '+' exp @{ $$ = $2 + $4; @};
8500@end example
8501
8502These warnings are not enabled by default since they sometimes prove to
8503be false alarms in existing grammars employing the Yacc constructs
8504@code{$0} or @code{$-@var{n}} (where @var{n} is some positive integer).
8505
8506
8507@item yacc
8508Incompatibilities with POSIX Yacc.
8509
8510@item all
8511All the warnings.
8512@item none
8513Turn off all the warnings.
8514@item error
8515Treat warnings as errors.
8516@end table
8517
8518A category can be turned off by prefixing its name with @samp{no-}. For
8519instance, @option{-Wno-yacc} will hide the warnings about
8520POSIX Yacc incompatibilities.
8521@end table
8522
8523@noindent
8524Tuning the parser:
8525
8526@table @option
8527@item -t
8528@itemx --debug
8529In the parser file, define the macro @code{YYDEBUG} to 1 if it is not
8530already defined, so that the debugging facilities are compiled.
8531@xref{Tracing, ,Tracing Your Parser}.
8532
8533@item -D @var{name}[=@var{value}]
8534@itemx --define=@var{name}[=@var{value}]
8535@itemx -F @var{name}[=@var{value}]
8536@itemx --force-define=@var{name}[=@var{value}]
8537Each of these is equivalent to @samp{%define @var{name} "@var{value}"}
8538(@pxref{Decl Summary, ,%define}) except that Bison processes multiple
8539definitions for the same @var{name} as follows:
8540
8541@itemize
8542@item
8543Bison quietly ignores all command-line definitions for @var{name} except
8544the last.
8545@item
8546If that command-line definition is specified by a @code{-D} or
8547@code{--define}, Bison reports an error for any @code{%define}
8548definition for @var{name}.
8549@item
8550If that command-line definition is specified by a @code{-F} or
8551@code{--force-define} instead, Bison quietly ignores all @code{%define}
8552definitions for @var{name}.
8553@item
8554Otherwise, Bison reports an error if there are multiple @code{%define}
8555definitions for @var{name}.
8556@end itemize
8557
8558You should avoid using @code{-F} and @code{--force-define} in your
8559makefiles unless you are confident that it is safe to quietly ignore any
8560conflicting @code{%define} that may be added to the grammar file.
8561
8562@item -L @var{language}
8563@itemx --language=@var{language}
8564Specify the programming language for the generated parser, as if
8565@code{%language} was specified (@pxref{Decl Summary, , Bison Declaration
8566Summary}). Currently supported languages include C, C++, and Java.
8567@var{language} is case-insensitive.
8568
8569This option is experimental and its effect may be modified in future
8570releases.
8571
8572@item --locations
8573Pretend that @code{%locations} was specified. @xref{Decl Summary}.
8574
8575@item -p @var{prefix}
8576@itemx --name-prefix=@var{prefix}
8577Pretend that @code{%name-prefix "@var{prefix}"} was specified.
8578@xref{Decl Summary}.
8579
8580@item -l
8581@itemx --no-lines
8582Don't put any @code{#line} preprocessor commands in the parser file.
8583Ordinarily Bison puts them in the parser file so that the C compiler
8584and debuggers will associate errors with your source file, the
8585grammar file. This option causes them to associate errors with the
8586parser file, treating it as an independent source file in its own right.
8587
8588@item -S @var{file}
8589@itemx --skeleton=@var{file}
8590Specify the skeleton to use, similar to @code{%skeleton}
8591(@pxref{Decl Summary, , Bison Declaration Summary}).
8592
8593@c You probably don't need this option unless you are developing Bison.
8594@c You should use @option{--language} if you want to specify the skeleton for a
8595@c different language, because it is clearer and because it will always
8596@c choose the correct skeleton for non-deterministic or push parsers.
8597
8598If @var{file} does not contain a @code{/}, @var{file} is the name of a skeleton
8599file in the Bison installation directory.
8600If it does, @var{file} is an absolute file name or a file name relative to the
8601current working directory.
8602This is similar to how most shells resolve commands.
8603
8604@item -k
8605@itemx --token-table
8606Pretend that @code{%token-table} was specified. @xref{Decl Summary}.
8607@end table
8608
8609@noindent
8610Adjust the output:
8611
8612@table @option
8613@item --defines[=@var{file}]
8614Pretend that @code{%defines} was specified, i.e., write an extra output
8615file containing macro definitions for the token type names defined in
8616the grammar, as well as a few other declarations. @xref{Decl Summary}.
8617
8618@item -d
8619This is the same as @code{--defines} except @code{-d} does not accept a
8620@var{file} argument since POSIX Yacc requires that @code{-d} can be bundled
8621with other short options.
8622
8623@item -b @var{file-prefix}
8624@itemx --file-prefix=@var{prefix}
8625Pretend that @code{%file-prefix} was specified, i.e., specify prefix to use
8626for all Bison output file names. @xref{Decl Summary}.
8627
8628@item -r @var{things}
8629@itemx --report=@var{things}
8630Write an extra output file containing verbose description of the comma
8631separated list of @var{things} among:
8632
8633@table @code
8634@item state
8635Description of the grammar, conflicts (resolved and unresolved), and
8636parser's automaton.
8637
8638@item lookahead
8639Implies @code{state} and augments the description of the automaton with
8640each rule's lookahead set.
8641
8642@item itemset
8643Implies @code{state} and augments the description of the automaton with
8644the full set of items for each state, instead of its core only.
8645@end table
8646
8647@item --report-file=@var{file}
8648Specify the @var{file} for the verbose description.
8649
8650@item -v
8651@itemx --verbose
8652Pretend that @code{%verbose} was specified, i.e., write an extra output
8653file containing verbose descriptions of the grammar and
8654parser. @xref{Decl Summary}.
8655
8656@item -o @var{file}
8657@itemx --output=@var{file}
8658Specify the @var{file} for the parser file.
8659
8660The other output files' names are constructed from @var{file} as
8661described under the @samp{-v} and @samp{-d} options.
8662
8663@item -g [@var{file}]
8664@itemx --graph[=@var{file}]
8665Output a graphical representation of the parser's
8666automaton computed by Bison, in @uref{http://www.graphviz.org/, Graphviz}
8667@uref{http://www.graphviz.org/doc/info/lang.html, DOT} format.
8668@code{@var{file}} is optional.
8669If omitted and the grammar file is @file{foo.y}, the output file will be
8670@file{foo.dot}.
8671
8672@item -x [@var{file}]
8673@itemx --xml[=@var{file}]
8674Output an XML report of the parser's automaton computed by Bison.
8675@code{@var{file}} is optional.
8676If omitted and the grammar file is @file{foo.y}, the output file will be
8677@file{foo.xml}.
8678(The current XML schema is experimental and may evolve.
8679More user feedback will help to stabilize it.)
8680@end table
8681
8682@node Option Cross Key
8683@section Option Cross Key
8684
8685Here is a list of options, alphabetized by long option, to help you find
8686the corresponding short option and directive.
8687
8688@multitable {@option{--force-define=@var{name}[=@var{value}]}} {@option{-F @var{name}[=@var{value}]}} {@code{%nondeterministic-parser}}
8689@headitem Long Option @tab Short Option @tab Bison Directive
8690@include cross-options.texi
8691@end multitable
8692
8693@node Yacc Library
8694@section Yacc Library
8695
8696The Yacc library contains default implementations of the
8697@code{yyerror} and @code{main} functions. These default
8698implementations are normally not useful, but POSIX requires
8699them. To use the Yacc library, link your program with the
8700@option{-ly} option. Note that Bison's implementation of the Yacc
8701library is distributed under the terms of the GNU General
8702Public License (@pxref{Copying}).
8703
8704If you use the Yacc library's @code{yyerror} function, you should
8705declare @code{yyerror} as follows:
8706
8707@example
8708int yyerror (char const *);
8709@end example
8710
8711Bison ignores the @code{int} value returned by this @code{yyerror}.
8712If you use the Yacc library's @code{main} function, your
8713@code{yyparse} function should have the following type signature:
8714
8715@example
8716int yyparse (void);
8717@end example
8718
8719@c ================================================= C++ Bison
8720
8721@node Other Languages
8722@chapter Parsers Written In Other Languages
8723
8724@menu
8725* C++ Parsers:: The interface to generate C++ parser classes
8726* Java Parsers:: The interface to generate Java parser classes
8727@end menu
8728
8729@node C++ Parsers
8730@section C++ Parsers
8731
8732@menu
8733* C++ Bison Interface:: Asking for C++ parser generation
8734* C++ Semantic Values:: %union vs. C++
8735* C++ Location Values:: The position and location classes
8736* C++ Parser Interface:: Instantiating and running the parser
8737* C++ Scanner Interface:: Exchanges between yylex and parse
8738* A Complete C++ Example:: Demonstrating their use
8739@end menu
8740
8741@node C++ Bison Interface
8742@subsection C++ Bison Interface
8743@c - %skeleton "lalr1.cc"
8744@c - Always pure
8745@c - initial action
8746
8747The C++ deterministic parser is selected using the skeleton directive,
8748@samp{%skeleton "lalr1.cc"}, or the synonymous command-line option
8749@option{--skeleton=lalr1.cc}.
8750@xref{Decl Summary}.
8751
8752When run, @command{bison} will create several entities in the @samp{yy}
8753namespace.
8754@findex %define api.namespace
8755Use the @samp{%define api.namespace} directive to change the namespace
8756name, see
8757@ref{Decl Summary}.
8758The various classes are generated in the following files:
8759
8760@table @file
8761@item position.hh
8762@itemx location.hh
8763The definition of the classes @code{position} and @code{location},
8764used for location tracking when enabled. @xref{C++ Location Values}.
8765
8766@item stack.hh
8767An auxiliary class @code{stack} used by the parser.
8768
8769@item @var{file}.hh
8770@itemx @var{file}.cc
8771(Assuming the extension of the input file was @samp{.yy}.) The
8772declaration and implementation of the C++ parser class. The basename
8773and extension of these two files follow the same rules as with regular C
8774parsers (@pxref{Invocation}).
8775
8776The header is @emph{mandatory}; you must either pass
8777@option{-d}/@option{--defines} to @command{bison}, or use the
8778@samp{%defines} directive.
8779@end table
8780
8781All these files are documented using Doxygen; run @command{doxygen}
8782for a complete and accurate documentation.
8783
8784@node C++ Semantic Values
8785@subsection C++ Semantic Values
8786@c - No objects in unions
8787@c - YYSTYPE
8788@c - Printer and destructor
8789
8790Bison supports two different means to handle semantic values in C++. One is
8791alike the C interface, and relies on unions (@pxref{C++ Unions}). As C++
8792practitioners know, unions are inconvenient in C++, therefore another
8793approach is provided, based on variants (@pxref{C++ Variants}).
8794
8795@menu
8796* C++ Unions:: Semantic values cannot be objects
8797* C++ Variants:: Using objects as semantic values
8798@end menu
8799
8800@node C++ Unions
8801@subsubsection C++ Unions
8802
8803The @code{%union} directive works as for C, see @ref{Union Decl, ,The
8804Collection of Value Types}. In particular it produces a genuine
8805@code{union}, which have a few specific features in C++.
8806@itemize @minus
8807@item
8808The type @code{YYSTYPE} is defined but its use is discouraged: rather
8809you should refer to the parser's encapsulated type
8810@code{yy::parser::semantic_type}.
8811@item
8812Non POD (Plain Old Data) types cannot be used. C++ forbids any
8813instance of classes with constructors in unions: only @emph{pointers}
8814to such objects are allowed.
8815@end itemize
8816
8817Because objects have to be stored via pointers, memory is not
8818reclaimed automatically: using the @code{%destructor} directive is the
8819only means to avoid leaks. @xref{Destructor Decl, , Freeing Discarded
8820Symbols}.
8821
8822@node C++ Variants
8823@subsubsection C++ Variants
8824
8825Starting with version 2.6, Bison provides a @emph{variant} based
8826implementation of semantic values for C++. This alleviates all the
8827limitations reported in the previous section, and in particular, object
8828types can be used without pointers.
8829
8830To enable variant-based semantic values, set @code{%define} variable
8831@code{variant} (@pxref{Decl Summary, , variant}). Once this defined,
8832@code{%union} is ignored, and instead of using the name of the fields of the
8833@code{%union} to ``type'' the symbols, use genuine types.
8834
8835For instance, instead of
8836
8837@example
8838%union
8839@{
8840 int ival;
8841 std::string* sval;
8842@}
8843%token <ival> NUMBER;
8844%token <sval> STRING;
8845@end example
8846
8847@noindent
8848write
8849
8850@example
8851%token <int> NUMBER;
8852%token <std::string> STRING;
8853@end example
8854
8855@code{STRING} is no longer a pointer, which should fairly simplify the user
8856actions in the grammar and in the scanner (in particular the memory
8857management).
8858
8859Since C++ features destructors, and since it is customary to specialize
8860@code{operator<<} to support uniform printing of values, variants also
8861typically simplify Bison printers and destructors.
8862
8863Variants are stricter than unions. When based on unions, you may play any
8864dirty game with @code{yylval}, say storing an @code{int}, reading a
8865@code{char*}, and then storing a @code{double} in it. This is no longer
8866possible with variants: they must be initialized, then assigned to, and
8867eventually, destroyed.
8868
8869@deftypemethod {semantic_type} {T&} build<T> ()
8870Initialize, but leave empty. Returns the address where the actual value may
8871be stored. Requires that the variant was not initialized yet.
8872@end deftypemethod
8873
8874@deftypemethod {semantic_type} {T&} build<T> (const T& @var{t})
8875Initialize, and copy-construct from @var{t}.
8876@end deftypemethod
8877
8878
8879@strong{Warning}: We do not use Boost.Variant, for two reasons. First, it
8880appeared unacceptable to require Boost on the user's machine (i.e., the
8881machine on which the generated parser will be compiled, not the machine on
8882which @command{bison} was run). Second, for each possible semantic value,
8883Boost.Variant not only stores the value, but also a tag specifying its
8884type. But the parser already ``knows'' the type of the semantic value, so
8885that would be duplicating the information.
8886
8887Therefore we developed light-weight variants whose type tag is external (so
8888they are really like @code{unions} for C++ actually). But our code is much
8889less mature that Boost.Variant. So there is a number of limitations in
8890(the current implementation of) variants:
8891@itemize
8892@item
8893Alignment must be enforced: values should be aligned in memory according to
8894the most demanding type. Computing the smallest alignment possible requires
8895meta-programming techniques that are not currently implemented in Bison, and
8896therefore, since, as far as we know, @code{double} is the most demanding
8897type on all platforms, alignments are enforced for @code{double} whatever
8898types are actually used. This may waste space in some cases.
8899
8900@item
8901Our implementation is not conforming with strict aliasing rules. Alias
8902analysis is a technique used in optimizing compilers to detect when two
8903pointers are disjoint (they cannot ``meet''). Our implementation breaks
8904some of the rules that G++ 4.4 uses in its alias analysis, so @emph{strict
8905alias analysis must be disabled}. Use the option
8906@option{-fno-strict-aliasing} to compile the generated parser.
8907
8908@item
8909There might be portability issues we are not aware of.
8910@end itemize
8911
8912As far as we know, these limitations @emph{can} be alleviated. All it takes
8913is some time and/or some talented C++ hacker willing to contribute to Bison.
8914
8915@node C++ Location Values
8916@subsection C++ Location Values
8917@c - %locations
8918@c - class Position
8919@c - class Location
8920@c - %define filename_type "const symbol::Symbol"
8921
8922When the directive @code{%locations} is used, the C++ parser supports
8923location tracking, see @ref{Locations, , Locations Overview}. Two
8924auxiliary classes define a @code{position}, a single point in a file,
8925and a @code{location}, a range composed of a pair of
8926@code{position}s (possibly spanning several files).
8927
8928@deftypemethod {position} {std::string*} file
8929The name of the file. It will always be handled as a pointer, the
8930parser will never duplicate nor deallocate it. As an experimental
8931feature you may change it to @samp{@var{type}*} using @samp{%define
8932filename_type "@var{type}"}.
8933@end deftypemethod
8934
8935@deftypemethod {position} {unsigned int} line
8936The line, starting at 1.
8937@end deftypemethod
8938
8939@deftypemethod {position} {unsigned int} lines (int @var{height} = 1)
8940Advance by @var{height} lines, resetting the column number.
8941@end deftypemethod
8942
8943@deftypemethod {position} {unsigned int} column
8944The column, starting at 0.
8945@end deftypemethod
8946
8947@deftypemethod {position} {unsigned int} columns (int @var{width} = 1)
8948Advance by @var{width} columns, without changing the line number.
8949@end deftypemethod
8950
8951@deftypemethod {position} {position&} operator+= (position& @var{pos}, int @var{width})
8952@deftypemethodx {position} {position} operator+ (const position& @var{pos}, int @var{width})
8953@deftypemethodx {position} {position&} operator-= (const position& @var{pos}, int @var{width})
8954@deftypemethodx {position} {position} operator- (position& @var{pos}, int @var{width})
8955Various forms of syntactic sugar for @code{columns}.
8956@end deftypemethod
8957
8958@deftypemethod {position} {position} operator<< (std::ostream @var{o}, const position& @var{p})
8959Report @var{p} on @var{o} like this:
8960@samp{@var{file}:@var{line}.@var{column}}, or
8961@samp{@var{line}.@var{column}} if @var{file} is null.
8962@end deftypemethod
8963
8964@deftypemethod {location} {position} begin
8965@deftypemethodx {location} {position} end
8966The first, inclusive, position of the range, and the first beyond.
8967@end deftypemethod
8968
8969@deftypemethod {location} {unsigned int} columns (int @var{width} = 1)
8970@deftypemethodx {location} {unsigned int} lines (int @var{height} = 1)
8971Advance the @code{end} position.
8972@end deftypemethod
8973
8974@deftypemethod {location} {location} operator+ (const location& @var{begin}, const location& @var{end})
8975@deftypemethodx {location} {location} operator+ (const location& @var{begin}, int @var{width})
8976@deftypemethodx {location} {location} operator+= (const location& @var{loc}, int @var{width})
8977Various forms of syntactic sugar.
8978@end deftypemethod
8979
8980@deftypemethod {location} {void} step ()
8981Move @code{begin} onto @code{end}.
8982@end deftypemethod
8983
8984
8985@node C++ Parser Interface
8986@subsection C++ Parser Interface
8987@c - define parser_class_name
8988@c - Ctor
8989@c - parse, error, set_debug_level, debug_level, set_debug_stream,
8990@c debug_stream.
8991@c - Reporting errors
8992
8993The output files @file{@var{output}.hh} and @file{@var{output}.cc}
8994declare and define the parser class in the namespace @code{yy}. The
8995class name defaults to @code{parser}, but may be changed using
8996@samp{%define parser_class_name "@var{name}"}. The interface of
8997this class is detailed below. It can be extended using the
8998@code{%parse-param} feature: its semantics is slightly changed since
8999it describes an additional member of the parser class, and an
9000additional argument for its constructor.
9001
9002@defcv {Type} {parser} {semantic_type}
9003@defcvx {Type} {parser} {location_type}
9004The types for semantic values and locations (if enabled).
9005@end defcv
9006
9007@defcv {Type} {parser} {token}
9008A structure that contains (only) the definition of the tokens as the
9009@code{yytokentype} enumeration. To refer to the token @code{FOO}, the
9010scanner should use @code{yy::parser::token::FOO}. The scanner can use
9011@samp{typedef yy::parser::token token;} to ``import'' the token enumeration
9012(@pxref{Calc++ Scanner}).
9013@end defcv
9014
9015@defcv {Type} {parser} {syntax_error}
9016This class derives from @code{std::runtime_error}. Throw instances of it
9017from user actions to raise parse errors. This is equivalent with first
9018invoking @code{error} to report the location and message of the syntax
9019error, and then to invoke @code{YYERROR} to enter the error-recovery mode.
9020But contrary to @code{YYERROR} which can only be invoked from user actions
9021(i.e., written in the action itself), the exception can be thrown from
9022function invoked from the user action.
9023@end defcv
9024
9025@deftypemethod {parser} {} parser (@var{type1} @var{arg1}, ...)
9026Build a new parser object. There are no arguments by default, unless
9027@samp{%parse-param @{@var{type1} @var{arg1}@}} was used.
9028@end deftypemethod
9029
9030@deftypemethod {syntax_error} {} syntax_error (const location_type& @var{l}, const std::string& @var{m})
9031@deftypemethodx {syntax_error} {} syntax_error (const std::string& @var{m})
9032Instantiate a syntax-error exception.
9033@end deftypemethod
9034
9035@deftypemethod {parser} {int} parse ()
9036Run the syntactic analysis, and return 0 on success, 1 otherwise.
9037@end deftypemethod
9038
9039@deftypemethod {parser} {std::ostream&} debug_stream ()
9040@deftypemethodx {parser} {void} set_debug_stream (std::ostream& @var{o})
9041Get or set the stream used for tracing the parsing. It defaults to
9042@code{std::cerr}.
9043@end deftypemethod
9044
9045@deftypemethod {parser} {debug_level_type} debug_level ()
9046@deftypemethodx {parser} {void} set_debug_level (debug_level @var{l})
9047Get or set the tracing level. Currently its value is either 0, no trace,
9048or nonzero, full tracing.
9049@end deftypemethod
9050
9051@deftypemethod {parser} {void} error (const location_type& @var{l}, const std::string& @var{m})
9052@deftypemethodx {parser} {void} error (const std::string& @var{m})
9053The definition for this member function must be supplied by the user:
9054the parser uses it to report a parser error occurring at @var{l},
9055described by @var{m}. If location tracking is not enabled, the second
9056signature is used.
9057@end deftypemethod
9058
9059
9060@node C++ Scanner Interface
9061@subsection C++ Scanner Interface
9062@c - prefix for yylex.
9063@c - Pure interface to yylex
9064@c - %lex-param
9065
9066The parser invokes the scanner by calling @code{yylex}. Contrary to C
9067parsers, C++ parsers are always pure: there is no point in using the
9068@samp{%define api.pure} directive. The actual interface with @code{yylex}
9069depends whether you use unions, or variants.
9070
9071@menu
9072* Split Symbols:: Passing symbols as two/three components
9073* Complete Symbols:: Making symbols a whole
9074@end menu
9075
9076@node Split Symbols
9077@subsubsection Split Symbols
9078
9079Therefore the interface is as follows.
9080
9081@deftypemethod {parser} {int} yylex (semantic_type* @var{yylval}, location_type* @var{yylloc}, @var{type1} @var{arg1}, ...)
9082@deftypemethodx {parser} {int} yylex (semantic_type* @var{yylval}, @var{type1} @var{arg1}, ...)
9083Return the next token. Its type is the return value, its semantic value and
9084location (if enabled) being @var{yylval} and @var{yylloc}. Invocations of
9085@samp{%lex-param @{@var{type1} @var{arg1}@}} yield additional arguments.
9086@end deftypemethod
9087
9088Note that when using variants, the interface for @code{yylex} is the same,
9089but @code{yylval} is handled differently.
9090
9091Regular union-based code in Lex scanner typically look like:
9092
9093@example
9094[0-9]+ @{
9095 yylval.ival = text_to_int (yytext);
9096 return yy::parser::INTEGER;
9097 @}
9098[a-z]+ @{
9099 yylval.sval = new std::string (yytext);
9100 return yy::parser::IDENTIFIER;
9101 @}
9102@end example
9103
9104Using variants, @code{yylval} is already constructed, but it is not
9105initialized. So the code would look like:
9106
9107@example
9108[0-9]+ @{
9109 yylval.build<int>() = text_to_int (yytext);
9110 return yy::parser::INTEGER;
9111 @}
9112[a-z]+ @{
9113 yylval.build<std::string> = yytext;
9114 return yy::parser::IDENTIFIER;
9115 @}
9116@end example
9117
9118@noindent
9119or
9120
9121@example
9122[0-9]+ @{
9123 yylval.build(text_to_int (yytext));
9124 return yy::parser::INTEGER;
9125 @}
9126[a-z]+ @{
9127 yylval.build(yytext);
9128 return yy::parser::IDENTIFIER;
9129 @}
9130@end example
9131
9132
9133@node Complete Symbols
9134@subsubsection Complete Symbols
9135
9136If you specified both @code{%define variant} and @code{%define lex_symbol},
9137the @code{parser} class also defines the class @code{parser::symbol_type}
9138which defines a @emph{complete} symbol, aggregating its type (i.e., the
9139traditional value returned by @code{yylex}), its semantic value (i.e., the
9140value passed in @code{yylval}, and possibly its location (@code{yylloc}).
9141
9142@deftypemethod {symbol_type} {} symbol_type (token_type @var{type}, const semantic_type& @var{value}, const location_type& @var{location})
9143Build a complete terminal symbol which token type is @var{type}, and which
9144semantic value is @var{value}. If location tracking is enabled, also pass
9145the @var{location}.
9146@end deftypemethod
9147
9148This interface is low-level and should not be used for two reasons. First,
9149it is inconvenient, as you still have to build the semantic value, which is
9150a variant, and second, because consistency is not enforced: as with unions,
9151it is still possible to give an integer as semantic value for a string.
9152
9153So for each token type, Bison generates named constructors as follows.
9154
9155@deftypemethod {symbol_type} {} make_@var{token} (const @var{value_type}& @var{value}, const location_type& @var{location})
9156@deftypemethodx {symbol_type} {} make_@var{token} (const location_type& @var{location})
9157Build a complete terminal symbol for the token type @var{token} (not
9158including the @code{api.tokens.prefix}) whose possible semantic value is
9159@var{value} of adequate @var{value_type}. If location tracking is enabled,
9160also pass the @var{location}.
9161@end deftypemethod
9162
9163For instance, given the following declarations:
9164
9165@example
9166%define api.tokens.prefix "TOK_"
9167%token <std::string> IDENTIFIER;
9168%token <int> INTEGER;
9169%token COLON;
9170@end example
9171
9172@noindent
9173Bison generates the following functions:
9174
9175@example
9176symbol_type make_IDENTIFIER(const std::string& v,
9177 const location_type& l);
9178symbol_type make_INTEGER(const int& v,
9179 const location_type& loc);
9180symbol_type make_COLON(const location_type& loc);
9181@end example
9182
9183@noindent
9184which should be used in a Lex-scanner as follows.
9185
9186@example
9187[0-9]+ return yy::parser::make_INTEGER(text_to_int (yytext), loc);
9188[a-z]+ return yy::parser::make_IDENTIFIER(yytext, loc);
9189":" return yy::parser::make_COLON(loc);
9190@end example
9191
9192Tokens that do not have an identifier are not accessible: you cannot simply
9193use characters such as @code{':'}, they must be declared with @code{%token}.
9194
9195@node A Complete C++ Example
9196@subsection A Complete C++ Example
9197
9198This section demonstrates the use of a C++ parser with a simple but
9199complete example. This example should be available on your system,
9200ready to compile, in the directory @dfn{.../bison/examples/calc++}. It
9201focuses on the use of Bison, therefore the design of the various C++
9202classes is very naive: no accessors, no encapsulation of members etc.
9203We will use a Lex scanner, and more precisely, a Flex scanner, to
9204demonstrate the various interactions. A hand-written scanner is
9205actually easier to interface with.
9206
9207@menu
9208* Calc++ --- C++ Calculator:: The specifications
9209* Calc++ Parsing Driver:: An active parsing context
9210* Calc++ Parser:: A parser class
9211* Calc++ Scanner:: A pure C++ Flex scanner
9212* Calc++ Top Level:: Conducting the band
9213@end menu
9214
9215@node Calc++ --- C++ Calculator
9216@subsubsection Calc++ --- C++ Calculator
9217
9218Of course the grammar is dedicated to arithmetics, a single
9219expression, possibly preceded by variable assignments. An
9220environment containing possibly predefined variables such as
9221@code{one} and @code{two}, is exchanged with the parser. An example
9222of valid input follows.
9223
9224@example
9225three := 3
9226seven := one + two * three
9227seven * seven
9228@end example
9229
9230@node Calc++ Parsing Driver
9231@subsubsection Calc++ Parsing Driver
9232@c - An env
9233@c - A place to store error messages
9234@c - A place for the result
9235
9236To support a pure interface with the parser (and the scanner) the
9237technique of the ``parsing context'' is convenient: a structure
9238containing all the data to exchange. Since, in addition to simply
9239launch the parsing, there are several auxiliary tasks to execute (open
9240the file for parsing, instantiate the parser etc.), we recommend
9241transforming the simple parsing context structure into a fully blown
9242@dfn{parsing driver} class.
9243
9244The declaration of this driver class, @file{calc++-driver.hh}, is as
9245follows. The first part includes the CPP guard and imports the
9246required standard library components, and the declaration of the parser
9247class.
9248
9249@comment file: calc++-driver.hh
9250@example
9251#ifndef CALCXX_DRIVER_HH
9252# define CALCXX_DRIVER_HH
9253# include <string>
9254# include <map>
9255# include "calc++-parser.hh"
9256@end example
9257
9258
9259@noindent
9260Then comes the declaration of the scanning function. Flex expects
9261the signature of @code{yylex} to be defined in the macro
9262@code{YY_DECL}, and the C++ parser expects it to be declared. We can
9263factor both as follows.
9264
9265@comment file: calc++-driver.hh
9266@example
9267// Tell Flex the lexer's prototype ...
9268# define YY_DECL \
9269 yy::calcxx_parser::symbol_type yylex (calcxx_driver& driver)
9270// ... and declare it for the parser's sake.
9271YY_DECL;
9272@end example
9273
9274@noindent
9275The @code{calcxx_driver} class is then declared with its most obvious
9276members.
9277
9278@comment file: calc++-driver.hh
9279@example
9280// Conducting the whole scanning and parsing of Calc++.
9281class calcxx_driver
9282@{
9283public:
9284 calcxx_driver ();
9285 virtual ~calcxx_driver ();
9286
9287 std::map<std::string, int> variables;
9288
9289 int result;
9290@end example
9291
9292@noindent
9293To encapsulate the coordination with the Flex scanner, it is useful to have
9294member functions to open and close the scanning phase.
9295
9296@comment file: calc++-driver.hh
9297@example
9298 // Handling the scanner.
9299 void scan_begin ();
9300 void scan_end ();
9301 bool trace_scanning;
9302@end example
9303
9304@noindent
9305Similarly for the parser itself.
9306
9307@comment file: calc++-driver.hh
9308@example
9309 // Run the parser on file F.
9310 // Return 0 on success.
9311 int parse (const std::string& f);
9312 // The name of the file being parsed.
9313 // Used later to pass the file name to the location tracker.
9314 std::string file;
9315 // Whether parser traces should be generated.
9316 bool trace_parsing;
9317@end example
9318
9319@noindent
9320To demonstrate pure handling of parse errors, instead of simply
9321dumping them on the standard error output, we will pass them to the
9322compiler driver using the following two member functions. Finally, we
9323close the class declaration and CPP guard.
9324
9325@comment file: calc++-driver.hh
9326@example
9327 // Error handling.
9328 void error (const yy::location& l, const std::string& m);
9329 void error (const std::string& m);
9330@};
9331#endif // ! CALCXX_DRIVER_HH
9332@end example
9333
9334The implementation of the driver is straightforward. The @code{parse}
9335member function deserves some attention. The @code{error} functions
9336are simple stubs, they should actually register the located error
9337messages and set error state.
9338
9339@comment file: calc++-driver.cc
9340@example
9341#include "calc++-driver.hh"
9342#include "calc++-parser.hh"
9343
9344calcxx_driver::calcxx_driver ()
9345 : trace_scanning (false), trace_parsing (false)
9346@{
9347 variables["one"] = 1;
9348 variables["two"] = 2;
9349@}
9350
9351calcxx_driver::~calcxx_driver ()
9352@{
9353@}
9354
9355int
9356calcxx_driver::parse (const std::string &f)
9357@{
9358 file = f;
9359 scan_begin ();
9360 yy::calcxx_parser parser (*this);
9361 parser.set_debug_level (trace_parsing);
9362 int res = parser.parse ();
9363 scan_end ();
9364 return res;
9365@}
9366
9367void
9368calcxx_driver::error (const yy::location& l, const std::string& m)
9369@{
9370 std::cerr << l << ": " << m << std::endl;
9371@}
9372
9373void
9374calcxx_driver::error (const std::string& m)
9375@{
9376 std::cerr << m << std::endl;
9377@}
9378@end example
9379
9380@node Calc++ Parser
9381@subsubsection Calc++ Parser
9382
9383The parser definition file @file{calc++-parser.yy} starts by asking for
9384the C++ deterministic parser skeleton, the creation of the parser header
9385file, and specifies the name of the parser class.
9386Because the C++ skeleton changed several times, it is safer to require
9387the version you designed the grammar for.
9388
9389@comment file: calc++-parser.yy
9390@example
9391%skeleton "lalr1.cc" /* -*- C++ -*- */
9392%require "@value{VERSION}"
9393%defines
9394%define parser_class_name "calcxx_parser"
9395@end example
9396
9397@noindent
9398@findex %define variant
9399@findex %define lex_symbol
9400This example will use genuine C++ objects as semantic values, therefore, we
9401require the variant-based interface. To make sure we properly use it, we
9402enable assertions. To fully benefit from type-safety and more natural
9403definition of ``symbol'', we enable @code{lex_symbol}.
9404
9405@comment file: calc++-parser.yy
9406@example
9407%define variant
9408%define parse.assert
9409%define lex_symbol
9410@end example
9411
9412@noindent
9413@findex %code requires
9414Then come the declarations/inclusions needed by the semantic values.
9415Because the parser uses the parsing driver and reciprocally, both would like
9416to include the header of the other, which is, of course, insane. This
9417mutual dependency will be broken using forward declarations. Because the
9418driver's header needs detailed knowledge about the parser class (in
9419particular its inner types), it is the parser's header which will use a
9420forward declaration of the driver. @xref{Decl Summary, ,%code}.
9421
9422@comment file: calc++-parser.yy
9423@example
9424%code requires
9425@{
9426# include <string>
9427class calcxx_driver;
9428@}
9429@end example
9430
9431@noindent
9432The driver is passed by reference to the parser and to the scanner.
9433This provides a simple but effective pure interface, not relying on
9434global variables.
9435
9436@comment file: calc++-parser.yy
9437@example
9438// The parsing context.
9439%param @{ calcxx_driver& driver @}
9440@end example
9441
9442@noindent
9443Then we request location tracking, and initialize the
9444first location's file name. Afterward new locations are computed
9445relatively to the previous locations: the file name will be
9446propagated.
9447
9448@comment file: calc++-parser.yy
9449@example
9450%locations
9451%initial-action
9452@{
9453 // Initialize the initial location.
9454 @@$.begin.filename = @@$.end.filename = &driver.file;
9455@};
9456@end example
9457
9458@noindent
9459Use the following two directives to enable parser tracing and verbose
9460error messages.
9461
9462@comment file: calc++-parser.yy
9463@example
9464%define parse.trace
9465%define parse.error verbose
9466@end example
9467
9468@noindent
9469@findex %code
9470The code between @samp{%code @{} and @samp{@}} is output in the
9471@file{*.cc} file; it needs detailed knowledge about the driver.
9472
9473@comment file: calc++-parser.yy
9474@example
9475%code
9476@{
9477# include "calc++-driver.hh"
9478@}
9479@end example
9480
9481
9482@noindent
9483The token numbered as 0 corresponds to end of file; the following line
9484allows for nicer error messages referring to ``end of file'' instead of
9485``$end''. Similarly user friendly names are provided for each symbol.
9486To avoid name clashes in the generated files (@pxref{Calc++ Scanner}),
9487prefix tokens with @code{TOK_} (@pxref{Decl Summary,, api.tokens.prefix}).
9488
9489@comment file: calc++-parser.yy
9490@example
9491%define api.tokens.prefix "TOK_"
9492%token
9493 END 0 "end of file"
9494 ASSIGN ":="
9495 MINUS "-"
9496 PLUS "+"
9497 STAR "*"
9498 SLASH "/"
9499 LPAREN "("
9500 RPAREN ")"
9501;
9502@end example
9503
9504@noindent
9505Since we use variant-based semantic values, @code{%union} is not used, and
9506both @code{%type} and @code{%token} expect genuine types, as opposed to type
9507tags.
9508
9509@comment file: calc++-parser.yy
9510@example
9511%token <std::string> IDENTIFIER "identifier"
9512%token <int> NUMBER "number"
9513%type <int> exp
9514@end example
9515
9516@noindent
9517No @code{%destructor} is needed to enable memory deallocation during error
9518recovery; the memory, for strings for instance, will be reclaimed by the
9519regular destructors. All the values are printed using their
9520@code{operator<<}.
9521
9522@c FIXME: Document %printer, and mention that it takes a braced-code operand.
9523@comment file: calc++-parser.yy
9524@example
9525%printer @{ debug_stream () << $$; @} <*>;
9526@end example
9527
9528@noindent
9529The grammar itself is straightforward (@pxref{Location Tracking Calc, ,
9530Location Tracking Calculator: @code{ltcalc}}).
9531
9532@comment file: calc++-parser.yy
9533@example
9534%%
9535%start unit;
9536unit: assignments exp @{ driver.result = $2; @};
9537
9538assignments:
9539 assignments assignment @{@}
9540| /* Nothing. */ @{@};
9541
9542assignment:
9543 "identifier" ":=" exp @{ driver.variables[$1] = $3; @};
9544
9545%left "+" "-";
9546%left "*" "/";
9547exp:
9548 exp "+" exp @{ $$ = $1 + $3; @}
9549| exp "-" exp @{ $$ = $1 - $3; @}
9550| exp "*" exp @{ $$ = $1 * $3; @}
9551| exp "/" exp @{ $$ = $1 / $3; @}
9552| "(" exp ")" @{ std::swap ($$, $2); @}
9553| "identifier" @{ $$ = driver.variables[$1]; @}
9554| "number" @{ std::swap ($$, $1); @};
9555%%
9556@end example
9557
9558@noindent
9559Finally the @code{error} member function registers the errors to the
9560driver.
9561
9562@comment file: calc++-parser.yy
9563@example
9564void
9565yy::calcxx_parser::error (const location_type& l,
9566 const std::string& m)
9567@{
9568 driver.error (l, m);
9569@}
9570@end example
9571
9572@node Calc++ Scanner
9573@subsubsection Calc++ Scanner
9574
9575The Flex scanner first includes the driver declaration, then the
9576parser's to get the set of defined tokens.
9577
9578@comment file: calc++-scanner.ll
9579@example
9580%@{ /* -*- C++ -*- */
9581# include <cerrno>
9582# include <climits>
9583# include <cstdlib>
9584# include <string>
9585# include "calc++-driver.hh"
9586# include "calc++-parser.hh"
9587
9588// Work around an incompatibility in flex (at least versions
9589// 2.5.31 through 2.5.33): it generates code that does
9590// not conform to C89. See Debian bug 333231
9591// <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333231>.
9592# undef yywrap
9593# define yywrap() 1
9594
9595// The location of the current token.
9596static yy::location loc;
9597%@}
9598@end example
9599
9600@noindent
9601Because there is no @code{#include}-like feature we don't need
9602@code{yywrap}, we don't need @code{unput} either, and we parse an
9603actual file, this is not an interactive session with the user.
9604Finally, we enable scanner tracing.
9605
9606@comment file: calc++-scanner.ll
9607@example
9608%option noyywrap nounput batch debug
9609@end example
9610
9611@noindent
9612Abbreviations allow for more readable rules.
9613
9614@comment file: calc++-scanner.ll
9615@example
9616id [a-zA-Z][a-zA-Z_0-9]*
9617int [0-9]+
9618blank [ \t]
9619@end example
9620
9621@noindent
9622The following paragraph suffices to track locations accurately. Each
9623time @code{yylex} is invoked, the begin position is moved onto the end
9624position. Then when a pattern is matched, its width is added to the end
9625column. When matching ends of lines, the end
9626cursor is adjusted, and each time blanks are matched, the begin cursor
9627is moved onto the end cursor to effectively ignore the blanks
9628preceding tokens. Comments would be treated equally.
9629
9630@comment file: calc++-scanner.ll
9631@example
9632%@{
9633 // Code run each time a pattern is matched.
9634 # define YY_USER_ACTION loc.columns (yyleng);
9635%@}
9636%%
9637%@{
9638 // Code run each time yylex is called.
9639 loc.step ();
9640%@}
9641@{blank@}+ loc.step ();
9642[\n]+ loc.lines (yyleng); loc.step ();
9643@end example
9644
9645@noindent
9646The rules are simple. The driver is used to report errors.
9647
9648@comment file: calc++-scanner.ll
9649@example
9650"-" return yy::calcxx_parser::make_MINUS(loc);
9651"+" return yy::calcxx_parser::make_PLUS(loc);
9652"*" return yy::calcxx_parser::make_STAR(loc);
9653"/" return yy::calcxx_parser::make_SLASH(loc);
9654"(" return yy::calcxx_parser::make_LPAREN(loc);
9655")" return yy::calcxx_parser::make_RPAREN(loc);
9656":=" return yy::calcxx_parser::make_ASSIGN(loc);
9657
9658@{int@} @{
9659 errno = 0;
9660 long n = strtol (yytext, NULL, 10);
9661 if (! (INT_MIN <= n && n <= INT_MAX && errno != ERANGE))
9662 driver.error (loc, "integer is out of range");
9663 return yy::calcxx_parser::make_NUMBER(n, loc);
9664@}
9665@{id@} return yy::calcxx_parser::make_IDENTIFIER(yytext, loc);
9666. driver.error (loc, "invalid character");
9667<<EOF>> return yy::calcxx_parser::make_END(loc);
9668%%
9669@end example
9670
9671@noindent
9672Finally, because the scanner-related driver's member-functions depend
9673on the scanner's data, it is simpler to implement them in this file.
9674
9675@comment file: calc++-scanner.ll
9676@example
9677void
9678calcxx_driver::scan_begin ()
9679@{
9680 yy_flex_debug = trace_scanning;
9681 if (file == "-")
9682 yyin = stdin;
9683 else if (!(yyin = fopen (file.c_str (), "r")))
9684 @{
9685 error (std::string ("cannot open ") + file + ": " + strerror(errno));
9686 exit (1);
9687 @}
9688@}
9689
9690void
9691calcxx_driver::scan_end ()
9692@{
9693 fclose (yyin);
9694@}
9695@end example
9696
9697@node Calc++ Top Level
9698@subsubsection Calc++ Top Level
9699
9700The top level file, @file{calc++.cc}, poses no problem.
9701
9702@comment file: calc++.cc
9703@example
9704#include <iostream>
9705#include "calc++-driver.hh"
9706
9707int
9708main (int argc, char *argv[])
9709@{
9710 int res = 0;
9711 calcxx_driver driver;
9712 for (++argv; argv[0]; ++argv)
9713 if (*argv == std::string ("-p"))
9714 driver.trace_parsing = true;
9715 else if (*argv == std::string ("-s"))
9716 driver.trace_scanning = true;
9717 else if (!driver.parse (*argv))
9718 std::cout << driver.result << std::endl;
9719 else
9720 res = 1;
9721 return res;
9722@}
9723@end example
9724
9725@node Java Parsers
9726@section Java Parsers
9727
9728@menu
9729* Java Bison Interface:: Asking for Java parser generation
9730* Java Semantic Values:: %type and %token vs. Java
9731* Java Location Values:: The position and location classes
9732* Java Parser Interface:: Instantiating and running the parser
9733* Java Scanner Interface:: Specifying the scanner for the parser
9734* Java Action Features:: Special features for use in actions
9735* Java Differences:: Differences between C/C++ and Java Grammars
9736* Java Declarations Summary:: List of Bison declarations used with Java
9737@end menu
9738
9739@node Java Bison Interface
9740@subsection Java Bison Interface
9741@c - %language "Java"
9742
9743(The current Java interface is experimental and may evolve.
9744More user feedback will help to stabilize it.)
9745
9746The Java parser skeletons are selected using the @code{%language "Java"}
9747directive or the @option{-L java}/@option{--language=java} option.
9748
9749@c FIXME: Documented bug.
9750When generating a Java parser, @code{bison @var{basename}.y} will create
9751a single Java source file named @file{@var{basename}.java}. Using an
9752input file without a @file{.y} suffix is currently broken. The basename
9753of the output file can be changed by the @code{%file-prefix} directive
9754or the @option{-p}/@option{--name-prefix} option. The entire output file
9755name can be changed by the @code{%output} directive or the
9756@option{-o}/@option{--output} option. The output file contains a single
9757class for the parser.
9758
9759You can create documentation for generated parsers using Javadoc.
9760
9761Contrary to C parsers, Java parsers do not use global variables; the
9762state of the parser is always local to an instance of the parser class.
9763Therefore, all Java parsers are ``pure'', and the @code{%pure-parser}
9764and @samp{%define api.pure} directives does not do anything when used in
9765Java.
9766
9767Push parsers are currently unsupported in Java and @code{%define
9768api.push-pull} have no effect.
9769
9770GLR parsers are currently unsupported in Java. Do not use the
9771@code{glr-parser} directive.
9772
9773No header file can be generated for Java parsers. Do not use the
9774@code{%defines} directive or the @option{-d}/@option{--defines} options.
9775
9776@c FIXME: Possible code change.
9777Currently, support for tracing is always compiled
9778in. Thus the @samp{%define parse.trace} and @samp{%token-table}
9779directives and the
9780@option{-t}/@option{--debug} and @option{-k}/@option{--token-table}
9781options have no effect. This may change in the future to eliminate
9782unused code in the generated parser, so use @samp{%define parse.trace}
9783explicitly
9784if needed. Also, in the future the
9785@code{%token-table} directive might enable a public interface to
9786access the token names and codes.
9787
9788Getting a ``code too large'' error from the Java compiler means the code
9789hit the 64KB bytecode per method limitation of the Java class file.
9790Try reducing the amount of code in actions and static initializers;
9791otherwise, report a bug so that the parser skeleton will be improved.
9792
9793
9794@node Java Semantic Values
9795@subsection Java Semantic Values
9796@c - No %union, specify type in %type/%token.
9797@c - YYSTYPE
9798@c - Printer and destructor
9799
9800There is no @code{%union} directive in Java parsers. Instead, the
9801semantic values' types (class names) should be specified in the
9802@code{%type} or @code{%token} directive:
9803
9804@example
9805%type <Expression> expr assignment_expr term factor
9806%type <Integer> number
9807@end example
9808
9809By default, the semantic stack is declared to have @code{Object} members,
9810which means that the class types you specify can be of any class.
9811To improve the type safety of the parser, you can declare the common
9812superclass of all the semantic values using the @samp{%define stype}
9813directive. For example, after the following declaration:
9814
9815@example
9816%define stype "ASTNode"
9817@end example
9818
9819@noindent
9820any @code{%type} or @code{%token} specifying a semantic type which
9821is not a subclass of ASTNode, will cause a compile-time error.
9822
9823@c FIXME: Documented bug.
9824Types used in the directives may be qualified with a package name.
9825Primitive data types are accepted for Java version 1.5 or later. Note
9826that in this case the autoboxing feature of Java 1.5 will be used.
9827Generic types may not be used; this is due to a limitation in the
9828implementation of Bison, and may change in future releases.
9829
9830Java parsers do not support @code{%destructor}, since the language
9831adopts garbage collection. The parser will try to hold references
9832to semantic values for as little time as needed.
9833
9834Java parsers do not support @code{%printer}, as @code{toString()}
9835can be used to print the semantic values. This however may change
9836(in a backwards-compatible way) in future versions of Bison.
9837
9838
9839@node Java Location Values
9840@subsection Java Location Values
9841@c - %locations
9842@c - class Position
9843@c - class Location
9844
9845When the directive @code{%locations} is used, the Java parser
9846supports location tracking, see @ref{Locations, , Locations Overview}.
9847An auxiliary user-defined class defines a @dfn{position}, a single point
9848in a file; Bison itself defines a class representing a @dfn{location},
9849a range composed of a pair of positions (possibly spanning several
9850files). The location class is an inner class of the parser; the name
9851is @code{Location} by default, and may also be renamed using
9852@samp{%define location_type "@var{class-name}"}.
9853
9854The location class treats the position as a completely opaque value.
9855By default, the class name is @code{Position}, but this can be changed
9856with @samp{%define position_type "@var{class-name}"}. This class must
9857be supplied by the user.
9858
9859
9860@deftypeivar {Location} {Position} begin
9861@deftypeivarx {Location} {Position} end
9862The first, inclusive, position of the range, and the first beyond.
9863@end deftypeivar
9864
9865@deftypeop {Constructor} {Location} {} Location (Position @var{loc})
9866Create a @code{Location} denoting an empty range located at a given point.
9867@end deftypeop
9868
9869@deftypeop {Constructor} {Location} {} Location (Position @var{begin}, Position @var{end})
9870Create a @code{Location} from the endpoints of the range.
9871@end deftypeop
9872
9873@deftypemethod {Location} {String} toString ()
9874Prints the range represented by the location. For this to work
9875properly, the position class should override the @code{equals} and
9876@code{toString} methods appropriately.
9877@end deftypemethod
9878
9879
9880@node Java Parser Interface
9881@subsection Java Parser Interface
9882@c - define parser_class_name
9883@c - Ctor
9884@c - parse, error, set_debug_level, debug_level, set_debug_stream,
9885@c debug_stream.
9886@c - Reporting errors
9887
9888The name of the generated parser class defaults to @code{YYParser}. The
9889@code{YY} prefix may be changed using the @code{%name-prefix} directive
9890or the @option{-p}/@option{--name-prefix} option. Alternatively, use
9891@samp{%define parser_class_name "@var{name}"} to give a custom name to
9892the class. The interface of this class is detailed below.
9893
9894By default, the parser class has package visibility. A declaration
9895@samp{%define public} will change to public visibility. Remember that,
9896according to the Java language specification, the name of the @file{.java}
9897file should match the name of the class in this case. Similarly, you can
9898use @code{abstract}, @code{final} and @code{strictfp} with the
9899@code{%define} declaration to add other modifiers to the parser class.
9900A single @samp{%define annotations "@var{annotations}"} directive can
9901be used to add any number of annotations to the parser class.
9902
9903The Java package name of the parser class can be specified using the
9904@samp{%define package} directive. The superclass and the implemented
9905interfaces of the parser class can be specified with the @code{%define
9906extends} and @samp{%define implements} directives.
9907
9908The parser class defines an inner class, @code{Location}, that is used
9909for location tracking (see @ref{Java Location Values}), and a inner
9910interface, @code{Lexer} (see @ref{Java Scanner Interface}). Other than
9911these inner class/interface, and the members described in the interface
9912below, all the other members and fields are preceded with a @code{yy} or
9913@code{YY} prefix to avoid clashes with user code.
9914
9915The parser class can be extended using the @code{%parse-param}
9916directive. Each occurrence of the directive will add a @code{protected
9917final} field to the parser class, and an argument to its constructor,
9918which initialize them automatically.
9919
9920@deftypeop {Constructor} {YYParser} {} YYParser (@var{lex_param}, @dots{}, @var{parse_param}, @dots{})
9921Build a new parser object with embedded @code{%code lexer}. There are
9922no parameters, unless @code{%param}s and/or @code{%parse-param}s and/or
9923@code{%lex-param}s are used.
9924
9925Use @code{%code init} for code added to the start of the constructor
9926body. This is especially useful to initialize superclasses. Use
9927@samp{%define init_throws} to specify any uncaught exceptions.
9928@end deftypeop
9929
9930@deftypeop {Constructor} {YYParser} {} YYParser (Lexer @var{lexer}, @var{parse_param}, @dots{})
9931Build a new parser object using the specified scanner. There are no
9932additional parameters unless @code{%param}s and/or @code{%parse-param}s are
9933used.
9934
9935If the scanner is defined by @code{%code lexer}, this constructor is
9936declared @code{protected} and is called automatically with a scanner
9937created with the correct @code{%param}s and/or @code{%lex-param}s.
9938
9939Use @code{%code init} for code added to the start of the constructor
9940body. This is especially useful to initialize superclasses. Use
9941@samp{%define init_throws} to specify any uncatch exceptions.
9942@end deftypeop
9943
9944@deftypemethod {YYParser} {boolean} parse ()
9945Run the syntactic analysis, and return @code{true} on success,
9946@code{false} otherwise.
9947@end deftypemethod
9948
9949@deftypemethod {YYParser} {boolean} getErrorVerbose ()
9950@deftypemethodx {YYParser} {void} setErrorVerbose (boolean @var{verbose})
9951Get or set the option to produce verbose error messages. These are only
9952available with @samp{%define parse.error verbose}, which also turns on
9953verbose error messages.
9954@end deftypemethod
9955
9956@deftypemethod {YYParser} {void} yyerror (String @var{msg})
9957@deftypemethodx {YYParser} {void} yyerror (Position @var{pos}, String @var{msg})
9958@deftypemethodx {YYParser} {void} yyerror (Location @var{loc}, String @var{msg})
9959Print an error message using the @code{yyerror} method of the scanner
9960instance in use. The @code{Location} and @code{Position} parameters are
9961available only if location tracking is active.
9962@end deftypemethod
9963
9964@deftypemethod {YYParser} {boolean} recovering ()
9965During the syntactic analysis, return @code{true} if recovering
9966from a syntax error.
9967@xref{Error Recovery}.
9968@end deftypemethod
9969
9970@deftypemethod {YYParser} {java.io.PrintStream} getDebugStream ()
9971@deftypemethodx {YYParser} {void} setDebugStream (java.io.printStream @var{o})
9972Get or set the stream used for tracing the parsing. It defaults to
9973@code{System.err}.
9974@end deftypemethod
9975
9976@deftypemethod {YYParser} {int} getDebugLevel ()
9977@deftypemethodx {YYParser} {void} setDebugLevel (int @var{l})
9978Get or set the tracing level. Currently its value is either 0, no trace,
9979or nonzero, full tracing.
9980@end deftypemethod
9981
9982@deftypecv {Constant} {YYParser} {String} {bisonVersion}
9983@deftypecvx {Constant} {YYParser} {String} {bisonSkeleton}
9984Identify the Bison version and skeleton used to generate this parser.
9985@end deftypecv
9986
9987
9988@node Java Scanner Interface
9989@subsection Java Scanner Interface
9990@c - %code lexer
9991@c - %lex-param
9992@c - Lexer interface
9993
9994There are two possible ways to interface a Bison-generated Java parser
9995with a scanner: the scanner may be defined by @code{%code lexer}, or
9996defined elsewhere. In either case, the scanner has to implement the
9997@code{Lexer} inner interface of the parser class. This interface also
9998contain constants for all user-defined token names and the predefined
9999@code{EOF} token.
10000
10001In the first case, the body of the scanner class is placed in
10002@code{%code lexer} blocks. If you want to pass parameters from the
10003parser constructor to the scanner constructor, specify them with
10004@code{%lex-param}; they are passed before @code{%parse-param}s to the
10005constructor.
10006
10007In the second case, the scanner has to implement the @code{Lexer} interface,
10008which is defined within the parser class (e.g., @code{YYParser.Lexer}).
10009The constructor of the parser object will then accept an object
10010implementing the interface; @code{%lex-param} is not used in this
10011case.
10012
10013In both cases, the scanner has to implement the following methods.
10014
10015@deftypemethod {Lexer} {void} yyerror (Location @var{loc}, String @var{msg})
10016This method is defined by the user to emit an error message. The first
10017parameter is omitted if location tracking is not active. Its type can be
10018changed using @samp{%define location_type "@var{class-name}".}
10019@end deftypemethod
10020
10021@deftypemethod {Lexer} {int} yylex ()
10022Return the next token. Its type is the return value, its semantic
10023value and location are saved and returned by the their methods in the
10024interface.
10025
10026Use @samp{%define lex_throws} to specify any uncaught exceptions.
10027Default is @code{java.io.IOException}.
10028@end deftypemethod
10029
10030@deftypemethod {Lexer} {Position} getStartPos ()
10031@deftypemethodx {Lexer} {Position} getEndPos ()
10032Return respectively the first position of the last token that
10033@code{yylex} returned, and the first position beyond it. These
10034methods are not needed unless location tracking is active.
10035
10036The return type can be changed using @samp{%define position_type
10037"@var{class-name}".}
10038@end deftypemethod
10039
10040@deftypemethod {Lexer} {Object} getLVal ()
10041Return the semantic value of the last token that yylex returned.
10042
10043The return type can be changed using @samp{%define stype
10044"@var{class-name}".}
10045@end deftypemethod
10046
10047
10048@node Java Action Features
10049@subsection Special Features for Use in Java Actions
10050
10051The following special constructs can be uses in Java actions.
10052Other analogous C action features are currently unavailable for Java.
10053
10054Use @samp{%define throws} to specify any uncaught exceptions from parser
10055actions, and initial actions specified by @code{%initial-action}.
10056
10057@defvar $@var{n}
10058The semantic value for the @var{n}th component of the current rule.
10059This may not be assigned to.
10060@xref{Java Semantic Values}.
10061@end defvar
10062
10063@defvar $<@var{typealt}>@var{n}
10064Like @code{$@var{n}} but specifies a alternative type @var{typealt}.
10065@xref{Java Semantic Values}.
10066@end defvar
10067
10068@defvar $$
10069The semantic value for the grouping made by the current rule. As a
10070value, this is in the base type (@code{Object} or as specified by
10071@samp{%define stype}) as in not cast to the declared subtype because
10072casts are not allowed on the left-hand side of Java assignments.
10073Use an explicit Java cast if the correct subtype is needed.
10074@xref{Java Semantic Values}.
10075@end defvar
10076
10077@defvar $<@var{typealt}>$
10078Same as @code{$$} since Java always allow assigning to the base type.
10079Perhaps we should use this and @code{$<>$} for the value and @code{$$}
10080for setting the value but there is currently no easy way to distinguish
10081these constructs.
10082@xref{Java Semantic Values}.
10083@end defvar
10084
10085@defvar @@@var{n}
10086The location information of the @var{n}th component of the current rule.
10087This may not be assigned to.
10088@xref{Java Location Values}.
10089@end defvar
10090
10091@defvar @@$
10092The location information of the grouping made by the current rule.
10093@xref{Java Location Values}.
10094@end defvar
10095
10096@deffn {Statement} {return YYABORT;}
10097Return immediately from the parser, indicating failure.
10098@xref{Java Parser Interface}.
10099@end deffn
10100
10101@deffn {Statement} {return YYACCEPT;}
10102Return immediately from the parser, indicating success.
10103@xref{Java Parser Interface}.
10104@end deffn
10105
10106@deffn {Statement} {return YYERROR;}
10107Start error recovery without printing an error message.
10108@xref{Error Recovery}.
10109@end deffn
10110
10111@deftypefn {Function} {boolean} recovering ()
10112Return whether error recovery is being done. In this state, the parser
10113reads token until it reaches a known state, and then restarts normal
10114operation.
10115@xref{Error Recovery}.
10116@end deftypefn
10117
10118@deftypefn {Function} {void} yyerror (String @var{msg})
10119@deftypefnx {Function} {void} yyerror (Position @var{loc}, String @var{msg})
10120@deftypefnx {Function} {void} yyerror (Location @var{loc}, String @var{msg})
10121Print an error message using the @code{yyerror} method of the scanner
10122instance in use. The @code{Location} and @code{Position} parameters are
10123available only if location tracking is active.
10124@end deftypefn
10125
10126
10127@node Java Differences
10128@subsection Differences between C/C++ and Java Grammars
10129
10130The different structure of the Java language forces several differences
10131between C/C++ grammars, and grammars designed for Java parsers. This
10132section summarizes these differences.
10133
10134@itemize
10135@item
10136Java lacks a preprocessor, so the @code{YYERROR}, @code{YYACCEPT},
10137@code{YYABORT} symbols (@pxref{Table of Symbols}) cannot obviously be
10138macros. Instead, they should be preceded by @code{return} when they
10139appear in an action. The actual definition of these symbols is
10140opaque to the Bison grammar, and it might change in the future. The
10141only meaningful operation that you can do, is to return them.
10142See @pxref{Java Action Features}.
10143
10144Note that of these three symbols, only @code{YYACCEPT} and
10145@code{YYABORT} will cause a return from the @code{yyparse}
10146method@footnote{Java parsers include the actions in a separate
10147method than @code{yyparse} in order to have an intuitive syntax that
10148corresponds to these C macros.}.
10149
10150@item
10151Java lacks unions, so @code{%union} has no effect. Instead, semantic
10152values have a common base type: @code{Object} or as specified by
10153@samp{%define stype}. Angle brackets on @code{%token}, @code{type},
10154@code{$@var{n}} and @code{$$} specify subtypes rather than fields of
10155an union. The type of @code{$$}, even with angle brackets, is the base
10156type since Java casts are not allow on the left-hand side of assignments.
10157Also, @code{$@var{n}} and @code{@@@var{n}} are not allowed on the
10158left-hand side of assignments. See @pxref{Java Semantic Values} and
10159@pxref{Java Action Features}.
10160
10161@item
10162The prologue declarations have a different meaning than in C/C++ code.
10163@table @asis
10164@item @code{%code imports}
10165blocks are placed at the beginning of the Java source code. They may
10166include copyright notices. For a @code{package} declarations, it is
10167suggested to use @samp{%define package} instead.
10168
10169@item unqualified @code{%code}
10170blocks are placed inside the parser class.
10171
10172@item @code{%code lexer}
10173blocks, if specified, should include the implementation of the
10174scanner. If there is no such block, the scanner can be any class
10175that implements the appropriate interface (see @pxref{Java Scanner
10176Interface}).
10177@end table
10178
10179Other @code{%code} blocks are not supported in Java parsers.
10180In particular, @code{%@{ @dots{} %@}} blocks should not be used
10181and may give an error in future versions of Bison.
10182
10183The epilogue has the same meaning as in C/C++ code and it can
10184be used to define other classes used by the parser @emph{outside}
10185the parser class.
10186@end itemize
10187
10188
10189@node Java Declarations Summary
10190@subsection Java Declarations Summary
10191
10192This summary only include declarations specific to Java or have special
10193meaning when used in a Java parser.
10194
10195@deffn {Directive} {%language "Java"}
10196Generate a Java class for the parser.
10197@end deffn
10198
10199@deffn {Directive} %lex-param @{@var{type} @var{name}@}
10200A parameter for the lexer class defined by @code{%code lexer}
10201@emph{only}, added as parameters to the lexer constructor and the parser
10202constructor that @emph{creates} a lexer. Default is none.
10203@xref{Java Scanner Interface}.
10204@end deffn
10205
10206@deffn {Directive} %name-prefix "@var{prefix}"
10207The prefix of the parser class name @code{@var{prefix}Parser} if
10208@samp{%define parser_class_name} is not used. Default is @code{YY}.
10209@xref{Java Bison Interface}.
10210@end deffn
10211
10212@deffn {Directive} %parse-param @{@var{type} @var{name}@}
10213A parameter for the parser class added as parameters to constructor(s)
10214and as fields initialized by the constructor(s). Default is none.
10215@xref{Java Parser Interface}.
10216@end deffn
10217
10218@deffn {Directive} %token <@var{type}> @var{token} @dots{}
10219Declare tokens. Note that the angle brackets enclose a Java @emph{type}.
10220@xref{Java Semantic Values}.
10221@end deffn
10222
10223@deffn {Directive} %type <@var{type}> @var{nonterminal} @dots{}
10224Declare the type of nonterminals. Note that the angle brackets enclose
10225a Java @emph{type}.
10226@xref{Java Semantic Values}.
10227@end deffn
10228
10229@deffn {Directive} %code @{ @var{code} @dots{} @}
10230Code appended to the inside of the parser class.
10231@xref{Java Differences}.
10232@end deffn
10233
10234@deffn {Directive} {%code imports} @{ @var{code} @dots{} @}
10235Code inserted just after the @code{package} declaration.
10236@xref{Java Differences}.
10237@end deffn
10238
10239@deffn {Directive} {%code init} @{ @var{code} @dots{} @}
10240Code inserted at the beginning of the parser constructor body.
10241@xref{Java Parser Interface}.
10242@end deffn
10243
10244@deffn {Directive} {%code lexer} @{ @var{code} @dots{} @}
10245Code added to the body of a inner lexer class within the parser class.
10246@xref{Java Scanner Interface}.
10247@end deffn
10248
10249@deffn {Directive} %% @var{code} @dots{}
10250Code (after the second @code{%%}) appended to the end of the file,
10251@emph{outside} the parser class.
10252@xref{Java Differences}.
10253@end deffn
10254
10255@deffn {Directive} %@{ @var{code} @dots{} %@}
10256Not supported. Use @code{%code imports} instead.
10257@xref{Java Differences}.
10258@end deffn
10259
10260@deffn {Directive} {%define abstract}
10261Whether the parser class is declared @code{abstract}. Default is false.
10262@xref{Java Bison Interface}.
10263@end deffn
10264
10265@deffn {Directive} {%define annotations} "@var{annotations}"
10266The Java annotations for the parser class. Default is none.
10267@xref{Java Bison Interface}.
10268@end deffn
10269
10270@deffn {Directive} {%define extends} "@var{superclass}"
10271The superclass of the parser class. Default is none.
10272@xref{Java Bison Interface}.
10273@end deffn
10274
10275@deffn {Directive} {%define final}
10276Whether the parser class is declared @code{final}. Default is false.
10277@xref{Java Bison Interface}.
10278@end deffn
10279
10280@deffn {Directive} {%define implements} "@var{interfaces}"
10281The implemented interfaces of the parser class, a comma-separated list.
10282Default is none.
10283@xref{Java Bison Interface}.
10284@end deffn
10285
10286@deffn {Directive} {%define init_throws} "@var{exceptions}"
10287The exceptions thrown by @code{%code init} from the parser class
10288constructor. Default is none.
10289@xref{Java Parser Interface}.
10290@end deffn
10291
10292@deffn {Directive} {%define lex_throws} "@var{exceptions}"
10293The exceptions thrown by the @code{yylex} method of the lexer, a
10294comma-separated list. Default is @code{java.io.IOException}.
10295@xref{Java Scanner Interface}.
10296@end deffn
10297
10298@deffn {Directive} {%define location_type} "@var{class}"
10299The name of the class used for locations (a range between two
10300positions). This class is generated as an inner class of the parser
10301class by @command{bison}. Default is @code{Location}.
10302@xref{Java Location Values}.
10303@end deffn
10304
10305@deffn {Directive} {%define package} "@var{package}"
10306The package to put the parser class in. Default is none.
10307@xref{Java Bison Interface}.
10308@end deffn
10309
10310@deffn {Directive} {%define parser_class_name} "@var{name}"
10311The name of the parser class. Default is @code{YYParser} or
10312@code{@var{name-prefix}Parser}.
10313@xref{Java Bison Interface}.
10314@end deffn
10315
10316@deffn {Directive} {%define position_type} "@var{class}"
10317The name of the class used for positions. This class must be supplied by
10318the user. Default is @code{Position}.
10319@xref{Java Location Values}.
10320@end deffn
10321
10322@deffn {Directive} {%define public}
10323Whether the parser class is declared @code{public}. Default is false.
10324@xref{Java Bison Interface}.
10325@end deffn
10326
10327@deffn {Directive} {%define stype} "@var{class}"
10328The base type of semantic values. Default is @code{Object}.
10329@xref{Java Semantic Values}.
10330@end deffn
10331
10332@deffn {Directive} {%define strictfp}
10333Whether the parser class is declared @code{strictfp}. Default is false.
10334@xref{Java Bison Interface}.
10335@end deffn
10336
10337@deffn {Directive} {%define throws} "@var{exceptions}"
10338The exceptions thrown by user-supplied parser actions and
10339@code{%initial-action}, a comma-separated list. Default is none.
10340@xref{Java Parser Interface}.
10341@end deffn
10342
10343
10344@c ================================================= FAQ
10345
10346@node FAQ
10347@chapter Frequently Asked Questions
10348@cindex frequently asked questions
10349@cindex questions
10350
10351Several questions about Bison come up occasionally. Here some of them
10352are addressed.
10353
10354@menu
10355* Memory Exhausted:: Breaking the Stack Limits
10356* How Can I Reset the Parser:: @code{yyparse} Keeps some State
10357* Strings are Destroyed:: @code{yylval} Loses Track of Strings
10358* Implementing Gotos/Loops:: Control Flow in the Calculator
10359* Multiple start-symbols:: Factoring closely related grammars
10360* Secure? Conform?:: Is Bison POSIX safe?
10361* I can't build Bison:: Troubleshooting
10362* Where can I find help?:: Troubleshouting
10363* Bug Reports:: Troublereporting
10364* More Languages:: Parsers in C++, Java, and so on
10365* Beta Testing:: Experimenting development versions
10366* Mailing Lists:: Meeting other Bison users
10367@end menu
10368
10369@node Memory Exhausted
10370@section Memory Exhausted
10371
10372@display
10373My parser returns with error with a @samp{memory exhausted}
10374message. What can I do?
10375@end display
10376
10377This question is already addressed elsewhere, @xref{Recursion,
10378,Recursive Rules}.
10379
10380@node How Can I Reset the Parser
10381@section How Can I Reset the Parser
10382
10383The following phenomenon has several symptoms, resulting in the
10384following typical questions:
10385
10386@display
10387I invoke @code{yyparse} several times, and on correct input it works
10388properly; but when a parse error is found, all the other calls fail
10389too. How can I reset the error flag of @code{yyparse}?
10390@end display
10391
10392@noindent
10393or
10394
10395@display
10396My parser includes support for an @samp{#include}-like feature, in
10397which case I run @code{yyparse} from @code{yyparse}. This fails
10398although I did specify @samp{%define api.pure}.
10399@end display
10400
10401These problems typically come not from Bison itself, but from
10402Lex-generated scanners. Because these scanners use large buffers for
10403speed, they might not notice a change of input file. As a
10404demonstration, consider the following source file,
10405@file{first-line.l}:
10406
10407@verbatim
10408%{
10409#include <stdio.h>
10410#include <stdlib.h>
10411%}
10412%%
10413.*\n ECHO; return 1;
10414%%
10415int
10416yyparse (char const *file)
10417{
10418 yyin = fopen (file, "r");
10419 if (!yyin)
10420 exit (2);
10421 /* One token only. */
10422 yylex ();
10423 if (fclose (yyin) != 0)
10424 exit (3);
10425 return 0;
10426}
10427
10428int
10429main (void)
10430{
10431 yyparse ("input");
10432 yyparse ("input");
10433 return 0;
10434}
10435@end verbatim
10436
10437@noindent
10438If the file @file{input} contains
10439
10440@verbatim
10441input:1: Hello,
10442input:2: World!
10443@end verbatim
10444
10445@noindent
10446then instead of getting the first line twice, you get:
10447
10448@example
10449$ @kbd{flex -ofirst-line.c first-line.l}
10450$ @kbd{gcc -ofirst-line first-line.c -ll}
10451$ @kbd{./first-line}
10452input:1: Hello,
10453input:2: World!
10454@end example
10455
10456Therefore, whenever you change @code{yyin}, you must tell the
10457Lex-generated scanner to discard its current buffer and switch to the
10458new one. This depends upon your implementation of Lex; see its
10459documentation for more. For Flex, it suffices to call
10460@samp{YY_FLUSH_BUFFER} after each change to @code{yyin}. If your
10461Flex-generated scanner needs to read from several input streams to
10462handle features like include files, you might consider using Flex
10463functions like @samp{yy_switch_to_buffer} that manipulate multiple
10464input buffers.
10465
10466If your Flex-generated scanner uses start conditions (@pxref{Start
10467conditions, , Start conditions, flex, The Flex Manual}), you might
10468also want to reset the scanner's state, i.e., go back to the initial
10469start condition, through a call to @samp{BEGIN (0)}.
10470
10471@node Strings are Destroyed
10472@section Strings are Destroyed
10473
10474@display
10475My parser seems to destroy old strings, or maybe it loses track of
10476them. Instead of reporting @samp{"foo", "bar"}, it reports
10477@samp{"bar", "bar"}, or even @samp{"foo\nbar", "bar"}.
10478@end display
10479
10480This error is probably the single most frequent ``bug report'' sent to
10481Bison lists, but is only concerned with a misunderstanding of the role
10482of the scanner. Consider the following Lex code:
10483
10484@verbatim
10485%{
10486#include <stdio.h>
10487char *yylval = NULL;
10488%}
10489%%
10490.* yylval = yytext; return 1;
10491\n /* IGNORE */
10492%%
10493int
10494main ()
10495{
10496 /* Similar to using $1, $2 in a Bison action. */
10497 char *fst = (yylex (), yylval);
10498 char *snd = (yylex (), yylval);
10499 printf ("\"%s\", \"%s\"\n", fst, snd);
10500 return 0;
10501}
10502@end verbatim
10503
10504If you compile and run this code, you get:
10505
10506@example
10507$ @kbd{flex -osplit-lines.c split-lines.l}
10508$ @kbd{gcc -osplit-lines split-lines.c -ll}
10509$ @kbd{printf 'one\ntwo\n' | ./split-lines}
10510"one
10511two", "two"
10512@end example
10513
10514@noindent
10515this is because @code{yytext} is a buffer provided for @emph{reading}
10516in the action, but if you want to keep it, you have to duplicate it
10517(e.g., using @code{strdup}). Note that the output may depend on how
10518your implementation of Lex handles @code{yytext}. For instance, when
10519given the Lex compatibility option @option{-l} (which triggers the
10520option @samp{%array}) Flex generates a different behavior:
10521
10522@example
10523$ @kbd{flex -l -osplit-lines.c split-lines.l}
10524$ @kbd{gcc -osplit-lines split-lines.c -ll}
10525$ @kbd{printf 'one\ntwo\n' | ./split-lines}
10526"two", "two"
10527@end example
10528
10529
10530@node Implementing Gotos/Loops
10531@section Implementing Gotos/Loops
10532
10533@display
10534My simple calculator supports variables, assignments, and functions,
10535but how can I implement gotos, or loops?
10536@end display
10537
10538Although very pedagogical, the examples included in the document blur
10539the distinction to make between the parser---whose job is to recover
10540the structure of a text and to transmit it to subsequent modules of
10541the program---and the processing (such as the execution) of this
10542structure. This works well with so called straight line programs,
10543i.e., precisely those that have a straightforward execution model:
10544execute simple instructions one after the others.
10545
10546@cindex abstract syntax tree
10547@cindex AST
10548If you want a richer model, you will probably need to use the parser
10549to construct a tree that does represent the structure it has
10550recovered; this tree is usually called the @dfn{abstract syntax tree},
10551or @dfn{AST} for short. Then, walking through this tree,
10552traversing it in various ways, will enable treatments such as its
10553execution or its translation, which will result in an interpreter or a
10554compiler.
10555
10556This topic is way beyond the scope of this manual, and the reader is
10557invited to consult the dedicated literature.
10558
10559
10560@node Multiple start-symbols
10561@section Multiple start-symbols
10562
10563@display
10564I have several closely related grammars, and I would like to share their
10565implementations. In fact, I could use a single grammar but with
10566multiple entry points.
10567@end display
10568
10569Bison does not support multiple start-symbols, but there is a very
10570simple means to simulate them. If @code{foo} and @code{bar} are the two
10571pseudo start-symbols, then introduce two new tokens, say
10572@code{START_FOO} and @code{START_BAR}, and use them as switches from the
10573real start-symbol:
10574
10575@example
10576%token START_FOO START_BAR;
10577%start start;
10578start: START_FOO foo
10579 | START_BAR bar;
10580@end example
10581
10582These tokens prevents the introduction of new conflicts. As far as the
10583parser goes, that is all that is needed.
10584
10585Now the difficult part is ensuring that the scanner will send these
10586tokens first. If your scanner is hand-written, that should be
10587straightforward. If your scanner is generated by Lex, them there is
10588simple means to do it: recall that anything between @samp{%@{ ... %@}}
10589after the first @code{%%} is copied verbatim in the top of the generated
10590@code{yylex} function. Make sure a variable @code{start_token} is
10591available in the scanner (e.g., a global variable or using
10592@code{%lex-param} etc.), and use the following:
10593
10594@example
10595 /* @r{Prologue.} */
10596%%
10597%@{
10598 if (start_token)
10599 @{
10600 int t = start_token;
10601 start_token = 0;
10602 return t;
10603 @}
10604%@}
10605 /* @r{The rules.} */
10606@end example
10607
10608
10609@node Secure? Conform?
10610@section Secure? Conform?
10611
10612@display
10613Is Bison secure? Does it conform to POSIX?
10614@end display
10615
10616If you're looking for a guarantee or certification, we don't provide it.
10617However, Bison is intended to be a reliable program that conforms to the
10618POSIX specification for Yacc. If you run into problems,
10619please send us a bug report.
10620
10621@node I can't build Bison
10622@section I can't build Bison
10623
10624@display
10625I can't build Bison because @command{make} complains that
10626@code{msgfmt} is not found.
10627What should I do?
10628@end display
10629
10630Like most GNU packages with internationalization support, that feature
10631is turned on by default. If you have problems building in the @file{po}
10632subdirectory, it indicates that your system's internationalization
10633support is lacking. You can re-configure Bison with
10634@option{--disable-nls} to turn off this support, or you can install GNU
10635gettext from @url{ftp://ftp.gnu.org/gnu/gettext/} and re-configure
10636Bison. See the file @file{ABOUT-NLS} for more information.
10637
10638
10639@node Where can I find help?
10640@section Where can I find help?
10641
10642@display
10643I'm having trouble using Bison. Where can I find help?
10644@end display
10645
10646First, read this fine manual. Beyond that, you can send mail to
10647@email{help-bison@@gnu.org}. This mailing list is intended to be
10648populated with people who are willing to answer questions about using
10649and installing Bison. Please keep in mind that (most of) the people on
10650the list have aspects of their lives which are not related to Bison (!),
10651so you may not receive an answer to your question right away. This can
10652be frustrating, but please try not to honk them off; remember that any
10653help they provide is purely voluntary and out of the kindness of their
10654hearts.
10655
10656@node Bug Reports
10657@section Bug Reports
10658
10659@display
10660I found a bug. What should I include in the bug report?
10661@end display
10662
10663Before you send a bug report, make sure you are using the latest
10664version. Check @url{ftp://ftp.gnu.org/pub/gnu/bison/} or one of its
10665mirrors. Be sure to include the version number in your bug report. If
10666the bug is present in the latest version but not in a previous version,
10667try to determine the most recent version which did not contain the bug.
10668
10669If the bug is parser-related, you should include the smallest grammar
10670you can which demonstrates the bug. The grammar file should also be
10671complete (i.e., I should be able to run it through Bison without having
10672to edit or add anything). The smaller and simpler the grammar, the
10673easier it will be to fix the bug.
10674
10675Include information about your compilation environment, including your
10676operating system's name and version and your compiler's name and
10677version. If you have trouble compiling, you should also include a
10678transcript of the build session, starting with the invocation of
10679`configure'. Depending on the nature of the bug, you may be asked to
10680send additional files as well (such as `config.h' or `config.cache').
10681
10682Patches are most welcome, but not required. That is, do not hesitate to
10683send a bug report just because you can not provide a fix.
10684
10685Send bug reports to @email{bug-bison@@gnu.org}.
10686
10687@node More Languages
10688@section More Languages
10689
10690@display
10691Will Bison ever have C++ and Java support? How about @var{insert your
10692favorite language here}?
10693@end display
10694
10695C++ and Java support is there now, and is documented. We'd love to add other
10696languages; contributions are welcome.
10697
10698@node Beta Testing
10699@section Beta Testing
10700
10701@display
10702What is involved in being a beta tester?
10703@end display
10704
10705It's not terribly involved. Basically, you would download a test
10706release, compile it, and use it to build and run a parser or two. After
10707that, you would submit either a bug report or a message saying that
10708everything is okay. It is important to report successes as well as
10709failures because test releases eventually become mainstream releases,
10710but only if they are adequately tested. If no one tests, development is
10711essentially halted.
10712
10713Beta testers are particularly needed for operating systems to which the
10714developers do not have easy access. They currently have easy access to
10715recent GNU/Linux and Solaris versions. Reports about other operating
10716systems are especially welcome.
10717
10718@node Mailing Lists
10719@section Mailing Lists
10720
10721@display
10722How do I join the help-bison and bug-bison mailing lists?
10723@end display
10724
10725See @url{http://lists.gnu.org/}.
10726
10727@c ================================================= Table of Symbols
10728
10729@node Table of Symbols
10730@appendix Bison Symbols
10731@cindex Bison symbols, table of
10732@cindex symbols in Bison, table of
10733
10734@deffn {Variable} @@$
10735In an action, the location of the left-hand side of the rule.
10736@xref{Locations, , Locations Overview}.
10737@end deffn
10738
10739@deffn {Variable} @@@var{n}
10740In an action, the location of the @var{n}-th symbol of the right-hand
10741side of the rule. @xref{Locations, , Locations Overview}.
10742@end deffn
10743
10744@deffn {Variable} @@@var{name}
10745In an action, the location of a symbol addressed by name.
10746@xref{Locations, , Locations Overview}.
10747@end deffn
10748
10749@deffn {Variable} @@[@var{name}]
10750In an action, the location of a symbol addressed by name.
10751@xref{Locations, , Locations Overview}.
10752@end deffn
10753
10754@deffn {Variable} $$
10755In an action, the semantic value of the left-hand side of the rule.
10756@xref{Actions}.
10757@end deffn
10758
10759@deffn {Variable} $@var{n}
10760In an action, the semantic value of the @var{n}-th symbol of the
10761right-hand side of the rule. @xref{Actions}.
10762@end deffn
10763
10764@deffn {Variable} $@var{name}
10765In an action, the semantic value of a symbol addressed by name.
10766@xref{Actions}.
10767@end deffn
10768
10769@deffn {Variable} $[@var{name}]
10770In an action, the semantic value of a symbol addressed by name.
10771@xref{Actions}.
10772@end deffn
10773
10774@deffn {Delimiter} %%
10775Delimiter used to separate the grammar rule section from the
10776Bison declarations section or the epilogue.
10777@xref{Grammar Layout, ,The Overall Layout of a Bison Grammar}.
10778@end deffn
10779
10780@c Don't insert spaces, or check the DVI output.
10781@deffn {Delimiter} %@{@var{code}%@}
10782All code listed between @samp{%@{} and @samp{%@}} is copied directly to
10783the output file uninterpreted. Such code forms the prologue of the input
10784file. @xref{Grammar Outline, ,Outline of a Bison
10785Grammar}.
10786@end deffn
10787
10788@deffn {Directive} %?@{@var{expression}@}
10789Predicate actions. This is a type of action clause that may appear in
10790rules. The expression is evaluated, and if false, causes a syntax error. In
10791GLR parsers during nondeterministic operation,
10792this silently causes an alternative parse to die. During deterministic
10793operation, it is the same as the effect of YYERROR.
10794@xref{Semantic Predicates}.
10795
10796This feature is experimental.
10797More user feedback will help to determine whether it should become a permanent
10798feature.
10799@end deffn
10800
10801@deffn {Construct} /*@dots{}*/
10802Comment delimiters, as in C.
10803@end deffn
10804
10805@deffn {Delimiter} :
10806Separates a rule's result from its components. @xref{Rules, ,Syntax of
10807Grammar Rules}.
10808@end deffn
10809
10810@deffn {Delimiter} ;
10811Terminates a rule. @xref{Rules, ,Syntax of Grammar Rules}.
10812@end deffn
10813
10814@deffn {Delimiter} |
10815Separates alternate rules for the same result nonterminal.
10816@xref{Rules, ,Syntax of Grammar Rules}.
10817@end deffn
10818
10819@deffn {Directive} <*>
10820Used to define a default tagged @code{%destructor} or default tagged
10821@code{%printer}.
10822
10823This feature is experimental.
10824More user feedback will help to determine whether it should become a permanent
10825feature.
10826
10827@xref{Destructor Decl, , Freeing Discarded Symbols}.
10828@end deffn
10829
10830@deffn {Directive} <>
10831Used to define a default tagless @code{%destructor} or default tagless
10832@code{%printer}.
10833
10834This feature is experimental.
10835More user feedback will help to determine whether it should become a permanent
10836feature.
10837
10838@xref{Destructor Decl, , Freeing Discarded Symbols}.
10839@end deffn
10840
10841@deffn {Symbol} $accept
10842The predefined nonterminal whose only rule is @samp{$accept: @var{start}
10843$end}, where @var{start} is the start symbol. @xref{Start Decl, , The
10844Start-Symbol}. It cannot be used in the grammar.
10845@end deffn
10846
10847@deffn {Directive} %code @{@var{code}@}
10848@deffnx {Directive} %code @var{qualifier} @{@var{code}@}
10849Insert @var{code} verbatim into output parser source.
10850@xref{Decl Summary,,%code}.
10851@end deffn
10852
10853@deffn {Directive} %debug
10854Equip the parser for debugging. @xref{Decl Summary}.
10855@end deffn
10856
10857@ifset defaultprec
10858@deffn {Directive} %default-prec
10859Assign a precedence to rules that lack an explicit @samp{%prec}
10860modifier. @xref{Contextual Precedence, ,Context-Dependent
10861Precedence}.
10862@end deffn
10863@end ifset
10864
10865@deffn {Directive} %define @var{define-variable}
10866@deffnx {Directive} %define @var{define-variable} @var{value}
10867@deffnx {Directive} %define @var{define-variable} "@var{value}"
10868Define a variable to adjust Bison's behavior.
10869@xref{Decl Summary,,%define}.
10870@end deffn
10871
10872@deffn {Directive} %defines
10873Bison declaration to create a header file meant for the scanner.
10874@xref{Decl Summary}.
10875@end deffn
10876
10877@deffn {Directive} %defines @var{defines-file}
10878Same as above, but save in the file @var{defines-file}.
10879@xref{Decl Summary}.
10880@end deffn
10881
10882@deffn {Directive} %destructor
10883Specify how the parser should reclaim the memory associated to
10884discarded symbols. @xref{Destructor Decl, , Freeing Discarded Symbols}.
10885@end deffn
10886
10887@deffn {Directive} %dprec
10888Bison declaration to assign a precedence to a rule that is used at parse
10889time to resolve reduce/reduce conflicts. @xref{GLR Parsers, ,Writing
10890GLR Parsers}.
10891@end deffn
10892
10893@deffn {Symbol} $end
10894The predefined token marking the end of the token stream. It cannot be
10895used in the grammar.
10896@end deffn
10897
10898@deffn {Symbol} error
10899A token name reserved for error recovery. This token may be used in
10900grammar rules so as to allow the Bison parser to recognize an error in
10901the grammar without halting the process. In effect, a sentence
10902containing an error may be recognized as valid. On a syntax error, the
10903token @code{error} becomes the current lookahead token. Actions
10904corresponding to @code{error} are then executed, and the lookahead
10905token is reset to the token that originally caused the violation.
10906@xref{Error Recovery}.
10907@end deffn
10908
10909@deffn {Directive} %error-verbose
10910An obsolete directive standing for @samp{%define parse.error verbose}.
10911@end deffn
10912
10913@deffn {Directive} %file-prefix "@var{prefix}"
10914Bison declaration to set the prefix of the output files. @xref{Decl
10915Summary}.
10916@end deffn
10917
10918@deffn {Directive} %glr-parser
10919Bison declaration to produce a GLR parser. @xref{GLR
10920Parsers, ,Writing GLR Parsers}.
10921@end deffn
10922
10923@deffn {Directive} %initial-action
10924Run user code before parsing. @xref{Initial Action Decl, , Performing Actions before Parsing}.
10925@end deffn
10926
10927@deffn {Directive} %language
10928Specify the programming language for the generated parser.
10929@xref{Decl Summary}.
10930@end deffn
10931
10932@deffn {Directive} %left
10933Bison declaration to assign precedence and left associativity to token(s).
10934@xref{Precedence Decl, ,Operator Precedence}.
10935@end deffn
10936
10937@deffn {Directive} %lex-param @{@var{argument-declaration}@} @dots{}
10938Bison declaration to specifying additional arguments that
10939@code{yylex} should accept. @xref{Pure Calling,, Calling Conventions
10940for Pure Parsers}.
10941@end deffn
10942
10943@deffn {Directive} %merge
10944Bison declaration to assign a merging function to a rule. If there is a
10945reduce/reduce conflict with a rule having the same merging function, the
10946function is applied to the two semantic values to get a single result.
10947@xref{GLR Parsers, ,Writing GLR Parsers}.
10948@end deffn
10949
10950@deffn {Directive} %name-prefix "@var{prefix}"
10951Bison declaration to rename the external symbols. @xref{Decl Summary}.
10952@end deffn
10953
10954@ifset defaultprec
10955@deffn {Directive} %no-default-prec
10956Do not assign a precedence to rules that lack an explicit @samp{%prec}
10957modifier. @xref{Contextual Precedence, ,Context-Dependent
10958Precedence}.
10959@end deffn
10960@end ifset
10961
10962@deffn {Directive} %no-lines
10963Bison declaration to avoid generating @code{#line} directives in the
10964parser file. @xref{Decl Summary}.
10965@end deffn
10966
10967@deffn {Directive} %nonassoc
10968Bison declaration to assign precedence and nonassociativity to token(s).
10969@xref{Precedence Decl, ,Operator Precedence}.
10970@end deffn
10971
10972@deffn {Directive} %output "@var{file}"
10973Bison declaration to set the name of the parser file. @xref{Decl
10974Summary}.
10975@end deffn
10976
10977@deffn {Directive} %param @{@var{argument-declaration}@} @dots{}
10978Bison declaration to specify additional arguments that both
10979@code{yylex} and @code{yyparse} should accept. @xref{Parser Function,, The
10980Parser Function @code{yyparse}}.
10981@end deffn
10982
10983@deffn {Directive} %parse-param @{@var{argument-declaration}@} @dots{}
10984Bison declaration to specify additional arguments that @code{yyparse}
10985should accept. @xref{Parser Function,, The Parser Function @code{yyparse}}.
10986@end deffn
10987
10988@deffn {Directive} %prec
10989Bison declaration to assign a precedence to a specific rule.
10990@xref{Contextual Precedence, ,Context-Dependent Precedence}.
10991@end deffn
10992
10993@deffn {Directive} %precedence
10994Bison declaration to assign precedence to token(s), but no associativity
10995@xref{Precedence Decl, ,Operator Precedence}.
10996@end deffn
10997
10998@deffn {Directive} %pure-parser
10999Deprecated version of @samp{%define api.pure} (@pxref{Decl Summary, ,%define}),
11000for which Bison is more careful to warn about unreasonable usage.
11001@end deffn
11002
11003@deffn {Directive} %require "@var{version}"
11004Require version @var{version} or higher of Bison. @xref{Require Decl, ,
11005Require a Version of Bison}.
11006@end deffn
11007
11008@deffn {Directive} %right
11009Bison declaration to assign precedence and right associativity to token(s).
11010@xref{Precedence Decl, ,Operator Precedence}.
11011@end deffn
11012
11013@deffn {Directive} %skeleton
11014Specify the skeleton to use; usually for development.
11015@xref{Decl Summary}.
11016@end deffn
11017
11018@deffn {Directive} %start
11019Bison declaration to specify the start symbol. @xref{Start Decl, ,The
11020Start-Symbol}.
11021@end deffn
11022
11023@deffn {Directive} %token
11024Bison declaration to declare token(s) without specifying precedence.
11025@xref{Token Decl, ,Token Type Names}.
11026@end deffn
11027
11028@deffn {Directive} %token-table
11029Bison declaration to include a token name table in the parser file.
11030@xref{Decl Summary}.
11031@end deffn
11032
11033@deffn {Directive} %type
11034Bison declaration to declare nonterminals. @xref{Type Decl,
11035,Nonterminal Symbols}.
11036@end deffn
11037
11038@deffn {Symbol} $undefined
11039The predefined token onto which all undefined values returned by
11040@code{yylex} are mapped. It cannot be used in the grammar, rather, use
11041@code{error}.
11042@end deffn
11043
11044@deffn {Directive} %union
11045Bison declaration to specify several possible data types for semantic
11046values. @xref{Union Decl, ,The Collection of Value Types}.
11047@end deffn
11048
11049@deffn {Macro} YYABORT
11050Macro to pretend that an unrecoverable syntax error has occurred, by
11051making @code{yyparse} return 1 immediately. The error reporting
11052function @code{yyerror} is not called. @xref{Parser Function, ,The
11053Parser Function @code{yyparse}}.
11054
11055For Java parsers, this functionality is invoked using @code{return YYABORT;}
11056instead.
11057@end deffn
11058
11059@deffn {Macro} YYACCEPT
11060Macro to pretend that a complete utterance of the language has been
11061read, by making @code{yyparse} return 0 immediately.
11062@xref{Parser Function, ,The Parser Function @code{yyparse}}.
11063
11064For Java parsers, this functionality is invoked using @code{return YYACCEPT;}
11065instead.
11066@end deffn
11067
11068@deffn {Macro} YYBACKUP
11069Macro to discard a value from the parser stack and fake a lookahead
11070token. @xref{Action Features, ,Special Features for Use in Actions}.
11071@end deffn
11072
11073@deffn {Variable} yychar
11074External integer variable that contains the integer value of the
11075lookahead token. (In a pure parser, it is a local variable within
11076@code{yyparse}.) Error-recovery rule actions may examine this variable.
11077@xref{Action Features, ,Special Features for Use in Actions}.
11078@end deffn
11079
11080@deffn {Variable} yyclearin
11081Macro used in error-recovery rule actions. It clears the previous
11082lookahead token. @xref{Error Recovery}.
11083@end deffn
11084
11085@deffn {Macro} YYDEBUG
11086Macro to define to equip the parser with tracing code. @xref{Tracing,
11087,Tracing Your Parser}.
11088@end deffn
11089
11090@deffn {Variable} yydebug
11091External integer variable set to zero by default. If @code{yydebug}
11092is given a nonzero value, the parser will output information on input
11093symbols and parser action. @xref{Tracing, ,Tracing Your Parser}.
11094@end deffn
11095
11096@deffn {Macro} yyerrok
11097Macro to cause parser to recover immediately to its normal mode
11098after a syntax error. @xref{Error Recovery}.
11099@end deffn
11100
11101@deffn {Macro} YYERROR
11102Macro to pretend that a syntax error has just been detected: call
11103@code{yyerror} and then perform normal error recovery if possible
11104(@pxref{Error Recovery}), or (if recovery is impossible) make
11105@code{yyparse} return 1. @xref{Error Recovery}.
11106
11107For Java parsers, this functionality is invoked using @code{return YYERROR;}
11108instead.
11109@end deffn
11110
11111@deffn {Function} yyerror
11112User-supplied function to be called by @code{yyparse} on error.
11113@xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}.
11114@end deffn
11115
11116@deffn {Macro} YYERROR_VERBOSE
11117An obsolete macro used in the @file{yacc.c} skeleton, that you define
11118with @code{#define} in the prologue to request verbose, specific error
11119message strings when @code{yyerror} is called. It doesn't matter what
11120definition you use for @code{YYERROR_VERBOSE}, just whether you define
11121it. Using @samp{%define parse.error verbose} is preferred
11122(@pxref{Error Reporting, ,The Error Reporting Function @code{yyerror}}).
11123@end deffn
11124
11125@deffn {Macro} YYINITDEPTH
11126Macro for specifying the initial size of the parser stack.
11127@xref{Memory Management}.
11128@end deffn
11129
11130@deffn {Function} yylex
11131User-supplied lexical analyzer function, called with no arguments to get
11132the next token. @xref{Lexical, ,The Lexical Analyzer Function
11133@code{yylex}}.
11134@end deffn
11135
11136@deffn {Macro} YYLEX_PARAM
11137An obsolete macro for specifying an extra argument (or list of extra
11138arguments) for @code{yyparse} to pass to @code{yylex}. The use of this
11139macro is deprecated, and is supported only for Yacc like parsers.
11140@xref{Pure Calling,, Calling Conventions for Pure Parsers}.
11141@end deffn
11142
11143@deffn {Variable} yylloc
11144External variable in which @code{yylex} should place the line and column
11145numbers associated with a token. (In a pure parser, it is a local
11146variable within @code{yyparse}, and its address is passed to
11147@code{yylex}.)
11148You can ignore this variable if you don't use the @samp{@@} feature in the
11149grammar actions.
11150@xref{Token Locations, ,Textual Locations of Tokens}.
11151In semantic actions, it stores the location of the lookahead token.
11152@xref{Actions and Locations, ,Actions and Locations}.
11153@end deffn
11154
11155@deffn {Type} YYLTYPE
11156Data type of @code{yylloc}; by default, a structure with four
11157members. @xref{Location Type, , Data Types of Locations}.
11158@end deffn
11159
11160@deffn {Variable} yylval
11161External variable in which @code{yylex} should place the semantic
11162value associated with a token. (In a pure parser, it is a local
11163variable within @code{yyparse}, and its address is passed to
11164@code{yylex}.)
11165@xref{Token Values, ,Semantic Values of Tokens}.
11166In semantic actions, it stores the semantic value of the lookahead token.
11167@xref{Actions, ,Actions}.
11168@end deffn
11169
11170@deffn {Macro} YYMAXDEPTH
11171Macro for specifying the maximum size of the parser stack. @xref{Memory
11172Management}.
11173@end deffn
11174
11175@deffn {Variable} yynerrs
11176Global variable which Bison increments each time it reports a syntax error.
11177(In a pure parser, it is a local variable within @code{yyparse}. In a
11178pure push parser, it is a member of yypstate.)
11179@xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}.
11180@end deffn
11181
11182@deffn {Function} yyparse
11183The parser function produced by Bison; call this function to start
11184parsing. @xref{Parser Function, ,The Parser Function @code{yyparse}}.
11185@end deffn
11186
11187@deffn {Function} yypstate_delete
11188The function to delete a parser instance, produced by Bison in push mode;
11189call this function to delete the memory associated with a parser.
11190@xref{Parser Delete Function, ,The Parser Delete Function
11191@code{yypstate_delete}}.
11192(The current push parsing interface is experimental and may evolve.
11193More user feedback will help to stabilize it.)
11194@end deffn
11195
11196@deffn {Function} yypstate_new
11197The function to create a parser instance, produced by Bison in push mode;
11198call this function to create a new parser.
11199@xref{Parser Create Function, ,The Parser Create Function
11200@code{yypstate_new}}.
11201(The current push parsing interface is experimental and may evolve.
11202More user feedback will help to stabilize it.)
11203@end deffn
11204
11205@deffn {Function} yypull_parse
11206The parser function produced by Bison in push mode; call this function to
11207parse the rest of the input stream.
11208@xref{Pull Parser Function, ,The Pull Parser Function
11209@code{yypull_parse}}.
11210(The current push parsing interface is experimental and may evolve.
11211More user feedback will help to stabilize it.)
11212@end deffn
11213
11214@deffn {Function} yypush_parse
11215The parser function produced by Bison in push mode; call this function to
11216parse a single token. @xref{Push Parser Function, ,The Push Parser Function
11217@code{yypush_parse}}.
11218(The current push parsing interface is experimental and may evolve.
11219More user feedback will help to stabilize it.)
11220@end deffn
11221
11222@deffn {Macro} YYPARSE_PARAM
11223An obsolete macro for specifying the name of a parameter that
11224@code{yyparse} should accept. The use of this macro is deprecated, and
11225is supported only for Yacc like parsers. @xref{Pure Calling,, Calling
11226Conventions for Pure Parsers}.
11227@end deffn
11228
11229@deffn {Macro} YYRECOVERING
11230The expression @code{YYRECOVERING ()} yields 1 when the parser
11231is recovering from a syntax error, and 0 otherwise.
11232@xref{Action Features, ,Special Features for Use in Actions}.
11233@end deffn
11234
11235@deffn {Macro} YYSTACK_USE_ALLOCA
11236Macro used to control the use of @code{alloca} when the
11237deterministic parser in C needs to extend its stacks. If defined to 0,
11238the parser will use @code{malloc} to extend its stacks. If defined to
112391, the parser will use @code{alloca}. Values other than 0 and 1 are
11240reserved for future Bison extensions. If not defined,
11241@code{YYSTACK_USE_ALLOCA} defaults to 0.
11242
11243In the all-too-common case where your code may run on a host with a
11244limited stack and with unreliable stack-overflow checking, you should
11245set @code{YYMAXDEPTH} to a value that cannot possibly result in
11246unchecked stack overflow on any of your target hosts when
11247@code{alloca} is called. You can inspect the code that Bison
11248generates in order to determine the proper numeric values. This will
11249require some expertise in low-level implementation details.
11250@end deffn
11251
11252@deffn {Type} YYSTYPE
11253Data type of semantic values; @code{int} by default.
11254@xref{Value Type, ,Data Types of Semantic Values}.
11255@end deffn
11256
11257@node Glossary
11258@appendix Glossary
11259@cindex glossary
11260
11261@table @asis
11262@item Accepting State
11263A state whose only action is the accept action.
11264The accepting state is thus a consistent state.
11265@xref{Understanding,,}.
11266
11267@item Backus-Naur Form (BNF; also called ``Backus Normal Form'')
11268Formal method of specifying context-free grammars originally proposed
11269by John Backus, and slightly improved by Peter Naur in his 1960-01-02
11270committee document contributing to what became the Algol 60 report.
11271@xref{Language and Grammar, ,Languages and Context-Free Grammars}.
11272
11273@item Consistent State
11274A state containing only one possible action.
11275@xref{Decl Summary,,lr.default-reductions}.
11276
11277@item Context-free grammars
11278Grammars specified as rules that can be applied regardless of context.
11279Thus, if there is a rule which says that an integer can be used as an
11280expression, integers are allowed @emph{anywhere} an expression is
11281permitted. @xref{Language and Grammar, ,Languages and Context-Free
11282Grammars}.
11283
11284@item Default Reduction
11285The reduction that a parser should perform if the current parser state
11286contains no other action for the lookahead token.
11287In permitted parser states, Bison declares the reduction with the
11288largest lookahead set to be the default reduction and removes that
11289lookahead set.
11290@xref{Decl Summary,,lr.default-reductions}.
11291
11292@item Dynamic allocation
11293Allocation of memory that occurs during execution, rather than at
11294compile time or on entry to a function.
11295
11296@item Empty string
11297Analogous to the empty set in set theory, the empty string is a
11298character string of length zero.
11299
11300@item Finite-state stack machine
11301A ``machine'' that has discrete states in which it is said to exist at
11302each instant in time. As input to the machine is processed, the
11303machine moves from state to state as specified by the logic of the
11304machine. In the case of the parser, the input is the language being
11305parsed, and the states correspond to various stages in the grammar
11306rules. @xref{Algorithm, ,The Bison Parser Algorithm}.
11307
11308@item Generalized LR (GLR)
11309A parsing algorithm that can handle all context-free grammars, including those
11310that are not LR(1). It resolves situations that Bison's
11311deterministic parsing
11312algorithm cannot by effectively splitting off multiple parsers, trying all
11313possible parsers, and discarding those that fail in the light of additional
11314right context. @xref{Generalized LR Parsing, ,Generalized
11315LR Parsing}.
11316
11317@item Grouping
11318A language construct that is (in general) grammatically divisible;
11319for example, `expression' or `declaration' in C@.
11320@xref{Language and Grammar, ,Languages and Context-Free Grammars}.
11321
11322@item IELR(1)
11323A minimal LR(1) parser table generation algorithm.
11324That is, given any context-free grammar, IELR(1) generates
11325parser tables with the full language recognition power of canonical
11326LR(1) but with nearly the same number of parser states as
11327LALR(1).
11328This reduction in parser states is often an order of magnitude.
11329More importantly, because canonical LR(1)'s extra parser
11330states may contain duplicate conflicts in the case of
11331non-LR(1) grammars, the number of conflicts for
11332IELR(1) is often an order of magnitude less as well.
11333This can significantly reduce the complexity of developing of a grammar.
11334@xref{Decl Summary,,lr.type}.
11335
11336@item Infix operator
11337An arithmetic operator that is placed between the operands on which it
11338performs some operation.
11339
11340@item Input stream
11341A continuous flow of data between devices or programs.
11342
11343@item LAC (Lookahead Correction)
11344A parsing mechanism that fixes the problem of delayed syntax error
11345detection, which is caused by LR state merging, default reductions, and
11346the use of @code{%nonassoc}. Delayed syntax error detection results in
11347unexpected semantic actions, initiation of error recovery in the wrong
11348syntactic context, and an incorrect list of expected tokens in a verbose
11349syntax error message. @xref{Decl Summary,,parse.lac}.
11350
11351@item Language construct
11352One of the typical usage schemas of the language. For example, one of
11353the constructs of the C language is the @code{if} statement.
11354@xref{Language and Grammar, ,Languages and Context-Free Grammars}.
11355
11356@item Left associativity
11357Operators having left associativity are analyzed from left to right:
11358@samp{a+b+c} first computes @samp{a+b} and then combines with
11359@samp{c}. @xref{Precedence, ,Operator Precedence}.
11360
11361@item Left recursion
11362A rule whose result symbol is also its first component symbol; for
11363example, @samp{expseq1 : expseq1 ',' exp;}. @xref{Recursion, ,Recursive
11364Rules}.
11365
11366@item Left-to-right parsing
11367Parsing a sentence of a language by analyzing it token by token from
11368left to right. @xref{Algorithm, ,The Bison Parser Algorithm}.
11369
11370@item Lexical analyzer (scanner)
11371A function that reads an input stream and returns tokens one by one.
11372@xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}.
11373
11374@item Lexical tie-in
11375A flag, set by actions in the grammar rules, which alters the way
11376tokens are parsed. @xref{Lexical Tie-ins}.
11377
11378@item Literal string token
11379A token which consists of two or more fixed characters. @xref{Symbols}.
11380
11381@item Lookahead token
11382A token already read but not yet shifted. @xref{Lookahead, ,Lookahead
11383Tokens}.
11384
11385@item LALR(1)
11386The class of context-free grammars that Bison (like most other parser
11387generators) can handle by default; a subset of LR(1).
11388@xref{Mystery Conflicts, ,Mysterious Reduce/Reduce Conflicts}.
11389
11390@item LR(1)
11391The class of context-free grammars in which at most one token of
11392lookahead is needed to disambiguate the parsing of any piece of input.
11393
11394@item Nonterminal symbol
11395A grammar symbol standing for a grammatical construct that can
11396be expressed through rules in terms of smaller constructs; in other
11397words, a construct that is not a token. @xref{Symbols}.
11398
11399@item Parser
11400A function that recognizes valid sentences of a language by analyzing
11401the syntax structure of a set of tokens passed to it from a lexical
11402analyzer.
11403
11404@item Postfix operator
11405An arithmetic operator that is placed after the operands upon which it
11406performs some operation.
11407
11408@item Reduction
11409Replacing a string of nonterminals and/or terminals with a single
11410nonterminal, according to a grammar rule. @xref{Algorithm, ,The Bison
11411Parser Algorithm}.
11412
11413@item Reentrant
11414A reentrant subprogram is a subprogram which can be in invoked any
11415number of times in parallel, without interference between the various
11416invocations. @xref{Pure Decl, ,A Pure (Reentrant) Parser}.
11417
11418@item Reverse polish notation
11419A language in which all operators are postfix operators.
11420
11421@item Right recursion
11422A rule whose result symbol is also its last component symbol; for
11423example, @samp{expseq1: exp ',' expseq1;}. @xref{Recursion, ,Recursive
11424Rules}.
11425
11426@item Semantics
11427In computer languages, the semantics are specified by the actions
11428taken for each instance of the language, i.e., the meaning of
11429each statement. @xref{Semantics, ,Defining Language Semantics}.
11430
11431@item Shift
11432A parser is said to shift when it makes the choice of analyzing
11433further input from the stream rather than reducing immediately some
11434already-recognized rule. @xref{Algorithm, ,The Bison Parser Algorithm}.
11435
11436@item Single-character literal
11437A single character that is recognized and interpreted as is.
11438@xref{Grammar in Bison, ,From Formal Rules to Bison Input}.
11439
11440@item Start symbol
11441The nonterminal symbol that stands for a complete valid utterance in
11442the language being parsed. The start symbol is usually listed as the
11443first nonterminal symbol in a language specification.
11444@xref{Start Decl, ,The Start-Symbol}.
11445
11446@item Symbol table
11447A data structure where symbol names and associated data are stored
11448during parsing to allow for recognition and use of existing
11449information in repeated uses of a symbol. @xref{Multi-function Calc}.
11450
11451@item Syntax error
11452An error encountered during parsing of an input stream due to invalid
11453syntax. @xref{Error Recovery}.
11454
11455@item Token
11456A basic, grammatically indivisible unit of a language. The symbol
11457that describes a token in the grammar is a terminal symbol.
11458The input of the Bison parser is a stream of tokens which comes from
11459the lexical analyzer. @xref{Symbols}.
11460
11461@item Terminal symbol
11462A grammar symbol that has no rules in the grammar and therefore is
11463grammatically indivisible. The piece of text it represents is a token.
11464@xref{Language and Grammar, ,Languages and Context-Free Grammars}.
11465@end table
11466
11467@node Copying This Manual
11468@appendix Copying This Manual
11469@include fdl.texi
11470
11471@node Index
11472@unnumbered Index
11473
11474@printindex cp
11475
11476@bye
11477
11478@c LocalWords: texinfo setfilename settitle setchapternewpage finalout texi FSF
11479@c LocalWords: ifinfo smallbook shorttitlepage titlepage GPL FIXME iftex FSF's
11480@c LocalWords: akim fn cp syncodeindex vr tp synindex dircategory direntry Naur
11481@c LocalWords: ifset vskip pt filll insertcopying sp ISBN Etienne Suvasa Multi
11482@c LocalWords: ifnottex yyparse detailmenu GLR RPN Calc var Decls Rpcalc multi
11483@c LocalWords: rpcalc Lexer Expr ltcalc mfcalc yylex defaultprec Donnelly Gotos
11484@c LocalWords: yyerror pxref LR yylval cindex dfn LALR samp gpl BNF xref yypush
11485@c LocalWords: const int paren ifnotinfo AC noindent emph expr stmt findex lr
11486@c LocalWords: glr YYSTYPE TYPENAME prog dprec printf decl init stmtMerge POSIX
11487@c LocalWords: pre STDC GNUC endif yy YY alloca lf stddef stdlib YYDEBUG yypull
11488@c LocalWords: NUM exp subsubsection kbd Ctrl ctype EOF getchar isdigit nonfree
11489@c LocalWords: ungetc stdin scanf sc calc ulator ls lm cc NEG prec yyerrok rr
11490@c LocalWords: longjmp fprintf stderr yylloc YYLTYPE cos ln Stallman Destructor
11491@c LocalWords: smallexample symrec val tptr FNCT fnctptr func struct sym enum
11492@c LocalWords: fnct putsym getsym fname arith fncts atan ptr malloc sizeof Lex
11493@c LocalWords: strlen strcpy fctn strcmp isalpha symbuf realloc isalnum DOTDOT
11494@c LocalWords: ptypes itype YYPRINT trigraphs yytname expseq vindex dtype Unary
11495@c LocalWords: Rhs YYRHSLOC LE nonassoc op deffn typeless yynerrs nonterminal
11496@c LocalWords: yychar yydebug msg YYNTOKENS YYNNTS YYNRULES YYNSTATES reentrant
11497@c LocalWords: cparse clex deftypefun NE defmac YYACCEPT YYABORT param yypstate
11498@c LocalWords: strncmp intval tindex lvalp locp llocp typealt YYBACKUP subrange
11499@c LocalWords: YYEMPTY YYEOF YYRECOVERING yyclearin GE def UMINUS maybeword loc
11500@c LocalWords: Johnstone Shamsa Sadaf Hussain Tomita TR uref YYMAXDEPTH inline
11501@c LocalWords: YYINITDEPTH stmnts ref stmnt initdcl maybeasm notype Lookahead
11502@c LocalWords: hexflag STR exdent itemset asis DYYDEBUG YYFPRINTF args Autoconf
11503@c LocalWords: infile ypp yxx outfile itemx tex leaderfill Troubleshouting sqrt
11504@c LocalWords: hbox hss hfill tt ly yyin fopen fclose ofirst gcc ll lookahead
11505@c LocalWords: nbar yytext fst snd osplit ntwo strdup AST Troublereporting th
11506@c LocalWords: YYSTACK DVI fdl printindex IELR nondeterministic nonterminals ps
11507@c LocalWords: subexpressions declarator nondeferred config libintl postfix LAC
11508@c LocalWords: preprocessor nonpositive unary nonnumeric typedef extern rhs
11509@c LocalWords: yytokentype filename destructor multicharacter nonnull EBCDIC
11510@c LocalWords: lvalue nonnegative XNUM CHR chr TAGLESS tagless stdout api TOK
11511@c LocalWords: destructors Reentrancy nonreentrant subgrammar nonassociative
11512@c LocalWords: deffnx namespace xml goto lalr ielr runtime lex yacc yyps env
11513@c LocalWords: yystate variadic Unshift NLS gettext po UTF Automake LOCALEDIR
11514@c LocalWords: YYENABLE bindtextdomain Makefile DEFS CPPFLAGS DBISON DeRemer
11515@c LocalWords: autoreconf Pennello multisets nondeterminism Generalised baz
11516@c LocalWords: redeclare automata Dparse localedir datadir XSLT midrule Wno
11517@c LocalWords: makefiles Graphviz multitable headitem hh basename Doxygen fno
11518@c LocalWords: doxygen ival sval deftypemethod deallocate pos deftypemethodx
11519@c LocalWords: Ctor defcv defcvx arg accessors arithmetics CPP ifndef CALCXX
11520@c LocalWords: lexer's calcxx bool LPAREN RPAREN deallocation cerrno climits
11521@c LocalWords: cstdlib Debian undef yywrap unput noyywrap nounput zA yyleng
11522@c LocalWords: errno strtol ERANGE str strerror iostream argc argv Javadoc
11523@c LocalWords: bytecode initializers superclass stype ASTNode autoboxing nls
11524@c LocalWords: toString deftypeivar deftypeivarx deftypeop YYParser strictfp
11525@c LocalWords: superclasses boolean getErrorVerbose setErrorVerbose deftypecv
11526@c LocalWords: getDebugStream setDebugStream getDebugLevel setDebugLevel url
11527@c LocalWords: bisonVersion deftypecvx bisonSkeleton getStartPos getEndPos
11528@c LocalWords: getLVal defvar deftypefn deftypefnx gotos msgfmt
11529@c LocalWords: subdirectory Solaris nonassociativity
11530
11531@c Local Variables:
11532@c ispell-dictionary: "american"
11533@c fill-column: 76
11534@c End: