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