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