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