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