]> git.saurik.com Git - bison.git/blame - doc/bison.texinfo
Add new options.
[bison.git] / doc / bison.texinfo
CommitLineData
bfa74976
RS
1\input texinfo @c -*-texinfo-*-
2@comment %**start of header
3@setfilename bison.info
a31239f1 4@settitle Bison 1.24
bfa74976
RS
5@setchapternewpage odd
6
5378c3e7
DM
7@iftex
8@finalout
9@end iftex
10
bfa74976
RS
11@c SMALL BOOK version
12@c This edition has been formatted so that you can format and print it in
13@c the smallbook format.
14@c @smallbook
15
16@c next time, consider using @set for edition number, etc...
17
18@c Set following if you have the new `shorttitlepage' command
19@c @clear shorttitlepage-enabled
20@c @set shorttitlepage-enabled
21
22@c ISPELL CHECK: done, 14 Jan 1993 --bob
23
24@c Check COPYRIGHT dates. should be updated in the titlepage, ifinfo
25@c titlepage; should NOT be changed in the GPL. --mew
26
27@iftex
28@syncodeindex fn cp
29@syncodeindex vr cp
30@syncodeindex tp cp
31@end iftex
32@ifinfo
33@synindex fn cp
34@synindex vr cp
35@synindex tp cp
36@end ifinfo
37@comment %**end of header
38
39@ifinfo
40This file documents the Bison parser generator.
41
a31239f1 42Copyright (C) 1988, 89, 90, 91, 92, 93, 1995 Free Software Foundation, Inc.
bfa74976
RS
43
44Permission is granted to make and distribute verbatim copies of
45this manual provided the copyright notice and this permission notice
46are preserved on all copies.
47
48@ignore
49Permission is granted to process this file through Tex and print the
50results, provided the printed document carries copying permission
51notice identical to this one except for the removal of this paragraph
52(this paragraph not being relevant to the printed manual).
53
54@end ignore
55Permission is granted to copy and distribute modified versions of this
56manual under the conditions for verbatim copying, provided also that the
57sections entitled ``GNU General Public License'' and ``Conditions for
58Using Bison'' are included exactly as in the original, and provided that
59the entire resulting derived work is distributed under the terms of a
60permission notice identical to this one.
61
62Permission is granted to copy and distribute translations of this manual
63into another language, under the above conditions for modified versions,
64except that the sections entitled ``GNU General Public License'',
65``Conditions for Using Bison'' and this permission notice may be
66included in translations approved by the Free Software Foundation
67instead of in the original English.
68@end ifinfo
69
70@ifset shorttitlepage-enabled
71@shorttitlepage Bison
72@end ifset
73@titlepage
74@title Bison
75@subtitle The YACC-compatible Parser Generator
a31239f1 76@subtitle May 1995, Bison Version 1.24
bfa74976
RS
77
78@author by Charles Donnelly and Richard Stallman
79
80@page
81@vskip 0pt plus 1filll
a31239f1 82Copyright @copyright{} 1988, 89, 90, 91, 92, 93, 1995 Free Software
bfa74976
RS
83Foundation
84
85@sp 2
86Published by the Free Software Foundation @*
87675 Massachusetts Avenue @*
88Cambridge, MA 02139 USA @*
89Printed copies are available for $15 each.@*
90ISBN-1-882114-30-2
91
92Permission is granted to make and distribute verbatim copies of
93this manual provided the copyright notice and this permission notice
94are preserved on all copies.
95
96@ignore
97Permission is granted to process this file through TeX and print the
98results, provided the printed document carries copying permission
99notice identical to this one except for the removal of this paragraph
100(this paragraph not being relevant to the printed manual).
101
102@end ignore
103Permission is granted to copy and distribute modified versions of this
104manual under the conditions for verbatim copying, provided also that the
105sections entitled ``GNU General Public License'' and ``Conditions for
106Using Bison'' are included exactly as in the original, and provided that
107the entire resulting derived work is distributed under the terms of a
108permission notice identical to this one.
109
110Permission is granted to copy and distribute translations of this manual
111into another language, under the above conditions for modified versions,
112except that the sections entitled ``GNU General Public License'',
113``Conditions for Using Bison'' and this permission notice may be
114included in translations approved by the Free Software Foundation
115instead of in the original English.
116@sp 2
117Cover art by Etienne Suvasa.
118@end titlepage
119@page
120
121@node Top, Introduction, (dir), (dir)
122
123@ifinfo
a31239f1 124This manual documents version 1.24 of Bison.
bfa74976
RS
125@end ifinfo
126
127@menu
128* Introduction::
129* Conditions::
130* Copying:: The GNU General Public License says
131 how you can copy and share Bison
132
133Tutorial sections:
134* Concepts:: Basic concepts for understanding Bison.
135* Examples:: Three simple explained examples of using Bison.
136
137Reference sections:
138* Grammar File:: Writing Bison declarations and rules.
139* Interface:: C-language interface to the parser function @code{yyparse}.
140* Algorithm:: How the Bison parser works at run-time.
141* Error Recovery:: Writing rules for error recovery.
142* Context Dependency:: What to do if your language syntax is too
143 messy for Bison to handle straightforwardly.
144* Debugging:: Debugging Bison parsers that parse wrong.
145* Invocation:: How to run Bison (to produce the parser source file).
146* Table of Symbols:: All the keywords of the Bison language are explained.
147* Glossary:: Basic concepts are explained.
148* Index:: Cross-references to the text.
149
150 --- The Detailed Node Listing ---
151
152The Concepts of Bison
153
154* Language and Grammar:: Languages and context-free grammars,
155 as mathematical ideas.
156* Grammar in Bison:: How we represent grammars for Bison's sake.
157* Semantic Values:: Each token or syntactic grouping can have
158 a semantic value (the value of an integer,
159 the name of an identifier, etc.).
160* Semantic Actions:: Each rule can have an action containing C code.
161* Bison Parser:: What are Bison's input and output,
162 how is the output used?
163* Stages:: Stages in writing and running Bison grammars.
164* Grammar Layout:: Overall structure of a Bison grammar file.
165
166Examples
167
168* RPN Calc:: Reverse polish notation calculator;
169 a first example with no operator precedence.
170* Infix Calc:: Infix (algebraic) notation calculator.
171 Operator precedence is introduced.
172* Simple Error Recovery:: Continuing after syntax errors.
173* Multi-function Calc:: Calculator with memory and trig functions.
174 It uses multiple data-types for semantic values.
175* Exercises:: Ideas for improving the multi-function calculator.
176
177Reverse Polish Notation Calculator
178
179* Decls: Rpcalc Decls. Bison and C declarations for rpcalc.
180* Rules: Rpcalc Rules. Grammar Rules for rpcalc, with explanation.
181* Lexer: Rpcalc Lexer. The lexical analyzer.
182* Main: Rpcalc Main. The controlling function.
183* Error: Rpcalc Error. The error reporting function.
184* Gen: Rpcalc Gen. Running Bison on the grammar file.
185* Comp: Rpcalc Compile. Run the C compiler on the output code.
186
187Grammar Rules for @code{rpcalc}
188
189* Rpcalc Input::
190* Rpcalc Line::
191* Rpcalc Expr::
192
193Multi-Function Calculator: @code{mfcalc}
194
195* Decl: Mfcalc Decl. Bison declarations for multi-function calculator.
196* Rules: Mfcalc Rules. Grammar rules for the calculator.
197* Symtab: Mfcalc Symtab. Symbol table management subroutines.
198
199Bison Grammar Files
200
201* Grammar Outline:: Overall layout of the grammar file.
202* Symbols:: Terminal and nonterminal symbols.
203* Rules:: How to write grammar rules.
204* Recursion:: Writing recursive rules.
205* Semantics:: Semantic values and actions.
206* Declarations:: All kinds of Bison declarations are described here.
207* Multiple Parsers:: Putting more than one Bison parser in one program.
208
209Outline of a Bison Grammar
210
211* C Declarations:: Syntax and usage of the C declarations section.
212* Bison Declarations:: Syntax and usage of the Bison declarations section.
213* Grammar Rules:: Syntax and usage of the grammar rules section.
214* C Code:: Syntax and usage of the additional C code section.
215
216Defining Language Semantics
217
218* Value Type:: Specifying one data type for all semantic values.
219* Multiple Types:: Specifying several alternative data types.
220* Actions:: An action is the semantic definition of a grammar rule.
221* Action Types:: Specifying data types for actions to operate on.
222* Mid-Rule Actions:: Most actions go at the end of a rule.
223 This says when, why and how to use the exceptional
224 action in the middle of a rule.
225
226Bison Declarations
227
228* Token Decl:: Declaring terminal symbols.
229* Precedence Decl:: Declaring terminals with precedence and associativity.
230* Union Decl:: Declaring the set of all semantic value types.
231* Type Decl:: Declaring the choice of type for a nonterminal symbol.
232* Expect Decl:: Suppressing warnings about shift/reduce conflicts.
233* Start Decl:: Specifying the start symbol.
234* Pure Decl:: Requesting a reentrant parser.
235* Decl Summary:: Table of all Bison declarations.
236
237Parser C-Language Interface
238
239* Parser Function:: How to call @code{yyparse} and what it returns.
240* Lexical:: You must supply a function @code{yylex}
241 which reads tokens.
242* Error Reporting:: You must supply a function @code{yyerror}.
243* Action Features:: Special features for use in actions.
244
245The Lexical Analyzer Function @code{yylex}
246
247* Calling Convention:: How @code{yyparse} calls @code{yylex}.
248* Token Values:: How @code{yylex} must return the semantic value
249 of the token it has read.
250* Token Positions:: How @code{yylex} must return the text position
251 (line number, etc.) of the token, if the
252 actions want that.
253* Pure Calling:: How the calling convention differs
254 in a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}).
255
256The Bison Parser Algorithm
257
258* Look-Ahead:: Parser looks one token ahead when deciding what to do.
259* Shift/Reduce:: Conflicts: when either shifting or reduction is valid.
260* Precedence:: Operator precedence works by resolving conflicts.
261* Contextual Precedence:: When an operator's precedence depends on context.
262* Parser States:: The parser is a finite-state-machine with stack.
263* Reduce/Reduce:: When two rules are applicable in the same situation.
264* Mystery Conflicts:: Reduce/reduce conflicts that look unjustified.
265* Stack Overflow:: What happens when stack gets full. How to avoid it.
266
267Operator Precedence
268
269* Why Precedence:: An example showing why precedence is needed.
270* Using Precedence:: How to specify precedence in Bison grammars.
271* Precedence Examples:: How these features are used in the previous example.
272* How Precedence:: How they work.
273
274Handling Context Dependencies
275
276* Semantic Tokens:: Token parsing can depend on the semantic context.
277* Lexical Tie-ins:: Token parsing can depend on the syntactic context.
278* Tie-in Recovery:: Lexical tie-ins have implications for how
279 error recovery rules must be written.
280
281Invoking Bison
282
283* Bison Options:: All the options described in detail,
284 in alphabetical order by short options.
285* Option Cross Key:: Alphabetical list of long options.
286* VMS Invocation:: Bison command syntax on VMS.
287@end menu
288
289@node Introduction, Conditions, Top, Top
290@unnumbered Introduction
291@cindex introduction
292
293@dfn{Bison} is a general-purpose parser generator that converts a
294grammar description for an LALR(1) context-free grammar into a C
295program to parse that grammar. Once you are proficient with Bison,
296you may use it to develop a wide range of language parsers, from those
297used in simple desk calculators to complex programming languages.
298
299Bison is upward compatible with Yacc: all properly-written Yacc grammars
300ought to work with Bison with no change. Anyone familiar with Yacc
301should be able to use Bison with little trouble. You need to be fluent in
302C programming in order to use Bison or to understand this manual.
303
304We begin with tutorial chapters that explain the basic concepts of using
305Bison and show three explained examples, each building on the last. If you
306don't know Bison or Yacc, start by reading these chapters. Reference
307chapters follow which describe specific aspects of Bison in detail.
308
309Bison was written primarily by Robert Corbett; Richard Stallman made
a31239f1 310it Yacc-compatible. This edition corresponds to version 1.24 of Bison.
bfa74976
RS
311
312@node Conditions, Copying, Introduction, Top
313@unnumbered Conditions for Using Bison
314
a31239f1
RS
315As of Bison version 1.24, we have changed the distribution terms for
316@code{yyparse} to permit using Bison's output in non-free programs.
317Formerly, Bison parsers could be used only in programs that were free
318software.
319
320The other GNU programming tools, such as the GNU C compiler, have never
321had such a requirement. They could always be used for non-free
322software. The reason Bison was different was not due to a special
323policy decision; it resulted from applying the usual General Public
324License to all of the Bison source code.
325
326The output of the Bison utility---the Bison parser file---contains a
327verbatim copy of a sizable piece of Bison, which is the code for the
328@code{yyparse} function. (The actions from your grammar are inserted
329into this function at one point, but the rest of the function is not
330changed.) When we applied the GPL terms to the code for @code{yyparse},
331the effect was to restrict the use of Bison output to free software.
332
333We didn't change the terms because of sympathy for people who want to
334make software proprietary. @strong{Software should be free.} But we
335concluded that limiting Bison's use to free software was doing little to
336encourage people to make other software free. So we decided to make the
337practical conditions for using Bison match the practical conditions for
338using the other GNU tools.
bfa74976
RS
339
340@node Copying, Concepts, Conditions, Top
341@unnumbered GNU GENERAL PUBLIC LICENSE
342@center Version 2, June 1991
343
344@display
345Copyright @copyright{} 1989, 1991 Free Software Foundation, Inc.
346675 Mass Ave, Cambridge, MA 02139, USA
347
348Everyone is permitted to copy and distribute verbatim copies
349of this license document, but changing it is not allowed.
350@end display
351
352@unnumberedsec Preamble
353
354 The licenses for most software are designed to take away your
355freedom to share and change it. By contrast, the GNU General Public
356License is intended to guarantee your freedom to share and change free
357software---to make sure the software is free for all its users. This
358General Public License applies to most of the Free Software
359Foundation's software and to any other program whose authors commit to
360using it. (Some other Free Software Foundation software is covered by
361the GNU Library General Public License instead.) You can apply it to
362your programs, too.
363
364 When we speak of free software, we are referring to freedom, not
365price. Our General Public Licenses are designed to make sure that you
366have the freedom to distribute copies of free software (and charge for
367this service if you wish), that you receive source code or can get it
368if you want it, that you can change the software or use pieces of it
369in new free programs; and that you know you can do these things.
370
371 To protect your rights, we need to make restrictions that forbid
372anyone to deny you these rights or to ask you to surrender the rights.
373These restrictions translate to certain responsibilities for you if you
374distribute copies of the software, or if you modify it.
375
376 For example, if you distribute copies of such a program, whether
377gratis or for a fee, you must give the recipients all the rights that
378you have. You must make sure that they, too, receive or can get the
379source code. And you must show them these terms so they know their
380rights.
381
382 We protect your rights with two steps: (1) copyright the software, and
383(2) offer you this license which gives you legal permission to copy,
384distribute and/or modify the software.
385
386 Also, for each author's protection and ours, we want to make certain
387that everyone understands that there is no warranty for this free
388software. If the software is modified by someone else and passed on, we
389want its recipients to know that what they have is not the original, so
390that any problems introduced by others will not reflect on the original
391authors' reputations.
392
393 Finally, any free program is threatened constantly by software
394patents. We wish to avoid the danger that redistributors of a free
395program will individually obtain patent licenses, in effect making the
396program proprietary. To prevent this, we have made it clear that any
397patent must be licensed for everyone's free use or not licensed at all.
398
399 The precise terms and conditions for copying, distribution and
400modification follow.
401
402@iftex
403@unnumberedsec TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
404@end iftex
405@ifinfo
406@center TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
407@end ifinfo
408
0189fd92 409@enumerate 0
bfa74976
RS
410@item
411This License applies to any program or other work which contains
412a notice placed by the copyright holder saying it may be distributed
413under the terms of this General Public License. The ``Program'', below,
414refers to any such program or work, and a ``work based on the Program''
415means either the Program or any derivative work under copyright law:
416that is to say, a work containing the Program or a portion of it,
417either verbatim or with modifications and/or translated into another
418language. (Hereinafter, translation is included without limitation in
419the term ``modification''.) Each licensee is addressed as ``you''.
420
421Activities other than copying, distribution and modification are not
422covered by this License; they are outside its scope. The act of
423running the Program is not restricted, and the output from the Program
424is covered only if its contents constitute a work based on the
425Program (independent of having been made by running the Program).
426Whether that is true depends on what the Program does.
427
428@item
429You may copy and distribute verbatim copies of the Program's
430source code as you receive it, in any medium, provided that you
431conspicuously and appropriately publish on each copy an appropriate
432copyright notice and disclaimer of warranty; keep intact all the
433notices that refer to this License and to the absence of any warranty;
434and give any other recipients of the Program a copy of this License
435along with the Program.
436
437You may charge a fee for the physical act of transferring a copy, and
438you may at your option offer warranty protection in exchange for a fee.
439
440@item
441You may modify your copy or copies of the Program or any portion
442of it, thus forming a work based on the Program, and copy and
443distribute such modifications or work under the terms of Section 1
444above, provided that you also meet all of these conditions:
445
446@enumerate a
447@item
448You must cause the modified files to carry prominent notices
449stating that you changed the files and the date of any change.
450
451@item
452You must cause any work that you distribute or publish, that in
453whole or in part contains or is derived from the Program or any
454part thereof, to be licensed as a whole at no charge to all third
455parties under the terms of this License.
456
457@item
458If the modified program normally reads commands interactively
459when run, you must cause it, when started running for such
460interactive use in the most ordinary way, to print or display an
461announcement including an appropriate copyright notice and a
462notice that there is no warranty (or else, saying that you provide
463a warranty) and that users may redistribute the program under
464these conditions, and telling the user how to view a copy of this
465License. (Exception: if the Program itself is interactive but
466does not normally print such an announcement, your work based on
467the Program is not required to print an announcement.)
468@end enumerate
469
470These requirements apply to the modified work as a whole. If
471identifiable sections of that work are not derived from the Program,
472and can be reasonably considered independent and separate works in
473themselves, then this License, and its terms, do not apply to those
474sections when you distribute them as separate works. But when you
475distribute the same sections as part of a whole which is a work based
476on the Program, the distribution of the whole must be on the terms of
477this License, whose permissions for other licensees extend to the
478entire whole, and thus to each and every part regardless of who wrote it.
479
480Thus, it is not the intent of this section to claim rights or contest
481your rights to work written entirely by you; rather, the intent is to
482exercise the right to control the distribution of derivative or
483collective works based on the Program.
484
485In addition, mere aggregation of another work not based on the Program
486with the Program (or with a work based on the Program) on a volume of
487a storage or distribution medium does not bring the other work under
488the scope of this License.
489
490@item
491You may copy and distribute the Program (or a work based on it,
492under Section 2) in object code or executable form under the terms of
493Sections 1 and 2 above provided that you also do one of the following:
494
495@enumerate a
496@item
497Accompany it with the complete corresponding machine-readable
498source code, which must be distributed under the terms of Sections
4991 and 2 above on a medium customarily used for software interchange; or,
500
501@item
502Accompany it with a written offer, valid for at least three
503years, to give any third party, for a charge no more than your
504cost of physically performing source distribution, a complete
505machine-readable copy of the corresponding source code, to be
506distributed under the terms of Sections 1 and 2 above on a medium
507customarily used for software interchange; or,
508
509@item
510Accompany it with the information you received as to the offer
511to distribute corresponding source code. (This alternative is
512allowed only for noncommercial distribution and only if you
513received the program in object code or executable form with such
514an offer, in accord with Subsection b above.)
515@end enumerate
516
517The source code for a work means the preferred form of the work for
518making modifications to it. For an executable work, complete source
519code means all the source code for all modules it contains, plus any
520associated interface definition files, plus the scripts used to
521control compilation and installation of the executable. However, as a
522special exception, the source code distributed need not include
523anything that is normally distributed (in either source or binary
524form) with the major components (compiler, kernel, and so on) of the
525operating system on which the executable runs, unless that component
526itself accompanies the executable.
527
528If distribution of executable or object code is made by offering
529access to copy from a designated place, then offering equivalent
530access to copy the source code from the same place counts as
531distribution of the source code, even though third parties are not
532compelled to copy the source along with the object code.
533
534@item
535You may not copy, modify, sublicense, or distribute the Program
536except as expressly provided under this License. Any attempt
537otherwise to copy, modify, sublicense or distribute the Program is
538void, and will automatically terminate your rights under this License.
539However, parties who have received copies, or rights, from you under
540this License will not have their licenses terminated so long as such
541parties remain in full compliance.
542
543@item
544You are not required to accept this License, since you have not
545signed it. However, nothing else grants you permission to modify or
546distribute the Program or its derivative works. These actions are
547prohibited by law if you do not accept this License. Therefore, by
548modifying or distributing the Program (or any work based on the
549Program), you indicate your acceptance of this License to do so, and
550all its terms and conditions for copying, distributing or modifying
551the Program or works based on it.
552
553@item
554Each time you redistribute the Program (or any work based on the
555Program), the recipient automatically receives a license from the
556original licensor to copy, distribute or modify the Program subject to
557these terms and conditions. You may not impose any further
558restrictions on the recipients' exercise of the rights granted herein.
559You are not responsible for enforcing compliance by third parties to
560this License.
561
562@item
563If, as a consequence of a court judgment or allegation of patent
564infringement or for any other reason (not limited to patent issues),
565conditions are imposed on you (whether by court order, agreement or
566otherwise) that contradict the conditions of this License, they do not
567excuse you from the conditions of this License. If you cannot
568distribute so as to satisfy simultaneously your obligations under this
569License and any other pertinent obligations, then as a consequence you
570may not distribute the Program at all. For example, if a patent
571license would not permit royalty-free redistribution of the Program by
572all those who receive copies directly or indirectly through you, then
573the only way you could satisfy both it and this License would be to
574refrain entirely from distribution of the Program.
575
576If any portion of this section is held invalid or unenforceable under
577any particular circumstance, the balance of the section is intended to
578apply and the section as a whole is intended to apply in other
579circumstances.
580
581It is not the purpose of this section to induce you to infringe any
582patents or other property right claims or to contest validity of any
583such claims; this section has the sole purpose of protecting the
584integrity of the free software distribution system, which is
585implemented by public license practices. Many people have made
586generous contributions to the wide range of software distributed
587through that system in reliance on consistent application of that
588system; it is up to the author/donor to decide if he or she is willing
589to distribute software through any other system and a licensee cannot
590impose that choice.
591
592This section is intended to make thoroughly clear what is believed to
593be a consequence of the rest of this License.
594
595@item
596If the distribution and/or use of the Program is restricted in
597certain countries either by patents or by copyrighted interfaces, the
598original copyright holder who places the Program under this License
599may add an explicit geographical distribution limitation excluding
600those countries, so that distribution is permitted only in or among
601countries not thus excluded. In such case, this License incorporates
602the limitation as if written in the body of this License.
603
604@item
605The Free Software Foundation may publish revised and/or new versions
606of the General Public License from time to time. Such new versions will
607be similar in spirit to the present version, but may differ in detail to
608address new problems or concerns.
609
610Each version is given a distinguishing version number. If the Program
611specifies a version number of this License which applies to it and ``any
612later version'', you have the option of following the terms and conditions
613either of that version or of any later version published by the Free
614Software Foundation. If the Program does not specify a version number of
615this License, you may choose any version ever published by the Free Software
616Foundation.
617
618@item
619If you wish to incorporate parts of the Program into other free
620programs whose distribution conditions are different, write to the author
621to ask for permission. For software which is copyrighted by the Free
622Software Foundation, write to the Free Software Foundation; we sometimes
623make exceptions for this. Our decision will be guided by the two goals
624of preserving the free status of all derivatives of our free software and
625of promoting the sharing and reuse of software generally.
626
627@iftex
628@heading NO WARRANTY
629@end iftex
630@ifinfo
631@center NO WARRANTY
632@end ifinfo
633
634@item
635BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
636FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
637OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
638PROVIDE THE PROGRAM ``AS IS'' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
639OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
640MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
641TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
642PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
643REPAIR OR CORRECTION.
644
645@item
646IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
647WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
648REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
649INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
650OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
651TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
652YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
653PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
654POSSIBILITY OF SUCH DAMAGES.
655@end enumerate
656
657@iftex
658@heading END OF TERMS AND CONDITIONS
659@end iftex
660@ifinfo
661@center END OF TERMS AND CONDITIONS
662@end ifinfo
663
664@page
665@unnumberedsec How to Apply These Terms to Your New Programs
666
667 If you develop a new program, and you want it to be of the greatest
668possible use to the public, the best way to achieve this is to make it
669free software which everyone can redistribute and change under these terms.
670
671 To do so, attach the following notices to the program. It is safest
672to attach them to the start of each source file to most effectively
673convey the exclusion of warranty; and each file should have at least
674the ``copyright'' line and a pointer to where the full notice is found.
675
676@smallexample
677@var{one line to give the program's name and a brief idea of what it does.}
678Copyright (C) 19@var{yy} @var{name of author}
679
680This program is free software; you can redistribute it and/or modify
681it under the terms of the GNU General Public License as published by
682the Free Software Foundation; either version 2 of the License, or
683(at your option) any later version.
684
685This program is distributed in the hope that it will be useful,
686but WITHOUT ANY WARRANTY; without even the implied warranty of
687MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
688GNU General Public License for more details.
689
690You should have received a copy of the GNU General Public License
691along with this program; if not, write to the Free Software
692Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
693@end smallexample
694
695Also add information on how to contact you by electronic and paper mail.
696
697If the program is interactive, make it output a short notice like this
698when it starts in an interactive mode:
699
700@smallexample
701Gnomovision version 69, Copyright (C) 19@var{yy} @var{name of author}
702Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
703type `show w'.
704This is free software, and you are welcome to redistribute it
705under certain conditions; type `show c' for details.
706@end smallexample
707
708The hypothetical commands @samp{show w} and @samp{show c} should show
709the appropriate parts of the General Public License. Of course, the
710commands you use may be called something other than @samp{show w} and
711@samp{show c}; they could even be mouse-clicks or menu items---whatever
712suits your program.
713
714You should also get your employer (if you work as a programmer) or your
715school, if any, to sign a ``copyright disclaimer'' for the program, if
716necessary. Here is a sample; alter the names:
717
718@smallexample
719Yoyodyne, Inc., hereby disclaims all copyright interest in the program
720`Gnomovision' (which makes passes at compilers) written by James Hacker.
721
722@var{signature of Ty Coon}, 1 April 1989
723Ty Coon, President of Vice
724@end smallexample
725
726This General Public License does not permit incorporating your program into
727proprietary programs. If your program is a subroutine library, you may
728consider it more useful to permit linking proprietary applications with the
729library. If this is what you want to do, use the GNU Library General
730Public License instead of this License.
731
732@node Concepts, Examples, Copying, Top
733@chapter The Concepts of Bison
734
735This chapter introduces many of the basic concepts without which the
736details of Bison will not make sense. If you do not already know how to
737use Bison or Yacc, we suggest you start by reading this chapter carefully.
738
739@menu
740* Language and Grammar:: Languages and context-free grammars,
741 as mathematical ideas.
742* Grammar in Bison:: How we represent grammars for Bison's sake.
743* Semantic Values:: Each token or syntactic grouping can have
744 a semantic value (the value of an integer,
745 the name of an identifier, etc.).
746* Semantic Actions:: Each rule can have an action containing C code.
747* Bison Parser:: What are Bison's input and output,
748 how is the output used?
749* Stages:: Stages in writing and running Bison grammars.
750* Grammar Layout:: Overall structure of a Bison grammar file.
751@end menu
752
753@node Language and Grammar, Grammar in Bison, , Concepts
754@section Languages and Context-Free Grammars
755
bfa74976
RS
756@cindex context-free grammar
757@cindex grammar, context-free
758In order for Bison to parse a language, it must be described by a
759@dfn{context-free grammar}. This means that you specify one or more
760@dfn{syntactic groupings} and give rules for constructing them from their
761parts. For example, in the C language, one kind of grouping is called an
762`expression'. One rule for making an expression might be, ``An expression
763can be made of a minus sign and another expression''. Another would be,
764``An expression can be an integer''. As you can see, rules are often
765recursive, but there must be at least one rule which leads out of the
766recursion.
767
768@cindex BNF
769@cindex Backus-Naur form
770The most common formal system for presenting such rules for humans to read
771is @dfn{Backus-Naur Form} or ``BNF'', which was developed in order to
772specify the language Algol 60. Any grammar expressed in BNF is a
773context-free grammar. The input to Bison is essentially machine-readable
774BNF.
775
776Not all context-free languages can be handled by Bison, only those
777that are LALR(1). In brief, this means that it must be possible to
778tell how to parse any portion of an input string with just a single
779token of look-ahead. Strictly speaking, that is a description of an
780LR(1) grammar, and LALR(1) involves additional restrictions that are
781hard to explain simply; but it is rare in actual practice to find an
782LR(1) grammar that fails to be LALR(1). @xref{Mystery Conflicts, ,
783Mysterious Reduce/Reduce Conflicts}, for more information on this.
784
785@cindex symbols (abstract)
786@cindex token
787@cindex syntactic grouping
788@cindex grouping, syntactic
789In the formal grammatical rules for a language, each kind of syntactic unit
790or grouping is named by a @dfn{symbol}. Those which are built by grouping
791smaller constructs according to grammatical rules are called
792@dfn{nonterminal symbols}; those which can't be subdivided are called
793@dfn{terminal symbols} or @dfn{token types}. We call a piece of input
794corresponding to a single terminal symbol a @dfn{token}, and a piece
795corresponding to a single nonterminal symbol a @dfn{grouping}.@refill
796
797We can use the C language as an example of what symbols, terminal and
798nonterminal, mean. The tokens of C are identifiers, constants (numeric and
799string), and the various keywords, arithmetic operators and punctuation
800marks. So the terminal symbols of a grammar for C include `identifier',
801`number', `string', plus one symbol for each keyword, operator or
802punctuation mark: `if', `return', `const', `static', `int', `char',
803`plus-sign', `open-brace', `close-brace', `comma' and many more. (These
804tokens can be subdivided into characters, but that is a matter of
805lexicography, not grammar.)
806
807Here is a simple C function subdivided into tokens:
808
809@example
810int /* @r{keyword `int'} */
811square (x) /* @r{identifier, open-paren,} */
812 /* @r{identifier, close-paren} */
813 int x; /* @r{keyword `int', identifier, semicolon} */
814@{ /* @r{open-brace} */
815 return x * x; /* @r{keyword `return', identifier,} */
816 /* @r{asterisk, identifier, semicolon} */
817@} /* @r{close-brace} */
818@end example
819
820The syntactic groupings of C include the expression, the statement, the
821declaration, and the function definition. These are represented in the
822grammar of C by nonterminal symbols `expression', `statement',
823`declaration' and `function definition'. The full grammar uses dozens of
824additional language constructs, each with its own nonterminal symbol, in
825order to express the meanings of these four. The example above is a
826function definition; it contains one declaration, and one statement. In
827the statement, each @samp{x} is an expression and so is @samp{x * x}.
828
829Each nonterminal symbol must have grammatical rules showing how it is made
830out of simpler constructs. For example, one kind of C statement is the
831@code{return} statement; this would be described with a grammar rule which
832reads informally as follows:
833
834@quotation
835A `statement' can be made of a `return' keyword, an `expression' and a
836`semicolon'.
837@end quotation
838
839@noindent
840There would be many other rules for `statement', one for each kind of
841statement in C.
842
843@cindex start symbol
844One nonterminal symbol must be distinguished as the special one which
845defines a complete utterance in the language. It is called the @dfn{start
846symbol}. In a compiler, this means a complete input program. In the C
847language, the nonterminal symbol `sequence of definitions and declarations'
848plays this role.
849
850For example, @samp{1 + 2} is a valid C expression---a valid part of a C
851program---but it is not valid as an @emph{entire} C program. In the
852context-free grammar of C, this follows from the fact that `expression' is
853not the start symbol.
854
855The Bison parser reads a sequence of tokens as its input, and groups the
856tokens using the grammar rules. If the input is valid, the end result is
857that the entire token sequence reduces to a single grouping whose symbol is
858the grammar's start symbol. If we use a grammar for C, the entire input
859must be a `sequence of definitions and declarations'. If not, the parser
860reports a syntax error.
861
862@node Grammar in Bison, Semantic Values, Language and Grammar, Concepts
863@section From Formal Rules to Bison Input
864@cindex Bison grammar
865@cindex grammar, Bison
866@cindex formal grammar
867
868A formal grammar is a mathematical construct. To define the language
869for Bison, you must write a file expressing the grammar in Bison syntax:
870a @dfn{Bison grammar} file. @xref{Grammar File, ,Bison Grammar Files}.
871
872A nonterminal symbol in the formal grammar is represented in Bison input
873as an identifier, like an identifier in C. By convention, it should be
874in lower case, such as @code{expr}, @code{stmt} or @code{declaration}.
875
876The Bison representation for a terminal symbol is also called a @dfn{token
877type}. Token types as well can be represented as C-like identifiers. By
878convention, these identifiers should be upper case to distinguish them from
879nonterminals: for example, @code{INTEGER}, @code{IDENTIFIER}, @code{IF} or
880@code{RETURN}. A terminal symbol that stands for a particular keyword in
881the language should be named after that keyword converted to upper case.
882The terminal symbol @code{error} is reserved for error recovery.
883@xref{Symbols}.@refill
884
885A terminal symbol can also be represented as a character literal, just like
886a C character constant. You should do this whenever a token is just a
887single character (parenthesis, plus-sign, etc.): use that same character in
888a literal as the terminal symbol for that token.
889
890The grammar rules also have an expression in Bison syntax. For example,
891here is the Bison rule for a C @code{return} statement. The semicolon in
892quotes is a literal character token, representing part of the C syntax for
893the statement; the naked semicolon, and the colon, are Bison punctuation
894used in every rule.
895
896@example
897stmt: RETURN expr ';'
898 ;
899@end example
900
901@noindent
902@xref{Rules, ,Syntax of Grammar Rules}.
903
904@node Semantic Values, Semantic Actions, Grammar in Bison, Concepts
905@section Semantic Values
906@cindex semantic value
907@cindex value, semantic
908
909A formal grammar selects tokens only by their classifications: for example,
910if a rule mentions the terminal symbol `integer constant', it means that
911@emph{any} integer constant is grammatically valid in that position. The
912precise value of the constant is irrelevant to how to parse the input: if
913@samp{x+4} is grammatical then @samp{x+1} or @samp{x+3989} is equally
914grammatical.@refill
915
916But the precise value is very important for what the input means once it is
917parsed. A compiler is useless if it fails to distinguish between 4, 1 and
9183989 as constants in the program! Therefore, each token in a Bison grammar
919has both a token type and a @dfn{semantic value}. @xref{Semantics, ,Defining Language Semantics},
920for details.
921
922The token type is a terminal symbol defined in the grammar, such as
923@code{INTEGER}, @code{IDENTIFIER} or @code{','}. It tells everything
924you need to know to decide where the token may validly appear and how to
925group it with other tokens. The grammar rules know nothing about tokens
926except their types.@refill
927
928The semantic value has all the rest of the information about the
929meaning of the token, such as the value of an integer, or the name of an
930identifier. (A token such as @code{','} which is just punctuation doesn't
931need to have any semantic value.)
932
933For example, an input token might be classified as token type
934@code{INTEGER} and have the semantic value 4. Another input token might
935have the same token type @code{INTEGER} but value 3989. When a grammar
936rule says that @code{INTEGER} is allowed, either of these tokens is
937acceptable because each is an @code{INTEGER}. When the parser accepts the
938token, it keeps track of the token's semantic value.
939
940Each grouping can also have a semantic value as well as its nonterminal
941symbol. For example, in a calculator, an expression typically has a
942semantic value that is a number. In a compiler for a programming
943language, an expression typically has a semantic value that is a tree
944structure describing the meaning of the expression.
945
946@node Semantic Actions, Bison Parser, Semantic Values, Concepts
947@section Semantic Actions
948@cindex semantic actions
949@cindex actions, semantic
950
951In order to be useful, a program must do more than parse input; it must
952also produce some output based on the input. In a Bison grammar, a grammar
953rule can have an @dfn{action} made up of C statements. Each time the
954parser recognizes a match for that rule, the action is executed.
955@xref{Actions}.
956
957Most of the time, the purpose of an action is to compute the semantic value
958of the whole construct from the semantic values of its parts. For example,
959suppose we have a rule which says an expression can be the sum of two
960expressions. When the parser recognizes such a sum, each of the
961subexpressions has a semantic value which describes how it was built up.
962The action for this rule should create a similar sort of value for the
963newly recognized larger expression.
964
965For example, here is a rule that says an expression can be the sum of
966two subexpressions:
967
968@example
969expr: expr '+' expr @{ $$ = $1 + $3; @}
970 ;
971@end example
972
973@noindent
974The action says how to produce the semantic value of the sum expression
975from the values of the two subexpressions.
976
977@node Bison Parser, Stages, Semantic Actions, Concepts
978@section Bison Output: the Parser File
979@cindex Bison parser
980@cindex Bison utility
981@cindex lexical analyzer, purpose
982@cindex parser
983
984When you run Bison, you give it a Bison grammar file as input. The output
985is a C source file that parses the language described by the grammar.
986This file is called a @dfn{Bison parser}. Keep in mind that the Bison
987utility and the Bison parser are two distinct programs: the Bison utility
988is a program whose output is the Bison parser that becomes part of your
989program.
990
991The job of the Bison parser is to group tokens into groupings according to
992the grammar rules---for example, to build identifiers and operators into
993expressions. As it does this, it runs the actions for the grammar rules it
994uses.
995
996The tokens come from a function called the @dfn{lexical analyzer} that you
997must supply in some fashion (such as by writing it in C). The Bison parser
998calls the lexical analyzer each time it wants a new token. It doesn't know
999what is ``inside'' the tokens (though their semantic values may reflect
1000this). Typically the lexical analyzer makes the tokens by parsing
1001characters of text, but Bison does not depend on this. @xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}.
1002
1003The Bison parser file is C code which defines a function named
1004@code{yyparse} which implements that grammar. This function does not make
1005a complete C program: you must supply some additional functions. One is
1006the lexical analyzer. Another is an error-reporting function which the
1007parser calls to report an error. In addition, a complete C program must
1008start with a function called @code{main}; you have to provide this, and
1009arrange for it to call @code{yyparse} or the parser will never run.
1010@xref{Interface, ,Parser C-Language Interface}.
1011
1012Aside from the token type names and the symbols in the actions you
1013write, all variable and function names used in the Bison parser file
1014begin with @samp{yy} or @samp{YY}. This includes interface functions
1015such as the lexical analyzer function @code{yylex}, the error reporting
1016function @code{yyerror} and the parser function @code{yyparse} itself.
1017This also includes numerous identifiers used for internal purposes.
1018Therefore, you should avoid using C identifiers starting with @samp{yy}
1019or @samp{YY} in the Bison grammar file except for the ones defined in
1020this manual.
1021
1022@node Stages, Grammar Layout, Bison Parser, Concepts
1023@section Stages in Using Bison
1024@cindex stages in using Bison
1025@cindex using Bison
1026
1027The actual language-design process using Bison, from grammar specification
1028to a working compiler or interpreter, has these parts:
1029
1030@enumerate
1031@item
1032Formally specify the grammar in a form recognized by Bison
1033(@pxref{Grammar File, ,Bison Grammar Files}). For each grammatical rule in the language,
1034describe the action that is to be taken when an instance of that rule
1035is recognized. The action is described by a sequence of C statements.
1036
1037@item
1038Write a lexical analyzer to process input and pass tokens to the
1039parser. The lexical analyzer may be written by hand in C
1040(@pxref{Lexical, ,The Lexical Analyzer Function @code{yylex}}). It could also be produced using Lex, but the use
1041of Lex is not discussed in this manual.
1042
1043@item
1044Write a controlling function that calls the Bison-produced parser.
1045
1046@item
1047Write error-reporting routines.
1048@end enumerate
1049
1050To turn this source code as written into a runnable program, you
1051must follow these steps:
1052
1053@enumerate
1054@item
1055Run Bison on the grammar to produce the parser.
1056
1057@item
1058Compile the code output by Bison, as well as any other source files.
1059
1060@item
1061Link the object files to produce the finished product.
1062@end enumerate
1063
1064@node Grammar Layout, , Stages, Concepts
1065@section The Overall Layout of a Bison Grammar
1066@cindex grammar file
1067@cindex file format
1068@cindex format of grammar file
1069@cindex layout of Bison grammar
1070
1071The input file for the Bison utility is a @dfn{Bison grammar file}. The
1072general form of a Bison grammar file is as follows:
1073
1074@example
1075%@{
1076@var{C declarations}
1077%@}
1078
1079@var{Bison declarations}
1080
1081%%
1082@var{Grammar rules}
1083%%
1084@var{Additional C code}
1085@end example
1086
1087@noindent
1088The @samp{%%}, @samp{%@{} and @samp{%@}} are punctuation that appears
1089in every Bison grammar file to separate the sections.
1090
1091The C declarations may define types and variables used in the actions.
1092You can also use preprocessor commands to define macros used there, and use
1093@code{#include} to include header files that do any of these things.
1094
1095The Bison declarations declare the names of the terminal and nonterminal
1096symbols, and may also describe operator precedence and the data types of
1097semantic values of various symbols.
1098
1099The grammar rules define how to construct each nonterminal symbol from its
1100parts.
1101
1102The additional C code can contain any C code you want to use. Often the
1103definition of the lexical analyzer @code{yylex} goes here, plus subroutines
1104called by the actions in the grammar rules. In a simple program, all the
1105rest of the program can go here.
1106
1107@node Examples, Grammar File, Concepts, Top
1108@chapter Examples
1109@cindex simple examples
1110@cindex examples, simple
1111
1112Now we show and explain three sample programs written using Bison: a
1113reverse polish notation calculator, an algebraic (infix) notation
1114calculator, and a multi-function calculator. All three have been tested
1115under BSD Unix 4.3; each produces a usable, though limited, interactive
1116desk-top calculator.
1117
1118These examples are simple, but Bison grammars for real programming
1119languages are written the same way.
1120@ifinfo
1121You can copy these examples out of the Info file and into a source file
1122to try them.
1123@end ifinfo
1124
1125@menu
1126* RPN Calc:: Reverse polish notation calculator;
1127 a first example with no operator precedence.
1128* Infix Calc:: Infix (algebraic) notation calculator.
1129 Operator precedence is introduced.
1130* Simple Error Recovery:: Continuing after syntax errors.
1131* Multi-function Calc:: Calculator with memory and trig functions.
1132 It uses multiple data-types for semantic values.
1133* Exercises:: Ideas for improving the multi-function calculator.
1134@end menu
1135
1136@node RPN Calc, Infix Calc, , Examples
1137@section Reverse Polish Notation Calculator
1138@cindex reverse polish notation
1139@cindex polish notation calculator
1140@cindex @code{rpcalc}
1141@cindex calculator, simple
1142
1143The first example is that of a simple double-precision @dfn{reverse polish
1144notation} calculator (a calculator using postfix operators). This example
1145provides a good starting point, since operator precedence is not an issue.
1146The second example will illustrate how operator precedence is handled.
1147
1148The source code for this calculator is named @file{rpcalc.y}. The
1149@samp{.y} extension is a convention used for Bison input files.
1150
1151@menu
1152* Decls: Rpcalc Decls. Bison and C declarations for rpcalc.
1153* Rules: Rpcalc Rules. Grammar Rules for rpcalc, with explanation.
1154* Lexer: Rpcalc Lexer. The lexical analyzer.
1155* Main: Rpcalc Main. The controlling function.
1156* Error: Rpcalc Error. The error reporting function.
1157* Gen: Rpcalc Gen. Running Bison on the grammar file.
1158* Comp: Rpcalc Compile. Run the C compiler on the output code.
1159@end menu
1160
1161@node Rpcalc Decls, Rpcalc Rules, , RPN Calc
1162@subsection Declarations for @code{rpcalc}
1163
1164Here are the C and Bison declarations for the reverse polish notation
1165calculator. As in C, comments are placed between @samp{/*@dots{}*/}.
1166
1167@example
1168/* Reverse polish notation calculator. */
1169
1170%@{
1171#define YYSTYPE double
1172#include <math.h>
1173%@}
1174
1175%token NUM
1176
1177%% /* Grammar rules and actions follow */
1178@end example
1179
1180The C declarations section (@pxref{C Declarations, ,The C Declarations Section}) contains two
1181preprocessor directives.
1182
1183The @code{#define} directive defines the macro @code{YYSTYPE}, thus
1184specifying the C data type for semantic values of both tokens and groupings
1185(@pxref{Value Type, ,Data Types of Semantic Values}). The Bison parser will use whatever type
1186@code{YYSTYPE} is defined as; if you don't define it, @code{int} is the
1187default. Because we specify @code{double}, each token and each expression
1188has an associated value, which is a floating point number.
1189
1190The @code{#include} directive is used to declare the exponentiation
1191function @code{pow}.
1192
1193The second section, Bison declarations, provides information to Bison about
1194the token types (@pxref{Bison Declarations, ,The Bison Declarations Section}). Each terminal symbol that is
1195not a single-character literal must be declared here. (Single-character
1196literals normally don't need to be declared.) In this example, all the
1197arithmetic operators are designated by single-character literals, so the
1198only terminal symbol that needs to be declared is @code{NUM}, the token
1199type for numeric constants.
1200
1201@node Rpcalc Rules, Rpcalc Lexer, Rpcalc Decls, RPN Calc
1202@subsection Grammar Rules for @code{rpcalc}
1203
1204Here are the grammar rules for the reverse polish notation calculator.
1205
1206@example
1207input: /* empty */
1208 | input line
1209;
1210
1211line: '\n'
1212 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1213;
1214
1215exp: NUM @{ $$ = $1; @}
1216 | exp exp '+' @{ $$ = $1 + $2; @}
1217 | exp exp '-' @{ $$ = $1 - $2; @}
1218 | exp exp '*' @{ $$ = $1 * $2; @}
1219 | exp exp '/' @{ $$ = $1 / $2; @}
1220 /* Exponentiation */
1221 | exp exp '^' @{ $$ = pow ($1, $2); @}
1222 /* Unary minus */
1223 | exp 'n' @{ $$ = -$1; @}
1224;
1225%%
1226@end example
1227
1228The groupings of the rpcalc ``language'' defined here are the expression
1229(given the name @code{exp}), the line of input (@code{line}), and the
1230complete input transcript (@code{input}). Each of these nonterminal
1231symbols has several alternate rules, joined by the @samp{|} punctuator
1232which is read as ``or''. The following sections explain what these rules
1233mean.
1234
1235The semantics of the language is determined by the actions taken when a
1236grouping is recognized. The actions are the C code that appears inside
1237braces. @xref{Actions}.
1238
1239You must specify these actions in C, but Bison provides the means for
1240passing semantic values between the rules. In each action, the
1241pseudo-variable @code{$$} stands for the semantic value for the grouping
1242that the rule is going to construct. Assigning a value to @code{$$} is the
1243main job of most actions. The semantic values of the components of the
1244rule are referred to as @code{$1}, @code{$2}, and so on.
1245
1246@menu
1247* Rpcalc Input::
1248* Rpcalc Line::
1249* Rpcalc Expr::
1250@end menu
1251
1252@node Rpcalc Input, Rpcalc Line, , Rpcalc Rules
1253@subsubsection Explanation of @code{input}
1254
1255Consider the definition of @code{input}:
1256
1257@example
1258input: /* empty */
1259 | input line
1260;
1261@end example
1262
1263This definition reads as follows: ``A complete input is either an empty
1264string, or a complete input followed by an input line''. Notice that
1265``complete input'' is defined in terms of itself. This definition is said
1266to be @dfn{left recursive} since @code{input} appears always as the
1267leftmost symbol in the sequence. @xref{Recursion, ,Recursive Rules}.
1268
1269The first alternative is empty because there are no symbols between the
1270colon and the first @samp{|}; this means that @code{input} can match an
1271empty string of input (no tokens). We write the rules this way because it
1272is legitimate to type @kbd{Ctrl-d} right after you start the calculator.
1273It's conventional to put an empty alternative first and write the comment
1274@samp{/* empty */} in it.
1275
1276The second alternate rule (@code{input line}) handles all nontrivial input.
1277It means, ``After reading any number of lines, read one more line if
1278possible.'' The left recursion makes this rule into a loop. Since the
1279first alternative matches empty input, the loop can be executed zero or
1280more times.
1281
1282The parser function @code{yyparse} continues to process input until a
1283grammatical error is seen or the lexical analyzer says there are no more
1284input tokens; we will arrange for the latter to happen at end of file.
1285
1286@node Rpcalc Line, Rpcalc Expr, Rpcalc Input, Rpcalc Rules
1287@subsubsection Explanation of @code{line}
1288
1289Now consider the definition of @code{line}:
1290
1291@example
1292line: '\n'
1293 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1294;
1295@end example
1296
1297The first alternative is a token which is a newline character; this means
1298that rpcalc accepts a blank line (and ignores it, since there is no
1299action). The second alternative is an expression followed by a newline.
1300This is the alternative that makes rpcalc useful. The semantic value of
1301the @code{exp} grouping is the value of @code{$1} because the @code{exp} in
1302question is the first symbol in the alternative. The action prints this
1303value, which is the result of the computation the user asked for.
1304
1305This action is unusual because it does not assign a value to @code{$$}. As
1306a consequence, the semantic value associated with the @code{line} is
1307uninitialized (its value will be unpredictable). This would be a bug if
1308that value were ever used, but we don't use it: once rpcalc has printed the
1309value of the user's input line, that value is no longer needed.
1310
1311@node Rpcalc Expr, , Rpcalc Line, Rpcalc Rules
1312@subsubsection Explanation of @code{expr}
1313
1314The @code{exp} grouping has several rules, one for each kind of expression.
1315The first rule handles the simplest expressions: those that are just numbers.
1316The second handles an addition-expression, which looks like two expressions
1317followed by a plus-sign. The third handles subtraction, and so on.
1318
1319@example
1320exp: NUM
1321 | exp exp '+' @{ $$ = $1 + $2; @}
1322 | exp exp '-' @{ $$ = $1 - $2; @}
1323 @dots{}
1324 ;
1325@end example
1326
1327We have used @samp{|} to join all the rules for @code{exp}, but we could
1328equally well have written them separately:
1329
1330@example
1331exp: NUM ;
1332exp: exp exp '+' @{ $$ = $1 + $2; @} ;
1333exp: exp exp '-' @{ $$ = $1 - $2; @} ;
1334 @dots{}
1335@end example
1336
1337Most of the rules have actions that compute the value of the expression in
1338terms of the value of its parts. For example, in the rule for addition,
1339@code{$1} refers to the first component @code{exp} and @code{$2} refers to
1340the second one. The third component, @code{'+'}, has no meaningful
1341associated semantic value, but if it had one you could refer to it as
1342@code{$3}. When @code{yyparse} recognizes a sum expression using this
1343rule, the sum of the two subexpressions' values is produced as the value of
1344the entire expression. @xref{Actions}.
1345
1346You don't have to give an action for every rule. When a rule has no
1347action, Bison by default copies the value of @code{$1} into @code{$$}.
1348This is what happens in the first rule (the one that uses @code{NUM}).
1349
1350The formatting shown here is the recommended convention, but Bison does
1351not require it. You can add or change whitespace as much as you wish.
1352For example, this:
1353
1354@example
1355exp : NUM | exp exp '+' @{$$ = $1 + $2; @} | @dots{}
1356@end example
1357
1358@noindent
1359means the same thing as this:
1360
1361@example
1362exp: NUM
1363 | exp exp '+' @{ $$ = $1 + $2; @}
1364 | @dots{}
1365@end example
1366
1367@noindent
1368The latter, however, is much more readable.
1369
1370@node Rpcalc Lexer, Rpcalc Main, Rpcalc Rules, RPN Calc
1371@subsection The @code{rpcalc} Lexical Analyzer
1372@cindex writing a lexical analyzer
1373@cindex lexical analyzer, writing
1374
1375The lexical analyzer's job is low-level parsing: converting characters or
1376sequences of characters into tokens. The Bison parser gets its tokens by
1377calling the lexical analyzer. @xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}.
1378
1379Only a simple lexical analyzer is needed for the RPN calculator. This
1380lexical analyzer skips blanks and tabs, then reads in numbers as
1381@code{double} and returns them as @code{NUM} tokens. Any other character
1382that isn't part of a number is a separate token. Note that the token-code
1383for such a single-character token is the character itself.
1384
1385The return value of the lexical analyzer function is a numeric code which
1386represents a token type. The same text used in Bison rules to stand for
1387this token type is also a C expression for the numeric code for the type.
1388This works in two ways. If the token type is a character literal, then its
1389numeric code is the ASCII code for that character; you can use the same
1390character literal in the lexical analyzer to express the number. If the
1391token type is an identifier, that identifier is defined by Bison as a C
1392macro whose definition is the appropriate number. In this example,
1393therefore, @code{NUM} becomes a macro for @code{yylex} to use.
1394
1395The semantic value of the token (if it has one) is stored into the global
1396variable @code{yylval}, which is where the Bison parser will look for it.
1397(The C data type of @code{yylval} is @code{YYSTYPE}, which was defined
1398at the beginning of the grammar; @pxref{Rpcalc Decls, ,Declarations for @code{rpcalc}}.)
1399
1400A token type code of zero is returned if the end-of-file is encountered.
1401(Bison recognizes any nonpositive value as indicating the end of the
1402input.)
1403
1404Here is the code for the lexical analyzer:
1405
1406@example
1407@group
1408/* Lexical analyzer returns a double floating point
1409 number on the stack and the token NUM, or the ASCII
1410 character read if not a number. Skips all blanks
1411 and tabs, returns 0 for EOF. */
1412
1413#include <ctype.h>
1414@end group
1415
1416@group
1417yylex ()
1418@{
1419 int c;
1420
1421 /* skip white space */
1422 while ((c = getchar ()) == ' ' || c == '\t')
1423 ;
1424@end group
1425@group
1426 /* process numbers */
1427 if (c == '.' || isdigit (c))
1428 @{
1429 ungetc (c, stdin);
1430 scanf ("%lf", &yylval);
1431 return NUM;
1432 @}
1433@end group
1434@group
1435 /* return end-of-file */
1436 if (c == EOF)
1437 return 0;
1438 /* return single chars */
1439 return c;
1440@}
1441@end group
1442@end example
1443
1444@node Rpcalc Main, Rpcalc Error, Rpcalc Lexer, RPN Calc
1445@subsection The Controlling Function
1446@cindex controlling function
1447@cindex main function in simple example
1448
1449In keeping with the spirit of this example, the controlling function is
1450kept to the bare minimum. The only requirement is that it call
1451@code{yyparse} to start the process of parsing.
1452
1453@example
1454@group
1455main ()
1456@{
1457 yyparse ();
1458@}
1459@end group
1460@end example
1461
1462@node Rpcalc Error, Rpcalc Gen, Rpcalc Main, RPN Calc
1463@subsection The Error Reporting Routine
1464@cindex error reporting routine
1465
1466When @code{yyparse} detects a syntax error, it calls the error reporting
1467function @code{yyerror} to print an error message (usually but not always
1468@code{"parse error"}). It is up to the programmer to supply @code{yyerror}
1469(@pxref{Interface, ,Parser C-Language Interface}), so here is the definition we will use:
1470
1471@example
1472@group
1473#include <stdio.h>
1474
1475yyerror (s) /* Called by yyparse on error */
1476 char *s;
1477@{
1478 printf ("%s\n", s);
1479@}
1480@end group
1481@end example
1482
1483After @code{yyerror} returns, the Bison parser may recover from the error
1484and continue parsing if the grammar contains a suitable error rule
1485(@pxref{Error Recovery}). Otherwise, @code{yyparse} returns nonzero. We
1486have not written any error rules in this example, so any invalid input will
1487cause the calculator program to exit. This is not clean behavior for a
1488real calculator, but it is adequate in the first example.
1489
1490@node Rpcalc Gen, Rpcalc Compile, Rpcalc Error, RPN Calc
1491@subsection Running Bison to Make the Parser
1492@cindex running Bison (introduction)
1493
1494Before running Bison to produce a parser, we need to decide how to arrange
1495all the source code in one or more source files. For such a simple example,
1496the easiest thing is to put everything in one file. The definitions of
1497@code{yylex}, @code{yyerror} and @code{main} go at the end, in the
1498``additional C code'' section of the file (@pxref{Grammar Layout, ,The Overall Layout of a Bison Grammar}).
1499
1500For a large project, you would probably have several source files, and use
1501@code{make} to arrange to recompile them.
1502
1503With all the source in a single file, you use the following command to
1504convert it into a parser file:
1505
1506@example
1507bison @var{file_name}.y
1508@end example
1509
1510@noindent
1511In this example the file was called @file{rpcalc.y} (for ``Reverse Polish
1512CALCulator''). Bison produces a file named @file{@var{file_name}.tab.c},
1513removing the @samp{.y} from the original file name. The file output by
1514Bison contains the source code for @code{yyparse}. The additional
1515functions in the input file (@code{yylex}, @code{yyerror} and @code{main})
1516are copied verbatim to the output.
1517
1518@node Rpcalc Compile, , Rpcalc Gen, RPN Calc
1519@subsection Compiling the Parser File
1520@cindex compiling the parser
1521
1522Here is how to compile and run the parser file:
1523
1524@example
1525@group
1526# @r{List files in current directory.}
1527% ls
1528rpcalc.tab.c rpcalc.y
1529@end group
1530
1531@group
1532# @r{Compile the Bison parser.}
1533# @r{@samp{-lm} tells compiler to search math library for @code{pow}.}
1534% cc rpcalc.tab.c -lm -o rpcalc
1535@end group
1536
1537@group
1538# @r{List files again.}
1539% ls
1540rpcalc rpcalc.tab.c rpcalc.y
1541@end group
1542@end example
1543
1544The file @file{rpcalc} now contains the executable code. Here is an
1545example session using @code{rpcalc}.
1546
1547@example
1548% rpcalc
15494 9 +
155013
15513 7 + 3 4 5 *+-
1552-13
15533 7 + 3 4 5 * + - n @r{Note the unary minus, @samp{n}}
155413
15555 6 / 4 n +
1556-3.166666667
15573 4 ^ @r{Exponentiation}
155881
1559^D @r{End-of-file indicator}
1560%
1561@end example
1562
1563@node Infix Calc, Simple Error Recovery, RPN Calc, Examples
1564@section Infix Notation Calculator: @code{calc}
1565@cindex infix notation calculator
1566@cindex @code{calc}
1567@cindex calculator, infix notation
1568
1569We now modify rpcalc to handle infix operators instead of postfix. Infix
1570notation involves the concept of operator precedence and the need for
1571parentheses nested to arbitrary depth. Here is the Bison code for
1572@file{calc.y}, an infix desk-top calculator.
1573
1574@example
1575/* Infix notation calculator--calc */
1576
1577%@{
1578#define YYSTYPE double
1579#include <math.h>
1580%@}
1581
1582/* BISON Declarations */
1583%token NUM
1584%left '-' '+'
1585%left '*' '/'
1586%left NEG /* negation--unary minus */
1587%right '^' /* exponentiation */
1588
1589/* Grammar follows */
1590%%
1591input: /* empty string */
1592 | input line
1593;
1594
1595line: '\n'
1596 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1597;
1598
1599exp: NUM @{ $$ = $1; @}
1600 | exp '+' exp @{ $$ = $1 + $3; @}
1601 | exp '-' exp @{ $$ = $1 - $3; @}
1602 | exp '*' exp @{ $$ = $1 * $3; @}
1603 | exp '/' exp @{ $$ = $1 / $3; @}
1604 | '-' exp %prec NEG @{ $$ = -$2; @}
1605 | exp '^' exp @{ $$ = pow ($1, $3); @}
1606 | '(' exp ')' @{ $$ = $2; @}
1607;
1608%%
1609@end example
1610
1611@noindent
1612The functions @code{yylex}, @code{yyerror} and @code{main} can be the same
1613as before.
1614
1615There are two important new features shown in this code.
1616
1617In the second section (Bison declarations), @code{%left} declares token
1618types and says they are left-associative operators. The declarations
1619@code{%left} and @code{%right} (right associativity) take the place of
1620@code{%token} which is used to declare a token type name without
1621associativity. (These tokens are single-character literals, which
1622ordinarily don't need to be declared. We declare them here to specify
1623the associativity.)
1624
1625Operator precedence is determined by the line ordering of the
1626declarations; the higher the line number of the declaration (lower on
1627the page or screen), the higher the precedence. Hence, exponentiation
1628has the highest precedence, unary minus (@code{NEG}) is next, followed
1629by @samp{*} and @samp{/}, and so on. @xref{Precedence, ,Operator Precedence}.
1630
1631The other important new feature is the @code{%prec} in the grammar section
1632for the unary minus operator. The @code{%prec} simply instructs Bison that
1633the rule @samp{| '-' exp} has the same precedence as @code{NEG}---in this
1634case the next-to-highest. @xref{Contextual Precedence, ,Context-Dependent Precedence}.
1635
1636Here is a sample run of @file{calc.y}:
1637
1638@need 500
1639@example
1640% calc
16414 + 4.5 - (34/(8*3+-3))
16426.880952381
1643-56 + 2
1644-54
16453 ^ 2
16469
1647@end example
1648
1649@node Simple Error Recovery, Multi-function Calc, Infix Calc, Examples
1650@section Simple Error Recovery
1651@cindex error recovery, simple
1652
1653Up to this point, this manual has not addressed the issue of @dfn{error
1654recovery}---how to continue parsing after the parser detects a syntax
1655error. All we have handled is error reporting with @code{yyerror}. Recall
1656that by default @code{yyparse} returns after calling @code{yyerror}. This
1657means that an erroneous input line causes the calculator program to exit.
1658Now we show how to rectify this deficiency.
1659
1660The Bison language itself includes the reserved word @code{error}, which
1661may be included in the grammar rules. In the example below it has
1662been added to one of the alternatives for @code{line}:
1663
1664@example
1665@group
1666line: '\n'
1667 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1668 | error '\n' @{ yyerrok; @}
1669;
1670@end group
1671@end example
1672
1673This addition to the grammar allows for simple error recovery in the event
1674of a parse error. If an expression that cannot be evaluated is read, the
1675error will be recognized by the third rule for @code{line}, and parsing
1676will continue. (The @code{yyerror} function is still called upon to print
1677its message as well.) The action executes the statement @code{yyerrok}, a
1678macro defined automatically by Bison; its meaning is that error recovery is
1679complete (@pxref{Error Recovery}). Note the difference between
1680@code{yyerrok} and @code{yyerror}; neither one is a misprint.@refill
1681
1682This form of error recovery deals with syntax errors. There are other
1683kinds of errors; for example, division by zero, which raises an exception
1684signal that is normally fatal. A real calculator program must handle this
1685signal and use @code{longjmp} to return to @code{main} and resume parsing
1686input lines; it would also have to discard the rest of the current line of
1687input. We won't discuss this issue further because it is not specific to
1688Bison programs.
1689
1690@node Multi-function Calc, Exercises, Simple Error Recovery, Examples
1691@section Multi-Function Calculator: @code{mfcalc}
1692@cindex multi-function calculator
1693@cindex @code{mfcalc}
1694@cindex calculator, multi-function
1695
1696Now that the basics of Bison have been discussed, it is time to move on to
1697a more advanced problem. The above calculators provided only five
1698functions, @samp{+}, @samp{-}, @samp{*}, @samp{/} and @samp{^}. It would
1699be nice to have a calculator that provides other mathematical functions such
1700as @code{sin}, @code{cos}, etc.
1701
1702It is easy to add new operators to the infix calculator as long as they are
1703only single-character literals. The lexical analyzer @code{yylex} passes
1704back all non-number characters as tokens, so new grammar rules suffice for
1705adding a new operator. But we want something more flexible: built-in
1706functions whose syntax has this form:
1707
1708@example
1709@var{function_name} (@var{argument})
1710@end example
1711
1712@noindent
1713At the same time, we will add memory to the calculator, by allowing you
1714to create named variables, store values in them, and use them later.
1715Here is a sample session with the multi-function calculator:
1716
1717@example
2a2e87db 1718% mfcalc
bfa74976
RS
1719pi = 3.141592653589
17203.1415926536
1721sin(pi)
17220.0000000000
1723alpha = beta1 = 2.3
17242.3000000000
1725alpha
17262.3000000000
1727ln(alpha)
17280.8329091229
1729exp(ln(beta1))
17302.3000000000
1731%
1732@end example
1733
1734Note that multiple assignment and nested function calls are permitted.
1735
1736@menu
1737* Decl: Mfcalc Decl. Bison declarations for multi-function calculator.
1738* Rules: Mfcalc Rules. Grammar rules for the calculator.
1739* Symtab: Mfcalc Symtab. Symbol table management subroutines.
1740@end menu
1741
1742@node Mfcalc Decl, Mfcalc Rules, , Multi-function Calc
1743@subsection Declarations for @code{mfcalc}
1744
1745Here are the C and Bison declarations for the multi-function calculator.
1746
1747@smallexample
1748%@{
1749#include <math.h> /* For math functions, cos(), sin(), etc. */
1750#include "calc.h" /* Contains definition of `symrec' */
1751%@}
1752%union @{
1753double val; /* For returning numbers. */
1754symrec *tptr; /* For returning symbol-table pointers */
1755@}
1756
1757%token <val> NUM /* Simple double precision number */
1758%token <tptr> VAR FNCT /* Variable and Function */
1759%type <val> exp
1760
1761%right '='
1762%left '-' '+'
1763%left '*' '/'
1764%left NEG /* Negation--unary minus */
1765%right '^' /* Exponentiation */
1766
1767/* Grammar follows */
1768
1769%%
1770@end smallexample
1771
1772The above grammar introduces only two new features of the Bison language.
1773These features allow semantic values to have various data types
1774(@pxref{Multiple Types, ,More Than One Value Type}).
1775
1776The @code{%union} declaration specifies the entire list of possible types;
1777this is instead of defining @code{YYSTYPE}. The allowable types are now
1778double-floats (for @code{exp} and @code{NUM}) and pointers to entries in
1779the symbol table. @xref{Union Decl, ,The Collection of Value Types}.
1780
1781Since values can now have various types, it is necessary to associate a
1782type with each grammar symbol whose semantic value is used. These symbols
1783are @code{NUM}, @code{VAR}, @code{FNCT}, and @code{exp}. Their
1784declarations are augmented with information about their data type (placed
1785between angle brackets).
1786
1787The Bison construct @code{%type} is used for declaring nonterminal symbols,
1788just as @code{%token} is used for declaring token types. We have not used
1789@code{%type} before because nonterminal symbols are normally declared
1790implicitly by the rules that define them. But @code{exp} must be declared
1791explicitly so we can specify its value type. @xref{Type Decl, ,Nonterminal Symbols}.
1792
1793@node Mfcalc Rules, Mfcalc Symtab, Mfcalc Decl, Multi-function Calc
1794@subsection Grammar Rules for @code{mfcalc}
1795
1796Here are the grammar rules for the multi-function calculator.
1797Most of them are copied directly from @code{calc}; three rules,
1798those which mention @code{VAR} or @code{FNCT}, are new.
1799
1800@smallexample
1801input: /* empty */
1802 | input line
1803;
1804
1805line:
1806 '\n'
1807 | exp '\n' @{ printf ("\t%.10g\n", $1); @}
1808 | error '\n' @{ yyerrok; @}
1809;
1810
1811exp: NUM @{ $$ = $1; @}
1812 | VAR @{ $$ = $1->value.var; @}
1813 | VAR '=' exp @{ $$ = $3; $1->value.var = $3; @}
1814 | FNCT '(' exp ')' @{ $$ = (*($1->value.fnctptr))($3); @}
1815 | exp '+' exp @{ $$ = $1 + $3; @}
1816 | exp '-' exp @{ $$ = $1 - $3; @}
1817 | exp '*' exp @{ $$ = $1 * $3; @}
1818 | exp '/' exp @{ $$ = $1 / $3; @}
1819 | '-' exp %prec NEG @{ $$ = -$2; @}
1820 | exp '^' exp @{ $$ = pow ($1, $3); @}
1821 | '(' exp ')' @{ $$ = $2; @}
1822;
1823/* End of grammar */
1824%%
1825@end smallexample
1826
1827@node Mfcalc Symtab, , Mfcalc Rules, Multi-function Calc
1828@subsection The @code{mfcalc} Symbol Table
1829@cindex symbol table example
1830
1831The multi-function calculator requires a symbol table to keep track of the
1832names and meanings of variables and functions. This doesn't affect the
1833grammar rules (except for the actions) or the Bison declarations, but it
1834requires some additional C functions for support.
1835
1836The symbol table itself consists of a linked list of records. Its
1837definition, which is kept in the header @file{calc.h}, is as follows. It
1838provides for either functions or variables to be placed in the table.
1839
1840@smallexample
1841@group
1842/* Data type for links in the chain of symbols. */
1843struct symrec
1844@{
1845 char *name; /* name of symbol */
1846 int type; /* type of symbol: either VAR or FNCT */
1847 union @{
1848 double var; /* value of a VAR */
1849 double (*fnctptr)(); /* value of a FNCT */
1850 @} value;
1851 struct symrec *next; /* link field */
1852@};
1853@end group
1854
1855@group
1856typedef struct symrec symrec;
1857
1858/* The symbol table: a chain of `struct symrec'. */
1859extern symrec *sym_table;
1860
1861symrec *putsym ();
1862symrec *getsym ();
1863@end group
1864@end smallexample
1865
1866The new version of @code{main} includes a call to @code{init_table}, a
1867function that initializes the symbol table. Here it is, and
1868@code{init_table} as well:
1869
1870@smallexample
1871@group
1872#include <stdio.h>
1873
1874main ()
1875@{
1876 init_table ();
1877 yyparse ();
1878@}
1879@end group
1880
1881@group
1882yyerror (s) /* Called by yyparse on error */
1883 char *s;
1884@{
1885 printf ("%s\n", s);
1886@}
1887
1888struct init
1889@{
1890 char *fname;
1891 double (*fnct)();
1892@};
1893@end group
1894
1895@group
1896struct init arith_fncts[]
1897 = @{
1898 "sin", sin,
1899 "cos", cos,
1900 "atan", atan,
1901 "ln", log,
1902 "exp", exp,
1903 "sqrt", sqrt,
1904 0, 0
1905 @};
1906
1907/* The symbol table: a chain of `struct symrec'. */
1908symrec *sym_table = (symrec *)0;
1909@end group
1910
1911@group
1912init_table () /* puts arithmetic functions in table. */
1913@{
1914 int i;
1915 symrec *ptr;
1916 for (i = 0; arith_fncts[i].fname != 0; i++)
1917 @{
1918 ptr = putsym (arith_fncts[i].fname, FNCT);
1919 ptr->value.fnctptr = arith_fncts[i].fnct;
1920 @}
1921@}
1922@end group
1923@end smallexample
1924
1925By simply editing the initialization list and adding the necessary include
1926files, you can add additional functions to the calculator.
1927
1928Two important functions allow look-up and installation of symbols in the
1929symbol table. The function @code{putsym} is passed a name and the type
1930(@code{VAR} or @code{FNCT}) of the object to be installed. The object is
1931linked to the front of the list, and a pointer to the object is returned.
1932The function @code{getsym} is passed the name of the symbol to look up. If
1933found, a pointer to that symbol is returned; otherwise zero is returned.
1934
1935@smallexample
1936symrec *
1937putsym (sym_name,sym_type)
1938 char *sym_name;
1939 int sym_type;
1940@{
1941 symrec *ptr;
1942 ptr = (symrec *) malloc (sizeof (symrec));
1943 ptr->name = (char *) malloc (strlen (sym_name) + 1);
1944 strcpy (ptr->name,sym_name);
1945 ptr->type = sym_type;
1946 ptr->value.var = 0; /* set value to 0 even if fctn. */
1947 ptr->next = (struct symrec *)sym_table;
1948 sym_table = ptr;
1949 return ptr;
1950@}
1951
1952symrec *
1953getsym (sym_name)
1954 char *sym_name;
1955@{
1956 symrec *ptr;
1957 for (ptr = sym_table; ptr != (symrec *) 0;
1958 ptr = (symrec *)ptr->next)
1959 if (strcmp (ptr->name,sym_name) == 0)
1960 return ptr;
1961 return 0;
1962@}
1963@end smallexample
1964
1965The function @code{yylex} must now recognize variables, numeric values, and
1966the single-character arithmetic operators. Strings of alphanumeric
1967characters with a leading nondigit are recognized as either variables or
1968functions depending on what the symbol table says about them.
1969
1970The string is passed to @code{getsym} for look up in the symbol table. If
1971the name appears in the table, a pointer to its location and its type
1972(@code{VAR} or @code{FNCT}) is returned to @code{yyparse}. If it is not
1973already in the table, then it is installed as a @code{VAR} using
1974@code{putsym}. Again, a pointer and its type (which must be @code{VAR}) is
1975returned to @code{yyparse}.@refill
1976
1977No change is needed in the handling of numeric values and arithmetic
1978operators in @code{yylex}.
1979
1980@smallexample
1981@group
1982#include <ctype.h>
1983yylex ()
1984@{
1985 int c;
1986
1987 /* Ignore whitespace, get first nonwhite character. */
1988 while ((c = getchar ()) == ' ' || c == '\t');
1989
1990 if (c == EOF)
1991 return 0;
1992@end group
1993
1994@group
1995 /* Char starts a number => parse the number. */
1996 if (c == '.' || isdigit (c))
1997 @{
1998 ungetc (c, stdin);
1999 scanf ("%lf", &yylval.val);
2000 return NUM;
2001 @}
2002@end group
2003
2004@group
2005 /* Char starts an identifier => read the name. */
2006 if (isalpha (c))
2007 @{
2008 symrec *s;
2009 static char *symbuf = 0;
2010 static int length = 0;
2011 int i;
2012@end group
2013
2014@group
2015 /* Initially make the buffer long enough
2016 for a 40-character symbol name. */
2017 if (length == 0)
2018 length = 40, symbuf = (char *)malloc (length + 1);
2019
2020 i = 0;
2021 do
2022@end group
2023@group
2024 @{
2025 /* If buffer is full, make it bigger. */
2026 if (i == length)
2027 @{
2028 length *= 2;
2029 symbuf = (char *)realloc (symbuf, length + 1);
2030 @}
2031 /* Add this character to the buffer. */
2032 symbuf[i++] = c;
2033 /* Get another character. */
2034 c = getchar ();
2035 @}
2036@end group
2037@group
2038 while (c != EOF && isalnum (c));
2039
2040 ungetc (c, stdin);
2041 symbuf[i] = '\0';
2042@end group
2043
2044@group
2045 s = getsym (symbuf);
2046 if (s == 0)
2047 s = putsym (symbuf, VAR);
2048 yylval.tptr = s;
2049 return s->type;
2050 @}
2051
2052 /* Any other character is a token by itself. */
2053 return c;
2054@}
2055@end group
2056@end smallexample
2057
2058This program is both powerful and flexible. You may easily add new
2059functions, and it is a simple job to modify this code to install predefined
2060variables such as @code{pi} or @code{e} as well.
2061
2062@node Exercises, , Multi-function Calc, Examples
2063@section Exercises
2064@cindex exercises
2065
2066@enumerate
2067@item
2068Add some new functions from @file{math.h} to the initialization list.
2069
2070@item
2071Add another array that contains constants and their values. Then
2072modify @code{init_table} to add these constants to the symbol table.
2073It will be easiest to give the constants type @code{VAR}.
2074
2075@item
2076Make the program report an error if the user refers to an
2077uninitialized variable in any way except to store a value in it.
2078@end enumerate
2079
2080@node Grammar File, Interface, Examples, Top
2081@chapter Bison Grammar Files
2082
2083Bison takes as input a context-free grammar specification and produces a
2084C-language function that recognizes correct instances of the grammar.
2085
2086The Bison grammar input file conventionally has a name ending in @samp{.y}.
2087
2088@menu
2089* Grammar Outline:: Overall layout of the grammar file.
2090* Symbols:: Terminal and nonterminal symbols.
2091* Rules:: How to write grammar rules.
2092* Recursion:: Writing recursive rules.
2093* Semantics:: Semantic values and actions.
2094* Declarations:: All kinds of Bison declarations are described here.
2095* Multiple Parsers:: Putting more than one Bison parser in one program.
2096@end menu
2097
2098@node Grammar Outline, Symbols, , Grammar File
2099@section Outline of a Bison Grammar
2100
2101A Bison grammar file has four main sections, shown here with the
2102appropriate delimiters:
2103
2104@example
2105%@{
2106@var{C declarations}
2107%@}
2108
2109@var{Bison declarations}
2110
2111%%
2112@var{Grammar rules}
2113%%
2114
2115@var{Additional C code}
2116@end example
2117
2118Comments enclosed in @samp{/* @dots{} */} may appear in any of the sections.
2119
2120@menu
2121* C Declarations:: Syntax and usage of the C declarations section.
2122* Bison Declarations:: Syntax and usage of the Bison declarations section.
2123* Grammar Rules:: Syntax and usage of the grammar rules section.
2124* C Code:: Syntax and usage of the additional C code section.
2125@end menu
2126
2127@node C Declarations, Bison Declarations, , Grammar Outline
2128@subsection The C Declarations Section
2129@cindex C declarations section
2130@cindex declarations, C
2131
2132The @var{C declarations} section contains macro definitions and
2133declarations of functions and variables that are used in the actions in the
2134grammar rules. These are copied to the beginning of the parser file so
2135that they precede the definition of @code{yyparse}. You can use
2136@samp{#include} to get the declarations from a header file. If you don't
2137need any C declarations, you may omit the @samp{%@{} and @samp{%@}}
2138delimiters that bracket this section.
2139
2140@node Bison Declarations, Grammar Rules, C Declarations, Grammar Outline
2141@subsection The Bison Declarations Section
2142@cindex Bison declarations (introduction)
2143@cindex declarations, Bison (introduction)
2144
2145The @var{Bison declarations} section contains declarations that define
2146terminal and nonterminal symbols, specify precedence, and so on.
2147In some simple grammars you may not need any declarations.
2148@xref{Declarations, ,Bison Declarations}.
2149
2150@node Grammar Rules, C Code, Bison Declarations, Grammar Outline
2151@subsection The Grammar Rules Section
2152@cindex grammar rules section
2153@cindex rules section for grammar
2154
2155The @dfn{grammar rules} section contains one or more Bison grammar
2156rules, and nothing else. @xref{Rules, ,Syntax of Grammar Rules}.
2157
2158There must always be at least one grammar rule, and the first
2159@samp{%%} (which precedes the grammar rules) may never be omitted even
2160if it is the first thing in the file.
2161
2162@node C Code, , Grammar Rules, Grammar Outline
2163@subsection The Additional C Code Section
2164@cindex additional C code section
2165@cindex C code, section for additional
2166
2167The @var{additional C code} section is copied verbatim to the end of
2168the parser file, just as the @var{C declarations} section is copied to
2169the beginning. This is the most convenient place to put anything
2170that you want to have in the parser file but which need not come before
2171the definition of @code{yyparse}. For example, the definitions of
2172@code{yylex} and @code{yyerror} often go here. @xref{Interface, ,Parser C-Language Interface}.
2173
2174If the last section is empty, you may omit the @samp{%%} that separates it
2175from the grammar rules.
2176
2177The Bison parser itself contains many static variables whose names start
2178with @samp{yy} and many macros whose names start with @samp{YY}. It is a
2179good idea to avoid using any such names (except those documented in this
2180manual) in the additional C code section of the grammar file.
2181
2182@node Symbols, Rules, Grammar Outline, Grammar File
2183@section Symbols, Terminal and Nonterminal
2184@cindex nonterminal symbol
2185@cindex terminal symbol
2186@cindex token type
2187@cindex symbol
2188
2189@dfn{Symbols} in Bison grammars represent the grammatical classifications
2190of the language.
2191
2192A @dfn{terminal symbol} (also known as a @dfn{token type}) represents a
2193class of syntactically equivalent tokens. You use the symbol in grammar
2194rules to mean that a token in that class is allowed. The symbol is
2195represented in the Bison parser by a numeric code, and the @code{yylex}
2196function returns a token type code to indicate what kind of token has been
2197read. You don't need to know what the code value is; you can use the
2198symbol to stand for it.
2199
2200A @dfn{nonterminal symbol} stands for a class of syntactically equivalent
2201groupings. The symbol name is used in writing grammar rules. By convention,
2202it should be all lower case.
2203
2204Symbol names can contain letters, digits (not at the beginning),
2205underscores and periods. Periods make sense only in nonterminals.
2206
2207There are two ways of writing terminal symbols in the grammar:
2208
2209@itemize @bullet
2210@item
2211A @dfn{named token type} is written with an identifier, like an
2212identifier in C. By convention, it should be all upper case. Each
2213such name must be defined with a Bison declaration such as
2214@code{%token}. @xref{Token Decl, ,Token Type Names}.
2215
2216@item
2217@cindex character token
2218@cindex literal token
2219@cindex single-character literal
2220A @dfn{character token type} (or @dfn{literal token}) is written in
2221the grammar using the same syntax used in C for character constants;
2222for example, @code{'+'} is a character token type. A character token
2223type doesn't need to be declared unless you need to specify its
2224semantic value data type (@pxref{Value Type, ,Data Types of Semantic Values}), associativity, or
2225precedence (@pxref{Precedence, ,Operator Precedence}).
2226
2227By convention, a character token type is used only to represent a
2228token that consists of that particular character. Thus, the token
2229type @code{'+'} is used to represent the character @samp{+} as a
2230token. Nothing enforces this convention, but if you depart from it,
2231your program will confuse other readers.
2232
2233All the usual escape sequences used in character literals in C can be
2234used in Bison as well, but you must not use the null character as a
2235character literal because its ASCII code, zero, is the code
2236@code{yylex} returns for end-of-input (@pxref{Calling Convention, ,Calling Convention for @code{yylex}}).
2237@end itemize
2238
2239How you choose to write a terminal symbol has no effect on its
2240grammatical meaning. That depends only on where it appears in rules and
2241on when the parser function returns that symbol.
2242
2243The value returned by @code{yylex} is always one of the terminal symbols
2244(or 0 for end-of-input). Whichever way you write the token type in the
2245grammar rules, you write it the same way in the definition of @code{yylex}.
2246The numeric code for a character token type is simply the ASCII code for
2247the character, so @code{yylex} can use the identical character constant to
2248generate the requisite code. Each named token type becomes a C macro in
2249the parser file, so @code{yylex} can use the name to stand for the code.
2250(This is why periods don't make sense in terminal symbols.)
2251@xref{Calling Convention, ,Calling Convention for @code{yylex}}.
2252
2253If @code{yylex} is defined in a separate file, you need to arrange for the
2254token-type macro definitions to be available there. Use the @samp{-d}
2255option when you run Bison, so that it will write these macro definitions
2256into a separate header file @file{@var{name}.tab.h} which you can include
2257in the other source files that need it. @xref{Invocation, ,Invoking Bison}.
2258
2259The symbol @code{error} is a terminal symbol reserved for error recovery
2260(@pxref{Error Recovery}); you shouldn't use it for any other purpose.
2261In particular, @code{yylex} should never return this value.
2262
2263@node Rules, Recursion, Symbols, Grammar File
2264@section Syntax of Grammar Rules
2265@cindex rule syntax
2266@cindex grammar rule syntax
2267@cindex syntax of grammar rules
2268
2269A Bison grammar rule has the following general form:
2270
2271@example
e425e872 2272@group
bfa74976
RS
2273@var{result}: @var{components}@dots{}
2274 ;
e425e872 2275@end group
bfa74976
RS
2276@end example
2277
2278@noindent
2279where @var{result} is the nonterminal symbol that this rule describes
2280and @var{components} are various terminal and nonterminal symbols that
2281are put together by this rule (@pxref{Symbols}).
2282
2283For example,
2284
2285@example
2286@group
2287exp: exp '+' exp
2288 ;
2289@end group
2290@end example
2291
2292@noindent
2293says that two groupings of type @code{exp}, with a @samp{+} token in between,
2294can be combined into a larger grouping of type @code{exp}.
2295
2296Whitespace in rules is significant only to separate symbols. You can add
2297extra whitespace as you wish.
2298
2299Scattered among the components can be @var{actions} that determine
2300the semantics of the rule. An action looks like this:
2301
2302@example
2303@{@var{C statements}@}
2304@end example
2305
2306@noindent
2307Usually there is only one action and it follows the components.
2308@xref{Actions}.
2309
2310@findex |
2311Multiple rules for the same @var{result} can be written separately or can
2312be joined with the vertical-bar character @samp{|} as follows:
2313
2314@ifinfo
2315@example
2316@var{result}: @var{rule1-components}@dots{}
2317 | @var{rule2-components}@dots{}
2318 @dots{}
2319 ;
2320@end example
2321@end ifinfo
2322@iftex
2323@example
2324@group
2325@var{result}: @var{rule1-components}@dots{}
2326 | @var{rule2-components}@dots{}
2327 @dots{}
2328 ;
2329@end group
2330@end example
2331@end iftex
2332
2333@noindent
2334They are still considered distinct rules even when joined in this way.
2335
2336If @var{components} in a rule is empty, it means that @var{result} can
2337match the empty string. For example, here is how to define a
2338comma-separated sequence of zero or more @code{exp} groupings:
2339
2340@example
2341@group
2342expseq: /* empty */
2343 | expseq1
2344 ;
2345@end group
2346
2347@group
2348expseq1: exp
2349 | expseq1 ',' exp
2350 ;
2351@end group
2352@end example
2353
2354@noindent
2355It is customary to write a comment @samp{/* empty */} in each rule
2356with no components.
2357
2358@node Recursion, Semantics, Rules, Grammar File
2359@section Recursive Rules
2360@cindex recursive rule
2361
2362A rule is called @dfn{recursive} when its @var{result} nonterminal appears
2363also on its right hand side. Nearly all Bison grammars need to use
2364recursion, because that is the only way to define a sequence of any number
2365of somethings. Consider this recursive definition of a comma-separated
2366sequence of one or more expressions:
2367
2368@example
2369@group
2370expseq1: exp
2371 | expseq1 ',' exp
2372 ;
2373@end group
2374@end example
2375
2376@cindex left recursion
2377@cindex right recursion
2378@noindent
2379Since the recursive use of @code{expseq1} is the leftmost symbol in the
2380right hand side, we call this @dfn{left recursion}. By contrast, here
2381the same construct is defined using @dfn{right recursion}:
2382
2383@example
2384@group
2385expseq1: exp
2386 | exp ',' expseq1
2387 ;
2388@end group
2389@end example
2390
2391@noindent
2392Any kind of sequence can be defined using either left recursion or
2393right recursion, but you should always use left recursion, because it
2394can parse a sequence of any number of elements with bounded stack
2395space. Right recursion uses up space on the Bison stack in proportion
2396to the number of elements in the sequence, because all the elements
2397must be shifted onto the stack before the rule can be applied even
2398once. @xref{Algorithm, ,The Bison Parser Algorithm }, for
2399further explanation of this.
2400
2401@cindex mutual recursion
2402@dfn{Indirect} or @dfn{mutual} recursion occurs when the result of the
2403rule does not appear directly on its right hand side, but does appear
2404in rules for other nonterminals which do appear on its right hand
2405side.
2406
2407For example:
2408
2409@example
2410@group
2411expr: primary
2412 | primary '+' primary
2413 ;
2414@end group
2415
2416@group
2417primary: constant
2418 | '(' expr ')'
2419 ;
2420@end group
2421@end example
2422
2423@noindent
2424defines two mutually-recursive nonterminals, since each refers to the
2425other.
2426
2427@node Semantics, Declarations, Recursion, Grammar File
2428@section Defining Language Semantics
2429@cindex defining language semantics
2430@cindex language semantics, defining
2431
2432The grammar rules for a language determine only the syntax. The semantics
2433are determined by the semantic values associated with various tokens and
2434groupings, and by the actions taken when various groupings are recognized.
2435
2436For example, the calculator calculates properly because the value
2437associated with each expression is the proper number; it adds properly
2438because the action for the grouping @w{@samp{@var{x} + @var{y}}} is to add
2439the numbers associated with @var{x} and @var{y}.
2440
2441@menu
2442* Value Type:: Specifying one data type for all semantic values.
2443* Multiple Types:: Specifying several alternative data types.
2444* Actions:: An action is the semantic definition of a grammar rule.
2445* Action Types:: Specifying data types for actions to operate on.
2446* Mid-Rule Actions:: Most actions go at the end of a rule.
2447 This says when, why and how to use the exceptional
2448 action in the middle of a rule.
2449@end menu
2450
2451@node Value Type, Multiple Types, , Semantics
2452@subsection Data Types of Semantic Values
2453@cindex semantic value type
2454@cindex value type, semantic
2455@cindex data types of semantic values
2456@cindex default data type
2457
2458In a simple program it may be sufficient to use the same data type for
2459the semantic values of all language constructs. This was true in the
2460RPN and infix calculator examples (@pxref{RPN Calc, ,Reverse Polish Notation Calculator}).
2461
2462Bison's default is to use type @code{int} for all semantic values. To
2463specify some other type, define @code{YYSTYPE} as a macro, like this:
2464
2465@example
2466#define YYSTYPE double
2467@end example
2468
2469@noindent
2470This macro definition must go in the C declarations section of the grammar
2471file (@pxref{Grammar Outline, ,Outline of a Bison Grammar}).
2472
2473@node Multiple Types, Actions, Value Type, Semantics
2474@subsection More Than One Value Type
2475
2476In most programs, you will need different data types for different kinds
2477of tokens and groupings. For example, a numeric constant may need type
2478@code{int} or @code{long}, while a string constant needs type @code{char *},
2479and an identifier might need a pointer to an entry in the symbol table.
2480
2481To use more than one data type for semantic values in one parser, Bison
2482requires you to do two things:
2483
2484@itemize @bullet
2485@item
2486Specify the entire collection of possible data types, with the
2487@code{%union} Bison declaration (@pxref{Union Decl, ,The Collection of Value Types}).
2488
2489@item
2490Choose one of those types for each symbol (terminal or nonterminal)
2491for which semantic values are used. This is done for tokens with the
2492@code{%token} Bison declaration (@pxref{Token Decl, ,Token Type Names}) and for groupings
2493with the @code{%type} Bison declaration (@pxref{Type Decl, ,Nonterminal Symbols}).
2494@end itemize
2495
2496@node Actions, Action Types, Multiple Types, Semantics
2497@subsection Actions
2498@cindex action
2499@vindex $$
2500@vindex $@var{n}
2501
2502An action accompanies a syntactic rule and contains C code to be executed
2503each time an instance of that rule is recognized. The task of most actions
2504is to compute a semantic value for the grouping built by the rule from the
2505semantic values associated with tokens or smaller groupings.
2506
2507An action consists of C statements surrounded by braces, much like a
2508compound statement in C. It can be placed at any position in the rule; it
2509is executed at that position. Most rules have just one action at the end
2510of the rule, following all the components. Actions in the middle of a rule
2511are tricky and used only for special purposes (@pxref{Mid-Rule Actions, ,Actions in Mid-Rule}).
2512
2513The C code in an action can refer to the semantic values of the components
2514matched by the rule with the construct @code{$@var{n}}, which stands for
2515the value of the @var{n}th component. The semantic value for the grouping
2516being constructed is @code{$$}. (Bison translates both of these constructs
2517into array element references when it copies the actions into the parser
2518file.)
2519
2520Here is a typical example:
2521
2522@example
2523@group
2524exp: @dots{}
2525 | exp '+' exp
2526 @{ $$ = $1 + $3; @}
2527@end group
2528@end example
2529
2530@noindent
2531This rule constructs an @code{exp} from two smaller @code{exp} groupings
2532connected by a plus-sign token. In the action, @code{$1} and @code{$3}
2533refer to the semantic values of the two component @code{exp} groupings,
2534which are the first and third symbols on the right hand side of the rule.
2535The sum is stored into @code{$$} so that it becomes the semantic value of
2536the addition-expression just recognized by the rule. If there were a
2537useful semantic value associated with the @samp{+} token, it could be
2538referred to as @code{$2}.@refill
2539
2540@cindex default action
2541If you don't specify an action for a rule, Bison supplies a default:
2542@w{@code{$$ = $1}.} Thus, the value of the first symbol in the rule becomes
2543the value of the whole rule. Of course, the default rule is valid only
2544if the two data types match. There is no meaningful default action for
2545an empty rule; every empty rule must have an explicit action unless the
2546rule's value does not matter.
2547
2548@code{$@var{n}} with @var{n} zero or negative is allowed for reference
2549to tokens and groupings on the stack @emph{before} those that match the
2550current rule. This is a very risky practice, and to use it reliably
2551you must be certain of the context in which the rule is applied. Here
2552is a case in which you can use this reliably:
2553
2554@example
2555@group
2556foo: expr bar '+' expr @{ @dots{} @}
2557 | expr bar '-' expr @{ @dots{} @}
2558 ;
2559@end group
2560
2561@group
2562bar: /* empty */
2563 @{ previous_expr = $0; @}
2564 ;
2565@end group
2566@end example
2567
2568As long as @code{bar} is used only in the fashion shown here, @code{$0}
2569always refers to the @code{expr} which precedes @code{bar} in the
2570definition of @code{foo}.
2571
2572@node Action Types, Mid-Rule Actions, Actions, Semantics
2573@subsection Data Types of Values in Actions
2574@cindex action data types
2575@cindex data types in actions
2576
2577If you have chosen a single data type for semantic values, the @code{$$}
2578and @code{$@var{n}} constructs always have that data type.
2579
2580If you have used @code{%union} to specify a variety of data types, then you
2581must declare a choice among these types for each terminal or nonterminal
2582symbol that can have a semantic value. Then each time you use @code{$$} or
2583@code{$@var{n}}, its data type is determined by which symbol it refers to
2584in the rule. In this example,@refill
2585
2586@example
2587@group
2588exp: @dots{}
2589 | exp '+' exp
2590 @{ $$ = $1 + $3; @}
2591@end group
2592@end example
2593
2594@noindent
2595@code{$1} and @code{$3} refer to instances of @code{exp}, so they all
2596have the data type declared for the nonterminal symbol @code{exp}. If
2597@code{$2} were used, it would have the data type declared for the
2598terminal symbol @code{'+'}, whatever that might be.@refill
2599
2600Alternatively, you can specify the data type when you refer to the value,
2601by inserting @samp{<@var{type}>} after the @samp{$} at the beginning of the
2602reference. For example, if you have defined types as shown here:
2603
2604@example
2605@group
2606%union @{
2607 int itype;
2608 double dtype;
2609@}
2610@end group
2611@end example
2612
2613@noindent
2614then you can write @code{$<itype>1} to refer to the first subunit of the
2615rule as an integer, or @code{$<dtype>1} to refer to it as a double.
2616
2617@node Mid-Rule Actions, , Action Types, Semantics
2618@subsection Actions in Mid-Rule
2619@cindex actions in mid-rule
2620@cindex mid-rule actions
2621
2622Occasionally it is useful to put an action in the middle of a rule.
2623These actions are written just like usual end-of-rule actions, but they
2624are executed before the parser even recognizes the following components.
2625
2626A mid-rule action may refer to the components preceding it using
2627@code{$@var{n}}, but it may not refer to subsequent components because
2628it is run before they are parsed.
2629
2630The mid-rule action itself counts as one of the components of the rule.
2631This makes a difference when there is another action later in the same rule
2632(and usually there is another at the end): you have to count the actions
2633along with the symbols when working out which number @var{n} to use in
2634@code{$@var{n}}.
2635
2636The mid-rule action can also have a semantic value. The action can set
2637its value with an assignment to @code{$$}, and actions later in the rule
2638can refer to the value using @code{$@var{n}}. Since there is no symbol
2639to name the action, there is no way to declare a data type for the value
2640in advance, so you must use the @samp{$<@dots{}>} construct to specify a
2641data type each time you refer to this value.
2642
2643There is no way to set the value of the entire rule with a mid-rule
2644action, because assignments to @code{$$} do not have that effect. The
2645only way to set the value for the entire rule is with an ordinary action
2646at the end of the rule.
2647
2648Here is an example from a hypothetical compiler, handling a @code{let}
2649statement that looks like @samp{let (@var{variable}) @var{statement}} and
2650serves to create a variable named @var{variable} temporarily for the
2651duration of @var{statement}. To parse this construct, we must put
2652@var{variable} into the symbol table while @var{statement} is parsed, then
2653remove it afterward. Here is how it is done:
2654
2655@example
2656@group
2657stmt: LET '(' var ')'
2658 @{ $<context>$ = push_context ();
2659 declare_variable ($3); @}
2660 stmt @{ $$ = $6;
2661 pop_context ($<context>5); @}
2662@end group
2663@end example
2664
2665@noindent
2666As soon as @samp{let (@var{variable})} has been recognized, the first
2667action is run. It saves a copy of the current semantic context (the
2668list of accessible variables) as its semantic value, using alternative
2669@code{context} in the data-type union. Then it calls
2670@code{declare_variable} to add the new variable to that list. Once the
2671first action is finished, the embedded statement @code{stmt} can be
2672parsed. Note that the mid-rule action is component number 5, so the
2673@samp{stmt} is component number 6.
2674
2675After the embedded statement is parsed, its semantic value becomes the
2676value of the entire @code{let}-statement. Then the semantic value from the
2677earlier action is used to restore the prior list of variables. This
2678removes the temporary @code{let}-variable from the list so that it won't
2679appear to exist while the rest of the program is parsed.
2680
2681Taking action before a rule is completely recognized often leads to
2682conflicts since the parser must commit to a parse in order to execute the
2683action. For example, the following two rules, without mid-rule actions,
2684can coexist in a working parser because the parser can shift the open-brace
2685token and look at what follows before deciding whether there is a
2686declaration or not:
2687
2688@example
2689@group
2690compound: '@{' declarations statements '@}'
2691 | '@{' statements '@}'
2692 ;
2693@end group
2694@end example
2695
2696@noindent
2697But when we add a mid-rule action as follows, the rules become nonfunctional:
2698
2699@example
2700@group
2701compound: @{ prepare_for_local_variables (); @}
2702 '@{' declarations statements '@}'
2703@end group
2704@group
2705 | '@{' statements '@}'
2706 ;
2707@end group
2708@end example
2709
2710@noindent
2711Now the parser is forced to decide whether to run the mid-rule action
2712when it has read no farther than the open-brace. In other words, it
2713must commit to using one rule or the other, without sufficient
2714information to do it correctly. (The open-brace token is what is called
2715the @dfn{look-ahead} token at this time, since the parser is still
2716deciding what to do about it. @xref{Look-Ahead, ,Look-Ahead Tokens}.)
2717
2718You might think that you could correct the problem by putting identical
2719actions into the two rules, like this:
2720
2721@example
2722@group
2723compound: @{ prepare_for_local_variables (); @}
2724 '@{' declarations statements '@}'
2725 | @{ prepare_for_local_variables (); @}
2726 '@{' statements '@}'
2727 ;
2728@end group
2729@end example
2730
2731@noindent
2732But this does not help, because Bison does not realize that the two actions
2733are identical. (Bison never tries to understand the C code in an action.)
2734
2735If the grammar is such that a declaration can be distinguished from a
2736statement by the first token (which is true in C), then one solution which
2737does work is to put the action after the open-brace, like this:
2738
2739@example
2740@group
2741compound: '@{' @{ prepare_for_local_variables (); @}
2742 declarations statements '@}'
2743 | '@{' statements '@}'
2744 ;
2745@end group
2746@end example
2747
2748@noindent
2749Now the first token of the following declaration or statement,
2750which would in any case tell Bison which rule to use, can still do so.
2751
2752Another solution is to bury the action inside a nonterminal symbol which
2753serves as a subroutine:
2754
2755@example
2756@group
2757subroutine: /* empty */
2758 @{ prepare_for_local_variables (); @}
2759 ;
2760
2761@end group
2762
2763@group
2764compound: subroutine
2765 '@{' declarations statements '@}'
2766 | subroutine
2767 '@{' statements '@}'
2768 ;
2769@end group
2770@end example
2771
2772@noindent
2773Now Bison can execute the action in the rule for @code{subroutine} without
2774deciding which rule for @code{compound} it will eventually use. Note that
2775the action is now at the end of its rule. Any mid-rule action can be
2776converted to an end-of-rule action in this way, and this is what Bison
2777actually does to implement mid-rule actions.
2778
2779@node Declarations, Multiple Parsers, Semantics, Grammar File
2780@section Bison Declarations
2781@cindex declarations, Bison
2782@cindex Bison declarations
2783
2784The @dfn{Bison declarations} section of a Bison grammar defines the symbols
2785used in formulating the grammar and the data types of semantic values.
2786@xref{Symbols}.
2787
2788All token type names (but not single-character literal tokens such as
2789@code{'+'} and @code{'*'}) must be declared. Nonterminal symbols must be
2790declared if you need to specify which data type to use for the semantic
2791value (@pxref{Multiple Types, ,More Than One Value Type}).
2792
2793The first rule in the file also specifies the start symbol, by default.
2794If you want some other symbol to be the start symbol, you must declare
2795it explicitly (@pxref{Language and Grammar, ,Languages and Context-Free Grammars}).
2796
2797@menu
2798* Token Decl:: Declaring terminal symbols.
2799* Precedence Decl:: Declaring terminals with precedence and associativity.
2800* Union Decl:: Declaring the set of all semantic value types.
2801* Type Decl:: Declaring the choice of type for a nonterminal symbol.
2802* Expect Decl:: Suppressing warnings about shift/reduce conflicts.
2803* Start Decl:: Specifying the start symbol.
2804* Pure Decl:: Requesting a reentrant parser.
2805* Decl Summary:: Table of all Bison declarations.
2806@end menu
2807
2808@node Token Decl, Precedence Decl, , Declarations
2809@subsection Token Type Names
2810@cindex declaring token type names
2811@cindex token type names, declaring
2812@findex %token
2813
2814The basic way to declare a token type name (terminal symbol) is as follows:
2815
2816@example
2817%token @var{name}
2818@end example
2819
2820Bison will convert this into a @code{#define} directive in
2821the parser, so that the function @code{yylex} (if it is in this file)
2822can use the name @var{name} to stand for this token type's code.
2823
2824Alternatively, you can use @code{%left}, @code{%right}, or @code{%nonassoc}
2825instead of @code{%token}, if you wish to specify precedence.
2826@xref{Precedence Decl, ,Operator Precedence}.
2827
2828You can explicitly specify the numeric code for a token type by appending
2829an integer value in the field immediately following the token name:
2830
2831@example
2832%token NUM 300
2833@end example
2834
2835@noindent
2836It is generally best, however, to let Bison choose the numeric codes for
2837all token types. Bison will automatically select codes that don't conflict
2838with each other or with ASCII characters.
2839
2840In the event that the stack type is a union, you must augment the
2841@code{%token} or other token declaration to include the data type
2842alternative delimited by angle-brackets (@pxref{Multiple Types, ,More Than One Value Type}).
2843
2844For example:
2845
2846@example
2847@group
2848%union @{ /* define stack type */
2849 double val;
2850 symrec *tptr;
2851@}
2852%token <val> NUM /* define token NUM and its type */
2853@end group
2854@end example
2855
2856@node Precedence Decl, Union Decl, Token Decl, Declarations
2857@subsection Operator Precedence
2858@cindex precedence declarations
2859@cindex declaring operator precedence
2860@cindex operator precedence, declaring
2861
2862Use the @code{%left}, @code{%right} or @code{%nonassoc} declaration to
2863declare a token and specify its precedence and associativity, all at
2864once. These are called @dfn{precedence declarations}.
2865@xref{Precedence, ,Operator Precedence}, for general information on operator precedence.
2866
2867The syntax of a precedence declaration is the same as that of
2868@code{%token}: either
2869
2870@example
2871%left @var{symbols}@dots{}
2872@end example
2873
2874@noindent
2875or
2876
2877@example
2878%left <@var{type}> @var{symbols}@dots{}
2879@end example
2880
2881And indeed any of these declarations serves the purposes of @code{%token}.
2882But in addition, they specify the associativity and relative precedence for
2883all the @var{symbols}:
2884
2885@itemize @bullet
2886@item
2887The associativity of an operator @var{op} determines how repeated uses
2888of the operator nest: whether @samp{@var{x} @var{op} @var{y} @var{op}
2889@var{z}} is parsed by grouping @var{x} with @var{y} first or by
2890grouping @var{y} with @var{z} first. @code{%left} specifies
2891left-associativity (grouping @var{x} with @var{y} first) and
2892@code{%right} specifies right-associativity (grouping @var{y} with
2893@var{z} first). @code{%nonassoc} specifies no associativity, which
2894means that @samp{@var{x} @var{op} @var{y} @var{op} @var{z}} is
2895considered a syntax error.
2896
2897@item
2898The precedence of an operator determines how it nests with other operators.
2899All the tokens declared in a single precedence declaration have equal
2900precedence and nest together according to their associativity.
2901When two tokens declared in different precedence declarations associate,
2902the one declared later has the higher precedence and is grouped first.
2903@end itemize
2904
2905@node Union Decl, Type Decl, Precedence Decl, Declarations
2906@subsection The Collection of Value Types
2907@cindex declaring value types
2908@cindex value types, declaring
2909@findex %union
2910
2911The @code{%union} declaration specifies the entire collection of possible
2912data types for semantic values. The keyword @code{%union} is followed by a
2913pair of braces containing the same thing that goes inside a @code{union} in
2914C.
2915
2916For example:
2917
2918@example
2919@group
2920%union @{
2921 double val;
2922 symrec *tptr;
2923@}
2924@end group
2925@end example
2926
2927@noindent
2928This says that the two alternative types are @code{double} and @code{symrec
2929*}. They are given names @code{val} and @code{tptr}; these names are used
2930in the @code{%token} and @code{%type} declarations to pick one of the types
2931for a terminal or nonterminal symbol (@pxref{Type Decl, ,Nonterminal Symbols}).
2932
2933Note that, unlike making a @code{union} declaration in C, you do not write
2934a semicolon after the closing brace.
2935
2936@node Type Decl, Expect Decl, Union Decl, Declarations
2937@subsection Nonterminal Symbols
2938@cindex declaring value types, nonterminals
2939@cindex value types, nonterminals, declaring
2940@findex %type
2941
2942@noindent
2943When you use @code{%union} to specify multiple value types, you must
2944declare the value type of each nonterminal symbol for which values are
2945used. This is done with a @code{%type} declaration, like this:
2946
2947@example
2948%type <@var{type}> @var{nonterminal}@dots{}
2949@end example
2950
2951@noindent
2952Here @var{nonterminal} is the name of a nonterminal symbol, and @var{type}
2953is the name given in the @code{%union} to the alternative that you want
2954(@pxref{Union Decl, ,The Collection of Value Types}). You can give any number of nonterminal symbols in
2955the same @code{%type} declaration, if they have the same value type. Use
2956spaces to separate the symbol names.
2957
2958@node Expect Decl, Start Decl, Type Decl, Declarations
2959@subsection Suppressing Conflict Warnings
2960@cindex suppressing conflict warnings
2961@cindex preventing warnings about conflicts
2962@cindex warnings, preventing
2963@cindex conflicts, suppressing warnings of
2964@findex %expect
2965
2966Bison normally warns if there are any conflicts in the grammar
2967(@pxref{Shift/Reduce, ,Shift/Reduce Conflicts}), but most real grammars have harmless shift/reduce
2968conflicts which are resolved in a predictable way and would be difficult to
2969eliminate. It is desirable to suppress the warning about these conflicts
2970unless the number of conflicts changes. You can do this with the
2971@code{%expect} declaration.
2972
2973The declaration looks like this:
2974
2975@example
2976%expect @var{n}
2977@end example
2978
2979Here @var{n} is a decimal integer. The declaration says there should be no
2980warning if there are @var{n} shift/reduce conflicts and no reduce/reduce
2981conflicts. The usual warning is given if there are either more or fewer
2982conflicts, or if there are any reduce/reduce conflicts.
2983
2984In general, using @code{%expect} involves these steps:
2985
2986@itemize @bullet
2987@item
2988Compile your grammar without @code{%expect}. Use the @samp{-v} option
2989to get a verbose list of where the conflicts occur. Bison will also
2990print the number of conflicts.
2991
2992@item
2993Check each of the conflicts to make sure that Bison's default
2994resolution is what you really want. If not, rewrite the grammar and
2995go back to the beginning.
2996
2997@item
2998Add an @code{%expect} declaration, copying the number @var{n} from the
2999number which Bison printed.
3000@end itemize
3001
3002Now Bison will stop annoying you about the conflicts you have checked, but
3003it will warn you again if changes in the grammar result in additional
3004conflicts.
3005
3006@node Start Decl, Pure Decl, Expect Decl, Declarations
3007@subsection The Start-Symbol
3008@cindex declaring the start symbol
3009@cindex start symbol, declaring
3010@cindex default start symbol
3011@findex %start
3012
3013Bison assumes by default that the start symbol for the grammar is the first
3014nonterminal specified in the grammar specification section. The programmer
3015may override this restriction with the @code{%start} declaration as follows:
3016
3017@example
3018%start @var{symbol}
3019@end example
3020
3021@node Pure Decl, Decl Summary, Start Decl, Declarations
3022@subsection A Pure (Reentrant) Parser
3023@cindex reentrant parser
3024@cindex pure parser
3025@findex %pure_parser
3026
3027A @dfn{reentrant} program is one which does not alter in the course of
3028execution; in other words, it consists entirely of @dfn{pure} (read-only)
3029code. Reentrancy is important whenever asynchronous execution is possible;
3030for example, a nonreentrant program may not be safe to call from a signal
3031handler. In systems with multiple threads of control, a nonreentrant
3032program must be called only within interlocks.
3033
3034The Bison parser is not normally a reentrant program, because it uses
3035statically allocated variables for communication with @code{yylex}. These
3036variables include @code{yylval} and @code{yylloc}.
3037
3038The Bison declaration @code{%pure_parser} says that you want the parser
3039to be reentrant. It looks like this:
3040
3041@example
3042%pure_parser
3043@end example
3044
3045The effect is that the two communication variables become local
c656404a
RS
3046variables in @code{yyparse}, and a different calling convention is used
3047for the lexical analyzer function @code{yylex}. @xref{Pure Calling,
3048,Calling Conventions for Pure Parsers}, for the details of this. The
3049variable @code{yynerrs} also becomes local in @code{yyparse}
3050(@pxref{Error Reporting, ,The Error Reporting Function @code{yyerror}}).
3051The convention for calling @code{yyparse} itself is unchanged.
bfa74976
RS
3052
3053@node Decl Summary, , Pure Decl, Declarations
3054@subsection Bison Declaration Summary
3055@cindex Bison declaration summary
3056@cindex declaration summary
3057@cindex summary, Bison declaration
3058
3059Here is a summary of all Bison declarations:
3060
3061@table @code
3062@item %union
3063Declare the collection of data types that semantic values may have
3064(@pxref{Union Decl, ,The Collection of Value Types}).
3065
3066@item %token
3067Declare a terminal symbol (token type name) with no precedence
3068or associativity specified (@pxref{Token Decl, ,Token Type Names}).
3069
3070@item %right
3071Declare a terminal symbol (token type name) that is right-associative
3072(@pxref{Precedence Decl, ,Operator Precedence}).
3073
3074@item %left
3075Declare a terminal symbol (token type name) that is left-associative
3076(@pxref{Precedence Decl, ,Operator Precedence}).
3077
3078@item %nonassoc
3079Declare a terminal symbol (token type name) that is nonassociative
3080(using it in a way that would be associative is a syntax error)
3081(@pxref{Precedence Decl, ,Operator Precedence}).
3082
3083@item %type
3084Declare the type of semantic values for a nonterminal symbol
3085(@pxref{Type Decl, ,Nonterminal Symbols}).
3086
3087@item %start
3088Specify the grammar's start symbol (@pxref{Start Decl, ,The Start-Symbol}).
3089
3090@item %expect
3091Declare the expected number of shift-reduce conflicts
3092(@pxref{Expect Decl, ,Suppressing Conflict Warnings}).
3093
3094@item %pure_parser
3095Request a pure (reentrant) parser program (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}).
3096@end table
3097
3098@node Multiple Parsers, , Declarations, Grammar File
3099@section Multiple Parsers in the Same Program
3100
3101Most programs that use Bison parse only one language and therefore contain
3102only one Bison parser. But what if you want to parse more than one
3103language with the same program? Then you need to avoid a name conflict
3104between different definitions of @code{yyparse}, @code{yylval}, and so on.
3105
3106The easy way to do this is to use the option @samp{-p @var{prefix}}
3107(@pxref{Invocation, ,Invoking Bison}). This renames the interface functions and
3108variables of the Bison parser to start with @var{prefix} instead of
3109@samp{yy}. You can use this to give each parser distinct names that do
3110not conflict.
3111
3112The precise list of symbols renamed is @code{yyparse}, @code{yylex},
c656404a
RS
3113@code{yyerror}, @code{yynerrs}, @code{yylval}, @code{yychar} and
3114@code{yydebug}. For example, if you use @samp{-p c}, the names become
3115@code{cparse}, @code{clex}, and so on.
bfa74976
RS
3116
3117@strong{All the other variables and macros associated with Bison are not
3118renamed.} These others are not global; there is no conflict if the same
3119name is used in different parsers. For example, @code{YYSTYPE} is not
3120renamed, but defining this in different ways in different parsers causes
3121no trouble (@pxref{Value Type, ,Data Types of Semantic Values}).
3122
3123The @samp{-p} option works by adding macro definitions to the beginning
3124of the parser source file, defining @code{yyparse} as
3125@code{@var{prefix}parse}, and so on. This effectively substitutes one
3126name for the other in the entire parser file.
3127
3128@node Interface, Algorithm, Grammar File, Top
3129@chapter Parser C-Language Interface
3130@cindex C-language interface
3131@cindex interface
3132
3133The Bison parser is actually a C function named @code{yyparse}. Here we
3134describe the interface conventions of @code{yyparse} and the other
3135functions that it needs to use.
3136
3137Keep in mind that the parser uses many C identifiers starting with
3138@samp{yy} and @samp{YY} for internal purposes. If you use such an
3139identifier (aside from those in this manual) in an action or in additional
3140C code in the grammar file, you are likely to run into trouble.
3141
3142@menu
3143* Parser Function:: How to call @code{yyparse} and what it returns.
3144* Lexical:: You must supply a function @code{yylex}
3145 which reads tokens.
3146* Error Reporting:: You must supply a function @code{yyerror}.
3147* Action Features:: Special features for use in actions.
3148@end menu
3149
3150@node Parser Function, Lexical, , Interface
3151@section The Parser Function @code{yyparse}
3152@findex yyparse
3153
3154You call the function @code{yyparse} to cause parsing to occur. This
3155function reads tokens, executes actions, and ultimately returns when it
3156encounters end-of-input or an unrecoverable syntax error. You can also
3157write an action which directs @code{yyparse} to return immediately without
3158reading further.
3159
3160The value returned by @code{yyparse} is 0 if parsing was successful (return
3161is due to end-of-input).
3162
3163The value is 1 if parsing failed (return is due to a syntax error).
3164
3165In an action, you can cause immediate return from @code{yyparse} by using
3166these macros:
3167
3168@table @code
3169@item YYACCEPT
3170@findex YYACCEPT
3171Return immediately with value 0 (to report success).
3172
3173@item YYABORT
3174@findex YYABORT
3175Return immediately with value 1 (to report failure).
3176@end table
3177
3178@node Lexical, Error Reporting, Parser Function, Interface
3179@section The Lexical Analyzer Function @code{yylex}
3180@findex yylex
3181@cindex lexical analyzer
3182
3183The @dfn{lexical analyzer} function, @code{yylex}, recognizes tokens from
3184the input stream and returns them to the parser. Bison does not create
3185this function automatically; you must write it so that @code{yyparse} can
3186call it. The function is sometimes referred to as a lexical scanner.
3187
3188In simple programs, @code{yylex} is often defined at the end of the Bison
3189grammar file. If @code{yylex} is defined in a separate source file, you
3190need to arrange for the token-type macro definitions to be available there.
3191To do this, use the @samp{-d} option when you run Bison, so that it will
3192write these macro definitions into a separate header file
3193@file{@var{name}.tab.h} which you can include in the other source files
3194that need it. @xref{Invocation, ,Invoking Bison}.@refill
3195
3196@menu
3197* Calling Convention:: How @code{yyparse} calls @code{yylex}.
3198* Token Values:: How @code{yylex} must return the semantic value
3199 of the token it has read.
3200* Token Positions:: How @code{yylex} must return the text position
3201 (line number, etc.) of the token, if the
3202 actions want that.
3203* Pure Calling:: How the calling convention differs
3204 in a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}).
3205@end menu
3206
3207@node Calling Convention, Token Values, , Lexical
3208@subsection Calling Convention for @code{yylex}
3209
3210The value that @code{yylex} returns must be the numeric code for the type
3211of token it has just found, or 0 for end-of-input.
3212
3213When a token is referred to in the grammar rules by a name, that name
3214in the parser file becomes a C macro whose definition is the proper
3215numeric code for that token type. So @code{yylex} can use the name
3216to indicate that type. @xref{Symbols}.
3217
3218When a token is referred to in the grammar rules by a character literal,
3219the numeric code for that character is also the code for the token type.
3220So @code{yylex} can simply return that character code. The null character
3221must not be used this way, because its code is zero and that is what
3222signifies end-of-input.
3223
3224Here is an example showing these things:
3225
3226@example
3227yylex ()
3228@{
3229 @dots{}
3230 if (c == EOF) /* Detect end of file. */
3231 return 0;
3232 @dots{}
3233 if (c == '+' || c == '-')
3234 return c; /* Assume token type for `+' is '+'. */
3235 @dots{}
3236 return INT; /* Return the type of the token. */
3237 @dots{}
3238@}
3239@end example
3240
3241@noindent
3242This interface has been designed so that the output from the @code{lex}
3243utility can be used without change as the definition of @code{yylex}.
3244
3245@node Token Values, Token Positions, Calling Convention, Lexical
3246@subsection Semantic Values of Tokens
3247
3248@vindex yylval
3249In an ordinary (nonreentrant) parser, the semantic value of the token must
3250be stored into the global variable @code{yylval}. When you are using
3251just one data type for semantic values, @code{yylval} has that type.
3252Thus, if the type is @code{int} (the default), you might write this in
3253@code{yylex}:
3254
3255@example
3256@group
3257 @dots{}
3258 yylval = value; /* Put value onto Bison stack. */
3259 return INT; /* Return the type of the token. */
3260 @dots{}
3261@end group
3262@end example
3263
3264When you are using multiple data types, @code{yylval}'s type is a union
3265made from the @code{%union} declaration (@pxref{Union Decl, ,The Collection of Value Types}). So when
3266you store a token's value, you must use the proper member of the union.
3267If the @code{%union} declaration looks like this:
3268
3269@example
3270@group
3271%union @{
3272 int intval;
3273 double val;
3274 symrec *tptr;
3275@}
3276@end group
3277@end example
3278
3279@noindent
3280then the code in @code{yylex} might look like this:
3281
3282@example
3283@group
3284 @dots{}
3285 yylval.intval = value; /* Put value onto Bison stack. */
3286 return INT; /* Return the type of the token. */
3287 @dots{}
3288@end group
3289@end example
3290
3291@node Token Positions, Pure Calling, Token Values, Lexical
3292@subsection Textual Positions of Tokens
3293
3294@vindex yylloc
3295If you are using the @samp{@@@var{n}}-feature (@pxref{Action Features, ,Special Features for Use in Actions}) in
3296actions to keep track of the textual locations of tokens and groupings,
3297then you must provide this information in @code{yylex}. The function
3298@code{yyparse} expects to find the textual location of a token just parsed
3299in the global variable @code{yylloc}. So @code{yylex} must store the
3300proper data in that variable. The value of @code{yylloc} is a structure
3301and you need only initialize the members that are going to be used by the
3302actions. The four members are called @code{first_line},
3303@code{first_column}, @code{last_line} and @code{last_column}. Note that
3304the use of this feature makes the parser noticeably slower.
3305
3306@tindex YYLTYPE
3307The data type of @code{yylloc} has the name @code{YYLTYPE}.
3308
3309@node Pure Calling, , Token Positions, Lexical
c656404a 3310@subsection Calling Conventions for Pure Parsers
bfa74976 3311
e425e872
RS
3312When you use the Bison declaration @code{%pure_parser} to request a
3313pure, reentrant parser, the global communication variables @code{yylval}
3314and @code{yylloc} cannot be used. (@xref{Pure Decl, ,A Pure (Reentrant)
3315Parser}.) In such parsers the two global variables are replaced by
3316pointers passed as arguments to @code{yylex}. You must declare them as
3317shown here, and pass the information back by storing it through those
3318pointers.
bfa74976
RS
3319
3320@example
3321yylex (lvalp, llocp)
3322 YYSTYPE *lvalp;
3323 YYLTYPE *llocp;
3324@{
3325 @dots{}
3326 *lvalp = value; /* Put value onto Bison stack. */
3327 return INT; /* Return the type of the token. */
3328 @dots{}
3329@}
3330@end example
3331
3332If the grammar file does not use the @samp{@@} constructs to refer to
3333textual positions, then the type @code{YYLTYPE} will not be defined. In
3334this case, omit the second argument; @code{yylex} will be called with
3335only one argument.
3336
c656404a
RS
3337@vindex YYPARSE_PARAM
3338You can pass parameter information to a reentrant parser in a reentrant
3339way. Define the macro @code{YYPARSE_PARAM} as a variable name. The
3340resulting @code{yyparse} function then accepts one argument, of type
3341@code{void *}, with that name.
e425e872
RS
3342
3343When you call @code{yyparse}, pass the address of an object, casting the
3344address to @code{void *}. The grammar actions can refer to the contents
3345of the object by casting the pointer value back to its proper type and
3346then dereferencing it. Here's an example. Write this in the parser:
3347
3348@example
3349%@{
3350struct parser_control
3351@{
3352 int nastiness;
3353 int randomness;
3354@};
3355
3356#define YYPARSE_PARAM parm
3357%@}
3358@end example
3359
3360@noindent
3361Then call the parser like this:
3362
3363@example
3364struct parser_control
3365@{
3366 int nastiness;
3367 int randomness;
3368@};
3369
3370@dots{}
3371
3372@{
3373 struct parser_control foo;
3374 @dots{} /* @r{Store proper data in @code{foo}.} */
3375 value = yyparse ((void *) &foo);
3376 @dots{}
3377@}
3378@end example
3379
3380@noindent
3381In the grammar actions, use expressions like this to refer to the data:
3382
3383@example
3384((struct parser_control *) parm)->randomness
3385@end example
3386
c656404a
RS
3387@vindex YYLEX_PARAM
3388If you wish to pass the additional parameter data to @code{yylex},
3389define the macro @code{YYLEX_PARAM} just like @code{YYPARSE_PARAM}, as
3390shown here:
3391
3392@example
3393%@{
3394struct parser_control
3395@{
3396 int nastiness;
3397 int randomness;
3398@};
3399
3400#define YYPARSE_PARAM parm
3401#define YYLEX_PARAM parm
3402%@}
3403@end example
3404
3405You should then define @code{yylex} to accept one additional
3406argument---the value of @code{parm}. (This makes either two or three
3407arguments in total, depending on whether an argument of type
3408@code{YYLTYPE} is passed.) You can declare the argument as a pointer to
3409the proper object type, or you can declare it as @code{void *} and
3410access the contents as shown above.
3411
bfa74976
RS
3412@node Error Reporting, Action Features, Lexical, Interface
3413@section The Error Reporting Function @code{yyerror}
3414@cindex error reporting function
3415@findex yyerror
3416@cindex parse error
3417@cindex syntax error
3418
3419The Bison parser detects a @dfn{parse error} or @dfn{syntax error}
3420whenever it reads a token which cannot satisfy any syntax rule. A
3421action in the grammar can also explicitly proclaim an error, using the
3422macro @code{YYERROR} (@pxref{Action Features, ,Special Features for Use in Actions}).
3423
3424The Bison parser expects to report the error by calling an error
3425reporting function named @code{yyerror}, which you must supply. It is
3426called by @code{yyparse} whenever a syntax error is found, and it
3427receives one argument. For a parse error, the string is normally
3428@w{@code{"parse error"}}.
3429
3430@findex YYERROR_VERBOSE
3431If you define the macro @code{YYERROR_VERBOSE} in the Bison declarations
3432section (@pxref{Bison Declarations, ,The Bison Declarations Section}), then Bison provides a more verbose
3433and specific error message string instead of just plain @w{@code{"parse
3434error"}}. It doesn't matter what definition you use for
3435@code{YYERROR_VERBOSE}, just whether you define it.
3436
3437The parser can detect one other kind of error: stack overflow. This
3438happens when the input contains constructions that are very deeply
3439nested. It isn't likely you will encounter this, since the Bison
3440parser extends its stack automatically up to a very large limit. But
3441if overflow happens, @code{yyparse} calls @code{yyerror} in the usual
3442fashion, except that the argument string is @w{@code{"parser stack
3443overflow"}}.
3444
3445The following definition suffices in simple programs:
3446
3447@example
3448@group
3449yyerror (s)
3450 char *s;
3451@{
3452@end group
3453@group
3454 fprintf (stderr, "%s\n", s);
3455@}
3456@end group
3457@end example
3458
3459After @code{yyerror} returns to @code{yyparse}, the latter will attempt
3460error recovery if you have written suitable error recovery grammar rules
3461(@pxref{Error Recovery}). If recovery is impossible, @code{yyparse} will
3462immediately return 1.
3463
3464@vindex yynerrs
3465The variable @code{yynerrs} contains the number of syntax errors
3466encountered so far. Normally this variable is global; but if you
3467request a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}) then it is a local variable
3468which only the actions can access.
3469
3470@node Action Features, , Error Reporting, Interface
3471@section Special Features for Use in Actions
3472@cindex summary, action features
3473@cindex action features summary
3474
3475Here is a table of Bison constructs, variables and macros that
3476are useful in actions.
3477
3478@table @samp
3479@item $$
3480Acts like a variable that contains the semantic value for the
3481grouping made by the current rule. @xref{Actions}.
3482
3483@item $@var{n}
3484Acts like a variable that contains the semantic value for the
3485@var{n}th component of the current rule. @xref{Actions}.
3486
3487@item $<@var{typealt}>$
3488Like @code{$$} but specifies alternative @var{typealt} in the union
3489specified by the @code{%union} declaration. @xref{Action Types, ,Data Types of Values in Actions}.
3490
3491@item $<@var{typealt}>@var{n}
3492Like @code{$@var{n}} but specifies alternative @var{typealt} in the
3493union specified by the @code{%union} declaration.
3494@xref{Action Types, ,Data Types of Values in Actions}.@refill
3495
3496@item YYABORT;
3497Return immediately from @code{yyparse}, indicating failure.
3498@xref{Parser Function, ,The Parser Function @code{yyparse}}.
3499
3500@item YYACCEPT;
3501Return immediately from @code{yyparse}, indicating success.
3502@xref{Parser Function, ,The Parser Function @code{yyparse}}.
3503
3504@item YYBACKUP (@var{token}, @var{value});
3505@findex YYBACKUP
3506Unshift a token. This macro is allowed only for rules that reduce
3507a single value, and only when there is no look-ahead token.
3508It installs a look-ahead token with token type @var{token} and
3509semantic value @var{value}; then it discards the value that was
3510going to be reduced by this rule.
3511
3512If the macro is used when it is not valid, such as when there is
3513a look-ahead token already, then it reports a syntax error with
3514a message @samp{cannot back up} and performs ordinary error
3515recovery.
3516
3517In either case, the rest of the action is not executed.
3518
3519@item YYEMPTY
3520@vindex YYEMPTY
3521Value stored in @code{yychar} when there is no look-ahead token.
3522
3523@item YYERROR;
3524@findex YYERROR
3525Cause an immediate syntax error. This statement initiates error
3526recovery just as if the parser itself had detected an error; however, it
3527does not call @code{yyerror}, and does not print any message. If you
3528want to print an error message, call @code{yyerror} explicitly before
3529the @samp{YYERROR;} statement. @xref{Error Recovery}.
3530
3531@item YYRECOVERING
3532This macro stands for an expression that has the value 1 when the parser
3533is recovering from a syntax error, and 0 the rest of the time.
3534@xref{Error Recovery}.
3535
3536@item yychar
3537Variable containing the current look-ahead token. (In a pure parser,
3538this is actually a local variable within @code{yyparse}.) When there is
3539no look-ahead token, the value @code{YYEMPTY} is stored in the variable.
3540@xref{Look-Ahead, ,Look-Ahead Tokens}.
3541
3542@item yyclearin;
3543Discard the current look-ahead token. This is useful primarily in
3544error rules. @xref{Error Recovery}.
3545
3546@item yyerrok;
3547Resume generating error messages immediately for subsequent syntax
3548errors. This is useful primarily in error rules.
3549@xref{Error Recovery}.
3550
3551@item @@@var{n}
3552@findex @@@var{n}
3553Acts like a structure variable containing information on the line
3554numbers and column numbers of the @var{n}th component of the current
3555rule. The structure has four members, like this:
3556
3557@example
3558struct @{
3559 int first_line, last_line;
3560 int first_column, last_column;
3561@};
3562@end example
3563
3564Thus, to get the starting line number of the third component, use
3565@samp{@@3.first_line}.
3566
3567In order for the members of this structure to contain valid information,
3568you must make @code{yylex} supply this information about each token.
3569If you need only certain members, then @code{yylex} need only fill in
3570those members.
3571
3572The use of this feature makes the parser noticeably slower.
3573@end table
3574
3575@node Algorithm, Error Recovery, Interface, Top
3576@chapter The Bison Parser Algorithm
3577@cindex Bison parser algorithm
3578@cindex algorithm of parser
3579@cindex shifting
3580@cindex reduction
3581@cindex parser stack
3582@cindex stack, parser
3583
3584As Bison reads tokens, it pushes them onto a stack along with their
3585semantic values. The stack is called the @dfn{parser stack}. Pushing a
3586token is traditionally called @dfn{shifting}.
3587
3588For example, suppose the infix calculator has read @samp{1 + 5 *}, with a
3589@samp{3} to come. The stack will have four elements, one for each token
3590that was shifted.
3591
3592But the stack does not always have an element for each token read. When
3593the last @var{n} tokens and groupings shifted match the components of a
3594grammar rule, they can be combined according to that rule. This is called
3595@dfn{reduction}. Those tokens and groupings are replaced on the stack by a
3596single grouping whose symbol is the result (left hand side) of that rule.
3597Running the rule's action is part of the process of reduction, because this
3598is what computes the semantic value of the resulting grouping.
3599
3600For example, if the infix calculator's parser stack contains this:
3601
3602@example
36031 + 5 * 3
3604@end example
3605
3606@noindent
3607and the next input token is a newline character, then the last three
3608elements can be reduced to 15 via the rule:
3609
3610@example
3611expr: expr '*' expr;
3612@end example
3613
3614@noindent
3615Then the stack contains just these three elements:
3616
3617@example
36181 + 15
3619@end example
3620
3621@noindent
3622At this point, another reduction can be made, resulting in the single value
362316. Then the newline token can be shifted.
3624
3625The parser tries, by shifts and reductions, to reduce the entire input down
3626to a single grouping whose symbol is the grammar's start-symbol
3627(@pxref{Language and Grammar, ,Languages and Context-Free Grammars}).
3628
3629This kind of parser is known in the literature as a bottom-up parser.
3630
3631@menu
3632* Look-Ahead:: Parser looks one token ahead when deciding what to do.
3633* Shift/Reduce:: Conflicts: when either shifting or reduction is valid.
3634* Precedence:: Operator precedence works by resolving conflicts.
3635* Contextual Precedence:: When an operator's precedence depends on context.
3636* Parser States:: The parser is a finite-state-machine with stack.
3637* Reduce/Reduce:: When two rules are applicable in the same situation.
3638* Mystery Conflicts:: Reduce/reduce conflicts that look unjustified.
3639* Stack Overflow:: What happens when stack gets full. How to avoid it.
3640@end menu
3641
3642@node Look-Ahead, Shift/Reduce, , Algorithm
3643@section Look-Ahead Tokens
3644@cindex look-ahead token
3645
3646The Bison parser does @emph{not} always reduce immediately as soon as the
3647last @var{n} tokens and groupings match a rule. This is because such a
3648simple strategy is inadequate to handle most languages. Instead, when a
3649reduction is possible, the parser sometimes ``looks ahead'' at the next
3650token in order to decide what to do.
3651
3652When a token is read, it is not immediately shifted; first it becomes the
3653@dfn{look-ahead token}, which is not on the stack. Now the parser can
3654perform one or more reductions of tokens and groupings on the stack, while
3655the look-ahead token remains off to the side. When no more reductions
3656should take place, the look-ahead token is shifted onto the stack. This
3657does not mean that all possible reductions have been done; depending on the
3658token type of the look-ahead token, some rules may choose to delay their
3659application.
3660
3661Here is a simple case where look-ahead is needed. These three rules define
3662expressions which contain binary addition operators and postfix unary
3663factorial operators (@samp{!}), and allow parentheses for grouping.
3664
3665@example
3666@group
3667expr: term '+' expr
3668 | term
3669 ;
3670@end group
3671
3672@group
3673term: '(' expr ')'
3674 | term '!'
3675 | NUMBER
3676 ;
3677@end group
3678@end example
3679
3680Suppose that the tokens @w{@samp{1 + 2}} have been read and shifted; what
3681should be done? If the following token is @samp{)}, then the first three
3682tokens must be reduced to form an @code{expr}. This is the only valid
3683course, because shifting the @samp{)} would produce a sequence of symbols
3684@w{@code{term ')'}}, and no rule allows this.
3685
3686If the following token is @samp{!}, then it must be shifted immediately so
3687that @w{@samp{2 !}} can be reduced to make a @code{term}. If instead the
3688parser were to reduce before shifting, @w{@samp{1 + 2}} would become an
3689@code{expr}. It would then be impossible to shift the @samp{!} because
3690doing so would produce on the stack the sequence of symbols @code{expr
3691'!'}. No rule allows that sequence.
3692
3693@vindex yychar
3694The current look-ahead token is stored in the variable @code{yychar}.
3695@xref{Action Features, ,Special Features for Use in Actions}.
3696
3697@node Shift/Reduce, Precedence, Look-Ahead, Algorithm
3698@section Shift/Reduce Conflicts
3699@cindex conflicts
3700@cindex shift/reduce conflicts
3701@cindex dangling @code{else}
3702@cindex @code{else}, dangling
3703
3704Suppose we are parsing a language which has if-then and if-then-else
3705statements, with a pair of rules like this:
3706
3707@example
3708@group
3709if_stmt:
3710 IF expr THEN stmt
3711 | IF expr THEN stmt ELSE stmt
3712 ;
3713@end group
3714@end example
3715
3716@noindent
3717Here we assume that @code{IF}, @code{THEN} and @code{ELSE} are
3718terminal symbols for specific keyword tokens.
3719
3720When the @code{ELSE} token is read and becomes the look-ahead token, the
3721contents of the stack (assuming the input is valid) are just right for
3722reduction by the first rule. But it is also legitimate to shift the
3723@code{ELSE}, because that would lead to eventual reduction by the second
3724rule.
3725
3726This situation, where either a shift or a reduction would be valid, is
3727called a @dfn{shift/reduce conflict}. Bison is designed to resolve
3728these conflicts by choosing to shift, unless otherwise directed by
3729operator precedence declarations. To see the reason for this, let's
3730contrast it with the other alternative.
3731
3732Since the parser prefers to shift the @code{ELSE}, the result is to attach
3733the else-clause to the innermost if-statement, making these two inputs
3734equivalent:
3735
3736@example
3737if x then if y then win (); else lose;
3738
3739if x then do; if y then win (); else lose; end;
3740@end example
3741
3742But if the parser chose to reduce when possible rather than shift, the
3743result would be to attach the else-clause to the outermost if-statement,
3744making these two inputs equivalent:
3745
3746@example
3747if x then if y then win (); else lose;
3748
3749if x then do; if y then win (); end; else lose;
3750@end example
3751
3752The conflict exists because the grammar as written is ambiguous: either
3753parsing of the simple nested if-statement is legitimate. The established
3754convention is that these ambiguities are resolved by attaching the
3755else-clause to the innermost if-statement; this is what Bison accomplishes
3756by choosing to shift rather than reduce. (It would ideally be cleaner to
3757write an unambiguous grammar, but that is very hard to do in this case.)
3758This particular ambiguity was first encountered in the specifications of
3759Algol 60 and is called the ``dangling @code{else}'' ambiguity.
3760
3761To avoid warnings from Bison about predictable, legitimate shift/reduce
3762conflicts, use the @code{%expect @var{n}} declaration. There will be no
3763warning as long as the number of shift/reduce conflicts is exactly @var{n}.
3764@xref{Expect Decl, ,Suppressing Conflict Warnings}.
3765
3766The definition of @code{if_stmt} above is solely to blame for the
3767conflict, but the conflict does not actually appear without additional
3768rules. Here is a complete Bison input file that actually manifests the
3769conflict:
3770
3771@example
3772@group
3773%token IF THEN ELSE variable
3774%%
3775@end group
3776@group
3777stmt: expr
3778 | if_stmt
3779 ;
3780@end group
3781
3782@group
3783if_stmt:
3784 IF expr THEN stmt
3785 | IF expr THEN stmt ELSE stmt
3786 ;
3787@end group
3788
3789expr: variable
3790 ;
3791@end example
3792
3793@node Precedence, Contextual Precedence, Shift/Reduce, Algorithm
3794@section Operator Precedence
3795@cindex operator precedence
3796@cindex precedence of operators
3797
3798Another situation where shift/reduce conflicts appear is in arithmetic
3799expressions. Here shifting is not always the preferred resolution; the
3800Bison declarations for operator precedence allow you to specify when to
3801shift and when to reduce.
3802
3803@menu
3804* Why Precedence:: An example showing why precedence is needed.
3805* Using Precedence:: How to specify precedence in Bison grammars.
3806* Precedence Examples:: How these features are used in the previous example.
3807* How Precedence:: How they work.
3808@end menu
3809
3810@node Why Precedence, Using Precedence, , Precedence
3811@subsection When Precedence is Needed
3812
3813Consider the following ambiguous grammar fragment (ambiguous because the
3814input @w{@samp{1 - 2 * 3}} can be parsed in two different ways):
3815
3816@example
3817@group
3818expr: expr '-' expr
3819 | expr '*' expr
3820 | expr '<' expr
3821 | '(' expr ')'
3822 @dots{}
3823 ;
3824@end group
3825@end example
3826
3827@noindent
3828Suppose the parser has seen the tokens @samp{1}, @samp{-} and @samp{2};
3829should it reduce them via the rule for the addition operator? It depends
3830on the next token. Of course, if the next token is @samp{)}, we must
3831reduce; shifting is invalid because no single rule can reduce the token
3832sequence @w{@samp{- 2 )}} or anything starting with that. But if the next
3833token is @samp{*} or @samp{<}, we have a choice: either shifting or
3834reduction would allow the parse to complete, but with different
3835results.
3836
3837To decide which one Bison should do, we must consider the
3838results. If the next operator token @var{op} is shifted, then it
3839must be reduced first in order to permit another opportunity to
3840reduce the sum. The result is (in effect) @w{@samp{1 - (2
3841@var{op} 3)}}. On the other hand, if the subtraction is reduced
3842before shifting @var{op}, the result is @w{@samp{(1 - 2) @var{op}
38433}}. Clearly, then, the choice of shift or reduce should depend
3844on the relative precedence of the operators @samp{-} and
3845@var{op}: @samp{*} should be shifted first, but not @samp{<}.
3846
3847@cindex associativity
3848What about input such as @w{@samp{1 - 2 - 5}}; should this be
3849@w{@samp{(1 - 2) - 5}} or should it be @w{@samp{1 - (2 - 5)}}? For
3850most operators we prefer the former, which is called @dfn{left
3851association}. The latter alternative, @dfn{right association}, is
3852desirable for assignment operators. The choice of left or right
3853association is a matter of whether the parser chooses to shift or
3854reduce when the stack contains @w{@samp{1 - 2}} and the look-ahead
3855token is @samp{-}: shifting makes right-associativity.
3856
3857@node Using Precedence, Precedence Examples, Why Precedence, Precedence
3858@subsection Specifying Operator Precedence
3859@findex %left
3860@findex %right
3861@findex %nonassoc
3862
3863Bison allows you to specify these choices with the operator precedence
3864declarations @code{%left} and @code{%right}. Each such declaration
3865contains a list of tokens, which are operators whose precedence and
3866associativity is being declared. The @code{%left} declaration makes all
3867those operators left-associative and the @code{%right} declaration makes
3868them right-associative. A third alternative is @code{%nonassoc}, which
3869declares that it is a syntax error to find the same operator twice ``in a
3870row''.
3871
3872The relative precedence of different operators is controlled by the
3873order in which they are declared. The first @code{%left} or
3874@code{%right} declaration in the file declares the operators whose
3875precedence is lowest, the next such declaration declares the operators
3876whose precedence is a little higher, and so on.
3877
3878@node Precedence Examples, How Precedence, Using Precedence, Precedence
3879@subsection Precedence Examples
3880
3881In our example, we would want the following declarations:
3882
3883@example
3884%left '<'
3885%left '-'
3886%left '*'
3887@end example
3888
3889In a more complete example, which supports other operators as well, we
3890would declare them in groups of equal precedence. For example, @code{'+'} is
3891declared with @code{'-'}:
3892
3893@example
3894%left '<' '>' '=' NE LE GE
3895%left '+' '-'
3896%left '*' '/'
3897@end example
3898
3899@noindent
3900(Here @code{NE} and so on stand for the operators for ``not equal''
3901and so on. We assume that these tokens are more than one character long
3902and therefore are represented by names, not character literals.)
3903
3904@node How Precedence, , Precedence Examples, Precedence
3905@subsection How Precedence Works
3906
3907The first effect of the precedence declarations is to assign precedence
3908levels to the terminal symbols declared. The second effect is to assign
3909precedence levels to certain rules: each rule gets its precedence from the
3910last terminal symbol mentioned in the components. (You can also specify
3911explicitly the precedence of a rule. @xref{Contextual Precedence, ,Context-Dependent Precedence}.)
3912
3913Finally, the resolution of conflicts works by comparing the
3914precedence of the rule being considered with that of the
3915look-ahead token. If the token's precedence is higher, the
3916choice is to shift. If the rule's precedence is higher, the
3917choice is to reduce. If they have equal precedence, the choice
3918is made based on the associativity of that precedence level. The
3919verbose output file made by @samp{-v} (@pxref{Invocation, ,Invoking Bison}) says
3920how each conflict was resolved.
3921
3922Not all rules and not all tokens have precedence. If either the rule or
3923the look-ahead token has no precedence, then the default is to shift.
3924
3925@node Contextual Precedence, Parser States, Precedence, Algorithm
3926@section Context-Dependent Precedence
3927@cindex context-dependent precedence
3928@cindex unary operator precedence
3929@cindex precedence, context-dependent
3930@cindex precedence, unary operator
3931@findex %prec
3932
3933Often the precedence of an operator depends on the context. This sounds
3934outlandish at first, but it is really very common. For example, a minus
3935sign typically has a very high precedence as a unary operator, and a
3936somewhat lower precedence (lower than multiplication) as a binary operator.
3937
3938The Bison precedence declarations, @code{%left}, @code{%right} and
3939@code{%nonassoc}, can only be used once for a given token; so a token has
3940only one precedence declared in this way. For context-dependent
3941precedence, you need to use an additional mechanism: the @code{%prec}
3942modifier for rules.@refill
3943
3944The @code{%prec} modifier declares the precedence of a particular rule by
3945specifying a terminal symbol whose precedence should be used for that rule.
3946It's not necessary for that symbol to appear otherwise in the rule. The
3947modifier's syntax is:
3948
3949@example
3950%prec @var{terminal-symbol}
3951@end example
3952
3953@noindent
3954and it is written after the components of the rule. Its effect is to
3955assign the rule the precedence of @var{terminal-symbol}, overriding
3956the precedence that would be deduced for it in the ordinary way. The
3957altered rule precedence then affects how conflicts involving that rule
3958are resolved (@pxref{Precedence, ,Operator Precedence}).
3959
3960Here is how @code{%prec} solves the problem of unary minus. First, declare
3961a precedence for a fictitious terminal symbol named @code{UMINUS}. There
3962are no tokens of this type, but the symbol serves to stand for its
3963precedence:
3964
3965@example
3966@dots{}
3967%left '+' '-'
3968%left '*'
3969%left UMINUS
3970@end example
3971
3972Now the precedence of @code{UMINUS} can be used in specific rules:
3973
3974@example
3975@group
3976exp: @dots{}
3977 | exp '-' exp
3978 @dots{}
3979 | '-' exp %prec UMINUS
3980@end group
3981@end example
3982
3983@node Parser States, Reduce/Reduce, Contextual Precedence, Algorithm
3984@section Parser States
3985@cindex finite-state machine
3986@cindex parser state
3987@cindex state (of parser)
3988
3989The function @code{yyparse} is implemented using a finite-state machine.
3990The values pushed on the parser stack are not simply token type codes; they
3991represent the entire sequence of terminal and nonterminal symbols at or
3992near the top of the stack. The current state collects all the information
3993about previous input which is relevant to deciding what to do next.
3994
3995Each time a look-ahead token is read, the current parser state together
3996with the type of look-ahead token are looked up in a table. This table
3997entry can say, ``Shift the look-ahead token.'' In this case, it also
3998specifies the new parser state, which is pushed onto the top of the
3999parser stack. Or it can say, ``Reduce using rule number @var{n}.''
4000This means that a certain number of tokens or groupings are taken off
4001the top of the stack, and replaced by one grouping. In other words,
4002that number of states are popped from the stack, and one new state is
4003pushed.
4004
4005There is one other alternative: the table can say that the look-ahead token
4006is erroneous in the current state. This causes error processing to begin
4007(@pxref{Error Recovery}).
4008
4009@node Reduce/Reduce, Mystery Conflicts, Parser States, Algorithm
4010@section Reduce/Reduce Conflicts
4011@cindex reduce/reduce conflict
4012@cindex conflicts, reduce/reduce
4013
4014A reduce/reduce conflict occurs if there are two or more rules that apply
4015to the same sequence of input. This usually indicates a serious error
4016in the grammar.
4017
4018For example, here is an erroneous attempt to define a sequence
4019of zero or more @code{word} groupings.
4020
4021@example
4022sequence: /* empty */
4023 @{ printf ("empty sequence\n"); @}
4024 | maybeword
4025 | sequence word
4026 @{ printf ("added word %s\n", $2); @}
4027 ;
4028
4029maybeword: /* empty */
4030 @{ printf ("empty maybeword\n"); @}
4031 | word
4032 @{ printf ("single word %s\n", $1); @}
4033 ;
4034@end example
4035
4036@noindent
4037The error is an ambiguity: there is more than one way to parse a single
4038@code{word} into a @code{sequence}. It could be reduced to a
4039@code{maybeword} and then into a @code{sequence} via the second rule.
4040Alternatively, nothing-at-all could be reduced into a @code{sequence}
4041via the first rule, and this could be combined with the @code{word}
4042using the third rule for @code{sequence}.
4043
4044There is also more than one way to reduce nothing-at-all into a
4045@code{sequence}. This can be done directly via the first rule,
4046or indirectly via @code{maybeword} and then the second rule.
4047
4048You might think that this is a distinction without a difference, because it
4049does not change whether any particular input is valid or not. But it does
4050affect which actions are run. One parsing order runs the second rule's
4051action; the other runs the first rule's action and the third rule's action.
4052In this example, the output of the program changes.
4053
4054Bison resolves a reduce/reduce conflict by choosing to use the rule that
4055appears first in the grammar, but it is very risky to rely on this. Every
4056reduce/reduce conflict must be studied and usually eliminated. Here is the
4057proper way to define @code{sequence}:
4058
4059@example
4060sequence: /* empty */
4061 @{ printf ("empty sequence\n"); @}
4062 | sequence word
4063 @{ printf ("added word %s\n", $2); @}
4064 ;
4065@end example
4066
4067Here is another common error that yields a reduce/reduce conflict:
4068
4069@example
4070sequence: /* empty */
4071 | sequence words
4072 | sequence redirects
4073 ;
4074
4075words: /* empty */
4076 | words word
4077 ;
4078
4079redirects:/* empty */
4080 | redirects redirect
4081 ;
4082@end example
4083
4084@noindent
4085The intention here is to define a sequence which can contain either
4086@code{word} or @code{redirect} groupings. The individual definitions of
4087@code{sequence}, @code{words} and @code{redirects} are error-free, but the
4088three together make a subtle ambiguity: even an empty input can be parsed
4089in infinitely many ways!
4090
4091Consider: nothing-at-all could be a @code{words}. Or it could be two
4092@code{words} in a row, or three, or any number. It could equally well be a
4093@code{redirects}, or two, or any number. Or it could be a @code{words}
4094followed by three @code{redirects} and another @code{words}. And so on.
4095
4096Here are two ways to correct these rules. First, to make it a single level
4097of sequence:
4098
4099@example
4100sequence: /* empty */
4101 | sequence word
4102 | sequence redirect
4103 ;
4104@end example
4105
4106Second, to prevent either a @code{words} or a @code{redirects}
4107from being empty:
4108
4109@example
4110sequence: /* empty */
4111 | sequence words
4112 | sequence redirects
4113 ;
4114
4115words: word
4116 | words word
4117 ;
4118
4119redirects:redirect
4120 | redirects redirect
4121 ;
4122@end example
4123
4124@node Mystery Conflicts, Stack Overflow, Reduce/Reduce, Algorithm
4125@section Mysterious Reduce/Reduce Conflicts
4126
4127Sometimes reduce/reduce conflicts can occur that don't look warranted.
4128Here is an example:
4129
4130@example
4131@group
4132%token ID
4133
4134%%
4135def: param_spec return_spec ','
4136 ;
4137param_spec:
4138 type
4139 | name_list ':' type
4140 ;
4141@end group
4142@group
4143return_spec:
4144 type
4145 | name ':' type
4146 ;
4147@end group
4148@group
4149type: ID
4150 ;
4151@end group
4152@group
4153name: ID
4154 ;
4155name_list:
4156 name
4157 | name ',' name_list
4158 ;
4159@end group
4160@end example
4161
4162It would seem that this grammar can be parsed with only a single token
4163of look-ahead: when a @code{param_spec} is being read, an @code{ID} is
4164a @code{name} if a comma or colon follows, or a @code{type} if another
4165@code{ID} follows. In other words, this grammar is LR(1).
4166
4167@cindex LR(1)
4168@cindex LALR(1)
4169However, Bison, like most parser generators, cannot actually handle all
4170LR(1) grammars. In this grammar, two contexts, that after an @code{ID}
4171at the beginning of a @code{param_spec} and likewise at the beginning of
4172a @code{return_spec}, are similar enough that Bison assumes they are the
4173same. They appear similar because the same set of rules would be
4174active---the rule for reducing to a @code{name} and that for reducing to
4175a @code{type}. Bison is unable to determine at that stage of processing
4176that the rules would require different look-ahead tokens in the two
4177contexts, so it makes a single parser state for them both. Combining
4178the two contexts causes a conflict later. In parser terminology, this
4179occurrence means that the grammar is not LALR(1).
4180
4181In general, it is better to fix deficiencies than to document them. But
4182this particular deficiency is intrinsically hard to fix; parser
4183generators that can handle LR(1) grammars are hard to write and tend to
4184produce parsers that are very large. In practice, Bison is more useful
4185as it is now.
4186
4187When the problem arises, you can often fix it by identifying the two
4188parser states that are being confused, and adding something to make them
4189look distinct. In the above example, adding one rule to
4190@code{return_spec} as follows makes the problem go away:
4191
4192@example
4193@group
4194%token BOGUS
4195@dots{}
4196%%
4197@dots{}
4198return_spec:
4199 type
4200 | name ':' type
4201 /* This rule is never used. */
4202 | ID BOGUS
4203 ;
4204@end group
4205@end example
4206
4207This corrects the problem because it introduces the possibility of an
4208additional active rule in the context after the @code{ID} at the beginning of
4209@code{return_spec}. This rule is not active in the corresponding context
4210in a @code{param_spec}, so the two contexts receive distinct parser states.
4211As long as the token @code{BOGUS} is never generated by @code{yylex},
4212the added rule cannot alter the way actual input is parsed.
4213
4214In this particular example, there is another way to solve the problem:
4215rewrite the rule for @code{return_spec} to use @code{ID} directly
4216instead of via @code{name}. This also causes the two confusing
4217contexts to have different sets of active rules, because the one for
4218@code{return_spec} activates the altered rule for @code{return_spec}
4219rather than the one for @code{name}.
4220
4221@example
4222param_spec:
4223 type
4224 | name_list ':' type
4225 ;
4226return_spec:
4227 type
4228 | ID ':' type
4229 ;
4230@end example
4231
4232@node Stack Overflow, , Mystery Conflicts, Algorithm
4233@section Stack Overflow, and How to Avoid It
4234@cindex stack overflow
4235@cindex parser stack overflow
4236@cindex overflow of parser stack
4237
4238The Bison parser stack can overflow if too many tokens are shifted and
4239not reduced. When this happens, the parser function @code{yyparse}
4240returns a nonzero value, pausing only to call @code{yyerror} to report
4241the overflow.
4242
4243@vindex YYMAXDEPTH
4244By defining the macro @code{YYMAXDEPTH}, you can control how deep the
4245parser stack can become before a stack overflow occurs. Define the
4246macro with a value that is an integer. This value is the maximum number
4247of tokens that can be shifted (and not reduced) before overflow.
4248It must be a constant expression whose value is known at compile time.
4249
4250The stack space allowed is not necessarily allocated. If you specify a
4251large value for @code{YYMAXDEPTH}, the parser actually allocates a small
4252stack at first, and then makes it bigger by stages as needed. This
4253increasing allocation happens automatically and silently. Therefore,
4254you do not need to make @code{YYMAXDEPTH} painfully small merely to save
4255space for ordinary inputs that do not need much stack.
4256
4257@cindex default stack limit
4258The default value of @code{YYMAXDEPTH}, if you do not define it, is
425910000.
4260
4261@vindex YYINITDEPTH
4262You can control how much stack is allocated initially by defining the
4263macro @code{YYINITDEPTH}. This value too must be a compile-time
4264constant integer. The default is 200.
4265
4266@node Error Recovery, Context Dependency, Algorithm, Top
4267@chapter Error Recovery
4268@cindex error recovery
4269@cindex recovery from errors
4270
4271It is not usually acceptable to have a program terminate on a parse
4272error. For example, a compiler should recover sufficiently to parse the
4273rest of the input file and check it for errors; a calculator should accept
4274another expression.
4275
4276In a simple interactive command parser where each input is one line, it may
4277be sufficient to allow @code{yyparse} to return 1 on error and have the
4278caller ignore the rest of the input line when that happens (and then call
4279@code{yyparse} again). But this is inadequate for a compiler, because it
4280forgets all the syntactic context leading up to the error. A syntax error
4281deep within a function in the compiler input should not cause the compiler
4282to treat the following line like the beginning of a source file.
4283
4284@findex error
4285You can define how to recover from a syntax error by writing rules to
4286recognize the special token @code{error}. This is a terminal symbol that
4287is always defined (you need not declare it) and reserved for error
4288handling. The Bison parser generates an @code{error} token whenever a
4289syntax error happens; if you have provided a rule to recognize this token
4290in the current context, the parse can continue.
4291
4292For example:
4293
4294@example
4295stmnts: /* empty string */
4296 | stmnts '\n'
4297 | stmnts exp '\n'
4298 | stmnts error '\n'
4299@end example
4300
4301The fourth rule in this example says that an error followed by a newline
4302makes a valid addition to any @code{stmnts}.
4303
4304What happens if a syntax error occurs in the middle of an @code{exp}? The
4305error recovery rule, interpreted strictly, applies to the precise sequence
4306of a @code{stmnts}, an @code{error} and a newline. If an error occurs in
4307the middle of an @code{exp}, there will probably be some additional tokens
4308and subexpressions on the stack after the last @code{stmnts}, and there
4309will be tokens to read before the next newline. So the rule is not
4310applicable in the ordinary way.
4311
4312But Bison can force the situation to fit the rule, by discarding part of
4313the semantic context and part of the input. First it discards states and
4314objects from the stack until it gets back to a state in which the
4315@code{error} token is acceptable. (This means that the subexpressions
4316already parsed are discarded, back to the last complete @code{stmnts}.) At
4317this point the @code{error} token can be shifted. Then, if the old
4318look-ahead token is not acceptable to be shifted next, the parser reads
4319tokens and discards them until it finds a token which is acceptable. In
4320this example, Bison reads and discards input until the next newline
4321so that the fourth rule can apply.
4322
4323The choice of error rules in the grammar is a choice of strategies for
4324error recovery. A simple and useful strategy is simply to skip the rest of
4325the current input line or current statement if an error is detected:
4326
4327@example
4328stmnt: error ';' /* on error, skip until ';' is read */
4329@end example
4330
4331It is also useful to recover to the matching close-delimiter of an
4332opening-delimiter that has already been parsed. Otherwise the
4333close-delimiter will probably appear to be unmatched, and generate another,
4334spurious error message:
4335
4336@example
4337primary: '(' expr ')'
4338 | '(' error ')'
4339 @dots{}
4340 ;
4341@end example
4342
4343Error recovery strategies are necessarily guesses. When they guess wrong,
4344one syntax error often leads to another. In the above example, the error
4345recovery rule guesses that an error is due to bad input within one
4346@code{stmnt}. Suppose that instead a spurious semicolon is inserted in the
4347middle of a valid @code{stmnt}. After the error recovery rule recovers
4348from the first error, another syntax error will be found straightaway,
4349since the text following the spurious semicolon is also an invalid
4350@code{stmnt}.
4351
4352To prevent an outpouring of error messages, the parser will output no error
4353message for another syntax error that happens shortly after the first; only
4354after three consecutive input tokens have been successfully shifted will
4355error messages resume.
4356
4357Note that rules which accept the @code{error} token may have actions, just
4358as any other rules can.
4359
4360@findex yyerrok
4361You can make error messages resume immediately by using the macro
4362@code{yyerrok} in an action. If you do this in the error rule's action, no
4363error messages will be suppressed. This macro requires no arguments;
4364@samp{yyerrok;} is a valid C statement.
4365
4366@findex yyclearin
4367The previous look-ahead token is reanalyzed immediately after an error. If
4368this is unacceptable, then the macro @code{yyclearin} may be used to clear
4369this token. Write the statement @samp{yyclearin;} in the error rule's
4370action.
4371
4372For example, suppose that on a parse error, an error handling routine is
4373called that advances the input stream to some point where parsing should
4374once again commence. The next symbol returned by the lexical scanner is
4375probably correct. The previous look-ahead token ought to be discarded
4376with @samp{yyclearin;}.
4377
4378@vindex YYRECOVERING
4379The macro @code{YYRECOVERING} stands for an expression that has the
4380value 1 when the parser is recovering from a syntax error, and 0 the
4381rest of the time. A value of 1 indicates that error messages are
4382currently suppressed for new syntax errors.
4383
4384@node Context Dependency, Debugging, Error Recovery, Top
4385@chapter Handling Context Dependencies
4386
4387The Bison paradigm is to parse tokens first, then group them into larger
4388syntactic units. In many languages, the meaning of a token is affected by
4389its context. Although this violates the Bison paradigm, certain techniques
4390(known as @dfn{kludges}) may enable you to write Bison parsers for such
4391languages.
4392
4393@menu
4394* Semantic Tokens:: Token parsing can depend on the semantic context.
4395* Lexical Tie-ins:: Token parsing can depend on the syntactic context.
4396* Tie-in Recovery:: Lexical tie-ins have implications for how
4397 error recovery rules must be written.
4398@end menu
4399
4400(Actually, ``kludge'' means any technique that gets its job done but is
4401neither clean nor robust.)
4402
4403@node Semantic Tokens, Lexical Tie-ins, , Context Dependency
4404@section Semantic Info in Token Types
4405
4406The C language has a context dependency: the way an identifier is used
4407depends on what its current meaning is. For example, consider this:
4408
4409@example
4410foo (x);
4411@end example
4412
4413This looks like a function call statement, but if @code{foo} is a typedef
4414name, then this is actually a declaration of @code{x}. How can a Bison
4415parser for C decide how to parse this input?
4416
4417The method used in GNU C is to have two different token types,
4418@code{IDENTIFIER} and @code{TYPENAME}. When @code{yylex} finds an
4419identifier, it looks up the current declaration of the identifier in order
4420to decide which token type to return: @code{TYPENAME} if the identifier is
4421declared as a typedef, @code{IDENTIFIER} otherwise.
4422
4423The grammar rules can then express the context dependency by the choice of
4424token type to recognize. @code{IDENTIFIER} is accepted as an expression,
4425but @code{TYPENAME} is not. @code{TYPENAME} can start a declaration, but
4426@code{IDENTIFIER} cannot. In contexts where the meaning of the identifier
4427is @emph{not} significant, such as in declarations that can shadow a
4428typedef name, either @code{TYPENAME} or @code{IDENTIFIER} is
4429accepted---there is one rule for each of the two token types.
4430
4431This technique is simple to use if the decision of which kinds of
4432identifiers to allow is made at a place close to where the identifier is
4433parsed. But in C this is not always so: C allows a declaration to
4434redeclare a typedef name provided an explicit type has been specified
4435earlier:
4436
4437@example
4438typedef int foo, bar, lose;
4439static foo (bar); /* @r{redeclare @code{bar} as static variable} */
4440static int foo (lose); /* @r{redeclare @code{foo} as function} */
4441@end example
4442
4443Unfortunately, the name being declared is separated from the declaration
4444construct itself by a complicated syntactic structure---the ``declarator''.
4445
4446As a result, the part of Bison parser for C needs to be duplicated, with
4447all the nonterminal names changed: once for parsing a declaration in which
4448a typedef name can be redefined, and once for parsing a declaration in
4449which that can't be done. Here is a part of the duplication, with actions
4450omitted for brevity:
4451
4452@example
4453initdcl:
4454 declarator maybeasm '='
4455 init
4456 | declarator maybeasm
4457 ;
4458
4459notype_initdcl:
4460 notype_declarator maybeasm '='
4461 init
4462 | notype_declarator maybeasm
4463 ;
4464@end example
4465
4466@noindent
4467Here @code{initdcl} can redeclare a typedef name, but @code{notype_initdcl}
4468cannot. The distinction between @code{declarator} and
4469@code{notype_declarator} is the same sort of thing.
4470
4471There is some similarity between this technique and a lexical tie-in
4472(described next), in that information which alters the lexical analysis is
4473changed during parsing by other parts of the program. The difference is
4474here the information is global, and is used for other purposes in the
4475program. A true lexical tie-in has a special-purpose flag controlled by
4476the syntactic context.
4477
4478@node Lexical Tie-ins, Tie-in Recovery, Semantic Tokens, Context Dependency
4479@section Lexical Tie-ins
4480@cindex lexical tie-in
4481
4482One way to handle context-dependency is the @dfn{lexical tie-in}: a flag
4483which is set by Bison actions, whose purpose is to alter the way tokens are
4484parsed.
4485
4486For example, suppose we have a language vaguely like C, but with a special
4487construct @samp{hex (@var{hex-expr})}. After the keyword @code{hex} comes
4488an expression in parentheses in which all integers are hexadecimal. In
4489particular, the token @samp{a1b} must be treated as an integer rather than
4490as an identifier if it appears in that context. Here is how you can do it:
4491
4492@example
4493@group
4494%@{
4495int hexflag;
4496%@}
4497%%
4498@dots{}
4499@end group
4500@group
4501expr: IDENTIFIER
4502 | constant
4503 | HEX '('
4504 @{ hexflag = 1; @}
4505 expr ')'
4506 @{ hexflag = 0;
4507 $$ = $4; @}
4508 | expr '+' expr
4509 @{ $$ = make_sum ($1, $3); @}
4510 @dots{}
4511 ;
4512@end group
4513
4514@group
4515constant:
4516 INTEGER
4517 | STRING
4518 ;
4519@end group
4520@end example
4521
4522@noindent
4523Here we assume that @code{yylex} looks at the value of @code{hexflag}; when
4524it is nonzero, all integers are parsed in hexadecimal, and tokens starting
4525with letters are parsed as integers if possible.
4526
4527The declaration of @code{hexflag} shown in the C declarations section of
4528the parser file is needed to make it accessible to the actions
4529(@pxref{C Declarations, ,The C Declarations Section}). You must also write the code in @code{yylex}
4530to obey the flag.
4531
4532@node Tie-in Recovery, , Lexical Tie-ins, Context Dependency
4533@section Lexical Tie-ins and Error Recovery
4534
4535Lexical tie-ins make strict demands on any error recovery rules you have.
4536@xref{Error Recovery}.
4537
4538The reason for this is that the purpose of an error recovery rule is to
4539abort the parsing of one construct and resume in some larger construct.
4540For example, in C-like languages, a typical error recovery rule is to skip
4541tokens until the next semicolon, and then start a new statement, like this:
4542
4543@example
4544stmt: expr ';'
4545 | IF '(' expr ')' stmt @{ @dots{} @}
4546 @dots{}
4547 error ';'
4548 @{ hexflag = 0; @}
4549 ;
4550@end example
4551
4552If there is a syntax error in the middle of a @samp{hex (@var{expr})}
4553construct, this error rule will apply, and then the action for the
4554completed @samp{hex (@var{expr})} will never run. So @code{hexflag} would
4555remain set for the entire rest of the input, or until the next @code{hex}
4556keyword, causing identifiers to be misinterpreted as integers.
4557
4558To avoid this problem the error recovery rule itself clears @code{hexflag}.
4559
4560There may also be an error recovery rule that works within expressions.
4561For example, there could be a rule which applies within parentheses
4562and skips to the close-parenthesis:
4563
4564@example
4565@group
4566expr: @dots{}
4567 | '(' expr ')'
4568 @{ $$ = $2; @}
4569 | '(' error ')'
4570 @dots{}
4571@end group
4572@end example
4573
4574If this rule acts within the @code{hex} construct, it is not going to abort
4575that construct (since it applies to an inner level of parentheses within
4576the construct). Therefore, it should not clear the flag: the rest of
4577the @code{hex} construct should be parsed with the flag still in effect.
4578
4579What if there is an error recovery rule which might abort out of the
4580@code{hex} construct or might not, depending on circumstances? There is no
4581way you can write the action to determine whether a @code{hex} construct is
4582being aborted or not. So if you are using a lexical tie-in, you had better
4583make sure your error recovery rules are not of this kind. Each rule must
4584be such that you can be sure that it always will, or always won't, have to
4585clear the flag.
4586
4587@node Debugging, Invocation, Context Dependency, Top
4588@chapter Debugging Your Parser
4589@findex YYDEBUG
4590@findex yydebug
4591@cindex debugging
4592@cindex tracing the parser
4593
4594If a Bison grammar compiles properly but doesn't do what you want when it
4595runs, the @code{yydebug} parser-trace feature can help you figure out why.
4596
4597To enable compilation of trace facilities, you must define the macro
4598@code{YYDEBUG} when you compile the parser. You could use
4599@samp{-DYYDEBUG=1} as a compiler option or you could put @samp{#define
4600YYDEBUG 1} in the C declarations section of the grammar file
4601(@pxref{C Declarations, ,The C Declarations Section}). Alternatively, use the @samp{-t} option when
4602you run Bison (@pxref{Invocation, ,Invoking Bison}). We always define @code{YYDEBUG} so that
4603debugging is always possible.
4604
4605The trace facility uses @code{stderr}, so you must add @w{@code{#include
4606<stdio.h>}} to the C declarations section unless it is already there.
4607
4608Once you have compiled the program with trace facilities, the way to
4609request a trace is to store a nonzero value in the variable @code{yydebug}.
4610You can do this by making the C code do it (in @code{main}, perhaps), or
4611you can alter the value with a C debugger.
4612
4613Each step taken by the parser when @code{yydebug} is nonzero produces a
4614line or two of trace information, written on @code{stderr}. The trace
4615messages tell you these things:
4616
4617@itemize @bullet
4618@item
4619Each time the parser calls @code{yylex}, what kind of token was read.
4620
4621@item
4622Each time a token is shifted, the depth and complete contents of the
4623state stack (@pxref{Parser States}).
4624
4625@item
4626Each time a rule is reduced, which rule it is, and the complete contents
4627of the state stack afterward.
4628@end itemize
4629
4630To make sense of this information, it helps to refer to the listing file
4631produced by the Bison @samp{-v} option (@pxref{Invocation, ,Invoking Bison}). This file
4632shows the meaning of each state in terms of positions in various rules, and
4633also what each state will do with each possible input token. As you read
4634the successive trace messages, you can see that the parser is functioning
4635according to its specification in the listing file. Eventually you will
4636arrive at the place where something undesirable happens, and you will see
4637which parts of the grammar are to blame.
4638
4639The parser file is a C program and you can use C debuggers on it, but it's
4640not easy to interpret what it is doing. The parser function is a
4641finite-state machine interpreter, and aside from the actions it executes
4642the same code over and over. Only the values of variables show where in
4643the grammar it is working.
4644
4645@findex YYPRINT
4646The debugging information normally gives the token type of each token
4647read, but not its semantic value. You can optionally define a macro
4648named @code{YYPRINT} to provide a way to print the value. If you define
4649@code{YYPRINT}, it should take three arguments. The parser will pass a
4650standard I/O stream, the numeric code for the token type, and the token
4651value (from @code{yylval}).
4652
4653Here is an example of @code{YYPRINT} suitable for the multi-function
4654calculator (@pxref{Mfcalc Decl, ,Declarations for @code{mfcalc}}):
4655
4656@smallexample
4657#define YYPRINT(file, type, value) yyprint (file, type, value)
4658
4659static void
4660yyprint (file, type, value)
4661 FILE *file;
4662 int type;
4663 YYSTYPE value;
4664@{
4665 if (type == VAR)
4666 fprintf (file, " %s", value.tptr->name);
4667 else if (type == NUM)
4668 fprintf (file, " %d", value.val);
4669@}
4670@end smallexample
4671
4672@node Invocation, Table of Symbols, Debugging, Top
4673@chapter Invoking Bison
4674@cindex invoking Bison
4675@cindex Bison invocation
4676@cindex options for invoking Bison
4677
4678The usual way to invoke Bison is as follows:
4679
4680@example
4681bison @var{infile}
4682@end example
4683
4684Here @var{infile} is the grammar file name, which usually ends in
4685@samp{.y}. The parser file's name is made by replacing the @samp{.y}
4686with @samp{.tab.c}. Thus, the @samp{bison foo.y} filename yields
4687@file{foo.tab.c}, and the @samp{bison hack/foo.y} filename yields
4688@file{hack/foo.tab.c}.@refill
4689
4690@menu
4691* Bison Options:: All the options described in detail,
4692 in alphabetical order by short options.
4693* Option Cross Key:: Alphabetical list of long options.
4694* VMS Invocation:: Bison command syntax on VMS.
4695@end menu
4696
4697@node Bison Options, Option Cross Key, , Invocation
4698@section Bison Options
4699
4700Bison supports both traditional single-letter options and mnemonic long
4701option names. Long option names are indicated with @samp{--} instead of
4702@samp{-}. Abbreviations for option names are allowed as long as they
4703are unique. When a long option takes an argument, like
4704@samp{--file-prefix}, connect the option name and the argument with
4705@samp{=}.
4706
4707Here is a list of options that can be used with Bison, alphabetized by
4708short option. It is followed by a cross key alphabetized by long
4709option.
4710
4711@table @samp
4712@item -b @var{file-prefix}
4713@itemx --file-prefix=@var{prefix}
4714Specify a prefix to use for all Bison output file names. The names are
4715chosen as if the input file were named @file{@var{prefix}.c}.
4716
4717@item -d
4718@itemx --defines
4719Write an extra output file containing macro definitions for the token
4720type names defined in the grammar and the semantic value type
4721@code{YYSTYPE}, as well as a few @code{extern} variable declarations.
4722
4723If the parser output file is named @file{@var{name}.c} then this file
4724is named @file{@var{name}.h}.@refill
4725
4726This output file is essential if you wish to put the definition of
4727@code{yylex} in a separate source file, because @code{yylex} needs to
4728be able to refer to token type codes and the variable
4729@code{yylval}. @xref{Token Values, ,Semantic Values of Tokens}.@refill
4730
4731@item -l
4732@itemx --no-lines
4733Don't put any @code{#line} preprocessor commands in the parser file.
4734Ordinarily Bison puts them in the parser file so that the C compiler
4735and debuggers will associate errors with your source file, the
4736grammar file. This option causes them to associate errors with the
95e742f7 4737parser file, treating it as an independent source file in its own right.
bfa74976
RS
4738
4739@item -o @var{outfile}
4740@itemx --output-file=@var{outfile}
4741Specify the name @var{outfile} for the parser file.
4742
4743The other output files' names are constructed from @var{outfile}
4744as described under the @samp{-v} and @samp{-d} switches.
4745
4746@item -p @var{prefix}
4747@itemx --name-prefix=@var{prefix}
4748Rename the external symbols used in the parser so that they start with
4749@var{prefix} instead of @samp{yy}. The precise list of symbols renamed
e425e872
RS
4750is @code{yyparse}, @code{yylex}, @code{yyerror}, @code{yynerrs},
4751@code{yylval}, @code{yychar} and @code{yydebug}.
bfa74976
RS
4752
4753For example, if you use @samp{-p c}, the names become @code{cparse},
4754@code{clex}, and so on.
4755
4756@xref{Multiple Parsers, ,Multiple Parsers in the Same Program}.
4757
4758@item -t
4759@itemx --debug
4760Output a definition of the macro @code{YYDEBUG} into the parser file,
4761so that the debugging facilities are compiled. @xref{Debugging, ,Debugging Your Parser}.
4762
4763@item -v
4764@itemx --verbose
4765Write an extra output file containing verbose descriptions of the
4766parser states and what is done for each type of look-ahead token in
4767that state.
4768
4769This file also describes all the conflicts, both those resolved by
4770operator precedence and the unresolved ones.
4771
4772The file's name is made by removing @samp{.tab.c} or @samp{.c} from
4773the parser output file name, and adding @samp{.output} instead.@refill
4774
4775Therefore, if the input file is @file{foo.y}, then the parser file is
4776called @file{foo.tab.c} by default. As a consequence, the verbose
4777output file is called @file{foo.output}.@refill
4778
4779@item -V
4780@itemx --version
ff51d159
DM
4781Print the version number of Bison and exit.
4782
4783@item -h
4784@itemx --help
4785Print a summary of the command-line options to Bison and exit.
bfa74976
RS
4786
4787@need 1750
4788@item -y
4789@itemx --yacc
4790@itemx --fixed-output-files
4791Equivalent to @samp{-o y.tab.c}; the parser output file is called
4792@file{y.tab.c}, and the other outputs are called @file{y.output} and
4793@file{y.tab.h}. The purpose of this switch is to imitate Yacc's output
4794file name conventions. Thus, the following shell script can substitute
4795for Yacc:@refill
4796
4797@example
4798bison -y $*
4799@end example
4800@end table
4801
4802@node Option Cross Key, VMS Invocation, Bison Options, Invocation
4803@section Option Cross Key
4804
4805Here is a list of options, alphabetized by long option, to help you find
4806the corresponding short option.
4807
4808@tex
4809\def\leaderfill{\leaders\hbox to 1em{\hss.\hss}\hfill}
4810
4811{\tt
4812\line{ --debug \leaderfill -t}
4813\line{ --defines \leaderfill -d}
4814\line{ --file-prefix \leaderfill -b}
4815\line{ --fixed-output-files \leaderfill -y}
ff51d159 4816\line{ --help \leaderfill -h}
bfa74976
RS
4817\line{ --name-prefix \leaderfill -p}
4818\line{ --no-lines \leaderfill -l}
4819\line{ --output-file \leaderfill -o}
4820\line{ --verbose \leaderfill -v}
4821\line{ --version \leaderfill -V}
4822\line{ --yacc \leaderfill -y}
4823}
4824@end tex
4825
4826@ifinfo
4827@example
4828--debug -t
4829--defines -d
4830--file-prefix=@var{prefix} -b @var{file-prefix}
4831--fixed-output-files --yacc -y
ff51d159 4832--help -h
bfa74976
RS
4833--name-prefix -p
4834--no-lines -l
4835--output-file=@var{outfile} -o @var{outfile}
4836--verbose -v
4837--version -V
4838@end example
4839@end ifinfo
4840
4841@node VMS Invocation, , Option Cross Key, Invocation
4842@section Invoking Bison under VMS
4843@cindex invoking Bison under VMS
4844@cindex VMS
4845
4846The command line syntax for Bison on VMS is a variant of the usual
4847Bison command syntax---adapted to fit VMS conventions.
4848
4849To find the VMS equivalent for any Bison option, start with the long
4850option, and substitute a @samp{/} for the leading @samp{--}, and
4851substitute a @samp{_} for each @samp{-} in the name of the long option.
4852For example, the following invocation under VMS:
4853
4854@example
4855bison /debug/name_prefix=bar foo.y
4856@end example
4857
4858@noindent
4859is equivalent to the following command under POSIX.
4860
4861@example
4862bison --debug --name-prefix=bar foo.y
4863@end example
4864
4865The VMS file system does not permit filenames such as
4866@file{foo.tab.c}. In the above example, the output file
4867would instead be named @file{foo_tab.c}.
4868
4869@node Table of Symbols, Glossary, Invocation, Top
4870@appendix Bison Symbols
4871@cindex Bison symbols, table of
4872@cindex symbols in Bison, table of
4873
4874@table @code
4875@item error
4876A token name reserved for error recovery. This token may be used in
4877grammar rules so as to allow the Bison parser to recognize an error in
4878the grammar without halting the process. In effect, a sentence
4879containing an error may be recognized as valid. On a parse error, the
4880token @code{error} becomes the current look-ahead token. Actions
4881corresponding to @code{error} are then executed, and the look-ahead
4882token is reset to the token that originally caused the violation.
4883@xref{Error Recovery}.
4884
4885@item YYABORT
4886Macro to pretend that an unrecoverable syntax error has occurred, by
4887making @code{yyparse} return 1 immediately. The error reporting
4888function @code{yyerror} is not called. @xref{Parser Function, ,The Parser Function @code{yyparse}}.
4889
4890@item YYACCEPT
4891Macro to pretend that a complete utterance of the language has been
4892read, by making @code{yyparse} return 0 immediately.
4893@xref{Parser Function, ,The Parser Function @code{yyparse}}.
4894
4895@item YYBACKUP
4896Macro to discard a value from the parser stack and fake a look-ahead
4897token. @xref{Action Features, ,Special Features for Use in Actions}.
4898
4899@item YYERROR
4900Macro to pretend that a syntax error has just been detected: call
4901@code{yyerror} and then perform normal error recovery if possible
4902(@pxref{Error Recovery}), or (if recovery is impossible) make
4903@code{yyparse} return 1. @xref{Error Recovery}.
4904
4905@item YYERROR_VERBOSE
4906Macro that you define with @code{#define} in the Bison declarations
4907section to request verbose, specific error message strings when
4908@code{yyerror} is called.
4909
4910@item YYINITDEPTH
4911Macro for specifying the initial size of the parser stack.
4912@xref{Stack Overflow}.
4913
c656404a
RS
4914@item YYLEX_PARAM
4915Macro for specifying an extra argument (or list of extra arguments) for
4916@code{yyparse} to pass to @code{yylex}. @xref{Pure Calling,, Calling
4917Conventions for Pure Parsers}.
4918
bfa74976
RS
4919@item YYLTYPE
4920Macro for the data type of @code{yylloc}; a structure with four
4921members. @xref{Token Positions, ,Textual Positions of Tokens}.
4922
4923@item YYMAXDEPTH
4924Macro for specifying the maximum size of the parser stack.
4925@xref{Stack Overflow}.
4926
c656404a
RS
4927@item YYPARSE_PARAM
4928Macro for specifying the name of a parameter that @code{yyparse} should
4929accept. @xref{Pure Calling,, Calling Conventions for Pure Parsers}.
4930
bfa74976
RS
4931@item YYRECOVERING
4932Macro whose value indicates whether the parser is recovering from a
4933syntax error. @xref{Action Features, ,Special Features for Use in Actions}.
4934
4935@item YYSTYPE
4936Macro for the data type of semantic values; @code{int} by default.
4937@xref{Value Type, ,Data Types of Semantic Values}.
4938
4939@item yychar
4940External integer variable that contains the integer value of the
4941current look-ahead token. (In a pure parser, it is a local variable
4942within @code{yyparse}.) Error-recovery rule actions may examine this
4943variable. @xref{Action Features, ,Special Features for Use in Actions}.
4944
4945@item yyclearin
4946Macro used in error-recovery rule actions. It clears the previous
4947look-ahead token. @xref{Error Recovery}.
4948
4949@item yydebug
4950External integer variable set to zero by default. If @code{yydebug}
4951is given a nonzero value, the parser will output information on input
4952symbols and parser action. @xref{Debugging, ,Debugging Your Parser}.
4953
4954@item yyerrok
4955Macro to cause parser to recover immediately to its normal mode
4956after a parse error. @xref{Error Recovery}.
4957
4958@item yyerror
4959User-supplied function to be called by @code{yyparse} on error. The
4960function receives one argument, a pointer to a character string
4961containing an error message. @xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}.
4962
4963@item yylex
4964User-supplied lexical analyzer function, called with no arguments
4965to get the next token. @xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}.
4966
4967@item yylval
4968External variable in which @code{yylex} should place the semantic
4969value associated with a token. (In a pure parser, it is a local
4970variable within @code{yyparse}, and its address is passed to
4971@code{yylex}.) @xref{Token Values, ,Semantic Values of Tokens}.
4972
4973@item yylloc
4974External variable in which @code{yylex} should place the line and
4975column numbers associated with a token. (In a pure parser, it is a
4976local variable within @code{yyparse}, and its address is passed to
4977@code{yylex}.) You can ignore this variable if you don't use the
4978@samp{@@} feature in the grammar actions. @xref{Token Positions, ,Textual Positions of Tokens}.
4979
4980@item yynerrs
4981Global variable which Bison increments each time there is a parse
4982error. (In a pure parser, it is a local variable within
4983@code{yyparse}.) @xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}.
4984
4985@item yyparse
4986The parser function produced by Bison; call this function to start
4987parsing. @xref{Parser Function, ,The Parser Function @code{yyparse}}.
4988
4989@item %left
4990Bison declaration to assign left associativity to token(s).
4991@xref{Precedence Decl, ,Operator Precedence}.
4992
4993@item %nonassoc
4994Bison declaration to assign nonassociativity to token(s).
4995@xref{Precedence Decl, ,Operator Precedence}.
4996
4997@item %prec
4998Bison declaration to assign a precedence to a specific rule.
4999@xref{Contextual Precedence, ,Context-Dependent Precedence}.
5000
5001@item %pure_parser
5002Bison declaration to request a pure (reentrant) parser.
5003@xref{Pure Decl, ,A Pure (Reentrant) Parser}.
5004
5005@item %right
5006Bison declaration to assign right associativity to token(s).
5007@xref{Precedence Decl, ,Operator Precedence}.
5008
5009@item %start
5010Bison declaration to specify the start symbol. @xref{Start Decl, ,The Start-Symbol}.
5011
5012@item %token
5013Bison declaration to declare token(s) without specifying precedence.
5014@xref{Token Decl, ,Token Type Names}.
5015
5016@item %type
5017Bison declaration to declare nonterminals. @xref{Type Decl, ,Nonterminal Symbols}.
5018
5019@item %union
5020Bison declaration to specify several possible data types for semantic
5021values. @xref{Union Decl, ,The Collection of Value Types}.
5022@end table
5023
5024These are the punctuation and delimiters used in Bison input:
5025
5026@table @samp
5027@item %%
5028Delimiter used to separate the grammar rule section from the
5029Bison declarations section or the additional C code section.
5030@xref{Grammar Layout, ,The Overall Layout of a Bison Grammar}.
5031
5032@item %@{ %@}
5033All code listed between @samp{%@{} and @samp{%@}} is copied directly
5034to the output file uninterpreted. Such code forms the ``C
5035declarations'' section of the input file. @xref{Grammar Outline, ,Outline of a Bison Grammar}.
5036
5037@item /*@dots{}*/
5038Comment delimiters, as in C.
5039
5040@item :
5041Separates a rule's result from its components. @xref{Rules, ,Syntax of Grammar Rules}.
5042
5043@item ;
5044Terminates a rule. @xref{Rules, ,Syntax of Grammar Rules}.
5045
5046@item |
5047Separates alternate rules for the same result nonterminal.
5048@xref{Rules, ,Syntax of Grammar Rules}.
5049@end table
5050
5051@node Glossary, Index, Table of Symbols, Top
5052@appendix Glossary
5053@cindex glossary
5054
5055@table @asis
5056@item Backus-Naur Form (BNF)
5057Formal method of specifying context-free grammars. BNF was first used
5058in the @cite{ALGOL-60} report, 1963. @xref{Language and Grammar, ,Languages and Context-Free Grammars}.
5059
5060@item Context-free grammars
5061Grammars specified as rules that can be applied regardless of context.
5062Thus, if there is a rule which says that an integer can be used as an
5063expression, integers are allowed @emph{anywhere} an expression is
5064permitted. @xref{Language and Grammar, ,Languages and Context-Free Grammars}.
5065
5066@item Dynamic allocation
5067Allocation of memory that occurs during execution, rather than at
5068compile time or on entry to a function.
5069
5070@item Empty string
5071Analogous to the empty set in set theory, the empty string is a
5072character string of length zero.
5073
5074@item Finite-state stack machine
5075A ``machine'' that has discrete states in which it is said to exist at
5076each instant in time. As input to the machine is processed, the
5077machine moves from state to state as specified by the logic of the
5078machine. In the case of the parser, the input is the language being
5079parsed, and the states correspond to various stages in the grammar
5080rules. @xref{Algorithm, ,The Bison Parser Algorithm }.
5081
5082@item Grouping
5083A language construct that is (in general) grammatically divisible;
5084for example, `expression' or `declaration' in C.
5085@xref{Language and Grammar, ,Languages and Context-Free Grammars}.
5086
5087@item Infix operator
5088An arithmetic operator that is placed between the operands on which it
5089performs some operation.
5090
5091@item Input stream
5092A continuous flow of data between devices or programs.
5093
5094@item Language construct
5095One of the typical usage schemas of the language. For example, one of
5096the constructs of the C language is the @code{if} statement.
5097@xref{Language and Grammar, ,Languages and Context-Free Grammars}.
5098
5099@item Left associativity
5100Operators having left associativity are analyzed from left to right:
5101@samp{a+b+c} first computes @samp{a+b} and then combines with
5102@samp{c}. @xref{Precedence, ,Operator Precedence}.
5103
5104@item Left recursion
5105A rule whose result symbol is also its first component symbol;
5106for example, @samp{expseq1 : expseq1 ',' exp;}. @xref{Recursion, ,Recursive Rules}.
5107
5108@item Left-to-right parsing
5109Parsing a sentence of a language by analyzing it token by token from
5110left to right. @xref{Algorithm, ,The Bison Parser Algorithm }.
5111
5112@item Lexical analyzer (scanner)
5113A function that reads an input stream and returns tokens one by one.
5114@xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}.
5115
5116@item Lexical tie-in
5117A flag, set by actions in the grammar rules, which alters the way
5118tokens are parsed. @xref{Lexical Tie-ins}.
5119
5120@item Look-ahead token
5121A token already read but not yet shifted. @xref{Look-Ahead, ,Look-Ahead Tokens}.
5122
5123@item LALR(1)
5124The class of context-free grammars that Bison (like most other parser
5125generators) can handle; a subset of LR(1). @xref{Mystery Conflicts, ,
5126Mysterious Reduce/Reduce Conflicts}.
5127
5128@item LR(1)
5129The class of context-free grammars in which at most one token of
5130look-ahead is needed to disambiguate the parsing of any piece of input.
5131
5132@item Nonterminal symbol
5133A grammar symbol standing for a grammatical construct that can
5134be expressed through rules in terms of smaller constructs; in other
5135words, a construct that is not a token. @xref{Symbols}.
5136
5137@item Parse error
5138An error encountered during parsing of an input stream due to invalid
5139syntax. @xref{Error Recovery}.
5140
5141@item Parser
5142A function that recognizes valid sentences of a language by analyzing
5143the syntax structure of a set of tokens passed to it from a lexical
5144analyzer.
5145
5146@item Postfix operator
5147An arithmetic operator that is placed after the operands upon which it
5148performs some operation.
5149
5150@item Reduction
5151Replacing a string of nonterminals and/or terminals with a single
5152nonterminal, according to a grammar rule. @xref{Algorithm, ,The Bison Parser Algorithm }.
5153
5154@item Reentrant
5155A reentrant subprogram is a subprogram which can be in invoked any
5156number of times in parallel, without interference between the various
5157invocations. @xref{Pure Decl, ,A Pure (Reentrant) Parser}.
5158
5159@item Reverse polish notation
5160A language in which all operators are postfix operators.
5161
5162@item Right recursion
5163A rule whose result symbol is also its last component symbol;
5164for example, @samp{expseq1: exp ',' expseq1;}. @xref{Recursion, ,Recursive Rules}.
5165
5166@item Semantics
5167In computer languages, the semantics are specified by the actions
5168taken for each instance of the language, i.e., the meaning of
5169each statement. @xref{Semantics, ,Defining Language Semantics}.
5170
5171@item Shift
5172A parser is said to shift when it makes the choice of analyzing
5173further input from the stream rather than reducing immediately some
5174already-recognized rule. @xref{Algorithm, ,The Bison Parser Algorithm }.
5175
5176@item Single-character literal
5177A single character that is recognized and interpreted as is.
5178@xref{Grammar in Bison, ,From Formal Rules to Bison Input}.
5179
5180@item Start symbol
5181The nonterminal symbol that stands for a complete valid utterance in
5182the language being parsed. The start symbol is usually listed as the
5183first nonterminal symbol in a language specification.
5184@xref{Start Decl, ,The Start-Symbol}.
5185
5186@item Symbol table
5187A data structure where symbol names and associated data are stored
5188during parsing to allow for recognition and use of existing
5189information in repeated uses of a symbol. @xref{Multi-function Calc}.
5190
5191@item Token
5192A basic, grammatically indivisible unit of a language. The symbol
5193that describes a token in the grammar is a terminal symbol.
5194The input of the Bison parser is a stream of tokens which comes from
5195the lexical analyzer. @xref{Symbols}.
5196
5197@item Terminal symbol
5198A grammar symbol that has no rules in the grammar and therefore
5199is grammatically indivisible. The piece of text it represents
5200is a token. @xref{Language and Grammar, ,Languages and Context-Free Grammars}.
5201@end table
5202
5203@node Index, , Glossary, Top
5204@unnumbered Index
5205
5206@printindex cp
5207
5208@contents
5209
5210@bye
5211
5212
5213\f
5214
5215@c old menu
5216
5217* Introduction::
5218* Conditions::
5219* Copying:: The GNU General Public License says
5220 how you can copy and share Bison
5221
5222Tutorial sections:
5223* Concepts:: Basic concepts for understanding Bison.
5224* Examples:: Three simple explained examples of using Bison.
5225
5226Reference sections:
5227* Grammar File:: Writing Bison declarations and rules.
5228* Interface:: C-language interface to the parser function @code{yyparse}.
5229* Algorithm:: How the Bison parser works at run-time.
5230* Error Recovery:: Writing rules for error recovery.
5231* Context Dependency::What to do if your language syntax is too
5232 messy for Bison to handle straightforwardly.
5233* Debugging:: Debugging Bison parsers that parse wrong.
5234* Invocation:: How to run Bison (to produce the parser source file).
5235* Table of Symbols:: All the keywords of the Bison language are explained.
5236* Glossary:: Basic concepts are explained.
5237* Index:: Cross-references to the text.
5238