]> git.saurik.com Git - bison.git/blame_incremental - doc/bison.texinfo
One more "lookahead" -> "look-ahead" change.
[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 have the new `shorttitlepage' command
16@c @clear shorttitlepage-enabled
17@c @set shorttitlepage-enabled
18
19@c Set following if you want to document %default-prec and %no-default-prec.
20@c This feature is experimental and may change in future Bison versions.
21@c @set defaultprec
22
23@c ISPELL CHECK: done, 14 Jan 1993 --bob
24
25@c Check COPYRIGHT dates. should be updated in the titlepage, ifinfo
26@c titlepage; should NOT be changed in the GPL. --mew
27
28@c FIXME: I don't understand this `iftex'. Obsolete? --akim.
29@iftex
30@syncodeindex fn cp
31@syncodeindex vr cp
32@syncodeindex tp cp
33@end iftex
34@ifinfo
35@synindex fn cp
36@synindex vr cp
37@synindex tp cp
38@end ifinfo
39@comment %**end of header
40
41@copying
42
43This manual is for @acronym{GNU} Bison (version @value{VERSION},
44@value{UPDATED}), the @acronym{GNU} parser generator.
45
46Copyright @copyright{} 1988, 1989, 1990, 1991, 1992, 1993, 1995, 1998,
471999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
48
49@quotation
50Permission is granted to copy, distribute and/or modify this document
51under the terms of the @acronym{GNU} Free Documentation License,
52Version 1.1 or any later version published by the Free Software
53Foundation; with no Invariant Sections, with the Front-Cover texts
54being ``A @acronym{GNU} Manual,'' and with the Back-Cover Texts as in
55(a) below. A copy of the license is included in the section entitled
56``@acronym{GNU} Free Documentation License.''
57
58(a) The @acronym{FSF}'s Back-Cover Text is: ``You have freedom to copy
59and modify this @acronym{GNU} Manual, like @acronym{GNU} software.
60Copies published by the Free Software Foundation raise funds for
61@acronym{GNU} development.''
62@end quotation
63@end copying
64
65@dircategory GNU programming tools
66@direntry
67* bison: (bison). @acronym{GNU} parser generator (Yacc replacement).
68@end direntry
69
70@ifset shorttitlepage-enabled
71@shorttitlepage Bison
72@end ifset
73@titlepage
74@title Bison
75@subtitle The Yacc-compatible Parser Generator
76@subtitle @value{UPDATED}, Bison Version @value{VERSION}
77
78@author by Charles Donnelly and Richard Stallman
79
80@page
81@vskip 0pt plus 1filll
82@insertcopying
83@sp 2
84Published by the Free Software Foundation @*
8559 Temple Place, Suite 330 @*
86Boston, MA 02111-1307 USA @*
87Printed copies are available from the Free Software Foundation.@*
88@acronym{ISBN} 1-882114-44-2
89@sp 2
90Cover art by Etienne Suvasa.
91@end titlepage
92
93@contents
94
95@ifnottex
96@node Top
97@top Bison
98@insertcopying
99@end ifnottex
100
101@menu
102* Introduction::
103* Conditions::
104* Copying:: The @acronym{GNU} General Public License says
105 how you can copy and share Bison
106
107Tutorial sections:
108* Concepts:: Basic concepts for understanding Bison.
109* Examples:: Three simple explained examples of using Bison.
110
111Reference sections:
112* Grammar File:: Writing Bison declarations and rules.
113* Interface:: C-language interface to the parser function @code{yyparse}.
114* Algorithm:: How the Bison parser works at run-time.
115* Error Recovery:: Writing rules for error recovery.
116* Context Dependency:: What to do if your language syntax is too
117 messy for Bison to handle straightforwardly.
118* Debugging:: Understanding or debugging Bison parsers.
119* Invocation:: How to run Bison (to produce the parser source file).
120* Table of Symbols:: All the keywords of the Bison language are explained.
121* Glossary:: Basic concepts are explained.
122* FAQ:: Frequently Asked Questions
123* Copying This Manual:: License for copying this manual.
124* Index:: Cross-references to the text.
125
126@detailmenu
127 --- The Detailed Node Listing ---
128
129The Concepts of Bison
130
131* Language and Grammar:: Languages and context-free grammars,
132 as mathematical ideas.
133* Grammar in Bison:: How we represent grammars for Bison's sake.
134* Semantic Values:: Each token or syntactic grouping can have
135 a semantic value (the value of an integer,
136 the name of an identifier, etc.).
137* Semantic Actions:: Each rule can have an action containing C code.
138* GLR Parsers:: Writing parsers for general context-free languages.
139* Simple GLR Parsers:: Using GLR in its simplest form.
140* Locations Overview:: Tracking Locations.
141* Bison Parser:: What are Bison's input and output,
142 how is the output used?
143* Stages:: Stages in writing and running Bison grammars.
144* Grammar Layout:: Overall structure of a Bison grammar file.
145
146Examples
147
148* RPN Calc:: Reverse polish notation calculator;
149 a first example with no operator precedence.
150* Infix Calc:: Infix (algebraic) notation calculator.
151 Operator precedence is introduced.
152* Simple Error Recovery:: Continuing after syntax errors.
153* Location Tracking Calc:: Demonstrating the use of @@@var{n} and @@$.
154* Multi-function Calc:: Calculator with memory and trig functions.
155 It uses multiple data-types for semantic values.
156* Exercises:: Ideas for improving the multi-function calculator.
157
158Reverse Polish Notation Calculator
159
160* Decls: Rpcalc Decls. Prologue (declarations) for rpcalc.
161* Rules: Rpcalc Rules. Grammar Rules for rpcalc, with explanation.
162* Lexer: Rpcalc Lexer. The lexical analyzer.
163* Main: Rpcalc Main. The controlling function.
164* Error: Rpcalc Error. The error reporting function.
165* Gen: Rpcalc Gen. Running Bison on the grammar file.
166* Comp: Rpcalc Compile. Run the C compiler on the output code.
167
168Grammar Rules for @code{rpcalc}
169
170* Rpcalc Input::
171* Rpcalc Line::
172* Rpcalc Expr::
173
174Location Tracking Calculator: @code{ltcalc}
175
176* Decls: Ltcalc Decls. Bison and C declarations for ltcalc.
177* Rules: Ltcalc Rules. Grammar rules for ltcalc, with explanations.
178* Lexer: Ltcalc Lexer. The lexical analyzer.
179
180Multi-Function Calculator: @code{mfcalc}
181
182* Decl: Mfcalc Decl. Bison declarations for multi-function calculator.
183* Rules: Mfcalc Rules. Grammar rules for the calculator.
184* Symtab: Mfcalc Symtab. Symbol table management subroutines.
185
186Bison Grammar Files
187
188* Grammar Outline:: Overall layout of the grammar file.
189* Symbols:: Terminal and nonterminal symbols.
190* Rules:: How to write grammar rules.
191* Recursion:: Writing recursive rules.
192* Semantics:: Semantic values and actions.
193* Locations:: Locations and actions.
194* Declarations:: All kinds of Bison declarations are described here.
195* Multiple Parsers:: Putting more than one Bison parser in one program.
196
197Outline of a Bison Grammar
198
199* Prologue:: Syntax and usage of the prologue.
200* Bison Declarations:: Syntax and usage of the Bison declarations section.
201* Grammar Rules:: Syntax and usage of the grammar rules section.
202* Epilogue:: Syntax and usage of the epilogue.
203
204Defining Language Semantics
205
206* Value Type:: Specifying one data type for all semantic values.
207* Multiple Types:: Specifying several alternative data types.
208* Actions:: An action is the semantic definition of a grammar rule.
209* Action Types:: Specifying data types for actions to operate on.
210* Mid-Rule Actions:: Most actions go at the end of a rule.
211 This says when, why and how to use the exceptional
212 action in the middle of a rule.
213
214Tracking Locations
215
216* Location Type:: Specifying a data type for locations.
217* Actions and Locations:: Using locations in actions.
218* Location Default Action:: Defining a general way to compute locations.
219
220Bison Declarations
221
222* Token Decl:: Declaring terminal symbols.
223* Precedence Decl:: Declaring terminals with precedence and associativity.
224* Union Decl:: Declaring the set of all semantic value types.
225* Type Decl:: Declaring the choice of type for a nonterminal symbol.
226* Destructor Decl:: Declaring how symbols are freed.
227* Expect Decl:: Suppressing warnings about parsing conflicts.
228* Start Decl:: Specifying the start symbol.
229* Pure Decl:: Requesting a reentrant 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* Lexical:: You must supply a function @code{yylex}
236 which reads tokens.
237* Error Reporting:: You must supply a function @code{yyerror}.
238* Action Features:: Special features for use in actions.
239
240The Lexical Analyzer Function @code{yylex}
241
242* Calling Convention:: How @code{yyparse} calls @code{yylex}.
243* Token Values:: How @code{yylex} must return the semantic value
244 of the token it has read.
245* Token Locations:: How @code{yylex} must return the text location
246 (line number, etc.) of the token, if the
247 actions want that.
248* Pure Calling:: How the calling convention differs
249 in a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}).
250
251The Bison Parser Algorithm
252
253* Look-Ahead:: Parser looks one token ahead when deciding what to do.
254* Shift/Reduce:: Conflicts: when either shifting or reduction is valid.
255* Precedence:: Operator precedence works by resolving conflicts.
256* Contextual Precedence:: When an operator's precedence depends on context.
257* Parser States:: The parser is a finite-state-machine with stack.
258* Reduce/Reduce:: When two rules are applicable in the same situation.
259* Mystery Conflicts:: Reduce/reduce conflicts that look unjustified.
260* Generalized LR Parsing:: Parsing arbitrary context-free grammars.
261* Stack Overflow:: What happens when stack gets full. How to avoid it.
262
263Operator Precedence
264
265* Why Precedence:: An example showing why precedence is needed.
266* Using Precedence:: How to specify precedence in Bison grammars.
267* Precedence Examples:: How these features are used in the previous example.
268* How Precedence:: How they work.
269
270Handling Context Dependencies
271
272* Semantic Tokens:: Token parsing can depend on the semantic context.
273* Lexical Tie-ins:: Token parsing can depend on the syntactic context.
274* Tie-in Recovery:: Lexical tie-ins have implications for how
275 error recovery rules must be written.
276
277Debugging Your Parser
278
279* Understanding:: Understanding the structure of your parser.
280* Tracing:: Tracing the execution of your parser.
281
282Invoking Bison
283
284* Bison Options:: All the options described in detail,
285 in alphabetical order by short options.
286* Option Cross Key:: Alphabetical list of long options.
287* Yacc Library:: Yacc-compatible @code{yylex} and @code{main}.
288
289Frequently Asked Questions
290
291* Parser Stack Overflow:: Breaking the Stack Limits
292* How Can I Reset the Parser:: @code{yyparse} Keeps some State
293* Strings are Destroyed:: @code{yylval} Loses Track of Strings
294* C++ Parsers:: Compiling Parsers with C++ Compilers
295* Implementing Loops:: Control Flow in the Calculator
296
297Copying This Manual
298
299* GNU Free Documentation License:: License for copying this manual.
300
301@end detailmenu
302@end menu
303
304@node Introduction
305@unnumbered Introduction
306@cindex introduction
307
308@dfn{Bison} is a general-purpose parser generator that converts a
309grammar description for an @acronym{LALR}(1) context-free grammar into a C
310program to parse that grammar. Once you are proficient with Bison,
311you may use it to develop a wide range of language parsers, from those
312used in simple desk calculators to complex programming languages.
313
314Bison is upward compatible with Yacc: all properly-written Yacc grammars
315ought to work with Bison with no change. Anyone familiar with Yacc
316should be able to use Bison with little trouble. You need to be fluent in
317C programming in order to use Bison or to understand this manual.
318
319We begin with tutorial chapters that explain the basic concepts of using
320Bison and show three explained examples, each building on the last. If you
321don't know Bison or Yacc, start by reading these chapters. Reference
322chapters follow which describe specific aspects of Bison in detail.
323
324Bison was written primarily by Robert Corbett; Richard Stallman made it
325Yacc-compatible. Wilfred Hansen of Carnegie Mellon University added
326multi-character string literals and other features.
327
328This edition corresponds to version @value{VERSION} of Bison.
329
330@node Conditions
331@unnumbered Conditions for Using Bison
332
333As of Bison version 1.24, we have changed the distribution terms for
334@code{yyparse} to permit using Bison's output in nonfree programs when
335Bison is generating C code for @acronym{LALR}(1) parsers. Formerly, these
336parsers could be used only in programs that were free software.
337
338The other @acronym{GNU} programming tools, such as the @acronym{GNU} C
339compiler, have never
340had such a requirement. They could always be used for nonfree
341software. The reason Bison was different was not due to a special
342policy decision; it resulted from applying the usual General Public
343License to all of the Bison source code.
344
345The output of the Bison utility---the Bison parser file---contains a
346verbatim copy of a sizable piece of Bison, which is the code for the
347@code{yyparse} function. (The actions from your grammar are inserted
348into this function at one point, but the rest of the function is not
349changed.) When we applied the @acronym{GPL} terms to the code for
350@code{yyparse},
351the effect was to restrict the use of Bison output to free software.
352
353We didn't change the terms because of sympathy for people who want to
354make software proprietary. @strong{Software should be free.} But we
355concluded that limiting Bison's use to free software was doing little to
356encourage people to make other software free. So we decided to make the
357practical conditions for using Bison match the practical conditions for
358using the other @acronym{GNU} tools.
359
360This exception applies only when Bison is generating C code for an
361@acronym{LALR}(1) parser; otherwise, the @acronym{GPL} terms operate
362as usual. You can
363tell whether the exception applies to your @samp{.c} output file by
364inspecting it to see whether it says ``As a special exception, when
365this file is copied by Bison into a Bison output file, you may use
366that output file without restriction.''
367
368@include gpl.texi
369
370@node Concepts
371@chapter The Concepts of Bison
372
373This chapter introduces many of the basic concepts without which the
374details of Bison will not make sense. If you do not already know how to
375use Bison or Yacc, we suggest you start by reading this chapter carefully.
376
377@menu
378* Language and Grammar:: Languages and context-free grammars,
379 as mathematical ideas.
380* Grammar in Bison:: How we represent grammars for Bison's sake.
381* Semantic Values:: Each token or syntactic grouping can have
382 a semantic value (the value of an integer,
383 the name of an identifier, etc.).
384* Semantic Actions:: Each rule can have an action containing C code.
385* GLR Parsers:: Writing parsers for general context-free languages.
386* Simple GLR Parsers:: Using GLR in its simplest form.
387* Locations Overview:: Tracking Locations.
388* Bison Parser:: What are Bison's input and output,
389 how is the output used?
390* Stages:: Stages in writing and running Bison grammars.
391* Grammar Layout:: Overall structure of a Bison grammar file.
392@end menu
393
394@node Language and Grammar
395@section Languages and Context-Free Grammars
396
397@cindex context-free grammar
398@cindex grammar, context-free
399In order for Bison to parse a language, it must be described by a
400@dfn{context-free grammar}. This means that you specify one or more
401@dfn{syntactic groupings} and give rules for constructing them from their
402parts. For example, in the C language, one kind of grouping is called an
403`expression'. One rule for making an expression might be, ``An expression
404can be made of a minus sign and another expression''. Another would be,
405``An expression can be an integer''. As you can see, rules are often
406recursive, but there must be at least one rule which leads out of the
407recursion.
408
409@cindex @acronym{BNF}
410@cindex Backus-Naur form
411The most common formal system for presenting such rules for humans to read
412is @dfn{Backus-Naur Form} or ``@acronym{BNF}'', which was developed in
413order to specify the language Algol 60. Any grammar expressed in
414@acronym{BNF} is a context-free grammar. The input to Bison is
415essentially machine-readable @acronym{BNF}.
416
417@cindex @acronym{LALR}(1) grammars
418@cindex @acronym{LR}(1) grammars
419There are various important subclasses of context-free grammar. Although it
420can handle almost all context-free grammars, Bison is optimized for what
421are called @acronym{LALR}(1) grammars.
422In brief, in these grammars, it must be possible to
423tell how to parse any portion of an input string with just a single
424token of look-ahead. Strictly speaking, that is a description of an
425@acronym{LR}(1) grammar, and @acronym{LALR}(1) involves additional
426restrictions that are
427hard to explain simply; but it is rare in actual practice to find an
428@acronym{LR}(1) grammar that fails to be @acronym{LALR}(1).
429@xref{Mystery Conflicts, ,Mysterious Reduce/Reduce Conflicts}, for
430more information on this.
431
432@cindex @acronym{GLR} parsing
433@cindex generalized @acronym{LR} (@acronym{GLR}) parsing
434@cindex ambiguous grammars
435@cindex non-deterministic parsing
436
437Parsers for @acronym{LALR}(1) grammars are @dfn{deterministic}, meaning
438roughly that the next grammar rule to apply at any point in the input is
439uniquely determined by the preceding input and a fixed, finite portion
440(called a @dfn{look-ahead}) of the remaining input. A context-free
441grammar can be @dfn{ambiguous}, meaning that there are multiple ways to
442apply the grammar rules to get the some inputs. Even unambiguous
443grammars can be @dfn{non-deterministic}, meaning that no fixed
444look-ahead always suffices to determine the next grammar rule to apply.
445With the proper declarations, Bison is also able to parse these more
446general context-free grammars, using a technique known as @acronym{GLR}
447parsing (for Generalized @acronym{LR}). Bison's @acronym{GLR} parsers
448are able to handle any context-free grammar for which the number of
449possible parses of any given string is finite.
450
451@cindex symbols (abstract)
452@cindex token
453@cindex syntactic grouping
454@cindex grouping, syntactic
455In the formal grammatical rules for a language, each kind of syntactic
456unit or grouping is named by a @dfn{symbol}. Those which are built by
457grouping smaller constructs according to grammatical rules are called
458@dfn{nonterminal symbols}; those which can't be subdivided are called
459@dfn{terminal symbols} or @dfn{token types}. We call a piece of input
460corresponding to a single terminal symbol a @dfn{token}, and a piece
461corresponding to a single nonterminal symbol a @dfn{grouping}.
462
463We can use the C language as an example of what symbols, terminal and
464nonterminal, mean. The tokens of C are identifiers, constants (numeric
465and string), and the various keywords, arithmetic operators and
466punctuation marks. So the terminal symbols of a grammar for C include
467`identifier', `number', `string', plus one symbol for each keyword,
468operator or punctuation mark: `if', `return', `const', `static', `int',
469`char', `plus-sign', `open-brace', `close-brace', `comma' and many more.
470(These tokens can be subdivided into characters, but that is a matter of
471lexicography, not grammar.)
472
473Here is a simple C function subdivided into tokens:
474
475@ifinfo
476@example
477int /* @r{keyword `int'} */
478square (int x) /* @r{identifier, open-paren, identifier,}
479 @r{identifier, close-paren} */
480@{ /* @r{open-brace} */
481 return x * x; /* @r{keyword `return', identifier, asterisk,
482 identifier, semicolon} */
483@} /* @r{close-brace} */
484@end example
485@end ifinfo
486@ifnotinfo
487@example
488int /* @r{keyword `int'} */
489square (int x) /* @r{identifier, open-paren, identifier, identifier, close-paren} */
490@{ /* @r{open-brace} */
491 return x * x; /* @r{keyword `return', identifier, asterisk, identifier, semicolon} */
492@} /* @r{close-brace} */
493@end example
494@end ifnotinfo
495
496The syntactic groupings of C include the expression, the statement, the
497declaration, and the function definition. These are represented in the
498grammar of C by nonterminal symbols `expression', `statement',
499`declaration' and `function definition'. The full grammar uses dozens of
500additional language constructs, each with its own nonterminal symbol, in
501order to express the meanings of these four. The example above is a
502function definition; it contains one declaration, and one statement. In
503the statement, each @samp{x} is an expression and so is @samp{x * x}.
504
505Each nonterminal symbol must have grammatical rules showing how it is made
506out of simpler constructs. For example, one kind of C statement is the
507@code{return} statement; this would be described with a grammar rule which
508reads informally as follows:
509
510@quotation
511A `statement' can be made of a `return' keyword, an `expression' and a
512`semicolon'.
513@end quotation
514
515@noindent
516There would be many other rules for `statement', one for each kind of
517statement in C.
518
519@cindex start symbol
520One nonterminal symbol must be distinguished as the special one which
521defines a complete utterance in the language. It is called the @dfn{start
522symbol}. In a compiler, this means a complete input program. In the C
523language, the nonterminal symbol `sequence of definitions and declarations'
524plays this role.
525
526For example, @samp{1 + 2} is a valid C expression---a valid part of a C
527program---but it is not valid as an @emph{entire} C program. In the
528context-free grammar of C, this follows from the fact that `expression' is
529not the start symbol.
530
531The Bison parser reads a sequence of tokens as its input, and groups the
532tokens using the grammar rules. If the input is valid, the end result is
533that the entire token sequence reduces to a single grouping whose symbol is
534the grammar's start symbol. If we use a grammar for C, the entire input
535must be a `sequence of definitions and declarations'. If not, the parser
536reports a syntax error.
537
538@node Grammar in Bison
539@section From Formal Rules to Bison Input
540@cindex Bison grammar
541@cindex grammar, Bison
542@cindex formal grammar
543
544A formal grammar is a mathematical construct. To define the language
545for Bison, you must write a file expressing the grammar in Bison syntax:
546a @dfn{Bison grammar} file. @xref{Grammar File, ,Bison Grammar Files}.
547
548A nonterminal symbol in the formal grammar is represented in Bison input
549as an identifier, like an identifier in C@. By convention, it should be
550in lower case, such as @code{expr}, @code{stmt} or @code{declaration}.
551
552The Bison representation for a terminal symbol is also called a @dfn{token
553type}. Token types as well can be represented as C-like identifiers. By
554convention, these identifiers should be upper case to distinguish them from
555nonterminals: for example, @code{INTEGER}, @code{IDENTIFIER}, @code{IF} or
556@code{RETURN}. A terminal symbol that stands for a particular keyword in
557the language should be named after that keyword converted to upper case.
558The terminal symbol @code{error} is reserved for error recovery.
559@xref{Symbols}.
560
561A terminal symbol can also be represented as a character literal, just like
562a C character constant. You should do this whenever a token is just a
563single character (parenthesis, plus-sign, etc.): use that same character in
564a literal as the terminal symbol for that token.
565
566A third way to represent a terminal symbol is with a C string constant
567containing several characters. @xref{Symbols}, for more information.
568
569The grammar rules also have an expression in Bison syntax. For example,
570here is the Bison rule for a C @code{return} statement. The semicolon in
571quotes is a literal character token, representing part of the C syntax for
572the statement; the naked semicolon, and the colon, are Bison punctuation
573used in every rule.
574
575@example
576stmt: RETURN expr ';'
577 ;
578@end example
579
580@noindent
581@xref{Rules, ,Syntax of Grammar Rules}.
582
583@node Semantic Values
584@section Semantic Values
585@cindex semantic value
586@cindex value, semantic
587
588A formal grammar selects tokens only by their classifications: for example,
589if a rule mentions the terminal symbol `integer constant', it means that
590@emph{any} integer constant is grammatically valid in that position. The
591precise value of the constant is irrelevant to how to parse the input: if
592@samp{x+4} is grammatical then @samp{x+1} or @samp{x+3989} is equally
593grammatical.
594
595But the precise value is very important for what the input means once it is
596parsed. A compiler is useless if it fails to distinguish between 4, 1 and
5973989 as constants in the program! Therefore, each token in a Bison grammar
598has both a token type and a @dfn{semantic value}. @xref{Semantics,
599,Defining Language Semantics},
600for details.
601
602The token type is a terminal symbol defined in the grammar, such as
603@code{INTEGER}, @code{IDENTIFIER} or @code{','}. It tells everything
604you need to know to decide where the token may validly appear and how to
605group it with other tokens. The grammar rules know nothing about tokens
606except their types.
607
608The semantic value has all the rest of the information about the
609meaning of the token, such as the value of an integer, or the name of an
610identifier. (A token such as @code{','} which is just punctuation doesn't
611need to have any semantic value.)
612
613For example, an input token might be classified as token type
614@code{INTEGER} and have the semantic value 4. Another input token might
615have the same token type @code{INTEGER} but value 3989. When a grammar
616rule says that @code{INTEGER} is allowed, either of these tokens is
617acceptable because each is an @code{INTEGER}. When the parser accepts the
618token, it keeps track of the token's semantic value.
619
620Each grouping can also have a semantic value as well as its nonterminal
621symbol. For example, in a calculator, an expression typically has a
622semantic value that is a number. In a compiler for a programming
623language, an expression typically has a semantic value that is a tree
624structure describing the meaning of the expression.
625
626@node Semantic Actions
627@section Semantic Actions
628@cindex semantic actions
629@cindex actions, semantic
630
631In order to be useful, a program must do more than parse input; it must
632also produce some output based on the input. In a Bison grammar, a grammar
633rule can have an @dfn{action} made up of C statements. Each time the
634parser recognizes a match for that rule, the action is executed.
635@xref{Actions}.
636
637Most of the time, the purpose of an action is to compute the semantic value
638of the whole construct from the semantic values of its parts. For example,
639suppose we have a rule which says an expression can be the sum of two
640expressions. When the parser recognizes such a sum, each of the
641subexpressions has a semantic value which describes how it was built up.
642The action for this rule should create a similar sort of value for the
643newly recognized larger expression.
644
645For example, here is a rule that says an expression can be the sum of
646two subexpressions:
647
648@example
649expr: expr '+' expr @{ $$ = $1 + $3; @}
650 ;
651@end example
652
653@noindent
654The action says how to produce the semantic value of the sum expression
655from the values of the two subexpressions.
656
657@node GLR Parsers
658@section Writing @acronym{GLR} Parsers
659@cindex @acronym{GLR} parsing
660@cindex generalized @acronym{LR} (@acronym{GLR}) parsing
661@findex %glr-parser
662@cindex conflicts
663@cindex shift/reduce conflicts
664
665In some grammars, there will be cases where Bison's standard
666@acronym{LALR}(1) parsing algorithm cannot decide whether to apply a
667certain grammar rule at a given point. That is, it may not be able to
668decide (on the basis of the input read so far) which of two possible
669reductions (applications of a grammar rule) applies, or whether to apply
670a reduction or read more of the input and apply a reduction later in the
671input. These are known respectively as @dfn{reduce/reduce} conflicts
672(@pxref{Reduce/Reduce}), and @dfn{shift/reduce} conflicts
673(@pxref{Shift/Reduce}).
674
675To use a grammar that is not easily modified to be @acronym{LALR}(1), a
676more general parsing algorithm is sometimes necessary. If you include
677@code{%glr-parser} among the Bison declarations in your file
678(@pxref{Grammar Outline}), the result will be a Generalized @acronym{LR}
679(@acronym{GLR}) parser. These parsers handle Bison grammars that
680contain no unresolved conflicts (i.e., after applying precedence
681declarations) identically to @acronym{LALR}(1) parsers. However, when
682faced with unresolved shift/reduce and reduce/reduce conflicts,
683@acronym{GLR} parsers use the simple expedient of doing both,
684effectively cloning the parser to follow both possibilities. Each of
685the resulting parsers can again split, so that at any given time, there
686can be any number of possible parses being explored. The parsers
687proceed in lockstep; that is, all of them consume (shift) a given input
688symbol before any of them proceed to the next. Each of the cloned
689parsers eventually meets one of two possible fates: either it runs into
690a parsing error, in which case it simply vanishes, or it merges with
691another parser, because the two of them have reduced the input to an
692identical set of symbols.
693
694During the time that there are multiple parsers, semantic actions are
695recorded, but not performed. When a parser disappears, its recorded
696semantic actions disappear as well, and are never performed. When a
697reduction makes two parsers identical, causing them to merge, Bison
698records both sets of semantic actions. Whenever the last two parsers
699merge, reverting to the single-parser case, Bison resolves all the
700outstanding actions either by precedences given to the grammar rules
701involved, or by performing both actions, and then calling a designated
702user-defined function on the resulting values to produce an arbitrary
703merged result.
704
705Let's consider an example, vastly simplified from a C++ grammar.
706
707@example
708%@{
709 #include <stdio.h>
710 #define YYSTYPE char const *
711 int yylex (void);
712 void yyerror (char const *);
713%@}
714
715%token TYPENAME ID
716
717%right '='
718%left '+'
719
720%glr-parser
721
722%%
723
724prog :
725 | prog stmt @{ printf ("\n"); @}
726 ;
727
728stmt : expr ';' %dprec 1
729 | decl %dprec 2
730 ;
731
732expr : ID @{ printf ("%s ", $$); @}
733 | TYPENAME '(' expr ')'
734 @{ printf ("%s <cast> ", $1); @}
735 | expr '+' expr @{ printf ("+ "); @}
736 | expr '=' expr @{ printf ("= "); @}
737 ;
738
739decl : TYPENAME declarator ';'
740 @{ printf ("%s <declare> ", $1); @}
741 | TYPENAME declarator '=' expr ';'
742 @{ printf ("%s <init-declare> ", $1); @}
743 ;
744
745declarator : ID @{ printf ("\"%s\" ", $1); @}
746 | '(' declarator ')'
747 ;
748@end example
749
750@noindent
751This models a problematic part of the C++ grammar---the ambiguity between
752certain declarations and statements. For example,
753
754@example
755T (x) = y+z;
756@end example
757
758@noindent
759parses as either an @code{expr} or a @code{stmt}
760(assuming that @samp{T} is recognized as a @code{TYPENAME} and
761@samp{x} as an @code{ID}).
762Bison detects this as a reduce/reduce conflict between the rules
763@code{expr : ID} and @code{declarator : ID}, which it cannot resolve at the
764time it encounters @code{x} in the example above. The two @code{%dprec}
765declarations, however, give precedence to interpreting the example as a
766@code{decl}, which implies that @code{x} is a declarator.
767The parser therefore prints
768
769@example
770"x" y z + T <init-declare>
771@end example
772
773Consider a different input string for this parser:
774
775@example
776T (x) + y;
777@end example
778
779@noindent
780Here, there is no ambiguity (this cannot be parsed as a declaration).
781However, at the time the Bison parser encounters @code{x}, it does not
782have enough information to resolve the reduce/reduce conflict (again,
783between @code{x} as an @code{expr} or a @code{declarator}). In this
784case, no precedence declaration is used. Instead, the parser splits
785into two, one assuming that @code{x} is an @code{expr}, and the other
786assuming @code{x} is a @code{declarator}. The second of these parsers
787then vanishes when it sees @code{+}, and the parser prints
788
789@example
790x T <cast> y +
791@end example
792
793Suppose that instead of resolving the ambiguity, you wanted to see all
794the possibilities. For this purpose, we must @dfn{merge} the semantic
795actions of the two possible parsers, rather than choosing one over the
796other. To do so, you could change the declaration of @code{stmt} as
797follows:
798
799@example
800stmt : expr ';' %merge <stmtMerge>
801 | decl %merge <stmtMerge>
802 ;
803@end example
804
805@noindent
806
807and define the @code{stmtMerge} function as:
808
809@example
810static YYSTYPE
811stmtMerge (YYSTYPE x0, YYSTYPE x1)
812@{
813 printf ("<OR> ");
814 return "";
815@}
816@end example
817
818@noindent
819with an accompanying forward declaration
820in the C declarations at the beginning of the file:
821
822@example
823%@{
824 #define YYSTYPE char const *
825 static YYSTYPE stmtMerge (YYSTYPE x0, YYSTYPE x1);
826%@}
827@end example
828
829@noindent
830With these declarations, the resulting parser will parse the first example
831as both an @code{expr} and a @code{decl}, and print
832
833@example
834"x" y z + T <init-declare> x T <cast> y z + = <OR>
835@end example
836
837@sp 1
838
839@cindex @code{incline}
840@cindex @acronym{GLR} parsers and @code{inline}
841The @acronym{GLR} parsers require a compiler for @acronym{ISO} C89 or
842later. In addition, they use the @code{inline} keyword, which is not
843C89, but is C99 and is a common extension in pre-C99 compilers. It is
844up to the user of these parsers to handle
845portability issues. For instance, if using Autoconf and the Autoconf
846macro @code{AC_C_INLINE}, a mere
847
848@example
849%@{
850 #include <config.h>
851%@}
852@end example
853
854@noindent
855will suffice. Otherwise, we suggest
856
857@example
858%@{
859 #if __STDC_VERSION__ < 199901 && ! defined __GNUC__ && ! defined inline
860 #define inline
861 #endif
862%@}
863@end example
864
865@node Simple GLR Parsers
866@section Using @acronym{GLR} in its Simplest Form
867@cindex @acronym{GLR} parsing, unambiguous grammars
868@cindex generalized @acronym{LR} (@acronym{GLR}) parsing, unambiguous grammars
869@findex %glr-parser
870@findex %expect-rr
871@cindex conflicts
872@cindex reduce/reduce conflicts
873
874The C++ example for @acronym{GLR} (@pxref{GLR Parsers}) explains how to use
875the @acronym{GLR} parsing algorithm with some advanced features such as
876@samp{%dprec} and @samp{%merge} to handle syntactically ambiguous
877grammars. However, the @acronym{GLR} algorithm can also be used in a simpler
878way to parse grammars that are unambiguous, but fail to be @acronym{LALR}(1).
879Such grammars typically require more than one symbol of look-ahead,
880or (in rare cases) fall into the category of grammars in which the
881@acronym{LALR}(1) algorithm throws away too much information (they are in
882@acronym{LR}(1), but not @acronym{LALR}(1), @ref{Mystery Conflicts}).
883
884Here is an example of this situation, using a problem that
885arises in the declaration of enumerated and subrange types in the
886programming language Pascal. These declarations look like this:
887
888@example
889type subrange = lo .. hi;
890type enum = (a, b, c);
891@end example
892
893@noindent
894The original language standard allows only numeric
895literals and constant identifiers for the subrange bounds (@samp{lo}
896and @samp{hi}), but Extended Pascal (ISO/IEC 10206:1990) and many other
897Pascal implementations allow arbitrary expressions there. This gives
898rise to the following situation, containing a superfluous pair of
899parentheses:
900
901@example
902type subrange = (a) .. b;
903@end example
904
905@noindent
906Compare this to the following declaration of an enumerated
907type with only one value:
908
909@example
910type enum = (a);
911@end example
912
913@noindent
914(These declarations are contrived, but they are syntactically
915valid, and more-complicated cases can come up in practical programs.)
916
917These two declarations look identical until the @samp{..} token.
918With normal @acronym{LALR}(1) one-token look-ahead it is not
919possible to decide between the two forms when the identifier
920@samp{a} is parsed. It is, however, desirable
921for a parser to decide this, since in the latter case
922@samp{a} must become a new identifier to represent the enumeration
923value, while in the former case @samp{a} must be evaluated with its
924current meaning, which may be a constant or even a function call.
925
926You could parse @samp{(a)} as an ``unspecified identifier in parentheses'',
927to be resolved later, but this typically requires substantial
928contortions in both semantic actions and large parts of the
929grammar, where the parentheses are nested in the recursive rules for
930expressions.
931
932You might think of using the lexer to distinguish between the two
933forms by returning different tokens for currently defined and
934undefined identifiers. But if these declarations occur in a local
935scope, and @samp{a} is defined in an outer scope, then both forms
936are possible---either locally redefining @samp{a}, or using the
937value of @samp{a} from the outer scope. So this approach cannot
938work.
939
940A solution to this problem is to use a @acronym{GLR} parser in its simplest
941form, i.e., without using special features such as @samp{%dprec} and
942@samp{%merge}. When the @acronym{GLR} parser reaches the critical state, it
943simply splits into two branches and pursues both syntax rules
944simultaneously. Sooner or later, one of them runs into a parsing
945error. If there is a @samp{..} token before the next
946@samp{;}, the rule for enumerated types fails since it cannot
947accept @samp{..} anywhere; otherwise, the subrange type rule
948fails since it requires a @samp{..} token. So one of the branches
949fails silently, and the other one continues normally, performing
950all the intermediate actions that were postponed during the split.
951
952If the input is syntactically incorrect, both branches fail and the parser
953reports a syntax error as usual.
954
955The effect of all this is that the parser seems to ``guess'' the
956correct branch to take, or in other words, it seems to use more
957look-ahead than the underlying @acronym{LALR}(1) algorithm actually allows
958for. In this example, @acronym{LALR}(2) would suffice, but also some cases
959that are not @acronym{LALR}(@math{k}) for any @math{k} can be handled this way.
960
961Since there can be only two branches and at least one of them
962must fail, you need not worry about merging the branches by
963using dynamic precedence or @samp{%merge}.
964
965Another potential problem of @acronym{GLR} does not arise here, either. In
966general, a @acronym{GLR} parser can take quadratic or cubic worst-case time,
967and the current Bison parser even takes exponential time and space
968for some grammars. In practice, this rarely happens, and for many
969grammars it is possible to prove that it cannot happen. In
970in the present example, there is only one conflict between two
971rules, and the type-declaration context where the conflict
972arises cannot be nested. So the number of
973branches that can exist at any time is limited by the constant 2,
974and the parsing time is still linear.
975
976So here we have a case where we can use the benefits of @acronym{GLR}, almost
977without disadvantages. There are two things to note, though.
978First, one should carefully analyze the conflicts reported by
979Bison to make sure that @acronym{GLR} splitting is done only where it is
980intended to be. A @acronym{GLR} parser splitting inadvertently may cause
981problems less obvious than an @acronym{LALR} parser statically choosing the
982wrong alternative in a conflict.
983
984Second, interactions with the lexer (@pxref{Semantic Tokens}) must
985be considered with great care. Since a split parser consumes tokens
986without performing any actions during the split, the lexer cannot
987obtain information via parser actions. Some cases of
988lexer interactions can simply be eliminated by using @acronym{GLR}, i.e.,
989shifting the complications from the lexer to the parser. Remaining
990cases have to be checked for safety.
991
992In our example, it would be safe for the lexer to return tokens
993based on their current meanings in some symbol table, because no new
994symbols are defined in the middle of a type declaration. Though it
995is possible for a parser to define the enumeration
996constants as they are parsed, before the type declaration is
997completed, it actually makes no difference since they cannot be used
998within the same enumerated type declaration.
999
1000Here is a Bison grammar corresponding to the example above. It
1001parses a vastly simplified form of Pascal type declarations.
1002
1003@example
1004%token TYPE DOTDOT ID
1005
1006@group
1007%left '+' '-'
1008%left '*' '/'
1009@end group
1010
1011%%
1012
1013@group
1014type_decl:
1015 TYPE ID '=' type ';'
1016;
1017@end group
1018
1019@group
1020type: '(' id_list ')'
1021 | expr DOTDOT expr
1022;
1023@end group
1024
1025@group
1026id_list: ID
1027 | id_list ',' ID
1028;
1029@end group
1030
1031@group
1032expr: '(' expr ')'
1033 | expr '+' expr
1034 | expr '-' expr
1035 | expr '*' expr
1036 | expr '/' expr
1037 | ID
1038;
1039@end group
1040@end example
1041
1042When used as a normal @acronym{LALR}(1) grammar, Bison correctly complains
1043about one reduce/reduce conflict. In the conflicting situation the
1044parser chooses one of the alternatives, arbitrarily the one
1045declared first. Therefore the following correct input is not
1046recognized:
1047
1048@example
1049type t = (a) .. b;
1050@end example
1051
1052The parser can be turned into a @acronym{GLR} parser, while also telling Bison
1053to be silent about the one known reduce/reduce conflict, simply by
1054adding these two declarations to the Bison input file:
1055
1056@example
1057%glr-parser
1058%expect-rr 1
1059@end example
1060
1061@noindent
1062No change in the grammar itself is required. Now the
1063parser recognizes all valid declarations, according to the
1064limited syntax above, transparently. In fact, the user does not even
1065notice when the parser splits.
1066
1067@node Locations Overview
1068@section Locations
1069@cindex location
1070@cindex textual location
1071@cindex location, textual
1072
1073Many applications, like interpreters or compilers, have to produce verbose
1074and useful error messages. To achieve this, one must be able to keep track of
1075the @dfn{textual location}, or @dfn{location}, of each syntactic construct.
1076Bison provides a mechanism for handling these locations.
1077
1078Each token has a semantic value. In a similar fashion, each token has an
1079associated location, but the type of locations is the same for all tokens and
1080groupings. Moreover, the output parser is equipped with a default data
1081structure for storing locations (@pxref{Locations}, for more details).
1082
1083Like semantic values, locations can be reached in actions using a dedicated
1084set of constructs. In the example above, the location of the whole grouping
1085is @code{@@$}, while the locations of the subexpressions are @code{@@1} and
1086@code{@@3}.
1087
1088When a rule is matched, a default action is used to compute the semantic value
1089of its left hand side (@pxref{Actions}). In the same way, another default
1090action is used for locations. However, the action for locations is general
1091enough for most cases, meaning there is usually no need to describe for each
1092rule how @code{@@$} should be formed. When building a new location for a given
1093grouping, the default behavior of the output parser is to take the beginning
1094of the first symbol, and the end of the last symbol.
1095
1096@node Bison Parser
1097@section Bison Output: the Parser File
1098@cindex Bison parser
1099@cindex Bison utility
1100@cindex lexical analyzer, purpose
1101@cindex parser
1102
1103When you run Bison, you give it a Bison grammar file as input. The output
1104is a C source file that parses the language described by the grammar.
1105This file is called a @dfn{Bison parser}. Keep in mind that the Bison
1106utility and the Bison parser are two distinct programs: the Bison utility
1107is a program whose output is the Bison parser that becomes part of your
1108program.
1109
1110The job of the Bison parser is to group tokens into groupings according to
1111the grammar rules---for example, to build identifiers and operators into
1112expressions. As it does this, it runs the actions for the grammar rules it
1113uses.
1114
1115The tokens come from a function called the @dfn{lexical analyzer} that
1116you must supply in some fashion (such as by writing it in C). The Bison
1117parser calls the lexical analyzer each time it wants a new token. It
1118doesn't know what is ``inside'' the tokens (though their semantic values
1119may reflect this). Typically the lexical analyzer makes the tokens by
1120parsing characters of text, but Bison does not depend on this.
1121@xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}.
1122
1123The Bison parser file is C code which defines a function named
1124@code{yyparse} which implements that grammar. This function does not make
1125a complete C program: you must supply some additional functions. One is
1126the lexical analyzer. Another is an error-reporting function which the
1127parser calls to report an error. In addition, a complete C program must
1128start with a function called @code{main}; you have to provide this, and
1129arrange for it to call @code{yyparse} or the parser will never run.
1130@xref{Interface, ,Parser C-Language Interface}.
1131
1132Aside from the token type names and the symbols in the actions you
1133write, all symbols defined in the Bison parser file itself
1134begin with @samp{yy} or @samp{YY}. This includes interface functions
1135such as the lexical analyzer function @code{yylex}, the error reporting
1136function @code{yyerror} and the parser function @code{yyparse} itself.
1137This also includes numerous identifiers used for internal purposes.
1138Therefore, you should avoid using C identifiers starting with @samp{yy}
1139or @samp{YY} in the Bison grammar file except for the ones defined in
1140this manual.
1141
1142In some cases the Bison parser file includes system headers, and in
1143those cases your code should respect the identifiers reserved by those
1144headers. On some non-@acronym{GNU} hosts, @code{<alloca.h>},
1145@code{<stddef.h>}, and @code{<stdlib.h>} are included as needed to
1146declare memory allocators and related types. Other system headers may
1147be included if you define @code{YYDEBUG} to a nonzero value
1148(@pxref{Tracing, ,Tracing Your Parser}).
1149
1150@node Stages
1151@section Stages in Using Bison
1152@cindex stages in using Bison
1153@cindex using Bison
1154
1155The actual language-design process using Bison, from grammar specification
1156to a working compiler or interpreter, has these parts:
1157
1158@enumerate
1159@item
1160Formally specify the grammar in a form recognized by Bison
1161(@pxref{Grammar File, ,Bison Grammar Files}). For each grammatical rule
1162in the language, describe the action that is to be taken when an
1163instance of that rule is recognized. The action is described by a
1164sequence of C statements.
1165
1166@item
1167Write a lexical analyzer to process input and pass tokens to the parser.
1168The lexical analyzer may be written by hand in C (@pxref{Lexical, ,The
1169Lexical Analyzer Function @code{yylex}}). It could also be produced
1170using Lex, but the use of Lex is not discussed in this manual.
1171
1172@item
1173Write a controlling function that calls the Bison-produced parser.
1174
1175@item
1176Write error-reporting routines.
1177@end enumerate
1178
1179To turn this source code as written into a runnable program, you
1180must follow these steps:
1181
1182@enumerate
1183@item
1184Run Bison on the grammar to produce the parser.
1185
1186@item
1187Compile the code output by Bison, as well as any other source files.
1188
1189@item
1190Link the object files to produce the finished product.
1191@end enumerate
1192
1193@node Grammar Layout
1194@section The Overall Layout of a Bison Grammar
1195@cindex grammar file
1196@cindex file format
1197@cindex format of grammar file
1198@cindex layout of Bison grammar
1199
1200The input file for the Bison utility is a @dfn{Bison grammar file}. The
1201general form of a Bison grammar file is as follows:
1202
1203@example
1204%@{
1205@var{Prologue}
1206%@}
1207
1208@var{Bison declarations}
1209
1210%%
1211@var{Grammar rules}
1212%%
1213@var{Epilogue}
1214@end example
1215
1216@noindent
1217The @samp{%%}, @samp{%@{} and @samp{%@}} are punctuation that appears
1218in every Bison grammar file to separate the sections.
1219
1220The prologue may define types and variables used in the actions. You can
1221also use preprocessor commands to define macros used there, and use
1222@code{#include} to include header files that do any of these things.
1223You need to declare the lexical analyzer @code{yylex} and the error
1224printer @code{yyerror} here, along with any other global identifiers
1225used by the actions in the grammar rules.
1226
1227The Bison declarations declare the names of the terminal and nonterminal
1228symbols, and may also describe operator precedence and the data types of
1229semantic values of various symbols.
1230
1231The grammar rules define how to construct each nonterminal symbol from its
1232parts.
1233
1234The epilogue can contain any code you want to use. Often the
1235definitions of functions declared in the prologue go here. In a
1236simple program, all the rest of the program can go here.
1237
1238@node Examples
1239@chapter Examples
1240@cindex simple examples
1241@cindex examples, simple
1242
1243Now we show and explain three sample programs written using Bison: a
1244reverse polish notation calculator, an algebraic (infix) notation
1245calculator, and a multi-function calculator. All three have been tested
1246under BSD Unix 4.3; each produces a usable, though limited, interactive
1247desk-top calculator.
1248
1249These examples are simple, but Bison grammars for real programming
1250languages are written the same way.
1251@ifinfo
1252You can copy these examples out of the Info file and into a source file
1253to try them.
1254@end ifinfo
1255
1256@menu
1257* RPN Calc:: Reverse polish notation calculator;
1258 a first example with no operator precedence.
1259* Infix Calc:: Infix (algebraic) notation calculator.
1260 Operator precedence is introduced.
1261* Simple Error Recovery:: Continuing after syntax errors.
1262* Location Tracking Calc:: Demonstrating the use of @@@var{n} and @@$.
1263* Multi-function Calc:: Calculator with memory and trig functions.
1264 It uses multiple data-types for semantic values.
1265* Exercises:: Ideas for improving the multi-function calculator.
1266@end menu
1267
1268@node RPN Calc
1269@section Reverse Polish Notation Calculator
1270@cindex reverse polish notation
1271@cindex polish notation calculator
1272@cindex @code{rpcalc}
1273@cindex calculator, simple
1274
1275The first example is that of a simple double-precision @dfn{reverse polish
1276notation} calculator (a calculator using postfix operators). This example
1277provides a good starting point, since operator precedence is not an issue.
1278The second example will illustrate how operator precedence is handled.
1279
1280The source code for this calculator is named @file{rpcalc.y}. The
1281@samp{.y} extension is a convention used for Bison input files.
1282
1283@menu
1284* Decls: Rpcalc Decls. Prologue (declarations) for rpcalc.
1285* Rules: Rpcalc Rules. Grammar Rules for rpcalc, with explanation.
1286* Lexer: Rpcalc Lexer. The lexical analyzer.
1287* Main: Rpcalc Main. The controlling function.
1288* Error: Rpcalc Error. The error reporting function.
1289* Gen: Rpcalc Gen. Running Bison on the grammar file.
1290* Comp: Rpcalc Compile. Run the C compiler on the output code.
1291@end menu
1292
1293@node Rpcalc Decls
1294@subsection Declarations for @code{rpcalc}
1295
1296Here are the C and Bison declarations for the reverse polish notation
1297calculator. As in C, comments are placed between @samp{/*@dots{}*/}.
1298
1299@example
1300/* Reverse polish notation calculator. */
1301
1302%@{
1303 #define YYSTYPE double
1304 #include <math.h>
1305 int yylex (void);
1306 void yyerror (char const *);
1307%@}
1308
1309%token NUM
1310
1311%% /* Grammar rules and actions follow. */
1312@end example
1313
1314The declarations section (@pxref{Prologue, , The prologue}) contains two
1315preprocessor directives and two forward declarations.
1316
1317The @code{#define} directive defines the macro @code{YYSTYPE}, thus
1318specifying the C data type for semantic values of both tokens and
1319groupings (@pxref{Value Type, ,Data Types of Semantic Values}). The
1320Bison parser will use whatever type @code{YYSTYPE} is defined as; if you
1321don't define it, @code{int} is the default. Because we specify
1322@code{double}, each token and each expression has an associated value,
1323which is a floating point number.
1324
1325The @code{#include} directive is used to declare the exponentiation
1326function @code{pow}.
1327
1328The forward declarations for @code{yylex} and @code{yyerror} are
1329needed because the C language requires that functions be declared
1330before they are used. These functions will be defined in the
1331epilogue, but the parser calls them so they must be declared in the
1332prologue.
1333
1334The second section, Bison declarations, provides information to Bison
1335about the token types (@pxref{Bison Declarations, ,The Bison
1336Declarations Section}). Each terminal symbol that is not a
1337single-character literal must be declared here. (Single-character
1338literals normally don't need to be declared.) In this example, all the
1339arithmetic operators are designated by single-character literals, so the
1340only terminal symbol that needs to be declared is @code{NUM}, the token
1341type for numeric constants.
1342
1343@node Rpcalc Rules
1344@subsection Grammar Rules for @code{rpcalc}
1345
1346Here are the grammar rules for the reverse polish notation calculator.
1347
1348@example
1349input: /* empty */
1350 | input line
1351;
1352
1353line: '\n'
1354 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1355;
1356
1357exp: NUM @{ $$ = $1; @}
1358 | exp exp '+' @{ $$ = $1 + $2; @}
1359 | exp exp '-' @{ $$ = $1 - $2; @}
1360 | exp exp '*' @{ $$ = $1 * $2; @}
1361 | exp exp '/' @{ $$ = $1 / $2; @}
1362 /* Exponentiation */
1363 | exp exp '^' @{ $$ = pow ($1, $2); @}
1364 /* Unary minus */
1365 | exp 'n' @{ $$ = -$1; @}
1366;
1367%%
1368@end example
1369
1370The groupings of the rpcalc ``language'' defined here are the expression
1371(given the name @code{exp}), the line of input (@code{line}), and the
1372complete input transcript (@code{input}). Each of these nonterminal
1373symbols has several alternate rules, joined by the @samp{|} punctuator
1374which is read as ``or''. The following sections explain what these rules
1375mean.
1376
1377The semantics of the language is determined by the actions taken when a
1378grouping is recognized. The actions are the C code that appears inside
1379braces. @xref{Actions}.
1380
1381You must specify these actions in C, but Bison provides the means for
1382passing semantic values between the rules. In each action, the
1383pseudo-variable @code{$$} stands for the semantic value for the grouping
1384that the rule is going to construct. Assigning a value to @code{$$} is the
1385main job of most actions. The semantic values of the components of the
1386rule are referred to as @code{$1}, @code{$2}, and so on.
1387
1388@menu
1389* Rpcalc Input::
1390* Rpcalc Line::
1391* Rpcalc Expr::
1392@end menu
1393
1394@node Rpcalc Input
1395@subsubsection Explanation of @code{input}
1396
1397Consider the definition of @code{input}:
1398
1399@example
1400input: /* empty */
1401 | input line
1402;
1403@end example
1404
1405This definition reads as follows: ``A complete input is either an empty
1406string, or a complete input followed by an input line''. Notice that
1407``complete input'' is defined in terms of itself. This definition is said
1408to be @dfn{left recursive} since @code{input} appears always as the
1409leftmost symbol in the sequence. @xref{Recursion, ,Recursive Rules}.
1410
1411The first alternative is empty because there are no symbols between the
1412colon and the first @samp{|}; this means that @code{input} can match an
1413empty string of input (no tokens). We write the rules this way because it
1414is legitimate to type @kbd{Ctrl-d} right after you start the calculator.
1415It's conventional to put an empty alternative first and write the comment
1416@samp{/* empty */} in it.
1417
1418The second alternate rule (@code{input line}) handles all nontrivial input.
1419It means, ``After reading any number of lines, read one more line if
1420possible.'' The left recursion makes this rule into a loop. Since the
1421first alternative matches empty input, the loop can be executed zero or
1422more times.
1423
1424The parser function @code{yyparse} continues to process input until a
1425grammatical error is seen or the lexical analyzer says there are no more
1426input tokens; we will arrange for the latter to happen at end-of-input.
1427
1428@node Rpcalc Line
1429@subsubsection Explanation of @code{line}
1430
1431Now consider the definition of @code{line}:
1432
1433@example
1434line: '\n'
1435 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1436;
1437@end example
1438
1439The first alternative is a token which is a newline character; this means
1440that rpcalc accepts a blank line (and ignores it, since there is no
1441action). The second alternative is an expression followed by a newline.
1442This is the alternative that makes rpcalc useful. The semantic value of
1443the @code{exp} grouping is the value of @code{$1} because the @code{exp} in
1444question is the first symbol in the alternative. The action prints this
1445value, which is the result of the computation the user asked for.
1446
1447This action is unusual because it does not assign a value to @code{$$}. As
1448a consequence, the semantic value associated with the @code{line} is
1449uninitialized (its value will be unpredictable). This would be a bug if
1450that value were ever used, but we don't use it: once rpcalc has printed the
1451value of the user's input line, that value is no longer needed.
1452
1453@node Rpcalc Expr
1454@subsubsection Explanation of @code{expr}
1455
1456The @code{exp} grouping has several rules, one for each kind of expression.
1457The first rule handles the simplest expressions: those that are just numbers.
1458The second handles an addition-expression, which looks like two expressions
1459followed by a plus-sign. The third handles subtraction, and so on.
1460
1461@example
1462exp: NUM
1463 | exp exp '+' @{ $$ = $1 + $2; @}
1464 | exp exp '-' @{ $$ = $1 - $2; @}
1465 @dots{}
1466 ;
1467@end example
1468
1469We have used @samp{|} to join all the rules for @code{exp}, but we could
1470equally well have written them separately:
1471
1472@example
1473exp: NUM ;
1474exp: exp exp '+' @{ $$ = $1 + $2; @} ;
1475exp: exp exp '-' @{ $$ = $1 - $2; @} ;
1476 @dots{}
1477@end example
1478
1479Most of the rules have actions that compute the value of the expression in
1480terms of the value of its parts. For example, in the rule for addition,
1481@code{$1} refers to the first component @code{exp} and @code{$2} refers to
1482the second one. The third component, @code{'+'}, has no meaningful
1483associated semantic value, but if it had one you could refer to it as
1484@code{$3}. When @code{yyparse} recognizes a sum expression using this
1485rule, the sum of the two subexpressions' values is produced as the value of
1486the entire expression. @xref{Actions}.
1487
1488You don't have to give an action for every rule. When a rule has no
1489action, Bison by default copies the value of @code{$1} into @code{$$}.
1490This is what happens in the first rule (the one that uses @code{NUM}).
1491
1492The formatting shown here is the recommended convention, but Bison does
1493not require it. You can add or change white space as much as you wish.
1494For example, this:
1495
1496@example
1497exp : NUM | exp exp '+' @{$$ = $1 + $2; @} | @dots{} ;
1498@end example
1499
1500@noindent
1501means the same thing as this:
1502
1503@example
1504exp: NUM
1505 | exp exp '+' @{ $$ = $1 + $2; @}
1506 | @dots{}
1507;
1508@end example
1509
1510@noindent
1511The latter, however, is much more readable.
1512
1513@node Rpcalc Lexer
1514@subsection The @code{rpcalc} Lexical Analyzer
1515@cindex writing a lexical analyzer
1516@cindex lexical analyzer, writing
1517
1518The lexical analyzer's job is low-level parsing: converting characters
1519or sequences of characters into tokens. The Bison parser gets its
1520tokens by calling the lexical analyzer. @xref{Lexical, ,The Lexical
1521Analyzer Function @code{yylex}}.
1522
1523Only a simple lexical analyzer is needed for the @acronym{RPN}
1524calculator. This
1525lexical analyzer skips blanks and tabs, then reads in numbers as
1526@code{double} and returns them as @code{NUM} tokens. Any other character
1527that isn't part of a number is a separate token. Note that the token-code
1528for such a single-character token is the character itself.
1529
1530The return value of the lexical analyzer function is a numeric code which
1531represents a token type. The same text used in Bison rules to stand for
1532this token type is also a C expression for the numeric code for the type.
1533This works in two ways. If the token type is a character literal, then its
1534numeric code is that of the character; you can use the same
1535character literal in the lexical analyzer to express the number. If the
1536token type is an identifier, that identifier is defined by Bison as a C
1537macro whose definition is the appropriate number. In this example,
1538therefore, @code{NUM} becomes a macro for @code{yylex} to use.
1539
1540The semantic value of the token (if it has one) is stored into the
1541global variable @code{yylval}, which is where the Bison parser will look
1542for it. (The C data type of @code{yylval} is @code{YYSTYPE}, which was
1543defined at the beginning of the grammar; @pxref{Rpcalc Decls,
1544,Declarations for @code{rpcalc}}.)
1545
1546A token type code of zero is returned if the end-of-input is encountered.
1547(Bison recognizes any nonpositive value as indicating end-of-input.)
1548
1549Here is the code for the lexical analyzer:
1550
1551@example
1552@group
1553/* The lexical analyzer returns a double floating point
1554 number on the stack and the token NUM, or the numeric code
1555 of the character read if not a number. It skips all blanks
1556 and tabs, and returns 0 for end-of-input. */
1557
1558#include <ctype.h>
1559@end group
1560
1561@group
1562int
1563yylex (void)
1564@{
1565 int c;
1566
1567 /* Skip white space. */
1568 while ((c = getchar ()) == ' ' || c == '\t')
1569 ;
1570@end group
1571@group
1572 /* Process numbers. */
1573 if (c == '.' || isdigit (c))
1574 @{
1575 ungetc (c, stdin);
1576 scanf ("%lf", &yylval);
1577 return NUM;
1578 @}
1579@end group
1580@group
1581 /* Return end-of-input. */
1582 if (c == EOF)
1583 return 0;
1584 /* Return a single char. */
1585 return c;
1586@}
1587@end group
1588@end example
1589
1590@node Rpcalc Main
1591@subsection The Controlling Function
1592@cindex controlling function
1593@cindex main function in simple example
1594
1595In keeping with the spirit of this example, the controlling function is
1596kept to the bare minimum. The only requirement is that it call
1597@code{yyparse} to start the process of parsing.
1598
1599@example
1600@group
1601int
1602main (void)
1603@{
1604 return yyparse ();
1605@}
1606@end group
1607@end example
1608
1609@node Rpcalc Error
1610@subsection The Error Reporting Routine
1611@cindex error reporting routine
1612
1613When @code{yyparse} detects a syntax error, it calls the error reporting
1614function @code{yyerror} to print an error message (usually but not
1615always @code{"syntax error"}). It is up to the programmer to supply
1616@code{yyerror} (@pxref{Interface, ,Parser C-Language Interface}), so
1617here is the definition we will use:
1618
1619@example
1620@group
1621#include <stdio.h>
1622
1623/* Called by yyparse on error. */
1624void
1625yyerror (char const *s)
1626@{
1627 fprintf (stderr, "%s\n", s);
1628@}
1629@end group
1630@end example
1631
1632After @code{yyerror} returns, the Bison parser may recover from the error
1633and continue parsing if the grammar contains a suitable error rule
1634(@pxref{Error Recovery}). Otherwise, @code{yyparse} returns nonzero. We
1635have not written any error rules in this example, so any invalid input will
1636cause the calculator program to exit. This is not clean behavior for a
1637real calculator, but it is adequate for the first example.
1638
1639@node Rpcalc Gen
1640@subsection Running Bison to Make the Parser
1641@cindex running Bison (introduction)
1642
1643Before running Bison to produce a parser, we need to decide how to
1644arrange all the source code in one or more source files. For such a
1645simple example, the easiest thing is to put everything in one file. The
1646definitions of @code{yylex}, @code{yyerror} and @code{main} go at the
1647end, in the epilogue of the file
1648(@pxref{Grammar Layout, ,The Overall Layout of a Bison Grammar}).
1649
1650For a large project, you would probably have several source files, and use
1651@code{make} to arrange to recompile them.
1652
1653With all the source in a single file, you use the following command to
1654convert it into a parser file:
1655
1656@example
1657bison @var{file_name}.y
1658@end example
1659
1660@noindent
1661In this example the file was called @file{rpcalc.y} (for ``Reverse Polish
1662@sc{calc}ulator''). Bison produces a file named @file{@var{file_name}.tab.c},
1663removing the @samp{.y} from the original file name. The file output by
1664Bison contains the source code for @code{yyparse}. The additional
1665functions in the input file (@code{yylex}, @code{yyerror} and @code{main})
1666are copied verbatim to the output.
1667
1668@node Rpcalc Compile
1669@subsection Compiling the Parser File
1670@cindex compiling the parser
1671
1672Here is how to compile and run the parser file:
1673
1674@example
1675@group
1676# @r{List files in current directory.}
1677$ @kbd{ls}
1678rpcalc.tab.c rpcalc.y
1679@end group
1680
1681@group
1682# @r{Compile the Bison parser.}
1683# @r{@samp{-lm} tells compiler to search math library for @code{pow}.}
1684$ @kbd{cc -lm -o rpcalc rpcalc.tab.c}
1685@end group
1686
1687@group
1688# @r{List files again.}
1689$ @kbd{ls}
1690rpcalc rpcalc.tab.c rpcalc.y
1691@end group
1692@end example
1693
1694The file @file{rpcalc} now contains the executable code. Here is an
1695example session using @code{rpcalc}.
1696
1697@example
1698$ @kbd{rpcalc}
1699@kbd{4 9 +}
170013
1701@kbd{3 7 + 3 4 5 *+-}
1702-13
1703@kbd{3 7 + 3 4 5 * + - n} @r{Note the unary minus, @samp{n}}
170413
1705@kbd{5 6 / 4 n +}
1706-3.166666667
1707@kbd{3 4 ^} @r{Exponentiation}
170881
1709@kbd{^D} @r{End-of-file indicator}
1710$
1711@end example
1712
1713@node Infix Calc
1714@section Infix Notation Calculator: @code{calc}
1715@cindex infix notation calculator
1716@cindex @code{calc}
1717@cindex calculator, infix notation
1718
1719We now modify rpcalc to handle infix operators instead of postfix. Infix
1720notation involves the concept of operator precedence and the need for
1721parentheses nested to arbitrary depth. Here is the Bison code for
1722@file{calc.y}, an infix desk-top calculator.
1723
1724@example
1725/* Infix notation calculator. */
1726
1727%@{
1728 #define YYSTYPE double
1729 #include <math.h>
1730 #include <stdio.h>
1731 int yylex (void);
1732 void yyerror (char const *);
1733%@}
1734
1735/* Bison declarations. */
1736%token NUM
1737%left '-' '+'
1738%left '*' '/'
1739%left NEG /* negation--unary minus */
1740%right '^' /* exponentiation */
1741
1742%% /* The grammar follows. */
1743input: /* empty */
1744 | input line
1745;
1746
1747line: '\n'
1748 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1749;
1750
1751exp: NUM @{ $$ = $1; @}
1752 | exp '+' exp @{ $$ = $1 + $3; @}
1753 | exp '-' exp @{ $$ = $1 - $3; @}
1754 | exp '*' exp @{ $$ = $1 * $3; @}
1755 | exp '/' exp @{ $$ = $1 / $3; @}
1756 | '-' exp %prec NEG @{ $$ = -$2; @}
1757 | exp '^' exp @{ $$ = pow ($1, $3); @}
1758 | '(' exp ')' @{ $$ = $2; @}
1759;
1760%%
1761@end example
1762
1763@noindent
1764The functions @code{yylex}, @code{yyerror} and @code{main} can be the
1765same as before.
1766
1767There are two important new features shown in this code.
1768
1769In the second section (Bison declarations), @code{%left} declares token
1770types and says they are left-associative operators. The declarations
1771@code{%left} and @code{%right} (right associativity) take the place of
1772@code{%token} which is used to declare a token type name without
1773associativity. (These tokens are single-character literals, which
1774ordinarily don't need to be declared. We declare them here to specify
1775the associativity.)
1776
1777Operator precedence is determined by the line ordering of the
1778declarations; the higher the line number of the declaration (lower on
1779the page or screen), the higher the precedence. Hence, exponentiation
1780has the highest precedence, unary minus (@code{NEG}) is next, followed
1781by @samp{*} and @samp{/}, and so on. @xref{Precedence, ,Operator
1782Precedence}.
1783
1784The other important new feature is the @code{%prec} in the grammar
1785section for the unary minus operator. The @code{%prec} simply instructs
1786Bison that the rule @samp{| '-' exp} has the same precedence as
1787@code{NEG}---in this case the next-to-highest. @xref{Contextual
1788Precedence, ,Context-Dependent Precedence}.
1789
1790Here is a sample run of @file{calc.y}:
1791
1792@need 500
1793@example
1794$ @kbd{calc}
1795@kbd{4 + 4.5 - (34/(8*3+-3))}
17966.880952381
1797@kbd{-56 + 2}
1798-54
1799@kbd{3 ^ 2}
18009
1801@end example
1802
1803@node Simple Error Recovery
1804@section Simple Error Recovery
1805@cindex error recovery, simple
1806
1807Up to this point, this manual has not addressed the issue of @dfn{error
1808recovery}---how to continue parsing after the parser detects a syntax
1809error. All we have handled is error reporting with @code{yyerror}.
1810Recall that by default @code{yyparse} returns after calling
1811@code{yyerror}. This means that an erroneous input line causes the
1812calculator program to exit. Now we show how to rectify this deficiency.
1813
1814The Bison language itself includes the reserved word @code{error}, which
1815may be included in the grammar rules. In the example below it has
1816been added to one of the alternatives for @code{line}:
1817
1818@example
1819@group
1820line: '\n'
1821 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1822 | error '\n' @{ yyerrok; @}
1823;
1824@end group
1825@end example
1826
1827This addition to the grammar allows for simple error recovery in the
1828event of a syntax error. If an expression that cannot be evaluated is
1829read, the error will be recognized by the third rule for @code{line},
1830and parsing will continue. (The @code{yyerror} function is still called
1831upon to print its message as well.) The action executes the statement
1832@code{yyerrok}, a macro defined automatically by Bison; its meaning is
1833that error recovery is complete (@pxref{Error Recovery}). Note the
1834difference between @code{yyerrok} and @code{yyerror}; neither one is a
1835misprint.
1836
1837This form of error recovery deals with syntax errors. There are other
1838kinds of errors; for example, division by zero, which raises an exception
1839signal that is normally fatal. A real calculator program must handle this
1840signal and use @code{longjmp} to return to @code{main} and resume parsing
1841input lines; it would also have to discard the rest of the current line of
1842input. We won't discuss this issue further because it is not specific to
1843Bison programs.
1844
1845@node Location Tracking Calc
1846@section Location Tracking Calculator: @code{ltcalc}
1847@cindex location tracking calculator
1848@cindex @code{ltcalc}
1849@cindex calculator, location tracking
1850
1851This example extends the infix notation calculator with location
1852tracking. This feature will be used to improve the error messages. For
1853the sake of clarity, this example is a simple integer calculator, since
1854most of the work needed to use locations will be done in the lexical
1855analyzer.
1856
1857@menu
1858* Decls: Ltcalc Decls. Bison and C declarations for ltcalc.
1859* Rules: Ltcalc Rules. Grammar rules for ltcalc, with explanations.
1860* Lexer: Ltcalc Lexer. The lexical analyzer.
1861@end menu
1862
1863@node Ltcalc Decls
1864@subsection Declarations for @code{ltcalc}
1865
1866The C and Bison declarations for the location tracking calculator are
1867the same as the declarations for the infix notation calculator.
1868
1869@example
1870/* Location tracking calculator. */
1871
1872%@{
1873 #define YYSTYPE int
1874 #include <math.h>
1875 int yylex (void);
1876 void yyerror (char const *);
1877%@}
1878
1879/* Bison declarations. */
1880%token NUM
1881
1882%left '-' '+'
1883%left '*' '/'
1884%left NEG
1885%right '^'
1886
1887%% /* The grammar follows. */
1888@end example
1889
1890@noindent
1891Note there are no declarations specific to locations. Defining a data
1892type for storing locations is not needed: we will use the type provided
1893by default (@pxref{Location Type, ,Data Types of Locations}), which is a
1894four member structure with the following integer fields:
1895@code{first_line}, @code{first_column}, @code{last_line} and
1896@code{last_column}.
1897
1898@node Ltcalc Rules
1899@subsection Grammar Rules for @code{ltcalc}
1900
1901Whether handling locations or not has no effect on the syntax of your
1902language. Therefore, grammar rules for this example will be very close
1903to those of the previous example: we will only modify them to benefit
1904from the new information.
1905
1906Here, we will use locations to report divisions by zero, and locate the
1907wrong expressions or subexpressions.
1908
1909@example
1910@group
1911input : /* empty */
1912 | input line
1913;
1914@end group
1915
1916@group
1917line : '\n'
1918 | exp '\n' @{ printf ("%d\n", $1); @}
1919;
1920@end group
1921
1922@group
1923exp : NUM @{ $$ = $1; @}
1924 | exp '+' exp @{ $$ = $1 + $3; @}
1925 | exp '-' exp @{ $$ = $1 - $3; @}
1926 | exp '*' exp @{ $$ = $1 * $3; @}
1927@end group
1928@group
1929 | exp '/' exp
1930 @{
1931 if ($3)
1932 $$ = $1 / $3;
1933 else
1934 @{
1935 $$ = 1;
1936 fprintf (stderr, "%d.%d-%d.%d: division by zero",
1937 @@3.first_line, @@3.first_column,
1938 @@3.last_line, @@3.last_column);
1939 @}
1940 @}
1941@end group
1942@group
1943 | '-' exp %preg NEG @{ $$ = -$2; @}
1944 | exp '^' exp @{ $$ = pow ($1, $3); @}
1945 | '(' exp ')' @{ $$ = $2; @}
1946@end group
1947@end example
1948
1949This code shows how to reach locations inside of semantic actions, by
1950using the pseudo-variables @code{@@@var{n}} for rule components, and the
1951pseudo-variable @code{@@$} for groupings.
1952
1953We don't need to assign a value to @code{@@$}: the output parser does it
1954automatically. By default, before executing the C code of each action,
1955@code{@@$} is set to range from the beginning of @code{@@1} to the end
1956of @code{@@@var{n}}, for a rule with @var{n} components. This behavior
1957can be redefined (@pxref{Location Default Action, , Default Action for
1958Locations}), and for very specific rules, @code{@@$} can be computed by
1959hand.
1960
1961@node Ltcalc Lexer
1962@subsection The @code{ltcalc} Lexical Analyzer.
1963
1964Until now, we relied on Bison's defaults to enable location
1965tracking. The next step is to rewrite the lexical analyzer, and make it
1966able to feed the parser with the token locations, as it already does for
1967semantic values.
1968
1969To this end, we must take into account every single character of the
1970input text, to avoid the computed locations of being fuzzy or wrong:
1971
1972@example
1973@group
1974int
1975yylex (void)
1976@{
1977 int c;
1978@end group
1979
1980@group
1981 /* Skip white space. */
1982 while ((c = getchar ()) == ' ' || c == '\t')
1983 ++yylloc.last_column;
1984@end group
1985
1986@group
1987 /* Step. */
1988 yylloc.first_line = yylloc.last_line;
1989 yylloc.first_column = yylloc.last_column;
1990@end group
1991
1992@group
1993 /* Process numbers. */
1994 if (isdigit (c))
1995 @{
1996 yylval = c - '0';
1997 ++yylloc.last_column;
1998 while (isdigit (c = getchar ()))
1999 @{
2000 ++yylloc.last_column;
2001 yylval = yylval * 10 + c - '0';
2002 @}
2003 ungetc (c, stdin);
2004 return NUM;
2005 @}
2006@end group
2007
2008 /* Return end-of-input. */
2009 if (c == EOF)
2010 return 0;
2011
2012 /* Return a single char, and update location. */
2013 if (c == '\n')
2014 @{
2015 ++yylloc.last_line;
2016 yylloc.last_column = 0;
2017 @}
2018 else
2019 ++yylloc.last_column;
2020 return c;
2021@}
2022@end example
2023
2024Basically, the lexical analyzer performs the same processing as before:
2025it skips blanks and tabs, and reads numbers or single-character tokens.
2026In addition, it updates @code{yylloc}, the global variable (of type
2027@code{YYLTYPE}) containing the token's location.
2028
2029Now, each time this function returns a token, the parser has its number
2030as well as its semantic value, and its location in the text. The last
2031needed change is to initialize @code{yylloc}, for example in the
2032controlling function:
2033
2034@example
2035@group
2036int
2037main (void)
2038@{
2039 yylloc.first_line = yylloc.last_line = 1;
2040 yylloc.first_column = yylloc.last_column = 0;
2041 return yyparse ();
2042@}
2043@end group
2044@end example
2045
2046Remember that computing locations is not a matter of syntax. Every
2047character must be associated to a location update, whether it is in
2048valid input, in comments, in literal strings, and so on.
2049
2050@node Multi-function Calc
2051@section Multi-Function Calculator: @code{mfcalc}
2052@cindex multi-function calculator
2053@cindex @code{mfcalc}
2054@cindex calculator, multi-function
2055
2056Now that the basics of Bison have been discussed, it is time to move on to
2057a more advanced problem. The above calculators provided only five
2058functions, @samp{+}, @samp{-}, @samp{*}, @samp{/} and @samp{^}. It would
2059be nice to have a calculator that provides other mathematical functions such
2060as @code{sin}, @code{cos}, etc.
2061
2062It is easy to add new operators to the infix calculator as long as they are
2063only single-character literals. The lexical analyzer @code{yylex} passes
2064back all nonnumber characters as tokens, so new grammar rules suffice for
2065adding a new operator. But we want something more flexible: built-in
2066functions whose syntax has this form:
2067
2068@example
2069@var{function_name} (@var{argument})
2070@end example
2071
2072@noindent
2073At the same time, we will add memory to the calculator, by allowing you
2074to create named variables, store values in them, and use them later.
2075Here is a sample session with the multi-function calculator:
2076
2077@example
2078$ @kbd{mfcalc}
2079@kbd{pi = 3.141592653589}
20803.1415926536
2081@kbd{sin(pi)}
20820.0000000000
2083@kbd{alpha = beta1 = 2.3}
20842.3000000000
2085@kbd{alpha}
20862.3000000000
2087@kbd{ln(alpha)}
20880.8329091229
2089@kbd{exp(ln(beta1))}
20902.3000000000
2091$
2092@end example
2093
2094Note that multiple assignment and nested function calls are permitted.
2095
2096@menu
2097* Decl: Mfcalc Decl. Bison declarations for multi-function calculator.
2098* Rules: Mfcalc Rules. Grammar rules for the calculator.
2099* Symtab: Mfcalc Symtab. Symbol table management subroutines.
2100@end menu
2101
2102@node Mfcalc Decl
2103@subsection Declarations for @code{mfcalc}
2104
2105Here are the C and Bison declarations for the multi-function calculator.
2106
2107@smallexample
2108@group
2109%@{
2110 #include <math.h> /* For math functions, cos(), sin(), etc. */
2111 #include "calc.h" /* Contains definition of `symrec'. */
2112 int yylex (void);
2113 void yyerror (char const *);
2114%@}
2115@end group
2116@group
2117%union @{
2118 double val; /* For returning numbers. */
2119 symrec *tptr; /* For returning symbol-table pointers. */
2120@}
2121@end group
2122%token <val> NUM /* Simple double precision number. */
2123%token <tptr> VAR FNCT /* Variable and Function. */
2124%type <val> exp
2125
2126@group
2127%right '='
2128%left '-' '+'
2129%left '*' '/'
2130%left NEG /* negation--unary minus */
2131%right '^' /* exponentiation */
2132@end group
2133%% /* The grammar follows. */
2134@end smallexample
2135
2136The above grammar introduces only two new features of the Bison language.
2137These features allow semantic values to have various data types
2138(@pxref{Multiple Types, ,More Than One Value Type}).
2139
2140The @code{%union} declaration specifies the entire list of possible types;
2141this is instead of defining @code{YYSTYPE}. The allowable types are now
2142double-floats (for @code{exp} and @code{NUM}) and pointers to entries in
2143the symbol table. @xref{Union Decl, ,The Collection of Value Types}.
2144
2145Since values can now have various types, it is necessary to associate a
2146type with each grammar symbol whose semantic value is used. These symbols
2147are @code{NUM}, @code{VAR}, @code{FNCT}, and @code{exp}. Their
2148declarations are augmented with information about their data type (placed
2149between angle brackets).
2150
2151The Bison construct @code{%type} is used for declaring nonterminal
2152symbols, just as @code{%token} is used for declaring token types. We
2153have not used @code{%type} before because nonterminal symbols are
2154normally declared implicitly by the rules that define them. But
2155@code{exp} must be declared explicitly so we can specify its value type.
2156@xref{Type Decl, ,Nonterminal Symbols}.
2157
2158@node Mfcalc Rules
2159@subsection Grammar Rules for @code{mfcalc}
2160
2161Here are the grammar rules for the multi-function calculator.
2162Most of them are copied directly from @code{calc}; three rules,
2163those which mention @code{VAR} or @code{FNCT}, are new.
2164
2165@smallexample
2166@group
2167input: /* empty */
2168 | input line
2169;
2170@end group
2171
2172@group
2173line:
2174 '\n'
2175 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
2176 | error '\n' @{ yyerrok; @}
2177;
2178@end group
2179
2180@group
2181exp: NUM @{ $$ = $1; @}
2182 | VAR @{ $$ = $1->value.var; @}
2183 | VAR '=' exp @{ $$ = $3; $1->value.var = $3; @}
2184 | FNCT '(' exp ')' @{ $$ = (*($1->value.fnctptr))($3); @}
2185 | exp '+' exp @{ $$ = $1 + $3; @}
2186 | exp '-' exp @{ $$ = $1 - $3; @}
2187 | exp '*' exp @{ $$ = $1 * $3; @}
2188 | exp '/' exp @{ $$ = $1 / $3; @}
2189 | '-' exp %prec NEG @{ $$ = -$2; @}
2190 | exp '^' exp @{ $$ = pow ($1, $3); @}
2191 | '(' exp ')' @{ $$ = $2; @}
2192;
2193@end group
2194/* End of grammar. */
2195%%
2196@end smallexample
2197
2198@node Mfcalc Symtab
2199@subsection The @code{mfcalc} Symbol Table
2200@cindex symbol table example
2201
2202The multi-function calculator requires a symbol table to keep track of the
2203names and meanings of variables and functions. This doesn't affect the
2204grammar rules (except for the actions) or the Bison declarations, but it
2205requires some additional C functions for support.
2206
2207The symbol table itself consists of a linked list of records. Its
2208definition, which is kept in the header @file{calc.h}, is as follows. It
2209provides for either functions or variables to be placed in the table.
2210
2211@smallexample
2212@group
2213/* Function type. */
2214typedef double (*func_t) (double);
2215@end group
2216
2217@group
2218/* Data type for links in the chain of symbols. */
2219struct symrec
2220@{
2221 char *name; /* name of symbol */
2222 int type; /* type of symbol: either VAR or FNCT */
2223 union
2224 @{
2225 double var; /* value of a VAR */
2226 func_t fnctptr; /* value of a FNCT */
2227 @} value;
2228 struct symrec *next; /* link field */
2229@};
2230@end group
2231
2232@group
2233typedef struct symrec symrec;
2234
2235/* The symbol table: a chain of `struct symrec'. */
2236extern symrec *sym_table;
2237
2238symrec *putsym (char const *, func_t);
2239symrec *getsym (char const *);
2240@end group
2241@end smallexample
2242
2243The new version of @code{main} includes a call to @code{init_table}, a
2244function that initializes the symbol table. Here it is, and
2245@code{init_table} as well:
2246
2247@smallexample
2248#include <stdio.h>
2249
2250@group
2251/* Called by yyparse on error. */
2252void
2253yyerror (char const *s)
2254@{
2255 printf ("%s\n", s);
2256@}
2257@end group
2258
2259@group
2260struct init
2261@{
2262 char const *fname;
2263 double (*fnct) (double);
2264@};
2265@end group
2266
2267@group
2268struct init const arith_fncts[] =
2269@{
2270 "sin", sin,
2271 "cos", cos,
2272 "atan", atan,
2273 "ln", log,
2274 "exp", exp,
2275 "sqrt", sqrt,
2276 0, 0
2277@};
2278@end group
2279
2280@group
2281/* The symbol table: a chain of `struct symrec'. */
2282symrec *sym_table;
2283@end group
2284
2285@group
2286/* Put arithmetic functions in table. */
2287void
2288init_table (void)
2289@{
2290 int i;
2291 symrec *ptr;
2292 for (i = 0; arith_fncts[i].fname != 0; i++)
2293 @{
2294 ptr = putsym (arith_fncts[i].fname, FNCT);
2295 ptr->value.fnctptr = arith_fncts[i].fnct;
2296 @}
2297@}
2298@end group
2299
2300@group
2301int
2302main (void)
2303@{
2304 init_table ();
2305 return yyparse ();
2306@}
2307@end group
2308@end smallexample
2309
2310By simply editing the initialization list and adding the necessary include
2311files, you can add additional functions to the calculator.
2312
2313Two important functions allow look-up and installation of symbols in the
2314symbol table. The function @code{putsym} is passed a name and the type
2315(@code{VAR} or @code{FNCT}) of the object to be installed. The object is
2316linked to the front of the list, and a pointer to the object is returned.
2317The function @code{getsym} is passed the name of the symbol to look up. If
2318found, a pointer to that symbol is returned; otherwise zero is returned.
2319
2320@smallexample
2321symrec *
2322putsym (char const *sym_name, int sym_type)
2323@{
2324 symrec *ptr;
2325 ptr = (symrec *) malloc (sizeof (symrec));
2326 ptr->name = (char *) malloc (strlen (sym_name) + 1);
2327 strcpy (ptr->name,sym_name);
2328 ptr->type = sym_type;
2329 ptr->value.var = 0; /* Set value to 0 even if fctn. */
2330 ptr->next = (struct symrec *)sym_table;
2331 sym_table = ptr;
2332 return ptr;
2333@}
2334
2335symrec *
2336getsym (char const *sym_name)
2337@{
2338 symrec *ptr;
2339 for (ptr = sym_table; ptr != (symrec *) 0;
2340 ptr = (symrec *)ptr->next)
2341 if (strcmp (ptr->name,sym_name) == 0)
2342 return ptr;
2343 return 0;
2344@}
2345@end smallexample
2346
2347The function @code{yylex} must now recognize variables, numeric values, and
2348the single-character arithmetic operators. Strings of alphanumeric
2349characters with a leading non-digit are recognized as either variables or
2350functions depending on what the symbol table says about them.
2351
2352The string is passed to @code{getsym} for look up in the symbol table. If
2353the name appears in the table, a pointer to its location and its type
2354(@code{VAR} or @code{FNCT}) is returned to @code{yyparse}. If it is not
2355already in the table, then it is installed as a @code{VAR} using
2356@code{putsym}. Again, a pointer and its type (which must be @code{VAR}) is
2357returned to @code{yyparse}.
2358
2359No change is needed in the handling of numeric values and arithmetic
2360operators in @code{yylex}.
2361
2362@smallexample
2363@group
2364#include <ctype.h>
2365@end group
2366
2367@group
2368int
2369yylex (void)
2370@{
2371 int c;
2372
2373 /* Ignore white space, get first nonwhite character. */
2374 while ((c = getchar ()) == ' ' || c == '\t');
2375
2376 if (c == EOF)
2377 return 0;
2378@end group
2379
2380@group
2381 /* Char starts a number => parse the number. */
2382 if (c == '.' || isdigit (c))
2383 @{
2384 ungetc (c, stdin);
2385 scanf ("%lf", &yylval.val);
2386 return NUM;
2387 @}
2388@end group
2389
2390@group
2391 /* Char starts an identifier => read the name. */
2392 if (isalpha (c))
2393 @{
2394 symrec *s;
2395 static char *symbuf = 0;
2396 static int length = 0;
2397 int i;
2398@end group
2399
2400@group
2401 /* Initially make the buffer long enough
2402 for a 40-character symbol name. */
2403 if (length == 0)
2404 length = 40, symbuf = (char *)malloc (length + 1);
2405
2406 i = 0;
2407 do
2408@end group
2409@group
2410 @{
2411 /* If buffer is full, make it bigger. */
2412 if (i == length)
2413 @{
2414 length *= 2;
2415 symbuf = (char *) realloc (symbuf, length + 1);
2416 @}
2417 /* Add this character to the buffer. */
2418 symbuf[i++] = c;
2419 /* Get another character. */
2420 c = getchar ();
2421 @}
2422@end group
2423@group
2424 while (isalnum (c));
2425
2426 ungetc (c, stdin);
2427 symbuf[i] = '\0';
2428@end group
2429
2430@group
2431 s = getsym (symbuf);
2432 if (s == 0)
2433 s = putsym (symbuf, VAR);
2434 yylval.tptr = s;
2435 return s->type;
2436 @}
2437
2438 /* Any other character is a token by itself. */
2439 return c;
2440@}
2441@end group
2442@end smallexample
2443
2444This program is both powerful and flexible. You may easily add new
2445functions, and it is a simple job to modify this code to install
2446predefined variables such as @code{pi} or @code{e} as well.
2447
2448@node Exercises
2449@section Exercises
2450@cindex exercises
2451
2452@enumerate
2453@item
2454Add some new functions from @file{math.h} to the initialization list.
2455
2456@item
2457Add another array that contains constants and their values. Then
2458modify @code{init_table} to add these constants to the symbol table.
2459It will be easiest to give the constants type @code{VAR}.
2460
2461@item
2462Make the program report an error if the user refers to an
2463uninitialized variable in any way except to store a value in it.
2464@end enumerate
2465
2466@node Grammar File
2467@chapter Bison Grammar Files
2468
2469Bison takes as input a context-free grammar specification and produces a
2470C-language function that recognizes correct instances of the grammar.
2471
2472The Bison grammar input file conventionally has a name ending in @samp{.y}.
2473@xref{Invocation, ,Invoking Bison}.
2474
2475@menu
2476* Grammar Outline:: Overall layout of the grammar file.
2477* Symbols:: Terminal and nonterminal symbols.
2478* Rules:: How to write grammar rules.
2479* Recursion:: Writing recursive rules.
2480* Semantics:: Semantic values and actions.
2481* Locations:: Locations and actions.
2482* Declarations:: All kinds of Bison declarations are described here.
2483* Multiple Parsers:: Putting more than one Bison parser in one program.
2484@end menu
2485
2486@node Grammar Outline
2487@section Outline of a Bison Grammar
2488
2489A Bison grammar file has four main sections, shown here with the
2490appropriate delimiters:
2491
2492@example
2493%@{
2494 @var{Prologue}
2495%@}
2496
2497@var{Bison declarations}
2498
2499%%
2500@var{Grammar rules}
2501%%
2502
2503@var{Epilogue}
2504@end example
2505
2506Comments enclosed in @samp{/* @dots{} */} may appear in any of the sections.
2507As a @acronym{GNU} extension, @samp{//} introduces a comment that
2508continues until end of line.
2509
2510@menu
2511* Prologue:: Syntax and usage of the prologue.
2512* Bison Declarations:: Syntax and usage of the Bison declarations section.
2513* Grammar Rules:: Syntax and usage of the grammar rules section.
2514* Epilogue:: Syntax and usage of the epilogue.
2515@end menu
2516
2517@node Prologue
2518@subsection The prologue
2519@cindex declarations section
2520@cindex Prologue
2521@cindex declarations
2522
2523The @var{Prologue} section contains macro definitions and
2524declarations of functions and variables that are used in the actions in the
2525grammar rules. These are copied to the beginning of the parser file so
2526that they precede the definition of @code{yyparse}. You can use
2527@samp{#include} to get the declarations from a header file. If you don't
2528need any C declarations, you may omit the @samp{%@{} and @samp{%@}}
2529delimiters that bracket this section.
2530
2531You may have more than one @var{Prologue} section, intermixed with the
2532@var{Bison declarations}. This allows you to have C and Bison
2533declarations that refer to each other. For example, the @code{%union}
2534declaration may use types defined in a header file, and you may wish to
2535prototype functions that take arguments of type @code{YYSTYPE}. This
2536can be done with two @var{Prologue} blocks, one before and one after the
2537@code{%union} declaration.
2538
2539@smallexample
2540%@{
2541 #include <stdio.h>
2542 #include "ptypes.h"
2543%@}
2544
2545%union @{
2546 long int n;
2547 tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */
2548@}
2549
2550%@{
2551 static void print_token_value (FILE *, int, YYSTYPE);
2552 #define YYPRINT(F, N, L) print_token_value (F, N, L)
2553%@}
2554
2555@dots{}
2556@end smallexample
2557
2558@node Bison Declarations
2559@subsection The Bison Declarations Section
2560@cindex Bison declarations (introduction)
2561@cindex declarations, Bison (introduction)
2562
2563The @var{Bison declarations} section contains declarations that define
2564terminal and nonterminal symbols, specify precedence, and so on.
2565In some simple grammars you may not need any declarations.
2566@xref{Declarations, ,Bison Declarations}.
2567
2568@node Grammar Rules
2569@subsection The Grammar Rules Section
2570@cindex grammar rules section
2571@cindex rules section for grammar
2572
2573The @dfn{grammar rules} section contains one or more Bison grammar
2574rules, and nothing else. @xref{Rules, ,Syntax of Grammar Rules}.
2575
2576There must always be at least one grammar rule, and the first
2577@samp{%%} (which precedes the grammar rules) may never be omitted even
2578if it is the first thing in the file.
2579
2580@node Epilogue
2581@subsection The epilogue
2582@cindex additional C code section
2583@cindex epilogue
2584@cindex C code, section for additional
2585
2586The @var{Epilogue} is copied verbatim to the end of the parser file, just as
2587the @var{Prologue} is copied to the beginning. This is the most convenient
2588place to put anything that you want to have in the parser file but which need
2589not come before the definition of @code{yyparse}. For example, the
2590definitions of @code{yylex} and @code{yyerror} often go here. Because
2591C requires functions to be declared before being used, you often need
2592to declare functions like @code{yylex} and @code{yyerror} in the Prologue,
2593even if you define them int he Epilogue.
2594@xref{Interface, ,Parser C-Language Interface}.
2595
2596If the last section is empty, you may omit the @samp{%%} that separates it
2597from the grammar rules.
2598
2599The Bison parser itself contains many macros and identifiers whose
2600names start with @samp{yy} or @samp{YY}, so it is a
2601good idea to avoid using any such names (except those documented in this
2602manual) in the epilogue of the grammar file.
2603
2604@node Symbols
2605@section Symbols, Terminal and Nonterminal
2606@cindex nonterminal symbol
2607@cindex terminal symbol
2608@cindex token type
2609@cindex symbol
2610
2611@dfn{Symbols} in Bison grammars represent the grammatical classifications
2612of the language.
2613
2614A @dfn{terminal symbol} (also known as a @dfn{token type}) represents a
2615class of syntactically equivalent tokens. You use the symbol in grammar
2616rules to mean that a token in that class is allowed. The symbol is
2617represented in the Bison parser by a numeric code, and the @code{yylex}
2618function returns a token type code to indicate what kind of token has been
2619read. You don't need to know what the code value is; you can use the
2620symbol to stand for it.
2621
2622A @dfn{nonterminal symbol} stands for a class of syntactically equivalent
2623groupings. The symbol name is used in writing grammar rules. By convention,
2624it should be all lower case.
2625
2626Symbol names can contain letters, digits (not at the beginning),
2627underscores and periods. Periods make sense only in nonterminals.
2628
2629There are three ways of writing terminal symbols in the grammar:
2630
2631@itemize @bullet
2632@item
2633A @dfn{named token type} is written with an identifier, like an
2634identifier in C@. By convention, it should be all upper case. Each
2635such name must be defined with a Bison declaration such as
2636@code{%token}. @xref{Token Decl, ,Token Type Names}.
2637
2638@item
2639@cindex character token
2640@cindex literal token
2641@cindex single-character literal
2642A @dfn{character token type} (or @dfn{literal character token}) is
2643written in the grammar using the same syntax used in C for character
2644constants; for example, @code{'+'} is a character token type. A
2645character token type doesn't need to be declared unless you need to
2646specify its semantic value data type (@pxref{Value Type, ,Data Types of
2647Semantic Values}), associativity, or precedence (@pxref{Precedence,
2648,Operator Precedence}).
2649
2650By convention, a character token type is used only to represent a
2651token that consists of that particular character. Thus, the token
2652type @code{'+'} is used to represent the character @samp{+} as a
2653token. Nothing enforces this convention, but if you depart from it,
2654your program will confuse other readers.
2655
2656All the usual escape sequences used in character literals in C can be
2657used in Bison as well, but you must not use the null character as a
2658character literal because its numeric code, zero, signifies
2659end-of-input (@pxref{Calling Convention, ,Calling Convention
2660for @code{yylex}}). Also, unlike standard C, trigraphs have no
2661special meaning in Bison character literals, nor is backslash-newline
2662allowed.
2663
2664@item
2665@cindex string token
2666@cindex literal string token
2667@cindex multicharacter literal
2668A @dfn{literal string token} is written like a C string constant; for
2669example, @code{"<="} is a literal string token. A literal string token
2670doesn't need to be declared unless you need to specify its semantic
2671value data type (@pxref{Value Type}), associativity, or precedence
2672(@pxref{Precedence}).
2673
2674You can associate the literal string token with a symbolic name as an
2675alias, using the @code{%token} declaration (@pxref{Token Decl, ,Token
2676Declarations}). If you don't do that, the lexical analyzer has to
2677retrieve the token number for the literal string token from the
2678@code{yytname} table (@pxref{Calling Convention}).
2679
2680@strong{Warning}: literal string tokens do not work in Yacc.
2681
2682By convention, a literal string token is used only to represent a token
2683that consists of that particular string. Thus, you should use the token
2684type @code{"<="} to represent the string @samp{<=} as a token. Bison
2685does not enforce this convention, but if you depart from it, people who
2686read your program will be confused.
2687
2688All the escape sequences used in string literals in C can be used in
2689Bison as well, except that you must not use a null character within a
2690string literal. Also, unlike Standard C, trigraphs have no special
2691meaning in Bison string literals, nor is backslash-newline allowed. A
2692literal string token must contain two or more characters; for a token
2693containing just one character, use a character token (see above).
2694@end itemize
2695
2696How you choose to write a terminal symbol has no effect on its
2697grammatical meaning. That depends only on where it appears in rules and
2698on when the parser function returns that symbol.
2699
2700The value returned by @code{yylex} is always one of the terminal
2701symbols, except that a zero or negative value signifies end-of-input.
2702Whichever way you write the token type in the grammar rules, you write
2703it the same way in the definition of @code{yylex}. The numeric code
2704for a character token type is simply the positive numeric code of the
2705character, so @code{yylex} can use the identical value to generate the
2706requisite code, though you may need to convert it to @code{unsigned
2707char} to avoid sign-extension on hosts where @code{char} is signed.
2708Each named token type becomes a C macro in
2709the parser file, so @code{yylex} can use the name to stand for the code.
2710(This is why periods don't make sense in terminal symbols.)
2711@xref{Calling Convention, ,Calling Convention for @code{yylex}}.
2712
2713If @code{yylex} is defined in a separate file, you need to arrange for the
2714token-type macro definitions to be available there. Use the @samp{-d}
2715option when you run Bison, so that it will write these macro definitions
2716into a separate header file @file{@var{name}.tab.h} which you can include
2717in the other source files that need it. @xref{Invocation, ,Invoking Bison}.
2718
2719If you want to write a grammar that is portable to any Standard C
2720host, you must use only non-null character tokens taken from the basic
2721execution character set of Standard C@. This set consists of the ten
2722digits, the 52 lower- and upper-case English letters, and the
2723characters in the following C-language string:
2724
2725@example
2726"\a\b\t\n\v\f\r !\"#%&'()*+,-./:;<=>?[\\]^_@{|@}~"
2727@end example
2728
2729The @code{yylex} function and Bison must use a consistent character
2730set and encoding for character tokens. For example, if you run Bison in an
2731@acronym{ASCII} environment, but then compile and run the resulting program
2732in an environment that uses an incompatible character set like
2733@acronym{EBCDIC}, the resulting program may not work because the
2734tables generated by Bison will assume @acronym{ASCII} numeric values for
2735character tokens. It is standard
2736practice for software distributions to contain C source files that
2737were generated by Bison in an @acronym{ASCII} environment, so installers on
2738platforms that are incompatible with @acronym{ASCII} must rebuild those
2739files before compiling them.
2740
2741The symbol @code{error} is a terminal symbol reserved for error recovery
2742(@pxref{Error Recovery}); you shouldn't use it for any other purpose.
2743In particular, @code{yylex} should never return this value. The default
2744value of the error token is 256, unless you explicitly assigned 256 to
2745one of your tokens with a @code{%token} declaration.
2746
2747@node Rules
2748@section Syntax of Grammar Rules
2749@cindex rule syntax
2750@cindex grammar rule syntax
2751@cindex syntax of grammar rules
2752
2753A Bison grammar rule has the following general form:
2754
2755@example
2756@group
2757@var{result}: @var{components}@dots{}
2758 ;
2759@end group
2760@end example
2761
2762@noindent
2763where @var{result} is the nonterminal symbol that this rule describes,
2764and @var{components} are various terminal and nonterminal symbols that
2765are put together by this rule (@pxref{Symbols}).
2766
2767For example,
2768
2769@example
2770@group
2771exp: exp '+' exp
2772 ;
2773@end group
2774@end example
2775
2776@noindent
2777says that two groupings of type @code{exp}, with a @samp{+} token in between,
2778can be combined into a larger grouping of type @code{exp}.
2779
2780White space in rules is significant only to separate symbols. You can add
2781extra white space as you wish.
2782
2783Scattered among the components can be @var{actions} that determine
2784the semantics of the rule. An action looks like this:
2785
2786@example
2787@{@var{C statements}@}
2788@end example
2789
2790@noindent
2791Usually there is only one action and it follows the components.
2792@xref{Actions}.
2793
2794@findex |
2795Multiple rules for the same @var{result} can be written separately or can
2796be joined with the vertical-bar character @samp{|} as follows:
2797
2798@ifinfo
2799@example
2800@var{result}: @var{rule1-components}@dots{}
2801 | @var{rule2-components}@dots{}
2802 @dots{}
2803 ;
2804@end example
2805@end ifinfo
2806@iftex
2807@example
2808@group
2809@var{result}: @var{rule1-components}@dots{}
2810 | @var{rule2-components}@dots{}
2811 @dots{}
2812 ;
2813@end group
2814@end example
2815@end iftex
2816
2817@noindent
2818They are still considered distinct rules even when joined in this way.
2819
2820If @var{components} in a rule is empty, it means that @var{result} can
2821match the empty string. For example, here is how to define a
2822comma-separated sequence of zero or more @code{exp} groupings:
2823
2824@example
2825@group
2826expseq: /* empty */
2827 | expseq1
2828 ;
2829@end group
2830
2831@group
2832expseq1: exp
2833 | expseq1 ',' exp
2834 ;
2835@end group
2836@end example
2837
2838@noindent
2839It is customary to write a comment @samp{/* empty */} in each rule
2840with no components.
2841
2842@node Recursion
2843@section Recursive Rules
2844@cindex recursive rule
2845
2846A rule is called @dfn{recursive} when its @var{result} nonterminal appears
2847also on its right hand side. Nearly all Bison grammars need to use
2848recursion, because that is the only way to define a sequence of any number
2849of a particular thing. Consider this recursive definition of a
2850comma-separated sequence of one or more expressions:
2851
2852@example
2853@group
2854expseq1: exp
2855 | expseq1 ',' exp
2856 ;
2857@end group
2858@end example
2859
2860@cindex left recursion
2861@cindex right recursion
2862@noindent
2863Since the recursive use of @code{expseq1} is the leftmost symbol in the
2864right hand side, we call this @dfn{left recursion}. By contrast, here
2865the same construct is defined using @dfn{right recursion}:
2866
2867@example
2868@group
2869expseq1: exp
2870 | exp ',' expseq1
2871 ;
2872@end group
2873@end example
2874
2875@noindent
2876Any kind of sequence can be defined using either left recursion or right
2877recursion, but you should always use left recursion, because it can
2878parse a sequence of any number of elements with bounded stack space.
2879Right recursion uses up space on the Bison stack in proportion to the
2880number of elements in the sequence, because all the elements must be
2881shifted onto the stack before the rule can be applied even once.
2882@xref{Algorithm, ,The Bison Parser Algorithm}, for further explanation
2883of this.
2884
2885@cindex mutual recursion
2886@dfn{Indirect} or @dfn{mutual} recursion occurs when the result of the
2887rule does not appear directly on its right hand side, but does appear
2888in rules for other nonterminals which do appear on its right hand
2889side.
2890
2891For example:
2892
2893@example
2894@group
2895expr: primary
2896 | primary '+' primary
2897 ;
2898@end group
2899
2900@group
2901primary: constant
2902 | '(' expr ')'
2903 ;
2904@end group
2905@end example
2906
2907@noindent
2908defines two mutually-recursive nonterminals, since each refers to the
2909other.
2910
2911@node Semantics
2912@section Defining Language Semantics
2913@cindex defining language semantics
2914@cindex language semantics, defining
2915
2916The grammar rules for a language determine only the syntax. The semantics
2917are determined by the semantic values associated with various tokens and
2918groupings, and by the actions taken when various groupings are recognized.
2919
2920For example, the calculator calculates properly because the value
2921associated with each expression is the proper number; it adds properly
2922because the action for the grouping @w{@samp{@var{x} + @var{y}}} is to add
2923the numbers associated with @var{x} and @var{y}.
2924
2925@menu
2926* Value Type:: Specifying one data type for all semantic values.
2927* Multiple Types:: Specifying several alternative data types.
2928* Actions:: An action is the semantic definition of a grammar rule.
2929* Action Types:: Specifying data types for actions to operate on.
2930* Mid-Rule Actions:: Most actions go at the end of a rule.
2931 This says when, why and how to use the exceptional
2932 action in the middle of a rule.
2933@end menu
2934
2935@node Value Type
2936@subsection Data Types of Semantic Values
2937@cindex semantic value type
2938@cindex value type, semantic
2939@cindex data types of semantic values
2940@cindex default data type
2941
2942In a simple program it may be sufficient to use the same data type for
2943the semantic values of all language constructs. This was true in the
2944@acronym{RPN} and infix calculator examples (@pxref{RPN Calc, ,Reverse Polish
2945Notation Calculator}).
2946
2947Bison's default is to use type @code{int} for all semantic values. To
2948specify some other type, define @code{YYSTYPE} as a macro, like this:
2949
2950@example
2951#define YYSTYPE double
2952@end example
2953
2954@noindent
2955This macro definition must go in the prologue of the grammar file
2956(@pxref{Grammar Outline, ,Outline of a Bison Grammar}).
2957
2958@node Multiple Types
2959@subsection More Than One Value Type
2960
2961In most programs, you will need different data types for different kinds
2962of tokens and groupings. For example, a numeric constant may need type
2963@code{int} or @code{long int}, while a string constant needs type @code{char *},
2964and an identifier might need a pointer to an entry in the symbol table.
2965
2966To use more than one data type for semantic values in one parser, Bison
2967requires you to do two things:
2968
2969@itemize @bullet
2970@item
2971Specify the entire collection of possible data types, with the
2972@code{%union} Bison declaration (@pxref{Union Decl, ,The Collection of
2973Value Types}).
2974
2975@item
2976Choose one of those types for each symbol (terminal or nonterminal) for
2977which semantic values are used. This is done for tokens with the
2978@code{%token} Bison declaration (@pxref{Token Decl, ,Token Type Names})
2979and for groupings with the @code{%type} Bison declaration (@pxref{Type
2980Decl, ,Nonterminal Symbols}).
2981@end itemize
2982
2983@node Actions
2984@subsection Actions
2985@cindex action
2986@vindex $$
2987@vindex $@var{n}
2988
2989An action accompanies a syntactic rule and contains C code to be executed
2990each time an instance of that rule is recognized. The task of most actions
2991is to compute a semantic value for the grouping built by the rule from the
2992semantic values associated with tokens or smaller groupings.
2993
2994An action consists of C statements surrounded by braces, much like a
2995compound statement in C@. An action can contain any sequence of C
2996statements. Bison does not look for trigraphs, though, so if your C
2997code uses trigraphs you should ensure that they do not affect the
2998nesting of braces or the boundaries of comments, strings, or character
2999literals.
3000
3001An action can be placed at any position in the rule;
3002it is executed at that position. Most rules have just one action at the
3003end of the rule, following all the components. Actions in the middle of
3004a rule are tricky and used only for special purposes (@pxref{Mid-Rule
3005Actions, ,Actions in Mid-Rule}).
3006
3007The C code in an action can refer to the semantic values of the components
3008matched by the rule with the construct @code{$@var{n}}, which stands for
3009the value of the @var{n}th component. The semantic value for the grouping
3010being constructed is @code{$$}. Bison translates both of these
3011constructs into expressions of the appropriate type when it copies the
3012actions into the parser file. @code{$$} is translated to a modifiable
3013lvalue, so it can be assigned to.
3014
3015Here is a typical example:
3016
3017@example
3018@group
3019exp: @dots{}
3020 | exp '+' exp
3021 @{ $$ = $1 + $3; @}
3022@end group
3023@end example
3024
3025@noindent
3026This rule constructs an @code{exp} from two smaller @code{exp} groupings
3027connected by a plus-sign token. In the action, @code{$1} and @code{$3}
3028refer to the semantic values of the two component @code{exp} groupings,
3029which are the first and third symbols on the right hand side of the rule.
3030The sum is stored into @code{$$} so that it becomes the semantic value of
3031the addition-expression just recognized by the rule. If there were a
3032useful semantic value associated with the @samp{+} token, it could be
3033referred to as @code{$2}.
3034
3035Note that the vertical-bar character @samp{|} is really a rule
3036separator, and actions are attached to a single rule. This is a
3037difference with tools like Flex, for which @samp{|} stands for either
3038``or'', or ``the same action as that of the next rule''. In the
3039following example, the action is triggered only when @samp{b} is found:
3040
3041@example
3042@group
3043a-or-b: 'a'|'b' @{ a_or_b_found = 1; @};
3044@end group
3045@end example
3046
3047@cindex default action
3048If you don't specify an action for a rule, Bison supplies a default:
3049@w{@code{$$ = $1}.} Thus, the value of the first symbol in the rule
3050becomes the value of the whole rule. Of course, the default action is
3051valid only if the two data types match. There is no meaningful default
3052action for an empty rule; every empty rule must have an explicit action
3053unless the rule's value does not matter.
3054
3055@code{$@var{n}} with @var{n} zero or negative is allowed for reference
3056to tokens and groupings on the stack @emph{before} those that match the
3057current rule. This is a very risky practice, and to use it reliably
3058you must be certain of the context in which the rule is applied. Here
3059is a case in which you can use this reliably:
3060
3061@example
3062@group
3063foo: expr bar '+' expr @{ @dots{} @}
3064 | expr bar '-' expr @{ @dots{} @}
3065 ;
3066@end group
3067
3068@group
3069bar: /* empty */
3070 @{ previous_expr = $0; @}
3071 ;
3072@end group
3073@end example
3074
3075As long as @code{bar} is used only in the fashion shown here, @code{$0}
3076always refers to the @code{expr} which precedes @code{bar} in the
3077definition of @code{foo}.
3078
3079@node Action Types
3080@subsection Data Types of Values in Actions
3081@cindex action data types
3082@cindex data types in actions
3083
3084If you have chosen a single data type for semantic values, the @code{$$}
3085and @code{$@var{n}} constructs always have that data type.
3086
3087If you have used @code{%union} to specify a variety of data types, then you
3088must declare a choice among these types for each terminal or nonterminal
3089symbol that can have a semantic value. Then each time you use @code{$$} or
3090@code{$@var{n}}, its data type is determined by which symbol it refers to
3091in the rule. In this example,
3092
3093@example
3094@group
3095exp: @dots{}
3096 | exp '+' exp
3097 @{ $$ = $1 + $3; @}
3098@end group
3099@end example
3100
3101@noindent
3102@code{$1} and @code{$3} refer to instances of @code{exp}, so they all
3103have the data type declared for the nonterminal symbol @code{exp}. If
3104@code{$2} were used, it would have the data type declared for the
3105terminal symbol @code{'+'}, whatever that might be.
3106
3107Alternatively, you can specify the data type when you refer to the value,
3108by inserting @samp{<@var{type}>} after the @samp{$} at the beginning of the
3109reference. For example, if you have defined types as shown here:
3110
3111@example
3112@group
3113%union @{
3114 int itype;
3115 double dtype;
3116@}
3117@end group
3118@end example
3119
3120@noindent
3121then you can write @code{$<itype>1} to refer to the first subunit of the
3122rule as an integer, or @code{$<dtype>1} to refer to it as a double.
3123
3124@node Mid-Rule Actions
3125@subsection Actions in Mid-Rule
3126@cindex actions in mid-rule
3127@cindex mid-rule actions
3128
3129Occasionally it is useful to put an action in the middle of a rule.
3130These actions are written just like usual end-of-rule actions, but they
3131are executed before the parser even recognizes the following components.
3132
3133A mid-rule action may refer to the components preceding it using
3134@code{$@var{n}}, but it may not refer to subsequent components because
3135it is run before they are parsed.
3136
3137The mid-rule action itself counts as one of the components of the rule.
3138This makes a difference when there is another action later in the same rule
3139(and usually there is another at the end): you have to count the actions
3140along with the symbols when working out which number @var{n} to use in
3141@code{$@var{n}}.
3142
3143The mid-rule action can also have a semantic value. The action can set
3144its value with an assignment to @code{$$}, and actions later in the rule
3145can refer to the value using @code{$@var{n}}. Since there is no symbol
3146to name the action, there is no way to declare a data type for the value
3147in advance, so you must use the @samp{$<@dots{}>@var{n}} construct to
3148specify a data type each time you refer to this value.
3149
3150There is no way to set the value of the entire rule with a mid-rule
3151action, because assignments to @code{$$} do not have that effect. The
3152only way to set the value for the entire rule is with an ordinary action
3153at the end of the rule.
3154
3155Here is an example from a hypothetical compiler, handling a @code{let}
3156statement that looks like @samp{let (@var{variable}) @var{statement}} and
3157serves to create a variable named @var{variable} temporarily for the
3158duration of @var{statement}. To parse this construct, we must put
3159@var{variable} into the symbol table while @var{statement} is parsed, then
3160remove it afterward. Here is how it is done:
3161
3162@example
3163@group
3164stmt: LET '(' var ')'
3165 @{ $<context>$ = push_context ();
3166 declare_variable ($3); @}
3167 stmt @{ $$ = $6;
3168 pop_context ($<context>5); @}
3169@end group
3170@end example
3171
3172@noindent
3173As soon as @samp{let (@var{variable})} has been recognized, the first
3174action is run. It saves a copy of the current semantic context (the
3175list of accessible variables) as its semantic value, using alternative
3176@code{context} in the data-type union. Then it calls
3177@code{declare_variable} to add the new variable to that list. Once the
3178first action is finished, the embedded statement @code{stmt} can be
3179parsed. Note that the mid-rule action is component number 5, so the
3180@samp{stmt} is component number 6.
3181
3182After the embedded statement is parsed, its semantic value becomes the
3183value of the entire @code{let}-statement. Then the semantic value from the
3184earlier action is used to restore the prior list of variables. This
3185removes the temporary @code{let}-variable from the list so that it won't
3186appear to exist while the rest of the program is parsed.
3187
3188Taking action before a rule is completely recognized often leads to
3189conflicts since the parser must commit to a parse in order to execute the
3190action. For example, the following two rules, without mid-rule actions,
3191can coexist in a working parser because the parser can shift the open-brace
3192token and look at what follows before deciding whether there is a
3193declaration or not:
3194
3195@example
3196@group
3197compound: '@{' declarations statements '@}'
3198 | '@{' statements '@}'
3199 ;
3200@end group
3201@end example
3202
3203@noindent
3204But when we add a mid-rule action as follows, the rules become nonfunctional:
3205
3206@example
3207@group
3208compound: @{ prepare_for_local_variables (); @}
3209 '@{' declarations statements '@}'
3210@end group
3211@group
3212 | '@{' statements '@}'
3213 ;
3214@end group
3215@end example
3216
3217@noindent
3218Now the parser is forced to decide whether to run the mid-rule action
3219when it has read no farther than the open-brace. In other words, it
3220must commit to using one rule or the other, without sufficient
3221information to do it correctly. (The open-brace token is what is called
3222the @dfn{look-ahead} token at this time, since the parser is still
3223deciding what to do about it. @xref{Look-Ahead, ,Look-Ahead Tokens}.)
3224
3225You might think that you could correct the problem by putting identical
3226actions into the two rules, like this:
3227
3228@example
3229@group
3230compound: @{ prepare_for_local_variables (); @}
3231 '@{' declarations statements '@}'
3232 | @{ prepare_for_local_variables (); @}
3233 '@{' statements '@}'
3234 ;
3235@end group
3236@end example
3237
3238@noindent
3239But this does not help, because Bison does not realize that the two actions
3240are identical. (Bison never tries to understand the C code in an action.)
3241
3242If the grammar is such that a declaration can be distinguished from a
3243statement by the first token (which is true in C), then one solution which
3244does work is to put the action after the open-brace, like this:
3245
3246@example
3247@group
3248compound: '@{' @{ prepare_for_local_variables (); @}
3249 declarations statements '@}'
3250 | '@{' statements '@}'
3251 ;
3252@end group
3253@end example
3254
3255@noindent
3256Now the first token of the following declaration or statement,
3257which would in any case tell Bison which rule to use, can still do so.
3258
3259Another solution is to bury the action inside a nonterminal symbol which
3260serves as a subroutine:
3261
3262@example
3263@group
3264subroutine: /* empty */
3265 @{ prepare_for_local_variables (); @}
3266 ;
3267
3268@end group
3269
3270@group
3271compound: subroutine
3272 '@{' declarations statements '@}'
3273 | subroutine
3274 '@{' statements '@}'
3275 ;
3276@end group
3277@end example
3278
3279@noindent
3280Now Bison can execute the action in the rule for @code{subroutine} without
3281deciding which rule for @code{compound} it will eventually use. Note that
3282the action is now at the end of its rule. Any mid-rule action can be
3283converted to an end-of-rule action in this way, and this is what Bison
3284actually does to implement mid-rule actions.
3285
3286@node Locations
3287@section Tracking Locations
3288@cindex location
3289@cindex textual location
3290@cindex location, textual
3291
3292Though grammar rules and semantic actions are enough to write a fully
3293functional parser, it can be useful to process some additional information,
3294especially symbol locations.
3295
3296The way locations are handled is defined by providing a data type, and
3297actions to take when rules are matched.
3298
3299@menu
3300* Location Type:: Specifying a data type for locations.
3301* Actions and Locations:: Using locations in actions.
3302* Location Default Action:: Defining a general way to compute locations.
3303@end menu
3304
3305@node Location Type
3306@subsection Data Type of Locations
3307@cindex data type of locations
3308@cindex default location type
3309
3310Defining a data type for locations is much simpler than for semantic values,
3311since all tokens and groupings always use the same type.
3312
3313The type of locations is specified by defining a macro called @code{YYLTYPE}.
3314When @code{YYLTYPE} is not defined, Bison uses a default structure type with
3315four members:
3316
3317@example
3318typedef struct YYLTYPE
3319@{
3320 int first_line;
3321 int first_column;
3322 int last_line;
3323 int last_column;
3324@} YYLTYPE;
3325@end example
3326
3327@node Actions and Locations
3328@subsection Actions and Locations
3329@cindex location actions
3330@cindex actions, location
3331@vindex @@$
3332@vindex @@@var{n}
3333
3334Actions are not only useful for defining language semantics, but also for
3335describing the behavior of the output parser with locations.
3336
3337The most obvious way for building locations of syntactic groupings is very
3338similar to the way semantic values are computed. In a given rule, several
3339constructs can be used to access the locations of the elements being matched.
3340The location of the @var{n}th component of the right hand side is
3341@code{@@@var{n}}, while the location of the left hand side grouping is
3342@code{@@$}.
3343
3344Here is a basic example using the default data type for locations:
3345
3346@example
3347@group
3348exp: @dots{}
3349 | exp '/' exp
3350 @{
3351 @@$.first_column = @@1.first_column;
3352 @@$.first_line = @@1.first_line;
3353 @@$.last_column = @@3.last_column;
3354 @@$.last_line = @@3.last_line;
3355 if ($3)
3356 $$ = $1 / $3;
3357 else
3358 @{
3359 $$ = 1;
3360 fprintf (stderr,
3361 "Division by zero, l%d,c%d-l%d,c%d",
3362 @@3.first_line, @@3.first_column,
3363 @@3.last_line, @@3.last_column);
3364 @}
3365 @}
3366@end group
3367@end example
3368
3369As for semantic values, there is a default action for locations that is
3370run each time a rule is matched. It sets the beginning of @code{@@$} to the
3371beginning of the first symbol, and the end of @code{@@$} to the end of the
3372last symbol.
3373
3374With this default action, the location tracking can be fully automatic. The
3375example above simply rewrites this way:
3376
3377@example
3378@group
3379exp: @dots{}
3380 | exp '/' exp
3381 @{
3382 if ($3)
3383 $$ = $1 / $3;
3384 else
3385 @{
3386 $$ = 1;
3387 fprintf (stderr,
3388 "Division by zero, l%d,c%d-l%d,c%d",
3389 @@3.first_line, @@3.first_column,
3390 @@3.last_line, @@3.last_column);
3391 @}
3392 @}
3393@end group
3394@end example
3395
3396@node Location Default Action
3397@subsection Default Action for Locations
3398@vindex YYLLOC_DEFAULT
3399
3400Actually, actions are not the best place to compute locations. Since
3401locations are much more general than semantic values, there is room in
3402the output parser to redefine the default action to take for each
3403rule. The @code{YYLLOC_DEFAULT} macro is invoked each time a rule is
3404matched, before the associated action is run. It is also invoked
3405while processing a syntax error, to compute the error's location.
3406
3407Most of the time, this macro is general enough to suppress location
3408dedicated code from semantic actions.
3409
3410The @code{YYLLOC_DEFAULT} macro takes three parameters. The first one is
3411the location of the grouping (the result of the computation). When a
3412rule is matched, the second parameter is an array holding locations of
3413all right hand side elements of the rule being matched, and the third
3414parameter is the size of the rule's right hand side. When processing
3415a syntax error, the second parameter is an array holding locations of
3416the symbols that were discarded during error processing, and the third
3417parameter is the number of discarded symbols.
3418
3419By default, @code{YYLLOC_DEFAULT} is defined this way for simple
3420@acronym{LALR}(1) parsers:
3421
3422@example
3423@group
3424# define YYLLOC_DEFAULT(Current, Rhs, N) \
3425 ((Current).first_line = (Rhs)[1].first_line, \
3426 (Current).first_column = (Rhs)[1].first_column, \
3427 (Current).last_line = (Rhs)[N].last_line, \
3428 (Current).last_column = (Rhs)[N].last_column)
3429@end group
3430@end example
3431
3432@noindent
3433and like this for @acronym{GLR} parsers:
3434
3435@example
3436@group
3437# define YYLLOC_DEFAULT(yyCurrent, yyRhs, YYN) \
3438 ((yyCurrent).first_line = YYRHSLOC(yyRhs, 1).first_line, \
3439 (yyCurrent).first_column = YYRHSLOC(yyRhs, 1).first_column, \
3440 (yyCurrent).last_line = YYRHSLOC(yyRhs, YYN).last_line, \
3441 (yyCurrent).last_column = YYRHSLOC(yyRhs, YYN).last_column)
3442@end group
3443@end example
3444
3445When defining @code{YYLLOC_DEFAULT}, you should consider that:
3446
3447@itemize @bullet
3448@item
3449All arguments are free of side-effects. However, only the first one (the
3450result) should be modified by @code{YYLLOC_DEFAULT}.
3451
3452@item
3453For consistency with semantic actions, valid indexes for the location
3454array range from 1 to @var{n}.
3455
3456@item
3457Your macro should parenthesize its arguments, if need be, since the
3458actual arguments may not be surrounded by parentheses. Also, your
3459macro should expand to something that can be used as a single
3460statement when it is followed by a semicolon.
3461@end itemize
3462
3463@node Declarations
3464@section Bison Declarations
3465@cindex declarations, Bison
3466@cindex Bison declarations
3467
3468The @dfn{Bison declarations} section of a Bison grammar defines the symbols
3469used in formulating the grammar and the data types of semantic values.
3470@xref{Symbols}.
3471
3472All token type names (but not single-character literal tokens such as
3473@code{'+'} and @code{'*'}) must be declared. Nonterminal symbols must be
3474declared if you need to specify which data type to use for the semantic
3475value (@pxref{Multiple Types, ,More Than One Value Type}).
3476
3477The first rule in the file also specifies the start symbol, by default.
3478If you want some other symbol to be the start symbol, you must declare
3479it explicitly (@pxref{Language and Grammar, ,Languages and Context-Free
3480Grammars}).
3481
3482@menu
3483* Token Decl:: Declaring terminal symbols.
3484* Precedence Decl:: Declaring terminals with precedence and associativity.
3485* Union Decl:: Declaring the set of all semantic value types.
3486* Type Decl:: Declaring the choice of type for a nonterminal symbol.
3487* Destructor Decl:: Declaring how symbols are freed.
3488* Expect Decl:: Suppressing warnings about parsing conflicts.
3489* Start Decl:: Specifying the start symbol.
3490* Pure Decl:: Requesting a reentrant parser.
3491* Decl Summary:: Table of all Bison declarations.
3492@end menu
3493
3494@node Token Decl
3495@subsection Token Type Names
3496@cindex declaring token type names
3497@cindex token type names, declaring
3498@cindex declaring literal string tokens
3499@findex %token
3500
3501The basic way to declare a token type name (terminal symbol) is as follows:
3502
3503@example
3504%token @var{name}
3505@end example
3506
3507Bison will convert this into a @code{#define} directive in
3508the parser, so that the function @code{yylex} (if it is in this file)
3509can use the name @var{name} to stand for this token type's code.
3510
3511Alternatively, you can use @code{%left}, @code{%right}, or
3512@code{%nonassoc} instead of @code{%token}, if you wish to specify
3513associativity and precedence. @xref{Precedence Decl, ,Operator
3514Precedence}.
3515
3516You can explicitly specify the numeric code for a token type by appending
3517a decimal or hexadecimal integer value in the field immediately
3518following the token name:
3519
3520@example
3521%token NUM 300
3522%token XNUM 0x12d // a GNU extension
3523@end example
3524
3525@noindent
3526It is generally best, however, to let Bison choose the numeric codes for
3527all token types. Bison will automatically select codes that don't conflict
3528with each other or with normal characters.
3529
3530In the event that the stack type is a union, you must augment the
3531@code{%token} or other token declaration to include the data type
3532alternative delimited by angle-brackets (@pxref{Multiple Types, ,More
3533Than One Value Type}).
3534
3535For example:
3536
3537@example
3538@group
3539%union @{ /* define stack type */
3540 double val;
3541 symrec *tptr;
3542@}
3543%token <val> NUM /* define token NUM and its type */
3544@end group
3545@end example
3546
3547You can associate a literal string token with a token type name by
3548writing the literal string at the end of a @code{%token}
3549declaration which declares the name. For example:
3550
3551@example
3552%token arrow "=>"
3553@end example
3554
3555@noindent
3556For example, a grammar for the C language might specify these names with
3557equivalent literal string tokens:
3558
3559@example
3560%token <operator> OR "||"
3561%token <operator> LE 134 "<="
3562%left OR "<="
3563@end example
3564
3565@noindent
3566Once you equate the literal string and the token name, you can use them
3567interchangeably in further declarations or the grammar rules. The
3568@code{yylex} function can use the token name or the literal string to
3569obtain the token type code number (@pxref{Calling Convention}).
3570
3571@node Precedence Decl
3572@subsection Operator Precedence
3573@cindex precedence declarations
3574@cindex declaring operator precedence
3575@cindex operator precedence, declaring
3576
3577Use the @code{%left}, @code{%right} or @code{%nonassoc} declaration to
3578declare a token and specify its precedence and associativity, all at
3579once. These are called @dfn{precedence declarations}.
3580@xref{Precedence, ,Operator Precedence}, for general information on
3581operator precedence.
3582
3583The syntax of a precedence declaration is the same as that of
3584@code{%token}: either
3585
3586@example
3587%left @var{symbols}@dots{}
3588@end example
3589
3590@noindent
3591or
3592
3593@example
3594%left <@var{type}> @var{symbols}@dots{}
3595@end example
3596
3597And indeed any of these declarations serves the purposes of @code{%token}.
3598But in addition, they specify the associativity and relative precedence for
3599all the @var{symbols}:
3600
3601@itemize @bullet
3602@item
3603The associativity of an operator @var{op} determines how repeated uses
3604of the operator nest: whether @samp{@var{x} @var{op} @var{y} @var{op}
3605@var{z}} is parsed by grouping @var{x} with @var{y} first or by
3606grouping @var{y} with @var{z} first. @code{%left} specifies
3607left-associativity (grouping @var{x} with @var{y} first) and
3608@code{%right} specifies right-associativity (grouping @var{y} with
3609@var{z} first). @code{%nonassoc} specifies no associativity, which
3610means that @samp{@var{x} @var{op} @var{y} @var{op} @var{z}} is
3611considered a syntax error.
3612
3613@item
3614The precedence of an operator determines how it nests with other operators.
3615All the tokens declared in a single precedence declaration have equal
3616precedence and nest together according to their associativity.
3617When two tokens declared in different precedence declarations associate,
3618the one declared later has the higher precedence and is grouped first.
3619@end itemize
3620
3621@node Union Decl
3622@subsection The Collection of Value Types
3623@cindex declaring value types
3624@cindex value types, declaring
3625@findex %union
3626
3627The @code{%union} declaration specifies the entire collection of possible
3628data types for semantic values. The keyword @code{%union} is followed by a
3629pair of braces containing the same thing that goes inside a @code{union} in
3630C.
3631
3632For example:
3633
3634@example
3635@group
3636%union @{
3637 double val;
3638 symrec *tptr;
3639@}
3640@end group
3641@end example
3642
3643@noindent
3644This says that the two alternative types are @code{double} and @code{symrec
3645*}. They are given names @code{val} and @code{tptr}; these names are used
3646in the @code{%token} and @code{%type} declarations to pick one of the types
3647for a terminal or nonterminal symbol (@pxref{Type Decl, ,Nonterminal Symbols}).
3648
3649As an extension to @acronym{POSIX}, a tag is allowed after the
3650@code{union}. For example:
3651
3652@example
3653@group
3654%union value @{
3655 double val;
3656 symrec *tptr;
3657@}
3658@end group
3659@end example
3660
3661specifies the union tag @code{value}, so the corresponding C type is
3662@code{union value}. If you do not specify a tag, it defaults to
3663@code{YYSTYPE}.
3664
3665Note that, unlike making a @code{union} declaration in C, you need not write
3666a semicolon after the closing brace.
3667
3668@node Type Decl
3669@subsection Nonterminal Symbols
3670@cindex declaring value types, nonterminals
3671@cindex value types, nonterminals, declaring
3672@findex %type
3673
3674@noindent
3675When you use @code{%union} to specify multiple value types, you must
3676declare the value type of each nonterminal symbol for which values are
3677used. This is done with a @code{%type} declaration, like this:
3678
3679@example
3680%type <@var{type}> @var{nonterminal}@dots{}
3681@end example
3682
3683@noindent
3684Here @var{nonterminal} is the name of a nonterminal symbol, and
3685@var{type} is the name given in the @code{%union} to the alternative
3686that you want (@pxref{Union Decl, ,The Collection of Value Types}). You
3687can give any number of nonterminal symbols in the same @code{%type}
3688declaration, if they have the same value type. Use spaces to separate
3689the symbol names.
3690
3691You can also declare the value type of a terminal symbol. To do this,
3692use the same @code{<@var{type}>} construction in a declaration for the
3693terminal symbol. All kinds of token declarations allow
3694@code{<@var{type}>}.
3695
3696@node Destructor Decl
3697@subsection Freeing Discarded Symbols
3698@cindex freeing discarded symbols
3699@findex %destructor
3700
3701Some symbols can be discarded by the parser, typically during error
3702recovery (@pxref{Error Recovery}). Basically, during error recovery,
3703embarrassing symbols already pushed on the stack, and embarrassing
3704tokens coming from the rest of the file are thrown away until the parser
3705falls on its feet. If these symbols convey heap based information, this
3706memory is lost. While this behavior is tolerable for batch parsers,
3707such as in compilers, it is unacceptable for parsers that can
3708possibility ``never end'' such as shells, or implementations of
3709communication protocols.
3710
3711The @code{%destructor} directive allows for the definition of code that
3712is called when a symbol is thrown away.
3713
3714@deffn {Directive} %destructor @{ @var{code} @} @var{symbols}
3715@findex %destructor
3716Declare that the @var{code} must be invoked for each of the
3717@var{symbols} that will be discarded by the parser. The @var{code}
3718should use @code{$$} to designate the semantic value associated to the
3719@var{symbols}. The additional parser parameters are also available
3720(@pxref{Parser Function, , The Parser Function @code{yyparse}}).
3721
3722@strong{Warning:} as of Bison 1.875, this feature is still considered as
3723experimental, as there was not enough user feedback. In particular,
3724the syntax might still change.
3725@end deffn
3726
3727For instance:
3728
3729@smallexample
3730%union
3731@{
3732 char *string;
3733@}
3734%token <string> STRING
3735%type <string> string
3736%destructor @{ free ($$); @} STRING string
3737@end smallexample
3738
3739@noindent
3740guarantees that when a @code{STRING} or a @code{string} will be discarded,
3741its associated memory will be freed.
3742
3743Note that in the future, Bison might also consider that right hand side
3744members that are not mentioned in the action can be destroyed. For
3745instance, in:
3746
3747@smallexample
3748comment: "/*" STRING "*/";
3749@end smallexample
3750
3751@noindent
3752the parser is entitled to destroy the semantic value of the
3753@code{string}. Of course, this will not apply to the default action;
3754compare:
3755
3756@smallexample
3757typeless: string; // $$ = $1 does not apply; $1 is destroyed.
3758typefull: string; // $$ = $1 applies, $1 is not destroyed.
3759@end smallexample
3760
3761@node Expect Decl
3762@subsection Suppressing Conflict Warnings
3763@cindex suppressing conflict warnings
3764@cindex preventing warnings about conflicts
3765@cindex warnings, preventing
3766@cindex conflicts, suppressing warnings of
3767@findex %expect
3768@findex %expect-rr
3769
3770Bison normally warns if there are any conflicts in the grammar
3771(@pxref{Shift/Reduce, ,Shift/Reduce Conflicts}), but most real grammars
3772have harmless shift/reduce conflicts which are resolved in a predictable
3773way and would be difficult to eliminate. It is desirable to suppress
3774the warning about these conflicts unless the number of conflicts
3775changes. You can do this with the @code{%expect} declaration.
3776
3777The declaration looks like this:
3778
3779@example
3780%expect @var{n}
3781@end example
3782
3783Here @var{n} is a decimal integer. The declaration says there should be
3784no warning if there are @var{n} shift/reduce conflicts and no
3785reduce/reduce conflicts. The usual warning is
3786given if there are either more or fewer conflicts, or if there are any
3787reduce/reduce conflicts.
3788
3789For normal LALR(1) parsers, reduce/reduce conflicts are more serious,
3790and should be eliminated entirely. Bison will always report
3791reduce/reduce conflicts for these parsers. With GLR parsers, however,
3792both shift/reduce and reduce/reduce are routine (otherwise, there
3793would be no need to use GLR parsing). Therefore, it is also possible
3794to specify an expected number of reduce/reduce conflicts in GLR
3795parsers, using the declaration:
3796
3797@example
3798%expect-rr @var{n}
3799@end example
3800
3801In general, using @code{%expect} involves these steps:
3802
3803@itemize @bullet
3804@item
3805Compile your grammar without @code{%expect}. Use the @samp{-v} option
3806to get a verbose list of where the conflicts occur. Bison will also
3807print the number of conflicts.
3808
3809@item
3810Check each of the conflicts to make sure that Bison's default
3811resolution is what you really want. If not, rewrite the grammar and
3812go back to the beginning.
3813
3814@item
3815Add an @code{%expect} declaration, copying the number @var{n} from the
3816number which Bison printed.
3817@end itemize
3818
3819Now Bison will stop annoying you if you do not change the number of
3820conflicts, but it will warn you again if changes in the grammar result
3821in more or fewer conflicts.
3822
3823@node Start Decl
3824@subsection The Start-Symbol
3825@cindex declaring the start symbol
3826@cindex start symbol, declaring
3827@cindex default start symbol
3828@findex %start
3829
3830Bison assumes by default that the start symbol for the grammar is the first
3831nonterminal specified in the grammar specification section. The programmer
3832may override this restriction with the @code{%start} declaration as follows:
3833
3834@example
3835%start @var{symbol}
3836@end example
3837
3838@node Pure Decl
3839@subsection A Pure (Reentrant) Parser
3840@cindex reentrant parser
3841@cindex pure parser
3842@findex %pure-parser
3843
3844A @dfn{reentrant} program is one which does not alter in the course of
3845execution; in other words, it consists entirely of @dfn{pure} (read-only)
3846code. Reentrancy is important whenever asynchronous execution is possible;
3847for example, a non-reentrant program may not be safe to call from a signal
3848handler. In systems with multiple threads of control, a non-reentrant
3849program must be called only within interlocks.
3850
3851Normally, Bison generates a parser which is not reentrant. This is
3852suitable for most uses, and it permits compatibility with Yacc. (The
3853standard Yacc interfaces are inherently nonreentrant, because they use
3854statically allocated variables for communication with @code{yylex},
3855including @code{yylval} and @code{yylloc}.)
3856
3857Alternatively, you can generate a pure, reentrant parser. The Bison
3858declaration @code{%pure-parser} says that you want the parser to be
3859reentrant. It looks like this:
3860
3861@example
3862%pure-parser
3863@end example
3864
3865The result is that the communication variables @code{yylval} and
3866@code{yylloc} become local variables in @code{yyparse}, and a different
3867calling convention is used for the lexical analyzer function
3868@code{yylex}. @xref{Pure Calling, ,Calling Conventions for Pure
3869Parsers}, for the details of this. The variable @code{yynerrs} also
3870becomes local in @code{yyparse} (@pxref{Error Reporting, ,The Error
3871Reporting Function @code{yyerror}}). The convention for calling
3872@code{yyparse} itself is unchanged.
3873
3874Whether the parser is pure has nothing to do with the grammar rules.
3875You can generate either a pure parser or a nonreentrant parser from any
3876valid grammar.
3877
3878@node Decl Summary
3879@subsection Bison Declaration Summary
3880@cindex Bison declaration summary
3881@cindex declaration summary
3882@cindex summary, Bison declaration
3883
3884Here is a summary of the declarations used to define a grammar:
3885
3886@deffn {Directive} %union
3887Declare the collection of data types that semantic values may have
3888(@pxref{Union Decl, ,The Collection of Value Types}).
3889@end deffn
3890
3891@deffn {Directive} %token
3892Declare a terminal symbol (token type name) with no precedence
3893or associativity specified (@pxref{Token Decl, ,Token Type Names}).
3894@end deffn
3895
3896@deffn {Directive} %right
3897Declare a terminal symbol (token type name) that is right-associative
3898(@pxref{Precedence Decl, ,Operator Precedence}).
3899@end deffn
3900
3901@deffn {Directive} %left
3902Declare a terminal symbol (token type name) that is left-associative
3903(@pxref{Precedence Decl, ,Operator Precedence}).
3904@end deffn
3905
3906@deffn {Directive} %nonassoc
3907Declare a terminal symbol (token type name) that is nonassociative
3908(@pxref{Precedence Decl, ,Operator Precedence}).
3909Using it in a way that would be associative is a syntax error.
3910@end deffn
3911
3912@ifset defaultprec
3913@deffn {Directive} %default-prec
3914Assign a precedence to rules lacking an explicit @code{%prec} modifier
3915(@pxref{Contextual Precedence, ,Context-Dependent Precedence}).
3916@end deffn
3917@end ifset
3918
3919@deffn {Directive} %type
3920Declare the type of semantic values for a nonterminal symbol
3921(@pxref{Type Decl, ,Nonterminal Symbols}).
3922@end deffn
3923
3924@deffn {Directive} %start
3925Specify the grammar's start symbol (@pxref{Start Decl, ,The
3926Start-Symbol}).
3927@end deffn
3928
3929@deffn {Directive} %expect
3930Declare the expected number of shift-reduce conflicts
3931(@pxref{Expect Decl, ,Suppressing Conflict Warnings}).
3932@end deffn
3933
3934
3935@sp 1
3936@noindent
3937In order to change the behavior of @command{bison}, use the following
3938directives:
3939
3940@deffn {Directive} %debug
3941In the parser file, define the macro @code{YYDEBUG} to 1 if it is not
3942already defined, so that the debugging facilities are compiled.
3943@end deffn
3944@xref{Tracing, ,Tracing Your Parser}.
3945
3946@deffn {Directive} %defines
3947Write a header file containing macro definitions for the token type
3948names defined in the grammar as well as a few other declarations.
3949If the parser output file is named @file{@var{name}.c} then this file
3950is named @file{@var{name}.h}.
3951
3952Unless @code{YYSTYPE} is already defined as a macro, the output header
3953declares @code{YYSTYPE}. Therefore, if you are using a @code{%union}
3954(@pxref{Multiple Types, ,More Than One Value Type}) with components
3955that require other definitions, or if you have defined a
3956@code{YYSTYPE} macro (@pxref{Value Type, ,Data Types of Semantic
3957Values}), you need to arrange for these definitions to be propagated to
3958all modules, e.g., by putting them in a
3959prerequisite header that is included both by your parser and by any
3960other module that needs @code{YYSTYPE}.
3961
3962Unless your parser is pure, the output header declares @code{yylval}
3963as an external variable. @xref{Pure Decl, ,A Pure (Reentrant)
3964Parser}.
3965
3966If you have also used locations, the output header declares
3967@code{YYLTYPE} and @code{yylloc} using a protocol similar to that of
3968@code{YYSTYPE} and @code{yylval}. @xref{Locations, ,Tracking
3969Locations}.
3970
3971This output file is normally essential if you wish to put the
3972definition of @code{yylex} in a separate source file, because
3973@code{yylex} typically needs to be able to refer to the
3974above-mentioned declarations and to the token type codes.
3975@xref{Token Values, ,Semantic Values of Tokens}.
3976@end deffn
3977
3978@deffn {Directive} %destructor
3979Specifying how the parser should reclaim the memory associated to
3980discarded symbols. @xref{Destructor Decl, , Freeing Discarded Symbols}.
3981@end deffn
3982
3983@deffn {Directive} %file-prefix="@var{prefix}"
3984Specify a prefix to use for all Bison output file names. The names are
3985chosen as if the input file were named @file{@var{prefix}.y}.
3986@end deffn
3987
3988@deffn {Directive} %locations
3989Generate the code processing the locations (@pxref{Action Features,
3990,Special Features for Use in Actions}). This mode is enabled as soon as
3991the grammar uses the special @samp{@@@var{n}} tokens, but if your
3992grammar does not use it, using @samp{%locations} allows for more
3993accurate syntax error messages.
3994@end deffn
3995
3996@deffn {Directive} %name-prefix="@var{prefix}"
3997Rename the external symbols used in the parser so that they start with
3998@var{prefix} instead of @samp{yy}. The precise list of symbols renamed
3999is @code{yyparse}, @code{yylex}, @code{yyerror}, @code{yynerrs},
4000@code{yylval}, @code{yylloc}, @code{yychar}, @code{yydebug}, and
4001possible @code{yylloc}. For example, if you use
4002@samp{%name-prefix="c_"}, the names become @code{c_parse}, @code{c_lex},
4003and so on. @xref{Multiple Parsers, ,Multiple Parsers in the Same
4004Program}.
4005@end deffn
4006
4007@ifset defaultprec
4008@deffn {Directive} %no-default-prec
4009Do not assign a precedence to rules lacking an explicit @code{%prec}
4010modifier (@pxref{Contextual Precedence, ,Context-Dependent
4011Precedence}).
4012@end deffn
4013@end ifset
4014
4015@deffn {Directive} %no-parser
4016Do not include any C code in the parser file; generate tables only. The
4017parser file contains just @code{#define} directives and static variable
4018declarations.
4019
4020This option also tells Bison to write the C code for the grammar actions
4021into a file named @file{@var{filename}.act}, in the form of a
4022brace-surrounded body fit for a @code{switch} statement.
4023@end deffn
4024
4025@deffn {Directive} %no-lines
4026Don't generate any @code{#line} preprocessor commands in the parser
4027file. Ordinarily Bison writes these commands in the parser file so that
4028the C compiler and debuggers will associate errors and object code with
4029your source file (the grammar file). This directive causes them to
4030associate errors with the parser file, treating it an independent source
4031file in its own right.
4032@end deffn
4033
4034@deffn {Directive} %output="@var{filename}"
4035Specify the @var{filename} for the parser file.
4036@end deffn
4037
4038@deffn {Directive} %pure-parser
4039Request a pure (reentrant) parser program (@pxref{Pure Decl, ,A Pure
4040(Reentrant) Parser}).
4041@end deffn
4042
4043@deffn {Directive} %token-table
4044Generate an array of token names in the parser file. The name of the
4045array is @code{yytname}; @code{yytname[@var{i}]} is the name of the
4046token whose internal Bison token code number is @var{i}. The first
4047three elements of @code{yytname} correspond to the predefined tokens
4048@code{"$end"},
4049@code{"error"}, and @code{"$undefined"}; after these come the symbols
4050defined in the grammar file.
4051
4052For single-character literal tokens and literal string tokens, the name
4053in the table includes the single-quote or double-quote characters: for
4054example, @code{"'+'"} is a single-character literal and @code{"\"<=\""}
4055is a literal string token. All the characters of the literal string
4056token appear verbatim in the string found in the table; even
4057double-quote characters are not escaped. For example, if the token
4058consists of three characters @samp{*"*}, its string in @code{yytname}
4059contains @samp{"*"*"}. (In C, that would be written as
4060@code{"\"*\"*\""}).
4061
4062When you specify @code{%token-table}, Bison also generates macro
4063definitions for macros @code{YYNTOKENS}, @code{YYNNTS}, and
4064@code{YYNRULES}, and @code{YYNSTATES}:
4065
4066@table @code
4067@item YYNTOKENS
4068The highest token number, plus one.
4069@item YYNNTS
4070The number of nonterminal symbols.
4071@item YYNRULES
4072The number of grammar rules,
4073@item YYNSTATES
4074The number of parser states (@pxref{Parser States}).
4075@end table
4076@end deffn
4077
4078@deffn {Directive} %verbose
4079Write an extra output file containing verbose descriptions of the
4080parser states and what is done for each type of look-ahead token in
4081that state. @xref{Understanding, , Understanding Your Parser}, for more
4082information.
4083@end deffn
4084
4085@deffn {Directive} %yacc
4086Pretend the option @option{--yacc} was given, i.e., imitate Yacc,
4087including its naming conventions. @xref{Bison Options}, for more.
4088@end deffn
4089
4090
4091@node Multiple Parsers
4092@section Multiple Parsers in the Same Program
4093
4094Most programs that use Bison parse only one language and therefore contain
4095only one Bison parser. But what if you want to parse more than one
4096language with the same program? Then you need to avoid a name conflict
4097between different definitions of @code{yyparse}, @code{yylval}, and so on.
4098
4099The easy way to do this is to use the option @samp{-p @var{prefix}}
4100(@pxref{Invocation, ,Invoking Bison}). This renames the interface
4101functions and variables of the Bison parser to start with @var{prefix}
4102instead of @samp{yy}. You can use this to give each parser distinct
4103names that do not conflict.
4104
4105The precise list of symbols renamed is @code{yyparse}, @code{yylex},
4106@code{yyerror}, @code{yynerrs}, @code{yylval}, @code{yylloc},
4107@code{yychar} and @code{yydebug}. For example, if you use @samp{-p c},
4108the names become @code{cparse}, @code{clex}, and so on.
4109
4110@strong{All the other variables and macros associated with Bison are not
4111renamed.} These others are not global; there is no conflict if the same
4112name is used in different parsers. For example, @code{YYSTYPE} is not
4113renamed, but defining this in different ways in different parsers causes
4114no trouble (@pxref{Value Type, ,Data Types of Semantic Values}).
4115
4116The @samp{-p} option works by adding macro definitions to the beginning
4117of the parser source file, defining @code{yyparse} as
4118@code{@var{prefix}parse}, and so on. This effectively substitutes one
4119name for the other in the entire parser file.
4120
4121@node Interface
4122@chapter Parser C-Language Interface
4123@cindex C-language interface
4124@cindex interface
4125
4126The Bison parser is actually a C function named @code{yyparse}. Here we
4127describe the interface conventions of @code{yyparse} and the other
4128functions that it needs to use.
4129
4130Keep in mind that the parser uses many C identifiers starting with
4131@samp{yy} and @samp{YY} for internal purposes. If you use such an
4132identifier (aside from those in this manual) in an action or in epilogue
4133in the grammar file, you are likely to run into trouble.
4134
4135@menu
4136* Parser Function:: How to call @code{yyparse} and what it returns.
4137* Lexical:: You must supply a function @code{yylex}
4138 which reads tokens.
4139* Error Reporting:: You must supply a function @code{yyerror}.
4140* Action Features:: Special features for use in actions.
4141@end menu
4142
4143@node Parser Function
4144@section The Parser Function @code{yyparse}
4145@findex yyparse
4146
4147You call the function @code{yyparse} to cause parsing to occur. This
4148function reads tokens, executes actions, and ultimately returns when it
4149encounters end-of-input or an unrecoverable syntax error. You can also
4150write an action which directs @code{yyparse} to return immediately
4151without reading further.
4152
4153
4154@deftypefun int yyparse (void)
4155The value returned by @code{yyparse} is 0 if parsing was successful (return
4156is due to end-of-input).
4157
4158The value is 1 if parsing failed (return is due to a syntax error).
4159@end deftypefun
4160
4161In an action, you can cause immediate return from @code{yyparse} by using
4162these macros:
4163
4164@defmac YYACCEPT
4165@findex YYACCEPT
4166Return immediately with value 0 (to report success).
4167@end defmac
4168
4169@defmac YYABORT
4170@findex YYABORT
4171Return immediately with value 1 (to report failure).
4172@end defmac
4173
4174If you use a reentrant parser, you can optionally pass additional
4175parameter information to it in a reentrant way. To do so, use the
4176declaration @code{%parse-param}:
4177
4178@deffn {Directive} %parse-param @{@var{argument-declaration}@}
4179@findex %parse-param
4180Declare that an argument declared by @code{argument-declaration} is an
4181additional @code{yyparse} argument.
4182The @var{argument-declaration} is used when declaring
4183functions or prototypes. The last identifier in
4184@var{argument-declaration} must be the argument name.
4185@end deffn
4186
4187Here's an example. Write this in the parser:
4188
4189@example
4190%parse-param @{int *nastiness@}
4191%parse-param @{int *randomness@}
4192@end example
4193
4194@noindent
4195Then call the parser like this:
4196
4197@example
4198@{
4199 int nastiness, randomness;
4200 @dots{} /* @r{Store proper data in @code{nastiness} and @code{randomness}.} */
4201 value = yyparse (&nastiness, &randomness);
4202 @dots{}
4203@}
4204@end example
4205
4206@noindent
4207In the grammar actions, use expressions like this to refer to the data:
4208
4209@example
4210exp: @dots{} @{ @dots{}; *randomness += 1; @dots{} @}
4211@end example
4212
4213
4214@node Lexical
4215@section The Lexical Analyzer Function @code{yylex}
4216@findex yylex
4217@cindex lexical analyzer
4218
4219The @dfn{lexical analyzer} function, @code{yylex}, recognizes tokens from
4220the input stream and returns them to the parser. Bison does not create
4221this function automatically; you must write it so that @code{yyparse} can
4222call it. The function is sometimes referred to as a lexical scanner.
4223
4224In simple programs, @code{yylex} is often defined at the end of the Bison
4225grammar file. If @code{yylex} is defined in a separate source file, you
4226need to arrange for the token-type macro definitions to be available there.
4227To do this, use the @samp{-d} option when you run Bison, so that it will
4228write these macro definitions into a separate header file
4229@file{@var{name}.tab.h} which you can include in the other source files
4230that need it. @xref{Invocation, ,Invoking Bison}.
4231
4232@menu
4233* Calling Convention:: How @code{yyparse} calls @code{yylex}.
4234* Token Values:: How @code{yylex} must return the semantic value
4235 of the token it has read.
4236* Token Locations:: How @code{yylex} must return the text location
4237 (line number, etc.) of the token, if the
4238 actions want that.
4239* Pure Calling:: How the calling convention differs
4240 in a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}).
4241@end menu
4242
4243@node Calling Convention
4244@subsection Calling Convention for @code{yylex}
4245
4246The value that @code{yylex} returns must be the positive numeric code
4247for the type of token it has just found; a zero or negative value
4248signifies end-of-input.
4249
4250When a token is referred to in the grammar rules by a name, that name
4251in the parser file becomes a C macro whose definition is the proper
4252numeric code for that token type. So @code{yylex} can use the name
4253to indicate that type. @xref{Symbols}.
4254
4255When a token is referred to in the grammar rules by a character literal,
4256the numeric code for that character is also the code for the token type.
4257So @code{yylex} can simply return that character code, possibly converted
4258to @code{unsigned char} to avoid sign-extension. The null character
4259must not be used this way, because its code is zero and that
4260signifies end-of-input.
4261
4262Here is an example showing these things:
4263
4264@example
4265int
4266yylex (void)
4267@{
4268 @dots{}
4269 if (c == EOF) /* Detect end-of-input. */
4270 return 0;
4271 @dots{}
4272 if (c == '+' || c == '-')
4273 return c; /* Assume token type for `+' is '+'. */
4274 @dots{}
4275 return INT; /* Return the type of the token. */
4276 @dots{}
4277@}
4278@end example
4279
4280@noindent
4281This interface has been designed so that the output from the @code{lex}
4282utility can be used without change as the definition of @code{yylex}.
4283
4284If the grammar uses literal string tokens, there are two ways that
4285@code{yylex} can determine the token type codes for them:
4286
4287@itemize @bullet
4288@item
4289If the grammar defines symbolic token names as aliases for the
4290literal string tokens, @code{yylex} can use these symbolic names like
4291all others. In this case, the use of the literal string tokens in
4292the grammar file has no effect on @code{yylex}.
4293
4294@item
4295@code{yylex} can find the multicharacter token in the @code{yytname}
4296table. The index of the token in the table is the token type's code.
4297The name of a multicharacter token is recorded in @code{yytname} with a
4298double-quote, the token's characters, and another double-quote. The
4299token's characters are not escaped in any way; they appear verbatim in
4300the contents of the string in the table.
4301
4302Here's code for looking up a token in @code{yytname}, assuming that the
4303characters of the token are stored in @code{token_buffer}.
4304
4305@smallexample
4306for (i = 0; i < YYNTOKENS; i++)
4307 @{
4308 if (yytname[i] != 0
4309 && yytname[i][0] == '"'
4310 && ! strncmp (yytname[i] + 1, token_buffer,
4311 strlen (token_buffer))
4312 && yytname[i][strlen (token_buffer) + 1] == '"'
4313 && yytname[i][strlen (token_buffer) + 2] == 0)
4314 break;
4315 @}
4316@end smallexample
4317
4318The @code{yytname} table is generated only if you use the
4319@code{%token-table} declaration. @xref{Decl Summary}.
4320@end itemize
4321
4322@node Token Values
4323@subsection Semantic Values of Tokens
4324
4325@vindex yylval
4326In an ordinary (non-reentrant) parser, the semantic value of the token must
4327be stored into the global variable @code{yylval}. When you are using
4328just one data type for semantic values, @code{yylval} has that type.
4329Thus, if the type is @code{int} (the default), you might write this in
4330@code{yylex}:
4331
4332@example
4333@group
4334 @dots{}
4335 yylval = value; /* Put value onto Bison stack. */
4336 return INT; /* Return the type of the token. */
4337 @dots{}
4338@end group
4339@end example
4340
4341When you are using multiple data types, @code{yylval}'s type is a union
4342made from the @code{%union} declaration (@pxref{Union Decl, ,The
4343Collection of Value Types}). So when you store a token's value, you
4344must use the proper member of the union. If the @code{%union}
4345declaration looks like this:
4346
4347@example
4348@group
4349%union @{
4350 int intval;
4351 double val;
4352 symrec *tptr;
4353@}
4354@end group
4355@end example
4356
4357@noindent
4358then the code in @code{yylex} might look like this:
4359
4360@example
4361@group
4362 @dots{}
4363 yylval.intval = value; /* Put value onto Bison stack. */
4364 return INT; /* Return the type of the token. */
4365 @dots{}
4366@end group
4367@end example
4368
4369@node Token Locations
4370@subsection Textual Locations of Tokens
4371
4372@vindex yylloc
4373If you are using the @samp{@@@var{n}}-feature (@pxref{Locations, ,
4374Tracking Locations}) in actions to keep track of the
4375textual locations of tokens and groupings, then you must provide this
4376information in @code{yylex}. The function @code{yyparse} expects to
4377find the textual location of a token just parsed in the global variable
4378@code{yylloc}. So @code{yylex} must store the proper data in that
4379variable.
4380
4381By default, the value of @code{yylloc} is a structure and you need only
4382initialize the members that are going to be used by the actions. The
4383four members are called @code{first_line}, @code{first_column},
4384@code{last_line} and @code{last_column}. Note that the use of this
4385feature makes the parser noticeably slower.
4386
4387@tindex YYLTYPE
4388The data type of @code{yylloc} has the name @code{YYLTYPE}.
4389
4390@node Pure Calling
4391@subsection Calling Conventions for Pure Parsers
4392
4393When you use the Bison declaration @code{%pure-parser} to request a
4394pure, reentrant parser, the global communication variables @code{yylval}
4395and @code{yylloc} cannot be used. (@xref{Pure Decl, ,A Pure (Reentrant)
4396Parser}.) In such parsers the two global variables are replaced by
4397pointers passed as arguments to @code{yylex}. You must declare them as
4398shown here, and pass the information back by storing it through those
4399pointers.
4400
4401@example
4402int
4403yylex (YYSTYPE *lvalp, YYLTYPE *llocp)
4404@{
4405 @dots{}
4406 *lvalp = value; /* Put value onto Bison stack. */
4407 return INT; /* Return the type of the token. */
4408 @dots{}
4409@}
4410@end example
4411
4412If the grammar file does not use the @samp{@@} constructs to refer to
4413textual locations, then the type @code{YYLTYPE} will not be defined. In
4414this case, omit the second argument; @code{yylex} will be called with
4415only one argument.
4416
4417
4418If you wish to pass the additional parameter data to @code{yylex}, use
4419@code{%lex-param} just like @code{%parse-param} (@pxref{Parser
4420Function}).
4421
4422@deffn {Directive} lex-param @{@var{argument-declaration}@}
4423@findex %lex-param
4424Declare that @code{argument-declaration} is an additional @code{yylex}
4425argument declaration.
4426@end deffn
4427
4428For instance:
4429
4430@example
4431%parse-param @{int *nastiness@}
4432%lex-param @{int *nastiness@}
4433%parse-param @{int *randomness@}
4434@end example
4435
4436@noindent
4437results in the following signature:
4438
4439@example
4440int yylex (int *nastiness);
4441int yyparse (int *nastiness, int *randomness);
4442@end example
4443
4444If @code{%pure-parser} is added:
4445
4446@example
4447int yylex (YYSTYPE *lvalp, int *nastiness);
4448int yyparse (int *nastiness, int *randomness);
4449@end example
4450
4451@noindent
4452and finally, if both @code{%pure-parser} and @code{%locations} are used:
4453
4454@example
4455int yylex (YYSTYPE *lvalp, YYLTYPE *llocp, int *nastiness);
4456int yyparse (int *nastiness, int *randomness);
4457@end example
4458
4459@node Error Reporting
4460@section The Error Reporting Function @code{yyerror}
4461@cindex error reporting function
4462@findex yyerror
4463@cindex parse error
4464@cindex syntax error
4465
4466The Bison parser detects a @dfn{syntax error} or @dfn{parse error}
4467whenever it reads a token which cannot satisfy any syntax rule. An
4468action in the grammar can also explicitly proclaim an error, using the
4469macro @code{YYERROR} (@pxref{Action Features, ,Special Features for Use
4470in Actions}).
4471
4472The Bison parser expects to report the error by calling an error
4473reporting function named @code{yyerror}, which you must supply. It is
4474called by @code{yyparse} whenever a syntax error is found, and it
4475receives one argument. For a syntax error, the string is normally
4476@w{@code{"syntax error"}}.
4477
4478@findex %error-verbose
4479If you invoke the directive @code{%error-verbose} in the Bison
4480declarations section (@pxref{Bison Declarations, ,The Bison Declarations
4481Section}), then Bison provides a more verbose and specific error message
4482string instead of just plain @w{@code{"syntax error"}}.
4483
4484The parser can detect one other kind of error: stack overflow. This
4485happens when the input contains constructions that are very deeply
4486nested. It isn't likely you will encounter this, since the Bison
4487parser extends its stack automatically up to a very large limit. But
4488if overflow happens, @code{yyparse} calls @code{yyerror} in the usual
4489fashion, except that the argument string is @w{@code{"parser stack
4490overflow"}}.
4491
4492The following definition suffices in simple programs:
4493
4494@example
4495@group
4496void
4497yyerror (char const *s)
4498@{
4499@end group
4500@group
4501 fprintf (stderr, "%s\n", s);
4502@}
4503@end group
4504@end example
4505
4506After @code{yyerror} returns to @code{yyparse}, the latter will attempt
4507error recovery if you have written suitable error recovery grammar rules
4508(@pxref{Error Recovery}). If recovery is impossible, @code{yyparse} will
4509immediately return 1.
4510
4511Obviously, in location tracking pure parsers, @code{yyerror} should have
4512an access to the current location. This is indeed the case for the GLR
4513parsers, but not for the Yacc parser, for historical reasons. I.e., if
4514@samp{%locations %pure-parser} is passed then the prototypes for
4515@code{yyerror} are:
4516
4517@example
4518void yyerror (char const *msg); /* Yacc parsers. */
4519void yyerror (YYLTYPE *locp, char const *msg); /* GLR parsers. */
4520@end example
4521
4522If @samp{%parse-param @{int *nastiness@}} is used, then:
4523
4524@example
4525void yyerror (int *nastiness, char const *msg); /* Yacc parsers. */
4526void yyerror (int *nastiness, char const *msg); /* GLR parsers. */
4527@end example
4528
4529Finally, GLR and Yacc parsers share the same @code{yyerror} calling
4530convention for absolutely pure parsers, i.e., when the calling
4531convention of @code{yylex} @emph{and} the calling convention of
4532@code{%pure-parser} are pure. I.e.:
4533
4534@example
4535/* Location tracking. */
4536%locations
4537/* Pure yylex. */
4538%pure-parser
4539%lex-param @{int *nastiness@}
4540/* Pure yyparse. */
4541%parse-param @{int *nastiness@}
4542%parse-param @{int *randomness@}
4543@end example
4544
4545@noindent
4546results in the following signatures for all the parser kinds:
4547
4548@example
4549int yylex (YYSTYPE *lvalp, YYLTYPE *llocp, int *nastiness);
4550int yyparse (int *nastiness, int *randomness);
4551void yyerror (YYLTYPE *locp,
4552 int *nastiness, int *randomness,
4553 char const *msg);
4554@end example
4555
4556@noindent
4557The prototypes are only indications of how the code produced by Bison
4558uses @code{yyerror}. Bison-generated code always ignores the returned
4559value, so @code{yyerror} can return any type, including @code{void}.
4560Also, @code{yyerror} can be a variadic function; that is why the
4561message is always passed last.
4562
4563Traditionally @code{yyerror} returns an @code{int} that is always
4564ignored, but this is purely for historical reasons, and @code{void} is
4565preferable since it more accurately describes the return type for
4566@code{yyerror}.
4567
4568@vindex yynerrs
4569The variable @code{yynerrs} contains the number of syntax errors
4570encountered so far. Normally this variable is global; but if you
4571request a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser})
4572then it is a local variable which only the actions can access.
4573
4574@node Action Features
4575@section Special Features for Use in Actions
4576@cindex summary, action features
4577@cindex action features summary
4578
4579Here is a table of Bison constructs, variables and macros that
4580are useful in actions.
4581
4582@deffn {Variable} $$
4583Acts like a variable that contains the semantic value for the
4584grouping made by the current rule. @xref{Actions}.
4585@end deffn
4586
4587@deffn {Variable} $@var{n}
4588Acts like a variable that contains the semantic value for the
4589@var{n}th component of the current rule. @xref{Actions}.
4590@end deffn
4591
4592@deffn {Variable} $<@var{typealt}>$
4593Like @code{$$} but specifies alternative @var{typealt} in the union
4594specified by the @code{%union} declaration. @xref{Action Types, ,Data
4595Types of Values in Actions}.
4596@end deffn
4597
4598@deffn {Variable} $<@var{typealt}>@var{n}
4599Like @code{$@var{n}} but specifies alternative @var{typealt} in the
4600union specified by the @code{%union} declaration.
4601@xref{Action Types, ,Data Types of Values in Actions}.
4602@end deffn
4603
4604@deffn {Macro} YYABORT;
4605Return immediately from @code{yyparse}, indicating failure.
4606@xref{Parser Function, ,The Parser Function @code{yyparse}}.
4607@end deffn
4608
4609@deffn {Macro} YYACCEPT;
4610Return immediately from @code{yyparse}, indicating success.
4611@xref{Parser Function, ,The Parser Function @code{yyparse}}.
4612@end deffn
4613
4614@deffn {Macro} YYBACKUP (@var{token}, @var{value});
4615@findex YYBACKUP
4616Unshift a token. This macro is allowed only for rules that reduce
4617a single value, and only when there is no look-ahead token.
4618It is also disallowed in @acronym{GLR} parsers.
4619It installs a look-ahead token with token type @var{token} and
4620semantic value @var{value}; then it discards the value that was
4621going to be reduced by this rule.
4622
4623If the macro is used when it is not valid, such as when there is
4624a look-ahead token already, then it reports a syntax error with
4625a message @samp{cannot back up} and performs ordinary error
4626recovery.
4627
4628In either case, the rest of the action is not executed.
4629@end deffn
4630
4631@deffn {Macro} YYEMPTY
4632@vindex YYEMPTY
4633Value stored in @code{yychar} when there is no look-ahead token.
4634@end deffn
4635
4636@deffn {Macro} YYERROR;
4637@findex YYERROR
4638Cause an immediate syntax error. This statement initiates error
4639recovery just as if the parser itself had detected an error; however, it
4640does not call @code{yyerror}, and does not print any message. If you
4641want to print an error message, call @code{yyerror} explicitly before
4642the @samp{YYERROR;} statement. @xref{Error Recovery}.
4643@end deffn
4644
4645@deffn {Macro} YYRECOVERING
4646This macro stands for an expression that has the value 1 when the parser
4647is recovering from a syntax error, and 0 the rest of the time.
4648@xref{Error Recovery}.
4649@end deffn
4650
4651@deffn {Variable} yychar
4652Variable containing the current look-ahead token. (In a pure parser,
4653this is actually a local variable within @code{yyparse}.) When there is
4654no look-ahead token, the value @code{YYEMPTY} is stored in the variable.
4655@xref{Look-Ahead, ,Look-Ahead Tokens}.
4656@end deffn
4657
4658@deffn {Macro} yyclearin;
4659Discard the current look-ahead token. This is useful primarily in
4660error rules. @xref{Error Recovery}.
4661@end deffn
4662
4663@deffn {Macro} yyerrok;
4664Resume generating error messages immediately for subsequent syntax
4665errors. This is useful primarily in error rules.
4666@xref{Error Recovery}.
4667@end deffn
4668
4669@deffn {Value} @@$
4670@findex @@$
4671Acts like a structure variable containing information on the textual location
4672of the grouping made by the current rule. @xref{Locations, ,
4673Tracking Locations}.
4674
4675@c Check if those paragraphs are still useful or not.
4676
4677@c @example
4678@c struct @{
4679@c int first_line, last_line;
4680@c int first_column, last_column;
4681@c @};
4682@c @end example
4683
4684@c Thus, to get the starting line number of the third component, you would
4685@c use @samp{@@3.first_line}.
4686
4687@c In order for the members of this structure to contain valid information,
4688@c you must make @code{yylex} supply this information about each token.
4689@c If you need only certain members, then @code{yylex} need only fill in
4690@c those members.
4691
4692@c The use of this feature makes the parser noticeably slower.
4693@end deffn
4694
4695@deffn {Value} @@@var{n}
4696@findex @@@var{n}
4697Acts like a structure variable containing information on the textual location
4698of the @var{n}th component of the current rule. @xref{Locations, ,
4699Tracking Locations}.
4700@end deffn
4701
4702
4703@node Algorithm
4704@chapter The Bison Parser Algorithm
4705@cindex Bison parser algorithm
4706@cindex algorithm of parser
4707@cindex shifting
4708@cindex reduction
4709@cindex parser stack
4710@cindex stack, parser
4711
4712As Bison reads tokens, it pushes them onto a stack along with their
4713semantic values. The stack is called the @dfn{parser stack}. Pushing a
4714token is traditionally called @dfn{shifting}.
4715
4716For example, suppose the infix calculator has read @samp{1 + 5 *}, with a
4717@samp{3} to come. The stack will have four elements, one for each token
4718that was shifted.
4719
4720But the stack does not always have an element for each token read. When
4721the last @var{n} tokens and groupings shifted match the components of a
4722grammar rule, they can be combined according to that rule. This is called
4723@dfn{reduction}. Those tokens and groupings are replaced on the stack by a
4724single grouping whose symbol is the result (left hand side) of that rule.
4725Running the rule's action is part of the process of reduction, because this
4726is what computes the semantic value of the resulting grouping.
4727
4728For example, if the infix calculator's parser stack contains this:
4729
4730@example
47311 + 5 * 3
4732@end example
4733
4734@noindent
4735and the next input token is a newline character, then the last three
4736elements can be reduced to 15 via the rule:
4737
4738@example
4739expr: expr '*' expr;
4740@end example
4741
4742@noindent
4743Then the stack contains just these three elements:
4744
4745@example
47461 + 15
4747@end example
4748
4749@noindent
4750At this point, another reduction can be made, resulting in the single value
475116. Then the newline token can be shifted.
4752
4753The parser tries, by shifts and reductions, to reduce the entire input down
4754to a single grouping whose symbol is the grammar's start-symbol
4755(@pxref{Language and Grammar, ,Languages and Context-Free Grammars}).
4756
4757This kind of parser is known in the literature as a bottom-up parser.
4758
4759@menu
4760* Look-Ahead:: Parser looks one token ahead when deciding what to do.
4761* Shift/Reduce:: Conflicts: when either shifting or reduction is valid.
4762* Precedence:: Operator precedence works by resolving conflicts.
4763* Contextual Precedence:: When an operator's precedence depends on context.
4764* Parser States:: The parser is a finite-state-machine with stack.
4765* Reduce/Reduce:: When two rules are applicable in the same situation.
4766* Mystery Conflicts:: Reduce/reduce conflicts that look unjustified.
4767* Generalized LR Parsing:: Parsing arbitrary context-free grammars.
4768* Stack Overflow:: What happens when stack gets full. How to avoid it.
4769@end menu
4770
4771@node Look-Ahead
4772@section Look-Ahead Tokens
4773@cindex look-ahead token
4774
4775The Bison parser does @emph{not} always reduce immediately as soon as the
4776last @var{n} tokens and groupings match a rule. This is because such a
4777simple strategy is inadequate to handle most languages. Instead, when a
4778reduction is possible, the parser sometimes ``looks ahead'' at the next
4779token in order to decide what to do.
4780
4781When a token is read, it is not immediately shifted; first it becomes the
4782@dfn{look-ahead token}, which is not on the stack. Now the parser can
4783perform one or more reductions of tokens and groupings on the stack, while
4784the look-ahead token remains off to the side. When no more reductions
4785should take place, the look-ahead token is shifted onto the stack. This
4786does not mean that all possible reductions have been done; depending on the
4787token type of the look-ahead token, some rules may choose to delay their
4788application.
4789
4790Here is a simple case where look-ahead is needed. These three rules define
4791expressions which contain binary addition operators and postfix unary
4792factorial operators (@samp{!}), and allow parentheses for grouping.
4793
4794@example
4795@group
4796expr: term '+' expr
4797 | term
4798 ;
4799@end group
4800
4801@group
4802term: '(' expr ')'
4803 | term '!'
4804 | NUMBER
4805 ;
4806@end group
4807@end example
4808
4809Suppose that the tokens @w{@samp{1 + 2}} have been read and shifted; what
4810should be done? If the following token is @samp{)}, then the first three
4811tokens must be reduced to form an @code{expr}. This is the only valid
4812course, because shifting the @samp{)} would produce a sequence of symbols
4813@w{@code{term ')'}}, and no rule allows this.
4814
4815If the following token is @samp{!}, then it must be shifted immediately so
4816that @w{@samp{2 !}} can be reduced to make a @code{term}. If instead the
4817parser were to reduce before shifting, @w{@samp{1 + 2}} would become an
4818@code{expr}. It would then be impossible to shift the @samp{!} because
4819doing so would produce on the stack the sequence of symbols @code{expr
4820'!'}. No rule allows that sequence.
4821
4822@vindex yychar
4823The current look-ahead token is stored in the variable @code{yychar}.
4824@xref{Action Features, ,Special Features for Use in Actions}.
4825
4826@node Shift/Reduce
4827@section Shift/Reduce Conflicts
4828@cindex conflicts
4829@cindex shift/reduce conflicts
4830@cindex dangling @code{else}
4831@cindex @code{else}, dangling
4832
4833Suppose we are parsing a language which has if-then and if-then-else
4834statements, with a pair of rules like this:
4835
4836@example
4837@group
4838if_stmt:
4839 IF expr THEN stmt
4840 | IF expr THEN stmt ELSE stmt
4841 ;
4842@end group
4843@end example
4844
4845@noindent
4846Here we assume that @code{IF}, @code{THEN} and @code{ELSE} are
4847terminal symbols for specific keyword tokens.
4848
4849When the @code{ELSE} token is read and becomes the look-ahead token, the
4850contents of the stack (assuming the input is valid) are just right for
4851reduction by the first rule. But it is also legitimate to shift the
4852@code{ELSE}, because that would lead to eventual reduction by the second
4853rule.
4854
4855This situation, where either a shift or a reduction would be valid, is
4856called a @dfn{shift/reduce conflict}. Bison is designed to resolve
4857these conflicts by choosing to shift, unless otherwise directed by
4858operator precedence declarations. To see the reason for this, let's
4859contrast it with the other alternative.
4860
4861Since the parser prefers to shift the @code{ELSE}, the result is to attach
4862the else-clause to the innermost if-statement, making these two inputs
4863equivalent:
4864
4865@example
4866if x then if y then win (); else lose;
4867
4868if x then do; if y then win (); else lose; end;
4869@end example
4870
4871But if the parser chose to reduce when possible rather than shift, the
4872result would be to attach the else-clause to the outermost if-statement,
4873making these two inputs equivalent:
4874
4875@example
4876if x then if y then win (); else lose;
4877
4878if x then do; if y then win (); end; else lose;
4879@end example
4880
4881The conflict exists because the grammar as written is ambiguous: either
4882parsing of the simple nested if-statement is legitimate. The established
4883convention is that these ambiguities are resolved by attaching the
4884else-clause to the innermost if-statement; this is what Bison accomplishes
4885by choosing to shift rather than reduce. (It would ideally be cleaner to
4886write an unambiguous grammar, but that is very hard to do in this case.)
4887This particular ambiguity was first encountered in the specifications of
4888Algol 60 and is called the ``dangling @code{else}'' ambiguity.
4889
4890To avoid warnings from Bison about predictable, legitimate shift/reduce
4891conflicts, use the @code{%expect @var{n}} declaration. There will be no
4892warning as long as the number of shift/reduce conflicts is exactly @var{n}.
4893@xref{Expect Decl, ,Suppressing Conflict Warnings}.
4894
4895The definition of @code{if_stmt} above is solely to blame for the
4896conflict, but the conflict does not actually appear without additional
4897rules. Here is a complete Bison input file that actually manifests the
4898conflict:
4899
4900@example
4901@group
4902%token IF THEN ELSE variable
4903%%
4904@end group
4905@group
4906stmt: expr
4907 | if_stmt
4908 ;
4909@end group
4910
4911@group
4912if_stmt:
4913 IF expr THEN stmt
4914 | IF expr THEN stmt ELSE stmt
4915 ;
4916@end group
4917
4918expr: variable
4919 ;
4920@end example
4921
4922@node Precedence
4923@section Operator Precedence
4924@cindex operator precedence
4925@cindex precedence of operators
4926
4927Another situation where shift/reduce conflicts appear is in arithmetic
4928expressions. Here shifting is not always the preferred resolution; the
4929Bison declarations for operator precedence allow you to specify when to
4930shift and when to reduce.
4931
4932@menu
4933* Why Precedence:: An example showing why precedence is needed.
4934* Using Precedence:: How to specify precedence in Bison grammars.
4935* Precedence Examples:: How these features are used in the previous example.
4936* How Precedence:: How they work.
4937@end menu
4938
4939@node Why Precedence
4940@subsection When Precedence is Needed
4941
4942Consider the following ambiguous grammar fragment (ambiguous because the
4943input @w{@samp{1 - 2 * 3}} can be parsed in two different ways):
4944
4945@example
4946@group
4947expr: expr '-' expr
4948 | expr '*' expr
4949 | expr '<' expr
4950 | '(' expr ')'
4951 @dots{}
4952 ;
4953@end group
4954@end example
4955
4956@noindent
4957Suppose the parser has seen the tokens @samp{1}, @samp{-} and @samp{2};
4958should it reduce them via the rule for the subtraction operator? It
4959depends on the next token. Of course, if the next token is @samp{)}, we
4960must reduce; shifting is invalid because no single rule can reduce the
4961token sequence @w{@samp{- 2 )}} or anything starting with that. But if
4962the next token is @samp{*} or @samp{<}, we have a choice: either
4963shifting or reduction would allow the parse to complete, but with
4964different results.
4965
4966To decide which one Bison should do, we must consider the results. If
4967the next operator token @var{op} is shifted, then it must be reduced
4968first in order to permit another opportunity to reduce the difference.
4969The result is (in effect) @w{@samp{1 - (2 @var{op} 3)}}. On the other
4970hand, if the subtraction is reduced before shifting @var{op}, the result
4971is @w{@samp{(1 - 2) @var{op} 3}}. Clearly, then, the choice of shift or
4972reduce should depend on the relative precedence of the operators
4973@samp{-} and @var{op}: @samp{*} should be shifted first, but not
4974@samp{<}.
4975
4976@cindex associativity
4977What about input such as @w{@samp{1 - 2 - 5}}; should this be
4978@w{@samp{(1 - 2) - 5}} or should it be @w{@samp{1 - (2 - 5)}}? For most
4979operators we prefer the former, which is called @dfn{left association}.
4980The latter alternative, @dfn{right association}, is desirable for
4981assignment operators. The choice of left or right association is a
4982matter of whether the parser chooses to shift or reduce when the stack
4983contains @w{@samp{1 - 2}} and the look-ahead token is @samp{-}: shifting
4984makes right-associativity.
4985
4986@node Using Precedence
4987@subsection Specifying Operator Precedence
4988@findex %left
4989@findex %right
4990@findex %nonassoc
4991
4992Bison allows you to specify these choices with the operator precedence
4993declarations @code{%left} and @code{%right}. Each such declaration
4994contains a list of tokens, which are operators whose precedence and
4995associativity is being declared. The @code{%left} declaration makes all
4996those operators left-associative and the @code{%right} declaration makes
4997them right-associative. A third alternative is @code{%nonassoc}, which
4998declares that it is a syntax error to find the same operator twice ``in a
4999row''.
5000
5001The relative precedence of different operators is controlled by the
5002order in which they are declared. The first @code{%left} or
5003@code{%right} declaration in the file declares the operators whose
5004precedence is lowest, the next such declaration declares the operators
5005whose precedence is a little higher, and so on.
5006
5007@node Precedence Examples
5008@subsection Precedence Examples
5009
5010In our example, we would want the following declarations:
5011
5012@example
5013%left '<'
5014%left '-'
5015%left '*'
5016@end example
5017
5018In a more complete example, which supports other operators as well, we
5019would declare them in groups of equal precedence. For example, @code{'+'} is
5020declared with @code{'-'}:
5021
5022@example
5023%left '<' '>' '=' NE LE GE
5024%left '+' '-'
5025%left '*' '/'
5026@end example
5027
5028@noindent
5029(Here @code{NE} and so on stand for the operators for ``not equal''
5030and so on. We assume that these tokens are more than one character long
5031and therefore are represented by names, not character literals.)
5032
5033@node How Precedence
5034@subsection How Precedence Works
5035
5036The first effect of the precedence declarations is to assign precedence
5037levels to the terminal symbols declared. The second effect is to assign
5038precedence levels to certain rules: each rule gets its precedence from
5039the last terminal symbol mentioned in the components. (You can also
5040specify explicitly the precedence of a rule. @xref{Contextual
5041Precedence, ,Context-Dependent Precedence}.)
5042
5043Finally, the resolution of conflicts works by comparing the precedence
5044of the rule being considered with that of the look-ahead token. If the
5045token's precedence is higher, the choice is to shift. If the rule's
5046precedence is higher, the choice is to reduce. If they have equal
5047precedence, the choice is made based on the associativity of that
5048precedence level. The verbose output file made by @samp{-v}
5049(@pxref{Invocation, ,Invoking Bison}) says how each conflict was
5050resolved.
5051
5052Not all rules and not all tokens have precedence. If either the rule or
5053the look-ahead token has no precedence, then the default is to shift.
5054
5055@node Contextual Precedence
5056@section Context-Dependent Precedence
5057@cindex context-dependent precedence
5058@cindex unary operator precedence
5059@cindex precedence, context-dependent
5060@cindex precedence, unary operator
5061@findex %prec
5062
5063Often the precedence of an operator depends on the context. This sounds
5064outlandish at first, but it is really very common. For example, a minus
5065sign typically has a very high precedence as a unary operator, and a
5066somewhat lower precedence (lower than multiplication) as a binary operator.
5067
5068The Bison precedence declarations, @code{%left}, @code{%right} and
5069@code{%nonassoc}, can only be used once for a given token; so a token has
5070only one precedence declared in this way. For context-dependent
5071precedence, you need to use an additional mechanism: the @code{%prec}
5072modifier for rules.
5073
5074The @code{%prec} modifier declares the precedence of a particular rule by
5075specifying a terminal symbol whose precedence should be used for that rule.
5076It's not necessary for that symbol to appear otherwise in the rule. The
5077modifier's syntax is:
5078
5079@example
5080%prec @var{terminal-symbol}
5081@end example
5082
5083@noindent
5084and it is written after the components of the rule. Its effect is to
5085assign the rule the precedence of @var{terminal-symbol}, overriding
5086the precedence that would be deduced for it in the ordinary way. The
5087altered rule precedence then affects how conflicts involving that rule
5088are resolved (@pxref{Precedence, ,Operator Precedence}).
5089
5090Here is how @code{%prec} solves the problem of unary minus. First, declare
5091a precedence for a fictitious terminal symbol named @code{UMINUS}. There
5092are no tokens of this type, but the symbol serves to stand for its
5093precedence:
5094
5095@example
5096@dots{}
5097%left '+' '-'
5098%left '*'
5099%left UMINUS
5100@end example
5101
5102Now the precedence of @code{UMINUS} can be used in specific rules:
5103
5104@example
5105@group
5106exp: @dots{}
5107 | exp '-' exp
5108 @dots{}
5109 | '-' exp %prec UMINUS
5110@end group
5111@end example
5112
5113@ifset defaultprec
5114If you forget to append @code{%prec UMINUS} to the rule for unary
5115minus, Bison silently assumes that minus has its usual precedence.
5116This kind of problem can be tricky to debug, since one typically
5117discovers the mistake only by testing the code.
5118
5119The @code{%no-default-prec;} declaration makes it easier to discover
5120this kind of problem systematically. It causes rules that lack a
5121@code{%prec} modifier to have no precedence, even if the last terminal
5122symbol mentioned in their components has a declared precedence.
5123
5124If @code{%no-default-prec;} is in effect, you must specify @code{%prec}
5125for all rules that participate in precedence conflict resolution.
5126Then you will see any shift/reduce conflict until you tell Bison how
5127to resolve it, either by changing your grammar or by adding an
5128explicit precedence. This will probably add declarations to the
5129grammar, but it helps to protect against incorrect rule precedences.
5130
5131The effect of @code{%no-default-prec;} can be reversed by giving
5132@code{%default-prec;}, which is the default.
5133@end ifset
5134
5135@node Parser States
5136@section Parser States
5137@cindex finite-state machine
5138@cindex parser state
5139@cindex state (of parser)
5140
5141The function @code{yyparse} is implemented using a finite-state machine.
5142The values pushed on the parser stack are not simply token type codes; they
5143represent the entire sequence of terminal and nonterminal symbols at or
5144near the top of the stack. The current state collects all the information
5145about previous input which is relevant to deciding what to do next.
5146
5147Each time a look-ahead token is read, the current parser state together
5148with the type of look-ahead token are looked up in a table. This table
5149entry can say, ``Shift the look-ahead token.'' In this case, it also
5150specifies the new parser state, which is pushed onto the top of the
5151parser stack. Or it can say, ``Reduce using rule number @var{n}.''
5152This means that a certain number of tokens or groupings are taken off
5153the top of the stack, and replaced by one grouping. In other words,
5154that number of states are popped from the stack, and one new state is
5155pushed.
5156
5157There is one other alternative: the table can say that the look-ahead token
5158is erroneous in the current state. This causes error processing to begin
5159(@pxref{Error Recovery}).
5160
5161@node Reduce/Reduce
5162@section Reduce/Reduce Conflicts
5163@cindex reduce/reduce conflict
5164@cindex conflicts, reduce/reduce
5165
5166A reduce/reduce conflict occurs if there are two or more rules that apply
5167to the same sequence of input. This usually indicates a serious error
5168in the grammar.
5169
5170For example, here is an erroneous attempt to define a sequence
5171of zero or more @code{word} groupings.
5172
5173@example
5174sequence: /* empty */
5175 @{ printf ("empty sequence\n"); @}
5176 | maybeword
5177 | sequence word
5178 @{ printf ("added word %s\n", $2); @}
5179 ;
5180
5181maybeword: /* empty */
5182 @{ printf ("empty maybeword\n"); @}
5183 | word
5184 @{ printf ("single word %s\n", $1); @}
5185 ;
5186@end example
5187
5188@noindent
5189The error is an ambiguity: there is more than one way to parse a single
5190@code{word} into a @code{sequence}. It could be reduced to a
5191@code{maybeword} and then into a @code{sequence} via the second rule.
5192Alternatively, nothing-at-all could be reduced into a @code{sequence}
5193via the first rule, and this could be combined with the @code{word}
5194using the third rule for @code{sequence}.
5195
5196There is also more than one way to reduce nothing-at-all into a
5197@code{sequence}. This can be done directly via the first rule,
5198or indirectly via @code{maybeword} and then the second rule.
5199
5200You might think that this is a distinction without a difference, because it
5201does not change whether any particular input is valid or not. But it does
5202affect which actions are run. One parsing order runs the second rule's
5203action; the other runs the first rule's action and the third rule's action.
5204In this example, the output of the program changes.
5205
5206Bison resolves a reduce/reduce conflict by choosing to use the rule that
5207appears first in the grammar, but it is very risky to rely on this. Every
5208reduce/reduce conflict must be studied and usually eliminated. Here is the
5209proper way to define @code{sequence}:
5210
5211@example
5212sequence: /* empty */
5213 @{ printf ("empty sequence\n"); @}
5214 | sequence word
5215 @{ printf ("added word %s\n", $2); @}
5216 ;
5217@end example
5218
5219Here is another common error that yields a reduce/reduce conflict:
5220
5221@example
5222sequence: /* empty */
5223 | sequence words
5224 | sequence redirects
5225 ;
5226
5227words: /* empty */
5228 | words word
5229 ;
5230
5231redirects:/* empty */
5232 | redirects redirect
5233 ;
5234@end example
5235
5236@noindent
5237The intention here is to define a sequence which can contain either
5238@code{word} or @code{redirect} groupings. The individual definitions of
5239@code{sequence}, @code{words} and @code{redirects} are error-free, but the
5240three together make a subtle ambiguity: even an empty input can be parsed
5241in infinitely many ways!
5242
5243Consider: nothing-at-all could be a @code{words}. Or it could be two
5244@code{words} in a row, or three, or any number. It could equally well be a
5245@code{redirects}, or two, or any number. Or it could be a @code{words}
5246followed by three @code{redirects} and another @code{words}. And so on.
5247
5248Here are two ways to correct these rules. First, to make it a single level
5249of sequence:
5250
5251@example
5252sequence: /* empty */
5253 | sequence word
5254 | sequence redirect
5255 ;
5256@end example
5257
5258Second, to prevent either a @code{words} or a @code{redirects}
5259from being empty:
5260
5261@example
5262sequence: /* empty */
5263 | sequence words
5264 | sequence redirects
5265 ;
5266
5267words: word
5268 | words word
5269 ;
5270
5271redirects:redirect
5272 | redirects redirect
5273 ;
5274@end example
5275
5276@node Mystery Conflicts
5277@section Mysterious Reduce/Reduce Conflicts
5278
5279Sometimes reduce/reduce conflicts can occur that don't look warranted.
5280Here is an example:
5281
5282@example
5283@group
5284%token ID
5285
5286%%
5287def: param_spec return_spec ','
5288 ;
5289param_spec:
5290 type
5291 | name_list ':' type
5292 ;
5293@end group
5294@group
5295return_spec:
5296 type
5297 | name ':' type
5298 ;
5299@end group
5300@group
5301type: ID
5302 ;
5303@end group
5304@group
5305name: ID
5306 ;
5307name_list:
5308 name
5309 | name ',' name_list
5310 ;
5311@end group
5312@end example
5313
5314It would seem that this grammar can be parsed with only a single token
5315of look-ahead: when a @code{param_spec} is being read, an @code{ID} is
5316a @code{name} if a comma or colon follows, or a @code{type} if another
5317@code{ID} follows. In other words, this grammar is @acronym{LR}(1).
5318
5319@cindex @acronym{LR}(1)
5320@cindex @acronym{LALR}(1)
5321However, Bison, like most parser generators, cannot actually handle all
5322@acronym{LR}(1) grammars. In this grammar, two contexts, that after
5323an @code{ID}
5324at the beginning of a @code{param_spec} and likewise at the beginning of
5325a @code{return_spec}, are similar enough that Bison assumes they are the
5326same. They appear similar because the same set of rules would be
5327active---the rule for reducing to a @code{name} and that for reducing to
5328a @code{type}. Bison is unable to determine at that stage of processing
5329that the rules would require different look-ahead tokens in the two
5330contexts, so it makes a single parser state for them both. Combining
5331the two contexts causes a conflict later. In parser terminology, this
5332occurrence means that the grammar is not @acronym{LALR}(1).
5333
5334In general, it is better to fix deficiencies than to document them. But
5335this particular deficiency is intrinsically hard to fix; parser
5336generators that can handle @acronym{LR}(1) grammars are hard to write
5337and tend to
5338produce parsers that are very large. In practice, Bison is more useful
5339as it is now.
5340
5341When the problem arises, you can often fix it by identifying the two
5342parser states that are being confused, and adding something to make them
5343look distinct. In the above example, adding one rule to
5344@code{return_spec} as follows makes the problem go away:
5345
5346@example
5347@group
5348%token BOGUS
5349@dots{}
5350%%
5351@dots{}
5352return_spec:
5353 type
5354 | name ':' type
5355 /* This rule is never used. */
5356 | ID BOGUS
5357 ;
5358@end group
5359@end example
5360
5361This corrects the problem because it introduces the possibility of an
5362additional active rule in the context after the @code{ID} at the beginning of
5363@code{return_spec}. This rule is not active in the corresponding context
5364in a @code{param_spec}, so the two contexts receive distinct parser states.
5365As long as the token @code{BOGUS} is never generated by @code{yylex},
5366the added rule cannot alter the way actual input is parsed.
5367
5368In this particular example, there is another way to solve the problem:
5369rewrite the rule for @code{return_spec} to use @code{ID} directly
5370instead of via @code{name}. This also causes the two confusing
5371contexts to have different sets of active rules, because the one for
5372@code{return_spec} activates the altered rule for @code{return_spec}
5373rather than the one for @code{name}.
5374
5375@example
5376param_spec:
5377 type
5378 | name_list ':' type
5379 ;
5380return_spec:
5381 type
5382 | ID ':' type
5383 ;
5384@end example
5385
5386@node Generalized LR Parsing
5387@section Generalized @acronym{LR} (@acronym{GLR}) Parsing
5388@cindex @acronym{GLR} parsing
5389@cindex generalized @acronym{LR} (@acronym{GLR}) parsing
5390@cindex ambiguous grammars
5391@cindex non-deterministic parsing
5392
5393Bison produces @emph{deterministic} parsers that choose uniquely
5394when to reduce and which reduction to apply
5395based on a summary of the preceding input and on one extra token of look-ahead.
5396As a result, normal Bison handles a proper subset of the family of
5397context-free languages.
5398Ambiguous grammars, since they have strings with more than one possible
5399sequence of reductions cannot have deterministic parsers in this sense.
5400The same is true of languages that require more than one symbol of
5401look-ahead, since the parser lacks the information necessary to make a
5402decision at the point it must be made in a shift-reduce parser.
5403Finally, as previously mentioned (@pxref{Mystery Conflicts}),
5404there are languages where Bison's particular choice of how to
5405summarize the input seen so far loses necessary information.
5406
5407When you use the @samp{%glr-parser} declaration in your grammar file,
5408Bison generates a parser that uses a different algorithm, called
5409Generalized @acronym{LR} (or @acronym{GLR}). A Bison @acronym{GLR}
5410parser uses the same basic
5411algorithm for parsing as an ordinary Bison parser, but behaves
5412differently in cases where there is a shift-reduce conflict that has not
5413been resolved by precedence rules (@pxref{Precedence}) or a
5414reduce-reduce conflict. When a @acronym{GLR} parser encounters such a
5415situation, it
5416effectively @emph{splits} into a several parsers, one for each possible
5417shift or reduction. These parsers then proceed as usual, consuming
5418tokens in lock-step. Some of the stacks may encounter other conflicts
5419and split further, with the result that instead of a sequence of states,
5420a Bison @acronym{GLR} parsing stack is what is in effect a tree of states.
5421
5422In effect, each stack represents a guess as to what the proper parse
5423is. Additional input may indicate that a guess was wrong, in which case
5424the appropriate stack silently disappears. Otherwise, the semantics
5425actions generated in each stack are saved, rather than being executed
5426immediately. When a stack disappears, its saved semantic actions never
5427get executed. When a reduction causes two stacks to become equivalent,
5428their sets of semantic actions are both saved with the state that
5429results from the reduction. We say that two stacks are equivalent
5430when they both represent the same sequence of states,
5431and each pair of corresponding states represents a
5432grammar symbol that produces the same segment of the input token
5433stream.
5434
5435Whenever the parser makes a transition from having multiple
5436states to having one, it reverts to the normal @acronym{LALR}(1) parsing
5437algorithm, after resolving and executing the saved-up actions.
5438At this transition, some of the states on the stack will have semantic
5439values that are sets (actually multisets) of possible actions. The
5440parser tries to pick one of the actions by first finding one whose rule
5441has the highest dynamic precedence, as set by the @samp{%dprec}
5442declaration. Otherwise, if the alternative actions are not ordered by
5443precedence, but there the same merging function is declared for both
5444rules by the @samp{%merge} declaration,
5445Bison resolves and evaluates both and then calls the merge function on
5446the result. Otherwise, it reports an ambiguity.
5447
5448It is possible to use a data structure for the @acronym{GLR} parsing tree that
5449permits the processing of any @acronym{LALR}(1) grammar in linear time (in the
5450size of the input), any unambiguous (not necessarily
5451@acronym{LALR}(1)) grammar in
5452quadratic worst-case time, and any general (possibly ambiguous)
5453context-free grammar in cubic worst-case time. However, Bison currently
5454uses a simpler data structure that requires time proportional to the
5455length of the input times the maximum number of stacks required for any
5456prefix of the input. Thus, really ambiguous or non-deterministic
5457grammars can require exponential time and space to process. Such badly
5458behaving examples, however, are not generally of practical interest.
5459Usually, non-determinism in a grammar is local---the parser is ``in
5460doubt'' only for a few tokens at a time. Therefore, the current data
5461structure should generally be adequate. On @acronym{LALR}(1) portions of a
5462grammar, in particular, it is only slightly slower than with the default
5463Bison parser.
5464
5465For a more detailed exposition of GLR parsers, please see: Elizabeth
5466Scott, Adrian Johnstone and Shamsa Sadaf Hussain, Tomita-Style
5467Generalised @acronym{LR} Parsers, Royal Holloway, University of
5468London, Department of Computer Science, TR-00-12,
5469@uref{http://www.cs.rhul.ac.uk/research/languages/publications/tomita_style_1.ps},
5470(2000-12-24).
5471
5472@node Stack Overflow
5473@section Stack Overflow, and How to Avoid It
5474@cindex stack overflow
5475@cindex parser stack overflow
5476@cindex overflow of parser stack
5477
5478The Bison parser stack can overflow if too many tokens are shifted and
5479not reduced. When this happens, the parser function @code{yyparse}
5480returns a nonzero value, pausing only to call @code{yyerror} to report
5481the overflow.
5482
5483Because Bison parsers have growing stacks, hitting the upper limit
5484usually results from using a right recursion instead of a left
5485recursion, @xref{Recursion, ,Recursive Rules}.
5486
5487@vindex YYMAXDEPTH
5488By defining the macro @code{YYMAXDEPTH}, you can control how deep the
5489parser stack can become before a stack overflow occurs. Define the
5490macro with a value that is an integer. This value is the maximum number
5491of tokens that can be shifted (and not reduced) before overflow.
5492It must be a constant expression whose value is known at compile time.
5493
5494The stack space allowed is not necessarily allocated. If you specify a
5495large value for @code{YYMAXDEPTH}, the parser actually allocates a small
5496stack at first, and then makes it bigger by stages as needed. This
5497increasing allocation happens automatically and silently. Therefore,
5498you do not need to make @code{YYMAXDEPTH} painfully small merely to save
5499space for ordinary inputs that do not need much stack.
5500
5501@cindex default stack limit
5502The default value of @code{YYMAXDEPTH}, if you do not define it, is
550310000.
5504
5505@vindex YYINITDEPTH
5506You can control how much stack is allocated initially by defining the
5507macro @code{YYINITDEPTH}. This value too must be a compile-time
5508constant integer. The default is 200.
5509
5510@c FIXME: C++ output.
5511Because of semantical differences between C and C++, the
5512@acronym{LALR}(1) parsers
5513in C produced by Bison by compiled as C++ cannot grow. In this precise
5514case (compiling a C parser as C++) you are suggested to grow
5515@code{YYINITDEPTH}. In the near future, a C++ output output will be
5516provided which addresses this issue.
5517
5518@node Error Recovery
5519@chapter Error Recovery
5520@cindex error recovery
5521@cindex recovery from errors
5522
5523It is not usually acceptable to have a program terminate on a syntax
5524error. For example, a compiler should recover sufficiently to parse the
5525rest of the input file and check it for errors; a calculator should accept
5526another expression.
5527
5528In a simple interactive command parser where each input is one line, it may
5529be sufficient to allow @code{yyparse} to return 1 on error and have the
5530caller ignore the rest of the input line when that happens (and then call
5531@code{yyparse} again). But this is inadequate for a compiler, because it
5532forgets all the syntactic context leading up to the error. A syntax error
5533deep within a function in the compiler input should not cause the compiler
5534to treat the following line like the beginning of a source file.
5535
5536@findex error
5537You can define how to recover from a syntax error by writing rules to
5538recognize the special token @code{error}. This is a terminal symbol that
5539is always defined (you need not declare it) and reserved for error
5540handling. The Bison parser generates an @code{error} token whenever a
5541syntax error happens; if you have provided a rule to recognize this token
5542in the current context, the parse can continue.
5543
5544For example:
5545
5546@example
5547stmnts: /* empty string */
5548 | stmnts '\n'
5549 | stmnts exp '\n'
5550 | stmnts error '\n'
5551@end example
5552
5553The fourth rule in this example says that an error followed by a newline
5554makes a valid addition to any @code{stmnts}.
5555
5556What happens if a syntax error occurs in the middle of an @code{exp}? The
5557error recovery rule, interpreted strictly, applies to the precise sequence
5558of a @code{stmnts}, an @code{error} and a newline. If an error occurs in
5559the middle of an @code{exp}, there will probably be some additional tokens
5560and subexpressions on the stack after the last @code{stmnts}, and there
5561will be tokens to read before the next newline. So the rule is not
5562applicable in the ordinary way.
5563
5564But Bison can force the situation to fit the rule, by discarding part of
5565the semantic context and part of the input. First it discards states
5566and objects from the stack until it gets back to a state in which the
5567@code{error} token is acceptable. (This means that the subexpressions
5568already parsed are discarded, back to the last complete @code{stmnts}.)
5569At this point the @code{error} token can be shifted. Then, if the old
5570look-ahead token is not acceptable to be shifted next, the parser reads
5571tokens and discards them until it finds a token which is acceptable. In
5572this example, Bison reads and discards input until the next newline so
5573that the fourth rule can apply. Note that discarded symbols are
5574possible sources of memory leaks, see @ref{Destructor Decl, , Freeing
5575Discarded Symbols}, for a means to reclaim this memory.
5576
5577The choice of error rules in the grammar is a choice of strategies for
5578error recovery. A simple and useful strategy is simply to skip the rest of
5579the current input line or current statement if an error is detected:
5580
5581@example
5582stmnt: error ';' /* On error, skip until ';' is read. */
5583@end example
5584
5585It is also useful to recover to the matching close-delimiter of an
5586opening-delimiter that has already been parsed. Otherwise the
5587close-delimiter will probably appear to be unmatched, and generate another,
5588spurious error message:
5589
5590@example
5591primary: '(' expr ')'
5592 | '(' error ')'
5593 @dots{}
5594 ;
5595@end example
5596
5597Error recovery strategies are necessarily guesses. When they guess wrong,
5598one syntax error often leads to another. In the above example, the error
5599recovery rule guesses that an error is due to bad input within one
5600@code{stmnt}. Suppose that instead a spurious semicolon is inserted in the
5601middle of a valid @code{stmnt}. After the error recovery rule recovers
5602from the first error, another syntax error will be found straightaway,
5603since the text following the spurious semicolon is also an invalid
5604@code{stmnt}.
5605
5606To prevent an outpouring of error messages, the parser will output no error
5607message for another syntax error that happens shortly after the first; only
5608after three consecutive input tokens have been successfully shifted will
5609error messages resume.
5610
5611Note that rules which accept the @code{error} token may have actions, just
5612as any other rules can.
5613
5614@findex yyerrok
5615You can make error messages resume immediately by using the macro
5616@code{yyerrok} in an action. If you do this in the error rule's action, no
5617error messages will be suppressed. This macro requires no arguments;
5618@samp{yyerrok;} is a valid C statement.
5619
5620@findex yyclearin
5621The previous look-ahead token is reanalyzed immediately after an error. If
5622this is unacceptable, then the macro @code{yyclearin} may be used to clear
5623this token. Write the statement @samp{yyclearin;} in the error rule's
5624action.
5625
5626For example, suppose that on a syntax error, an error handling routine is
5627called that advances the input stream to some point where parsing should
5628once again commence. The next symbol returned by the lexical scanner is
5629probably correct. The previous look-ahead token ought to be discarded
5630with @samp{yyclearin;}.
5631
5632@vindex YYRECOVERING
5633The macro @code{YYRECOVERING} stands for an expression that has the
5634value 1 when the parser is recovering from a syntax error, and 0 the
5635rest of the time. A value of 1 indicates that error messages are
5636currently suppressed for new syntax errors.
5637
5638@node Context Dependency
5639@chapter Handling Context Dependencies
5640
5641The Bison paradigm is to parse tokens first, then group them into larger
5642syntactic units. In many languages, the meaning of a token is affected by
5643its context. Although this violates the Bison paradigm, certain techniques
5644(known as @dfn{kludges}) may enable you to write Bison parsers for such
5645languages.
5646
5647@menu
5648* Semantic Tokens:: Token parsing can depend on the semantic context.
5649* Lexical Tie-ins:: Token parsing can depend on the syntactic context.
5650* Tie-in Recovery:: Lexical tie-ins have implications for how
5651 error recovery rules must be written.
5652@end menu
5653
5654(Actually, ``kludge'' means any technique that gets its job done but is
5655neither clean nor robust.)
5656
5657@node Semantic Tokens
5658@section Semantic Info in Token Types
5659
5660The C language has a context dependency: the way an identifier is used
5661depends on what its current meaning is. For example, consider this:
5662
5663@example
5664foo (x);
5665@end example
5666
5667This looks like a function call statement, but if @code{foo} is a typedef
5668name, then this is actually a declaration of @code{x}. How can a Bison
5669parser for C decide how to parse this input?
5670
5671The method used in @acronym{GNU} C is to have two different token types,
5672@code{IDENTIFIER} and @code{TYPENAME}. When @code{yylex} finds an
5673identifier, it looks up the current declaration of the identifier in order
5674to decide which token type to return: @code{TYPENAME} if the identifier is
5675declared as a typedef, @code{IDENTIFIER} otherwise.
5676
5677The grammar rules can then express the context dependency by the choice of
5678token type to recognize. @code{IDENTIFIER} is accepted as an expression,
5679but @code{TYPENAME} is not. @code{TYPENAME} can start a declaration, but
5680@code{IDENTIFIER} cannot. In contexts where the meaning of the identifier
5681is @emph{not} significant, such as in declarations that can shadow a
5682typedef name, either @code{TYPENAME} or @code{IDENTIFIER} is
5683accepted---there is one rule for each of the two token types.
5684
5685This technique is simple to use if the decision of which kinds of
5686identifiers to allow is made at a place close to where the identifier is
5687parsed. But in C this is not always so: C allows a declaration to
5688redeclare a typedef name provided an explicit type has been specified
5689earlier:
5690
5691@example
5692typedef int foo, bar, lose;
5693static foo (bar); /* @r{redeclare @code{bar} as static variable} */
5694static int foo (lose); /* @r{redeclare @code{foo} as function} */
5695@end example
5696
5697Unfortunately, the name being declared is separated from the declaration
5698construct itself by a complicated syntactic structure---the ``declarator''.
5699
5700As a result, part of the Bison parser for C needs to be duplicated, with
5701all the nonterminal names changed: once for parsing a declaration in
5702which a typedef name can be redefined, and once for parsing a
5703declaration in which that can't be done. Here is a part of the
5704duplication, with actions omitted for brevity:
5705
5706@example
5707initdcl:
5708 declarator maybeasm '='
5709 init
5710 | declarator maybeasm
5711 ;
5712
5713notype_initdcl:
5714 notype_declarator maybeasm '='
5715 init
5716 | notype_declarator maybeasm
5717 ;
5718@end example
5719
5720@noindent
5721Here @code{initdcl} can redeclare a typedef name, but @code{notype_initdcl}
5722cannot. The distinction between @code{declarator} and
5723@code{notype_declarator} is the same sort of thing.
5724
5725There is some similarity between this technique and a lexical tie-in
5726(described next), in that information which alters the lexical analysis is
5727changed during parsing by other parts of the program. The difference is
5728here the information is global, and is used for other purposes in the
5729program. A true lexical tie-in has a special-purpose flag controlled by
5730the syntactic context.
5731
5732@node Lexical Tie-ins
5733@section Lexical Tie-ins
5734@cindex lexical tie-in
5735
5736One way to handle context-dependency is the @dfn{lexical tie-in}: a flag
5737which is set by Bison actions, whose purpose is to alter the way tokens are
5738parsed.
5739
5740For example, suppose we have a language vaguely like C, but with a special
5741construct @samp{hex (@var{hex-expr})}. After the keyword @code{hex} comes
5742an expression in parentheses in which all integers are hexadecimal. In
5743particular, the token @samp{a1b} must be treated as an integer rather than
5744as an identifier if it appears in that context. Here is how you can do it:
5745
5746@example
5747@group
5748%@{
5749 int hexflag;
5750 int yylex (void);
5751 void yyerror (char const *);
5752%@}
5753%%
5754@dots{}
5755@end group
5756@group
5757expr: IDENTIFIER
5758 | constant
5759 | HEX '('
5760 @{ hexflag = 1; @}
5761 expr ')'
5762 @{ hexflag = 0;
5763 $$ = $4; @}
5764 | expr '+' expr
5765 @{ $$ = make_sum ($1, $3); @}
5766 @dots{}
5767 ;
5768@end group
5769
5770@group
5771constant:
5772 INTEGER
5773 | STRING
5774 ;
5775@end group
5776@end example
5777
5778@noindent
5779Here we assume that @code{yylex} looks at the value of @code{hexflag}; when
5780it is nonzero, all integers are parsed in hexadecimal, and tokens starting
5781with letters are parsed as integers if possible.
5782
5783The declaration of @code{hexflag} shown in the prologue of the parser file
5784is needed to make it accessible to the actions (@pxref{Prologue, ,The Prologue}).
5785You must also write the code in @code{yylex} to obey the flag.
5786
5787@node Tie-in Recovery
5788@section Lexical Tie-ins and Error Recovery
5789
5790Lexical tie-ins make strict demands on any error recovery rules you have.
5791@xref{Error Recovery}.
5792
5793The reason for this is that the purpose of an error recovery rule is to
5794abort the parsing of one construct and resume in some larger construct.
5795For example, in C-like languages, a typical error recovery rule is to skip
5796tokens until the next semicolon, and then start a new statement, like this:
5797
5798@example
5799stmt: expr ';'
5800 | IF '(' expr ')' stmt @{ @dots{} @}
5801 @dots{}
5802 error ';'
5803 @{ hexflag = 0; @}
5804 ;
5805@end example
5806
5807If there is a syntax error in the middle of a @samp{hex (@var{expr})}
5808construct, this error rule will apply, and then the action for the
5809completed @samp{hex (@var{expr})} will never run. So @code{hexflag} would
5810remain set for the entire rest of the input, or until the next @code{hex}
5811keyword, causing identifiers to be misinterpreted as integers.
5812
5813To avoid this problem the error recovery rule itself clears @code{hexflag}.
5814
5815There may also be an error recovery rule that works within expressions.
5816For example, there could be a rule which applies within parentheses
5817and skips to the close-parenthesis:
5818
5819@example
5820@group
5821expr: @dots{}
5822 | '(' expr ')'
5823 @{ $$ = $2; @}
5824 | '(' error ')'
5825 @dots{}
5826@end group
5827@end example
5828
5829If this rule acts within the @code{hex} construct, it is not going to abort
5830that construct (since it applies to an inner level of parentheses within
5831the construct). Therefore, it should not clear the flag: the rest of
5832the @code{hex} construct should be parsed with the flag still in effect.
5833
5834What if there is an error recovery rule which might abort out of the
5835@code{hex} construct or might not, depending on circumstances? There is no
5836way you can write the action to determine whether a @code{hex} construct is
5837being aborted or not. So if you are using a lexical tie-in, you had better
5838make sure your error recovery rules are not of this kind. Each rule must
5839be such that you can be sure that it always will, or always won't, have to
5840clear the flag.
5841
5842@c ================================================== Debugging Your Parser
5843
5844@node Debugging
5845@chapter Debugging Your Parser
5846
5847Developing a parser can be a challenge, especially if you don't
5848understand the algorithm (@pxref{Algorithm, ,The Bison Parser
5849Algorithm}). Even so, sometimes a detailed description of the automaton
5850can help (@pxref{Understanding, , Understanding Your Parser}), or
5851tracing the execution of the parser can give some insight on why it
5852behaves improperly (@pxref{Tracing, , Tracing Your Parser}).
5853
5854@menu
5855* Understanding:: Understanding the structure of your parser.
5856* Tracing:: Tracing the execution of your parser.
5857@end menu
5858
5859@node Understanding
5860@section Understanding Your Parser
5861
5862As documented elsewhere (@pxref{Algorithm, ,The Bison Parser Algorithm})
5863Bison parsers are @dfn{shift/reduce automata}. In some cases (much more
5864frequent than one would hope), looking at this automaton is required to
5865tune or simply fix a parser. Bison provides two different
5866representation of it, either textually or graphically (as a @acronym{VCG}
5867file).
5868
5869The textual file is generated when the options @option{--report} or
5870@option{--verbose} are specified, see @xref{Invocation, , Invoking
5871Bison}. Its name is made by removing @samp{.tab.c} or @samp{.c} from
5872the parser output file name, and adding @samp{.output} instead.
5873Therefore, if the input file is @file{foo.y}, then the parser file is
5874called @file{foo.tab.c} by default. As a consequence, the verbose
5875output file is called @file{foo.output}.
5876
5877The following grammar file, @file{calc.y}, will be used in the sequel:
5878
5879@example
5880%token NUM STR
5881%left '+' '-'
5882%left '*'
5883%%
5884exp: exp '+' exp
5885 | exp '-' exp
5886 | exp '*' exp
5887 | exp '/' exp
5888 | NUM
5889 ;
5890useless: STR;
5891%%
5892@end example
5893
5894@command{bison} reports:
5895
5896@example
5897calc.y: warning: 1 useless nonterminal and 1 useless rule
5898calc.y:11.1-7: warning: useless nonterminal: useless
5899calc.y:11.10-12: warning: useless rule: useless: STR
5900calc.y: conflicts: 7 shift/reduce
5901@end example
5902
5903When given @option{--report=state}, in addition to @file{calc.tab.c}, it
5904creates a file @file{calc.output} with contents detailed below. The
5905order of the output and the exact presentation might vary, but the
5906interpretation is the same.
5907
5908The first section includes details on conflicts that were solved thanks
5909to precedence and/or associativity:
5910
5911@example
5912Conflict in state 8 between rule 2 and token '+' resolved as reduce.
5913Conflict in state 8 between rule 2 and token '-' resolved as reduce.
5914Conflict in state 8 between rule 2 and token '*' resolved as shift.
5915@exdent @dots{}
5916@end example
5917
5918@noindent
5919The next section lists states that still have conflicts.
5920
5921@example
5922State 8 conflicts: 1 shift/reduce
5923State 9 conflicts: 1 shift/reduce
5924State 10 conflicts: 1 shift/reduce
5925State 11 conflicts: 4 shift/reduce
5926@end example
5927
5928@noindent
5929@cindex token, useless
5930@cindex useless token
5931@cindex nonterminal, useless
5932@cindex useless nonterminal
5933@cindex rule, useless
5934@cindex useless rule
5935The next section reports useless tokens, nonterminal and rules. Useless
5936nonterminals and rules are removed in order to produce a smaller parser,
5937but useless tokens are preserved, since they might be used by the
5938scanner (note the difference between ``useless'' and ``not used''
5939below):
5940
5941@example
5942Useless nonterminals:
5943 useless
5944
5945Terminals which are not used:
5946 STR
5947
5948Useless rules:
5949#6 useless: STR;
5950@end example
5951
5952@noindent
5953The next section reproduces the exact grammar that Bison used:
5954
5955@example
5956Grammar
5957
5958 Number, Line, Rule
5959 0 5 $accept -> exp $end
5960 1 5 exp -> exp '+' exp
5961 2 6 exp -> exp '-' exp
5962 3 7 exp -> exp '*' exp
5963 4 8 exp -> exp '/' exp
5964 5 9 exp -> NUM
5965@end example
5966
5967@noindent
5968and reports the uses of the symbols:
5969
5970@example
5971Terminals, with rules where they appear
5972
5973$end (0) 0
5974'*' (42) 3
5975'+' (43) 1
5976'-' (45) 2
5977'/' (47) 4
5978error (256)
5979NUM (258) 5
5980
5981Nonterminals, with rules where they appear
5982
5983$accept (8)
5984 on left: 0
5985exp (9)
5986 on left: 1 2 3 4 5, on right: 0 1 2 3 4
5987@end example
5988
5989@noindent
5990@cindex item
5991@cindex pointed rule
5992@cindex rule, pointed
5993Bison then proceeds onto the automaton itself, describing each state
5994with it set of @dfn{items}, also known as @dfn{pointed rules}. Each
5995item is a production rule together with a point (marked by @samp{.})
5996that the input cursor.
5997
5998@example
5999state 0
6000
6001 $accept -> . exp $ (rule 0)
6002
6003 NUM shift, and go to state 1
6004
6005 exp go to state 2
6006@end example
6007
6008This reads as follows: ``state 0 corresponds to being at the very
6009beginning of the parsing, in the initial rule, right before the start
6010symbol (here, @code{exp}). When the parser returns to this state right
6011after having reduced a rule that produced an @code{exp}, the control
6012flow jumps to state 2. If there is no such transition on a nonterminal
6013symbol, and the look-ahead is a @code{NUM}, then this token is shifted on
6014the parse stack, and the control flow jumps to state 1. Any other
6015look-ahead triggers a syntax error.''
6016
6017@cindex core, item set
6018@cindex item set core
6019@cindex kernel, item set
6020@cindex item set core
6021Even though the only active rule in state 0 seems to be rule 0, the
6022report lists @code{NUM} as a look-ahead token because @code{NUM} can be
6023at the beginning of any rule deriving an @code{exp}. By default Bison
6024reports the so-called @dfn{core} or @dfn{kernel} of the item set, but if
6025you want to see more detail you can invoke @command{bison} with
6026@option{--report=itemset} to list all the items, include those that can
6027be derived:
6028
6029@example
6030state 0
6031
6032 $accept -> . exp $ (rule 0)
6033 exp -> . exp '+' exp (rule 1)
6034 exp -> . exp '-' exp (rule 2)
6035 exp -> . exp '*' exp (rule 3)
6036 exp -> . exp '/' exp (rule 4)
6037 exp -> . NUM (rule 5)
6038
6039 NUM shift, and go to state 1
6040
6041 exp go to state 2
6042@end example
6043
6044@noindent
6045In the state 1...
6046
6047@example
6048state 1
6049
6050 exp -> NUM . (rule 5)
6051
6052 $default reduce using rule 5 (exp)
6053@end example
6054
6055@noindent
6056the rule 5, @samp{exp: NUM;}, is completed. Whatever the look-ahead token
6057(@samp{$default}), the parser will reduce it. If it was coming from
6058state 0, then, after this reduction it will return to state 0, and will
6059jump to state 2 (@samp{exp: go to state 2}).
6060
6061@example
6062state 2
6063
6064 $accept -> exp . $ (rule 0)
6065 exp -> exp . '+' exp (rule 1)
6066 exp -> exp . '-' exp (rule 2)
6067 exp -> exp . '*' exp (rule 3)
6068 exp -> exp . '/' exp (rule 4)
6069
6070 $ shift, and go to state 3
6071 '+' shift, and go to state 4
6072 '-' shift, and go to state 5
6073 '*' shift, and go to state 6
6074 '/' shift, and go to state 7
6075@end example
6076
6077@noindent
6078In state 2, the automaton can only shift a symbol. For instance,
6079because of the item @samp{exp -> exp . '+' exp}, if the look-ahead if
6080@samp{+}, it will be shifted on the parse stack, and the automaton
6081control will jump to state 4, corresponding to the item @samp{exp -> exp
6082'+' . exp}. Since there is no default action, any other token than
6083those listed above will trigger a syntax error.
6084
6085The state 3 is named the @dfn{final state}, or the @dfn{accepting
6086state}:
6087
6088@example
6089state 3
6090
6091 $accept -> exp $ . (rule 0)
6092
6093 $default accept
6094@end example
6095
6096@noindent
6097the initial rule is completed (the start symbol and the end
6098of input were read), the parsing exits successfully.
6099
6100The interpretation of states 4 to 7 is straightforward, and is left to
6101the reader.
6102
6103@example
6104state 4
6105
6106 exp -> exp '+' . exp (rule 1)
6107
6108 NUM shift, and go to state 1
6109
6110 exp go to state 8
6111
6112state 5
6113
6114 exp -> exp '-' . exp (rule 2)
6115
6116 NUM shift, and go to state 1
6117
6118 exp go to state 9
6119
6120state 6
6121
6122 exp -> exp '*' . exp (rule 3)
6123
6124 NUM shift, and go to state 1
6125
6126 exp go to state 10
6127
6128state 7
6129
6130 exp -> exp '/' . exp (rule 4)
6131
6132 NUM shift, and go to state 1
6133
6134 exp go to state 11
6135@end example
6136
6137As was announced in beginning of the report, @samp{State 8 conflicts:
61381 shift/reduce}:
6139
6140@example
6141state 8
6142
6143 exp -> exp . '+' exp (rule 1)
6144 exp -> exp '+' exp . (rule 1)
6145 exp -> exp . '-' exp (rule 2)
6146 exp -> exp . '*' exp (rule 3)
6147 exp -> exp . '/' exp (rule 4)
6148
6149 '*' shift, and go to state 6
6150 '/' shift, and go to state 7
6151
6152 '/' [reduce using rule 1 (exp)]
6153 $default reduce using rule 1 (exp)
6154@end example
6155
6156Indeed, there are two actions associated to the look-ahead @samp{/}:
6157either shifting (and going to state 7), or reducing rule 1. The
6158conflict means that either the grammar is ambiguous, or the parser lacks
6159information to make the right decision. Indeed the grammar is
6160ambiguous, as, since we did not specify the precedence of @samp{/}, the
6161sentence @samp{NUM + NUM / NUM} can be parsed as @samp{NUM + (NUM /
6162NUM)}, which corresponds to shifting @samp{/}, or as @samp{(NUM + NUM) /
6163NUM}, which corresponds to reducing rule 1.
6164
6165Because in @acronym{LALR}(1) parsing a single decision can be made, Bison
6166arbitrarily chose to disable the reduction, see @ref{Shift/Reduce, ,
6167Shift/Reduce Conflicts}. Discarded actions are reported in between
6168square brackets.
6169
6170Note that all the previous states had a single possible action: either
6171shifting the next token and going to the corresponding state, or
6172reducing a single rule. In the other cases, i.e., when shifting
6173@emph{and} reducing is possible or when @emph{several} reductions are
6174possible, the look-ahead is required to select the action. State 8 is
6175one such state: if the look-ahead is @samp{*} or @samp{/} then the action
6176is shifting, otherwise the action is reducing rule 1. In other words,
6177the first two items, corresponding to rule 1, are not eligible when the
6178look-ahead token is @samp{*}, since we specified that @samp{*} has higher
6179precedence than @samp{+}. More generally, some items are eligible only
6180with some set of possible look-ahead tokens. When run with
6181@option{--report=look-ahead}, Bison specifies these look-ahead tokens:
6182
6183@example
6184state 8
6185
6186 exp -> exp . '+' exp [$, '+', '-', '/'] (rule 1)
6187 exp -> exp '+' exp . [$, '+', '-', '/'] (rule 1)
6188 exp -> exp . '-' exp (rule 2)
6189 exp -> exp . '*' exp (rule 3)
6190 exp -> exp . '/' exp (rule 4)
6191
6192 '*' shift, and go to state 6
6193 '/' shift, and go to state 7
6194
6195 '/' [reduce using rule 1 (exp)]
6196 $default reduce using rule 1 (exp)
6197@end example
6198
6199The remaining states are similar:
6200
6201@example
6202state 9
6203
6204 exp -> exp . '+' exp (rule 1)
6205 exp -> exp . '-' exp (rule 2)
6206 exp -> exp '-' exp . (rule 2)
6207 exp -> exp . '*' exp (rule 3)
6208 exp -> exp . '/' exp (rule 4)
6209
6210 '*' shift, and go to state 6
6211 '/' shift, and go to state 7
6212
6213 '/' [reduce using rule 2 (exp)]
6214 $default reduce using rule 2 (exp)
6215
6216state 10
6217
6218 exp -> exp . '+' exp (rule 1)
6219 exp -> exp . '-' exp (rule 2)
6220 exp -> exp . '*' exp (rule 3)
6221 exp -> exp '*' exp . (rule 3)
6222 exp -> exp . '/' exp (rule 4)
6223
6224 '/' shift, and go to state 7
6225
6226 '/' [reduce using rule 3 (exp)]
6227 $default reduce using rule 3 (exp)
6228
6229state 11
6230
6231 exp -> exp . '+' exp (rule 1)
6232 exp -> exp . '-' exp (rule 2)
6233 exp -> exp . '*' exp (rule 3)
6234 exp -> exp . '/' exp (rule 4)
6235 exp -> exp '/' exp . (rule 4)
6236
6237 '+' shift, and go to state 4
6238 '-' shift, and go to state 5
6239 '*' shift, and go to state 6
6240 '/' shift, and go to state 7
6241
6242 '+' [reduce using rule 4 (exp)]
6243 '-' [reduce using rule 4 (exp)]
6244 '*' [reduce using rule 4 (exp)]
6245 '/' [reduce using rule 4 (exp)]
6246 $default reduce using rule 4 (exp)
6247@end example
6248
6249@noindent
6250Observe that state 11 contains conflicts due to the lack of precedence
6251of @samp{/} wrt @samp{+}, @samp{-}, and @samp{*}, but also because the
6252associativity of @samp{/} is not specified.
6253
6254
6255@node Tracing
6256@section Tracing Your Parser
6257@findex yydebug
6258@cindex debugging
6259@cindex tracing the parser
6260
6261If a Bison grammar compiles properly but doesn't do what you want when it
6262runs, the @code{yydebug} parser-trace feature can help you figure out why.
6263
6264There are several means to enable compilation of trace facilities:
6265
6266@table @asis
6267@item the macro @code{YYDEBUG}
6268@findex YYDEBUG
6269Define the macro @code{YYDEBUG} to a nonzero value when you compile the
6270parser. This is compliant with @acronym{POSIX} Yacc. You could use
6271@samp{-DYYDEBUG=1} as a compiler option or you could put @samp{#define
6272YYDEBUG 1} in the prologue of the grammar file (@pxref{Prologue, , The
6273Prologue}).
6274
6275@item the option @option{-t}, @option{--debug}
6276Use the @samp{-t} option when you run Bison (@pxref{Invocation,
6277,Invoking Bison}). This is @acronym{POSIX} compliant too.
6278
6279@item the directive @samp{%debug}
6280@findex %debug
6281Add the @code{%debug} directive (@pxref{Decl Summary, ,Bison
6282Declaration Summary}). This is a Bison extension, which will prove
6283useful when Bison will output parsers for languages that don't use a
6284preprocessor. Unless @acronym{POSIX} and Yacc portability matter to
6285you, this is
6286the preferred solution.
6287@end table
6288
6289We suggest that you always enable the debug option so that debugging is
6290always possible.
6291
6292The trace facility outputs messages with macro calls of the form
6293@code{YYFPRINTF (stderr, @var{format}, @var{args})} where
6294@var{format} and @var{args} are the usual @code{printf} format and
6295arguments. If you define @code{YYDEBUG} to a nonzero value but do not
6296define @code{YYFPRINTF}, @code{<stdio.h>} is automatically included
6297and @code{YYPRINTF} is defined to @code{fprintf}.
6298
6299Once you have compiled the program with trace facilities, the way to
6300request a trace is to store a nonzero value in the variable @code{yydebug}.
6301You can do this by making the C code do it (in @code{main}, perhaps), or
6302you can alter the value with a C debugger.
6303
6304Each step taken by the parser when @code{yydebug} is nonzero produces a
6305line or two of trace information, written on @code{stderr}. The trace
6306messages tell you these things:
6307
6308@itemize @bullet
6309@item
6310Each time the parser calls @code{yylex}, what kind of token was read.
6311
6312@item
6313Each time a token is shifted, the depth and complete contents of the
6314state stack (@pxref{Parser States}).
6315
6316@item
6317Each time a rule is reduced, which rule it is, and the complete contents
6318of the state stack afterward.
6319@end itemize
6320
6321To make sense of this information, it helps to refer to the listing file
6322produced by the Bison @samp{-v} option (@pxref{Invocation, ,Invoking
6323Bison}). This file shows the meaning of each state in terms of
6324positions in various rules, and also what each state will do with each
6325possible input token. As you read the successive trace messages, you
6326can see that the parser is functioning according to its specification in
6327the listing file. Eventually you will arrive at the place where
6328something undesirable happens, and you will see which parts of the
6329grammar are to blame.
6330
6331The parser file is a C program and you can use C debuggers on it, but it's
6332not easy to interpret what it is doing. The parser function is a
6333finite-state machine interpreter, and aside from the actions it executes
6334the same code over and over. Only the values of variables show where in
6335the grammar it is working.
6336
6337@findex YYPRINT
6338The debugging information normally gives the token type of each token
6339read, but not its semantic value. You can optionally define a macro
6340named @code{YYPRINT} to provide a way to print the value. If you define
6341@code{YYPRINT}, it should take three arguments. The parser will pass a
6342standard I/O stream, the numeric code for the token type, and the token
6343value (from @code{yylval}).
6344
6345Here is an example of @code{YYPRINT} suitable for the multi-function
6346calculator (@pxref{Mfcalc Decl, ,Declarations for @code{mfcalc}}):
6347
6348@smallexample
6349%@{
6350 static void print_token_value (FILE *, int, YYSTYPE);
6351 #define YYPRINT(file, type, value) print_token_value (file, type, value)
6352%@}
6353
6354@dots{} %% @dots{} %% @dots{}
6355
6356static void
6357print_token_value (FILE *file, int type, YYSTYPE value)
6358@{
6359 if (type == VAR)
6360 fprintf (file, "%s", value.tptr->name);
6361 else if (type == NUM)
6362 fprintf (file, "%d", value.val);
6363@}
6364@end smallexample
6365
6366@c ================================================= Invoking Bison
6367
6368@node Invocation
6369@chapter Invoking Bison
6370@cindex invoking Bison
6371@cindex Bison invocation
6372@cindex options for invoking Bison
6373
6374The usual way to invoke Bison is as follows:
6375
6376@example
6377bison @var{infile}
6378@end example
6379
6380Here @var{infile} is the grammar file name, which usually ends in
6381@samp{.y}. The parser file's name is made by replacing the @samp{.y}
6382with @samp{.tab.c}. Thus, the @samp{bison foo.y} filename yields
6383@file{foo.tab.c}, and the @samp{bison hack/foo.y} filename yields
6384@file{hack/foo.tab.c}. It's also possible, in case you are writing
6385C++ code instead of C in your grammar file, to name it @file{foo.ypp}
6386or @file{foo.y++}. Then, the output files will take an extension like
6387the given one as input (respectively @file{foo.tab.cpp} and
6388@file{foo.tab.c++}).
6389This feature takes effect with all options that manipulate filenames like
6390@samp{-o} or @samp{-d}.
6391
6392For example :
6393
6394@example
6395bison -d @var{infile.yxx}
6396@end example
6397@noindent
6398will produce @file{infile.tab.cxx} and @file{infile.tab.hxx}, and
6399
6400@example
6401bison -d -o @var{output.c++} @var{infile.y}
6402@end example
6403@noindent
6404will produce @file{output.c++} and @file{outfile.h++}.
6405
6406For compatibility with @acronym{POSIX}, the standard Bison
6407distribution also contains a shell script called @command{yacc} that
6408invokes Bison with the @option{-y} option.
6409
6410@menu
6411* Bison Options:: All the options described in detail,
6412 in alphabetical order by short options.
6413* Option Cross Key:: Alphabetical list of long options.
6414* Yacc Library:: Yacc-compatible @code{yylex} and @code{main}.
6415@end menu
6416
6417@node Bison Options
6418@section Bison Options
6419
6420Bison supports both traditional single-letter options and mnemonic long
6421option names. Long option names are indicated with @samp{--} instead of
6422@samp{-}. Abbreviations for option names are allowed as long as they
6423are unique. When a long option takes an argument, like
6424@samp{--file-prefix}, connect the option name and the argument with
6425@samp{=}.
6426
6427Here is a list of options that can be used with Bison, alphabetized by
6428short option. It is followed by a cross key alphabetized by long
6429option.
6430
6431@c Please, keep this ordered as in `bison --help'.
6432@noindent
6433Operations modes:
6434@table @option
6435@item -h
6436@itemx --help
6437Print a summary of the command-line options to Bison and exit.
6438
6439@item -V
6440@itemx --version
6441Print the version number of Bison and exit.
6442
6443@need 1750
6444@item -y
6445@itemx --yacc
6446Equivalent to @samp{-o y.tab.c}; the parser output file is called
6447@file{y.tab.c}, and the other outputs are called @file{y.output} and
6448@file{y.tab.h}. The purpose of this option is to imitate Yacc's output
6449file name conventions. Thus, the following shell script can substitute
6450for Yacc, and the Bison distribution contains such a script for
6451compatibility with @acronym{POSIX}:
6452
6453@example
6454#! /bin/sh
6455bison -y "$@@"
6456@end example
6457@end table
6458
6459@noindent
6460Tuning the parser:
6461
6462@table @option
6463@item -S @var{file}
6464@itemx --skeleton=@var{file}
6465Specify the skeleton to use. You probably don't need this option unless
6466you are developing Bison.
6467
6468@item -t
6469@itemx --debug
6470In the parser file, define the macro @code{YYDEBUG} to 1 if it is not
6471already defined, so that the debugging facilities are compiled.
6472@xref{Tracing, ,Tracing Your Parser}.
6473
6474@item --locations
6475Pretend that @code{%locations} was specified. @xref{Decl Summary}.
6476
6477@item -p @var{prefix}
6478@itemx --name-prefix=@var{prefix}
6479Pretend that @code{%name-prefix="@var{prefix}"} was specified.
6480@xref{Decl Summary}.
6481
6482@item -l
6483@itemx --no-lines
6484Don't put any @code{#line} preprocessor commands in the parser file.
6485Ordinarily Bison puts them in the parser file so that the C compiler
6486and debuggers will associate errors with your source file, the
6487grammar file. This option causes them to associate errors with the
6488parser file, treating it as an independent source file in its own right.
6489
6490@item -n
6491@itemx --no-parser
6492Pretend that @code{%no-parser} was specified. @xref{Decl Summary}.
6493
6494@item -k
6495@itemx --token-table
6496Pretend that @code{%token-table} was specified. @xref{Decl Summary}.
6497@end table
6498
6499@noindent
6500Adjust the output:
6501
6502@table @option
6503@item -d
6504@itemx --defines
6505Pretend that @code{%defines} was specified, i.e., write an extra output
6506file containing macro definitions for the token type names defined in
6507the grammar, as well as a few other declarations. @xref{Decl Summary}.
6508
6509@item --defines=@var{defines-file}
6510Same as above, but save in the file @var{defines-file}.
6511
6512@item -b @var{file-prefix}
6513@itemx --file-prefix=@var{prefix}
6514Pretend that @code{%verbose} was specified, i.e, specify prefix to use
6515for all Bison output file names. @xref{Decl Summary}.
6516
6517@item -r @var{things}
6518@itemx --report=@var{things}
6519Write an extra output file containing verbose description of the comma
6520separated list of @var{things} among:
6521
6522@table @code
6523@item state
6524Description of the grammar, conflicts (resolved and unresolved), and
6525@acronym{LALR} automaton.
6526
6527@item look-ahead
6528Implies @code{state} and augments the description of the automaton with
6529each rule's look-ahead set.
6530
6531@item itemset
6532Implies @code{state} and augments the description of the automaton with
6533the full set of items for each state, instead of its core only.
6534@end table
6535
6536For instance, on the following grammar
6537
6538@item -v
6539@itemx --verbose
6540Pretend that @code{%verbose} was specified, i.e, write an extra output
6541file containing verbose descriptions of the grammar and
6542parser. @xref{Decl Summary}.
6543
6544@item -o @var{filename}
6545@itemx --output=@var{filename}
6546Specify the @var{filename} for the parser file.
6547
6548The other output files' names are constructed from @var{filename} as
6549described under the @samp{-v} and @samp{-d} options.
6550
6551@item -g
6552Output a @acronym{VCG} definition of the @acronym{LALR}(1) grammar
6553automaton computed by Bison. If the grammar file is @file{foo.y}, the
6554@acronym{VCG} output file will
6555be @file{foo.vcg}.
6556
6557@item --graph=@var{graph-file}
6558The behavior of @var{--graph} is the same than @samp{-g}. The only
6559difference is that it has an optional argument which is the name of
6560the output graph filename.
6561@end table
6562
6563@node Option Cross Key
6564@section Option Cross Key
6565
6566Here is a list of options, alphabetized by long option, to help you find
6567the corresponding short option.
6568
6569@tex
6570\def\leaderfill{\leaders\hbox to 1em{\hss.\hss}\hfill}
6571
6572{\tt
6573\line{ --debug \leaderfill -t}
6574\line{ --defines \leaderfill -d}
6575\line{ --file-prefix \leaderfill -b}
6576\line{ --graph \leaderfill -g}
6577\line{ --help \leaderfill -h}
6578\line{ --name-prefix \leaderfill -p}
6579\line{ --no-lines \leaderfill -l}
6580\line{ --no-parser \leaderfill -n}
6581\line{ --output \leaderfill -o}
6582\line{ --token-table \leaderfill -k}
6583\line{ --verbose \leaderfill -v}
6584\line{ --version \leaderfill -V}
6585\line{ --yacc \leaderfill -y}
6586}
6587@end tex
6588
6589@ifinfo
6590@example
6591--debug -t
6592--defines=@var{defines-file} -d
6593--file-prefix=@var{prefix} -b @var{file-prefix}
6594--graph=@var{graph-file} -d
6595--help -h
6596--name-prefix=@var{prefix} -p @var{name-prefix}
6597--no-lines -l
6598--no-parser -n
6599--output=@var{outfile} -o @var{outfile}
6600--token-table -k
6601--verbose -v
6602--version -V
6603--yacc -y
6604@end example
6605@end ifinfo
6606
6607@node Yacc Library
6608@section Yacc Library
6609
6610The Yacc library contains default implementations of the
6611@code{yyerror} and @code{main} functions. These default
6612implementations are normally not useful, but @acronym{POSIX} requires
6613them. To use the Yacc library, link your program with the
6614@option{-ly} option. Note that Bison's implementation of the Yacc
6615library is distributed under the terms of the @acronym{GNU} General
6616Public License (@pxref{Copying}).
6617
6618If you use the Yacc library's @code{yyerror} function, you should
6619declare @code{yyerror} as follows:
6620
6621@example
6622int yyerror (char const *);
6623@end example
6624
6625Bison ignores the @code{int} value returned by this @code{yyerror}.
6626If you use the Yacc library's @code{main} function, your
6627@code{yyparse} function should have the following type signature:
6628
6629@example
6630int yyparse (void);
6631@end example
6632
6633@c ================================================= Invoking Bison
6634
6635@node FAQ
6636@chapter Frequently Asked Questions
6637@cindex frequently asked questions
6638@cindex questions
6639
6640Several questions about Bison come up occasionally. Here some of them
6641are addressed.
6642
6643@menu
6644* Parser Stack Overflow:: Breaking the Stack Limits
6645* How Can I Reset the Parser:: @code{yyparse} Keeps some State
6646* Strings are Destroyed:: @code{yylval} Loses Track of Strings
6647* C++ Parsers:: Compiling Parsers with C++ Compilers
6648* Implementing Loops:: Control Flow in the Calculator
6649@end menu
6650
6651@node Parser Stack Overflow
6652@section Parser Stack Overflow
6653
6654@display
6655My parser returns with error with a @samp{parser stack overflow}
6656message. What can I do?
6657@end display
6658
6659This question is already addressed elsewhere, @xref{Recursion,
6660,Recursive Rules}.
6661
6662@node How Can I Reset the Parser
6663@section How Can I Reset the Parser
6664
6665The following phenomenon has several symptoms, resulting in the
6666following typical questions:
6667
6668@display
6669I invoke @code{yyparse} several times, and on correct input it works
6670properly; but when a parse error is found, all the other calls fail
6671too. How can I reset the error flag of @code{yyparse}?
6672@end display
6673
6674@noindent
6675or
6676
6677@display
6678My parser includes support for an @samp{#include}-like feature, in
6679which case I run @code{yyparse} from @code{yyparse}. This fails
6680although I did specify I needed a @code{%pure-parser}.
6681@end display
6682
6683These problems typically come not from Bison itself, but from
6684Lex-generated scanners. Because these scanners use large buffers for
6685speed, they might not notice a change of input file. As a
6686demonstration, consider the following source file,
6687@file{first-line.l}:
6688
6689@verbatim
6690%{
6691#include <stdio.h>
6692#include <stdlib.h>
6693%}
6694%%
6695.*\n ECHO; return 1;
6696%%
6697int
6698yyparse (char const *file)
6699{
6700 yyin = fopen (file, "r");
6701 if (!yyin)
6702 exit (2);
6703 /* One token only. */
6704 yylex ();
6705 if (fclose (yyin) != 0)
6706 exit (3);
6707 return 0;
6708}
6709
6710int
6711main (void)
6712{
6713 yyparse ("input");
6714 yyparse ("input");
6715 return 0;
6716}
6717@end verbatim
6718
6719@noindent
6720If the file @file{input} contains
6721
6722@verbatim
6723input:1: Hello,
6724input:2: World!
6725@end verbatim
6726
6727@noindent
6728then instead of getting the first line twice, you get:
6729
6730@example
6731$ @kbd{flex -ofirst-line.c first-line.l}
6732$ @kbd{gcc -ofirst-line first-line.c -ll}
6733$ @kbd{./first-line}
6734input:1: Hello,
6735input:2: World!
6736@end example
6737
6738Therefore, whenever you change @code{yyin}, you must tell the
6739Lex-generated scanner to discard its current buffer and switch to the
6740new one. This depends upon your implementation of Lex; see its
6741documentation for more. For Flex, it suffices to call
6742@samp{YY_FLUSH_BUFFER} after each change to @code{yyin}. If your
6743Flex-generated scanner needs to read from several input streams to
6744handle features like include files, you might consider using Flex
6745functions like @samp{yy_switch_to_buffer} that manipulate multiple
6746input buffers.
6747
6748If your Flex-generated scanner uses start conditions (@pxref{Start
6749conditions, , Start conditions, flex, The Flex Manual}), you might
6750also want to reset the scanner's state, i.e., go back to the initial
6751start condition, through a call to @samp{BEGIN (0)}.
6752
6753@node Strings are Destroyed
6754@section Strings are Destroyed
6755
6756@display
6757My parser seems to destroy old strings, or maybe it loses track of
6758them. Instead of reporting @samp{"foo", "bar"}, it reports
6759@samp{"bar", "bar"}, or even @samp{"foo\nbar", "bar"}.
6760@end display
6761
6762This error is probably the single most frequent ``bug report'' sent to
6763Bison lists, but is only concerned with a misunderstanding of the role
6764of scanner. Consider the following Lex code:
6765
6766@verbatim
6767%{
6768#include <stdio.h>
6769char *yylval = NULL;
6770%}
6771%%
6772.* yylval = yytext; return 1;
6773\n /* IGNORE */
6774%%
6775int
6776main ()
6777{
6778 /* Similar to using $1, $2 in a Bison action. */
6779 char *fst = (yylex (), yylval);
6780 char *snd = (yylex (), yylval);
6781 printf ("\"%s\", \"%s\"\n", fst, snd);
6782 return 0;
6783}
6784@end verbatim
6785
6786If you compile and run this code, you get:
6787
6788@example
6789$ @kbd{flex -osplit-lines.c split-lines.l}
6790$ @kbd{gcc -osplit-lines split-lines.c -ll}
6791$ @kbd{printf 'one\ntwo\n' | ./split-lines}
6792"one
6793two", "two"
6794@end example
6795
6796@noindent
6797this is because @code{yytext} is a buffer provided for @emph{reading}
6798in the action, but if you want to keep it, you have to duplicate it
6799(e.g., using @code{strdup}). Note that the output may depend on how
6800your implementation of Lex handles @code{yytext}. For instance, when
6801given the Lex compatibility option @option{-l} (which triggers the
6802option @samp{%array}) Flex generates a different behavior:
6803
6804@example
6805$ @kbd{flex -l -osplit-lines.c split-lines.l}
6806$ @kbd{gcc -osplit-lines split-lines.c -ll}
6807$ @kbd{printf 'one\ntwo\n' | ./split-lines}
6808"two", "two"
6809@end example
6810
6811
6812@node C++ Parsers
6813@section C++ Parsers
6814
6815@display
6816How can I generate parsers in C++?
6817@end display
6818
6819We are working on a C++ output for Bison, but unfortunately, for lack
6820of time, the skeleton is not finished. It is functional, but in
6821numerous respects, it will require additional work which @emph{might}
6822break backward compatibility. Since the skeleton for C++ is not
6823documented, we do not consider ourselves bound to this interface,
6824nevertheless, as much as possible we will try to keep compatibility.
6825
6826Another possibility is to use the regular C parsers, and to compile
6827them with a C++ compiler. This works properly, provided that you bear
6828some simple C++ rules in mind, such as not including ``real classes''
6829(i.e., structure with constructors) in unions. Therefore, in the
6830@code{%union}, use pointers to classes, or better yet, a single
6831pointer type to the root of your lexical/syntactic hierarchy.
6832
6833
6834@node Implementing Loops
6835@section Implementing Loops
6836
6837@display
6838My simple calculator supports variables, assignments, and functions,
6839but how can I implement loops?
6840@end display
6841
6842Although very pedagogical, the examples included in the document blur
6843the distinction to make between the parser---whose job is to recover
6844the structure of a text and to transmit it to subsequent modules of
6845the program---and the processing (such as the execution) of this
6846structure. This works well with so called straight line programs,
6847i.e., precisely those that have a straightforward execution model:
6848execute simple instructions one after the others.
6849
6850@cindex abstract syntax tree
6851@cindex @acronym{AST}
6852If you want a richer model, you will probably need to use the parser
6853to construct a tree that does represent the structure it has
6854recovered; this tree is usually called the @dfn{abstract syntax tree},
6855or @dfn{@acronym{AST}} for short. Then, walking through this tree,
6856traversing it in various ways, will enable treatments such as its
6857execution or its translation, which will result in an interpreter or a
6858compiler.
6859
6860This topic is way beyond the scope of this manual, and the reader is
6861invited to consult the dedicated literature.
6862
6863
6864
6865@c ================================================= Table of Symbols
6866
6867@node Table of Symbols
6868@appendix Bison Symbols
6869@cindex Bison symbols, table of
6870@cindex symbols in Bison, table of
6871
6872@deffn {Variable} @@$
6873In an action, the location of the left-hand side of the rule.
6874@xref{Locations, , Locations Overview}.
6875@end deffn
6876
6877@deffn {Variable} @@@var{n}
6878In an action, the location of the @var{n}-th symbol of the right-hand
6879side of the rule. @xref{Locations, , Locations Overview}.
6880@end deffn
6881
6882@deffn {Variable} $$
6883In an action, the semantic value of the left-hand side of the rule.
6884@xref{Actions}.
6885@end deffn
6886
6887@deffn {Variable} $@var{n}
6888In an action, the semantic value of the @var{n}-th symbol of the
6889right-hand side of the rule. @xref{Actions}.
6890@end deffn
6891
6892@deffn {Symbol} $accept
6893The predefined nonterminal whose only rule is @samp{$accept: @var{start}
6894$end}, where @var{start} is the start symbol. @xref{Start Decl, , The
6895Start-Symbol}. It cannot be used in the grammar.
6896@end deffn
6897
6898@deffn {Symbol} $end
6899The predefined token marking the end of the token stream. It cannot be
6900used in the grammar.
6901@end deffn
6902
6903@deffn {Symbol} $undefined
6904The predefined token onto which all undefined values returned by
6905@code{yylex} are mapped. It cannot be used in the grammar, rather, use
6906@code{error}.
6907@end deffn
6908
6909@deffn {Symbol} error
6910A token name reserved for error recovery. This token may be used in
6911grammar rules so as to allow the Bison parser to recognize an error in
6912the grammar without halting the process. In effect, a sentence
6913containing an error may be recognized as valid. On a syntax error, the
6914token @code{error} becomes the current look-ahead token. Actions
6915corresponding to @code{error} are then executed, and the look-ahead
6916token is reset to the token that originally caused the violation.
6917@xref{Error Recovery}.
6918@end deffn
6919
6920@deffn {Macro} YYABORT
6921Macro to pretend that an unrecoverable syntax error has occurred, by
6922making @code{yyparse} return 1 immediately. The error reporting
6923function @code{yyerror} is not called. @xref{Parser Function, ,The
6924Parser Function @code{yyparse}}.
6925@end deffn
6926
6927@deffn {Macro} YYACCEPT
6928Macro to pretend that a complete utterance of the language has been
6929read, by making @code{yyparse} return 0 immediately.
6930@xref{Parser Function, ,The Parser Function @code{yyparse}}.
6931@end deffn
6932
6933@deffn {Macro} YYBACKUP
6934Macro to discard a value from the parser stack and fake a look-ahead
6935token. @xref{Action Features, ,Special Features for Use in Actions}.
6936@end deffn
6937
6938@deffn {Macro} YYDEBUG
6939Macro to define to equip the parser with tracing code. @xref{Tracing,
6940,Tracing Your Parser}.
6941@end deffn
6942
6943@deffn {Macro} YYERROR
6944Macro to pretend that a syntax error has just been detected: call
6945@code{yyerror} and then perform normal error recovery if possible
6946(@pxref{Error Recovery}), or (if recovery is impossible) make
6947@code{yyparse} return 1. @xref{Error Recovery}.
6948@end deffn
6949
6950@deffn {Macro} YYERROR_VERBOSE
6951An obsolete macro that you define with @code{#define} in the prologue
6952to request verbose, specific error message strings
6953when @code{yyerror} is called. It doesn't matter what definition you
6954use for @code{YYERROR_VERBOSE}, just whether you define it. Using
6955@code{%error-verbose} is preferred.
6956@end deffn
6957
6958@deffn {Macro} YYINITDEPTH
6959Macro for specifying the initial size of the parser stack.
6960@xref{Stack Overflow}.
6961@end deffn
6962
6963@deffn {Macro} YYLEX_PARAM
6964An obsolete macro for specifying an extra argument (or list of extra
6965arguments) for @code{yyparse} to pass to @code{yylex}. he use of this
6966macro is deprecated, and is supported only for Yacc like parsers.
6967@xref{Pure Calling,, Calling Conventions for Pure Parsers}.
6968@end deffn
6969
6970@deffn {Type} YYLTYPE
6971Data type of @code{yylloc}; by default, a structure with four
6972members. @xref{Location Type, , Data Types of Locations}.
6973@end deffn
6974
6975@deffn {Macro} YYMAXDEPTH
6976Macro for specifying the maximum size of the parser stack. @xref{Stack
6977Overflow}.
6978@end deffn
6979
6980@deffn {Macro} YYPARSE_PARAM
6981An obsolete macro for specifying the name of a parameter that
6982@code{yyparse} should accept. The use of this macro is deprecated, and
6983is supported only for Yacc like parsers. @xref{Pure Calling,, Calling
6984Conventions for Pure Parsers}.
6985@end deffn
6986
6987@deffn {Macro} YYRECOVERING
6988Macro whose value indicates whether the parser is recovering from a
6989syntax error. @xref{Action Features, ,Special Features for Use in Actions}.
6990@end deffn
6991
6992@deffn {Macro} YYSTACK_USE_ALLOCA
6993Macro used to control the use of @code{alloca}. If defined to @samp{0},
6994the parser will not use @code{alloca} but @code{malloc} when trying to
6995grow its internal stacks. Do @emph{not} define @code{YYSTACK_USE_ALLOCA}
6996to anything else.
6997@end deffn
6998
6999@deffn {Type} YYSTYPE
7000Data type of semantic values; @code{int} by default.
7001@xref{Value Type, ,Data Types of Semantic Values}.
7002@end deffn
7003
7004@deffn {Variable} yychar
7005External integer variable that contains the integer value of the current
7006look-ahead token. (In a pure parser, it is a local variable within
7007@code{yyparse}.) Error-recovery rule actions may examine this variable.
7008@xref{Action Features, ,Special Features for Use in Actions}.
7009@end deffn
7010
7011@deffn {Variable} yyclearin
7012Macro used in error-recovery rule actions. It clears the previous
7013look-ahead token. @xref{Error Recovery}.
7014@end deffn
7015
7016@deffn {Variable} yydebug
7017External integer variable set to zero by default. If @code{yydebug}
7018is given a nonzero value, the parser will output information on input
7019symbols and parser action. @xref{Tracing, ,Tracing Your Parser}.
7020@end deffn
7021
7022@deffn {Macro} yyerrok
7023Macro to cause parser to recover immediately to its normal mode
7024after a syntax error. @xref{Error Recovery}.
7025@end deffn
7026
7027@deffn {Function} yyerror
7028User-supplied function to be called by @code{yyparse} on error.
7029@xref{Error Reporting, ,The Error
7030Reporting Function @code{yyerror}}.
7031@end deffn
7032
7033@deffn {Function} yylex
7034User-supplied lexical analyzer function, called with no arguments to get
7035the next token. @xref{Lexical, ,The Lexical Analyzer Function
7036@code{yylex}}.
7037@end deffn
7038
7039@deffn {Variable} yylval
7040External variable in which @code{yylex} should place the semantic
7041value associated with a token. (In a pure parser, it is a local
7042variable within @code{yyparse}, and its address is passed to
7043@code{yylex}.) @xref{Token Values, ,Semantic Values of Tokens}.
7044@end deffn
7045
7046@deffn {Variable} yylloc
7047External variable in which @code{yylex} should place the line and column
7048numbers associated with a token. (In a pure parser, it is a local
7049variable within @code{yyparse}, and its address is passed to
7050@code{yylex}.) You can ignore this variable if you don't use the
7051@samp{@@} feature in the grammar actions. @xref{Token Locations,
7052,Textual Locations of Tokens}.
7053@end deffn
7054
7055@deffn {Variable} yynerrs
7056Global variable which Bison increments each time there is a syntax error.
7057(In a pure parser, it is a local variable within @code{yyparse}.)
7058@xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}.
7059@end deffn
7060
7061@deffn {Function} yyparse
7062The parser function produced by Bison; call this function to start
7063parsing. @xref{Parser Function, ,The Parser Function @code{yyparse}}.
7064@end deffn
7065
7066@deffn {Directive} %debug
7067Equip the parser for debugging. @xref{Decl Summary}.
7068@end deffn
7069
7070@ifset defaultprec
7071@deffn {Directive} %default-prec
7072Assign a precedence to rules that lack an explicit @samp{%prec}
7073modifier. @xref{Contextual Precedence, ,Context-Dependent
7074Precedence}.
7075@end deffn
7076@end ifset
7077
7078@deffn {Directive} %defines
7079Bison declaration to create a header file meant for the scanner.
7080@xref{Decl Summary}.
7081@end deffn
7082
7083@deffn {Directive} %destructor
7084Specifying how the parser should reclaim the memory associated to
7085discarded symbols. @xref{Destructor Decl, , Freeing Discarded Symbols}.
7086@end deffn
7087
7088@deffn {Directive} %dprec
7089Bison declaration to assign a precedence to a rule that is used at parse
7090time to resolve reduce/reduce conflicts. @xref{GLR Parsers, ,Writing
7091@acronym{GLR} Parsers}.
7092@end deffn
7093
7094@deffn {Directive} %error-verbose
7095Bison declaration to request verbose, specific error message strings
7096when @code{yyerror} is called.
7097@end deffn
7098
7099@deffn {Directive} %file-prefix="@var{prefix}"
7100Bison declaration to set the prefix of the output files. @xref{Decl
7101Summary}.
7102@end deffn
7103
7104@deffn {Directive} %glr-parser
7105Bison declaration to produce a @acronym{GLR} parser. @xref{GLR
7106Parsers, ,Writing @acronym{GLR} Parsers}.
7107@end deffn
7108
7109@deffn {Directive} %left
7110Bison declaration to assign left associativity to token(s).
7111@xref{Precedence Decl, ,Operator Precedence}.
7112@end deffn
7113
7114@deffn {Directive} %lex-param @{@var{argument-declaration}@}
7115Bison declaration to specifying an additional parameter that
7116@code{yylex} should accept. @xref{Pure Calling,, Calling Conventions
7117for Pure Parsers}.
7118@end deffn
7119
7120@deffn {Directive} %merge
7121Bison declaration to assign a merging function to a rule. If there is a
7122reduce/reduce conflict with a rule having the same merging function, the
7123function is applied to the two semantic values to get a single result.
7124@xref{GLR Parsers, ,Writing @acronym{GLR} Parsers}.
7125@end deffn
7126
7127@deffn {Directive} %name-prefix="@var{prefix}"
7128Bison declaration to rename the external symbols. @xref{Decl Summary}.
7129@end deffn
7130
7131@ifset defaultprec
7132@deffn {Directive} %no-default-prec
7133Do not assign a precedence to rules that lack an explicit @samp{%prec}
7134modifier. @xref{Contextual Precedence, ,Context-Dependent
7135Precedence}.
7136@end deffn
7137@end ifset
7138
7139@deffn {Directive} %no-lines
7140Bison declaration to avoid generating @code{#line} directives in the
7141parser file. @xref{Decl Summary}.
7142@end deffn
7143
7144@deffn {Directive} %nonassoc
7145Bison declaration to assign non-associativity to token(s).
7146@xref{Precedence Decl, ,Operator Precedence}.
7147@end deffn
7148
7149@deffn {Directive} %output="@var{filename}"
7150Bison declaration to set the name of the parser file. @xref{Decl
7151Summary}.
7152@end deffn
7153
7154@deffn {Directive} %parse-param @{@var{argument-declaration}@}
7155Bison declaration to specifying an additional parameter that
7156@code{yyparse} should accept. @xref{Parser Function,, The Parser
7157Function @code{yyparse}}.
7158@end deffn
7159
7160@deffn {Directive} %prec
7161Bison declaration to assign a precedence to a specific rule.
7162@xref{Contextual Precedence, ,Context-Dependent Precedence}.
7163@end deffn
7164
7165@deffn {Directive} %pure-parser
7166Bison declaration to request a pure (reentrant) parser.
7167@xref{Pure Decl, ,A Pure (Reentrant) Parser}.
7168@end deffn
7169
7170@deffn {Directive} %right
7171Bison declaration to assign right associativity to token(s).
7172@xref{Precedence Decl, ,Operator Precedence}.
7173@end deffn
7174
7175@deffn {Directive} %start
7176Bison declaration to specify the start symbol. @xref{Start Decl, ,The
7177Start-Symbol}.
7178@end deffn
7179
7180@deffn {Directive} %token
7181Bison declaration to declare token(s) without specifying precedence.
7182@xref{Token Decl, ,Token Type Names}.
7183@end deffn
7184
7185@deffn {Directive} %token-table
7186Bison declaration to include a token name table in the parser file.
7187@xref{Decl Summary}.
7188@end deffn
7189
7190@deffn {Directive} %type
7191Bison declaration to declare nonterminals. @xref{Type Decl,
7192,Nonterminal Symbols}.
7193@end deffn
7194
7195@deffn {Directive} %union
7196Bison declaration to specify several possible data types for semantic
7197values. @xref{Union Decl, ,The Collection of Value Types}.
7198@end deffn
7199
7200@sp 1
7201
7202These are the punctuation and delimiters used in Bison input:
7203
7204@deffn {Delimiter} %%
7205Delimiter used to separate the grammar rule section from the
7206Bison declarations section or the epilogue.
7207@xref{Grammar Layout, ,The Overall Layout of a Bison Grammar}.
7208@end deffn
7209
7210@c Don't insert spaces, or check the DVI output.
7211@deffn {Delimiter} %@{@var{code}%@}
7212All code listed between @samp{%@{} and @samp{%@}} is copied directly to
7213the output file uninterpreted. Such code forms the prologue of the input
7214file. @xref{Grammar Outline, ,Outline of a Bison
7215Grammar}.
7216@end deffn
7217
7218@deffn {Construct} /*@dots{}*/
7219Comment delimiters, as in C.
7220@end deffn
7221
7222@deffn {Delimiter} :
7223Separates a rule's result from its components. @xref{Rules, ,Syntax of
7224Grammar Rules}.
7225@end deffn
7226
7227@deffn {Delimiter} ;
7228Terminates a rule. @xref{Rules, ,Syntax of Grammar Rules}.
7229@end deffn
7230
7231@deffn {Delimiter} |
7232Separates alternate rules for the same result nonterminal.
7233@xref{Rules, ,Syntax of Grammar Rules}.
7234@end deffn
7235
7236@node Glossary
7237@appendix Glossary
7238@cindex glossary
7239
7240@table @asis
7241@item Backus-Naur Form (@acronym{BNF}; also called ``Backus Normal Form'')
7242Formal method of specifying context-free grammars originally proposed
7243by John Backus, and slightly improved by Peter Naur in his 1960-01-02
7244committee document contributing to what became the Algol 60 report.
7245@xref{Language and Grammar, ,Languages and Context-Free Grammars}.
7246
7247@item Context-free grammars
7248Grammars specified as rules that can be applied regardless of context.
7249Thus, if there is a rule which says that an integer can be used as an
7250expression, integers are allowed @emph{anywhere} an expression is
7251permitted. @xref{Language and Grammar, ,Languages and Context-Free
7252Grammars}.
7253
7254@item Dynamic allocation
7255Allocation of memory that occurs during execution, rather than at
7256compile time or on entry to a function.
7257
7258@item Empty string
7259Analogous to the empty set in set theory, the empty string is a
7260character string of length zero.
7261
7262@item Finite-state stack machine
7263A ``machine'' that has discrete states in which it is said to exist at
7264each instant in time. As input to the machine is processed, the
7265machine moves from state to state as specified by the logic of the
7266machine. In the case of the parser, the input is the language being
7267parsed, and the states correspond to various stages in the grammar
7268rules. @xref{Algorithm, ,The Bison Parser Algorithm}.
7269
7270@item Generalized @acronym{LR} (@acronym{GLR})
7271A parsing algorithm that can handle all context-free grammars, including those
7272that are not @acronym{LALR}(1). It resolves situations that Bison's
7273usual @acronym{LALR}(1)
7274algorithm cannot by effectively splitting off multiple parsers, trying all
7275possible parsers, and discarding those that fail in the light of additional
7276right context. @xref{Generalized LR Parsing, ,Generalized
7277@acronym{LR} Parsing}.
7278
7279@item Grouping
7280A language construct that is (in general) grammatically divisible;
7281for example, `expression' or `declaration' in C@.
7282@xref{Language and Grammar, ,Languages and Context-Free Grammars}.
7283
7284@item Infix operator
7285An arithmetic operator that is placed between the operands on which it
7286performs some operation.
7287
7288@item Input stream
7289A continuous flow of data between devices or programs.
7290
7291@item Language construct
7292One of the typical usage schemas of the language. For example, one of
7293the constructs of the C language is the @code{if} statement.
7294@xref{Language and Grammar, ,Languages and Context-Free Grammars}.
7295
7296@item Left associativity
7297Operators having left associativity are analyzed from left to right:
7298@samp{a+b+c} first computes @samp{a+b} and then combines with
7299@samp{c}. @xref{Precedence, ,Operator Precedence}.
7300
7301@item Left recursion
7302A rule whose result symbol is also its first component symbol; for
7303example, @samp{expseq1 : expseq1 ',' exp;}. @xref{Recursion, ,Recursive
7304Rules}.
7305
7306@item Left-to-right parsing
7307Parsing a sentence of a language by analyzing it token by token from
7308left to right. @xref{Algorithm, ,The Bison Parser Algorithm}.
7309
7310@item Lexical analyzer (scanner)
7311A function that reads an input stream and returns tokens one by one.
7312@xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}.
7313
7314@item Lexical tie-in
7315A flag, set by actions in the grammar rules, which alters the way
7316tokens are parsed. @xref{Lexical Tie-ins}.
7317
7318@item Literal string token
7319A token which consists of two or more fixed characters. @xref{Symbols}.
7320
7321@item Look-ahead token
7322A token already read but not yet shifted. @xref{Look-Ahead, ,Look-Ahead
7323Tokens}.
7324
7325@item @acronym{LALR}(1)
7326The class of context-free grammars that Bison (like most other parser
7327generators) can handle; a subset of @acronym{LR}(1). @xref{Mystery
7328Conflicts, ,Mysterious Reduce/Reduce Conflicts}.
7329
7330@item @acronym{LR}(1)
7331The class of context-free grammars in which at most one token of
7332look-ahead is needed to disambiguate the parsing of any piece of input.
7333
7334@item Nonterminal symbol
7335A grammar symbol standing for a grammatical construct that can
7336be expressed through rules in terms of smaller constructs; in other
7337words, a construct that is not a token. @xref{Symbols}.
7338
7339@item Parser
7340A function that recognizes valid sentences of a language by analyzing
7341the syntax structure of a set of tokens passed to it from a lexical
7342analyzer.
7343
7344@item Postfix operator
7345An arithmetic operator that is placed after the operands upon which it
7346performs some operation.
7347
7348@item Reduction
7349Replacing a string of nonterminals and/or terminals with a single
7350nonterminal, according to a grammar rule. @xref{Algorithm, ,The Bison
7351Parser Algorithm}.
7352
7353@item Reentrant
7354A reentrant subprogram is a subprogram which can be in invoked any
7355number of times in parallel, without interference between the various
7356invocations. @xref{Pure Decl, ,A Pure (Reentrant) Parser}.
7357
7358@item Reverse polish notation
7359A language in which all operators are postfix operators.
7360
7361@item Right recursion
7362A rule whose result symbol is also its last component symbol; for
7363example, @samp{expseq1: exp ',' expseq1;}. @xref{Recursion, ,Recursive
7364Rules}.
7365
7366@item Semantics
7367In computer languages, the semantics are specified by the actions
7368taken for each instance of the language, i.e., the meaning of
7369each statement. @xref{Semantics, ,Defining Language Semantics}.
7370
7371@item Shift
7372A parser is said to shift when it makes the choice of analyzing
7373further input from the stream rather than reducing immediately some
7374already-recognized rule. @xref{Algorithm, ,The Bison Parser Algorithm}.
7375
7376@item Single-character literal
7377A single character that is recognized and interpreted as is.
7378@xref{Grammar in Bison, ,From Formal Rules to Bison Input}.
7379
7380@item Start symbol
7381The nonterminal symbol that stands for a complete valid utterance in
7382the language being parsed. The start symbol is usually listed as the
7383first nonterminal symbol in a language specification.
7384@xref{Start Decl, ,The Start-Symbol}.
7385
7386@item Symbol table
7387A data structure where symbol names and associated data are stored
7388during parsing to allow for recognition and use of existing
7389information in repeated uses of a symbol. @xref{Multi-function Calc}.
7390
7391@item Syntax error
7392An error encountered during parsing of an input stream due to invalid
7393syntax. @xref{Error Recovery}.
7394
7395@item Token
7396A basic, grammatically indivisible unit of a language. The symbol
7397that describes a token in the grammar is a terminal symbol.
7398The input of the Bison parser is a stream of tokens which comes from
7399the lexical analyzer. @xref{Symbols}.
7400
7401@item Terminal symbol
7402A grammar symbol that has no rules in the grammar and therefore is
7403grammatically indivisible. The piece of text it represents is a token.
7404@xref{Language and Grammar, ,Languages and Context-Free Grammars}.
7405@end table
7406
7407@node Copying This Manual
7408@appendix Copying This Manual
7409
7410@menu
7411* GNU Free Documentation License:: License for copying this manual.
7412@end menu
7413
7414@include fdl.texi
7415
7416@node Index
7417@unnumbered Index
7418
7419@printindex cp
7420
7421@bye
7422
7423@c LocalWords: texinfo setfilename settitle setchapternewpage finalout
7424@c LocalWords: ifinfo smallbook shorttitlepage titlepage GPL FIXME iftex
7425@c LocalWords: akim fn cp syncodeindex vr tp synindex dircategory direntry
7426@c LocalWords: ifset vskip pt filll insertcopying sp ISBN Etienne Suvasa
7427@c LocalWords: ifnottex yyparse detailmenu GLR RPN Calc var Decls Rpcalc
7428@c LocalWords: rpcalc Lexer Gen Comp Expr ltcalc mfcalc Decl Symtab yylex
7429@c LocalWords: yyerror pxref LR yylval cindex dfn LALR samp gpl BNF xref
7430@c LocalWords: const int paren ifnotinfo AC noindent emph expr stmt findex
7431@c LocalWords: glr YYSTYPE TYPENAME prog dprec printf decl init stmtMerge
7432@c LocalWords: pre STDC GNUC endif yy YY alloca lf stddef stdlib YYDEBUG
7433@c LocalWords: NUM exp subsubsection kbd Ctrl ctype EOF getchar isdigit
7434@c LocalWords: ungetc stdin scanf sc calc ulator ls lm cc NEG prec yyerrok
7435@c LocalWords: longjmp fprintf stderr preg yylloc YYLTYPE cos ln
7436@c LocalWords: smallexample symrec val tptr FNCT fnctptr func struct sym
7437@c LocalWords: fnct putsym getsym fname arith fncts atan ptr malloc sizeof
7438@c LocalWords: strlen strcpy fctn strcmp isalpha symbuf realloc isalnum
7439@c LocalWords: ptypes itype YYPRINT trigraphs yytname expseq vindex dtype
7440@c LocalWords: Rhs YYRHSLOC LE nonassoc op deffn typeless typefull yynerrs
7441@c LocalWords: yychar yydebug msg YYNTOKENS YYNNTS YYNRULES YYNSTATES
7442@c LocalWords: cparse clex deftypefun NE defmac YYACCEPT YYABORT param
7443@c LocalWords: strncmp intval tindex lvalp locp llocp typealt YYBACKUP
7444@c LocalWords: YYEMPTY YYRECOVERING yyclearin GE def UMINUS maybeword
7445@c LocalWords: Johnstone Shamsa Sadaf Hussain Tomita TR uref YYMAXDEPTH
7446@c LocalWords: YYINITDEPTH stmnts ref stmnt initdcl maybeasm VCG notype
7447@c LocalWords: hexflag STR exdent itemset asis DYYDEBUG YYFPRINTF args
7448@c LocalWords: YYPRINTF infile ypp yxx outfile itemx vcg tex leaderfill
7449@c LocalWords: hbox hss hfill tt ly yyin fopen fclose ofirst gcc ll
7450@c LocalWords: yyrestart nbar yytext fst snd osplit ntwo strdup AST
7451@c LocalWords: YYSTACK DVI fdl printindex