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