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