]>
Commit | Line | Data |
---|---|---|
bfa74976 RS |
1 | \input texinfo @c -*-texinfo-*- |
2 | @comment %**start of header | |
3 | @setfilename bison.info | |
df1af54c JT |
4 | @include version.texi |
5 | @settitle Bison @value{VERSION} | |
bfa74976 RS |
6 | @setchapternewpage odd |
7 | ||
5378c3e7 | 8 | @finalout |
5378c3e7 | 9 | |
13863333 | 10 | @c SMALL BOOK version |
bfa74976 | 11 | @c This edition has been formatted so that you can format and print it in |
13863333 | 12 | @c the smallbook format. |
bfa74976 RS |
13 | @c @smallbook |
14 | ||
91d2c560 PE |
15 | @c Set following if you want to document %default-prec and %no-default-prec. |
16 | @c This feature is experimental and may change in future Bison versions. | |
17 | @c @set defaultprec | |
18 | ||
8c5b881d | 19 | @ifnotinfo |
bfa74976 RS |
20 | @syncodeindex fn cp |
21 | @syncodeindex vr cp | |
22 | @syncodeindex tp cp | |
8c5b881d | 23 | @end ifnotinfo |
bfa74976 RS |
24 | @ifinfo |
25 | @synindex fn cp | |
26 | @synindex vr cp | |
27 | @synindex tp cp | |
28 | @end ifinfo | |
29 | @comment %**end of header | |
30 | ||
fae437e8 | 31 | @copying |
bd773d73 | 32 | |
35430378 JD |
33 | This manual (@value{UPDATED}) is for GNU Bison (version |
34 | @value{VERSION}), the GNU parser generator. | |
fae437e8 | 35 | |
c932d613 | 36 | Copyright @copyright{} 1988-1993, 1995, 1998-2012 Free Software |
ea0a7676 | 37 | Foundation, Inc. |
fae437e8 AD |
38 | |
39 | @quotation | |
40 | Permission is granted to copy, distribute and/or modify this document | |
35430378 | 41 | under the terms of the GNU Free Documentation License, |
241ac701 | 42 | Version 1.3 or any later version published by the Free Software |
c827f760 | 43 | Foundation; with no Invariant Sections, with the Front-Cover texts |
35430378 | 44 | being ``A GNU Manual,'' and with the Back-Cover Texts as in |
c827f760 | 45 | (a) below. A copy of the license is included in the section entitled |
35430378 | 46 | ``GNU Free Documentation License.'' |
c827f760 | 47 | |
389c8cfd | 48 | (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and |
35430378 JD |
49 | modify this GNU manual. Buying copies from the FSF |
50 | supports it in developing GNU and promoting software | |
389c8cfd | 51 | freedom.'' |
fae437e8 AD |
52 | @end quotation |
53 | @end copying | |
54 | ||
e62f1a89 | 55 | @dircategory Software development |
fae437e8 | 56 | @direntry |
35430378 | 57 | * bison: (bison). GNU parser generator (Yacc replacement). |
fae437e8 | 58 | @end direntry |
bfa74976 | 59 | |
bfa74976 RS |
60 | @titlepage |
61 | @title Bison | |
c827f760 | 62 | @subtitle The Yacc-compatible Parser Generator |
df1af54c | 63 | @subtitle @value{UPDATED}, Bison Version @value{VERSION} |
bfa74976 RS |
64 | |
65 | @author by Charles Donnelly and Richard Stallman | |
66 | ||
67 | @page | |
68 | @vskip 0pt plus 1filll | |
fae437e8 | 69 | @insertcopying |
bfa74976 RS |
70 | @sp 2 |
71 | Published by the Free Software Foundation @* | |
0fb669f9 PE |
72 | 51 Franklin Street, Fifth Floor @* |
73 | Boston, MA 02110-1301 USA @* | |
9ecbd125 | 74 | Printed copies are available from the Free Software Foundation.@* |
35430378 | 75 | ISBN 1-882114-44-2 |
bfa74976 RS |
76 | @sp 2 |
77 | Cover art by Etienne Suvasa. | |
78 | @end titlepage | |
d5796688 JT |
79 | |
80 | @contents | |
bfa74976 | 81 | |
342b8b6e AD |
82 | @ifnottex |
83 | @node Top | |
84 | @top Bison | |
fae437e8 | 85 | @insertcopying |
342b8b6e | 86 | @end ifnottex |
bfa74976 RS |
87 | |
88 | @menu | |
13863333 AD |
89 | * Introduction:: |
90 | * Conditions:: | |
35430378 | 91 | * Copying:: The GNU General Public License says |
f56274a8 | 92 | how you can copy and share Bison. |
bfa74976 RS |
93 | |
94 | Tutorial sections: | |
f56274a8 DJ |
95 | * Concepts:: Basic concepts for understanding Bison. |
96 | * Examples:: Three simple explained examples of using Bison. | |
bfa74976 RS |
97 | |
98 | Reference sections: | |
f56274a8 DJ |
99 | * Grammar File:: Writing Bison declarations and rules. |
100 | * Interface:: C-language interface to the parser function @code{yyparse}. | |
101 | * Algorithm:: How the Bison parser works at run-time. | |
102 | * Error Recovery:: Writing rules for error recovery. | |
bfa74976 | 103 | * Context Dependency:: What to do if your language syntax is too |
f56274a8 DJ |
104 | messy for Bison to handle straightforwardly. |
105 | * Debugging:: Understanding or debugging Bison parsers. | |
9913d6e4 | 106 | * Invocation:: How to run Bison (to produce the parser implementation). |
f56274a8 DJ |
107 | * Other Languages:: Creating C++ and Java parsers. |
108 | * FAQ:: Frequently Asked Questions | |
109 | * Table of Symbols:: All the keywords of the Bison language are explained. | |
110 | * Glossary:: Basic concepts are explained. | |
111 | * Copying This Manual:: License for copying this manual. | |
71caec06 | 112 | * Bibliography:: Publications cited in this manual. |
f9b86351 | 113 | * Index of Terms:: Cross-references to the text. |
bfa74976 | 114 | |
93dd49ab PE |
115 | @detailmenu |
116 | --- The Detailed Node Listing --- | |
bfa74976 RS |
117 | |
118 | The Concepts of Bison | |
119 | ||
f56274a8 DJ |
120 | * Language and Grammar:: Languages and context-free grammars, |
121 | as mathematical ideas. | |
122 | * Grammar in Bison:: How we represent grammars for Bison's sake. | |
123 | * Semantic Values:: Each token or syntactic grouping can have | |
124 | a semantic value (the value of an integer, | |
125 | the name of an identifier, etc.). | |
126 | * Semantic Actions:: Each rule can have an action containing C code. | |
127 | * GLR Parsers:: Writing parsers for general context-free languages. | |
83484365 | 128 | * Locations:: Overview of location tracking. |
f56274a8 DJ |
129 | * Bison Parser:: What are Bison's input and output, |
130 | how is the output used? | |
131 | * Stages:: Stages in writing and running Bison grammars. | |
132 | * Grammar Layout:: Overall structure of a Bison grammar file. | |
bfa74976 | 133 | |
35430378 | 134 | Writing GLR Parsers |
fa7e68c3 | 135 | |
35430378 JD |
136 | * Simple GLR Parsers:: Using GLR parsers on unambiguous grammars. |
137 | * Merging GLR Parses:: Using GLR parsers to resolve ambiguities. | |
f56274a8 | 138 | * GLR Semantic Actions:: Deferred semantic actions have special concerns. |
35430378 | 139 | * Compiler Requirements:: GLR parsers require a modern C compiler. |
fa7e68c3 | 140 | |
bfa74976 RS |
141 | Examples |
142 | ||
f56274a8 DJ |
143 | * RPN Calc:: Reverse polish notation calculator; |
144 | a first example with no operator precedence. | |
145 | * Infix Calc:: Infix (algebraic) notation calculator. | |
146 | Operator precedence is introduced. | |
bfa74976 | 147 | * Simple Error Recovery:: Continuing after syntax errors. |
342b8b6e | 148 | * Location Tracking Calc:: Demonstrating the use of @@@var{n} and @@$. |
f56274a8 DJ |
149 | * Multi-function Calc:: Calculator with memory and trig functions. |
150 | It uses multiple data-types for semantic values. | |
151 | * Exercises:: Ideas for improving the multi-function calculator. | |
bfa74976 RS |
152 | |
153 | Reverse Polish Notation Calculator | |
154 | ||
f56274a8 DJ |
155 | * Rpcalc Declarations:: Prologue (declarations) for rpcalc. |
156 | * Rpcalc Rules:: Grammar Rules for rpcalc, with explanation. | |
157 | * Rpcalc Lexer:: The lexical analyzer. | |
158 | * Rpcalc Main:: The controlling function. | |
159 | * Rpcalc Error:: The error reporting function. | |
160 | * Rpcalc Generate:: Running Bison on the grammar file. | |
161 | * Rpcalc Compile:: Run the C compiler on the output code. | |
bfa74976 RS |
162 | |
163 | Grammar Rules for @code{rpcalc} | |
164 | ||
13863333 AD |
165 | * Rpcalc Input:: |
166 | * Rpcalc Line:: | |
167 | * Rpcalc Expr:: | |
bfa74976 | 168 | |
342b8b6e AD |
169 | Location Tracking Calculator: @code{ltcalc} |
170 | ||
f56274a8 DJ |
171 | * Ltcalc Declarations:: Bison and C declarations for ltcalc. |
172 | * Ltcalc Rules:: Grammar rules for ltcalc, with explanations. | |
173 | * Ltcalc Lexer:: The lexical analyzer. | |
342b8b6e | 174 | |
bfa74976 RS |
175 | Multi-Function Calculator: @code{mfcalc} |
176 | ||
f56274a8 DJ |
177 | * Mfcalc Declarations:: Bison declarations for multi-function calculator. |
178 | * Mfcalc Rules:: Grammar rules for the calculator. | |
179 | * Mfcalc Symbol Table:: Symbol table management subroutines. | |
bfa74976 RS |
180 | |
181 | Bison Grammar Files | |
182 | ||
7404cdf3 JD |
183 | * Grammar Outline:: Overall layout of the grammar file. |
184 | * Symbols:: Terminal and nonterminal symbols. | |
185 | * Rules:: How to write grammar rules. | |
186 | * Recursion:: Writing recursive rules. | |
187 | * Semantics:: Semantic values and actions. | |
188 | * Tracking Locations:: Locations and actions. | |
189 | * Named References:: Using named references in actions. | |
190 | * Declarations:: All kinds of Bison declarations are described here. | |
191 | * Multiple Parsers:: Putting more than one Bison parser in one program. | |
bfa74976 RS |
192 | |
193 | Outline of a Bison Grammar | |
194 | ||
f56274a8 | 195 | * Prologue:: Syntax and usage of the prologue. |
2cbe6b7f | 196 | * Prologue Alternatives:: Syntax and usage of alternatives to the prologue. |
f56274a8 DJ |
197 | * Bison Declarations:: Syntax and usage of the Bison declarations section. |
198 | * Grammar Rules:: Syntax and usage of the grammar rules section. | |
199 | * Epilogue:: Syntax and usage of the epilogue. | |
bfa74976 RS |
200 | |
201 | Defining Language Semantics | |
202 | ||
203 | * Value Type:: Specifying one data type for all semantic values. | |
204 | * Multiple Types:: Specifying several alternative data types. | |
205 | * Actions:: An action is the semantic definition of a grammar rule. | |
206 | * Action Types:: Specifying data types for actions to operate on. | |
207 | * Mid-Rule Actions:: Most actions go at the end of a rule. | |
208 | This says when, why and how to use the exceptional | |
209 | action in the middle of a rule. | |
210 | ||
93dd49ab PE |
211 | Tracking Locations |
212 | ||
213 | * Location Type:: Specifying a data type for locations. | |
214 | * Actions and Locations:: Using locations in actions. | |
215 | * Location Default Action:: Defining a general way to compute locations. | |
216 | ||
bfa74976 RS |
217 | Bison Declarations |
218 | ||
b50d2359 | 219 | * Require Decl:: Requiring a Bison version. |
bfa74976 RS |
220 | * Token Decl:: Declaring terminal symbols. |
221 | * Precedence Decl:: Declaring terminals with precedence and associativity. | |
222 | * Union Decl:: Declaring the set of all semantic value types. | |
223 | * Type Decl:: Declaring the choice of type for a nonterminal symbol. | |
18d192f0 | 224 | * Initial Action Decl:: Code run before parsing starts. |
72f889cc | 225 | * Destructor Decl:: Declaring how symbols are freed. |
56d60c19 | 226 | * Printer Decl:: Declaring how symbol values are displayed. |
d6328241 | 227 | * Expect Decl:: Suppressing warnings about parsing conflicts. |
bfa74976 RS |
228 | * Start Decl:: Specifying the start symbol. |
229 | * Pure Decl:: Requesting a reentrant parser. | |
9987d1b3 | 230 | * Push Decl:: Requesting a push parser. |
bfa74976 | 231 | * Decl Summary:: Table of all Bison declarations. |
2f4518a1 | 232 | * %define Summary:: Defining variables to adjust Bison's behavior. |
8e6f2266 | 233 | * %code Summary:: Inserting code into the parser source. |
bfa74976 RS |
234 | |
235 | Parser C-Language Interface | |
236 | ||
f56274a8 DJ |
237 | * Parser Function:: How to call @code{yyparse} and what it returns. |
238 | * Push Parser Function:: How to call @code{yypush_parse} and what it returns. | |
239 | * Pull Parser Function:: How to call @code{yypull_parse} and what it returns. | |
240 | * Parser Create Function:: How to call @code{yypstate_new} and what it returns. | |
241 | * Parser Delete Function:: How to call @code{yypstate_delete} and what it returns. | |
242 | * Lexical:: You must supply a function @code{yylex} | |
243 | which reads tokens. | |
244 | * Error Reporting:: You must supply a function @code{yyerror}. | |
245 | * Action Features:: Special features for use in actions. | |
246 | * Internationalization:: How to let the parser speak in the user's | |
247 | native language. | |
bfa74976 RS |
248 | |
249 | The Lexical Analyzer Function @code{yylex} | |
250 | ||
251 | * Calling Convention:: How @code{yyparse} calls @code{yylex}. | |
f56274a8 DJ |
252 | * Token Values:: How @code{yylex} must return the semantic value |
253 | of the token it has read. | |
254 | * Token Locations:: How @code{yylex} must return the text location | |
255 | (line number, etc.) of the token, if the | |
256 | actions want that. | |
257 | * Pure Calling:: How the calling convention differs in a pure parser | |
258 | (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}). | |
bfa74976 | 259 | |
13863333 | 260 | The Bison Parser Algorithm |
bfa74976 | 261 | |
742e4900 | 262 | * Lookahead:: Parser looks one token ahead when deciding what to do. |
bfa74976 RS |
263 | * Shift/Reduce:: Conflicts: when either shifting or reduction is valid. |
264 | * Precedence:: Operator precedence works by resolving conflicts. | |
265 | * Contextual Precedence:: When an operator's precedence depends on context. | |
266 | * Parser States:: The parser is a finite-state-machine with stack. | |
267 | * Reduce/Reduce:: When two rules are applicable in the same situation. | |
5da0355a | 268 | * Mysterious Conflicts:: Conflicts that look unjustified. |
6f04ee6c | 269 | * Tuning LR:: How to tune fundamental aspects of LR-based parsing. |
676385e2 | 270 | * Generalized LR Parsing:: Parsing arbitrary context-free grammars. |
1a059451 | 271 | * Memory Management:: What happens when memory is exhausted. How to avoid it. |
bfa74976 RS |
272 | |
273 | Operator Precedence | |
274 | ||
275 | * Why Precedence:: An example showing why precedence is needed. | |
276 | * Using Precedence:: How to specify precedence in Bison grammars. | |
277 | * Precedence Examples:: How these features are used in the previous example. | |
278 | * How Precedence:: How they work. | |
279 | ||
6f04ee6c JD |
280 | Tuning LR |
281 | ||
282 | * LR Table Construction:: Choose a different construction algorithm. | |
283 | * Default Reductions:: Disable default reductions. | |
284 | * LAC:: Correct lookahead sets in the parser states. | |
285 | * Unreachable States:: Keep unreachable parser states for debugging. | |
286 | ||
bfa74976 RS |
287 | Handling Context Dependencies |
288 | ||
289 | * Semantic Tokens:: Token parsing can depend on the semantic context. | |
290 | * Lexical Tie-ins:: Token parsing can depend on the syntactic context. | |
291 | * Tie-in Recovery:: Lexical tie-ins have implications for how | |
292 | error recovery rules must be written. | |
293 | ||
93dd49ab | 294 | Debugging Your Parser |
ec3bc396 AD |
295 | |
296 | * Understanding:: Understanding the structure of your parser. | |
fc4fdd62 | 297 | * Graphviz:: Getting a visual representation of the parser. |
ec3bc396 AD |
298 | * Tracing:: Tracing the execution of your parser. |
299 | ||
56d60c19 AD |
300 | Tracing Your Parser |
301 | ||
302 | * Enabling Traces:: Activating run-time trace support | |
303 | * Mfcalc Traces:: Extending @code{mfcalc} to support traces | |
304 | * The YYPRINT Macro:: Obsolete interface for semantic value reports | |
305 | ||
bfa74976 RS |
306 | Invoking Bison |
307 | ||
13863333 | 308 | * Bison Options:: All the options described in detail, |
c827f760 | 309 | in alphabetical order by short options. |
bfa74976 | 310 | * Option Cross Key:: Alphabetical list of long options. |
93dd49ab | 311 | * Yacc Library:: Yacc-compatible @code{yylex} and @code{main}. |
f2b5126e | 312 | |
8405b70c | 313 | Parsers Written In Other Languages |
12545799 AD |
314 | |
315 | * C++ Parsers:: The interface to generate C++ parser classes | |
8405b70c | 316 | * Java Parsers:: The interface to generate Java parser classes |
12545799 AD |
317 | |
318 | C++ Parsers | |
319 | ||
320 | * C++ Bison Interface:: Asking for C++ parser generation | |
321 | * C++ Semantic Values:: %union vs. C++ | |
322 | * C++ Location Values:: The position and location classes | |
323 | * C++ Parser Interface:: Instantiating and running the parser | |
324 | * C++ Scanner Interface:: Exchanges between yylex and parse | |
8405b70c | 325 | * A Complete C++ Example:: Demonstrating their use |
12545799 | 326 | |
936c88d1 AD |
327 | C++ Location Values |
328 | ||
329 | * C++ position:: One point in the source file | |
330 | * C++ location:: Two points in the source file | |
db8ab2be | 331 | * User Defined Location Type:: Required interface for locations |
936c88d1 | 332 | |
12545799 AD |
333 | A Complete C++ Example |
334 | ||
335 | * Calc++ --- C++ Calculator:: The specifications | |
336 | * Calc++ Parsing Driver:: An active parsing context | |
337 | * Calc++ Parser:: A parser class | |
338 | * Calc++ Scanner:: A pure C++ Flex scanner | |
339 | * Calc++ Top Level:: Conducting the band | |
340 | ||
8405b70c PB |
341 | Java Parsers |
342 | ||
f56274a8 DJ |
343 | * Java Bison Interface:: Asking for Java parser generation |
344 | * Java Semantic Values:: %type and %token vs. Java | |
345 | * Java Location Values:: The position and location classes | |
346 | * Java Parser Interface:: Instantiating and running the parser | |
347 | * Java Scanner Interface:: Specifying the scanner for the parser | |
348 | * Java Action Features:: Special features for use in actions | |
349 | * Java Differences:: Differences between C/C++ and Java Grammars | |
350 | * Java Declarations Summary:: List of Bison declarations used with Java | |
8405b70c | 351 | |
d1a1114f AD |
352 | Frequently Asked Questions |
353 | ||
f56274a8 DJ |
354 | * Memory Exhausted:: Breaking the Stack Limits |
355 | * How Can I Reset the Parser:: @code{yyparse} Keeps some State | |
356 | * Strings are Destroyed:: @code{yylval} Loses Track of Strings | |
357 | * Implementing Gotos/Loops:: Control Flow in the Calculator | |
358 | * Multiple start-symbols:: Factoring closely related grammars | |
35430378 | 359 | * Secure? Conform?:: Is Bison POSIX safe? |
f56274a8 DJ |
360 | * I can't build Bison:: Troubleshooting |
361 | * Where can I find help?:: Troubleshouting | |
362 | * Bug Reports:: Troublereporting | |
363 | * More Languages:: Parsers in C++, Java, and so on | |
364 | * Beta Testing:: Experimenting development versions | |
365 | * Mailing Lists:: Meeting other Bison users | |
d1a1114f | 366 | |
f2b5126e PB |
367 | Copying This Manual |
368 | ||
f56274a8 | 369 | * Copying This Manual:: License for copying this manual. |
f2b5126e | 370 | |
342b8b6e | 371 | @end detailmenu |
bfa74976 RS |
372 | @end menu |
373 | ||
342b8b6e | 374 | @node Introduction |
bfa74976 RS |
375 | @unnumbered Introduction |
376 | @cindex introduction | |
377 | ||
6077da58 | 378 | @dfn{Bison} is a general-purpose parser generator that converts an |
d89e48b3 JD |
379 | annotated context-free grammar into a deterministic LR or generalized |
380 | LR (GLR) parser employing LALR(1) parser tables. As an experimental | |
381 | feature, Bison can also generate IELR(1) or canonical LR(1) parser | |
382 | tables. Once you are proficient with Bison, you can use it to develop | |
383 | a wide range of language parsers, from those used in simple desk | |
384 | calculators to complex programming languages. | |
385 | ||
386 | Bison is upward compatible with Yacc: all properly-written Yacc | |
387 | grammars ought to work with Bison with no change. Anyone familiar | |
388 | with Yacc should be able to use Bison with little trouble. You need | |
389 | to be fluent in C or C++ programming in order to use Bison or to | |
390 | understand this manual. Java is also supported as an experimental | |
391 | feature. | |
392 | ||
393 | We begin with tutorial chapters that explain the basic concepts of | |
394 | using Bison and show three explained examples, each building on the | |
395 | last. If you don't know Bison or Yacc, start by reading these | |
396 | chapters. Reference chapters follow, which describe specific aspects | |
397 | of Bison in detail. | |
bfa74976 | 398 | |
840341d6 JD |
399 | Bison was written originally by Robert Corbett. Richard Stallman made |
400 | it Yacc-compatible. Wilfred Hansen of Carnegie Mellon University | |
401 | added multi-character string literals and other features. Since then, | |
402 | Bison has grown more robust and evolved many other new features thanks | |
403 | to the hard work of a long list of volunteers. For details, see the | |
404 | @file{THANKS} and @file{ChangeLog} files included in the Bison | |
405 | distribution. | |
931c7513 | 406 | |
df1af54c | 407 | This edition corresponds to version @value{VERSION} of Bison. |
bfa74976 | 408 | |
342b8b6e | 409 | @node Conditions |
bfa74976 RS |
410 | @unnumbered Conditions for Using Bison |
411 | ||
193d7c70 PE |
412 | The distribution terms for Bison-generated parsers permit using the |
413 | parsers in nonfree programs. Before Bison version 2.2, these extra | |
35430378 | 414 | permissions applied only when Bison was generating LALR(1) |
193d7c70 | 415 | parsers in C@. And before Bison version 1.24, Bison-generated |
262aa8dd | 416 | parsers could be used only in programs that were free software. |
a31239f1 | 417 | |
35430378 | 418 | The other GNU programming tools, such as the GNU C |
c827f760 | 419 | compiler, have never |
9ecbd125 | 420 | had such a requirement. They could always be used for nonfree |
a31239f1 RS |
421 | software. The reason Bison was different was not due to a special |
422 | policy decision; it resulted from applying the usual General Public | |
423 | License to all of the Bison source code. | |
424 | ||
9913d6e4 JD |
425 | The main output of the Bison utility---the Bison parser implementation |
426 | file---contains a verbatim copy of a sizable piece of Bison, which is | |
427 | the code for the parser's implementation. (The actions from your | |
428 | grammar are inserted into this implementation at one point, but most | |
429 | of the rest of the implementation is not changed.) When we applied | |
430 | the GPL terms to the skeleton code for the parser's implementation, | |
a31239f1 RS |
431 | the effect was to restrict the use of Bison output to free software. |
432 | ||
433 | We didn't change the terms because of sympathy for people who want to | |
434 | make software proprietary. @strong{Software should be free.} But we | |
435 | concluded that limiting Bison's use to free software was doing little to | |
436 | encourage people to make other software free. So we decided to make the | |
437 | practical conditions for using Bison match the practical conditions for | |
35430378 | 438 | using the other GNU tools. |
bfa74976 | 439 | |
193d7c70 PE |
440 | This exception applies when Bison is generating code for a parser. |
441 | You can tell whether the exception applies to a Bison output file by | |
442 | inspecting the file for text beginning with ``As a special | |
443 | exception@dots{}''. The text spells out the exact terms of the | |
444 | exception. | |
262aa8dd | 445 | |
f16b0819 PE |
446 | @node Copying |
447 | @unnumbered GNU GENERAL PUBLIC LICENSE | |
448 | @include gpl-3.0.texi | |
bfa74976 | 449 | |
342b8b6e | 450 | @node Concepts |
bfa74976 RS |
451 | @chapter The Concepts of Bison |
452 | ||
453 | This chapter introduces many of the basic concepts without which the | |
454 | details of Bison will not make sense. If you do not already know how to | |
455 | use Bison or Yacc, we suggest you start by reading this chapter carefully. | |
456 | ||
457 | @menu | |
f56274a8 DJ |
458 | * Language and Grammar:: Languages and context-free grammars, |
459 | as mathematical ideas. | |
460 | * Grammar in Bison:: How we represent grammars for Bison's sake. | |
461 | * Semantic Values:: Each token or syntactic grouping can have | |
462 | a semantic value (the value of an integer, | |
463 | the name of an identifier, etc.). | |
464 | * Semantic Actions:: Each rule can have an action containing C code. | |
465 | * GLR Parsers:: Writing parsers for general context-free languages. | |
83484365 | 466 | * Locations:: Overview of location tracking. |
f56274a8 DJ |
467 | * Bison Parser:: What are Bison's input and output, |
468 | how is the output used? | |
469 | * Stages:: Stages in writing and running Bison grammars. | |
470 | * Grammar Layout:: Overall structure of a Bison grammar file. | |
bfa74976 RS |
471 | @end menu |
472 | ||
342b8b6e | 473 | @node Language and Grammar |
bfa74976 RS |
474 | @section Languages and Context-Free Grammars |
475 | ||
bfa74976 RS |
476 | @cindex context-free grammar |
477 | @cindex grammar, context-free | |
478 | In order for Bison to parse a language, it must be described by a | |
479 | @dfn{context-free grammar}. This means that you specify one or more | |
480 | @dfn{syntactic groupings} and give rules for constructing them from their | |
481 | parts. For example, in the C language, one kind of grouping is called an | |
482 | `expression'. One rule for making an expression might be, ``An expression | |
483 | can be made of a minus sign and another expression''. Another would be, | |
484 | ``An expression can be an integer''. As you can see, rules are often | |
485 | recursive, but there must be at least one rule which leads out of the | |
486 | recursion. | |
487 | ||
35430378 | 488 | @cindex BNF |
bfa74976 RS |
489 | @cindex Backus-Naur form |
490 | The most common formal system for presenting such rules for humans to read | |
35430378 | 491 | is @dfn{Backus-Naur Form} or ``BNF'', which was developed in |
c827f760 | 492 | order to specify the language Algol 60. Any grammar expressed in |
35430378 JD |
493 | BNF is a context-free grammar. The input to Bison is |
494 | essentially machine-readable BNF. | |
bfa74976 | 495 | |
6f04ee6c JD |
496 | @cindex LALR grammars |
497 | @cindex IELR grammars | |
498 | @cindex LR grammars | |
499 | There are various important subclasses of context-free grammars. Although | |
500 | it can handle almost all context-free grammars, Bison is optimized for what | |
501 | are called LR(1) grammars. In brief, in these grammars, it must be possible | |
502 | to tell how to parse any portion of an input string with just a single token | |
503 | of lookahead. For historical reasons, Bison by default is limited by the | |
504 | additional restrictions of LALR(1), which is hard to explain simply. | |
5da0355a JD |
505 | @xref{Mysterious Conflicts}, for more information on this. As an |
506 | experimental feature, you can escape these additional restrictions by | |
507 | requesting IELR(1) or canonical LR(1) parser tables. @xref{LR Table | |
508 | Construction}, to learn how. | |
bfa74976 | 509 | |
35430378 JD |
510 | @cindex GLR parsing |
511 | @cindex generalized LR (GLR) parsing | |
676385e2 | 512 | @cindex ambiguous grammars |
9d9b8b70 | 513 | @cindex nondeterministic parsing |
9501dc6e | 514 | |
35430378 | 515 | Parsers for LR(1) grammars are @dfn{deterministic}, meaning |
9501dc6e AD |
516 | roughly that the next grammar rule to apply at any point in the input is |
517 | uniquely determined by the preceding input and a fixed, finite portion | |
742e4900 | 518 | (called a @dfn{lookahead}) of the remaining input. A context-free |
9501dc6e | 519 | grammar can be @dfn{ambiguous}, meaning that there are multiple ways to |
e4f85c39 | 520 | apply the grammar rules to get the same inputs. Even unambiguous |
9d9b8b70 | 521 | grammars can be @dfn{nondeterministic}, meaning that no fixed |
742e4900 | 522 | lookahead always suffices to determine the next grammar rule to apply. |
9501dc6e | 523 | With the proper declarations, Bison is also able to parse these more |
35430378 JD |
524 | general context-free grammars, using a technique known as GLR |
525 | parsing (for Generalized LR). Bison's GLR parsers | |
9501dc6e AD |
526 | are able to handle any context-free grammar for which the number of |
527 | possible parses of any given string is finite. | |
676385e2 | 528 | |
bfa74976 RS |
529 | @cindex symbols (abstract) |
530 | @cindex token | |
531 | @cindex syntactic grouping | |
532 | @cindex grouping, syntactic | |
9501dc6e AD |
533 | In the formal grammatical rules for a language, each kind of syntactic |
534 | unit or grouping is named by a @dfn{symbol}. Those which are built by | |
535 | grouping smaller constructs according to grammatical rules are called | |
bfa74976 RS |
536 | @dfn{nonterminal symbols}; those which can't be subdivided are called |
537 | @dfn{terminal symbols} or @dfn{token types}. We call a piece of input | |
538 | corresponding to a single terminal symbol a @dfn{token}, and a piece | |
e0c471a9 | 539 | corresponding to a single nonterminal symbol a @dfn{grouping}. |
bfa74976 RS |
540 | |
541 | We can use the C language as an example of what symbols, terminal and | |
9501dc6e AD |
542 | nonterminal, mean. The tokens of C are identifiers, constants (numeric |
543 | and string), and the various keywords, arithmetic operators and | |
544 | punctuation marks. So the terminal symbols of a grammar for C include | |
545 | `identifier', `number', `string', plus one symbol for each keyword, | |
546 | operator or punctuation mark: `if', `return', `const', `static', `int', | |
547 | `char', `plus-sign', `open-brace', `close-brace', `comma' and many more. | |
548 | (These tokens can be subdivided into characters, but that is a matter of | |
bfa74976 RS |
549 | lexicography, not grammar.) |
550 | ||
551 | Here is a simple C function subdivided into tokens: | |
552 | ||
9edcd895 AD |
553 | @example |
554 | int /* @r{keyword `int'} */ | |
14d4662b | 555 | square (int x) /* @r{identifier, open-paren, keyword `int',} |
9edcd895 AD |
556 | @r{identifier, close-paren} */ |
557 | @{ /* @r{open-brace} */ | |
aa08666d AD |
558 | return x * x; /* @r{keyword `return', identifier, asterisk,} |
559 | @r{identifier, semicolon} */ | |
9edcd895 AD |
560 | @} /* @r{close-brace} */ |
561 | @end example | |
bfa74976 RS |
562 | |
563 | The syntactic groupings of C include the expression, the statement, the | |
564 | declaration, and the function definition. These are represented in the | |
565 | grammar of C by nonterminal symbols `expression', `statement', | |
566 | `declaration' and `function definition'. The full grammar uses dozens of | |
567 | additional language constructs, each with its own nonterminal symbol, in | |
568 | order to express the meanings of these four. The example above is a | |
569 | function definition; it contains one declaration, and one statement. In | |
570 | the statement, each @samp{x} is an expression and so is @samp{x * x}. | |
571 | ||
572 | Each nonterminal symbol must have grammatical rules showing how it is made | |
573 | out of simpler constructs. For example, one kind of C statement is the | |
574 | @code{return} statement; this would be described with a grammar rule which | |
575 | reads informally as follows: | |
576 | ||
577 | @quotation | |
578 | A `statement' can be made of a `return' keyword, an `expression' and a | |
579 | `semicolon'. | |
580 | @end quotation | |
581 | ||
582 | @noindent | |
583 | There would be many other rules for `statement', one for each kind of | |
584 | statement in C. | |
585 | ||
586 | @cindex start symbol | |
587 | One nonterminal symbol must be distinguished as the special one which | |
588 | defines a complete utterance in the language. It is called the @dfn{start | |
589 | symbol}. In a compiler, this means a complete input program. In the C | |
590 | language, the nonterminal symbol `sequence of definitions and declarations' | |
591 | plays this role. | |
592 | ||
593 | For example, @samp{1 + 2} is a valid C expression---a valid part of a C | |
594 | program---but it is not valid as an @emph{entire} C program. In the | |
595 | context-free grammar of C, this follows from the fact that `expression' is | |
596 | not the start symbol. | |
597 | ||
598 | The Bison parser reads a sequence of tokens as its input, and groups the | |
599 | tokens using the grammar rules. If the input is valid, the end result is | |
600 | that the entire token sequence reduces to a single grouping whose symbol is | |
601 | the grammar's start symbol. If we use a grammar for C, the entire input | |
602 | must be a `sequence of definitions and declarations'. If not, the parser | |
603 | reports a syntax error. | |
604 | ||
342b8b6e | 605 | @node Grammar in Bison |
bfa74976 RS |
606 | @section From Formal Rules to Bison Input |
607 | @cindex Bison grammar | |
608 | @cindex grammar, Bison | |
609 | @cindex formal grammar | |
610 | ||
611 | A formal grammar is a mathematical construct. To define the language | |
612 | for Bison, you must write a file expressing the grammar in Bison syntax: | |
613 | a @dfn{Bison grammar} file. @xref{Grammar File, ,Bison Grammar Files}. | |
614 | ||
615 | A nonterminal symbol in the formal grammar is represented in Bison input | |
c827f760 | 616 | as an identifier, like an identifier in C@. By convention, it should be |
bfa74976 RS |
617 | in lower case, such as @code{expr}, @code{stmt} or @code{declaration}. |
618 | ||
619 | The Bison representation for a terminal symbol is also called a @dfn{token | |
620 | type}. Token types as well can be represented as C-like identifiers. By | |
621 | convention, these identifiers should be upper case to distinguish them from | |
622 | nonterminals: for example, @code{INTEGER}, @code{IDENTIFIER}, @code{IF} or | |
623 | @code{RETURN}. A terminal symbol that stands for a particular keyword in | |
624 | the language should be named after that keyword converted to upper case. | |
625 | The terminal symbol @code{error} is reserved for error recovery. | |
931c7513 | 626 | @xref{Symbols}. |
bfa74976 RS |
627 | |
628 | A terminal symbol can also be represented as a character literal, just like | |
629 | a C character constant. You should do this whenever a token is just a | |
630 | single character (parenthesis, plus-sign, etc.): use that same character in | |
631 | a literal as the terminal symbol for that token. | |
632 | ||
931c7513 RS |
633 | A third way to represent a terminal symbol is with a C string constant |
634 | containing several characters. @xref{Symbols}, for more information. | |
635 | ||
bfa74976 RS |
636 | The grammar rules also have an expression in Bison syntax. For example, |
637 | here is the Bison rule for a C @code{return} statement. The semicolon in | |
638 | quotes is a literal character token, representing part of the C syntax for | |
639 | the statement; the naked semicolon, and the colon, are Bison punctuation | |
640 | used in every rule. | |
641 | ||
642 | @example | |
de6be119 | 643 | stmt: RETURN expr ';' ; |
bfa74976 RS |
644 | @end example |
645 | ||
646 | @noindent | |
647 | @xref{Rules, ,Syntax of Grammar Rules}. | |
648 | ||
342b8b6e | 649 | @node Semantic Values |
bfa74976 RS |
650 | @section Semantic Values |
651 | @cindex semantic value | |
652 | @cindex value, semantic | |
653 | ||
654 | A formal grammar selects tokens only by their classifications: for example, | |
655 | if a rule mentions the terminal symbol `integer constant', it means that | |
656 | @emph{any} integer constant is grammatically valid in that position. The | |
657 | precise value of the constant is irrelevant to how to parse the input: if | |
658 | @samp{x+4} is grammatical then @samp{x+1} or @samp{x+3989} is equally | |
e0c471a9 | 659 | grammatical. |
bfa74976 RS |
660 | |
661 | But the precise value is very important for what the input means once it is | |
662 | parsed. A compiler is useless if it fails to distinguish between 4, 1 and | |
663 | 3989 as constants in the program! Therefore, each token in a Bison grammar | |
c827f760 PE |
664 | has both a token type and a @dfn{semantic value}. @xref{Semantics, |
665 | ,Defining Language Semantics}, | |
bfa74976 RS |
666 | for details. |
667 | ||
668 | The token type is a terminal symbol defined in the grammar, such as | |
669 | @code{INTEGER}, @code{IDENTIFIER} or @code{','}. It tells everything | |
670 | you need to know to decide where the token may validly appear and how to | |
671 | group it with other tokens. The grammar rules know nothing about tokens | |
e0c471a9 | 672 | except their types. |
bfa74976 RS |
673 | |
674 | The semantic value has all the rest of the information about the | |
675 | meaning of the token, such as the value of an integer, or the name of an | |
676 | identifier. (A token such as @code{','} which is just punctuation doesn't | |
677 | need to have any semantic value.) | |
678 | ||
679 | For example, an input token might be classified as token type | |
680 | @code{INTEGER} and have the semantic value 4. Another input token might | |
681 | have the same token type @code{INTEGER} but value 3989. When a grammar | |
682 | rule says that @code{INTEGER} is allowed, either of these tokens is | |
683 | acceptable because each is an @code{INTEGER}. When the parser accepts the | |
684 | token, it keeps track of the token's semantic value. | |
685 | ||
686 | Each grouping can also have a semantic value as well as its nonterminal | |
687 | symbol. For example, in a calculator, an expression typically has a | |
688 | semantic value that is a number. In a compiler for a programming | |
689 | language, an expression typically has a semantic value that is a tree | |
690 | structure describing the meaning of the expression. | |
691 | ||
342b8b6e | 692 | @node Semantic Actions |
bfa74976 RS |
693 | @section Semantic Actions |
694 | @cindex semantic actions | |
695 | @cindex actions, semantic | |
696 | ||
697 | In order to be useful, a program must do more than parse input; it must | |
698 | also produce some output based on the input. In a Bison grammar, a grammar | |
699 | rule can have an @dfn{action} made up of C statements. Each time the | |
700 | parser recognizes a match for that rule, the action is executed. | |
701 | @xref{Actions}. | |
13863333 | 702 | |
bfa74976 RS |
703 | Most of the time, the purpose of an action is to compute the semantic value |
704 | of the whole construct from the semantic values of its parts. For example, | |
705 | suppose we have a rule which says an expression can be the sum of two | |
706 | expressions. When the parser recognizes such a sum, each of the | |
707 | subexpressions has a semantic value which describes how it was built up. | |
708 | The action for this rule should create a similar sort of value for the | |
709 | newly recognized larger expression. | |
710 | ||
711 | For example, here is a rule that says an expression can be the sum of | |
712 | two subexpressions: | |
713 | ||
714 | @example | |
de6be119 | 715 | expr: expr '+' expr @{ $$ = $1 + $3; @} ; |
bfa74976 RS |
716 | @end example |
717 | ||
718 | @noindent | |
719 | The action says how to produce the semantic value of the sum expression | |
720 | from the values of the two subexpressions. | |
721 | ||
676385e2 | 722 | @node GLR Parsers |
35430378 JD |
723 | @section Writing GLR Parsers |
724 | @cindex GLR parsing | |
725 | @cindex generalized LR (GLR) parsing | |
676385e2 PH |
726 | @findex %glr-parser |
727 | @cindex conflicts | |
728 | @cindex shift/reduce conflicts | |
fa7e68c3 | 729 | @cindex reduce/reduce conflicts |
676385e2 | 730 | |
34a6c2d1 | 731 | In some grammars, Bison's deterministic |
35430378 | 732 | LR(1) parsing algorithm cannot decide whether to apply a |
9501dc6e AD |
733 | certain grammar rule at a given point. That is, it may not be able to |
734 | decide (on the basis of the input read so far) which of two possible | |
735 | reductions (applications of a grammar rule) applies, or whether to apply | |
736 | a reduction or read more of the input and apply a reduction later in the | |
737 | input. These are known respectively as @dfn{reduce/reduce} conflicts | |
738 | (@pxref{Reduce/Reduce}), and @dfn{shift/reduce} conflicts | |
739 | (@pxref{Shift/Reduce}). | |
740 | ||
35430378 | 741 | To use a grammar that is not easily modified to be LR(1), a |
9501dc6e | 742 | more general parsing algorithm is sometimes necessary. If you include |
676385e2 | 743 | @code{%glr-parser} among the Bison declarations in your file |
35430378 JD |
744 | (@pxref{Grammar Outline}), the result is a Generalized LR |
745 | (GLR) parser. These parsers handle Bison grammars that | |
9501dc6e | 746 | contain no unresolved conflicts (i.e., after applying precedence |
34a6c2d1 | 747 | declarations) identically to deterministic parsers. However, when |
9501dc6e | 748 | faced with unresolved shift/reduce and reduce/reduce conflicts, |
35430378 | 749 | GLR parsers use the simple expedient of doing both, |
9501dc6e AD |
750 | effectively cloning the parser to follow both possibilities. Each of |
751 | the resulting parsers can again split, so that at any given time, there | |
752 | can be any number of possible parses being explored. The parsers | |
676385e2 PH |
753 | proceed in lockstep; that is, all of them consume (shift) a given input |
754 | symbol before any of them proceed to the next. Each of the cloned | |
755 | parsers eventually meets one of two possible fates: either it runs into | |
756 | a parsing error, in which case it simply vanishes, or it merges with | |
757 | another parser, because the two of them have reduced the input to an | |
758 | identical set of symbols. | |
759 | ||
760 | During the time that there are multiple parsers, semantic actions are | |
761 | recorded, but not performed. When a parser disappears, its recorded | |
762 | semantic actions disappear as well, and are never performed. When a | |
763 | reduction makes two parsers identical, causing them to merge, Bison | |
764 | records both sets of semantic actions. Whenever the last two parsers | |
765 | merge, reverting to the single-parser case, Bison resolves all the | |
766 | outstanding actions either by precedences given to the grammar rules | |
767 | involved, or by performing both actions, and then calling a designated | |
768 | user-defined function on the resulting values to produce an arbitrary | |
769 | merged result. | |
770 | ||
fa7e68c3 | 771 | @menu |
35430378 JD |
772 | * Simple GLR Parsers:: Using GLR parsers on unambiguous grammars. |
773 | * Merging GLR Parses:: Using GLR parsers to resolve ambiguities. | |
f56274a8 | 774 | * GLR Semantic Actions:: Deferred semantic actions have special concerns. |
35430378 | 775 | * Compiler Requirements:: GLR parsers require a modern C compiler. |
fa7e68c3 PE |
776 | @end menu |
777 | ||
778 | @node Simple GLR Parsers | |
35430378 JD |
779 | @subsection Using GLR on Unambiguous Grammars |
780 | @cindex GLR parsing, unambiguous grammars | |
781 | @cindex generalized LR (GLR) parsing, unambiguous grammars | |
fa7e68c3 PE |
782 | @findex %glr-parser |
783 | @findex %expect-rr | |
784 | @cindex conflicts | |
785 | @cindex reduce/reduce conflicts | |
786 | @cindex shift/reduce conflicts | |
787 | ||
35430378 JD |
788 | In the simplest cases, you can use the GLR algorithm |
789 | to parse grammars that are unambiguous but fail to be LR(1). | |
34a6c2d1 | 790 | Such grammars typically require more than one symbol of lookahead. |
fa7e68c3 PE |
791 | |
792 | Consider a problem that | |
793 | arises in the declaration of enumerated and subrange types in the | |
794 | programming language Pascal. Here are some examples: | |
795 | ||
796 | @example | |
797 | type subrange = lo .. hi; | |
798 | type enum = (a, b, c); | |
799 | @end example | |
800 | ||
801 | @noindent | |
802 | The original language standard allows only numeric | |
803 | literals and constant identifiers for the subrange bounds (@samp{lo} | |
35430378 | 804 | and @samp{hi}), but Extended Pascal (ISO/IEC |
fa7e68c3 PE |
805 | 10206) and many other |
806 | Pascal implementations allow arbitrary expressions there. This gives | |
807 | rise to the following situation, containing a superfluous pair of | |
808 | parentheses: | |
809 | ||
810 | @example | |
811 | type subrange = (a) .. b; | |
812 | @end example | |
813 | ||
814 | @noindent | |
815 | Compare this to the following declaration of an enumerated | |
816 | type with only one value: | |
817 | ||
818 | @example | |
819 | type enum = (a); | |
820 | @end example | |
821 | ||
822 | @noindent | |
823 | (These declarations are contrived, but they are syntactically | |
824 | valid, and more-complicated cases can come up in practical programs.) | |
825 | ||
826 | These two declarations look identical until the @samp{..} token. | |
35430378 | 827 | With normal LR(1) one-token lookahead it is not |
fa7e68c3 PE |
828 | possible to decide between the two forms when the identifier |
829 | @samp{a} is parsed. It is, however, desirable | |
830 | for a parser to decide this, since in the latter case | |
831 | @samp{a} must become a new identifier to represent the enumeration | |
832 | value, while in the former case @samp{a} must be evaluated with its | |
833 | current meaning, which may be a constant or even a function call. | |
834 | ||
835 | You could parse @samp{(a)} as an ``unspecified identifier in parentheses'', | |
836 | to be resolved later, but this typically requires substantial | |
837 | contortions in both semantic actions and large parts of the | |
838 | grammar, where the parentheses are nested in the recursive rules for | |
839 | expressions. | |
840 | ||
841 | You might think of using the lexer to distinguish between the two | |
842 | forms by returning different tokens for currently defined and | |
843 | undefined identifiers. But if these declarations occur in a local | |
844 | scope, and @samp{a} is defined in an outer scope, then both forms | |
845 | are possible---either locally redefining @samp{a}, or using the | |
846 | value of @samp{a} from the outer scope. So this approach cannot | |
847 | work. | |
848 | ||
e757bb10 | 849 | A simple solution to this problem is to declare the parser to |
35430378 JD |
850 | use the GLR algorithm. |
851 | When the GLR parser reaches the critical state, it | |
fa7e68c3 PE |
852 | merely splits into two branches and pursues both syntax rules |
853 | simultaneously. Sooner or later, one of them runs into a parsing | |
854 | error. If there is a @samp{..} token before the next | |
855 | @samp{;}, the rule for enumerated types fails since it cannot | |
856 | accept @samp{..} anywhere; otherwise, the subrange type rule | |
857 | fails since it requires a @samp{..} token. So one of the branches | |
858 | fails silently, and the other one continues normally, performing | |
859 | all the intermediate actions that were postponed during the split. | |
860 | ||
861 | If the input is syntactically incorrect, both branches fail and the parser | |
862 | reports a syntax error as usual. | |
863 | ||
864 | The effect of all this is that the parser seems to ``guess'' the | |
865 | correct branch to take, or in other words, it seems to use more | |
35430378 JD |
866 | lookahead than the underlying LR(1) algorithm actually allows |
867 | for. In this example, LR(2) would suffice, but also some cases | |
868 | that are not LR(@math{k}) for any @math{k} can be handled this way. | |
fa7e68c3 | 869 | |
35430378 | 870 | In general, a GLR parser can take quadratic or cubic worst-case time, |
fa7e68c3 PE |
871 | and the current Bison parser even takes exponential time and space |
872 | for some grammars. In practice, this rarely happens, and for many | |
873 | grammars it is possible to prove that it cannot happen. | |
874 | The present example contains only one conflict between two | |
875 | rules, and the type-declaration context containing the conflict | |
876 | cannot be nested. So the number of | |
877 | branches that can exist at any time is limited by the constant 2, | |
878 | and the parsing time is still linear. | |
879 | ||
880 | Here is a Bison grammar corresponding to the example above. It | |
881 | parses a vastly simplified form of Pascal type declarations. | |
882 | ||
883 | @example | |
884 | %token TYPE DOTDOT ID | |
885 | ||
886 | @group | |
887 | %left '+' '-' | |
888 | %left '*' '/' | |
889 | @end group | |
890 | ||
891 | %% | |
892 | ||
893 | @group | |
de6be119 | 894 | type_decl: TYPE ID '=' type ';' ; |
fa7e68c3 PE |
895 | @end group |
896 | ||
897 | @group | |
de6be119 AD |
898 | type: |
899 | '(' id_list ')' | |
900 | | expr DOTDOT expr | |
901 | ; | |
fa7e68c3 PE |
902 | @end group |
903 | ||
904 | @group | |
de6be119 AD |
905 | id_list: |
906 | ID | |
907 | | id_list ',' ID | |
908 | ; | |
fa7e68c3 PE |
909 | @end group |
910 | ||
911 | @group | |
de6be119 AD |
912 | expr: |
913 | '(' expr ')' | |
914 | | expr '+' expr | |
915 | | expr '-' expr | |
916 | | expr '*' expr | |
917 | | expr '/' expr | |
918 | | ID | |
919 | ; | |
fa7e68c3 PE |
920 | @end group |
921 | @end example | |
922 | ||
35430378 | 923 | When used as a normal LR(1) grammar, Bison correctly complains |
fa7e68c3 PE |
924 | about one reduce/reduce conflict. In the conflicting situation the |
925 | parser chooses one of the alternatives, arbitrarily the one | |
926 | declared first. Therefore the following correct input is not | |
927 | recognized: | |
928 | ||
929 | @example | |
930 | type t = (a) .. b; | |
931 | @end example | |
932 | ||
35430378 | 933 | The parser can be turned into a GLR parser, while also telling Bison |
9913d6e4 JD |
934 | to be silent about the one known reduce/reduce conflict, by adding |
935 | these two declarations to the Bison grammar file (before the first | |
fa7e68c3 PE |
936 | @samp{%%}): |
937 | ||
938 | @example | |
939 | %glr-parser | |
940 | %expect-rr 1 | |
941 | @end example | |
942 | ||
943 | @noindent | |
944 | No change in the grammar itself is required. Now the | |
945 | parser recognizes all valid declarations, according to the | |
946 | limited syntax above, transparently. In fact, the user does not even | |
947 | notice when the parser splits. | |
948 | ||
35430378 | 949 | So here we have a case where we can use the benefits of GLR, |
f8e1c9e5 AD |
950 | almost without disadvantages. Even in simple cases like this, however, |
951 | there are at least two potential problems to beware. First, always | |
35430378 JD |
952 | analyze the conflicts reported by Bison to make sure that GLR |
953 | splitting is only done where it is intended. A GLR parser | |
f8e1c9e5 | 954 | splitting inadvertently may cause problems less obvious than an |
35430378 | 955 | LR parser statically choosing the wrong alternative in a |
f8e1c9e5 AD |
956 | conflict. Second, consider interactions with the lexer (@pxref{Semantic |
957 | Tokens}) with great care. Since a split parser consumes tokens without | |
958 | performing any actions during the split, the lexer cannot obtain | |
959 | information via parser actions. Some cases of lexer interactions can be | |
35430378 | 960 | eliminated by using GLR to shift the complications from the |
f8e1c9e5 AD |
961 | lexer to the parser. You must check the remaining cases for |
962 | correctness. | |
963 | ||
964 | In our example, it would be safe for the lexer to return tokens based on | |
965 | their current meanings in some symbol table, because no new symbols are | |
966 | defined in the middle of a type declaration. Though it is possible for | |
967 | a parser to define the enumeration constants as they are parsed, before | |
968 | the type declaration is completed, it actually makes no difference since | |
969 | they cannot be used within the same enumerated type declaration. | |
fa7e68c3 PE |
970 | |
971 | @node Merging GLR Parses | |
35430378 JD |
972 | @subsection Using GLR to Resolve Ambiguities |
973 | @cindex GLR parsing, ambiguous grammars | |
974 | @cindex generalized LR (GLR) parsing, ambiguous grammars | |
fa7e68c3 PE |
975 | @findex %dprec |
976 | @findex %merge | |
977 | @cindex conflicts | |
978 | @cindex reduce/reduce conflicts | |
979 | ||
2a8d363a | 980 | Let's consider an example, vastly simplified from a C++ grammar. |
676385e2 PH |
981 | |
982 | @example | |
983 | %@{ | |
38a92d50 PE |
984 | #include <stdio.h> |
985 | #define YYSTYPE char const * | |
986 | int yylex (void); | |
987 | void yyerror (char const *); | |
676385e2 PH |
988 | %@} |
989 | ||
990 | %token TYPENAME ID | |
991 | ||
992 | %right '=' | |
993 | %left '+' | |
994 | ||
995 | %glr-parser | |
996 | ||
997 | %% | |
998 | ||
de6be119 AD |
999 | prog: |
1000 | /* Nothing. */ | |
1001 | | prog stmt @{ printf ("\n"); @} | |
1002 | ; | |
676385e2 | 1003 | |
de6be119 AD |
1004 | stmt: |
1005 | expr ';' %dprec 1 | |
1006 | | decl %dprec 2 | |
1007 | ; | |
676385e2 | 1008 | |
de6be119 AD |
1009 | expr: |
1010 | ID @{ printf ("%s ", $$); @} | |
1011 | | TYPENAME '(' expr ')' | |
1012 | @{ printf ("%s <cast> ", $1); @} | |
1013 | | expr '+' expr @{ printf ("+ "); @} | |
1014 | | expr '=' expr @{ printf ("= "); @} | |
1015 | ; | |
676385e2 | 1016 | |
de6be119 AD |
1017 | decl: |
1018 | TYPENAME declarator ';' | |
1019 | @{ printf ("%s <declare> ", $1); @} | |
1020 | | TYPENAME declarator '=' expr ';' | |
1021 | @{ printf ("%s <init-declare> ", $1); @} | |
1022 | ; | |
676385e2 | 1023 | |
de6be119 AD |
1024 | declarator: |
1025 | ID @{ printf ("\"%s\" ", $1); @} | |
1026 | | '(' declarator ')' | |
1027 | ; | |
676385e2 PH |
1028 | @end example |
1029 | ||
1030 | @noindent | |
1031 | This models a problematic part of the C++ grammar---the ambiguity between | |
1032 | certain declarations and statements. For example, | |
1033 | ||
1034 | @example | |
1035 | T (x) = y+z; | |
1036 | @end example | |
1037 | ||
1038 | @noindent | |
1039 | parses as either an @code{expr} or a @code{stmt} | |
c827f760 PE |
1040 | (assuming that @samp{T} is recognized as a @code{TYPENAME} and |
1041 | @samp{x} as an @code{ID}). | |
676385e2 | 1042 | Bison detects this as a reduce/reduce conflict between the rules |
fae437e8 | 1043 | @code{expr : ID} and @code{declarator : ID}, which it cannot resolve at the |
e757bb10 | 1044 | time it encounters @code{x} in the example above. Since this is a |
35430378 | 1045 | GLR parser, it therefore splits the problem into two parses, one for |
fa7e68c3 PE |
1046 | each choice of resolving the reduce/reduce conflict. |
1047 | Unlike the example from the previous section (@pxref{Simple GLR Parsers}), | |
1048 | however, neither of these parses ``dies,'' because the grammar as it stands is | |
e757bb10 AD |
1049 | ambiguous. One of the parsers eventually reduces @code{stmt : expr ';'} and |
1050 | the other reduces @code{stmt : decl}, after which both parsers are in an | |
1051 | identical state: they've seen @samp{prog stmt} and have the same unprocessed | |
1052 | input remaining. We say that these parses have @dfn{merged.} | |
fa7e68c3 | 1053 | |
35430378 | 1054 | At this point, the GLR parser requires a specification in the |
fa7e68c3 PE |
1055 | grammar of how to choose between the competing parses. |
1056 | In the example above, the two @code{%dprec} | |
e757bb10 | 1057 | declarations specify that Bison is to give precedence |
fa7e68c3 | 1058 | to the parse that interprets the example as a |
676385e2 PH |
1059 | @code{decl}, which implies that @code{x} is a declarator. |
1060 | The parser therefore prints | |
1061 | ||
1062 | @example | |
fae437e8 | 1063 | "x" y z + T <init-declare> |
676385e2 PH |
1064 | @end example |
1065 | ||
fa7e68c3 PE |
1066 | The @code{%dprec} declarations only come into play when more than one |
1067 | parse survives. Consider a different input string for this parser: | |
676385e2 PH |
1068 | |
1069 | @example | |
1070 | T (x) + y; | |
1071 | @end example | |
1072 | ||
1073 | @noindent | |
35430378 | 1074 | This is another example of using GLR to parse an unambiguous |
fa7e68c3 | 1075 | construct, as shown in the previous section (@pxref{Simple GLR Parsers}). |
676385e2 PH |
1076 | Here, there is no ambiguity (this cannot be parsed as a declaration). |
1077 | However, at the time the Bison parser encounters @code{x}, it does not | |
1078 | have enough information to resolve the reduce/reduce conflict (again, | |
1079 | between @code{x} as an @code{expr} or a @code{declarator}). In this | |
fa7e68c3 | 1080 | case, no precedence declaration is used. Again, the parser splits |
676385e2 PH |
1081 | into two, one assuming that @code{x} is an @code{expr}, and the other |
1082 | assuming @code{x} is a @code{declarator}. The second of these parsers | |
1083 | then vanishes when it sees @code{+}, and the parser prints | |
1084 | ||
1085 | @example | |
fae437e8 | 1086 | x T <cast> y + |
676385e2 PH |
1087 | @end example |
1088 | ||
1089 | Suppose that instead of resolving the ambiguity, you wanted to see all | |
fa7e68c3 | 1090 | the possibilities. For this purpose, you must merge the semantic |
676385e2 PH |
1091 | actions of the two possible parsers, rather than choosing one over the |
1092 | other. To do so, you could change the declaration of @code{stmt} as | |
1093 | follows: | |
1094 | ||
1095 | @example | |
de6be119 AD |
1096 | stmt: |
1097 | expr ';' %merge <stmtMerge> | |
1098 | | decl %merge <stmtMerge> | |
1099 | ; | |
676385e2 PH |
1100 | @end example |
1101 | ||
1102 | @noindent | |
676385e2 PH |
1103 | and define the @code{stmtMerge} function as: |
1104 | ||
1105 | @example | |
38a92d50 PE |
1106 | static YYSTYPE |
1107 | stmtMerge (YYSTYPE x0, YYSTYPE x1) | |
676385e2 PH |
1108 | @{ |
1109 | printf ("<OR> "); | |
1110 | return ""; | |
1111 | @} | |
1112 | @end example | |
1113 | ||
1114 | @noindent | |
1115 | with an accompanying forward declaration | |
1116 | in the C declarations at the beginning of the file: | |
1117 | ||
1118 | @example | |
1119 | %@{ | |
38a92d50 | 1120 | #define YYSTYPE char const * |
676385e2 PH |
1121 | static YYSTYPE stmtMerge (YYSTYPE x0, YYSTYPE x1); |
1122 | %@} | |
1123 | @end example | |
1124 | ||
1125 | @noindent | |
fa7e68c3 PE |
1126 | With these declarations, the resulting parser parses the first example |
1127 | as both an @code{expr} and a @code{decl}, and prints | |
676385e2 PH |
1128 | |
1129 | @example | |
fae437e8 | 1130 | "x" y z + T <init-declare> x T <cast> y z + = <OR> |
676385e2 PH |
1131 | @end example |
1132 | ||
fa7e68c3 | 1133 | Bison requires that all of the |
e757bb10 | 1134 | productions that participate in any particular merge have identical |
fa7e68c3 PE |
1135 | @samp{%merge} clauses. Otherwise, the ambiguity would be unresolvable, |
1136 | and the parser will report an error during any parse that results in | |
1137 | the offending merge. | |
9501dc6e | 1138 | |
32c29292 JD |
1139 | @node GLR Semantic Actions |
1140 | @subsection GLR Semantic Actions | |
1141 | ||
1142 | @cindex deferred semantic actions | |
1143 | By definition, a deferred semantic action is not performed at the same time as | |
1144 | the associated reduction. | |
1145 | This raises caveats for several Bison features you might use in a semantic | |
35430378 | 1146 | action in a GLR parser. |
32c29292 JD |
1147 | |
1148 | @vindex yychar | |
35430378 | 1149 | @cindex GLR parsers and @code{yychar} |
32c29292 | 1150 | @vindex yylval |
35430378 | 1151 | @cindex GLR parsers and @code{yylval} |
32c29292 | 1152 | @vindex yylloc |
35430378 | 1153 | @cindex GLR parsers and @code{yylloc} |
32c29292 | 1154 | In any semantic action, you can examine @code{yychar} to determine the type of |
742e4900 | 1155 | the lookahead token present at the time of the associated reduction. |
32c29292 JD |
1156 | After checking that @code{yychar} is not set to @code{YYEMPTY} or @code{YYEOF}, |
1157 | you can then examine @code{yylval} and @code{yylloc} to determine the | |
742e4900 | 1158 | lookahead token's semantic value and location, if any. |
32c29292 JD |
1159 | In a nondeferred semantic action, you can also modify any of these variables to |
1160 | influence syntax analysis. | |
742e4900 | 1161 | @xref{Lookahead, ,Lookahead Tokens}. |
32c29292 JD |
1162 | |
1163 | @findex yyclearin | |
35430378 | 1164 | @cindex GLR parsers and @code{yyclearin} |
32c29292 JD |
1165 | In a deferred semantic action, it's too late to influence syntax analysis. |
1166 | In this case, @code{yychar}, @code{yylval}, and @code{yylloc} are set to | |
1167 | shallow copies of the values they had at the time of the associated reduction. | |
1168 | For this reason alone, modifying them is dangerous. | |
1169 | Moreover, the result of modifying them is undefined and subject to change with | |
1170 | future versions of Bison. | |
1171 | For example, if a semantic action might be deferred, you should never write it | |
1172 | to invoke @code{yyclearin} (@pxref{Action Features}) or to attempt to free | |
1173 | memory referenced by @code{yylval}. | |
1174 | ||
1175 | @findex YYERROR | |
35430378 | 1176 | @cindex GLR parsers and @code{YYERROR} |
32c29292 | 1177 | Another Bison feature requiring special consideration is @code{YYERROR} |
8710fc41 | 1178 | (@pxref{Action Features}), which you can invoke in a semantic action to |
32c29292 | 1179 | initiate error recovery. |
35430378 | 1180 | During deterministic GLR operation, the effect of @code{YYERROR} is |
34a6c2d1 | 1181 | the same as its effect in a deterministic parser. |
32c29292 JD |
1182 | In a deferred semantic action, its effect is undefined. |
1183 | @c The effect is probably a syntax error at the split point. | |
1184 | ||
8710fc41 | 1185 | Also, see @ref{Location Default Action, ,Default Action for Locations}, which |
35430378 | 1186 | describes a special usage of @code{YYLLOC_DEFAULT} in GLR parsers. |
8710fc41 | 1187 | |
fa7e68c3 | 1188 | @node Compiler Requirements |
35430378 | 1189 | @subsection Considerations when Compiling GLR Parsers |
fa7e68c3 | 1190 | @cindex @code{inline} |
35430378 | 1191 | @cindex GLR parsers and @code{inline} |
fa7e68c3 | 1192 | |
35430378 | 1193 | The GLR parsers require a compiler for ISO C89 or |
38a92d50 PE |
1194 | later. In addition, they use the @code{inline} keyword, which is not |
1195 | C89, but is C99 and is a common extension in pre-C99 compilers. It is | |
1196 | up to the user of these parsers to handle | |
9501dc6e AD |
1197 | portability issues. For instance, if using Autoconf and the Autoconf |
1198 | macro @code{AC_C_INLINE}, a mere | |
1199 | ||
1200 | @example | |
1201 | %@{ | |
38a92d50 | 1202 | #include <config.h> |
9501dc6e AD |
1203 | %@} |
1204 | @end example | |
1205 | ||
1206 | @noindent | |
1207 | will suffice. Otherwise, we suggest | |
1208 | ||
1209 | @example | |
1210 | %@{ | |
2c0f9706 AD |
1211 | #if (__STDC_VERSION__ < 199901 && ! defined __GNUC__ \ |
1212 | && ! defined inline) | |
1213 | # define inline | |
38a92d50 | 1214 | #endif |
9501dc6e AD |
1215 | %@} |
1216 | @end example | |
676385e2 | 1217 | |
83484365 | 1218 | @node Locations |
847bf1f5 AD |
1219 | @section Locations |
1220 | @cindex location | |
95923bd6 AD |
1221 | @cindex textual location |
1222 | @cindex location, textual | |
847bf1f5 AD |
1223 | |
1224 | Many applications, like interpreters or compilers, have to produce verbose | |
72d2299c | 1225 | and useful error messages. To achieve this, one must be able to keep track of |
95923bd6 | 1226 | the @dfn{textual location}, or @dfn{location}, of each syntactic construct. |
847bf1f5 AD |
1227 | Bison provides a mechanism for handling these locations. |
1228 | ||
72d2299c | 1229 | Each token has a semantic value. In a similar fashion, each token has an |
7404cdf3 JD |
1230 | associated location, but the type of locations is the same for all tokens |
1231 | and groupings. Moreover, the output parser is equipped with a default data | |
1232 | structure for storing locations (@pxref{Tracking Locations}, for more | |
1233 | details). | |
847bf1f5 AD |
1234 | |
1235 | Like semantic values, locations can be reached in actions using a dedicated | |
72d2299c | 1236 | set of constructs. In the example above, the location of the whole grouping |
847bf1f5 AD |
1237 | is @code{@@$}, while the locations of the subexpressions are @code{@@1} and |
1238 | @code{@@3}. | |
1239 | ||
1240 | When a rule is matched, a default action is used to compute the semantic value | |
72d2299c PE |
1241 | of its left hand side (@pxref{Actions}). In the same way, another default |
1242 | action is used for locations. However, the action for locations is general | |
847bf1f5 | 1243 | enough for most cases, meaning there is usually no need to describe for each |
72d2299c | 1244 | rule how @code{@@$} should be formed. When building a new location for a given |
847bf1f5 AD |
1245 | grouping, the default behavior of the output parser is to take the beginning |
1246 | of the first symbol, and the end of the last symbol. | |
1247 | ||
342b8b6e | 1248 | @node Bison Parser |
9913d6e4 | 1249 | @section Bison Output: the Parser Implementation File |
bfa74976 RS |
1250 | @cindex Bison parser |
1251 | @cindex Bison utility | |
1252 | @cindex lexical analyzer, purpose | |
1253 | @cindex parser | |
1254 | ||
9913d6e4 JD |
1255 | When you run Bison, you give it a Bison grammar file as input. The |
1256 | most important output is a C source file that implements a parser for | |
1257 | the language described by the grammar. This parser is called a | |
1258 | @dfn{Bison parser}, and this file is called a @dfn{Bison parser | |
1259 | implementation file}. Keep in mind that the Bison utility and the | |
1260 | Bison parser are two distinct programs: the Bison utility is a program | |
1261 | whose output is the Bison parser implementation file that becomes part | |
1262 | of your program. | |
bfa74976 RS |
1263 | |
1264 | The job of the Bison parser is to group tokens into groupings according to | |
1265 | the grammar rules---for example, to build identifiers and operators into | |
1266 | expressions. As it does this, it runs the actions for the grammar rules it | |
1267 | uses. | |
1268 | ||
704a47c4 AD |
1269 | The tokens come from a function called the @dfn{lexical analyzer} that |
1270 | you must supply in some fashion (such as by writing it in C). The Bison | |
1271 | parser calls the lexical analyzer each time it wants a new token. It | |
1272 | doesn't know what is ``inside'' the tokens (though their semantic values | |
1273 | may reflect this). Typically the lexical analyzer makes the tokens by | |
1274 | parsing characters of text, but Bison does not depend on this. | |
1275 | @xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}. | |
bfa74976 | 1276 | |
9913d6e4 JD |
1277 | The Bison parser implementation file is C code which defines a |
1278 | function named @code{yyparse} which implements that grammar. This | |
1279 | function does not make a complete C program: you must supply some | |
1280 | additional functions. One is the lexical analyzer. Another is an | |
1281 | error-reporting function which the parser calls to report an error. | |
1282 | In addition, a complete C program must start with a function called | |
1283 | @code{main}; you have to provide this, and arrange for it to call | |
1284 | @code{yyparse} or the parser will never run. @xref{Interface, ,Parser | |
1285 | C-Language Interface}. | |
bfa74976 | 1286 | |
f7ab6a50 | 1287 | Aside from the token type names and the symbols in the actions you |
9913d6e4 JD |
1288 | write, all symbols defined in the Bison parser implementation file |
1289 | itself begin with @samp{yy} or @samp{YY}. This includes interface | |
1290 | functions such as the lexical analyzer function @code{yylex}, the | |
1291 | error reporting function @code{yyerror} and the parser function | |
1292 | @code{yyparse} itself. This also includes numerous identifiers used | |
1293 | for internal purposes. Therefore, you should avoid using C | |
1294 | identifiers starting with @samp{yy} or @samp{YY} in the Bison grammar | |
1295 | file except for the ones defined in this manual. Also, you should | |
1296 | avoid using the C identifiers @samp{malloc} and @samp{free} for | |
1297 | anything other than their usual meanings. | |
1298 | ||
1299 | In some cases the Bison parser implementation file includes system | |
1300 | headers, and in those cases your code should respect the identifiers | |
1301 | reserved by those headers. On some non-GNU hosts, @code{<alloca.h>}, | |
1302 | @code{<malloc.h>}, @code{<stddef.h>}, and @code{<stdlib.h>} are | |
1303 | included as needed to declare memory allocators and related types. | |
1304 | @code{<libintl.h>} is included if message translation is in use | |
1305 | (@pxref{Internationalization}). Other system headers may be included | |
1306 | if you define @code{YYDEBUG} to a nonzero value (@pxref{Tracing, | |
1307 | ,Tracing Your Parser}). | |
7093d0f5 | 1308 | |
342b8b6e | 1309 | @node Stages |
bfa74976 RS |
1310 | @section Stages in Using Bison |
1311 | @cindex stages in using Bison | |
1312 | @cindex using Bison | |
1313 | ||
1314 | The actual language-design process using Bison, from grammar specification | |
1315 | to a working compiler or interpreter, has these parts: | |
1316 | ||
1317 | @enumerate | |
1318 | @item | |
1319 | Formally specify the grammar in a form recognized by Bison | |
704a47c4 AD |
1320 | (@pxref{Grammar File, ,Bison Grammar Files}). For each grammatical rule |
1321 | in the language, describe the action that is to be taken when an | |
1322 | instance of that rule is recognized. The action is described by a | |
1323 | sequence of C statements. | |
bfa74976 RS |
1324 | |
1325 | @item | |
704a47c4 AD |
1326 | Write a lexical analyzer to process input and pass tokens to the parser. |
1327 | The lexical analyzer may be written by hand in C (@pxref{Lexical, ,The | |
1328 | Lexical Analyzer Function @code{yylex}}). It could also be produced | |
1329 | using Lex, but the use of Lex is not discussed in this manual. | |
bfa74976 RS |
1330 | |
1331 | @item | |
1332 | Write a controlling function that calls the Bison-produced parser. | |
1333 | ||
1334 | @item | |
1335 | Write error-reporting routines. | |
1336 | @end enumerate | |
1337 | ||
1338 | To turn this source code as written into a runnable program, you | |
1339 | must follow these steps: | |
1340 | ||
1341 | @enumerate | |
1342 | @item | |
1343 | Run Bison on the grammar to produce the parser. | |
1344 | ||
1345 | @item | |
1346 | Compile the code output by Bison, as well as any other source files. | |
1347 | ||
1348 | @item | |
1349 | Link the object files to produce the finished product. | |
1350 | @end enumerate | |
1351 | ||
342b8b6e | 1352 | @node Grammar Layout |
bfa74976 RS |
1353 | @section The Overall Layout of a Bison Grammar |
1354 | @cindex grammar file | |
1355 | @cindex file format | |
1356 | @cindex format of grammar file | |
1357 | @cindex layout of Bison grammar | |
1358 | ||
1359 | The input file for the Bison utility is a @dfn{Bison grammar file}. The | |
1360 | general form of a Bison grammar file is as follows: | |
1361 | ||
1362 | @example | |
1363 | %@{ | |
08e49d20 | 1364 | @var{Prologue} |
bfa74976 RS |
1365 | %@} |
1366 | ||
1367 | @var{Bison declarations} | |
1368 | ||
1369 | %% | |
1370 | @var{Grammar rules} | |
1371 | %% | |
08e49d20 | 1372 | @var{Epilogue} |
bfa74976 RS |
1373 | @end example |
1374 | ||
1375 | @noindent | |
1376 | The @samp{%%}, @samp{%@{} and @samp{%@}} are punctuation that appears | |
1377 | in every Bison grammar file to separate the sections. | |
1378 | ||
72d2299c | 1379 | The prologue may define types and variables used in the actions. You can |
342b8b6e | 1380 | also use preprocessor commands to define macros used there, and use |
bfa74976 | 1381 | @code{#include} to include header files that do any of these things. |
38a92d50 PE |
1382 | You need to declare the lexical analyzer @code{yylex} and the error |
1383 | printer @code{yyerror} here, along with any other global identifiers | |
1384 | used by the actions in the grammar rules. | |
bfa74976 RS |
1385 | |
1386 | The Bison declarations declare the names of the terminal and nonterminal | |
1387 | symbols, and may also describe operator precedence and the data types of | |
1388 | semantic values of various symbols. | |
1389 | ||
1390 | The grammar rules define how to construct each nonterminal symbol from its | |
1391 | parts. | |
1392 | ||
38a92d50 PE |
1393 | The epilogue can contain any code you want to use. Often the |
1394 | definitions of functions declared in the prologue go here. In a | |
1395 | simple program, all the rest of the program can go here. | |
bfa74976 | 1396 | |
342b8b6e | 1397 | @node Examples |
bfa74976 RS |
1398 | @chapter Examples |
1399 | @cindex simple examples | |
1400 | @cindex examples, simple | |
1401 | ||
2c0f9706 | 1402 | Now we show and explain several sample programs written using Bison: a |
bfa74976 | 1403 | reverse polish notation calculator, an algebraic (infix) notation |
2c0f9706 AD |
1404 | calculator --- later extended to track ``locations'' --- |
1405 | and a multi-function calculator. All | |
1406 | produce usable, though limited, interactive desk-top calculators. | |
bfa74976 RS |
1407 | |
1408 | These examples are simple, but Bison grammars for real programming | |
aa08666d AD |
1409 | languages are written the same way. You can copy these examples into a |
1410 | source file to try them. | |
bfa74976 RS |
1411 | |
1412 | @menu | |
f56274a8 DJ |
1413 | * RPN Calc:: Reverse polish notation calculator; |
1414 | a first example with no operator precedence. | |
1415 | * Infix Calc:: Infix (algebraic) notation calculator. | |
1416 | Operator precedence is introduced. | |
bfa74976 | 1417 | * Simple Error Recovery:: Continuing after syntax errors. |
342b8b6e | 1418 | * Location Tracking Calc:: Demonstrating the use of @@@var{n} and @@$. |
f56274a8 DJ |
1419 | * Multi-function Calc:: Calculator with memory and trig functions. |
1420 | It uses multiple data-types for semantic values. | |
1421 | * Exercises:: Ideas for improving the multi-function calculator. | |
bfa74976 RS |
1422 | @end menu |
1423 | ||
342b8b6e | 1424 | @node RPN Calc |
bfa74976 RS |
1425 | @section Reverse Polish Notation Calculator |
1426 | @cindex reverse polish notation | |
1427 | @cindex polish notation calculator | |
1428 | @cindex @code{rpcalc} | |
1429 | @cindex calculator, simple | |
1430 | ||
1431 | The first example is that of a simple double-precision @dfn{reverse polish | |
1432 | notation} calculator (a calculator using postfix operators). This example | |
1433 | provides a good starting point, since operator precedence is not an issue. | |
1434 | The second example will illustrate how operator precedence is handled. | |
1435 | ||
1436 | The source code for this calculator is named @file{rpcalc.y}. The | |
9913d6e4 | 1437 | @samp{.y} extension is a convention used for Bison grammar files. |
bfa74976 RS |
1438 | |
1439 | @menu | |
f56274a8 DJ |
1440 | * Rpcalc Declarations:: Prologue (declarations) for rpcalc. |
1441 | * Rpcalc Rules:: Grammar Rules for rpcalc, with explanation. | |
1442 | * Rpcalc Lexer:: The lexical analyzer. | |
1443 | * Rpcalc Main:: The controlling function. | |
1444 | * Rpcalc Error:: The error reporting function. | |
1445 | * Rpcalc Generate:: Running Bison on the grammar file. | |
1446 | * Rpcalc Compile:: Run the C compiler on the output code. | |
bfa74976 RS |
1447 | @end menu |
1448 | ||
f56274a8 | 1449 | @node Rpcalc Declarations |
bfa74976 RS |
1450 | @subsection Declarations for @code{rpcalc} |
1451 | ||
1452 | Here are the C and Bison declarations for the reverse polish notation | |
1453 | calculator. As in C, comments are placed between @samp{/*@dots{}*/}. | |
1454 | ||
1455 | @example | |
72d2299c | 1456 | /* Reverse polish notation calculator. */ |
bfa74976 RS |
1457 | |
1458 | %@{ | |
38a92d50 PE |
1459 | #define YYSTYPE double |
1460 | #include <math.h> | |
1461 | int yylex (void); | |
1462 | void yyerror (char const *); | |
bfa74976 RS |
1463 | %@} |
1464 | ||
1465 | %token NUM | |
1466 | ||
72d2299c | 1467 | %% /* Grammar rules and actions follow. */ |
bfa74976 RS |
1468 | @end example |
1469 | ||
75f5aaea | 1470 | The declarations section (@pxref{Prologue, , The prologue}) contains two |
38a92d50 | 1471 | preprocessor directives and two forward declarations. |
bfa74976 RS |
1472 | |
1473 | The @code{#define} directive defines the macro @code{YYSTYPE}, thus | |
1964ad8c AD |
1474 | specifying the C data type for semantic values of both tokens and |
1475 | groupings (@pxref{Value Type, ,Data Types of Semantic Values}). The | |
1476 | Bison parser will use whatever type @code{YYSTYPE} is defined as; if you | |
1477 | don't define it, @code{int} is the default. Because we specify | |
1478 | @code{double}, each token and each expression has an associated value, | |
1479 | which is a floating point number. | |
bfa74976 RS |
1480 | |
1481 | The @code{#include} directive is used to declare the exponentiation | |
1482 | function @code{pow}. | |
1483 | ||
38a92d50 PE |
1484 | The forward declarations for @code{yylex} and @code{yyerror} are |
1485 | needed because the C language requires that functions be declared | |
1486 | before they are used. These functions will be defined in the | |
1487 | epilogue, but the parser calls them so they must be declared in the | |
1488 | prologue. | |
1489 | ||
704a47c4 AD |
1490 | The second section, Bison declarations, provides information to Bison |
1491 | about the token types (@pxref{Bison Declarations, ,The Bison | |
1492 | Declarations Section}). Each terminal symbol that is not a | |
1493 | single-character literal must be declared here. (Single-character | |
bfa74976 RS |
1494 | literals normally don't need to be declared.) In this example, all the |
1495 | arithmetic operators are designated by single-character literals, so the | |
1496 | only terminal symbol that needs to be declared is @code{NUM}, the token | |
1497 | type for numeric constants. | |
1498 | ||
342b8b6e | 1499 | @node Rpcalc Rules |
bfa74976 RS |
1500 | @subsection Grammar Rules for @code{rpcalc} |
1501 | ||
1502 | Here are the grammar rules for the reverse polish notation calculator. | |
1503 | ||
1504 | @example | |
2c0f9706 | 1505 | @group |
de6be119 AD |
1506 | input: |
1507 | /* empty */ | |
1508 | | input line | |
bfa74976 | 1509 | ; |
2c0f9706 | 1510 | @end group |
bfa74976 | 1511 | |
2c0f9706 | 1512 | @group |
de6be119 AD |
1513 | line: |
1514 | '\n' | |
1515 | | exp '\n' @{ printf ("%.10g\n", $1); @} | |
bfa74976 | 1516 | ; |
2c0f9706 | 1517 | @end group |
bfa74976 | 1518 | |
2c0f9706 | 1519 | @group |
de6be119 AD |
1520 | exp: |
1521 | NUM @{ $$ = $1; @} | |
1522 | | exp exp '+' @{ $$ = $1 + $2; @} | |
1523 | | exp exp '-' @{ $$ = $1 - $2; @} | |
1524 | | exp exp '*' @{ $$ = $1 * $2; @} | |
1525 | | exp exp '/' @{ $$ = $1 / $2; @} | |
1526 | | exp exp '^' @{ $$ = pow ($1, $2); @} /* Exponentiation */ | |
1527 | | exp 'n' @{ $$ = -$1; @} /* Unary minus */ | |
bfa74976 | 1528 | ; |
2c0f9706 | 1529 | @end group |
bfa74976 RS |
1530 | %% |
1531 | @end example | |
1532 | ||
1533 | The groupings of the rpcalc ``language'' defined here are the expression | |
1534 | (given the name @code{exp}), the line of input (@code{line}), and the | |
1535 | complete input transcript (@code{input}). Each of these nonterminal | |
8c5b881d | 1536 | symbols has several alternate rules, joined by the vertical bar @samp{|} |
bfa74976 RS |
1537 | which is read as ``or''. The following sections explain what these rules |
1538 | mean. | |
1539 | ||
1540 | The semantics of the language is determined by the actions taken when a | |
1541 | grouping is recognized. The actions are the C code that appears inside | |
1542 | braces. @xref{Actions}. | |
1543 | ||
1544 | You must specify these actions in C, but Bison provides the means for | |
1545 | passing semantic values between the rules. In each action, the | |
1546 | pseudo-variable @code{$$} stands for the semantic value for the grouping | |
1547 | that the rule is going to construct. Assigning a value to @code{$$} is the | |
1548 | main job of most actions. The semantic values of the components of the | |
1549 | rule are referred to as @code{$1}, @code{$2}, and so on. | |
1550 | ||
1551 | @menu | |
13863333 AD |
1552 | * Rpcalc Input:: |
1553 | * Rpcalc Line:: | |
1554 | * Rpcalc Expr:: | |
bfa74976 RS |
1555 | @end menu |
1556 | ||
342b8b6e | 1557 | @node Rpcalc Input |
bfa74976 RS |
1558 | @subsubsection Explanation of @code{input} |
1559 | ||
1560 | Consider the definition of @code{input}: | |
1561 | ||
1562 | @example | |
de6be119 AD |
1563 | input: |
1564 | /* empty */ | |
1565 | | input line | |
bfa74976 RS |
1566 | ; |
1567 | @end example | |
1568 | ||
1569 | This definition reads as follows: ``A complete input is either an empty | |
1570 | string, or a complete input followed by an input line''. Notice that | |
1571 | ``complete input'' is defined in terms of itself. This definition is said | |
1572 | to be @dfn{left recursive} since @code{input} appears always as the | |
1573 | leftmost symbol in the sequence. @xref{Recursion, ,Recursive Rules}. | |
1574 | ||
1575 | The first alternative is empty because there are no symbols between the | |
1576 | colon and the first @samp{|}; this means that @code{input} can match an | |
1577 | empty string of input (no tokens). We write the rules this way because it | |
1578 | is legitimate to type @kbd{Ctrl-d} right after you start the calculator. | |
1579 | It's conventional to put an empty alternative first and write the comment | |
1580 | @samp{/* empty */} in it. | |
1581 | ||
1582 | The second alternate rule (@code{input line}) handles all nontrivial input. | |
1583 | It means, ``After reading any number of lines, read one more line if | |
1584 | possible.'' The left recursion makes this rule into a loop. Since the | |
1585 | first alternative matches empty input, the loop can be executed zero or | |
1586 | more times. | |
1587 | ||
1588 | The parser function @code{yyparse} continues to process input until a | |
1589 | grammatical error is seen or the lexical analyzer says there are no more | |
72d2299c | 1590 | input tokens; we will arrange for the latter to happen at end-of-input. |
bfa74976 | 1591 | |
342b8b6e | 1592 | @node Rpcalc Line |
bfa74976 RS |
1593 | @subsubsection Explanation of @code{line} |
1594 | ||
1595 | Now consider the definition of @code{line}: | |
1596 | ||
1597 | @example | |
de6be119 AD |
1598 | line: |
1599 | '\n' | |
1600 | | exp '\n' @{ printf ("%.10g\n", $1); @} | |
bfa74976 RS |
1601 | ; |
1602 | @end example | |
1603 | ||
1604 | The first alternative is a token which is a newline character; this means | |
1605 | that rpcalc accepts a blank line (and ignores it, since there is no | |
1606 | action). The second alternative is an expression followed by a newline. | |
1607 | This is the alternative that makes rpcalc useful. The semantic value of | |
1608 | the @code{exp} grouping is the value of @code{$1} because the @code{exp} in | |
1609 | question is the first symbol in the alternative. The action prints this | |
1610 | value, which is the result of the computation the user asked for. | |
1611 | ||
1612 | This action is unusual because it does not assign a value to @code{$$}. As | |
1613 | a consequence, the semantic value associated with the @code{line} is | |
1614 | uninitialized (its value will be unpredictable). This would be a bug if | |
1615 | that value were ever used, but we don't use it: once rpcalc has printed the | |
1616 | value of the user's input line, that value is no longer needed. | |
1617 | ||
342b8b6e | 1618 | @node Rpcalc Expr |
bfa74976 RS |
1619 | @subsubsection Explanation of @code{expr} |
1620 | ||
1621 | The @code{exp} grouping has several rules, one for each kind of expression. | |
1622 | The first rule handles the simplest expressions: those that are just numbers. | |
1623 | The second handles an addition-expression, which looks like two expressions | |
1624 | followed by a plus-sign. The third handles subtraction, and so on. | |
1625 | ||
1626 | @example | |
de6be119 AD |
1627 | exp: |
1628 | NUM | |
1629 | | exp exp '+' @{ $$ = $1 + $2; @} | |
1630 | | exp exp '-' @{ $$ = $1 - $2; @} | |
1631 | @dots{} | |
1632 | ; | |
bfa74976 RS |
1633 | @end example |
1634 | ||
1635 | We have used @samp{|} to join all the rules for @code{exp}, but we could | |
1636 | equally well have written them separately: | |
1637 | ||
1638 | @example | |
de6be119 AD |
1639 | exp: NUM ; |
1640 | exp: exp exp '+' @{ $$ = $1 + $2; @}; | |
1641 | exp: exp exp '-' @{ $$ = $1 - $2; @}; | |
1642 | @dots{} | |
bfa74976 RS |
1643 | @end example |
1644 | ||
1645 | Most of the rules have actions that compute the value of the expression in | |
1646 | terms of the value of its parts. For example, in the rule for addition, | |
1647 | @code{$1} refers to the first component @code{exp} and @code{$2} refers to | |
1648 | the second one. The third component, @code{'+'}, has no meaningful | |
1649 | associated semantic value, but if it had one you could refer to it as | |
1650 | @code{$3}. When @code{yyparse} recognizes a sum expression using this | |
1651 | rule, the sum of the two subexpressions' values is produced as the value of | |
1652 | the entire expression. @xref{Actions}. | |
1653 | ||
1654 | You don't have to give an action for every rule. When a rule has no | |
1655 | action, Bison by default copies the value of @code{$1} into @code{$$}. | |
1656 | This is what happens in the first rule (the one that uses @code{NUM}). | |
1657 | ||
1658 | The formatting shown here is the recommended convention, but Bison does | |
72d2299c | 1659 | not require it. You can add or change white space as much as you wish. |
bfa74976 RS |
1660 | For example, this: |
1661 | ||
1662 | @example | |
de6be119 | 1663 | exp: NUM | exp exp '+' @{$$ = $1 + $2; @} | @dots{} ; |
bfa74976 RS |
1664 | @end example |
1665 | ||
1666 | @noindent | |
1667 | means the same thing as this: | |
1668 | ||
1669 | @example | |
de6be119 AD |
1670 | exp: |
1671 | NUM | |
1672 | | exp exp '+' @{ $$ = $1 + $2; @} | |
1673 | | @dots{} | |
99a9344e | 1674 | ; |
bfa74976 RS |
1675 | @end example |
1676 | ||
1677 | @noindent | |
1678 | The latter, however, is much more readable. | |
1679 | ||
342b8b6e | 1680 | @node Rpcalc Lexer |
bfa74976 RS |
1681 | @subsection The @code{rpcalc} Lexical Analyzer |
1682 | @cindex writing a lexical analyzer | |
1683 | @cindex lexical analyzer, writing | |
1684 | ||
704a47c4 AD |
1685 | The lexical analyzer's job is low-level parsing: converting characters |
1686 | or sequences of characters into tokens. The Bison parser gets its | |
1687 | tokens by calling the lexical analyzer. @xref{Lexical, ,The Lexical | |
1688 | Analyzer Function @code{yylex}}. | |
bfa74976 | 1689 | |
35430378 | 1690 | Only a simple lexical analyzer is needed for the RPN |
c827f760 | 1691 | calculator. This |
bfa74976 RS |
1692 | lexical analyzer skips blanks and tabs, then reads in numbers as |
1693 | @code{double} and returns them as @code{NUM} tokens. Any other character | |
1694 | that isn't part of a number is a separate token. Note that the token-code | |
1695 | for such a single-character token is the character itself. | |
1696 | ||
1697 | The return value of the lexical analyzer function is a numeric code which | |
1698 | represents a token type. The same text used in Bison rules to stand for | |
1699 | this token type is also a C expression for the numeric code for the type. | |
1700 | This works in two ways. If the token type is a character literal, then its | |
e966383b | 1701 | numeric code is that of the character; you can use the same |
bfa74976 RS |
1702 | character literal in the lexical analyzer to express the number. If the |
1703 | token type is an identifier, that identifier is defined by Bison as a C | |
1704 | macro whose definition is the appropriate number. In this example, | |
1705 | therefore, @code{NUM} becomes a macro for @code{yylex} to use. | |
1706 | ||
1964ad8c AD |
1707 | The semantic value of the token (if it has one) is stored into the |
1708 | global variable @code{yylval}, which is where the Bison parser will look | |
1709 | for it. (The C data type of @code{yylval} is @code{YYSTYPE}, which was | |
f56274a8 | 1710 | defined at the beginning of the grammar; @pxref{Rpcalc Declarations, |
1964ad8c | 1711 | ,Declarations for @code{rpcalc}}.) |
bfa74976 | 1712 | |
72d2299c PE |
1713 | A token type code of zero is returned if the end-of-input is encountered. |
1714 | (Bison recognizes any nonpositive value as indicating end-of-input.) | |
bfa74976 RS |
1715 | |
1716 | Here is the code for the lexical analyzer: | |
1717 | ||
1718 | @example | |
1719 | @group | |
72d2299c | 1720 | /* The lexical analyzer returns a double floating point |
e966383b | 1721 | number on the stack and the token NUM, or the numeric code |
72d2299c PE |
1722 | of the character read if not a number. It skips all blanks |
1723 | and tabs, and returns 0 for end-of-input. */ | |
bfa74976 RS |
1724 | |
1725 | #include <ctype.h> | |
1726 | @end group | |
1727 | ||
1728 | @group | |
13863333 AD |
1729 | int |
1730 | yylex (void) | |
bfa74976 RS |
1731 | @{ |
1732 | int c; | |
1733 | ||
72d2299c | 1734 | /* Skip white space. */ |
13863333 | 1735 | while ((c = getchar ()) == ' ' || c == '\t') |
98842516 | 1736 | continue; |
bfa74976 RS |
1737 | @end group |
1738 | @group | |
72d2299c | 1739 | /* Process numbers. */ |
13863333 | 1740 | if (c == '.' || isdigit (c)) |
bfa74976 RS |
1741 | @{ |
1742 | ungetc (c, stdin); | |
1743 | scanf ("%lf", &yylval); | |
1744 | return NUM; | |
1745 | @} | |
1746 | @end group | |
1747 | @group | |
72d2299c | 1748 | /* Return end-of-input. */ |
13863333 | 1749 | if (c == EOF) |
bfa74976 | 1750 | return 0; |
72d2299c | 1751 | /* Return a single char. */ |
13863333 | 1752 | return c; |
bfa74976 RS |
1753 | @} |
1754 | @end group | |
1755 | @end example | |
1756 | ||
342b8b6e | 1757 | @node Rpcalc Main |
bfa74976 RS |
1758 | @subsection The Controlling Function |
1759 | @cindex controlling function | |
1760 | @cindex main function in simple example | |
1761 | ||
1762 | In keeping with the spirit of this example, the controlling function is | |
1763 | kept to the bare minimum. The only requirement is that it call | |
1764 | @code{yyparse} to start the process of parsing. | |
1765 | ||
1766 | @example | |
1767 | @group | |
13863333 AD |
1768 | int |
1769 | main (void) | |
bfa74976 | 1770 | @{ |
13863333 | 1771 | return yyparse (); |
bfa74976 RS |
1772 | @} |
1773 | @end group | |
1774 | @end example | |
1775 | ||
342b8b6e | 1776 | @node Rpcalc Error |
bfa74976 RS |
1777 | @subsection The Error Reporting Routine |
1778 | @cindex error reporting routine | |
1779 | ||
1780 | When @code{yyparse} detects a syntax error, it calls the error reporting | |
13863333 | 1781 | function @code{yyerror} to print an error message (usually but not |
6e649e65 | 1782 | always @code{"syntax error"}). It is up to the programmer to supply |
13863333 AD |
1783 | @code{yyerror} (@pxref{Interface, ,Parser C-Language Interface}), so |
1784 | here is the definition we will use: | |
bfa74976 RS |
1785 | |
1786 | @example | |
1787 | @group | |
1788 | #include <stdio.h> | |
2c0f9706 | 1789 | @end group |
bfa74976 | 1790 | |
2c0f9706 | 1791 | @group |
38a92d50 | 1792 | /* Called by yyparse on error. */ |
13863333 | 1793 | void |
38a92d50 | 1794 | yyerror (char const *s) |
bfa74976 | 1795 | @{ |
4e03e201 | 1796 | fprintf (stderr, "%s\n", s); |
bfa74976 RS |
1797 | @} |
1798 | @end group | |
1799 | @end example | |
1800 | ||
1801 | After @code{yyerror} returns, the Bison parser may recover from the error | |
1802 | and continue parsing if the grammar contains a suitable error rule | |
1803 | (@pxref{Error Recovery}). Otherwise, @code{yyparse} returns nonzero. We | |
1804 | have not written any error rules in this example, so any invalid input will | |
1805 | cause the calculator program to exit. This is not clean behavior for a | |
9ecbd125 | 1806 | real calculator, but it is adequate for the first example. |
bfa74976 | 1807 | |
f56274a8 | 1808 | @node Rpcalc Generate |
bfa74976 RS |
1809 | @subsection Running Bison to Make the Parser |
1810 | @cindex running Bison (introduction) | |
1811 | ||
ceed8467 AD |
1812 | Before running Bison to produce a parser, we need to decide how to |
1813 | arrange all the source code in one or more source files. For such a | |
9913d6e4 JD |
1814 | simple example, the easiest thing is to put everything in one file, |
1815 | the grammar file. The definitions of @code{yylex}, @code{yyerror} and | |
1816 | @code{main} go at the end, in the epilogue of the grammar file | |
75f5aaea | 1817 | (@pxref{Grammar Layout, ,The Overall Layout of a Bison Grammar}). |
bfa74976 RS |
1818 | |
1819 | For a large project, you would probably have several source files, and use | |
1820 | @code{make} to arrange to recompile them. | |
1821 | ||
9913d6e4 JD |
1822 | With all the source in the grammar file, you use the following command |
1823 | to convert it into a parser implementation file: | |
bfa74976 RS |
1824 | |
1825 | @example | |
fa4d969f | 1826 | bison @var{file}.y |
bfa74976 RS |
1827 | @end example |
1828 | ||
1829 | @noindent | |
9913d6e4 JD |
1830 | In this example, the grammar file is called @file{rpcalc.y} (for |
1831 | ``Reverse Polish @sc{calc}ulator''). Bison produces a parser | |
1832 | implementation file named @file{@var{file}.tab.c}, removing the | |
1833 | @samp{.y} from the grammar file name. The parser implementation file | |
1834 | contains the source code for @code{yyparse}. The additional functions | |
1835 | in the grammar file (@code{yylex}, @code{yyerror} and @code{main}) are | |
1836 | copied verbatim to the parser implementation file. | |
bfa74976 | 1837 | |
342b8b6e | 1838 | @node Rpcalc Compile |
9913d6e4 | 1839 | @subsection Compiling the Parser Implementation File |
bfa74976 RS |
1840 | @cindex compiling the parser |
1841 | ||
9913d6e4 | 1842 | Here is how to compile and run the parser implementation file: |
bfa74976 RS |
1843 | |
1844 | @example | |
1845 | @group | |
1846 | # @r{List files in current directory.} | |
9edcd895 | 1847 | $ @kbd{ls} |
bfa74976 RS |
1848 | rpcalc.tab.c rpcalc.y |
1849 | @end group | |
1850 | ||
1851 | @group | |
1852 | # @r{Compile the Bison parser.} | |
1853 | # @r{@samp{-lm} tells compiler to search math library for @code{pow}.} | |
b56471a6 | 1854 | $ @kbd{cc -lm -o rpcalc rpcalc.tab.c} |
bfa74976 RS |
1855 | @end group |
1856 | ||
1857 | @group | |
1858 | # @r{List files again.} | |
9edcd895 | 1859 | $ @kbd{ls} |
bfa74976 RS |
1860 | rpcalc rpcalc.tab.c rpcalc.y |
1861 | @end group | |
1862 | @end example | |
1863 | ||
1864 | The file @file{rpcalc} now contains the executable code. Here is an | |
1865 | example session using @code{rpcalc}. | |
1866 | ||
1867 | @example | |
9edcd895 AD |
1868 | $ @kbd{rpcalc} |
1869 | @kbd{4 9 +} | |
bfa74976 | 1870 | 13 |
9edcd895 | 1871 | @kbd{3 7 + 3 4 5 *+-} |
bfa74976 | 1872 | -13 |
9edcd895 | 1873 | @kbd{3 7 + 3 4 5 * + - n} @r{Note the unary minus, @samp{n}} |
bfa74976 | 1874 | 13 |
9edcd895 | 1875 | @kbd{5 6 / 4 n +} |
bfa74976 | 1876 | -3.166666667 |
9edcd895 | 1877 | @kbd{3 4 ^} @r{Exponentiation} |
bfa74976 | 1878 | 81 |
9edcd895 AD |
1879 | @kbd{^D} @r{End-of-file indicator} |
1880 | $ | |
bfa74976 RS |
1881 | @end example |
1882 | ||
342b8b6e | 1883 | @node Infix Calc |
bfa74976 RS |
1884 | @section Infix Notation Calculator: @code{calc} |
1885 | @cindex infix notation calculator | |
1886 | @cindex @code{calc} | |
1887 | @cindex calculator, infix notation | |
1888 | ||
1889 | We now modify rpcalc to handle infix operators instead of postfix. Infix | |
1890 | notation involves the concept of operator precedence and the need for | |
1891 | parentheses nested to arbitrary depth. Here is the Bison code for | |
1892 | @file{calc.y}, an infix desk-top calculator. | |
1893 | ||
1894 | @example | |
38a92d50 | 1895 | /* Infix notation calculator. */ |
bfa74976 | 1896 | |
2c0f9706 | 1897 | @group |
bfa74976 | 1898 | %@{ |
38a92d50 PE |
1899 | #define YYSTYPE double |
1900 | #include <math.h> | |
1901 | #include <stdio.h> | |
1902 | int yylex (void); | |
1903 | void yyerror (char const *); | |
bfa74976 | 1904 | %@} |
2c0f9706 | 1905 | @end group |
bfa74976 | 1906 | |
2c0f9706 | 1907 | @group |
38a92d50 | 1908 | /* Bison declarations. */ |
bfa74976 RS |
1909 | %token NUM |
1910 | %left '-' '+' | |
1911 | %left '*' '/' | |
1912 | %left NEG /* negation--unary minus */ | |
38a92d50 | 1913 | %right '^' /* exponentiation */ |
2c0f9706 | 1914 | @end group |
bfa74976 | 1915 | |
38a92d50 | 1916 | %% /* The grammar follows. */ |
2c0f9706 | 1917 | @group |
de6be119 AD |
1918 | input: |
1919 | /* empty */ | |
1920 | | input line | |
bfa74976 | 1921 | ; |
2c0f9706 | 1922 | @end group |
bfa74976 | 1923 | |
2c0f9706 | 1924 | @group |
de6be119 AD |
1925 | line: |
1926 | '\n' | |
1927 | | exp '\n' @{ printf ("\t%.10g\n", $1); @} | |
bfa74976 | 1928 | ; |
2c0f9706 | 1929 | @end group |
bfa74976 | 1930 | |
2c0f9706 | 1931 | @group |
de6be119 AD |
1932 | exp: |
1933 | NUM @{ $$ = $1; @} | |
1934 | | exp '+' exp @{ $$ = $1 + $3; @} | |
1935 | | exp '-' exp @{ $$ = $1 - $3; @} | |
1936 | | exp '*' exp @{ $$ = $1 * $3; @} | |
1937 | | exp '/' exp @{ $$ = $1 / $3; @} | |
1938 | | '-' exp %prec NEG @{ $$ = -$2; @} | |
1939 | | exp '^' exp @{ $$ = pow ($1, $3); @} | |
1940 | | '(' exp ')' @{ $$ = $2; @} | |
bfa74976 | 1941 | ; |
2c0f9706 | 1942 | @end group |
bfa74976 RS |
1943 | %% |
1944 | @end example | |
1945 | ||
1946 | @noindent | |
ceed8467 AD |
1947 | The functions @code{yylex}, @code{yyerror} and @code{main} can be the |
1948 | same as before. | |
bfa74976 RS |
1949 | |
1950 | There are two important new features shown in this code. | |
1951 | ||
1952 | In the second section (Bison declarations), @code{%left} declares token | |
1953 | types and says they are left-associative operators. The declarations | |
1954 | @code{%left} and @code{%right} (right associativity) take the place of | |
1955 | @code{%token} which is used to declare a token type name without | |
1956 | associativity. (These tokens are single-character literals, which | |
1957 | ordinarily don't need to be declared. We declare them here to specify | |
1958 | the associativity.) | |
1959 | ||
1960 | Operator precedence is determined by the line ordering of the | |
1961 | declarations; the higher the line number of the declaration (lower on | |
1962 | the page or screen), the higher the precedence. Hence, exponentiation | |
1963 | has the highest precedence, unary minus (@code{NEG}) is next, followed | |
704a47c4 AD |
1964 | by @samp{*} and @samp{/}, and so on. @xref{Precedence, ,Operator |
1965 | Precedence}. | |
bfa74976 | 1966 | |
704a47c4 AD |
1967 | The other important new feature is the @code{%prec} in the grammar |
1968 | section for the unary minus operator. The @code{%prec} simply instructs | |
1969 | Bison that the rule @samp{| '-' exp} has the same precedence as | |
1970 | @code{NEG}---in this case the next-to-highest. @xref{Contextual | |
1971 | Precedence, ,Context-Dependent Precedence}. | |
bfa74976 RS |
1972 | |
1973 | Here is a sample run of @file{calc.y}: | |
1974 | ||
1975 | @need 500 | |
1976 | @example | |
9edcd895 AD |
1977 | $ @kbd{calc} |
1978 | @kbd{4 + 4.5 - (34/(8*3+-3))} | |
bfa74976 | 1979 | 6.880952381 |
9edcd895 | 1980 | @kbd{-56 + 2} |
bfa74976 | 1981 | -54 |
9edcd895 | 1982 | @kbd{3 ^ 2} |
bfa74976 RS |
1983 | 9 |
1984 | @end example | |
1985 | ||
342b8b6e | 1986 | @node Simple Error Recovery |
bfa74976 RS |
1987 | @section Simple Error Recovery |
1988 | @cindex error recovery, simple | |
1989 | ||
1990 | Up to this point, this manual has not addressed the issue of @dfn{error | |
1991 | recovery}---how to continue parsing after the parser detects a syntax | |
ceed8467 AD |
1992 | error. All we have handled is error reporting with @code{yyerror}. |
1993 | Recall that by default @code{yyparse} returns after calling | |
1994 | @code{yyerror}. This means that an erroneous input line causes the | |
1995 | calculator program to exit. Now we show how to rectify this deficiency. | |
bfa74976 RS |
1996 | |
1997 | The Bison language itself includes the reserved word @code{error}, which | |
1998 | may be included in the grammar rules. In the example below it has | |
1999 | been added to one of the alternatives for @code{line}: | |
2000 | ||
2001 | @example | |
2002 | @group | |
de6be119 AD |
2003 | line: |
2004 | '\n' | |
2005 | | exp '\n' @{ printf ("\t%.10g\n", $1); @} | |
2006 | | error '\n' @{ yyerrok; @} | |
bfa74976 RS |
2007 | ; |
2008 | @end group | |
2009 | @end example | |
2010 | ||
ceed8467 | 2011 | This addition to the grammar allows for simple error recovery in the |
6e649e65 | 2012 | event of a syntax error. If an expression that cannot be evaluated is |
ceed8467 AD |
2013 | read, the error will be recognized by the third rule for @code{line}, |
2014 | and parsing will continue. (The @code{yyerror} function is still called | |
2015 | upon to print its message as well.) The action executes the statement | |
2016 | @code{yyerrok}, a macro defined automatically by Bison; its meaning is | |
2017 | that error recovery is complete (@pxref{Error Recovery}). Note the | |
2018 | difference between @code{yyerrok} and @code{yyerror}; neither one is a | |
e0c471a9 | 2019 | misprint. |
bfa74976 RS |
2020 | |
2021 | This form of error recovery deals with syntax errors. There are other | |
2022 | kinds of errors; for example, division by zero, which raises an exception | |
2023 | signal that is normally fatal. A real calculator program must handle this | |
2024 | signal and use @code{longjmp} to return to @code{main} and resume parsing | |
2025 | input lines; it would also have to discard the rest of the current line of | |
2026 | input. We won't discuss this issue further because it is not specific to | |
2027 | Bison programs. | |
2028 | ||
342b8b6e AD |
2029 | @node Location Tracking Calc |
2030 | @section Location Tracking Calculator: @code{ltcalc} | |
2031 | @cindex location tracking calculator | |
2032 | @cindex @code{ltcalc} | |
2033 | @cindex calculator, location tracking | |
2034 | ||
9edcd895 AD |
2035 | This example extends the infix notation calculator with location |
2036 | tracking. This feature will be used to improve the error messages. For | |
2037 | the sake of clarity, this example is a simple integer calculator, since | |
2038 | most of the work needed to use locations will be done in the lexical | |
72d2299c | 2039 | analyzer. |
342b8b6e AD |
2040 | |
2041 | @menu | |
f56274a8 DJ |
2042 | * Ltcalc Declarations:: Bison and C declarations for ltcalc. |
2043 | * Ltcalc Rules:: Grammar rules for ltcalc, with explanations. | |
2044 | * Ltcalc Lexer:: The lexical analyzer. | |
342b8b6e AD |
2045 | @end menu |
2046 | ||
f56274a8 | 2047 | @node Ltcalc Declarations |
342b8b6e AD |
2048 | @subsection Declarations for @code{ltcalc} |
2049 | ||
9edcd895 AD |
2050 | The C and Bison declarations for the location tracking calculator are |
2051 | the same as the declarations for the infix notation calculator. | |
342b8b6e AD |
2052 | |
2053 | @example | |
2054 | /* Location tracking calculator. */ | |
2055 | ||
2056 | %@{ | |
38a92d50 PE |
2057 | #define YYSTYPE int |
2058 | #include <math.h> | |
2059 | int yylex (void); | |
2060 | void yyerror (char const *); | |
342b8b6e AD |
2061 | %@} |
2062 | ||
2063 | /* Bison declarations. */ | |
2064 | %token NUM | |
2065 | ||
2066 | %left '-' '+' | |
2067 | %left '*' '/' | |
2068 | %left NEG | |
2069 | %right '^' | |
2070 | ||
38a92d50 | 2071 | %% /* The grammar follows. */ |
342b8b6e AD |
2072 | @end example |
2073 | ||
9edcd895 AD |
2074 | @noindent |
2075 | Note there are no declarations specific to locations. Defining a data | |
2076 | type for storing locations is not needed: we will use the type provided | |
2077 | by default (@pxref{Location Type, ,Data Types of Locations}), which is a | |
2078 | four member structure with the following integer fields: | |
2079 | @code{first_line}, @code{first_column}, @code{last_line} and | |
cd48d21d AD |
2080 | @code{last_column}. By conventions, and in accordance with the GNU |
2081 | Coding Standards and common practice, the line and column count both | |
2082 | start at 1. | |
342b8b6e AD |
2083 | |
2084 | @node Ltcalc Rules | |
2085 | @subsection Grammar Rules for @code{ltcalc} | |
2086 | ||
9edcd895 AD |
2087 | Whether handling locations or not has no effect on the syntax of your |
2088 | language. Therefore, grammar rules for this example will be very close | |
2089 | to those of the previous example: we will only modify them to benefit | |
2090 | from the new information. | |
342b8b6e | 2091 | |
9edcd895 AD |
2092 | Here, we will use locations to report divisions by zero, and locate the |
2093 | wrong expressions or subexpressions. | |
342b8b6e AD |
2094 | |
2095 | @example | |
2096 | @group | |
de6be119 AD |
2097 | input: |
2098 | /* empty */ | |
2099 | | input line | |
342b8b6e AD |
2100 | ; |
2101 | @end group | |
2102 | ||
2103 | @group | |
de6be119 AD |
2104 | line: |
2105 | '\n' | |
2106 | | exp '\n' @{ printf ("%d\n", $1); @} | |
342b8b6e AD |
2107 | ; |
2108 | @end group | |
2109 | ||
2110 | @group | |
de6be119 AD |
2111 | exp: |
2112 | NUM @{ $$ = $1; @} | |
2113 | | exp '+' exp @{ $$ = $1 + $3; @} | |
2114 | | exp '-' exp @{ $$ = $1 - $3; @} | |
2115 | | exp '*' exp @{ $$ = $1 * $3; @} | |
342b8b6e | 2116 | @end group |
342b8b6e | 2117 | @group |
de6be119 AD |
2118 | | exp '/' exp |
2119 | @{ | |
2120 | if ($3) | |
2121 | $$ = $1 / $3; | |
2122 | else | |
2123 | @{ | |
2124 | $$ = 1; | |
2125 | fprintf (stderr, "%d.%d-%d.%d: division by zero", | |
2126 | @@3.first_line, @@3.first_column, | |
2127 | @@3.last_line, @@3.last_column); | |
2128 | @} | |
2129 | @} | |
342b8b6e AD |
2130 | @end group |
2131 | @group | |
de6be119 AD |
2132 | | '-' exp %prec NEG @{ $$ = -$2; @} |
2133 | | exp '^' exp @{ $$ = pow ($1, $3); @} | |
2134 | | '(' exp ')' @{ $$ = $2; @} | |
342b8b6e AD |
2135 | @end group |
2136 | @end example | |
2137 | ||
2138 | This code shows how to reach locations inside of semantic actions, by | |
2139 | using the pseudo-variables @code{@@@var{n}} for rule components, and the | |
2140 | pseudo-variable @code{@@$} for groupings. | |
2141 | ||
9edcd895 AD |
2142 | We don't need to assign a value to @code{@@$}: the output parser does it |
2143 | automatically. By default, before executing the C code of each action, | |
2144 | @code{@@$} is set to range from the beginning of @code{@@1} to the end | |
2145 | of @code{@@@var{n}}, for a rule with @var{n} components. This behavior | |
2146 | can be redefined (@pxref{Location Default Action, , Default Action for | |
2147 | Locations}), and for very specific rules, @code{@@$} can be computed by | |
2148 | hand. | |
342b8b6e AD |
2149 | |
2150 | @node Ltcalc Lexer | |
2151 | @subsection The @code{ltcalc} Lexical Analyzer. | |
2152 | ||
9edcd895 | 2153 | Until now, we relied on Bison's defaults to enable location |
72d2299c | 2154 | tracking. The next step is to rewrite the lexical analyzer, and make it |
9edcd895 AD |
2155 | able to feed the parser with the token locations, as it already does for |
2156 | semantic values. | |
342b8b6e | 2157 | |
9edcd895 AD |
2158 | To this end, we must take into account every single character of the |
2159 | input text, to avoid the computed locations of being fuzzy or wrong: | |
342b8b6e AD |
2160 | |
2161 | @example | |
2162 | @group | |
2163 | int | |
2164 | yylex (void) | |
2165 | @{ | |
2166 | int c; | |
18b519c0 | 2167 | @end group |
342b8b6e | 2168 | |
18b519c0 | 2169 | @group |
72d2299c | 2170 | /* Skip white space. */ |
342b8b6e AD |
2171 | while ((c = getchar ()) == ' ' || c == '\t') |
2172 | ++yylloc.last_column; | |
18b519c0 | 2173 | @end group |
342b8b6e | 2174 | |
18b519c0 | 2175 | @group |
72d2299c | 2176 | /* Step. */ |
342b8b6e AD |
2177 | yylloc.first_line = yylloc.last_line; |
2178 | yylloc.first_column = yylloc.last_column; | |
2179 | @end group | |
2180 | ||
2181 | @group | |
72d2299c | 2182 | /* Process numbers. */ |
342b8b6e AD |
2183 | if (isdigit (c)) |
2184 | @{ | |
2185 | yylval = c - '0'; | |
2186 | ++yylloc.last_column; | |
2187 | while (isdigit (c = getchar ())) | |
2188 | @{ | |
2189 | ++yylloc.last_column; | |
2190 | yylval = yylval * 10 + c - '0'; | |
2191 | @} | |
2192 | ungetc (c, stdin); | |
2193 | return NUM; | |
2194 | @} | |
2195 | @end group | |
2196 | ||
72d2299c | 2197 | /* Return end-of-input. */ |
342b8b6e AD |
2198 | if (c == EOF) |
2199 | return 0; | |
2200 | ||
98842516 | 2201 | @group |
72d2299c | 2202 | /* Return a single char, and update location. */ |
342b8b6e AD |
2203 | if (c == '\n') |
2204 | @{ | |
2205 | ++yylloc.last_line; | |
2206 | yylloc.last_column = 0; | |
2207 | @} | |
2208 | else | |
2209 | ++yylloc.last_column; | |
2210 | return c; | |
2211 | @} | |
98842516 | 2212 | @end group |
342b8b6e AD |
2213 | @end example |
2214 | ||
9edcd895 AD |
2215 | Basically, the lexical analyzer performs the same processing as before: |
2216 | it skips blanks and tabs, and reads numbers or single-character tokens. | |
2217 | In addition, it updates @code{yylloc}, the global variable (of type | |
2218 | @code{YYLTYPE}) containing the token's location. | |
342b8b6e | 2219 | |
9edcd895 | 2220 | Now, each time this function returns a token, the parser has its number |
72d2299c | 2221 | as well as its semantic value, and its location in the text. The last |
9edcd895 AD |
2222 | needed change is to initialize @code{yylloc}, for example in the |
2223 | controlling function: | |
342b8b6e AD |
2224 | |
2225 | @example | |
9edcd895 | 2226 | @group |
342b8b6e AD |
2227 | int |
2228 | main (void) | |
2229 | @{ | |
2230 | yylloc.first_line = yylloc.last_line = 1; | |
2231 | yylloc.first_column = yylloc.last_column = 0; | |
2232 | return yyparse (); | |
2233 | @} | |
9edcd895 | 2234 | @end group |
342b8b6e AD |
2235 | @end example |
2236 | ||
9edcd895 AD |
2237 | Remember that computing locations is not a matter of syntax. Every |
2238 | character must be associated to a location update, whether it is in | |
2239 | valid input, in comments, in literal strings, and so on. | |
342b8b6e AD |
2240 | |
2241 | @node Multi-function Calc | |
bfa74976 RS |
2242 | @section Multi-Function Calculator: @code{mfcalc} |
2243 | @cindex multi-function calculator | |
2244 | @cindex @code{mfcalc} | |
2245 | @cindex calculator, multi-function | |
2246 | ||
2247 | Now that the basics of Bison have been discussed, it is time to move on to | |
2248 | a more advanced problem. The above calculators provided only five | |
2249 | functions, @samp{+}, @samp{-}, @samp{*}, @samp{/} and @samp{^}. It would | |
2250 | be nice to have a calculator that provides other mathematical functions such | |
2251 | as @code{sin}, @code{cos}, etc. | |
2252 | ||
2253 | It is easy to add new operators to the infix calculator as long as they are | |
2254 | only single-character literals. The lexical analyzer @code{yylex} passes | |
9d9b8b70 | 2255 | back all nonnumeric characters as tokens, so new grammar rules suffice for |
bfa74976 RS |
2256 | adding a new operator. But we want something more flexible: built-in |
2257 | functions whose syntax has this form: | |
2258 | ||
2259 | @example | |
2260 | @var{function_name} (@var{argument}) | |
2261 | @end example | |
2262 | ||
2263 | @noindent | |
2264 | At the same time, we will add memory to the calculator, by allowing you | |
2265 | to create named variables, store values in them, and use them later. | |
2266 | Here is a sample session with the multi-function calculator: | |
2267 | ||
2268 | @example | |
9edcd895 AD |
2269 | $ @kbd{mfcalc} |
2270 | @kbd{pi = 3.141592653589} | |
bfa74976 | 2271 | 3.1415926536 |
9edcd895 | 2272 | @kbd{sin(pi)} |
bfa74976 | 2273 | 0.0000000000 |
9edcd895 | 2274 | @kbd{alpha = beta1 = 2.3} |
bfa74976 | 2275 | 2.3000000000 |
9edcd895 | 2276 | @kbd{alpha} |
bfa74976 | 2277 | 2.3000000000 |
9edcd895 | 2278 | @kbd{ln(alpha)} |
bfa74976 | 2279 | 0.8329091229 |
9edcd895 | 2280 | @kbd{exp(ln(beta1))} |
bfa74976 | 2281 | 2.3000000000 |
9edcd895 | 2282 | $ |
bfa74976 RS |
2283 | @end example |
2284 | ||
2285 | Note that multiple assignment and nested function calls are permitted. | |
2286 | ||
2287 | @menu | |
f56274a8 DJ |
2288 | * Mfcalc Declarations:: Bison declarations for multi-function calculator. |
2289 | * Mfcalc Rules:: Grammar rules for the calculator. | |
2290 | * Mfcalc Symbol Table:: Symbol table management subroutines. | |
bfa74976 RS |
2291 | @end menu |
2292 | ||
f56274a8 | 2293 | @node Mfcalc Declarations |
bfa74976 RS |
2294 | @subsection Declarations for @code{mfcalc} |
2295 | ||
2296 | Here are the C and Bison declarations for the multi-function calculator. | |
2297 | ||
56d60c19 | 2298 | @comment file: mfcalc.y: 1 |
ea118b72 | 2299 | @example |
18b519c0 | 2300 | @group |
bfa74976 | 2301 | %@{ |
38a92d50 PE |
2302 | #include <math.h> /* For math functions, cos(), sin(), etc. */ |
2303 | #include "calc.h" /* Contains definition of `symrec'. */ | |
2304 | int yylex (void); | |
2305 | void yyerror (char const *); | |
bfa74976 | 2306 | %@} |
18b519c0 | 2307 | @end group |
56d60c19 | 2308 | |
18b519c0 | 2309 | @group |
bfa74976 | 2310 | %union @{ |
38a92d50 PE |
2311 | double val; /* For returning numbers. */ |
2312 | symrec *tptr; /* For returning symbol-table pointers. */ | |
bfa74976 | 2313 | @} |
18b519c0 | 2314 | @end group |
38a92d50 | 2315 | %token <val> NUM /* Simple double precision number. */ |
56d60c19 | 2316 | %token <tptr> VAR FNCT /* Variable and function. */ |
bfa74976 RS |
2317 | %type <val> exp |
2318 | ||
18b519c0 | 2319 | @group |
bfa74976 RS |
2320 | %right '=' |
2321 | %left '-' '+' | |
2322 | %left '*' '/' | |
38a92d50 PE |
2323 | %left NEG /* negation--unary minus */ |
2324 | %right '^' /* exponentiation */ | |
18b519c0 | 2325 | @end group |
ea118b72 | 2326 | @end example |
bfa74976 RS |
2327 | |
2328 | The above grammar introduces only two new features of the Bison language. | |
2329 | These features allow semantic values to have various data types | |
2330 | (@pxref{Multiple Types, ,More Than One Value Type}). | |
2331 | ||
2332 | The @code{%union} declaration specifies the entire list of possible types; | |
2333 | this is instead of defining @code{YYSTYPE}. The allowable types are now | |
2334 | double-floats (for @code{exp} and @code{NUM}) and pointers to entries in | |
2335 | the symbol table. @xref{Union Decl, ,The Collection of Value Types}. | |
2336 | ||
2337 | Since values can now have various types, it is necessary to associate a | |
2338 | type with each grammar symbol whose semantic value is used. These symbols | |
2339 | are @code{NUM}, @code{VAR}, @code{FNCT}, and @code{exp}. Their | |
2340 | declarations are augmented with information about their data type (placed | |
2341 | between angle brackets). | |
2342 | ||
704a47c4 AD |
2343 | The Bison construct @code{%type} is used for declaring nonterminal |
2344 | symbols, just as @code{%token} is used for declaring token types. We | |
2345 | have not used @code{%type} before because nonterminal symbols are | |
2346 | normally declared implicitly by the rules that define them. But | |
2347 | @code{exp} must be declared explicitly so we can specify its value type. | |
2348 | @xref{Type Decl, ,Nonterminal Symbols}. | |
bfa74976 | 2349 | |
342b8b6e | 2350 | @node Mfcalc Rules |
bfa74976 RS |
2351 | @subsection Grammar Rules for @code{mfcalc} |
2352 | ||
2353 | Here are the grammar rules for the multi-function calculator. | |
2354 | Most of them are copied directly from @code{calc}; three rules, | |
2355 | those which mention @code{VAR} or @code{FNCT}, are new. | |
2356 | ||
56d60c19 | 2357 | @comment file: mfcalc.y: 3 |
ea118b72 | 2358 | @example |
56d60c19 | 2359 | %% /* The grammar follows. */ |
18b519c0 | 2360 | @group |
de6be119 AD |
2361 | input: |
2362 | /* empty */ | |
2363 | | input line | |
bfa74976 | 2364 | ; |
18b519c0 | 2365 | @end group |
bfa74976 | 2366 | |
18b519c0 | 2367 | @group |
bfa74976 | 2368 | line: |
de6be119 AD |
2369 | '\n' |
2370 | | exp '\n' @{ printf ("%.10g\n", $1); @} | |
2371 | | error '\n' @{ yyerrok; @} | |
bfa74976 | 2372 | ; |
18b519c0 | 2373 | @end group |
bfa74976 | 2374 | |
18b519c0 | 2375 | @group |
de6be119 AD |
2376 | exp: |
2377 | NUM @{ $$ = $1; @} | |
2378 | | VAR @{ $$ = $1->value.var; @} | |
2379 | | VAR '=' exp @{ $$ = $3; $1->value.var = $3; @} | |
2380 | | FNCT '(' exp ')' @{ $$ = (*($1->value.fnctptr))($3); @} | |
2381 | | exp '+' exp @{ $$ = $1 + $3; @} | |
2382 | | exp '-' exp @{ $$ = $1 - $3; @} | |
2383 | | exp '*' exp @{ $$ = $1 * $3; @} | |
2384 | | exp '/' exp @{ $$ = $1 / $3; @} | |
2385 | | '-' exp %prec NEG @{ $$ = -$2; @} | |
2386 | | exp '^' exp @{ $$ = pow ($1, $3); @} | |
2387 | | '(' exp ')' @{ $$ = $2; @} | |
bfa74976 | 2388 | ; |
18b519c0 | 2389 | @end group |
38a92d50 | 2390 | /* End of grammar. */ |
bfa74976 | 2391 | %% |
ea118b72 | 2392 | @end example |
bfa74976 | 2393 | |
f56274a8 | 2394 | @node Mfcalc Symbol Table |
bfa74976 RS |
2395 | @subsection The @code{mfcalc} Symbol Table |
2396 | @cindex symbol table example | |
2397 | ||
2398 | The multi-function calculator requires a symbol table to keep track of the | |
2399 | names and meanings of variables and functions. This doesn't affect the | |
2400 | grammar rules (except for the actions) or the Bison declarations, but it | |
2401 | requires some additional C functions for support. | |
2402 | ||
2403 | The symbol table itself consists of a linked list of records. Its | |
2404 | definition, which is kept in the header @file{calc.h}, is as follows. It | |
2405 | provides for either functions or variables to be placed in the table. | |
2406 | ||
ea118b72 AD |
2407 | @comment file: calc.h |
2408 | @example | |
bfa74976 | 2409 | @group |
38a92d50 | 2410 | /* Function type. */ |
32dfccf8 | 2411 | typedef double (*func_t) (double); |
72f889cc | 2412 | @end group |
32dfccf8 | 2413 | |
72f889cc | 2414 | @group |
38a92d50 | 2415 | /* Data type for links in the chain of symbols. */ |
bfa74976 RS |
2416 | struct symrec |
2417 | @{ | |
38a92d50 | 2418 | char *name; /* name of symbol */ |
bfa74976 | 2419 | int type; /* type of symbol: either VAR or FNCT */ |
32dfccf8 AD |
2420 | union |
2421 | @{ | |
38a92d50 PE |
2422 | double var; /* value of a VAR */ |
2423 | func_t fnctptr; /* value of a FNCT */ | |
bfa74976 | 2424 | @} value; |
38a92d50 | 2425 | struct symrec *next; /* link field */ |
bfa74976 RS |
2426 | @}; |
2427 | @end group | |
2428 | ||
2429 | @group | |
2430 | typedef struct symrec symrec; | |
2431 | ||
38a92d50 | 2432 | /* The symbol table: a chain of `struct symrec'. */ |
bfa74976 RS |
2433 | extern symrec *sym_table; |
2434 | ||
a730d142 | 2435 | symrec *putsym (char const *, int); |
38a92d50 | 2436 | symrec *getsym (char const *); |
bfa74976 | 2437 | @end group |
ea118b72 | 2438 | @end example |
bfa74976 RS |
2439 | |
2440 | The new version of @code{main} includes a call to @code{init_table}, a | |
2441 | function that initializes the symbol table. Here it is, and | |
2442 | @code{init_table} as well: | |
2443 | ||
56d60c19 | 2444 | @comment file: mfcalc.y: 3 |
ea118b72 | 2445 | @example |
bfa74976 RS |
2446 | #include <stdio.h> |
2447 | ||
18b519c0 | 2448 | @group |
38a92d50 | 2449 | /* Called by yyparse on error. */ |
13863333 | 2450 | void |
38a92d50 | 2451 | yyerror (char const *s) |
bfa74976 RS |
2452 | @{ |
2453 | printf ("%s\n", s); | |
2454 | @} | |
18b519c0 | 2455 | @end group |
bfa74976 | 2456 | |
18b519c0 | 2457 | @group |
bfa74976 RS |
2458 | struct init |
2459 | @{ | |
38a92d50 PE |
2460 | char const *fname; |
2461 | double (*fnct) (double); | |
bfa74976 RS |
2462 | @}; |
2463 | @end group | |
2464 | ||
2465 | @group | |
38a92d50 | 2466 | struct init const arith_fncts[] = |
13863333 | 2467 | @{ |
32dfccf8 AD |
2468 | "sin", sin, |
2469 | "cos", cos, | |
13863333 | 2470 | "atan", atan, |
32dfccf8 AD |
2471 | "ln", log, |
2472 | "exp", exp, | |
13863333 AD |
2473 | "sqrt", sqrt, |
2474 | 0, 0 | |
2475 | @}; | |
18b519c0 | 2476 | @end group |
bfa74976 | 2477 | |
18b519c0 | 2478 | @group |
bfa74976 | 2479 | /* The symbol table: a chain of `struct symrec'. */ |
38a92d50 | 2480 | symrec *sym_table; |
bfa74976 RS |
2481 | @end group |
2482 | ||
2483 | @group | |
72d2299c | 2484 | /* Put arithmetic functions in table. */ |
13863333 AD |
2485 | void |
2486 | init_table (void) | |
bfa74976 RS |
2487 | @{ |
2488 | int i; | |
bfa74976 RS |
2489 | for (i = 0; arith_fncts[i].fname != 0; i++) |
2490 | @{ | |
2c0f9706 | 2491 | symrec *ptr = putsym (arith_fncts[i].fname, FNCT); |
bfa74976 RS |
2492 | ptr->value.fnctptr = arith_fncts[i].fnct; |
2493 | @} | |
2494 | @} | |
2495 | @end group | |
38a92d50 PE |
2496 | |
2497 | @group | |
2498 | int | |
2499 | main (void) | |
2500 | @{ | |
2501 | init_table (); | |
2502 | return yyparse (); | |
2503 | @} | |
2504 | @end group | |
ea118b72 | 2505 | @end example |
bfa74976 RS |
2506 | |
2507 | By simply editing the initialization list and adding the necessary include | |
2508 | files, you can add additional functions to the calculator. | |
2509 | ||
2510 | Two important functions allow look-up and installation of symbols in the | |
2511 | symbol table. The function @code{putsym} is passed a name and the type | |
2512 | (@code{VAR} or @code{FNCT}) of the object to be installed. The object is | |
2513 | linked to the front of the list, and a pointer to the object is returned. | |
2514 | The function @code{getsym} is passed the name of the symbol to look up. If | |
2515 | found, a pointer to that symbol is returned; otherwise zero is returned. | |
2516 | ||
56d60c19 | 2517 | @comment file: mfcalc.y: 3 |
ea118b72 | 2518 | @example |
98842516 AD |
2519 | #include <stdlib.h> /* malloc. */ |
2520 | #include <string.h> /* strlen. */ | |
2521 | ||
2522 | @group | |
bfa74976 | 2523 | symrec * |
38a92d50 | 2524 | putsym (char const *sym_name, int sym_type) |
bfa74976 | 2525 | @{ |
2c0f9706 | 2526 | symrec *ptr = (symrec *) malloc (sizeof (symrec)); |
bfa74976 RS |
2527 | ptr->name = (char *) malloc (strlen (sym_name) + 1); |
2528 | strcpy (ptr->name,sym_name); | |
2529 | ptr->type = sym_type; | |
72d2299c | 2530 | ptr->value.var = 0; /* Set value to 0 even if fctn. */ |
bfa74976 RS |
2531 | ptr->next = (struct symrec *)sym_table; |
2532 | sym_table = ptr; | |
2533 | return ptr; | |
2534 | @} | |
98842516 | 2535 | @end group |
bfa74976 | 2536 | |
98842516 | 2537 | @group |
bfa74976 | 2538 | symrec * |
38a92d50 | 2539 | getsym (char const *sym_name) |
bfa74976 RS |
2540 | @{ |
2541 | symrec *ptr; | |
2542 | for (ptr = sym_table; ptr != (symrec *) 0; | |
2543 | ptr = (symrec *)ptr->next) | |
2544 | if (strcmp (ptr->name,sym_name) == 0) | |
2545 | return ptr; | |
2546 | return 0; | |
2547 | @} | |
98842516 | 2548 | @end group |
ea118b72 | 2549 | @end example |
bfa74976 RS |
2550 | |
2551 | The function @code{yylex} must now recognize variables, numeric values, and | |
2552 | the single-character arithmetic operators. Strings of alphanumeric | |
9d9b8b70 | 2553 | characters with a leading letter are recognized as either variables or |
bfa74976 RS |
2554 | functions depending on what the symbol table says about them. |
2555 | ||
2556 | The string is passed to @code{getsym} for look up in the symbol table. If | |
2557 | the name appears in the table, a pointer to its location and its type | |
2558 | (@code{VAR} or @code{FNCT}) is returned to @code{yyparse}. If it is not | |
2559 | already in the table, then it is installed as a @code{VAR} using | |
2560 | @code{putsym}. Again, a pointer and its type (which must be @code{VAR}) is | |
e0c471a9 | 2561 | returned to @code{yyparse}. |
bfa74976 RS |
2562 | |
2563 | No change is needed in the handling of numeric values and arithmetic | |
2564 | operators in @code{yylex}. | |
2565 | ||
56d60c19 | 2566 | @comment file: mfcalc.y: 3 |
ea118b72 | 2567 | @example |
bfa74976 RS |
2568 | @group |
2569 | #include <ctype.h> | |
18b519c0 | 2570 | @end group |
13863333 | 2571 | |
18b519c0 | 2572 | @group |
13863333 AD |
2573 | int |
2574 | yylex (void) | |
bfa74976 RS |
2575 | @{ |
2576 | int c; | |
2577 | ||
72d2299c | 2578 | /* Ignore white space, get first nonwhite character. */ |
98842516 AD |
2579 | while ((c = getchar ()) == ' ' || c == '\t') |
2580 | continue; | |
bfa74976 RS |
2581 | |
2582 | if (c == EOF) | |
2583 | return 0; | |
2584 | @end group | |
2585 | ||
2586 | @group | |
2587 | /* Char starts a number => parse the number. */ | |
2588 | if (c == '.' || isdigit (c)) | |
2589 | @{ | |
2590 | ungetc (c, stdin); | |
2591 | scanf ("%lf", &yylval.val); | |
2592 | return NUM; | |
2593 | @} | |
2594 | @end group | |
2595 | ||
2596 | @group | |
2597 | /* Char starts an identifier => read the name. */ | |
2598 | if (isalpha (c)) | |
2599 | @{ | |
2c0f9706 AD |
2600 | /* Initially make the buffer long enough |
2601 | for a 40-character symbol name. */ | |
2602 | static size_t length = 40; | |
bfa74976 | 2603 | static char *symbuf = 0; |
2c0f9706 | 2604 | symrec *s; |
bfa74976 RS |
2605 | int i; |
2606 | @end group | |
2607 | ||
2c0f9706 AD |
2608 | if (!symbuf) |
2609 | symbuf = (char *) malloc (length + 1); | |
bfa74976 RS |
2610 | |
2611 | i = 0; | |
2612 | do | |
bfa74976 RS |
2613 | @group |
2614 | @{ | |
2615 | /* If buffer is full, make it bigger. */ | |
2616 | if (i == length) | |
2617 | @{ | |
2618 | length *= 2; | |
18b519c0 | 2619 | symbuf = (char *) realloc (symbuf, length + 1); |
bfa74976 RS |
2620 | @} |
2621 | /* Add this character to the buffer. */ | |
2622 | symbuf[i++] = c; | |
2623 | /* Get another character. */ | |
2624 | c = getchar (); | |
2625 | @} | |
2626 | @end group | |
2627 | @group | |
72d2299c | 2628 | while (isalnum (c)); |
bfa74976 RS |
2629 | |
2630 | ungetc (c, stdin); | |
2631 | symbuf[i] = '\0'; | |
2632 | @end group | |
2633 | ||
2634 | @group | |
2635 | s = getsym (symbuf); | |
2636 | if (s == 0) | |
2637 | s = putsym (symbuf, VAR); | |
2638 | yylval.tptr = s; | |
2639 | return s->type; | |
2640 | @} | |
2641 | ||
2642 | /* Any other character is a token by itself. */ | |
2643 | return c; | |
2644 | @} | |
2645 | @end group | |
ea118b72 | 2646 | @end example |
bfa74976 | 2647 | |
56d60c19 AD |
2648 | The error reporting function is unchanged, and the new version of |
2649 | @code{main} includes a call to @code{init_table} and sets the @code{yydebug} | |
2650 | on user demand (@xref{Tracing, , Tracing Your Parser}, for details): | |
2651 | ||
2652 | @comment file: mfcalc.y: 3 | |
2653 | @example | |
2654 | @group | |
2655 | /* Called by yyparse on error. */ | |
2656 | void | |
2657 | yyerror (char const *s) | |
2658 | @{ | |
2659 | fprintf (stderr, "%s\n", s); | |
2660 | @} | |
2661 | @end group | |
2662 | ||
2663 | @group | |
2664 | int | |
2665 | main (int argc, char const* argv[]) | |
2666 | @{ | |
2667 | int i; | |
2668 | /* Enable parse traces on option -p. */ | |
2669 | for (i = 1; i < argc; ++i) | |
2670 | if (!strcmp(argv[i], "-p")) | |
2671 | yydebug = 1; | |
2672 | init_table (); | |
2673 | return yyparse (); | |
2674 | @} | |
2675 | @end group | |
2676 | @end example | |
2677 | ||
72d2299c | 2678 | This program is both powerful and flexible. You may easily add new |
704a47c4 AD |
2679 | functions, and it is a simple job to modify this code to install |
2680 | predefined variables such as @code{pi} or @code{e} as well. | |
bfa74976 | 2681 | |
342b8b6e | 2682 | @node Exercises |
bfa74976 RS |
2683 | @section Exercises |
2684 | @cindex exercises | |
2685 | ||
2686 | @enumerate | |
2687 | @item | |
2688 | Add some new functions from @file{math.h} to the initialization list. | |
2689 | ||
2690 | @item | |
2691 | Add another array that contains constants and their values. Then | |
2692 | modify @code{init_table} to add these constants to the symbol table. | |
2693 | It will be easiest to give the constants type @code{VAR}. | |
2694 | ||
2695 | @item | |
2696 | Make the program report an error if the user refers to an | |
2697 | uninitialized variable in any way except to store a value in it. | |
2698 | @end enumerate | |
2699 | ||
342b8b6e | 2700 | @node Grammar File |
bfa74976 RS |
2701 | @chapter Bison Grammar Files |
2702 | ||
2703 | Bison takes as input a context-free grammar specification and produces a | |
2704 | C-language function that recognizes correct instances of the grammar. | |
2705 | ||
9913d6e4 | 2706 | The Bison grammar file conventionally has a name ending in @samp{.y}. |
234a3be3 | 2707 | @xref{Invocation, ,Invoking Bison}. |
bfa74976 RS |
2708 | |
2709 | @menu | |
7404cdf3 JD |
2710 | * Grammar Outline:: Overall layout of the grammar file. |
2711 | * Symbols:: Terminal and nonterminal symbols. | |
2712 | * Rules:: How to write grammar rules. | |
2713 | * Recursion:: Writing recursive rules. | |
2714 | * Semantics:: Semantic values and actions. | |
2715 | * Tracking Locations:: Locations and actions. | |
2716 | * Named References:: Using named references in actions. | |
2717 | * Declarations:: All kinds of Bison declarations are described here. | |
2718 | * Multiple Parsers:: Putting more than one Bison parser in one program. | |
bfa74976 RS |
2719 | @end menu |
2720 | ||
342b8b6e | 2721 | @node Grammar Outline |
bfa74976 RS |
2722 | @section Outline of a Bison Grammar |
2723 | ||
2724 | A Bison grammar file has four main sections, shown here with the | |
2725 | appropriate delimiters: | |
2726 | ||
2727 | @example | |
2728 | %@{ | |
38a92d50 | 2729 | @var{Prologue} |
bfa74976 RS |
2730 | %@} |
2731 | ||
2732 | @var{Bison declarations} | |
2733 | ||
2734 | %% | |
2735 | @var{Grammar rules} | |
2736 | %% | |
2737 | ||
75f5aaea | 2738 | @var{Epilogue} |
bfa74976 RS |
2739 | @end example |
2740 | ||
2741 | Comments enclosed in @samp{/* @dots{} */} may appear in any of the sections. | |
35430378 | 2742 | As a GNU extension, @samp{//} introduces a comment that |
2bfc2e2a | 2743 | continues until end of line. |
bfa74976 RS |
2744 | |
2745 | @menu | |
f56274a8 | 2746 | * Prologue:: Syntax and usage of the prologue. |
2cbe6b7f | 2747 | * Prologue Alternatives:: Syntax and usage of alternatives to the prologue. |
f56274a8 DJ |
2748 | * Bison Declarations:: Syntax and usage of the Bison declarations section. |
2749 | * Grammar Rules:: Syntax and usage of the grammar rules section. | |
2750 | * Epilogue:: Syntax and usage of the epilogue. | |
bfa74976 RS |
2751 | @end menu |
2752 | ||
38a92d50 | 2753 | @node Prologue |
75f5aaea MA |
2754 | @subsection The prologue |
2755 | @cindex declarations section | |
2756 | @cindex Prologue | |
2757 | @cindex declarations | |
bfa74976 | 2758 | |
f8e1c9e5 AD |
2759 | The @var{Prologue} section contains macro definitions and declarations |
2760 | of functions and variables that are used in the actions in the grammar | |
9913d6e4 JD |
2761 | rules. These are copied to the beginning of the parser implementation |
2762 | file so that they precede the definition of @code{yyparse}. You can | |
2763 | use @samp{#include} to get the declarations from a header file. If | |
2764 | you don't need any C declarations, you may omit the @samp{%@{} and | |
f8e1c9e5 | 2765 | @samp{%@}} delimiters that bracket this section. |
bfa74976 | 2766 | |
9c437126 | 2767 | The @var{Prologue} section is terminated by the first occurrence |
287c78f6 PE |
2768 | of @samp{%@}} that is outside a comment, a string literal, or a |
2769 | character constant. | |
2770 | ||
c732d2c6 AD |
2771 | You may have more than one @var{Prologue} section, intermixed with the |
2772 | @var{Bison declarations}. This allows you to have C and Bison | |
2773 | declarations that refer to each other. For example, the @code{%union} | |
2774 | declaration may use types defined in a header file, and you may wish to | |
2775 | prototype functions that take arguments of type @code{YYSTYPE}. This | |
2776 | can be done with two @var{Prologue} blocks, one before and one after the | |
2777 | @code{%union} declaration. | |
2778 | ||
ea118b72 | 2779 | @example |
c732d2c6 | 2780 | %@{ |
aef3da86 | 2781 | #define _GNU_SOURCE |
38a92d50 PE |
2782 | #include <stdio.h> |
2783 | #include "ptypes.h" | |
c732d2c6 AD |
2784 | %@} |
2785 | ||
2786 | %union @{ | |
779e7ceb | 2787 | long int n; |
c732d2c6 AD |
2788 | tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */ |
2789 | @} | |
2790 | ||
2791 | %@{ | |
38a92d50 PE |
2792 | static void print_token_value (FILE *, int, YYSTYPE); |
2793 | #define YYPRINT(F, N, L) print_token_value (F, N, L) | |
c732d2c6 AD |
2794 | %@} |
2795 | ||
2796 | @dots{} | |
ea118b72 | 2797 | @end example |
c732d2c6 | 2798 | |
aef3da86 PE |
2799 | When in doubt, it is usually safer to put prologue code before all |
2800 | Bison declarations, rather than after. For example, any definitions | |
2801 | of feature test macros like @code{_GNU_SOURCE} or | |
2802 | @code{_POSIX_C_SOURCE} should appear before all Bison declarations, as | |
2803 | feature test macros can affect the behavior of Bison-generated | |
2804 | @code{#include} directives. | |
2805 | ||
2cbe6b7f JD |
2806 | @node Prologue Alternatives |
2807 | @subsection Prologue Alternatives | |
2808 | @cindex Prologue Alternatives | |
2809 | ||
136a0f76 | 2810 | @findex %code |
16dc6a9e JD |
2811 | @findex %code requires |
2812 | @findex %code provides | |
2813 | @findex %code top | |
85894313 | 2814 | |
2cbe6b7f | 2815 | The functionality of @var{Prologue} sections can often be subtle and |
9913d6e4 JD |
2816 | inflexible. As an alternative, Bison provides a @code{%code} |
2817 | directive with an explicit qualifier field, which identifies the | |
2818 | purpose of the code and thus the location(s) where Bison should | |
2819 | generate it. For C/C++, the qualifier can be omitted for the default | |
2820 | location, or it can be one of @code{requires}, @code{provides}, | |
8e6f2266 | 2821 | @code{top}. @xref{%code Summary}. |
2cbe6b7f JD |
2822 | |
2823 | Look again at the example of the previous section: | |
2824 | ||
ea118b72 | 2825 | @example |
2cbe6b7f JD |
2826 | %@{ |
2827 | #define _GNU_SOURCE | |
2828 | #include <stdio.h> | |
2829 | #include "ptypes.h" | |
2830 | %@} | |
2831 | ||
2832 | %union @{ | |
2833 | long int n; | |
2834 | tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */ | |
2835 | @} | |
2836 | ||
2837 | %@{ | |
2838 | static void print_token_value (FILE *, int, YYSTYPE); | |
2839 | #define YYPRINT(F, N, L) print_token_value (F, N, L) | |
2840 | %@} | |
2841 | ||
2842 | @dots{} | |
ea118b72 | 2843 | @end example |
2cbe6b7f JD |
2844 | |
2845 | @noindent | |
9913d6e4 JD |
2846 | Notice that there are two @var{Prologue} sections here, but there's a |
2847 | subtle distinction between their functionality. For example, if you | |
2848 | decide to override Bison's default definition for @code{YYLTYPE}, in | |
2849 | which @var{Prologue} section should you write your new definition? | |
2850 | You should write it in the first since Bison will insert that code | |
2851 | into the parser implementation file @emph{before} the default | |
2852 | @code{YYLTYPE} definition. In which @var{Prologue} section should you | |
2853 | prototype an internal function, @code{trace_token}, that accepts | |
2854 | @code{YYLTYPE} and @code{yytokentype} as arguments? You should | |
2855 | prototype it in the second since Bison will insert that code | |
2cbe6b7f JD |
2856 | @emph{after} the @code{YYLTYPE} and @code{yytokentype} definitions. |
2857 | ||
2858 | This distinction in functionality between the two @var{Prologue} sections is | |
2859 | established by the appearance of the @code{%union} between them. | |
a501eca9 | 2860 | This behavior raises a few questions. |
2cbe6b7f JD |
2861 | First, why should the position of a @code{%union} affect definitions related to |
2862 | @code{YYLTYPE} and @code{yytokentype}? | |
2863 | Second, what if there is no @code{%union}? | |
2864 | In that case, the second kind of @var{Prologue} section is not available. | |
2865 | This behavior is not intuitive. | |
2866 | ||
8e0a5e9e | 2867 | To avoid this subtle @code{%union} dependency, rewrite the example using a |
16dc6a9e | 2868 | @code{%code top} and an unqualified @code{%code}. |
2cbe6b7f JD |
2869 | Let's go ahead and add the new @code{YYLTYPE} definition and the |
2870 | @code{trace_token} prototype at the same time: | |
2871 | ||
ea118b72 | 2872 | @example |
16dc6a9e | 2873 | %code top @{ |
2cbe6b7f JD |
2874 | #define _GNU_SOURCE |
2875 | #include <stdio.h> | |
8e0a5e9e JD |
2876 | |
2877 | /* WARNING: The following code really belongs | |
16dc6a9e | 2878 | * in a `%code requires'; see below. */ |
8e0a5e9e | 2879 | |
2cbe6b7f JD |
2880 | #include "ptypes.h" |
2881 | #define YYLTYPE YYLTYPE | |
2882 | typedef struct YYLTYPE | |
2883 | @{ | |
2884 | int first_line; | |
2885 | int first_column; | |
2886 | int last_line; | |
2887 | int last_column; | |
2888 | char *filename; | |
2889 | @} YYLTYPE; | |
2890 | @} | |
2891 | ||
2892 | %union @{ | |
2893 | long int n; | |
2894 | tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */ | |
2895 | @} | |
2896 | ||
2897 | %code @{ | |
2898 | static void print_token_value (FILE *, int, YYSTYPE); | |
2899 | #define YYPRINT(F, N, L) print_token_value (F, N, L) | |
2900 | static void trace_token (enum yytokentype token, YYLTYPE loc); | |
2901 | @} | |
2902 | ||
2903 | @dots{} | |
ea118b72 | 2904 | @end example |
2cbe6b7f JD |
2905 | |
2906 | @noindent | |
16dc6a9e JD |
2907 | In this way, @code{%code top} and the unqualified @code{%code} achieve the same |
2908 | functionality as the two kinds of @var{Prologue} sections, but it's always | |
8e0a5e9e | 2909 | explicit which kind you intend. |
2cbe6b7f JD |
2910 | Moreover, both kinds are always available even in the absence of @code{%union}. |
2911 | ||
9913d6e4 JD |
2912 | The @code{%code top} block above logically contains two parts. The |
2913 | first two lines before the warning need to appear near the top of the | |
2914 | parser implementation file. The first line after the warning is | |
2915 | required by @code{YYSTYPE} and thus also needs to appear in the parser | |
2916 | implementation file. However, if you've instructed Bison to generate | |
2917 | a parser header file (@pxref{Decl Summary, ,%defines}), you probably | |
2918 | want that line to appear before the @code{YYSTYPE} definition in that | |
2919 | header file as well. The @code{YYLTYPE} definition should also appear | |
2920 | in the parser header file to override the default @code{YYLTYPE} | |
2921 | definition there. | |
2cbe6b7f | 2922 | |
16dc6a9e | 2923 | In other words, in the @code{%code top} block above, all but the first two |
8e0a5e9e JD |
2924 | lines are dependency code required by the @code{YYSTYPE} and @code{YYLTYPE} |
2925 | definitions. | |
16dc6a9e | 2926 | Thus, they belong in one or more @code{%code requires}: |
9bc0dd67 | 2927 | |
ea118b72 | 2928 | @example |
98842516 | 2929 | @group |
16dc6a9e | 2930 | %code top @{ |
2cbe6b7f JD |
2931 | #define _GNU_SOURCE |
2932 | #include <stdio.h> | |
2933 | @} | |
98842516 | 2934 | @end group |
2cbe6b7f | 2935 | |
98842516 | 2936 | @group |
16dc6a9e | 2937 | %code requires @{ |
9bc0dd67 JD |
2938 | #include "ptypes.h" |
2939 | @} | |
98842516 AD |
2940 | @end group |
2941 | @group | |
9bc0dd67 JD |
2942 | %union @{ |
2943 | long int n; | |
2944 | tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */ | |
2945 | @} | |
98842516 | 2946 | @end group |
9bc0dd67 | 2947 | |
98842516 | 2948 | @group |
16dc6a9e | 2949 | %code requires @{ |
2cbe6b7f JD |
2950 | #define YYLTYPE YYLTYPE |
2951 | typedef struct YYLTYPE | |
2952 | @{ | |
2953 | int first_line; | |
2954 | int first_column; | |
2955 | int last_line; | |
2956 | int last_column; | |
2957 | char *filename; | |
2958 | @} YYLTYPE; | |
2959 | @} | |
98842516 | 2960 | @end group |
2cbe6b7f | 2961 | |
98842516 | 2962 | @group |
136a0f76 | 2963 | %code @{ |
2cbe6b7f JD |
2964 | static void print_token_value (FILE *, int, YYSTYPE); |
2965 | #define YYPRINT(F, N, L) print_token_value (F, N, L) | |
2966 | static void trace_token (enum yytokentype token, YYLTYPE loc); | |
2967 | @} | |
98842516 | 2968 | @end group |
2cbe6b7f JD |
2969 | |
2970 | @dots{} | |
ea118b72 | 2971 | @end example |
2cbe6b7f JD |
2972 | |
2973 | @noindent | |
9913d6e4 JD |
2974 | Now Bison will insert @code{#include "ptypes.h"} and the new |
2975 | @code{YYLTYPE} definition before the Bison-generated @code{YYSTYPE} | |
2976 | and @code{YYLTYPE} definitions in both the parser implementation file | |
2977 | and the parser header file. (By the same reasoning, @code{%code | |
2978 | requires} would also be the appropriate place to write your own | |
2979 | definition for @code{YYSTYPE}.) | |
2980 | ||
2981 | When you are writing dependency code for @code{YYSTYPE} and | |
2982 | @code{YYLTYPE}, you should prefer @code{%code requires} over | |
2983 | @code{%code top} regardless of whether you instruct Bison to generate | |
2984 | a parser header file. When you are writing code that you need Bison | |
2985 | to insert only into the parser implementation file and that has no | |
2986 | special need to appear at the top of that file, you should prefer the | |
2987 | unqualified @code{%code} over @code{%code top}. These practices will | |
2988 | make the purpose of each block of your code explicit to Bison and to | |
2989 | other developers reading your grammar file. Following these | |
2990 | practices, we expect the unqualified @code{%code} and @code{%code | |
2991 | requires} to be the most important of the four @var{Prologue} | |
16dc6a9e | 2992 | alternatives. |
a501eca9 | 2993 | |
9913d6e4 JD |
2994 | At some point while developing your parser, you might decide to |
2995 | provide @code{trace_token} to modules that are external to your | |
2996 | parser. Thus, you might wish for Bison to insert the prototype into | |
2997 | both the parser header file and the parser implementation file. Since | |
2998 | this function is not a dependency required by @code{YYSTYPE} or | |
8e0a5e9e | 2999 | @code{YYLTYPE}, it doesn't make sense to move its prototype to a |
9913d6e4 JD |
3000 | @code{%code requires}. More importantly, since it depends upon |
3001 | @code{YYLTYPE} and @code{yytokentype}, @code{%code requires} is not | |
3002 | sufficient. Instead, move its prototype from the unqualified | |
3003 | @code{%code} to a @code{%code provides}: | |
2cbe6b7f | 3004 | |
ea118b72 | 3005 | @example |
98842516 | 3006 | @group |
16dc6a9e | 3007 | %code top @{ |
2cbe6b7f | 3008 | #define _GNU_SOURCE |
136a0f76 | 3009 | #include <stdio.h> |
2cbe6b7f | 3010 | @} |
98842516 | 3011 | @end group |
136a0f76 | 3012 | |
98842516 | 3013 | @group |
16dc6a9e | 3014 | %code requires @{ |
2cbe6b7f JD |
3015 | #include "ptypes.h" |
3016 | @} | |
98842516 AD |
3017 | @end group |
3018 | @group | |
2cbe6b7f JD |
3019 | %union @{ |
3020 | long int n; | |
3021 | tree t; /* @r{@code{tree} is defined in @file{ptypes.h}.} */ | |
3022 | @} | |
98842516 | 3023 | @end group |
2cbe6b7f | 3024 | |
98842516 | 3025 | @group |
16dc6a9e | 3026 | %code requires @{ |
2cbe6b7f JD |
3027 | #define YYLTYPE YYLTYPE |
3028 | typedef struct YYLTYPE | |
3029 | @{ | |
3030 | int first_line; | |
3031 | int first_column; | |
3032 | int last_line; | |
3033 | int last_column; | |
3034 | char *filename; | |
3035 | @} YYLTYPE; | |
3036 | @} | |
98842516 | 3037 | @end group |
2cbe6b7f | 3038 | |
98842516 | 3039 | @group |
16dc6a9e | 3040 | %code provides @{ |
2cbe6b7f JD |
3041 | void trace_token (enum yytokentype token, YYLTYPE loc); |
3042 | @} | |
98842516 | 3043 | @end group |
2cbe6b7f | 3044 | |
98842516 | 3045 | @group |
2cbe6b7f | 3046 | %code @{ |
9bc0dd67 JD |
3047 | static void print_token_value (FILE *, int, YYSTYPE); |
3048 | #define YYPRINT(F, N, L) print_token_value (F, N, L) | |
34f98f46 | 3049 | @} |
98842516 | 3050 | @end group |
9bc0dd67 JD |
3051 | |
3052 | @dots{} | |
ea118b72 | 3053 | @end example |
9bc0dd67 | 3054 | |
2cbe6b7f | 3055 | @noindent |
9913d6e4 JD |
3056 | Bison will insert the @code{trace_token} prototype into both the |
3057 | parser header file and the parser implementation file after the | |
3058 | definitions for @code{yytokentype}, @code{YYLTYPE}, and | |
3059 | @code{YYSTYPE}. | |
3060 | ||
3061 | The above examples are careful to write directives in an order that | |
3062 | reflects the layout of the generated parser implementation and header | |
3063 | files: @code{%code top}, @code{%code requires}, @code{%code provides}, | |
3064 | and then @code{%code}. While your grammar files may generally be | |
3065 | easier to read if you also follow this order, Bison does not require | |
3066 | it. Instead, Bison lets you choose an organization that makes sense | |
3067 | to you. | |
2cbe6b7f | 3068 | |
a501eca9 | 3069 | You may declare any of these directives multiple times in the grammar file. |
2cbe6b7f JD |
3070 | In that case, Bison concatenates the contained code in declaration order. |
3071 | This is the only way in which the position of one of these directives within | |
3072 | the grammar file affects its functionality. | |
3073 | ||
3074 | The result of the previous two properties is greater flexibility in how you may | |
3075 | organize your grammar file. | |
3076 | For example, you may organize semantic-type-related directives by semantic | |
3077 | type: | |
3078 | ||
ea118b72 | 3079 | @example |
98842516 | 3080 | @group |
16dc6a9e | 3081 | %code requires @{ #include "type1.h" @} |
2cbe6b7f JD |
3082 | %union @{ type1 field1; @} |
3083 | %destructor @{ type1_free ($$); @} <field1> | |
68fff38a | 3084 | %printer @{ type1_print (yyoutput, $$); @} <field1> |
98842516 | 3085 | @end group |
2cbe6b7f | 3086 | |
98842516 | 3087 | @group |
16dc6a9e | 3088 | %code requires @{ #include "type2.h" @} |
2cbe6b7f JD |
3089 | %union @{ type2 field2; @} |
3090 | %destructor @{ type2_free ($$); @} <field2> | |
68fff38a | 3091 | %printer @{ type2_print (yyoutput, $$); @} <field2> |
98842516 | 3092 | @end group |
ea118b72 | 3093 | @end example |
2cbe6b7f JD |
3094 | |
3095 | @noindent | |
3096 | You could even place each of the above directive groups in the rules section of | |
3097 | the grammar file next to the set of rules that uses the associated semantic | |
3098 | type. | |
61fee93e JD |
3099 | (In the rules section, you must terminate each of those directives with a |
3100 | semicolon.) | |
2cbe6b7f JD |
3101 | And you don't have to worry that some directive (like a @code{%union}) in the |
3102 | definitions section is going to adversely affect their functionality in some | |
3103 | counter-intuitive manner just because it comes first. | |
3104 | Such an organization is not possible using @var{Prologue} sections. | |
3105 | ||
a501eca9 | 3106 | This section has been concerned with explaining the advantages of the four |
8e0a5e9e | 3107 | @var{Prologue} alternatives over the original Yacc @var{Prologue}. |
a501eca9 JD |
3108 | However, in most cases when using these directives, you shouldn't need to |
3109 | think about all the low-level ordering issues discussed here. | |
3110 | Instead, you should simply use these directives to label each block of your | |
3111 | code according to its purpose and let Bison handle the ordering. | |
3112 | @code{%code} is the most generic label. | |
16dc6a9e JD |
3113 | Move code to @code{%code requires}, @code{%code provides}, or @code{%code top} |
3114 | as needed. | |
a501eca9 | 3115 | |
342b8b6e | 3116 | @node Bison Declarations |
bfa74976 RS |
3117 | @subsection The Bison Declarations Section |
3118 | @cindex Bison declarations (introduction) | |
3119 | @cindex declarations, Bison (introduction) | |
3120 | ||
3121 | The @var{Bison declarations} section contains declarations that define | |
3122 | terminal and nonterminal symbols, specify precedence, and so on. | |
3123 | In some simple grammars you may not need any declarations. | |
3124 | @xref{Declarations, ,Bison Declarations}. | |
3125 | ||
342b8b6e | 3126 | @node Grammar Rules |
bfa74976 RS |
3127 | @subsection The Grammar Rules Section |
3128 | @cindex grammar rules section | |
3129 | @cindex rules section for grammar | |
3130 | ||
3131 | The @dfn{grammar rules} section contains one or more Bison grammar | |
3132 | rules, and nothing else. @xref{Rules, ,Syntax of Grammar Rules}. | |
3133 | ||
3134 | There must always be at least one grammar rule, and the first | |
3135 | @samp{%%} (which precedes the grammar rules) may never be omitted even | |
3136 | if it is the first thing in the file. | |
3137 | ||
38a92d50 | 3138 | @node Epilogue |
75f5aaea | 3139 | @subsection The epilogue |
bfa74976 | 3140 | @cindex additional C code section |
75f5aaea | 3141 | @cindex epilogue |
bfa74976 RS |
3142 | @cindex C code, section for additional |
3143 | ||
9913d6e4 JD |
3144 | The @var{Epilogue} is copied verbatim to the end of the parser |
3145 | implementation file, just as the @var{Prologue} is copied to the | |
3146 | beginning. This is the most convenient place to put anything that you | |
3147 | want to have in the parser implementation file but which need not come | |
3148 | before the definition of @code{yyparse}. For example, the definitions | |
3149 | of @code{yylex} and @code{yyerror} often go here. Because C requires | |
3150 | functions to be declared before being used, you often need to declare | |
3151 | functions like @code{yylex} and @code{yyerror} in the Prologue, even | |
3152 | if you define them in the Epilogue. @xref{Interface, ,Parser | |
3153 | C-Language Interface}. | |
bfa74976 RS |
3154 | |
3155 | If the last section is empty, you may omit the @samp{%%} that separates it | |
3156 | from the grammar rules. | |
3157 | ||
f8e1c9e5 AD |
3158 | The Bison parser itself contains many macros and identifiers whose names |
3159 | start with @samp{yy} or @samp{YY}, so it is a good idea to avoid using | |
3160 | any such names (except those documented in this manual) in the epilogue | |
3161 | of the grammar file. | |
bfa74976 | 3162 | |
342b8b6e | 3163 | @node Symbols |
bfa74976 RS |
3164 | @section Symbols, Terminal and Nonterminal |
3165 | @cindex nonterminal symbol | |
3166 | @cindex terminal symbol | |
3167 | @cindex token type | |
3168 | @cindex symbol | |
3169 | ||
3170 | @dfn{Symbols} in Bison grammars represent the grammatical classifications | |
3171 | of the language. | |
3172 | ||
3173 | A @dfn{terminal symbol} (also known as a @dfn{token type}) represents a | |
3174 | class of syntactically equivalent tokens. You use the symbol in grammar | |
3175 | rules to mean that a token in that class is allowed. The symbol is | |
3176 | represented in the Bison parser by a numeric code, and the @code{yylex} | |
f8e1c9e5 AD |
3177 | function returns a token type code to indicate what kind of token has |
3178 | been read. You don't need to know what the code value is; you can use | |
3179 | the symbol to stand for it. | |
bfa74976 | 3180 | |
f8e1c9e5 AD |
3181 | A @dfn{nonterminal symbol} stands for a class of syntactically |
3182 | equivalent groupings. The symbol name is used in writing grammar rules. | |
3183 | By convention, it should be all lower case. | |
bfa74976 | 3184 | |
eb8c66bb JD |
3185 | Symbol names can contain letters, underscores, periods, and non-initial |
3186 | digits and dashes. Dashes in symbol names are a GNU extension, incompatible | |
3187 | with POSIX Yacc. Periods and dashes make symbol names less convenient to | |
3188 | use with named references, which require brackets around such names | |
3189 | (@pxref{Named References}). Terminal symbols that contain periods or dashes | |
3190 | make little sense: since they are not valid symbols (in most programming | |
3191 | languages) they are not exported as token names. | |
bfa74976 | 3192 | |
931c7513 | 3193 | There are three ways of writing terminal symbols in the grammar: |
bfa74976 RS |
3194 | |
3195 | @itemize @bullet | |
3196 | @item | |
3197 | A @dfn{named token type} is written with an identifier, like an | |
c827f760 | 3198 | identifier in C@. By convention, it should be all upper case. Each |
bfa74976 RS |
3199 | such name must be defined with a Bison declaration such as |
3200 | @code{%token}. @xref{Token Decl, ,Token Type Names}. | |
3201 | ||
3202 | @item | |
3203 | @cindex character token | |
3204 | @cindex literal token | |
3205 | @cindex single-character literal | |
931c7513 RS |
3206 | A @dfn{character token type} (or @dfn{literal character token}) is |
3207 | written in the grammar using the same syntax used in C for character | |
3208 | constants; for example, @code{'+'} is a character token type. A | |
3209 | character token type doesn't need to be declared unless you need to | |
3210 | specify its semantic value data type (@pxref{Value Type, ,Data Types of | |
3211 | Semantic Values}), associativity, or precedence (@pxref{Precedence, | |
3212 | ,Operator Precedence}). | |
bfa74976 RS |
3213 | |
3214 | By convention, a character token type is used only to represent a | |
3215 | token that consists of that particular character. Thus, the token | |
3216 | type @code{'+'} is used to represent the character @samp{+} as a | |
3217 | token. Nothing enforces this convention, but if you depart from it, | |
3218 | your program will confuse other readers. | |
3219 | ||
3220 | All the usual escape sequences used in character literals in C can be | |
3221 | used in Bison as well, but you must not use the null character as a | |
72d2299c PE |
3222 | character literal because its numeric code, zero, signifies |
3223 | end-of-input (@pxref{Calling Convention, ,Calling Convention | |
2bfc2e2a PE |
3224 | for @code{yylex}}). Also, unlike standard C, trigraphs have no |
3225 | special meaning in Bison character literals, nor is backslash-newline | |
3226 | allowed. | |
931c7513 RS |
3227 | |
3228 | @item | |
3229 | @cindex string token | |
3230 | @cindex literal string token | |
9ecbd125 | 3231 | @cindex multicharacter literal |
931c7513 RS |
3232 | A @dfn{literal string token} is written like a C string constant; for |
3233 | example, @code{"<="} is a literal string token. A literal string token | |
3234 | doesn't need to be declared unless you need to specify its semantic | |
14ded682 | 3235 | value data type (@pxref{Value Type}), associativity, or precedence |
931c7513 RS |
3236 | (@pxref{Precedence}). |
3237 | ||
3238 | You can associate the literal string token with a symbolic name as an | |
3239 | alias, using the @code{%token} declaration (@pxref{Token Decl, ,Token | |
3240 | Declarations}). If you don't do that, the lexical analyzer has to | |
3241 | retrieve the token number for the literal string token from the | |
3242 | @code{yytname} table (@pxref{Calling Convention}). | |
3243 | ||
c827f760 | 3244 | @strong{Warning}: literal string tokens do not work in Yacc. |
931c7513 RS |
3245 | |
3246 | By convention, a literal string token is used only to represent a token | |
3247 | that consists of that particular string. Thus, you should use the token | |
3248 | type @code{"<="} to represent the string @samp{<=} as a token. Bison | |
9ecbd125 | 3249 | does not enforce this convention, but if you depart from it, people who |
931c7513 RS |
3250 | read your program will be confused. |
3251 | ||
3252 | All the escape sequences used in string literals in C can be used in | |
92ac3705 PE |
3253 | Bison as well, except that you must not use a null character within a |
3254 | string literal. Also, unlike Standard C, trigraphs have no special | |
2bfc2e2a PE |
3255 | meaning in Bison string literals, nor is backslash-newline allowed. A |
3256 | literal string token must contain two or more characters; for a token | |
3257 | containing just one character, use a character token (see above). | |
bfa74976 RS |
3258 | @end itemize |
3259 | ||
3260 | How you choose to write a terminal symbol has no effect on its | |
3261 | grammatical meaning. That depends only on where it appears in rules and | |
3262 | on when the parser function returns that symbol. | |
3263 | ||
72d2299c PE |
3264 | The value returned by @code{yylex} is always one of the terminal |
3265 | symbols, except that a zero or negative value signifies end-of-input. | |
3266 | Whichever way you write the token type in the grammar rules, you write | |
3267 | it the same way in the definition of @code{yylex}. The numeric code | |
3268 | for a character token type is simply the positive numeric code of the | |
3269 | character, so @code{yylex} can use the identical value to generate the | |
3270 | requisite code, though you may need to convert it to @code{unsigned | |
3271 | char} to avoid sign-extension on hosts where @code{char} is signed. | |
9913d6e4 JD |
3272 | Each named token type becomes a C macro in the parser implementation |
3273 | file, so @code{yylex} can use the name to stand for the code. (This | |
3274 | is why periods don't make sense in terminal symbols.) @xref{Calling | |
3275 | Convention, ,Calling Convention for @code{yylex}}. | |
bfa74976 RS |
3276 | |
3277 | If @code{yylex} is defined in a separate file, you need to arrange for the | |
3278 | token-type macro definitions to be available there. Use the @samp{-d} | |
3279 | option when you run Bison, so that it will write these macro definitions | |
3280 | into a separate header file @file{@var{name}.tab.h} which you can include | |
3281 | in the other source files that need it. @xref{Invocation, ,Invoking Bison}. | |
3282 | ||
72d2299c | 3283 | If you want to write a grammar that is portable to any Standard C |
9d9b8b70 | 3284 | host, you must use only nonnull character tokens taken from the basic |
c827f760 | 3285 | execution character set of Standard C@. This set consists of the ten |
72d2299c PE |
3286 | digits, the 52 lower- and upper-case English letters, and the |
3287 | characters in the following C-language string: | |
3288 | ||
3289 | @example | |
3290 | "\a\b\t\n\v\f\r !\"#%&'()*+,-./:;<=>?[\\]^_@{|@}~" | |
3291 | @end example | |
3292 | ||
f8e1c9e5 AD |
3293 | The @code{yylex} function and Bison must use a consistent character set |
3294 | and encoding for character tokens. For example, if you run Bison in an | |
35430378 | 3295 | ASCII environment, but then compile and run the resulting |
f8e1c9e5 | 3296 | program in an environment that uses an incompatible character set like |
35430378 JD |
3297 | EBCDIC, the resulting program may not work because the tables |
3298 | generated by Bison will assume ASCII numeric values for | |
f8e1c9e5 AD |
3299 | character tokens. It is standard practice for software distributions to |
3300 | contain C source files that were generated by Bison in an | |
35430378 JD |
3301 | ASCII environment, so installers on platforms that are |
3302 | incompatible with ASCII must rebuild those files before | |
f8e1c9e5 | 3303 | compiling them. |
e966383b | 3304 | |
bfa74976 RS |
3305 | The symbol @code{error} is a terminal symbol reserved for error recovery |
3306 | (@pxref{Error Recovery}); you shouldn't use it for any other purpose. | |
23c5a174 AD |
3307 | In particular, @code{yylex} should never return this value. The default |
3308 | value of the error token is 256, unless you explicitly assigned 256 to | |
3309 | one of your tokens with a @code{%token} declaration. | |
bfa74976 | 3310 | |
342b8b6e | 3311 | @node Rules |
bfa74976 RS |
3312 | @section Syntax of Grammar Rules |
3313 | @cindex rule syntax | |
3314 | @cindex grammar rule syntax | |
3315 | @cindex syntax of grammar rules | |
3316 | ||
3317 | A Bison grammar rule has the following general form: | |
3318 | ||
3319 | @example | |
e425e872 | 3320 | @group |
de6be119 | 3321 | @var{result}: @var{components}@dots{}; |
e425e872 | 3322 | @end group |
bfa74976 RS |
3323 | @end example |
3324 | ||
3325 | @noindent | |
9ecbd125 | 3326 | where @var{result} is the nonterminal symbol that this rule describes, |
bfa74976 | 3327 | and @var{components} are various terminal and nonterminal symbols that |
13863333 | 3328 | are put together by this rule (@pxref{Symbols}). |
bfa74976 RS |
3329 | |
3330 | For example, | |
3331 | ||
3332 | @example | |
3333 | @group | |
de6be119 | 3334 | exp: exp '+' exp; |
bfa74976 RS |
3335 | @end group |
3336 | @end example | |
3337 | ||
3338 | @noindent | |
3339 | says that two groupings of type @code{exp}, with a @samp{+} token in between, | |
3340 | can be combined into a larger grouping of type @code{exp}. | |
3341 | ||
72d2299c PE |
3342 | White space in rules is significant only to separate symbols. You can add |
3343 | extra white space as you wish. | |
bfa74976 RS |
3344 | |
3345 | Scattered among the components can be @var{actions} that determine | |
3346 | the semantics of the rule. An action looks like this: | |
3347 | ||
3348 | @example | |
3349 | @{@var{C statements}@} | |
3350 | @end example | |
3351 | ||
3352 | @noindent | |
287c78f6 PE |
3353 | @cindex braced code |
3354 | This is an example of @dfn{braced code}, that is, C code surrounded by | |
3355 | braces, much like a compound statement in C@. Braced code can contain | |
3356 | any sequence of C tokens, so long as its braces are balanced. Bison | |
3357 | does not check the braced code for correctness directly; it merely | |
9913d6e4 JD |
3358 | copies the code to the parser implementation file, where the C |
3359 | compiler can check it. | |
287c78f6 PE |
3360 | |
3361 | Within braced code, the balanced-brace count is not affected by braces | |
3362 | within comments, string literals, or character constants, but it is | |
3363 | affected by the C digraphs @samp{<%} and @samp{%>} that represent | |
3364 | braces. At the top level braced code must be terminated by @samp{@}} | |
3365 | and not by a digraph. Bison does not look for trigraphs, so if braced | |
3366 | code uses trigraphs you should ensure that they do not affect the | |
3367 | nesting of braces or the boundaries of comments, string literals, or | |
3368 | character constants. | |
3369 | ||
bfa74976 RS |
3370 | Usually there is only one action and it follows the components. |
3371 | @xref{Actions}. | |
3372 | ||
3373 | @findex | | |
3374 | Multiple rules for the same @var{result} can be written separately or can | |
3375 | be joined with the vertical-bar character @samp{|} as follows: | |
3376 | ||
bfa74976 RS |
3377 | @example |
3378 | @group | |
de6be119 AD |
3379 | @var{result}: |
3380 | @var{rule1-components}@dots{} | |
3381 | | @var{rule2-components}@dots{} | |
3382 | @dots{} | |
3383 | ; | |
bfa74976 RS |
3384 | @end group |
3385 | @end example | |
bfa74976 RS |
3386 | |
3387 | @noindent | |
3388 | They are still considered distinct rules even when joined in this way. | |
3389 | ||
3390 | If @var{components} in a rule is empty, it means that @var{result} can | |
3391 | match the empty string. For example, here is how to define a | |
3392 | comma-separated sequence of zero or more @code{exp} groupings: | |
3393 | ||
3394 | @example | |
3395 | @group | |
de6be119 AD |
3396 | expseq: |
3397 | /* empty */ | |
3398 | | expseq1 | |
3399 | ; | |
bfa74976 RS |
3400 | @end group |
3401 | ||
3402 | @group | |
de6be119 AD |
3403 | expseq1: |
3404 | exp | |
3405 | | expseq1 ',' exp | |
3406 | ; | |
bfa74976 RS |
3407 | @end group |
3408 | @end example | |
3409 | ||
3410 | @noindent | |
3411 | It is customary to write a comment @samp{/* empty */} in each rule | |
3412 | with no components. | |
3413 | ||
342b8b6e | 3414 | @node Recursion |
bfa74976 RS |
3415 | @section Recursive Rules |
3416 | @cindex recursive rule | |
3417 | ||
f8e1c9e5 AD |
3418 | A rule is called @dfn{recursive} when its @var{result} nonterminal |
3419 | appears also on its right hand side. Nearly all Bison grammars need to | |
3420 | use recursion, because that is the only way to define a sequence of any | |
3421 | number of a particular thing. Consider this recursive definition of a | |
9ecbd125 | 3422 | comma-separated sequence of one or more expressions: |
bfa74976 RS |
3423 | |
3424 | @example | |
3425 | @group | |
de6be119 AD |
3426 | expseq1: |
3427 | exp | |
3428 | | expseq1 ',' exp | |
3429 | ; | |
bfa74976 RS |
3430 | @end group |
3431 | @end example | |
3432 | ||
3433 | @cindex left recursion | |
3434 | @cindex right recursion | |
3435 | @noindent | |
3436 | Since the recursive use of @code{expseq1} is the leftmost symbol in the | |
3437 | right hand side, we call this @dfn{left recursion}. By contrast, here | |
3438 | the same construct is defined using @dfn{right recursion}: | |
3439 | ||
3440 | @example | |
3441 | @group | |
de6be119 AD |
3442 | expseq1: |
3443 | exp | |
3444 | | exp ',' expseq1 | |
3445 | ; | |
bfa74976 RS |
3446 | @end group |
3447 | @end example | |
3448 | ||
3449 | @noindent | |
ec3bc396 AD |
3450 | Any kind of sequence can be defined using either left recursion or right |
3451 | recursion, but you should always use left recursion, because it can | |
3452 | parse a sequence of any number of elements with bounded stack space. | |
3453 | Right recursion uses up space on the Bison stack in proportion to the | |
3454 | number of elements in the sequence, because all the elements must be | |
3455 | shifted onto the stack before the rule can be applied even once. | |
3456 | @xref{Algorithm, ,The Bison Parser Algorithm}, for further explanation | |
3457 | of this. | |
bfa74976 RS |
3458 | |
3459 | @cindex mutual recursion | |
3460 | @dfn{Indirect} or @dfn{mutual} recursion occurs when the result of the | |
3461 | rule does not appear directly on its right hand side, but does appear | |
3462 | in rules for other nonterminals which do appear on its right hand | |
13863333 | 3463 | side. |
bfa74976 RS |
3464 | |
3465 | For example: | |
3466 | ||
3467 | @example | |
3468 | @group | |
de6be119 AD |
3469 | expr: |
3470 | primary | |
3471 | | primary '+' primary | |
3472 | ; | |
bfa74976 RS |
3473 | @end group |
3474 | ||
3475 | @group | |
de6be119 AD |
3476 | primary: |
3477 | constant | |
3478 | | '(' expr ')' | |
3479 | ; | |
bfa74976 RS |
3480 | @end group |
3481 | @end example | |
3482 | ||
3483 | @noindent | |
3484 | defines two mutually-recursive nonterminals, since each refers to the | |
3485 | other. | |
3486 | ||
342b8b6e | 3487 | @node Semantics |
bfa74976 RS |
3488 | @section Defining Language Semantics |
3489 | @cindex defining language semantics | |
13863333 | 3490 | @cindex language semantics, defining |
bfa74976 RS |
3491 | |
3492 | The grammar rules for a language determine only the syntax. The semantics | |
3493 | are determined by the semantic values associated with various tokens and | |
3494 | groupings, and by the actions taken when various groupings are recognized. | |
3495 | ||
3496 | For example, the calculator calculates properly because the value | |
3497 | associated with each expression is the proper number; it adds properly | |
3498 | because the action for the grouping @w{@samp{@var{x} + @var{y}}} is to add | |
3499 | the numbers associated with @var{x} and @var{y}. | |
3500 | ||
3501 | @menu | |
3502 | * Value Type:: Specifying one data type for all semantic values. | |
3503 | * Multiple Types:: Specifying several alternative data types. | |
3504 | * Actions:: An action is the semantic definition of a grammar rule. | |
3505 | * Action Types:: Specifying data types for actions to operate on. | |
3506 | * Mid-Rule Actions:: Most actions go at the end of a rule. | |
3507 | This says when, why and how to use the exceptional | |
3508 | action in the middle of a rule. | |
3509 | @end menu | |
3510 | ||
342b8b6e | 3511 | @node Value Type |
bfa74976 RS |
3512 | @subsection Data Types of Semantic Values |
3513 | @cindex semantic value type | |
3514 | @cindex value type, semantic | |
3515 | @cindex data types of semantic values | |
3516 | @cindex default data type | |
3517 | ||
3518 | In a simple program it may be sufficient to use the same data type for | |
3519 | the semantic values of all language constructs. This was true in the | |
35430378 | 3520 | RPN and infix calculator examples (@pxref{RPN Calc, ,Reverse Polish |
1964ad8c | 3521 | Notation Calculator}). |
bfa74976 | 3522 | |
ddc8ede1 PE |
3523 | Bison normally uses the type @code{int} for semantic values if your |
3524 | program uses the same data type for all language constructs. To | |
bfa74976 RS |
3525 | specify some other type, define @code{YYSTYPE} as a macro, like this: |
3526 | ||
3527 | @example | |
3528 | #define YYSTYPE double | |
3529 | @end example | |
3530 | ||
3531 | @noindent | |
50cce58e PE |
3532 | @code{YYSTYPE}'s replacement list should be a type name |
3533 | that does not contain parentheses or square brackets. | |
342b8b6e | 3534 | This macro definition must go in the prologue of the grammar file |
75f5aaea | 3535 | (@pxref{Grammar Outline, ,Outline of a Bison Grammar}). |
bfa74976 | 3536 | |
342b8b6e | 3537 | @node Multiple Types |
bfa74976 RS |
3538 | @subsection More Than One Value Type |
3539 | ||
3540 | In most programs, you will need different data types for different kinds | |
3541 | of tokens and groupings. For example, a numeric constant may need type | |
f8e1c9e5 AD |
3542 | @code{int} or @code{long int}, while a string constant needs type |
3543 | @code{char *}, and an identifier might need a pointer to an entry in the | |
3544 | symbol table. | |
bfa74976 RS |
3545 | |
3546 | To use more than one data type for semantic values in one parser, Bison | |
3547 | requires you to do two things: | |
3548 | ||
3549 | @itemize @bullet | |
3550 | @item | |
ddc8ede1 | 3551 | Specify the entire collection of possible data types, either by using the |
704a47c4 | 3552 | @code{%union} Bison declaration (@pxref{Union Decl, ,The Collection of |
ddc8ede1 PE |
3553 | Value Types}), or by using a @code{typedef} or a @code{#define} to |
3554 | define @code{YYSTYPE} to be a union type whose member names are | |
3555 | the type tags. | |
bfa74976 RS |
3556 | |
3557 | @item | |
14ded682 AD |
3558 | Choose one of those types for each symbol (terminal or nonterminal) for |
3559 | which semantic values are used. This is done for tokens with the | |
3560 | @code{%token} Bison declaration (@pxref{Token Decl, ,Token Type Names}) | |
3561 | and for groupings with the @code{%type} Bison declaration (@pxref{Type | |
3562 | Decl, ,Nonterminal Symbols}). | |
bfa74976 RS |
3563 | @end itemize |
3564 | ||
342b8b6e | 3565 | @node Actions |
bfa74976 RS |
3566 | @subsection Actions |
3567 | @cindex action | |
3568 | @vindex $$ | |
3569 | @vindex $@var{n} | |
1f68dca5 AR |
3570 | @vindex $@var{name} |
3571 | @vindex $[@var{name}] | |
bfa74976 RS |
3572 | |
3573 | An action accompanies a syntactic rule and contains C code to be executed | |
3574 | each time an instance of that rule is recognized. The task of most actions | |
3575 | is to compute a semantic value for the grouping built by the rule from the | |
3576 | semantic values associated with tokens or smaller groupings. | |
3577 | ||
287c78f6 PE |
3578 | An action consists of braced code containing C statements, and can be |
3579 | placed at any position in the rule; | |
704a47c4 AD |
3580 | it is executed at that position. Most rules have just one action at the |
3581 | end of the rule, following all the components. Actions in the middle of | |
3582 | a rule are tricky and used only for special purposes (@pxref{Mid-Rule | |
3583 | Actions, ,Actions in Mid-Rule}). | |
bfa74976 | 3584 | |
9913d6e4 JD |
3585 | The C code in an action can refer to the semantic values of the |
3586 | components matched by the rule with the construct @code{$@var{n}}, | |
3587 | which stands for the value of the @var{n}th component. The semantic | |
3588 | value for the grouping being constructed is @code{$$}. In addition, | |
3589 | the semantic values of symbols can be accessed with the named | |
3590 | references construct @code{$@var{name}} or @code{$[@var{name}]}. | |
3591 | Bison translates both of these constructs into expressions of the | |
3592 | appropriate type when it copies the actions into the parser | |
3593 | implementation file. @code{$$} (or @code{$@var{name}}, when it stands | |
3594 | for the current grouping) is translated to a modifiable lvalue, so it | |
3595 | can be assigned to. | |
bfa74976 RS |
3596 | |
3597 | Here is a typical example: | |
3598 | ||
3599 | @example | |
3600 | @group | |
de6be119 AD |
3601 | exp: |
3602 | @dots{} | |
3603 | | exp '+' exp @{ $$ = $1 + $3; @} | |
bfa74976 RS |
3604 | @end group |
3605 | @end example | |
3606 | ||
1f68dca5 AR |
3607 | Or, in terms of named references: |
3608 | ||
3609 | @example | |
3610 | @group | |
de6be119 AD |
3611 | exp[result]: |
3612 | @dots{} | |
3613 | | exp[left] '+' exp[right] @{ $result = $left + $right; @} | |
1f68dca5 AR |
3614 | @end group |
3615 | @end example | |
3616 | ||
bfa74976 RS |
3617 | @noindent |
3618 | This rule constructs an @code{exp} from two smaller @code{exp} groupings | |
3619 | connected by a plus-sign token. In the action, @code{$1} and @code{$3} | |
1f68dca5 | 3620 | (@code{$left} and @code{$right}) |
bfa74976 RS |
3621 | refer to the semantic values of the two component @code{exp} groupings, |
3622 | which are the first and third symbols on the right hand side of the rule. | |
1f68dca5 AR |
3623 | The sum is stored into @code{$$} (@code{$result}) so that it becomes the |
3624 | semantic value of | |
bfa74976 RS |
3625 | the addition-expression just recognized by the rule. If there were a |
3626 | useful semantic value associated with the @samp{+} token, it could be | |
e0c471a9 | 3627 | referred to as @code{$2}. |
bfa74976 | 3628 | |
ce24f7f5 JD |
3629 | @xref{Named References}, for more information about using the named |
3630 | references construct. | |
1f68dca5 | 3631 | |
3ded9a63 AD |
3632 | Note that the vertical-bar character @samp{|} is really a rule |
3633 | separator, and actions are attached to a single rule. This is a | |
3634 | difference with tools like Flex, for which @samp{|} stands for either | |
3635 | ``or'', or ``the same action as that of the next rule''. In the | |
3636 | following example, the action is triggered only when @samp{b} is found: | |
3637 | ||
3638 | @example | |
3639 | @group | |
3640 | a-or-b: 'a'|'b' @{ a_or_b_found = 1; @}; | |
3641 | @end group | |
3642 | @end example | |
3643 | ||
bfa74976 RS |
3644 | @cindex default action |
3645 | If you don't specify an action for a rule, Bison supplies a default: | |
72f889cc AD |
3646 | @w{@code{$$ = $1}.} Thus, the value of the first symbol in the rule |
3647 | becomes the value of the whole rule. Of course, the default action is | |
3648 | valid only if the two data types match. There is no meaningful default | |
3649 | action for an empty rule; every empty rule must have an explicit action | |
3650 | unless the rule's value does not matter. | |
bfa74976 RS |
3651 | |
3652 | @code{$@var{n}} with @var{n} zero or negative is allowed for reference | |
3653 | to tokens and groupings on the stack @emph{before} those that match the | |
3654 | current rule. This is a very risky practice, and to use it reliably | |
3655 | you must be certain of the context in which the rule is applied. Here | |
3656 | is a case in which you can use this reliably: | |
3657 | ||
3658 | @example | |
3659 | @group | |
de6be119 AD |
3660 | foo: |
3661 | expr bar '+' expr @{ @dots{} @} | |
3662 | | expr bar '-' expr @{ @dots{} @} | |
3663 | ; | |
bfa74976 RS |
3664 | @end group |
3665 | ||
3666 | @group | |
de6be119 AD |
3667 | bar: |
3668 | /* empty */ @{ previous_expr = $0; @} | |
3669 | ; | |
bfa74976 RS |
3670 | @end group |
3671 | @end example | |
3672 | ||
3673 | As long as @code{bar} is used only in the fashion shown here, @code{$0} | |
3674 | always refers to the @code{expr} which precedes @code{bar} in the | |
3675 | definition of @code{foo}. | |
3676 | ||
32c29292 | 3677 | @vindex yylval |
742e4900 | 3678 | It is also possible to access the semantic value of the lookahead token, if |
32c29292 JD |
3679 | any, from a semantic action. |
3680 | This semantic value is stored in @code{yylval}. | |
3681 | @xref{Action Features, ,Special Features for Use in Actions}. | |
3682 | ||
342b8b6e | 3683 | @node Action Types |
bfa74976 RS |
3684 | @subsection Data Types of Values in Actions |
3685 | @cindex action data types | |
3686 | @cindex data types in actions | |
3687 | ||
3688 | If you have chosen a single data type for semantic values, the @code{$$} | |
3689 | and @code{$@var{n}} constructs always have that data type. | |
3690 | ||
3691 | If you have used @code{%union} to specify a variety of data types, then you | |
3692 | must declare a choice among these types for each terminal or nonterminal | |
3693 | symbol that can have a semantic value. Then each time you use @code{$$} or | |
3694 | @code{$@var{n}}, its data type is determined by which symbol it refers to | |
e0c471a9 | 3695 | in the rule. In this example, |
bfa74976 RS |
3696 | |
3697 | @example | |
3698 | @group | |
de6be119 AD |
3699 | exp: |
3700 | @dots{} | |
3701 | | exp '+' exp @{ $$ = $1 + $3; @} | |
bfa74976 RS |
3702 | @end group |
3703 | @end example | |
3704 | ||
3705 | @noindent | |
3706 | @code{$1} and @code{$3} refer to instances of @code{exp}, so they all | |
3707 | have the data type declared for the nonterminal symbol @code{exp}. If | |
3708 | @code{$2} were used, it would have the data type declared for the | |
e0c471a9 | 3709 | terminal symbol @code{'+'}, whatever that might be. |
bfa74976 RS |
3710 | |
3711 | Alternatively, you can specify the data type when you refer to the value, | |
3712 | by inserting @samp{<@var{type}>} after the @samp{$} at the beginning of the | |
3713 | reference. For example, if you have defined types as shown here: | |
3714 | ||
3715 | @example | |
3716 | @group | |
3717 | %union @{ | |
3718 | int itype; | |
3719 | double dtype; | |
3720 | @} | |
3721 | @end group | |
3722 | @end example | |
3723 | ||
3724 | @noindent | |
3725 | then you can write @code{$<itype>1} to refer to the first subunit of the | |
3726 | rule as an integer, or @code{$<dtype>1} to refer to it as a double. | |
3727 | ||
342b8b6e | 3728 | @node Mid-Rule Actions |
bfa74976 RS |
3729 | @subsection Actions in Mid-Rule |
3730 | @cindex actions in mid-rule | |
3731 | @cindex mid-rule actions | |
3732 | ||
3733 | Occasionally it is useful to put an action in the middle of a rule. | |
3734 | These actions are written just like usual end-of-rule actions, but they | |
3735 | are executed before the parser even recognizes the following components. | |
3736 | ||
3737 | A mid-rule action may refer to the components preceding it using | |
3738 | @code{$@var{n}}, but it may not refer to subsequent components because | |
3739 | it is run before they are parsed. | |
3740 | ||
3741 | The mid-rule action itself counts as one of the components of the rule. | |
3742 | This makes a difference when there is another action later in the same rule | |
3743 | (and usually there is another at the end): you have to count the actions | |
3744 | along with the symbols when working out which number @var{n} to use in | |
3745 | @code{$@var{n}}. | |
3746 | ||
3747 | The mid-rule action can also have a semantic value. The action can set | |
3748 | its value with an assignment to @code{$$}, and actions later in the rule | |
3749 | can refer to the value using @code{$@var{n}}. Since there is no symbol | |
3750 | to name the action, there is no way to declare a data type for the value | |
fdc6758b MA |
3751 | in advance, so you must use the @samp{$<@dots{}>@var{n}} construct to |
3752 | specify a data type each time you refer to this value. | |
bfa74976 RS |
3753 | |
3754 | There is no way to set the value of the entire rule with a mid-rule | |
3755 | action, because assignments to @code{$$} do not have that effect. The | |
3756 | only way to set the value for the entire rule is with an ordinary action | |
3757 | at the end of the rule. | |
3758 | ||
3759 | Here is an example from a hypothetical compiler, handling a @code{let} | |
3760 | statement that looks like @samp{let (@var{variable}) @var{statement}} and | |
3761 | serves to create a variable named @var{variable} temporarily for the | |
3762 | duration of @var{statement}. To parse this construct, we must put | |
3763 | @var{variable} into the symbol table while @var{statement} is parsed, then | |
3764 | remove it afterward. Here is how it is done: | |
3765 | ||
3766 | @example | |
3767 | @group | |
de6be119 AD |
3768 | stmt: |
3769 | LET '(' var ')' | |
3770 | @{ $<context>$ = push_context (); declare_variable ($3); @} | |
3771 | stmt | |
3772 | @{ $$ = $6; pop_context ($<context>5); @} | |
bfa74976 RS |
3773 | @end group |
3774 | @end example | |
3775 | ||
3776 | @noindent | |
3777 | As soon as @samp{let (@var{variable})} has been recognized, the first | |
3778 | action is run. It saves a copy of the current semantic context (the | |
3779 | list of accessible variables) as its semantic value, using alternative | |
3780 | @code{context} in the data-type union. Then it calls | |
3781 | @code{declare_variable} to add the new variable to that list. Once the | |
3782 | first action is finished, the embedded statement @code{stmt} can be | |
3783 | parsed. Note that the mid-rule action is component number 5, so the | |
3784 | @samp{stmt} is component number 6. | |
3785 | ||
3786 | After the embedded statement is parsed, its semantic value becomes the | |
3787 | value of the entire @code{let}-statement. Then the semantic value from the | |
3788 | earlier action is used to restore the prior list of variables. This | |
3789 | removes the temporary @code{let}-variable from the list so that it won't | |
3790 | appear to exist while the rest of the program is parsed. | |
3791 | ||
841a7737 JD |
3792 | @findex %destructor |
3793 | @cindex discarded symbols, mid-rule actions | |
3794 | @cindex error recovery, mid-rule actions | |
3795 | In the above example, if the parser initiates error recovery (@pxref{Error | |
3796 | Recovery}) while parsing the tokens in the embedded statement @code{stmt}, | |
3797 | it might discard the previous semantic context @code{$<context>5} without | |
3798 | restoring it. | |
3799 | Thus, @code{$<context>5} needs a destructor (@pxref{Destructor Decl, , Freeing | |
3800 | Discarded Symbols}). | |
ec5479ce JD |
3801 | However, Bison currently provides no means to declare a destructor specific to |
3802 | a particular mid-rule action's semantic value. | |
841a7737 JD |
3803 | |
3804 | One solution is to bury the mid-rule action inside a nonterminal symbol and to | |
3805 | declare a destructor for that symbol: | |
3806 | ||
3807 | @example | |
3808 | @group | |
3809 | %type <context> let | |
3810 | %destructor @{ pop_context ($$); @} let | |
3811 | ||
3812 | %% | |
3813 | ||
de6be119 AD |
3814 | stmt: |
3815 | let stmt | |
3816 | @{ | |
3817 | $$ = $2; | |
3818 | pop_context ($1); | |
3819 | @}; | |
841a7737 | 3820 | |
de6be119 AD |
3821 | let: |
3822 | LET '(' var ')' | |
3823 | @{ | |
3824 | $$ = push_context (); | |
3825 | declare_variable ($3); | |
3826 | @}; | |
841a7737 JD |
3827 | |
3828 | @end group | |
3829 | @end example | |
3830 | ||
3831 | @noindent | |
3832 | Note that the action is now at the end of its rule. | |
3833 | Any mid-rule action can be converted to an end-of-rule action in this way, and | |
3834 | this is what Bison actually does to implement mid-rule actions. | |
3835 | ||
bfa74976 RS |
3836 | Taking action before a rule is completely recognized often leads to |
3837 | conflicts since the parser must commit to a parse in order to execute the | |
3838 | action. For example, the following two rules, without mid-rule actions, | |
3839 | can coexist in a working parser because the parser can shift the open-brace | |
3840 | token and look at what follows before deciding whether there is a | |
3841 | declaration or not: | |
3842 | ||
3843 | @example | |
3844 | @group | |
de6be119 AD |
3845 | compound: |
3846 | '@{' declarations statements '@}' | |
3847 | | '@{' statements '@}' | |
3848 | ; | |
bfa74976 RS |
3849 | @end group |
3850 | @end example | |
3851 | ||
3852 | @noindent | |
3853 | But when we add a mid-rule action as follows, the rules become nonfunctional: | |
3854 | ||
3855 | @example | |
3856 | @group | |
de6be119 AD |
3857 | compound: |
3858 | @{ prepare_for_local_variables (); @} | |
3859 | '@{' declarations statements '@}' | |
bfa74976 RS |
3860 | @end group |
3861 | @group | |
de6be119 AD |
3862 | | '@{' statements '@}' |
3863 | ; | |
bfa74976 RS |
3864 | @end group |
3865 | @end example | |
3866 | ||
3867 | @noindent | |
3868 | Now the parser is forced to decide whether to run the mid-rule action | |
3869 | when it has read no farther than the open-brace. In other words, it | |
3870 | must commit to using one rule or the other, without sufficient | |
3871 | information to do it correctly. (The open-brace token is what is called | |
742e4900 JD |
3872 | the @dfn{lookahead} token at this time, since the parser is still |
3873 | deciding what to do about it. @xref{Lookahead, ,Lookahead Tokens}.) | |
bfa74976 RS |
3874 | |
3875 | You might think that you could correct the problem by putting identical | |
3876 | actions into the two rules, like this: | |
3877 | ||
3878 | @example | |
3879 | @group | |
de6be119 AD |
3880 | compound: |
3881 | @{ prepare_for_local_variables (); @} | |
3882 | '@{' declarations statements '@}' | |
3883 | | @{ prepare_for_local_variables (); @} | |
3884 | '@{' statements '@}' | |
3885 | ; | |
bfa74976 RS |
3886 | @end group |
3887 | @end example | |
3888 | ||
3889 | @noindent | |
3890 | But this does not help, because Bison does not realize that the two actions | |
3891 | are identical. (Bison never tries to understand the C code in an action.) | |
3892 | ||
3893 | If the grammar is such that a declaration can be distinguished from a | |
3894 | statement by the first token (which is true in C), then one solution which | |
3895 | does work is to put the action after the open-brace, like this: | |
3896 | ||
3897 | @example | |
3898 | @group | |
de6be119 AD |
3899 | compound: |
3900 | '@{' @{ prepare_for_local_variables (); @} | |
3901 | declarations statements '@}' | |
3902 | | '@{' statements '@}' | |
3903 | ; | |
bfa74976 RS |
3904 | @end group |
3905 | @end example | |
3906 | ||
3907 | @noindent | |
3908 | Now the first token of the following declaration or statement, | |
3909 | which would in any case tell Bison which rule to use, can still do so. | |
3910 | ||
3911 | Another solution is to bury the action inside a nonterminal symbol which | |
3912 | serves as a subroutine: | |
3913 | ||
3914 | @example | |
3915 | @group | |
de6be119 AD |
3916 | subroutine: |
3917 | /* empty */ @{ prepare_for_local_variables (); @} | |
3918 | ; | |
bfa74976 RS |
3919 | @end group |
3920 | ||
3921 | @group | |
de6be119 AD |
3922 | compound: |
3923 | subroutine '@{' declarations statements '@}' | |
3924 | | subroutine '@{' statements '@}' | |
3925 | ; | |
bfa74976 RS |
3926 | @end group |
3927 | @end example | |
3928 | ||
3929 | @noindent | |
3930 | Now Bison can execute the action in the rule for @code{subroutine} without | |
841a7737 | 3931 | deciding which rule for @code{compound} it will eventually use. |
bfa74976 | 3932 | |
7404cdf3 | 3933 | @node Tracking Locations |
847bf1f5 AD |
3934 | @section Tracking Locations |
3935 | @cindex location | |
95923bd6 AD |
3936 | @cindex textual location |
3937 | @cindex location, textual | |
847bf1f5 AD |
3938 | |
3939 | Though grammar rules and semantic actions are enough to write a fully | |
72d2299c | 3940 | functional parser, it can be useful to process some additional information, |
3e259915 MA |
3941 | especially symbol locations. |
3942 | ||
704a47c4 AD |
3943 | The way locations are handled is defined by providing a data type, and |
3944 | actions to take when rules are matched. | |
847bf1f5 AD |
3945 | |
3946 | @menu | |
3947 | * Location Type:: Specifying a data type for locations. | |
3948 | * Actions and Locations:: Using locations in actions. | |
3949 | * Location Default Action:: Defining a general way to compute locations. | |
3950 | @end menu | |
3951 | ||
342b8b6e | 3952 | @node Location Type |
847bf1f5 AD |
3953 | @subsection Data Type of Locations |
3954 | @cindex data type of locations | |
3955 | @cindex default location type | |
3956 | ||
3957 | Defining a data type for locations is much simpler than for semantic values, | |
3958 | since all tokens and groupings always use the same type. | |
3959 | ||
50cce58e PE |
3960 | You can specify the type of locations by defining a macro called |
3961 | @code{YYLTYPE}, just as you can specify the semantic value type by | |
ddc8ede1 | 3962 | defining a @code{YYSTYPE} macro (@pxref{Value Type}). |
847bf1f5 AD |
3963 | When @code{YYLTYPE} is not defined, Bison uses a default structure type with |
3964 | four members: | |
3965 | ||
3966 | @example | |
6273355b | 3967 | typedef struct YYLTYPE |
847bf1f5 AD |
3968 | @{ |
3969 | int first_line; | |
3970 | int first_column; | |
3971 | int last_line; | |
3972 | int last_column; | |
6273355b | 3973 | @} YYLTYPE; |
847bf1f5 AD |
3974 | @end example |
3975 | ||
8fbbeba2 AD |
3976 | When @code{YYLTYPE} is not defined, at the beginning of the parsing, Bison |
3977 | initializes all these fields to 1 for @code{yylloc}. To initialize | |
3978 | @code{yylloc} with a custom location type (or to chose a different | |
3979 | initialization), use the @code{%initial-action} directive. @xref{Initial | |
3980 | Action Decl, , Performing Actions before Parsing}. | |
cd48d21d | 3981 | |
342b8b6e | 3982 | @node Actions and Locations |
847bf1f5 AD |
3983 | @subsection Actions and Locations |
3984 | @cindex location actions | |
3985 | @cindex actions, location | |
3986 | @vindex @@$ | |
3987 | @vindex @@@var{n} | |
1f68dca5 AR |
3988 | @vindex @@@var{name} |
3989 | @vindex @@[@var{name}] | |
847bf1f5 AD |
3990 | |
3991 | Actions are not only useful for defining language semantics, but also for | |
3992 | describing the behavior of the output parser with locations. | |
3993 | ||
3994 | The most obvious way for building locations of syntactic groupings is very | |
72d2299c | 3995 | similar to the way semantic values are computed. In a given rule, several |
847bf1f5 AD |
3996 | constructs can be used to access the locations of the elements being matched. |
3997 | The location of the @var{n}th component of the right hand side is | |
3998 | @code{@@@var{n}}, while the location of the left hand side grouping is | |
3999 | @code{@@$}. | |
4000 | ||
1f68dca5 AR |
4001 | In addition, the named references construct @code{@@@var{name}} and |
4002 | @code{@@[@var{name}]} may also be used to address the symbol locations. | |
ce24f7f5 JD |
4003 | @xref{Named References}, for more information about using the named |
4004 | references construct. | |
1f68dca5 | 4005 | |
3e259915 | 4006 | Here is a basic example using the default data type for locations: |
847bf1f5 AD |
4007 | |
4008 | @example | |
4009 | @group | |
de6be119 AD |
4010 | exp: |
4011 | @dots{} | |
4012 | | exp '/' exp | |
4013 | @{ | |
4014 | @@$.first_column = @@1.first_column; | |
4015 | @@$.first_line = @@1.first_line; | |
4016 | @@$.last_column = @@3.last_column; | |
4017 | @@$.last_line = @@3.last_line; | |
4018 | if ($3) | |
4019 | $$ = $1 / $3; | |
4020 | else | |
4021 | @{ | |
4022 | $$ = 1; | |
4023 | fprintf (stderr, | |
4024 | "Division by zero, l%d,c%d-l%d,c%d", | |
4025 | @@3.first_line, @@3.first_column, | |
4026 | @@3.last_line, @@3.last_column); | |
4027 | @} | |
4028 | @} | |
847bf1f5 AD |
4029 | @end group |
4030 | @end example | |
4031 | ||
3e259915 | 4032 | As for semantic values, there is a default action for locations that is |
72d2299c | 4033 | run each time a rule is matched. It sets the beginning of @code{@@$} to the |
3e259915 | 4034 | beginning of the first symbol, and the end of @code{@@$} to the end of the |
79282c6c | 4035 | last symbol. |
3e259915 | 4036 | |
72d2299c | 4037 | With this default action, the location tracking can be fully automatic. The |
3e259915 MA |
4038 | example above simply rewrites this way: |
4039 | ||
4040 | @example | |
4041 | @group | |
de6be119 AD |
4042 | exp: |
4043 | @dots{} | |
4044 | | exp '/' exp | |
4045 | @{ | |
4046 | if ($3) | |
4047 | $$ = $1 / $3; | |
4048 | else | |
4049 | @{ | |
4050 | $$ = 1; | |
4051 | fprintf (stderr, | |
4052 | "Division by zero, l%d,c%d-l%d,c%d", | |
4053 | @@3.first_line, @@3.first_column, | |
4054 | @@3.last_line, @@3.last_column); | |
4055 | @} | |
4056 | @} | |
3e259915 MA |
4057 | @end group |
4058 | @end example | |
847bf1f5 | 4059 | |
32c29292 | 4060 | @vindex yylloc |
742e4900 | 4061 | It is also possible to access the location of the lookahead token, if any, |
32c29292 JD |
4062 | from a semantic action. |
4063 | This location is stored in @code{yylloc}. | |
4064 | @xref{Action Features, ,Special Features for Use in Actions}. | |
4065 | ||
342b8b6e | 4066 | @node Location Default Action |
847bf1f5 AD |
4067 | @subsection Default Action for Locations |
4068 | @vindex YYLLOC_DEFAULT | |
35430378 | 4069 | @cindex GLR parsers and @code{YYLLOC_DEFAULT} |
847bf1f5 | 4070 | |
72d2299c | 4071 | Actually, actions are not the best place to compute locations. Since |
704a47c4 AD |
4072 | locations are much more general than semantic values, there is room in |
4073 | the output parser to redefine the default action to take for each | |
72d2299c | 4074 | rule. The @code{YYLLOC_DEFAULT} macro is invoked each time a rule is |
96b93a3d PE |
4075 | matched, before the associated action is run. It is also invoked |
4076 | while processing a syntax error, to compute the error's location. | |
35430378 | 4077 | Before reporting an unresolvable syntactic ambiguity, a GLR |
8710fc41 JD |
4078 | parser invokes @code{YYLLOC_DEFAULT} recursively to compute the location |
4079 | of that ambiguity. | |
847bf1f5 | 4080 | |
3e259915 | 4081 | Most of the time, this macro is general enough to suppress location |
79282c6c | 4082 | dedicated code from semantic actions. |
847bf1f5 | 4083 | |
72d2299c | 4084 | The @code{YYLLOC_DEFAULT} macro takes three parameters. The first one is |
96b93a3d | 4085 | the location of the grouping (the result of the computation). When a |
766de5eb | 4086 | rule is matched, the second parameter identifies locations of |
96b93a3d | 4087 | all right hand side elements of the rule being matched, and the third |
8710fc41 | 4088 | parameter is the size of the rule's right hand side. |
35430378 | 4089 | When a GLR parser reports an ambiguity, which of multiple candidate |
8710fc41 JD |
4090 | right hand sides it passes to @code{YYLLOC_DEFAULT} is undefined. |
4091 | When processing a syntax error, the second parameter identifies locations | |
4092 | of the symbols that were discarded during error processing, and the third | |
96b93a3d | 4093 | parameter is the number of discarded symbols. |
847bf1f5 | 4094 | |
766de5eb | 4095 | By default, @code{YYLLOC_DEFAULT} is defined this way: |
847bf1f5 | 4096 | |
ea118b72 | 4097 | @example |
847bf1f5 | 4098 | @group |
ea118b72 AD |
4099 | # define YYLLOC_DEFAULT(Cur, Rhs, N) \ |
4100 | do \ | |
4101 | if (N) \ | |
4102 | @{ \ | |
4103 | (Cur).first_line = YYRHSLOC(Rhs, 1).first_line; \ | |
4104 | (Cur).first_column = YYRHSLOC(Rhs, 1).first_column; \ | |
4105 | (Cur).last_line = YYRHSLOC(Rhs, N).last_line; \ | |
4106 | (Cur).last_column = YYRHSLOC(Rhs, N).last_column; \ | |
4107 | @} \ | |
4108 | else \ | |
4109 | @{ \ | |
4110 | (Cur).first_line = (Cur).last_line = \ | |
4111 | YYRHSLOC(Rhs, 0).last_line; \ | |
4112 | (Cur).first_column = (Cur).last_column = \ | |
4113 | YYRHSLOC(Rhs, 0).last_column; \ | |
4114 | @} \ | |
4115 | while (0) | |
847bf1f5 | 4116 | @end group |
ea118b72 | 4117 | @end example |
676385e2 | 4118 | |
2c0f9706 | 4119 | @noindent |
766de5eb PE |
4120 | where @code{YYRHSLOC (rhs, k)} is the location of the @var{k}th symbol |
4121 | in @var{rhs} when @var{k} is positive, and the location of the symbol | |
f28ac696 | 4122 | just before the reduction when @var{k} and @var{n} are both zero. |
676385e2 | 4123 | |
3e259915 | 4124 | When defining @code{YYLLOC_DEFAULT}, you should consider that: |
847bf1f5 | 4125 | |
3e259915 | 4126 | @itemize @bullet |
79282c6c | 4127 | @item |
72d2299c | 4128 | All arguments are free of side-effects. However, only the first one (the |
3e259915 | 4129 | result) should be modified by @code{YYLLOC_DEFAULT}. |
847bf1f5 | 4130 | |
3e259915 | 4131 | @item |
766de5eb PE |
4132 | For consistency with semantic actions, valid indexes within the |
4133 | right hand side range from 1 to @var{n}. When @var{n} is zero, only 0 is a | |
4134 | valid index, and it refers to the symbol just before the reduction. | |
4135 | During error processing @var{n} is always positive. | |
0ae99356 PE |
4136 | |
4137 | @item | |
4138 | Your macro should parenthesize its arguments, if need be, since the | |
4139 | actual arguments may not be surrounded by parentheses. Also, your | |
4140 | macro should expand to something that can be used as a single | |
4141 | statement when it is followed by a semicolon. | |
3e259915 | 4142 | @end itemize |
847bf1f5 | 4143 | |
908c8647 | 4144 | @node Named References |
ce24f7f5 | 4145 | @section Named References |
908c8647 JD |
4146 | @cindex named references |
4147 | ||
7d31f092 JD |
4148 | As described in the preceding sections, the traditional way to refer to any |
4149 | semantic value or location is a @dfn{positional reference}, which takes the | |
4150 | form @code{$@var{n}}, @code{$$}, @code{@@@var{n}}, and @code{@@$}. However, | |
4151 | such a reference is not very descriptive. Moreover, if you later decide to | |
4152 | insert or remove symbols in the right-hand side of a grammar rule, the need | |
4153 | to renumber such references can be tedious and error-prone. | |
4154 | ||
4155 | To avoid these issues, you can also refer to a semantic value or location | |
4156 | using a @dfn{named reference}. First of all, original symbol names may be | |
4157 | used as named references. For example: | |
908c8647 JD |
4158 | |
4159 | @example | |
4160 | @group | |
4161 | invocation: op '(' args ')' | |
4162 | @{ $invocation = new_invocation ($op, $args, @@invocation); @} | |
4163 | @end group | |
4164 | @end example | |
4165 | ||
4166 | @noindent | |
7d31f092 | 4167 | Positional and named references can be mixed arbitrarily. For example: |
908c8647 JD |
4168 | |
4169 | @example | |
4170 | @group | |
4171 | invocation: op '(' args ')' | |
4172 | @{ $$ = new_invocation ($op, $args, @@$); @} | |
4173 | @end group | |
4174 | @end example | |
4175 | ||
4176 | @noindent | |
4177 | However, sometimes regular symbol names are not sufficient due to | |
4178 | ambiguities: | |
4179 | ||
4180 | @example | |
4181 | @group | |
4182 | exp: exp '/' exp | |
4183 | @{ $exp = $exp / $exp; @} // $exp is ambiguous. | |
4184 | ||
4185 | exp: exp '/' exp | |
4186 | @{ $$ = $1 / $exp; @} // One usage is ambiguous. | |
4187 | ||
4188 | exp: exp '/' exp | |
4189 | @{ $$ = $1 / $3; @} // No error. | |
4190 | @end group | |
4191 | @end example | |
4192 | ||
4193 | @noindent | |
4194 | When ambiguity occurs, explicitly declared names may be used for values and | |
4195 | locations. Explicit names are declared as a bracketed name after a symbol | |
4196 | appearance in rule definitions. For example: | |
4197 | @example | |
4198 | @group | |
4199 | exp[result]: exp[left] '/' exp[right] | |
4200 | @{ $result = $left / $right; @} | |
4201 | @end group | |
4202 | @end example | |
4203 | ||
4204 | @noindent | |
ce24f7f5 JD |
4205 | In order to access a semantic value generated by a mid-rule action, an |
4206 | explicit name may also be declared by putting a bracketed name after the | |
4207 | closing brace of the mid-rule action code: | |
908c8647 JD |
4208 | @example |
4209 | @group | |
4210 | exp[res]: exp[x] '+' @{$left = $x;@}[left] exp[right] | |
4211 | @{ $res = $left + $right; @} | |
4212 | @end group | |
4213 | @end example | |
4214 | ||
4215 | @noindent | |
4216 | ||
4217 | In references, in order to specify names containing dots and dashes, an explicit | |
4218 | bracketed syntax @code{$[name]} and @code{@@[name]} must be used: | |
4219 | @example | |
4220 | @group | |
14f4455e | 4221 | if-stmt: "if" '(' expr ')' "then" then.stmt ';' |
908c8647 JD |
4222 | @{ $[if-stmt] = new_if_stmt ($expr, $[then.stmt]); @} |
4223 | @end group | |
4224 | @end example | |
4225 | ||
4226 | It often happens that named references are followed by a dot, dash or other | |
4227 | C punctuation marks and operators. By default, Bison will read | |
ce24f7f5 JD |
4228 | @samp{$name.suffix} as a reference to symbol value @code{$name} followed by |
4229 | @samp{.suffix}, i.e., an access to the @code{suffix} field of the semantic | |
4230 | value. In order to force Bison to recognize @samp{name.suffix} in its | |
4231 | entirety as the name of a semantic value, the bracketed syntax | |
4232 | @samp{$[name.suffix]} must be used. | |
4233 | ||
4234 | The named references feature is experimental. More user feedback will help | |
4235 | to stabilize it. | |
908c8647 | 4236 | |
342b8b6e | 4237 | @node Declarations |
bfa74976 RS |
4238 | @section Bison Declarations |
4239 | @cindex declarations, Bison | |
4240 | @cindex Bison declarations | |
4241 | ||
4242 | The @dfn{Bison declarations} section of a Bison grammar defines the symbols | |
4243 | used in formulating the grammar and the data types of semantic values. | |
4244 | @xref{Symbols}. | |
4245 | ||
4246 | All token type names (but not single-character literal tokens such as | |
4247 | @code{'+'} and @code{'*'}) must be declared. Nonterminal symbols must be | |
4248 | declared if you need to specify which data type to use for the semantic | |
4249 | value (@pxref{Multiple Types, ,More Than One Value Type}). | |
4250 | ||
9913d6e4 JD |
4251 | The first rule in the grammar file also specifies the start symbol, by |
4252 | default. If you want some other symbol to be the start symbol, you | |
4253 | must declare it explicitly (@pxref{Language and Grammar, ,Languages | |
4254 | and Context-Free Grammars}). | |
bfa74976 RS |
4255 | |
4256 | @menu | |
b50d2359 | 4257 | * Require Decl:: Requiring a Bison version. |
bfa74976 RS |
4258 | * Token Decl:: Declaring terminal symbols. |
4259 | * Precedence Decl:: Declaring terminals with precedence and associativity. | |
4260 | * Union Decl:: Declaring the set of all semantic value types. | |
4261 | * Type Decl:: Declaring the choice of type for a nonterminal symbol. | |
18d192f0 | 4262 | * Initial Action Decl:: Code run before parsing starts. |
72f889cc | 4263 | * Destructor Decl:: Declaring how symbols are freed. |
56d60c19 | 4264 | * Printer Decl:: Declaring how symbol values are displayed. |
d6328241 | 4265 | * Expect Decl:: Suppressing warnings about parsing conflicts. |
bfa74976 RS |
4266 | * Start Decl:: Specifying the start symbol. |
4267 | * Pure Decl:: Requesting a reentrant parser. | |
9987d1b3 | 4268 | * Push Decl:: Requesting a push parser. |
bfa74976 | 4269 | * Decl Summary:: Table of all Bison declarations. |
2f4518a1 | 4270 | * %define Summary:: Defining variables to adjust Bison's behavior. |
8e6f2266 | 4271 | * %code Summary:: Inserting code into the parser source. |
bfa74976 RS |
4272 | @end menu |
4273 | ||
b50d2359 AD |
4274 | @node Require Decl |
4275 | @subsection Require a Version of Bison | |
4276 | @cindex version requirement | |
4277 | @cindex requiring a version of Bison | |
4278 | @findex %require | |
4279 | ||
4280 | You may require the minimum version of Bison to process the grammar. If | |
9b8a5ce0 AD |
4281 | the requirement is not met, @command{bison} exits with an error (exit |
4282 | status 63). | |
b50d2359 AD |
4283 | |
4284 | @example | |
4285 | %require "@var{version}" | |
4286 | @end example | |
4287 | ||
342b8b6e | 4288 | @node Token Decl |
bfa74976 RS |
4289 | @subsection Token Type Names |
4290 | @cindex declaring token type names | |
4291 | @cindex token type names, declaring | |
931c7513 | 4292 | @cindex declaring literal string tokens |
bfa74976 RS |
4293 | @findex %token |
4294 | ||
4295 | The basic way to declare a token type name (terminal symbol) is as follows: | |
4296 | ||
4297 | @example | |
4298 | %token @var{name} | |
4299 | @end example | |
4300 | ||
4301 | Bison will convert this into a @code{#define} directive in | |
4302 | the parser, so that the function @code{yylex} (if it is in this file) | |
4303 | can use the name @var{name} to stand for this token type's code. | |
4304 | ||
14ded682 AD |
4305 | Alternatively, you can use @code{%left}, @code{%right}, or |
4306 | @code{%nonassoc} instead of @code{%token}, if you wish to specify | |
4307 | associativity and precedence. @xref{Precedence Decl, ,Operator | |
4308 | Precedence}. | |
bfa74976 RS |
4309 | |
4310 | You can explicitly specify the numeric code for a token type by appending | |
b1cc23c4 | 4311 | a nonnegative decimal or hexadecimal integer value in the field immediately |
1452af69 | 4312 | following the token name: |
bfa74976 RS |
4313 | |
4314 | @example | |
4315 | %token NUM 300 | |
1452af69 | 4316 | %token XNUM 0x12d // a GNU extension |
bfa74976 RS |
4317 | @end example |
4318 | ||
4319 | @noindent | |
4320 | It is generally best, however, to let Bison choose the numeric codes for | |
4321 | all token types. Bison will automatically select codes that don't conflict | |
e966383b | 4322 | with each other or with normal characters. |
bfa74976 RS |
4323 | |
4324 | In the event that the stack type is a union, you must augment the | |
4325 | @code{%token} or other token declaration to include the data type | |
704a47c4 AD |
4326 | alternative delimited by angle-brackets (@pxref{Multiple Types, ,More |
4327 | Than One Value Type}). | |
bfa74976 RS |
4328 | |
4329 | For example: | |
4330 | ||
4331 | @example | |
4332 | @group | |
4333 | %union @{ /* define stack type */ | |
4334 | double val; | |
4335 | symrec *tptr; | |
4336 | @} | |
4337 | %token <val> NUM /* define token NUM and its type */ | |
4338 | @end group | |
4339 | @end example | |
4340 | ||
931c7513 RS |
4341 | You can associate a literal string token with a token type name by |
4342 | writing the literal string at the end of a @code{%token} | |
4343 | declaration which declares the name. For example: | |
4344 | ||
4345 | @example | |
4346 | %token arrow "=>" | |
4347 | @end example | |
4348 | ||
4349 | @noindent | |
4350 | For example, a grammar for the C language might specify these names with | |
4351 | equivalent literal string tokens: | |
4352 | ||
4353 | @example | |
4354 | %token <operator> OR "||" | |
4355 | %token <operator> LE 134 "<=" | |
4356 | %left OR "<=" | |
4357 | @end example | |
4358 | ||
4359 | @noindent | |
4360 | Once you equate the literal string and the token name, you can use them | |
4361 | interchangeably in further declarations or the grammar rules. The | |
4362 | @code{yylex} function can use the token name or the literal string to | |
4363 | obtain the token type code number (@pxref{Calling Convention}). | |
b1cc23c4 JD |
4364 | Syntax error messages passed to @code{yyerror} from the parser will reference |
4365 | the literal string instead of the token name. | |
4366 | ||
4367 | The token numbered as 0 corresponds to end of file; the following line | |
4368 | allows for nicer error messages referring to ``end of file'' instead | |
4369 | of ``$end'': | |
4370 | ||
4371 | @example | |
4372 | %token END 0 "end of file" | |
4373 | @end example | |
931c7513 | 4374 | |
342b8b6e | 4375 | @node Precedence Decl |
bfa74976 RS |
4376 | @subsection Operator Precedence |
4377 | @cindex precedence declarations | |
4378 | @cindex declaring operator precedence | |
4379 | @cindex operator precedence, declaring | |
4380 | ||
4381 | Use the @code{%left}, @code{%right} or @code{%nonassoc} declaration to | |
4382 | declare a token and specify its precedence and associativity, all at | |
4383 | once. These are called @dfn{precedence declarations}. | |
704a47c4 AD |
4384 | @xref{Precedence, ,Operator Precedence}, for general information on |
4385 | operator precedence. | |
bfa74976 | 4386 | |
ab7f29f8 | 4387 | The syntax of a precedence declaration is nearly the same as that of |
bfa74976 RS |
4388 | @code{%token}: either |
4389 | ||
4390 | @example | |
4391 | %left @var{symbols}@dots{} | |
4392 | @end example | |
4393 | ||
4394 | @noindent | |
4395 | or | |
4396 | ||
4397 | @example | |
4398 | %left <@var{type}> @var{symbols}@dots{} | |
4399 | @end example | |
4400 | ||
4401 | And indeed any of these declarations serves the purposes of @code{%token}. | |
4402 | But in addition, they specify the associativity and relative precedence for | |
4403 | all the @var{symbols}: | |
4404 | ||
4405 | @itemize @bullet | |
4406 | @item | |
4407 | The associativity of an operator @var{op} determines how repeated uses | |
4408 | of the operator nest: whether @samp{@var{x} @var{op} @var{y} @var{op} | |
4409 | @var{z}} is parsed by grouping @var{x} with @var{y} first or by | |
4410 | grouping @var{y} with @var{z} first. @code{%left} specifies | |
4411 | left-associativity (grouping @var{x} with @var{y} first) and | |
4412 | @code{%right} specifies right-associativity (grouping @var{y} with | |
4413 | @var{z} first). @code{%nonassoc} specifies no associativity, which | |
4414 | means that @samp{@var{x} @var{op} @var{y} @var{op} @var{z}} is | |
4415 | considered a syntax error. | |
4416 | ||
4417 | @item | |
4418 | The precedence of an operator determines how it nests with other operators. | |
4419 | All the tokens declared in a single precedence declaration have equal | |
4420 | precedence and nest together according to their associativity. | |
4421 | When two tokens declared in different precedence declarations associate, | |
4422 | the one declared later has the higher precedence and is grouped first. | |
4423 | @end itemize | |
4424 | ||
ab7f29f8 JD |
4425 | For backward compatibility, there is a confusing difference between the |
4426 | argument lists of @code{%token} and precedence declarations. | |
4427 | Only a @code{%token} can associate a literal string with a token type name. | |
4428 | A precedence declaration always interprets a literal string as a reference to a | |
4429 | separate token. | |
4430 | For example: | |
4431 | ||
4432 | @example | |
4433 | %left OR "<=" // Does not declare an alias. | |
4434 | %left OR 134 "<=" 135 // Declares 134 for OR and 135 for "<=". | |
4435 | @end example | |
4436 | ||
342b8b6e | 4437 | @node Union Decl |
bfa74976 RS |
4438 | @subsection The Collection of Value Types |
4439 | @cindex declaring value types | |
4440 | @cindex value types, declaring | |
4441 | @findex %union | |
4442 | ||
287c78f6 PE |
4443 | The @code{%union} declaration specifies the entire collection of |
4444 | possible data types for semantic values. The keyword @code{%union} is | |
4445 | followed by braced code containing the same thing that goes inside a | |
4446 | @code{union} in C@. | |
bfa74976 RS |
4447 | |
4448 | For example: | |
4449 | ||
4450 | @example | |
4451 | @group | |
4452 | %union @{ | |
4453 | double val; | |
4454 | symrec *tptr; | |
4455 | @} | |
4456 | @end group | |
4457 | @end example | |
4458 | ||
4459 | @noindent | |
4460 | This says that the two alternative types are @code{double} and @code{symrec | |
4461 | *}. They are given names @code{val} and @code{tptr}; these names are used | |
4462 | in the @code{%token} and @code{%type} declarations to pick one of the types | |
4463 | for a terminal or nonterminal symbol (@pxref{Type Decl, ,Nonterminal Symbols}). | |
4464 | ||
35430378 | 4465 | As an extension to POSIX, a tag is allowed after the |
6273355b PE |
4466 | @code{union}. For example: |
4467 | ||
4468 | @example | |
4469 | @group | |
4470 | %union value @{ | |
4471 | double val; | |
4472 | symrec *tptr; | |
4473 | @} | |
4474 | @end group | |
4475 | @end example | |
4476 | ||
d6ca7905 | 4477 | @noindent |
6273355b PE |
4478 | specifies the union tag @code{value}, so the corresponding C type is |
4479 | @code{union value}. If you do not specify a tag, it defaults to | |
4480 | @code{YYSTYPE}. | |
4481 | ||
35430378 | 4482 | As another extension to POSIX, you may specify multiple |
d6ca7905 PE |
4483 | @code{%union} declarations; their contents are concatenated. However, |
4484 | only the first @code{%union} declaration can specify a tag. | |
4485 | ||
6273355b | 4486 | Note that, unlike making a @code{union} declaration in C, you need not write |
bfa74976 RS |
4487 | a semicolon after the closing brace. |
4488 | ||
ddc8ede1 PE |
4489 | Instead of @code{%union}, you can define and use your own union type |
4490 | @code{YYSTYPE} if your grammar contains at least one | |
4491 | @samp{<@var{type}>} tag. For example, you can put the following into | |
4492 | a header file @file{parser.h}: | |
4493 | ||
4494 | @example | |
4495 | @group | |
4496 | union YYSTYPE @{ | |
4497 | double val; | |
4498 | symrec *tptr; | |
4499 | @}; | |
4500 | typedef union YYSTYPE YYSTYPE; | |
4501 | @end group | |
4502 | @end example | |
4503 | ||
4504 | @noindent | |
4505 | and then your grammar can use the following | |
4506 | instead of @code{%union}: | |
4507 | ||
4508 | @example | |
4509 | @group | |
4510 | %@{ | |
4511 | #include "parser.h" | |
4512 | %@} | |
4513 | %type <val> expr | |
4514 | %token <tptr> ID | |
4515 | @end group | |
4516 | @end example | |
4517 | ||
342b8b6e | 4518 | @node Type Decl |
bfa74976 RS |
4519 | @subsection Nonterminal Symbols |
4520 | @cindex declaring value types, nonterminals | |
4521 | @cindex value types, nonterminals, declaring | |
4522 | @findex %type | |
4523 | ||
4524 | @noindent | |
4525 | When you use @code{%union} to specify multiple value types, you must | |
4526 | declare the value type of each nonterminal symbol for which values are | |
4527 | used. This is done with a @code{%type} declaration, like this: | |
4528 | ||
4529 | @example | |
4530 | %type <@var{type}> @var{nonterminal}@dots{} | |
4531 | @end example | |
4532 | ||
4533 | @noindent | |
704a47c4 AD |
4534 | Here @var{nonterminal} is the name of a nonterminal symbol, and |
4535 | @var{type} is the name given in the @code{%union} to the alternative | |
4536 | that you want (@pxref{Union Decl, ,The Collection of Value Types}). You | |
4537 | can give any number of nonterminal symbols in the same @code{%type} | |
4538 | declaration, if they have the same value type. Use spaces to separate | |
4539 | the symbol names. | |
bfa74976 | 4540 | |
931c7513 RS |
4541 | You can also declare the value type of a terminal symbol. To do this, |
4542 | use the same @code{<@var{type}>} construction in a declaration for the | |
4543 | terminal symbol. All kinds of token declarations allow | |
4544 | @code{<@var{type}>}. | |
4545 | ||
18d192f0 AD |
4546 | @node Initial Action Decl |
4547 | @subsection Performing Actions before Parsing | |
4548 | @findex %initial-action | |
4549 | ||
4550 | Sometimes your parser needs to perform some initializations before | |
4551 | parsing. The @code{%initial-action} directive allows for such arbitrary | |
4552 | code. | |
4553 | ||
4554 | @deffn {Directive} %initial-action @{ @var{code} @} | |
4555 | @findex %initial-action | |
287c78f6 | 4556 | Declare that the braced @var{code} must be invoked before parsing each time |
cd735a8c AD |
4557 | @code{yyparse} is called. The @var{code} may use @code{$$} (or |
4558 | @code{$<@var{tag}>$}) and @code{@@$} --- initial value and location of the | |
4559 | lookahead --- and the @code{%parse-param}. | |
18d192f0 AD |
4560 | @end deffn |
4561 | ||
451364ed AD |
4562 | For instance, if your locations use a file name, you may use |
4563 | ||
4564 | @example | |
48b16bbc | 4565 | %parse-param @{ char const *file_name @}; |
451364ed AD |
4566 | %initial-action |
4567 | @{ | |
4626a15d | 4568 | @@$.initialize (file_name); |
451364ed AD |
4569 | @}; |
4570 | @end example | |
4571 | ||
18d192f0 | 4572 | |
72f889cc AD |
4573 | @node Destructor Decl |
4574 | @subsection Freeing Discarded Symbols | |
4575 | @cindex freeing discarded symbols | |
4576 | @findex %destructor | |
12e35840 | 4577 | @findex <*> |
3ebecc24 | 4578 | @findex <> |
a85284cf AD |
4579 | During error recovery (@pxref{Error Recovery}), symbols already pushed |
4580 | on the stack and tokens coming from the rest of the file are discarded | |
4581 | until the parser falls on its feet. If the parser runs out of memory, | |
9d9b8b70 | 4582 | or if it returns via @code{YYABORT} or @code{YYACCEPT}, all the |
a85284cf AD |
4583 | symbols on the stack must be discarded. Even if the parser succeeds, it |
4584 | must discard the start symbol. | |
258b75ca PE |
4585 | |
4586 | When discarded symbols convey heap based information, this memory is | |
4587 | lost. While this behavior can be tolerable for batch parsers, such as | |
4b367315 AD |
4588 | in traditional compilers, it is unacceptable for programs like shells or |
4589 | protocol implementations that may parse and execute indefinitely. | |
258b75ca | 4590 | |
a85284cf AD |
4591 | The @code{%destructor} directive defines code that is called when a |
4592 | symbol is automatically discarded. | |
72f889cc AD |
4593 | |
4594 | @deffn {Directive} %destructor @{ @var{code} @} @var{symbols} | |
4595 | @findex %destructor | |
287c78f6 | 4596 | Invoke the braced @var{code} whenever the parser discards one of the |
4982f078 AD |
4597 | @var{symbols}. Within @var{code}, @code{$$} (or @code{$<@var{tag}>$}) |
4598 | designates the semantic value associated with the discarded symbol, and | |
4599 | @code{@@$} designates its location. The additional parser parameters are | |
4600 | also available (@pxref{Parser Function, , The Parser Function | |
4601 | @code{yyparse}}). | |
ec5479ce | 4602 | |
b2a0b7ca JD |
4603 | When a symbol is listed among @var{symbols}, its @code{%destructor} is called a |
4604 | per-symbol @code{%destructor}. | |
4605 | You may also define a per-type @code{%destructor} by listing a semantic type | |
12e35840 | 4606 | tag among @var{symbols}. |
b2a0b7ca | 4607 | In that case, the parser will invoke this @var{code} whenever it discards any |
12e35840 | 4608 | grammar symbol that has that semantic type tag unless that symbol has its own |
b2a0b7ca JD |
4609 | per-symbol @code{%destructor}. |
4610 | ||
12e35840 | 4611 | Finally, you can define two different kinds of default @code{%destructor}s. |
85894313 JD |
4612 | (These default forms are experimental. |
4613 | More user feedback will help to determine whether they should become permanent | |
4614 | features.) | |
3ebecc24 | 4615 | You can place each of @code{<*>} and @code{<>} in the @var{symbols} list of |
12e35840 JD |
4616 | exactly one @code{%destructor} declaration in your grammar file. |
4617 | The parser will invoke the @var{code} associated with one of these whenever it | |
4618 | discards any user-defined grammar symbol that has no per-symbol and no per-type | |
4619 | @code{%destructor}. | |
4620 | The parser uses the @var{code} for @code{<*>} in the case of such a grammar | |
4621 | symbol for which you have formally declared a semantic type tag (@code{%type} | |
4622 | counts as such a declaration, but @code{$<tag>$} does not). | |
3ebecc24 | 4623 | The parser uses the @var{code} for @code{<>} in the case of such a grammar |
12e35840 | 4624 | symbol that has no declared semantic type tag. |
72f889cc AD |
4625 | @end deffn |
4626 | ||
b2a0b7ca | 4627 | @noindent |
12e35840 | 4628 | For example: |
72f889cc | 4629 | |
ea118b72 | 4630 | @example |
ec5479ce JD |
4631 | %union @{ char *string; @} |
4632 | %token <string> STRING1 | |
4633 | %token <string> STRING2 | |
4634 | %type <string> string1 | |
4635 | %type <string> string2 | |
b2a0b7ca JD |
4636 | %union @{ char character; @} |
4637 | %token <character> CHR | |
4638 | %type <character> chr | |
12e35840 JD |
4639 | %token TAGLESS |
4640 | ||
b2a0b7ca | 4641 | %destructor @{ @} <character> |
12e35840 JD |
4642 | %destructor @{ free ($$); @} <*> |
4643 | %destructor @{ free ($$); printf ("%d", @@$.first_line); @} STRING1 string1 | |
3ebecc24 | 4644 | %destructor @{ printf ("Discarding tagless symbol.\n"); @} <> |
ea118b72 | 4645 | @end example |
72f889cc AD |
4646 | |
4647 | @noindent | |
b2a0b7ca JD |
4648 | guarantees that, when the parser discards any user-defined symbol that has a |
4649 | semantic type tag other than @code{<character>}, it passes its semantic value | |
12e35840 | 4650 | to @code{free} by default. |
ec5479ce JD |
4651 | However, when the parser discards a @code{STRING1} or a @code{string1}, it also |
4652 | prints its line number to @code{stdout}. | |
4653 | It performs only the second @code{%destructor} in this case, so it invokes | |
4654 | @code{free} only once. | |
12e35840 JD |
4655 | Finally, the parser merely prints a message whenever it discards any symbol, |
4656 | such as @code{TAGLESS}, that has no semantic type tag. | |
4657 | ||
4658 | A Bison-generated parser invokes the default @code{%destructor}s only for | |
4659 | user-defined as opposed to Bison-defined symbols. | |
4660 | For example, the parser will not invoke either kind of default | |
4661 | @code{%destructor} for the special Bison-defined symbols @code{$accept}, | |
4662 | @code{$undefined}, or @code{$end} (@pxref{Table of Symbols, ,Bison Symbols}), | |
4663 | none of which you can reference in your grammar. | |
4664 | It also will not invoke either for the @code{error} token (@pxref{Table of | |
4665 | Symbols, ,error}), which is always defined by Bison regardless of whether you | |
4666 | reference it in your grammar. | |
4667 | However, it may invoke one of them for the end token (token 0) if you | |
4668 | redefine it from @code{$end} to, for example, @code{END}: | |
3508ce36 | 4669 | |
ea118b72 | 4670 | @example |
3508ce36 | 4671 | %token END 0 |
ea118b72 | 4672 | @end example |
3508ce36 | 4673 | |
12e35840 JD |
4674 | @cindex actions in mid-rule |
4675 | @cindex mid-rule actions | |
4676 | Finally, Bison will never invoke a @code{%destructor} for an unreferenced | |
4677 | mid-rule semantic value (@pxref{Mid-Rule Actions,,Actions in Mid-Rule}). | |
ce24f7f5 JD |
4678 | That is, Bison does not consider a mid-rule to have a semantic value if you |
4679 | do not reference @code{$$} in the mid-rule's action or @code{$@var{n}} | |
4680 | (where @var{n} is the right-hand side symbol position of the mid-rule) in | |
4681 | any later action in that rule. However, if you do reference either, the | |
4682 | Bison-generated parser will invoke the @code{<>} @code{%destructor} whenever | |
4683 | it discards the mid-rule symbol. | |
12e35840 | 4684 | |
3508ce36 JD |
4685 | @ignore |
4686 | @noindent | |
4687 | In the future, it may be possible to redefine the @code{error} token as a | |
4688 | nonterminal that captures the discarded symbols. | |
4689 | In that case, the parser will invoke the default destructor for it as well. | |
4690 | @end ignore | |
4691 | ||
e757bb10 AD |
4692 | @sp 1 |
4693 | ||
4694 | @cindex discarded symbols | |
4695 | @dfn{Discarded symbols} are the following: | |
4696 | ||
4697 | @itemize | |
4698 | @item | |
4699 | stacked symbols popped during the first phase of error recovery, | |
4700 | @item | |
4701 | incoming terminals during the second phase of error recovery, | |
4702 | @item | |
742e4900 | 4703 | the current lookahead and the entire stack (except the current |
9d9b8b70 | 4704 | right-hand side symbols) when the parser returns immediately, and |
258b75ca | 4705 | @item |
d3e4409a AD |
4706 | the current lookahead and the entire stack (including the current right-hand |
4707 | side symbols) when the C++ parser (@file{lalr1.cc}) catches an exception in | |
4708 | @code{parse}, | |
4709 | @item | |
258b75ca | 4710 | the start symbol, when the parser succeeds. |
e757bb10 AD |
4711 | @end itemize |
4712 | ||
9d9b8b70 PE |
4713 | The parser can @dfn{return immediately} because of an explicit call to |
4714 | @code{YYABORT} or @code{YYACCEPT}, or failed error recovery, or memory | |
4715 | exhaustion. | |
4716 | ||
29553547 | 4717 | Right-hand side symbols of a rule that explicitly triggers a syntax |
9d9b8b70 PE |
4718 | error via @code{YYERROR} are not discarded automatically. As a rule |
4719 | of thumb, destructors are invoked only when user actions cannot manage | |
a85284cf | 4720 | the memory. |
e757bb10 | 4721 | |
56d60c19 AD |
4722 | @node Printer Decl |
4723 | @subsection Printing Semantic Values | |
4724 | @cindex printing semantic values | |
4725 | @findex %printer | |
4726 | @findex <*> | |
4727 | @findex <> | |
4728 | When run-time traces are enabled (@pxref{Tracing, ,Tracing Your Parser}), | |
4729 | the parser reports its actions, such as reductions. When a symbol involved | |
4730 | in an action is reported, only its kind is displayed, as the parser cannot | |
4731 | know how semantic values should be formatted. | |
4732 | ||
4733 | The @code{%printer} directive defines code that is called when a symbol is | |
4734 | reported. Its syntax is the same as @code{%destructor} (@pxref{Destructor | |
4735 | Decl, , Freeing Discarded Symbols}). | |
4736 | ||
4737 | @deffn {Directive} %printer @{ @var{code} @} @var{symbols} | |
4738 | @findex %printer | |
4739 | @vindex yyoutput | |
4740 | @c This is the same text as for %destructor. | |
4741 | Invoke the braced @var{code} whenever the parser displays one of the | |
4742 | @var{symbols}. Within @var{code}, @code{yyoutput} denotes the output stream | |
4982f078 AD |
4743 | (a @code{FILE*} in C, and an @code{std::ostream&} in C++), @code{$$} (or |
4744 | @code{$<@var{tag}>$}) designates the semantic value associated with the | |
4745 | symbol, and @code{@@$} its location. The additional parser parameters are | |
4746 | also available (@pxref{Parser Function, , The Parser Function | |
4747 | @code{yyparse}}). | |
56d60c19 AD |
4748 | |
4749 | The @var{symbols} are defined as for @code{%destructor} (@pxref{Destructor | |
4750 | Decl, , Freeing Discarded Symbols}.): they can be per-type (e.g., | |
4751 | @samp{<ival>}), per-symbol (e.g., @samp{exp}, @samp{NUM}, @samp{"float"}), | |
4752 | typed per-default (i.e., @samp{<*>}, or untyped per-default (i.e., | |
4753 | @samp{<>}). | |
4754 | @end deffn | |
4755 | ||
4756 | @noindent | |
4757 | For example: | |
4758 | ||
4759 | @example | |
4760 | %union @{ char *string; @} | |
4761 | %token <string> STRING1 | |
4762 | %token <string> STRING2 | |
4763 | %type <string> string1 | |
4764 | %type <string> string2 | |
4765 | %union @{ char character; @} | |
4766 | %token <character> CHR | |
4767 | %type <character> chr | |
4768 | %token TAGLESS | |
4769 | ||
4770 | %printer @{ fprintf (yyoutput, "'%c'", $$); @} <character> | |
4771 | %printer @{ fprintf (yyoutput, "&%p", $$); @} <*> | |
4772 | %printer @{ fprintf (yyoutput, "\"%s\"", $$); @} STRING1 string1 | |
4773 | %printer @{ fprintf (yyoutput, "<>"); @} <> | |
4774 | @end example | |
4775 | ||
4776 | @noindent | |
4777 | guarantees that, when the parser print any symbol that has a semantic type | |
4778 | tag other than @code{<character>}, it display the address of the semantic | |
4779 | value by default. However, when the parser displays a @code{STRING1} or a | |
4780 | @code{string1}, it formats it as a string in double quotes. It performs | |
4781 | only the second @code{%printer} in this case, so it prints only once. | |
4782 | Finally, the parser print @samp{<>} for any symbol, such as @code{TAGLESS}, | |
4783 | that has no semantic type tag. See also | |
4784 | ||
4785 | ||
342b8b6e | 4786 | @node Expect Decl |
bfa74976 RS |
4787 | @subsection Suppressing Conflict Warnings |
4788 | @cindex suppressing conflict warnings | |
4789 | @cindex preventing warnings about conflicts | |
4790 | @cindex warnings, preventing | |
4791 | @cindex conflicts, suppressing warnings of | |
4792 | @findex %expect | |
d6328241 | 4793 | @findex %expect-rr |
bfa74976 RS |
4794 | |
4795 | Bison normally warns if there are any conflicts in the grammar | |
7da99ede AD |
4796 | (@pxref{Shift/Reduce, ,Shift/Reduce Conflicts}), but most real grammars |
4797 | have harmless shift/reduce conflicts which are resolved in a predictable | |
4798 | way and would be difficult to eliminate. It is desirable to suppress | |
4799 | the warning about these conflicts unless the number of conflicts | |
4800 | changes. You can do this with the @code{%expect} declaration. | |
bfa74976 RS |
4801 | |
4802 | The declaration looks like this: | |
4803 | ||
4804 | @example | |
4805 | %expect @var{n} | |
4806 | @end example | |
4807 | ||
035aa4a0 PE |
4808 | Here @var{n} is a decimal integer. The declaration says there should |
4809 | be @var{n} shift/reduce conflicts and no reduce/reduce conflicts. | |
4810 | Bison reports an error if the number of shift/reduce conflicts differs | |
4811 | from @var{n}, or if there are any reduce/reduce conflicts. | |
bfa74976 | 4812 | |
34a6c2d1 | 4813 | For deterministic parsers, reduce/reduce conflicts are more |
035aa4a0 | 4814 | serious, and should be eliminated entirely. Bison will always report |
35430378 | 4815 | reduce/reduce conflicts for these parsers. With GLR |
035aa4a0 | 4816 | parsers, however, both kinds of conflicts are routine; otherwise, |
35430378 | 4817 | there would be no need to use GLR parsing. Therefore, it is |
035aa4a0 | 4818 | also possible to specify an expected number of reduce/reduce conflicts |
35430378 | 4819 | in GLR parsers, using the declaration: |
d6328241 PH |
4820 | |
4821 | @example | |
4822 | %expect-rr @var{n} | |
4823 | @end example | |
4824 | ||
bfa74976 RS |
4825 | In general, using @code{%expect} involves these steps: |
4826 | ||
4827 | @itemize @bullet | |
4828 | @item | |
4829 | Compile your grammar without @code{%expect}. Use the @samp{-v} option | |
4830 | to get a verbose list of where the conflicts occur. Bison will also | |
4831 | print the number of conflicts. | |
4832 | ||
4833 | @item | |
4834 | Check each of the conflicts to make sure that Bison's default | |
4835 | resolution is what you really want. If not, rewrite the grammar and | |
4836 | go back to the beginning. | |
4837 | ||
4838 | @item | |
4839 | Add an @code{%expect} declaration, copying the number @var{n} from the | |
35430378 | 4840 | number which Bison printed. With GLR parsers, add an |
035aa4a0 | 4841 | @code{%expect-rr} declaration as well. |
bfa74976 RS |
4842 | @end itemize |
4843 | ||
cf22447c JD |
4844 | Now Bison will report an error if you introduce an unexpected conflict, |
4845 | but will keep silent otherwise. | |
bfa74976 | 4846 | |
342b8b6e | 4847 | @node Start Decl |
bfa74976 RS |
4848 | @subsection The Start-Symbol |
4849 | @cindex declaring the start symbol | |
4850 | @cindex start symbol, declaring | |
4851 | @cindex default start symbol | |
4852 | @findex %start | |
4853 | ||
4854 | Bison assumes by default that the start symbol for the grammar is the first | |
4855 | nonterminal specified in the grammar specification section. The programmer | |
4856 | may override this restriction with the @code{%start} declaration as follows: | |
4857 | ||
4858 | @example | |
4859 | %start @var{symbol} | |
4860 | @end example | |
4861 | ||
342b8b6e | 4862 | @node Pure Decl |
bfa74976 RS |
4863 | @subsection A Pure (Reentrant) Parser |
4864 | @cindex reentrant parser | |
4865 | @cindex pure parser | |
d9df47b6 | 4866 | @findex %define api.pure |
bfa74976 RS |
4867 | |
4868 | A @dfn{reentrant} program is one which does not alter in the course of | |
4869 | execution; in other words, it consists entirely of @dfn{pure} (read-only) | |
4870 | code. Reentrancy is important whenever asynchronous execution is possible; | |
9d9b8b70 PE |
4871 | for example, a nonreentrant program may not be safe to call from a signal |
4872 | handler. In systems with multiple threads of control, a nonreentrant | |
bfa74976 RS |
4873 | program must be called only within interlocks. |
4874 | ||
70811b85 | 4875 | Normally, Bison generates a parser which is not reentrant. This is |
c827f760 PE |
4876 | suitable for most uses, and it permits compatibility with Yacc. (The |
4877 | standard Yacc interfaces are inherently nonreentrant, because they use | |
70811b85 RS |
4878 | statically allocated variables for communication with @code{yylex}, |
4879 | including @code{yylval} and @code{yylloc}.) | |
bfa74976 | 4880 | |
70811b85 | 4881 | Alternatively, you can generate a pure, reentrant parser. The Bison |
d9df47b6 | 4882 | declaration @code{%define api.pure} says that you want the parser to be |
70811b85 | 4883 | reentrant. It looks like this: |
bfa74976 RS |
4884 | |
4885 | @example | |
d9df47b6 | 4886 | %define api.pure |
bfa74976 RS |
4887 | @end example |
4888 | ||
70811b85 RS |
4889 | The result is that the communication variables @code{yylval} and |
4890 | @code{yylloc} become local variables in @code{yyparse}, and a different | |
4891 | calling convention is used for the lexical analyzer function | |
4892 | @code{yylex}. @xref{Pure Calling, ,Calling Conventions for Pure | |
f4101aa6 AD |
4893 | Parsers}, for the details of this. The variable @code{yynerrs} |
4894 | becomes local in @code{yyparse} in pull mode but it becomes a member | |
9987d1b3 | 4895 | of yypstate in push mode. (@pxref{Error Reporting, ,The Error |
70811b85 RS |
4896 | Reporting Function @code{yyerror}}). The convention for calling |
4897 | @code{yyparse} itself is unchanged. | |
4898 | ||
4899 | Whether the parser is pure has nothing to do with the grammar rules. | |
4900 | You can generate either a pure parser or a nonreentrant parser from any | |
4901 | valid grammar. | |
bfa74976 | 4902 | |
9987d1b3 JD |
4903 | @node Push Decl |
4904 | @subsection A Push Parser | |
4905 | @cindex push parser | |
4906 | @cindex push parser | |
812775a0 | 4907 | @findex %define api.push-pull |
9987d1b3 | 4908 | |
59da312b JD |
4909 | (The current push parsing interface is experimental and may evolve. |
4910 | More user feedback will help to stabilize it.) | |
4911 | ||
f4101aa6 AD |
4912 | A pull parser is called once and it takes control until all its input |
4913 | is completely parsed. A push parser, on the other hand, is called | |
9987d1b3 JD |
4914 | each time a new token is made available. |
4915 | ||
f4101aa6 | 4916 | A push parser is typically useful when the parser is part of a |
9987d1b3 | 4917 | main event loop in the client's application. This is typically |
f4101aa6 AD |
4918 | a requirement of a GUI, when the main event loop needs to be triggered |
4919 | within a certain time period. | |
9987d1b3 | 4920 | |
d782395d JD |
4921 | Normally, Bison generates a pull parser. |
4922 | The following Bison declaration says that you want the parser to be a push | |
2f4518a1 | 4923 | parser (@pxref{%define Summary,,api.push-pull}): |
9987d1b3 JD |
4924 | |
4925 | @example | |
f37495f6 | 4926 | %define api.push-pull push |
9987d1b3 JD |
4927 | @end example |
4928 | ||
4929 | In almost all cases, you want to ensure that your push parser is also | |
4930 | a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}). The only | |
f4101aa6 | 4931 | time you should create an impure push parser is to have backwards |
9987d1b3 JD |
4932 | compatibility with the impure Yacc pull mode interface. Unless you know |
4933 | what you are doing, your declarations should look like this: | |
4934 | ||
4935 | @example | |
d9df47b6 | 4936 | %define api.pure |
f37495f6 | 4937 | %define api.push-pull push |
9987d1b3 JD |
4938 | @end example |
4939 | ||
f4101aa6 AD |
4940 | There is a major notable functional difference between the pure push parser |
4941 | and the impure push parser. It is acceptable for a pure push parser to have | |
9987d1b3 JD |
4942 | many parser instances, of the same type of parser, in memory at the same time. |
4943 | An impure push parser should only use one parser at a time. | |
4944 | ||
4945 | When a push parser is selected, Bison will generate some new symbols in | |
f4101aa6 AD |
4946 | the generated parser. @code{yypstate} is a structure that the generated |
4947 | parser uses to store the parser's state. @code{yypstate_new} is the | |
9987d1b3 JD |
4948 | function that will create a new parser instance. @code{yypstate_delete} |
4949 | will free the resources associated with the corresponding parser instance. | |
f4101aa6 | 4950 | Finally, @code{yypush_parse} is the function that should be called whenever a |
9987d1b3 JD |
4951 | token is available to provide the parser. A trivial example |
4952 | of using a pure push parser would look like this: | |
4953 | ||
4954 | @example | |
4955 | int status; | |
4956 | yypstate *ps = yypstate_new (); | |
4957 | do @{ | |
4958 | status = yypush_parse (ps, yylex (), NULL); | |
4959 | @} while (status == YYPUSH_MORE); | |
4960 | yypstate_delete (ps); | |
4961 | @end example | |
4962 | ||
4963 | If the user decided to use an impure push parser, a few things about | |
f4101aa6 | 4964 | the generated parser will change. The @code{yychar} variable becomes |
9987d1b3 JD |
4965 | a global variable instead of a variable in the @code{yypush_parse} function. |
4966 | For this reason, the signature of the @code{yypush_parse} function is | |
f4101aa6 | 4967 | changed to remove the token as a parameter. A nonreentrant push parser |
9987d1b3 JD |
4968 | example would thus look like this: |
4969 | ||
4970 | @example | |
4971 | extern int yychar; | |
4972 | int status; | |
4973 | yypstate *ps = yypstate_new (); | |
4974 | do @{ | |
4975 | yychar = yylex (); | |
4976 | status = yypush_parse (ps); | |
4977 | @} while (status == YYPUSH_MORE); | |
4978 | yypstate_delete (ps); | |
4979 | @end example | |
4980 | ||
f4101aa6 | 4981 | That's it. Notice the next token is put into the global variable @code{yychar} |
9987d1b3 JD |
4982 | for use by the next invocation of the @code{yypush_parse} function. |
4983 | ||
f4101aa6 | 4984 | Bison also supports both the push parser interface along with the pull parser |
9987d1b3 | 4985 | interface in the same generated parser. In order to get this functionality, |
f37495f6 JD |
4986 | you should replace the @code{%define api.push-pull push} declaration with the |
4987 | @code{%define api.push-pull both} declaration. Doing this will create all of | |
c373bf8b | 4988 | the symbols mentioned earlier along with the two extra symbols, @code{yyparse} |
f4101aa6 AD |
4989 | and @code{yypull_parse}. @code{yyparse} can be used exactly as it normally |
4990 | would be used. However, the user should note that it is implemented in the | |
d782395d JD |
4991 | generated parser by calling @code{yypull_parse}. |
4992 | This makes the @code{yyparse} function that is generated with the | |
f37495f6 | 4993 | @code{%define api.push-pull both} declaration slower than the normal |
d782395d JD |
4994 | @code{yyparse} function. If the user |
4995 | calls the @code{yypull_parse} function it will parse the rest of the input | |
f4101aa6 AD |
4996 | stream. It is possible to @code{yypush_parse} tokens to select a subgrammar |
4997 | and then @code{yypull_parse} the rest of the input stream. If you would like | |
4998 | to switch back and forth between between parsing styles, you would have to | |
4999 | write your own @code{yypull_parse} function that knows when to quit looking | |
5000 | for input. An example of using the @code{yypull_parse} function would look | |
9987d1b3 JD |
5001 | like this: |
5002 | ||
5003 | @example | |
5004 | yypstate *ps = yypstate_new (); | |
5005 | yypull_parse (ps); /* Will call the lexer */ | |
5006 | yypstate_delete (ps); | |
5007 | @end example | |
5008 | ||
d9df47b6 | 5009 | Adding the @code{%define api.pure} declaration does exactly the same thing to |
f37495f6 JD |
5010 | the generated parser with @code{%define api.push-pull both} as it did for |
5011 | @code{%define api.push-pull push}. | |
9987d1b3 | 5012 | |
342b8b6e | 5013 | @node Decl Summary |
bfa74976 RS |
5014 | @subsection Bison Declaration Summary |
5015 | @cindex Bison declaration summary | |
5016 | @cindex declaration summary | |
5017 | @cindex summary, Bison declaration | |
5018 | ||
d8988b2f | 5019 | Here is a summary of the declarations used to define a grammar: |
bfa74976 | 5020 | |
18b519c0 | 5021 | @deffn {Directive} %union |
bfa74976 RS |
5022 | Declare the collection of data types that semantic values may have |
5023 | (@pxref{Union Decl, ,The Collection of Value Types}). | |
18b519c0 | 5024 | @end deffn |
bfa74976 | 5025 | |
18b519c0 | 5026 | @deffn {Directive} %token |
bfa74976 RS |
5027 | Declare a terminal symbol (token type name) with no precedence |
5028 | or associativity specified (@pxref{Token Decl, ,Token Type Names}). | |
18b519c0 | 5029 | @end deffn |
bfa74976 | 5030 | |
18b519c0 | 5031 | @deffn {Directive} %right |
bfa74976 RS |
5032 | Declare a terminal symbol (token type name) that is right-associative |
5033 | (@pxref{Precedence Decl, ,Operator Precedence}). | |
18b519c0 | 5034 | @end deffn |
bfa74976 | 5035 | |
18b519c0 | 5036 | @deffn {Directive} %left |
bfa74976 RS |
5037 | Declare a terminal symbol (token type name) that is left-associative |
5038 | (@pxref{Precedence Decl, ,Operator Precedence}). | |
18b519c0 | 5039 | @end deffn |
bfa74976 | 5040 | |
18b519c0 | 5041 | @deffn {Directive} %nonassoc |
bfa74976 | 5042 | Declare a terminal symbol (token type name) that is nonassociative |
bfa74976 | 5043 | (@pxref{Precedence Decl, ,Operator Precedence}). |
39a06c25 PE |
5044 | Using it in a way that would be associative is a syntax error. |
5045 | @end deffn | |
5046 | ||
91d2c560 | 5047 | @ifset defaultprec |
39a06c25 | 5048 | @deffn {Directive} %default-prec |
22fccf95 | 5049 | Assign a precedence to rules lacking an explicit @code{%prec} modifier |
39a06c25 PE |
5050 | (@pxref{Contextual Precedence, ,Context-Dependent Precedence}). |
5051 | @end deffn | |
91d2c560 | 5052 | @end ifset |
bfa74976 | 5053 | |
18b519c0 | 5054 | @deffn {Directive} %type |
bfa74976 RS |
5055 | Declare the type of semantic values for a nonterminal symbol |
5056 | (@pxref{Type Decl, ,Nonterminal Symbols}). | |
18b519c0 | 5057 | @end deffn |
bfa74976 | 5058 | |
18b519c0 | 5059 | @deffn {Directive} %start |
89cab50d AD |
5060 | Specify the grammar's start symbol (@pxref{Start Decl, ,The |
5061 | Start-Symbol}). | |
18b519c0 | 5062 | @end deffn |
bfa74976 | 5063 | |
18b519c0 | 5064 | @deffn {Directive} %expect |
bfa74976 RS |
5065 | Declare the expected number of shift-reduce conflicts |
5066 | (@pxref{Expect Decl, ,Suppressing Conflict Warnings}). | |
18b519c0 AD |
5067 | @end deffn |
5068 | ||
bfa74976 | 5069 | |
d8988b2f AD |
5070 | @sp 1 |
5071 | @noindent | |
5072 | In order to change the behavior of @command{bison}, use the following | |
5073 | directives: | |
5074 | ||
148d66d8 | 5075 | @deffn {Directive} %code @{@var{code}@} |
8e6f2266 | 5076 | @deffnx {Directive} %code @var{qualifier} @{@var{code}@} |
148d66d8 | 5077 | @findex %code |
8e6f2266 JD |
5078 | Insert @var{code} verbatim into the output parser source at the |
5079 | default location or at the location specified by @var{qualifier}. | |
5080 | @xref{%code Summary}. | |
148d66d8 JD |
5081 | @end deffn |
5082 | ||
18b519c0 | 5083 | @deffn {Directive} %debug |
e358222b | 5084 | In the parser implementation file, define the macro @code{YYDEBUG} (or |
5a05f42e | 5085 | @code{@var{prefix}DEBUG} with @samp{%define api.prefix @var{prefix}}, see |
e358222b AD |
5086 | @ref{Multiple Parsers, ,Multiple Parsers in the Same Program}) to 1 if it is |
5087 | not already defined, so that the debugging facilities are compiled. | |
5088 | @xref{Tracing, ,Tracing Your Parser}. | |
bd5df716 | 5089 | @end deffn |
d8988b2f | 5090 | |
2f4518a1 JD |
5091 | @deffn {Directive} %define @var{variable} |
5092 | @deffnx {Directive} %define @var{variable} @var{value} | |
5093 | @deffnx {Directive} %define @var{variable} "@var{value}" | |
5094 | Define a variable to adjust Bison's behavior. @xref{%define Summary}. | |
5095 | @end deffn | |
5096 | ||
5097 | @deffn {Directive} %defines | |
5098 | Write a parser header file containing macro definitions for the token | |
5099 | type names defined in the grammar as well as a few other declarations. | |
5100 | If the parser implementation file is named @file{@var{name}.c} then | |
5101 | the parser header file is named @file{@var{name}.h}. | |
5102 | ||
5103 | For C parsers, the parser header file declares @code{YYSTYPE} unless | |
5104 | @code{YYSTYPE} is already defined as a macro or you have used a | |
5105 | @code{<@var{type}>} tag without using @code{%union}. Therefore, if | |
5106 | you are using a @code{%union} (@pxref{Multiple Types, ,More Than One | |
5107 | Value Type}) with components that require other definitions, or if you | |
5108 | have defined a @code{YYSTYPE} macro or type definition (@pxref{Value | |
5109 | Type, ,Data Types of Semantic Values}), you need to arrange for these | |
5110 | definitions to be propagated to all modules, e.g., by putting them in | |
5111 | a prerequisite header that is included both by your parser and by any | |
5112 | other module that needs @code{YYSTYPE}. | |
5113 | ||
5114 | Unless your parser is pure, the parser header file declares | |
5115 | @code{yylval} as an external variable. @xref{Pure Decl, ,A Pure | |
5116 | (Reentrant) Parser}. | |
5117 | ||
5118 | If you have also used locations, the parser header file declares | |
7404cdf3 JD |
5119 | @code{YYLTYPE} and @code{yylloc} using a protocol similar to that of the |
5120 | @code{YYSTYPE} macro and @code{yylval}. @xref{Tracking Locations}. | |
2f4518a1 JD |
5121 | |
5122 | This parser header file is normally essential if you wish to put the | |
5123 | definition of @code{yylex} in a separate source file, because | |
5124 | @code{yylex} typically needs to be able to refer to the | |
5125 | above-mentioned declarations and to the token type codes. @xref{Token | |
5126 | Values, ,Semantic Values of Tokens}. | |
5127 | ||
5128 | @findex %code requires | |
5129 | @findex %code provides | |
5130 | If you have declared @code{%code requires} or @code{%code provides}, the output | |
5131 | header also contains their code. | |
5132 | @xref{%code Summary}. | |
c9d5bcc9 AD |
5133 | |
5134 | @cindex Header guard | |
5135 | The generated header is protected against multiple inclusions with a C | |
5136 | preprocessor guard: @samp{YY_@var{PREFIX}_@var{FILE}_INCLUDED}, where | |
5137 | @var{PREFIX} and @var{FILE} are the prefix (@pxref{Multiple Parsers, | |
5138 | ,Multiple Parsers in the Same Program}) and generated file name turned | |
5139 | uppercase, with each series of non alphanumerical characters converted to a | |
5140 | single underscore. | |
5141 | ||
5142 | For instance with @samp{%define api.prefix "calc"} and @samp{%defines | |
5143 | "lib/parse.h"}, the header will be guarded as follows. | |
5144 | @example | |
5145 | #ifndef YY_CALC_LIB_PARSE_H_INCLUDED | |
5146 | # define YY_CALC_LIB_PARSE_H_INCLUDED | |
5147 | ... | |
5148 | #endif /* ! YY_CALC_LIB_PARSE_H_INCLUDED */ | |
5149 | @end example | |
2f4518a1 JD |
5150 | @end deffn |
5151 | ||
5152 | @deffn {Directive} %defines @var{defines-file} | |
5153 | Same as above, but save in the file @var{defines-file}. | |
5154 | @end deffn | |
5155 | ||
5156 | @deffn {Directive} %destructor | |
5157 | Specify how the parser should reclaim the memory associated to | |
5158 | discarded symbols. @xref{Destructor Decl, , Freeing Discarded Symbols}. | |
5159 | @end deffn | |
5160 | ||
5161 | @deffn {Directive} %file-prefix "@var{prefix}" | |
5162 | Specify a prefix to use for all Bison output file names. The names | |
5163 | are chosen as if the grammar file were named @file{@var{prefix}.y}. | |
5164 | @end deffn | |
5165 | ||
5166 | @deffn {Directive} %language "@var{language}" | |
5167 | Specify the programming language for the generated parser. Currently | |
5168 | supported languages include C, C++, and Java. | |
5169 | @var{language} is case-insensitive. | |
5170 | ||
5171 | This directive is experimental and its effect may be modified in future | |
5172 | releases. | |
5173 | @end deffn | |
5174 | ||
5175 | @deffn {Directive} %locations | |
5176 | Generate the code processing the locations (@pxref{Action Features, | |
5177 | ,Special Features for Use in Actions}). This mode is enabled as soon as | |
5178 | the grammar uses the special @samp{@@@var{n}} tokens, but if your | |
5179 | grammar does not use it, using @samp{%locations} allows for more | |
5180 | accurate syntax error messages. | |
5181 | @end deffn | |
5182 | ||
2f4518a1 JD |
5183 | @ifset defaultprec |
5184 | @deffn {Directive} %no-default-prec | |
5185 | Do not assign a precedence to rules lacking an explicit @code{%prec} | |
5186 | modifier (@pxref{Contextual Precedence, ,Context-Dependent | |
5187 | Precedence}). | |
5188 | @end deffn | |
5189 | @end ifset | |
5190 | ||
5191 | @deffn {Directive} %no-lines | |
5192 | Don't generate any @code{#line} preprocessor commands in the parser | |
5193 | implementation file. Ordinarily Bison writes these commands in the | |
5194 | parser implementation file so that the C compiler and debuggers will | |
5195 | associate errors and object code with your source file (the grammar | |
5196 | file). This directive causes them to associate errors with the parser | |
5197 | implementation file, treating it as an independent source file in its | |
5198 | own right. | |
5199 | @end deffn | |
5200 | ||
5201 | @deffn {Directive} %output "@var{file}" | |
5202 | Specify @var{file} for the parser implementation file. | |
5203 | @end deffn | |
5204 | ||
5205 | @deffn {Directive} %pure-parser | |
5206 | Deprecated version of @code{%define api.pure} (@pxref{%define | |
5207 | Summary,,api.pure}), for which Bison is more careful to warn about | |
5208 | unreasonable usage. | |
5209 | @end deffn | |
5210 | ||
5211 | @deffn {Directive} %require "@var{version}" | |
5212 | Require version @var{version} or higher of Bison. @xref{Require Decl, , | |
5213 | Require a Version of Bison}. | |
5214 | @end deffn | |
5215 | ||
5216 | @deffn {Directive} %skeleton "@var{file}" | |
5217 | Specify the skeleton to use. | |
5218 | ||
5219 | @c You probably don't need this option unless you are developing Bison. | |
5220 | @c You should use @code{%language} if you want to specify the skeleton for a | |
5221 | @c different language, because it is clearer and because it will always choose the | |
5222 | @c correct skeleton for non-deterministic or push parsers. | |
5223 | ||
5224 | If @var{file} does not contain a @code{/}, @var{file} is the name of a skeleton | |
5225 | file in the Bison installation directory. | |
5226 | If it does, @var{file} is an absolute file name or a file name relative to the | |
5227 | directory of the grammar file. | |
5228 | This is similar to how most shells resolve commands. | |
5229 | @end deffn | |
5230 | ||
5231 | @deffn {Directive} %token-table | |
5232 | Generate an array of token names in the parser implementation file. | |
5233 | The name of the array is @code{yytname}; @code{yytname[@var{i}]} is | |
5234 | the name of the token whose internal Bison token code number is | |
5235 | @var{i}. The first three elements of @code{yytname} correspond to the | |
5236 | predefined tokens @code{"$end"}, @code{"error"}, and | |
5237 | @code{"$undefined"}; after these come the symbols defined in the | |
5238 | grammar file. | |
5239 | ||
5240 | The name in the table includes all the characters needed to represent | |
5241 | the token in Bison. For single-character literals and literal | |
5242 | strings, this includes the surrounding quoting characters and any | |
5243 | escape sequences. For example, the Bison single-character literal | |
5244 | @code{'+'} corresponds to a three-character name, represented in C as | |
5245 | @code{"'+'"}; and the Bison two-character literal string @code{"\\/"} | |
5246 | corresponds to a five-character name, represented in C as | |
5247 | @code{"\"\\\\/\""}. | |
5248 | ||
5249 | When you specify @code{%token-table}, Bison also generates macro | |
5250 | definitions for macros @code{YYNTOKENS}, @code{YYNNTS}, and | |
5251 | @code{YYNRULES}, and @code{YYNSTATES}: | |
5252 | ||
5253 | @table @code | |
5254 | @item YYNTOKENS | |
5255 | The highest token number, plus one. | |
5256 | @item YYNNTS | |
5257 | The number of nonterminal symbols. | |
5258 | @item YYNRULES | |
5259 | The number of grammar rules, | |
5260 | @item YYNSTATES | |
5261 | The number of parser states (@pxref{Parser States}). | |
5262 | @end table | |
5263 | @end deffn | |
5264 | ||
5265 | @deffn {Directive} %verbose | |
5266 | Write an extra output file containing verbose descriptions of the | |
5267 | parser states and what is done for each type of lookahead token in | |
5268 | that state. @xref{Understanding, , Understanding Your Parser}, for more | |
5269 | information. | |
5270 | @end deffn | |
5271 | ||
5272 | @deffn {Directive} %yacc | |
5273 | Pretend the option @option{--yacc} was given, i.e., imitate Yacc, | |
5274 | including its naming conventions. @xref{Bison Options}, for more. | |
5275 | @end deffn | |
5276 | ||
5277 | ||
5278 | @node %define Summary | |
5279 | @subsection %define Summary | |
406dec82 JD |
5280 | |
5281 | There are many features of Bison's behavior that can be controlled by | |
5282 | assigning the feature a single value. For historical reasons, some | |
5283 | such features are assigned values by dedicated directives, such as | |
5284 | @code{%start}, which assigns the start symbol. However, newer such | |
5285 | features are associated with variables, which are assigned by the | |
5286 | @code{%define} directive: | |
5287 | ||
c1d19e10 | 5288 | @deffn {Directive} %define @var{variable} |
f37495f6 | 5289 | @deffnx {Directive} %define @var{variable} @var{value} |
c1d19e10 | 5290 | @deffnx {Directive} %define @var{variable} "@var{value}" |
406dec82 | 5291 | Define @var{variable} to @var{value}. |
9611cfa2 | 5292 | |
406dec82 JD |
5293 | @var{value} must be placed in quotation marks if it contains any |
5294 | character other than a letter, underscore, period, or non-initial dash | |
5295 | or digit. Omitting @code{"@var{value}"} entirely is always equivalent | |
5296 | to specifying @code{""}. | |
9611cfa2 | 5297 | |
406dec82 JD |
5298 | It is an error if a @var{variable} is defined by @code{%define} |
5299 | multiple times, but see @ref{Bison Options,,-D | |
5300 | @var{name}[=@var{value}]}. | |
5301 | @end deffn | |
f37495f6 | 5302 | |
406dec82 JD |
5303 | The rest of this section summarizes variables and values that |
5304 | @code{%define} accepts. | |
9611cfa2 | 5305 | |
406dec82 JD |
5306 | Some @var{variable}s take Boolean values. In this case, Bison will |
5307 | complain if the variable definition does not meet one of the following | |
5308 | four conditions: | |
9611cfa2 JD |
5309 | |
5310 | @enumerate | |
f37495f6 | 5311 | @item @code{@var{value}} is @code{true} |
9611cfa2 | 5312 | |
f37495f6 JD |
5313 | @item @code{@var{value}} is omitted (or @code{""} is specified). |
5314 | This is equivalent to @code{true}. | |
9611cfa2 | 5315 | |
f37495f6 | 5316 | @item @code{@var{value}} is @code{false}. |
9611cfa2 JD |
5317 | |
5318 | @item @var{variable} is never defined. | |
628be6c9 | 5319 | In this case, Bison selects a default value. |
9611cfa2 | 5320 | @end enumerate |
148d66d8 | 5321 | |
628be6c9 JD |
5322 | What @var{variable}s are accepted, as well as their meanings and default |
5323 | values, depend on the selected target language and/or the parser | |
5324 | skeleton (@pxref{Decl Summary,,%language}, @pxref{Decl | |
5325 | Summary,,%skeleton}). | |
5326 | Unaccepted @var{variable}s produce an error. | |
793fbca5 JD |
5327 | Some of the accepted @var{variable}s are: |
5328 | ||
5329 | @itemize @bullet | |
db8ab2be AD |
5330 | @c ================================================== api.location.type |
5331 | @item @code{api.location.type} | |
5332 | @findex %define api.location.type | |
5333 | ||
5334 | @itemize @bullet | |
7287be84 | 5335 | @item Language(s): C++, Java |
db8ab2be AD |
5336 | |
5337 | @item Purpose: Define the location type. | |
5338 | @xref{User Defined Location Type}. | |
5339 | ||
5340 | @item Accepted Values: String | |
5341 | ||
5342 | @item Default Value: none | |
5343 | ||
5344 | @item History: introduced in Bison 2.7 | |
5345 | @end itemize | |
5346 | ||
4b3847c3 AD |
5347 | @c ================================================== api.prefix |
5348 | @item @code{api.prefix} | |
5349 | @findex %define api.prefix | |
5350 | ||
5351 | @itemize @bullet | |
5352 | @item Language(s): All | |
5353 | ||
db8ab2be | 5354 | @item Purpose: Rename exported symbols. |
4b3847c3 AD |
5355 | @xref{Multiple Parsers, ,Multiple Parsers in the Same Program}. |
5356 | ||
5357 | @item Accepted Values: String | |
5358 | ||
5359 | @item Default Value: @code{yy} | |
e358222b AD |
5360 | |
5361 | @item History: introduced in Bison 2.6 | |
4b3847c3 AD |
5362 | @end itemize |
5363 | ||
ea118b72 | 5364 | @c ================================================== api.pure |
4b3847c3 | 5365 | @item @code{api.pure} |
d9df47b6 JD |
5366 | @findex %define api.pure |
5367 | ||
5368 | @itemize @bullet | |
5369 | @item Language(s): C | |
5370 | ||
5371 | @item Purpose: Request a pure (reentrant) parser program. | |
5372 | @xref{Pure Decl, ,A Pure (Reentrant) Parser}. | |
5373 | ||
5374 | @item Accepted Values: Boolean | |
5375 | ||
f37495f6 | 5376 | @item Default Value: @code{false} |
d9df47b6 JD |
5377 | @end itemize |
5378 | ||
4b3847c3 AD |
5379 | @c ================================================== api.push-pull |
5380 | ||
5381 | @item @code{api.push-pull} | |
812775a0 | 5382 | @findex %define api.push-pull |
793fbca5 JD |
5383 | |
5384 | @itemize @bullet | |
34a6c2d1 | 5385 | @item Language(s): C (deterministic parsers only) |
793fbca5 | 5386 | |
3b1977ea | 5387 | @item Purpose: Request a pull parser, a push parser, or both. |
d782395d | 5388 | @xref{Push Decl, ,A Push Parser}. |
59da312b JD |
5389 | (The current push parsing interface is experimental and may evolve. |
5390 | More user feedback will help to stabilize it.) | |
793fbca5 | 5391 | |
f37495f6 | 5392 | @item Accepted Values: @code{pull}, @code{push}, @code{both} |
793fbca5 | 5393 | |
f37495f6 | 5394 | @item Default Value: @code{pull} |
793fbca5 JD |
5395 | @end itemize |
5396 | ||
232be91a AD |
5397 | @c ================================================== lr.default-reductions |
5398 | ||
4b3847c3 | 5399 | @item @code{lr.default-reductions} |
1d0f55cc | 5400 | @findex %define lr.default-reductions |
34a6c2d1 JD |
5401 | |
5402 | @itemize @bullet | |
5403 | @item Language(s): all | |
5404 | ||
4c38b19e | 5405 | @item Purpose: Specify the kind of states that are permitted to |
6f04ee6c JD |
5406 | contain default reductions. @xref{Default Reductions}. (The ability to |
5407 | specify where default reductions should be used is experimental. More user | |
5408 | feedback will help to stabilize it.) | |
34a6c2d1 | 5409 | |
a6e5a280 | 5410 | @item Accepted Values: @code{most}, @code{consistent}, @code{accepting} |
34a6c2d1 JD |
5411 | @item Default Value: |
5412 | @itemize | |
f37495f6 | 5413 | @item @code{accepting} if @code{lr.type} is @code{canonical-lr}. |
a6e5a280 | 5414 | @item @code{most} otherwise. |
34a6c2d1 JD |
5415 | @end itemize |
5416 | @end itemize | |
5417 | ||
232be91a AD |
5418 | @c ============================================ lr.keep-unreachable-states |
5419 | ||
4b3847c3 | 5420 | @item @code{lr.keep-unreachable-states} |
812775a0 | 5421 | @findex %define lr.keep-unreachable-states |
31984206 JD |
5422 | |
5423 | @itemize @bullet | |
5424 | @item Language(s): all | |
3b1977ea | 5425 | @item Purpose: Request that Bison allow unreachable parser states to |
6f04ee6c | 5426 | remain in the parser tables. @xref{Unreachable States}. |
31984206 | 5427 | @item Accepted Values: Boolean |
f37495f6 | 5428 | @item Default Value: @code{false} |
31984206 JD |
5429 | @end itemize |
5430 | ||
232be91a AD |
5431 | @c ================================================== lr.type |
5432 | ||
4b3847c3 | 5433 | @item @code{lr.type} |
34a6c2d1 | 5434 | @findex %define lr.type |
34a6c2d1 JD |
5435 | |
5436 | @itemize @bullet | |
5437 | @item Language(s): all | |
5438 | ||
3b1977ea | 5439 | @item Purpose: Specify the type of parser tables within the |
6f04ee6c | 5440 | LR(1) family. @xref{LR Table Construction}. (This feature is experimental. |
34a6c2d1 JD |
5441 | More user feedback will help to stabilize it.) |
5442 | ||
6f04ee6c | 5443 | @item Accepted Values: @code{lalr}, @code{ielr}, @code{canonical-lr} |
34a6c2d1 | 5444 | |
f37495f6 | 5445 | @item Default Value: @code{lalr} |
34a6c2d1 JD |
5446 | @end itemize |
5447 | ||
4b3847c3 AD |
5448 | @c ================================================== namespace |
5449 | ||
5450 | @item @code{namespace} | |
793fbca5 JD |
5451 | @findex %define namespace |
5452 | ||
5453 | @itemize | |
5454 | @item Languages(s): C++ | |
5455 | ||
3b1977ea | 5456 | @item Purpose: Specify the namespace for the parser class. |
793fbca5 JD |
5457 | For example, if you specify: |
5458 | ||
5459 | @smallexample | |
5460 | %define namespace "foo::bar" | |
5461 | @end smallexample | |
5462 | ||
5463 | Bison uses @code{foo::bar} verbatim in references such as: | |
5464 | ||
5465 | @smallexample | |
5466 | foo::bar::parser::semantic_type | |
5467 | @end smallexample | |
5468 | ||
5469 | However, to open a namespace, Bison removes any leading @code{::} and then | |
5470 | splits on any remaining occurrences: | |
5471 | ||
5472 | @smallexample | |
5473 | namespace foo @{ namespace bar @{ | |
5474 | class position; | |
5475 | class location; | |
5476 | @} @} | |
5477 | @end smallexample | |
5478 | ||
5479 | @item Accepted Values: Any absolute or relative C++ namespace reference without | |
5480 | a trailing @code{"::"}. | |
5481 | For example, @code{"foo"} or @code{"::foo::bar"}. | |
5482 | ||
5483 | @item Default Value: The value specified by @code{%name-prefix}, which defaults | |
5484 | to @code{yy}. | |
5485 | This usage of @code{%name-prefix} is for backward compatibility and can be | |
5486 | confusing since @code{%name-prefix} also specifies the textual prefix for the | |
5487 | lexical analyzer function. | |
5488 | Thus, if you specify @code{%name-prefix}, it is best to also specify | |
5489 | @code{%define namespace} so that @code{%name-prefix} @emph{only} affects the | |
5490 | lexical analyzer function. | |
5491 | For example, if you specify: | |
5492 | ||
5493 | @smallexample | |
5494 | %define namespace "foo" | |
5495 | %name-prefix "bar::" | |
5496 | @end smallexample | |
5497 | ||
5498 | The parser namespace is @code{foo} and @code{yylex} is referenced as | |
5499 | @code{bar::lex}. | |
5500 | @end itemize | |
4c38b19e JD |
5501 | |
5502 | @c ================================================== parse.lac | |
4b3847c3 | 5503 | @item @code{parse.lac} |
4c38b19e | 5504 | @findex %define parse.lac |
4c38b19e JD |
5505 | |
5506 | @itemize | |
6f04ee6c | 5507 | @item Languages(s): C (deterministic parsers only) |
4c38b19e | 5508 | |
35430378 | 5509 | @item Purpose: Enable LAC (lookahead correction) to improve |
6f04ee6c | 5510 | syntax error handling. @xref{LAC}. |
4c38b19e | 5511 | @item Accepted Values: @code{none}, @code{full} |
4c38b19e JD |
5512 | @item Default Value: @code{none} |
5513 | @end itemize | |
793fbca5 JD |
5514 | @end itemize |
5515 | ||
d8988b2f | 5516 | |
8e6f2266 JD |
5517 | @node %code Summary |
5518 | @subsection %code Summary | |
8e6f2266 | 5519 | @findex %code |
8e6f2266 | 5520 | @cindex Prologue |
406dec82 JD |
5521 | |
5522 | The @code{%code} directive inserts code verbatim into the output | |
5523 | parser source at any of a predefined set of locations. It thus serves | |
5524 | as a flexible and user-friendly alternative to the traditional Yacc | |
5525 | prologue, @code{%@{@var{code}%@}}. This section summarizes the | |
5526 | functionality of @code{%code} for the various target languages | |
5527 | supported by Bison. For a detailed discussion of how to use | |
5528 | @code{%code} in place of @code{%@{@var{code}%@}} for C/C++ and why it | |
5529 | is advantageous to do so, @pxref{Prologue Alternatives}. | |
5530 | ||
5531 | @deffn {Directive} %code @{@var{code}@} | |
5532 | This is the unqualified form of the @code{%code} directive. It | |
5533 | inserts @var{code} verbatim at a language-dependent default location | |
5534 | in the parser implementation. | |
5535 | ||
8e6f2266 | 5536 | For C/C++, the default location is the parser implementation file |
406dec82 JD |
5537 | after the usual contents of the parser header file. Thus, the |
5538 | unqualified form replaces @code{%@{@var{code}%@}} for most purposes. | |
8e6f2266 JD |
5539 | |
5540 | For Java, the default location is inside the parser class. | |
5541 | @end deffn | |
5542 | ||
5543 | @deffn {Directive} %code @var{qualifier} @{@var{code}@} | |
5544 | This is the qualified form of the @code{%code} directive. | |
406dec82 JD |
5545 | @var{qualifier} identifies the purpose of @var{code} and thus the |
5546 | location(s) where Bison should insert it. That is, if you need to | |
5547 | specify location-sensitive @var{code} that does not belong at the | |
5548 | default location selected by the unqualified @code{%code} form, use | |
5549 | this form instead. | |
5550 | @end deffn | |
5551 | ||
5552 | For any particular qualifier or for the unqualified form, if there are | |
5553 | multiple occurrences of the @code{%code} directive, Bison concatenates | |
5554 | the specified code in the order in which it appears in the grammar | |
5555 | file. | |
8e6f2266 | 5556 | |
406dec82 JD |
5557 | Not all qualifiers are accepted for all target languages. Unaccepted |
5558 | qualifiers produce an error. Some of the accepted qualifiers are: | |
8e6f2266 JD |
5559 | |
5560 | @itemize @bullet | |
5561 | @item requires | |
5562 | @findex %code requires | |
5563 | ||
5564 | @itemize @bullet | |
5565 | @item Language(s): C, C++ | |
5566 | ||
5567 | @item Purpose: This is the best place to write dependency code required for | |
5568 | @code{YYSTYPE} and @code{YYLTYPE}. | |
5569 | In other words, it's the best place to define types referenced in @code{%union} | |
5570 | directives, and it's the best place to override Bison's default @code{YYSTYPE} | |
5571 | and @code{YYLTYPE} definitions. | |
5572 | ||
5573 | @item Location(s): The parser header file and the parser implementation file | |
5574 | before the Bison-generated @code{YYSTYPE} and @code{YYLTYPE} | |
5575 | definitions. | |
5576 | @end itemize | |
5577 | ||
5578 | @item provides | |
5579 | @findex %code provides | |
5580 | ||
5581 | @itemize @bullet | |
5582 | @item Language(s): C, C++ | |
5583 | ||
5584 | @item Purpose: This is the best place to write additional definitions and | |
5585 | declarations that should be provided to other modules. | |
5586 | ||
5587 | @item Location(s): The parser header file and the parser implementation | |
5588 | file after the Bison-generated @code{YYSTYPE}, @code{YYLTYPE}, and | |
5589 | token definitions. | |
5590 | @end itemize | |
5591 | ||
5592 | @item top | |
5593 | @findex %code top | |
5594 | ||
5595 | @itemize @bullet | |
5596 | @item Language(s): C, C++ | |
5597 | ||
5598 | @item Purpose: The unqualified @code{%code} or @code{%code requires} | |
5599 | should usually be more appropriate than @code{%code top}. However, | |
5600 | occasionally it is necessary to insert code much nearer the top of the | |
5601 | parser implementation file. For example: | |
5602 | ||
ea118b72 | 5603 | @example |
8e6f2266 JD |
5604 | %code top @{ |
5605 | #define _GNU_SOURCE | |
5606 | #include <stdio.h> | |
5607 | @} | |
ea118b72 | 5608 | @end example |
8e6f2266 JD |
5609 | |
5610 | @item Location(s): Near the top of the parser implementation file. | |
5611 | @end itemize | |
5612 | ||
5613 | @item imports | |
5614 | @findex %code imports | |
5615 | ||
5616 | @itemize @bullet | |
5617 | @item Language(s): Java | |
5618 | ||
5619 | @item Purpose: This is the best place to write Java import directives. | |
5620 | ||
5621 | @item Location(s): The parser Java file after any Java package directive and | |
5622 | before any class definitions. | |
5623 | @end itemize | |
5624 | @end itemize | |
5625 | ||
406dec82 JD |
5626 | Though we say the insertion locations are language-dependent, they are |
5627 | technically skeleton-dependent. Writers of non-standard skeletons | |
5628 | however should choose their locations consistently with the behavior | |
5629 | of the standard Bison skeletons. | |
8e6f2266 | 5630 | |
d8988b2f | 5631 | |
342b8b6e | 5632 | @node Multiple Parsers |
bfa74976 RS |
5633 | @section Multiple Parsers in the Same Program |
5634 | ||
5635 | Most programs that use Bison parse only one language and therefore contain | |
4b3847c3 AD |
5636 | only one Bison parser. But what if you want to parse more than one language |
5637 | with the same program? Then you need to avoid name conflicts between | |
5638 | different definitions of functions and variables such as @code{yyparse}, | |
5639 | @code{yylval}. To use different parsers from the same compilation unit, you | |
5640 | also need to avoid conflicts on types and macros (e.g., @code{YYSTYPE}) | |
5641 | exported in the generated header. | |
5642 | ||
5643 | The easy way to do this is to define the @code{%define} variable | |
e358222b AD |
5644 | @code{api.prefix}. With different @code{api.prefix}s it is guaranteed that |
5645 | headers do not conflict when included together, and that compiled objects | |
5646 | can be linked together too. Specifying @samp{%define api.prefix | |
5647 | @var{prefix}} (or passing the option @samp{-Dapi.prefix=@var{prefix}}, see | |
5648 | @ref{Invocation, ,Invoking Bison}) renames the interface functions and | |
5649 | variables of the Bison parser to start with @var{prefix} instead of | |
5650 | @samp{yy}, and all the macros to start by @var{PREFIX} (i.e., @var{prefix} | |
5651 | upper-cased) instead of @samp{YY}. | |
4b3847c3 AD |
5652 | |
5653 | The renamed symbols include @code{yyparse}, @code{yylex}, @code{yyerror}, | |
5654 | @code{yynerrs}, @code{yylval}, @code{yylloc}, @code{yychar} and | |
5655 | @code{yydebug}. If you use a push parser, @code{yypush_parse}, | |
5656 | @code{yypull_parse}, @code{yypstate}, @code{yypstate_new} and | |
5657 | @code{yypstate_delete} will also be renamed. The renamed macros include | |
e358222b AD |
5658 | @code{YYSTYPE}, @code{YYLTYPE}, and @code{YYDEBUG}, which is treated |
5659 | specifically --- more about this below. | |
4b3847c3 AD |
5660 | |
5661 | For example, if you use @samp{%define api.prefix c}, the names become | |
5662 | @code{cparse}, @code{clex}, @dots{}, @code{CSTYPE}, @code{CLTYPE}, and so | |
5663 | on. | |
5664 | ||
5665 | The @code{%define} variable @code{api.prefix} works in two different ways. | |
5666 | In the implementation file, it works by adding macro definitions to the | |
5667 | beginning of the parser implementation file, defining @code{yyparse} as | |
5668 | @code{@var{prefix}parse}, and so on: | |
5669 | ||
5670 | @example | |
5671 | #define YYSTYPE CTYPE | |
5672 | #define yyparse cparse | |
5673 | #define yylval clval | |
5674 | ... | |
5675 | YYSTYPE yylval; | |
5676 | int yyparse (void); | |
5677 | @end example | |
5678 | ||
5679 | This effectively substitutes one name for the other in the entire parser | |
5680 | implementation file, thus the ``original'' names (@code{yylex}, | |
5681 | @code{YYSTYPE}, @dots{}) are also usable in the parser implementation file. | |
5682 | ||
5683 | However, in the parser header file, the symbols are defined renamed, for | |
5684 | instance: | |
5685 | ||
5686 | @example | |
5687 | extern CSTYPE clval; | |
5688 | int cparse (void); | |
5689 | @end example | |
5690 | ||
e358222b AD |
5691 | The macro @code{YYDEBUG} is commonly used to enable the tracing support in |
5692 | parsers. To comply with this tradition, when @code{api.prefix} is used, | |
5693 | @code{YYDEBUG} (not renamed) is used as a default value: | |
5694 | ||
5695 | @example | |
5696 | /* Enabling traces. */ | |
5697 | #ifndef CDEBUG | |
5698 | # if defined YYDEBUG | |
5699 | # if YYDEBUG | |
5700 | # define CDEBUG 1 | |
5701 | # else | |
5702 | # define CDEBUG 0 | |
5703 | # endif | |
5704 | # else | |
5705 | # define CDEBUG 0 | |
5706 | # endif | |
5707 | #endif | |
5708 | #if CDEBUG | |
5709 | extern int cdebug; | |
5710 | #endif | |
5711 | @end example | |
5712 | ||
5713 | @sp 2 | |
5714 | ||
5715 | Prior to Bison 2.6, a feature similar to @code{api.prefix} was provided by | |
5716 | the obsolete directive @code{%name-prefix} (@pxref{Table of Symbols, ,Bison | |
5717 | Symbols}) and the option @code{--name-prefix} (@pxref{Bison Options}). | |
bfa74976 | 5718 | |
342b8b6e | 5719 | @node Interface |
bfa74976 RS |
5720 | @chapter Parser C-Language Interface |
5721 | @cindex C-language interface | |
5722 | @cindex interface | |
5723 | ||
5724 | The Bison parser is actually a C function named @code{yyparse}. Here we | |
5725 | describe the interface conventions of @code{yyparse} and the other | |
5726 | functions that it needs to use. | |
5727 | ||
5728 | Keep in mind that the parser uses many C identifiers starting with | |
5729 | @samp{yy} and @samp{YY} for internal purposes. If you use such an | |
75f5aaea MA |
5730 | identifier (aside from those in this manual) in an action or in epilogue |
5731 | in the grammar file, you are likely to run into trouble. | |
bfa74976 RS |
5732 | |
5733 | @menu | |
f56274a8 DJ |
5734 | * Parser Function:: How to call @code{yyparse} and what it returns. |
5735 | * Push Parser Function:: How to call @code{yypush_parse} and what it returns. | |
5736 | * Pull Parser Function:: How to call @code{yypull_parse} and what it returns. | |
5737 | * Parser Create Function:: How to call @code{yypstate_new} and what it returns. | |
5738 | * Parser Delete Function:: How to call @code{yypstate_delete} and what it returns. | |
5739 | * Lexical:: You must supply a function @code{yylex} | |
5740 | which reads tokens. | |
5741 | * Error Reporting:: You must supply a function @code{yyerror}. | |
5742 | * Action Features:: Special features for use in actions. | |
5743 | * Internationalization:: How to let the parser speak in the user's | |
5744 | native language. | |
bfa74976 RS |
5745 | @end menu |
5746 | ||
342b8b6e | 5747 | @node Parser Function |
bfa74976 RS |
5748 | @section The Parser Function @code{yyparse} |
5749 | @findex yyparse | |
5750 | ||
5751 | You call the function @code{yyparse} to cause parsing to occur. This | |
5752 | function reads tokens, executes actions, and ultimately returns when it | |
5753 | encounters end-of-input or an unrecoverable syntax error. You can also | |
14ded682 AD |
5754 | write an action which directs @code{yyparse} to return immediately |
5755 | without reading further. | |
bfa74976 | 5756 | |
2a8d363a AD |
5757 | |
5758 | @deftypefun int yyparse (void) | |
bfa74976 RS |
5759 | The value returned by @code{yyparse} is 0 if parsing was successful (return |
5760 | is due to end-of-input). | |
5761 | ||
b47dbebe PE |
5762 | The value is 1 if parsing failed because of invalid input, i.e., input |
5763 | that contains a syntax error or that causes @code{YYABORT} to be | |
5764 | invoked. | |
5765 | ||
5766 | The value is 2 if parsing failed due to memory exhaustion. | |
2a8d363a | 5767 | @end deftypefun |
bfa74976 RS |
5768 | |
5769 | In an action, you can cause immediate return from @code{yyparse} by using | |
5770 | these macros: | |
5771 | ||
2a8d363a | 5772 | @defmac YYACCEPT |
bfa74976 RS |
5773 | @findex YYACCEPT |
5774 | Return immediately with value 0 (to report success). | |
2a8d363a | 5775 | @end defmac |
bfa74976 | 5776 | |
2a8d363a | 5777 | @defmac YYABORT |
bfa74976 RS |
5778 | @findex YYABORT |
5779 | Return immediately with value 1 (to report failure). | |
2a8d363a AD |
5780 | @end defmac |
5781 | ||
5782 | If you use a reentrant parser, you can optionally pass additional | |
5783 | parameter information to it in a reentrant way. To do so, use the | |
5784 | declaration @code{%parse-param}: | |
5785 | ||
feeb0eda | 5786 | @deffn {Directive} %parse-param @{@var{argument-declaration}@} |
2a8d363a | 5787 | @findex %parse-param |
287c78f6 PE |
5788 | Declare that an argument declared by the braced-code |
5789 | @var{argument-declaration} is an additional @code{yyparse} argument. | |
94175978 | 5790 | The @var{argument-declaration} is used when declaring |
feeb0eda PE |
5791 | functions or prototypes. The last identifier in |
5792 | @var{argument-declaration} must be the argument name. | |
2a8d363a AD |
5793 | @end deffn |
5794 | ||
5795 | Here's an example. Write this in the parser: | |
5796 | ||
5797 | @example | |
feeb0eda PE |
5798 | %parse-param @{int *nastiness@} |
5799 | %parse-param @{int *randomness@} | |
2a8d363a AD |
5800 | @end example |
5801 | ||
5802 | @noindent | |
5803 | Then call the parser like this: | |
5804 | ||
5805 | @example | |
5806 | @{ | |
5807 | int nastiness, randomness; | |
5808 | @dots{} /* @r{Store proper data in @code{nastiness} and @code{randomness}.} */ | |
5809 | value = yyparse (&nastiness, &randomness); | |
5810 | @dots{} | |
5811 | @} | |
5812 | @end example | |
5813 | ||
5814 | @noindent | |
5815 | In the grammar actions, use expressions like this to refer to the data: | |
5816 | ||
5817 | @example | |
5818 | exp: @dots{} @{ @dots{}; *randomness += 1; @dots{} @} | |
5819 | @end example | |
5820 | ||
9987d1b3 JD |
5821 | @node Push Parser Function |
5822 | @section The Push Parser Function @code{yypush_parse} | |
5823 | @findex yypush_parse | |
5824 | ||
59da312b JD |
5825 | (The current push parsing interface is experimental and may evolve. |
5826 | More user feedback will help to stabilize it.) | |
5827 | ||
f4101aa6 | 5828 | You call the function @code{yypush_parse} to parse a single token. This |
f37495f6 JD |
5829 | function is available if either the @code{%define api.push-pull push} or |
5830 | @code{%define api.push-pull both} declaration is used. | |
9987d1b3 JD |
5831 | @xref{Push Decl, ,A Push Parser}. |
5832 | ||
5833 | @deftypefun int yypush_parse (yypstate *yyps) | |
ad60e80f AD |
5834 | The value returned by @code{yypush_parse} is the same as for yyparse with |
5835 | the following exception: it returns @code{YYPUSH_MORE} if more input is | |
5836 | required to finish parsing the grammar. | |
9987d1b3 JD |
5837 | @end deftypefun |
5838 | ||
5839 | @node Pull Parser Function | |
5840 | @section The Pull Parser Function @code{yypull_parse} | |
5841 | @findex yypull_parse | |
5842 | ||
59da312b JD |
5843 | (The current push parsing interface is experimental and may evolve. |
5844 | More user feedback will help to stabilize it.) | |
5845 | ||
f4101aa6 | 5846 | You call the function @code{yypull_parse} to parse the rest of the input |
f37495f6 | 5847 | stream. This function is available if the @code{%define api.push-pull both} |
f4101aa6 | 5848 | declaration is used. |
9987d1b3 JD |
5849 | @xref{Push Decl, ,A Push Parser}. |
5850 | ||
5851 | @deftypefun int yypull_parse (yypstate *yyps) | |
5852 | The value returned by @code{yypull_parse} is the same as for @code{yyparse}. | |
5853 | @end deftypefun | |
5854 | ||
5855 | @node Parser Create Function | |
5856 | @section The Parser Create Function @code{yystate_new} | |
5857 | @findex yypstate_new | |
5858 | ||
59da312b JD |
5859 | (The current push parsing interface is experimental and may evolve. |
5860 | More user feedback will help to stabilize it.) | |
5861 | ||
f4101aa6 | 5862 | You call the function @code{yypstate_new} to create a new parser instance. |
f37495f6 JD |
5863 | This function is available if either the @code{%define api.push-pull push} or |
5864 | @code{%define api.push-pull both} declaration is used. | |
9987d1b3 JD |
5865 | @xref{Push Decl, ,A Push Parser}. |
5866 | ||
34a41a93 | 5867 | @deftypefun {yypstate*} yypstate_new (void) |
c781580d | 5868 | The function will return a valid parser instance if there was memory available |
333e670c JD |
5869 | or 0 if no memory was available. |
5870 | In impure mode, it will also return 0 if a parser instance is currently | |
5871 | allocated. | |
9987d1b3 JD |
5872 | @end deftypefun |
5873 | ||
5874 | @node Parser Delete Function | |
5875 | @section The Parser Delete Function @code{yystate_delete} | |
5876 | @findex yypstate_delete | |
5877 | ||
59da312b JD |
5878 | (The current push parsing interface is experimental and may evolve. |
5879 | More user feedback will help to stabilize it.) | |
5880 | ||
9987d1b3 | 5881 | You call the function @code{yypstate_delete} to delete a parser instance. |
f37495f6 JD |
5882 | function is available if either the @code{%define api.push-pull push} or |
5883 | @code{%define api.push-pull both} declaration is used. | |
9987d1b3 JD |
5884 | @xref{Push Decl, ,A Push Parser}. |
5885 | ||
5886 | @deftypefun void yypstate_delete (yypstate *yyps) | |
5887 | This function will reclaim the memory associated with a parser instance. | |
5888 | After this call, you should no longer attempt to use the parser instance. | |
5889 | @end deftypefun | |
bfa74976 | 5890 | |
342b8b6e | 5891 | @node Lexical |
bfa74976 RS |
5892 | @section The Lexical Analyzer Function @code{yylex} |
5893 | @findex yylex | |
5894 | @cindex lexical analyzer | |
5895 | ||
5896 | The @dfn{lexical analyzer} function, @code{yylex}, recognizes tokens from | |
5897 | the input stream and returns them to the parser. Bison does not create | |
5898 | this function automatically; you must write it so that @code{yyparse} can | |
5899 | call it. The function is sometimes referred to as a lexical scanner. | |
5900 | ||
9913d6e4 JD |
5901 | In simple programs, @code{yylex} is often defined at the end of the |
5902 | Bison grammar file. If @code{yylex} is defined in a separate source | |
5903 | file, you need to arrange for the token-type macro definitions to be | |
5904 | available there. To do this, use the @samp{-d} option when you run | |
5905 | Bison, so that it will write these macro definitions into the separate | |
5906 | parser header file, @file{@var{name}.tab.h}, which you can include in | |
5907 | the other source files that need it. @xref{Invocation, ,Invoking | |
5908 | Bison}. | |
bfa74976 RS |
5909 | |
5910 | @menu | |
5911 | * Calling Convention:: How @code{yyparse} calls @code{yylex}. | |
f56274a8 DJ |
5912 | * Token Values:: How @code{yylex} must return the semantic value |
5913 | of the token it has read. | |
5914 | * Token Locations:: How @code{yylex} must return the text location | |
5915 | (line number, etc.) of the token, if the | |
5916 | actions want that. | |
5917 | * Pure Calling:: How the calling convention differs in a pure parser | |
5918 | (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}). | |
bfa74976 RS |
5919 | @end menu |
5920 | ||
342b8b6e | 5921 | @node Calling Convention |
bfa74976 RS |
5922 | @subsection Calling Convention for @code{yylex} |
5923 | ||
72d2299c PE |
5924 | The value that @code{yylex} returns must be the positive numeric code |
5925 | for the type of token it has just found; a zero or negative value | |
5926 | signifies end-of-input. | |
bfa74976 RS |
5927 | |
5928 | When a token is referred to in the grammar rules by a name, that name | |
9913d6e4 JD |
5929 | in the parser implementation file becomes a C macro whose definition |
5930 | is the proper numeric code for that token type. So @code{yylex} can | |
5931 | use the name to indicate that type. @xref{Symbols}. | |
bfa74976 RS |
5932 | |
5933 | When a token is referred to in the grammar rules by a character literal, | |
5934 | the numeric code for that character is also the code for the token type. | |
72d2299c PE |
5935 | So @code{yylex} can simply return that character code, possibly converted |
5936 | to @code{unsigned char} to avoid sign-extension. The null character | |
5937 | must not be used this way, because its code is zero and that | |
bfa74976 RS |
5938 | signifies end-of-input. |
5939 | ||
5940 | Here is an example showing these things: | |
5941 | ||
5942 | @example | |
13863333 AD |
5943 | int |
5944 | yylex (void) | |
bfa74976 RS |
5945 | @{ |
5946 | @dots{} | |
72d2299c | 5947 | if (c == EOF) /* Detect end-of-input. */ |
bfa74976 RS |
5948 | return 0; |
5949 | @dots{} | |
5950 | if (c == '+' || c == '-') | |
72d2299c | 5951 | return c; /* Assume token type for `+' is '+'. */ |
bfa74976 | 5952 | @dots{} |
72d2299c | 5953 | return INT; /* Return the type of the token. */ |
bfa74976 RS |
5954 | @dots{} |
5955 | @} | |
5956 | @end example | |
5957 | ||
5958 | @noindent | |
5959 | This interface has been designed so that the output from the @code{lex} | |
5960 | utility can be used without change as the definition of @code{yylex}. | |
5961 | ||
931c7513 RS |
5962 | If the grammar uses literal string tokens, there are two ways that |
5963 | @code{yylex} can determine the token type codes for them: | |
5964 | ||
5965 | @itemize @bullet | |
5966 | @item | |
5967 | If the grammar defines symbolic token names as aliases for the | |
5968 | literal string tokens, @code{yylex} can use these symbolic names like | |
5969 | all others. In this case, the use of the literal string tokens in | |
5970 | the grammar file has no effect on @code{yylex}. | |
5971 | ||
5972 | @item | |
9ecbd125 | 5973 | @code{yylex} can find the multicharacter token in the @code{yytname} |
931c7513 | 5974 | table. The index of the token in the table is the token type's code. |
9ecbd125 | 5975 | The name of a multicharacter token is recorded in @code{yytname} with a |
931c7513 | 5976 | double-quote, the token's characters, and another double-quote. The |
9e0876fb PE |
5977 | token's characters are escaped as necessary to be suitable as input |
5978 | to Bison. | |
931c7513 | 5979 | |
9e0876fb PE |
5980 | Here's code for looking up a multicharacter token in @code{yytname}, |
5981 | assuming that the characters of the token are stored in | |
5982 | @code{token_buffer}, and assuming that the token does not contain any | |
5983 | characters like @samp{"} that require escaping. | |
931c7513 | 5984 | |
ea118b72 | 5985 | @example |
931c7513 RS |
5986 | for (i = 0; i < YYNTOKENS; i++) |
5987 | @{ | |
5988 | if (yytname[i] != 0 | |
5989 | && yytname[i][0] == '"' | |
68449b3a PE |
5990 | && ! strncmp (yytname[i] + 1, token_buffer, |
5991 | strlen (token_buffer)) | |
931c7513 RS |
5992 | && yytname[i][strlen (token_buffer) + 1] == '"' |
5993 | && yytname[i][strlen (token_buffer) + 2] == 0) | |
5994 | break; | |
5995 | @} | |
ea118b72 | 5996 | @end example |
931c7513 RS |
5997 | |
5998 | The @code{yytname} table is generated only if you use the | |
8c9a50be | 5999 | @code{%token-table} declaration. @xref{Decl Summary}. |
931c7513 RS |
6000 | @end itemize |
6001 | ||
342b8b6e | 6002 | @node Token Values |
bfa74976 RS |
6003 | @subsection Semantic Values of Tokens |
6004 | ||
6005 | @vindex yylval | |
9d9b8b70 | 6006 | In an ordinary (nonreentrant) parser, the semantic value of the token must |
bfa74976 RS |
6007 | be stored into the global variable @code{yylval}. When you are using |
6008 | just one data type for semantic values, @code{yylval} has that type. | |
6009 | Thus, if the type is @code{int} (the default), you might write this in | |
6010 | @code{yylex}: | |
6011 | ||
6012 | @example | |
6013 | @group | |
6014 | @dots{} | |
72d2299c PE |
6015 | yylval = value; /* Put value onto Bison stack. */ |
6016 | return INT; /* Return the type of the token. */ | |
bfa74976 RS |
6017 | @dots{} |
6018 | @end group | |
6019 | @end example | |
6020 | ||
6021 | When you are using multiple data types, @code{yylval}'s type is a union | |
704a47c4 AD |
6022 | made from the @code{%union} declaration (@pxref{Union Decl, ,The |
6023 | Collection of Value Types}). So when you store a token's value, you | |
6024 | must use the proper member of the union. If the @code{%union} | |
6025 | declaration looks like this: | |
bfa74976 RS |
6026 | |
6027 | @example | |
6028 | @group | |
6029 | %union @{ | |
6030 | int intval; | |
6031 | double val; | |
6032 | symrec *tptr; | |
6033 | @} | |
6034 | @end group | |
6035 | @end example | |
6036 | ||
6037 | @noindent | |
6038 | then the code in @code{yylex} might look like this: | |
6039 | ||
6040 | @example | |
6041 | @group | |
6042 | @dots{} | |
72d2299c PE |
6043 | yylval.intval = value; /* Put value onto Bison stack. */ |
6044 | return INT; /* Return the type of the token. */ | |
bfa74976 RS |
6045 | @dots{} |
6046 | @end group | |
6047 | @end example | |
6048 | ||
95923bd6 AD |
6049 | @node Token Locations |
6050 | @subsection Textual Locations of Tokens | |
bfa74976 RS |
6051 | |
6052 | @vindex yylloc | |
7404cdf3 JD |
6053 | If you are using the @samp{@@@var{n}}-feature (@pxref{Tracking Locations}) |
6054 | in actions to keep track of the textual locations of tokens and groupings, | |
6055 | then you must provide this information in @code{yylex}. The function | |
6056 | @code{yyparse} expects to find the textual location of a token just parsed | |
6057 | in the global variable @code{yylloc}. So @code{yylex} must store the proper | |
6058 | data in that variable. | |
847bf1f5 AD |
6059 | |
6060 | By default, the value of @code{yylloc} is a structure and you need only | |
89cab50d AD |
6061 | initialize the members that are going to be used by the actions. The |
6062 | four members are called @code{first_line}, @code{first_column}, | |
6063 | @code{last_line} and @code{last_column}. Note that the use of this | |
6064 | feature makes the parser noticeably slower. | |
bfa74976 RS |
6065 | |
6066 | @tindex YYLTYPE | |
6067 | The data type of @code{yylloc} has the name @code{YYLTYPE}. | |
6068 | ||
342b8b6e | 6069 | @node Pure Calling |
c656404a | 6070 | @subsection Calling Conventions for Pure Parsers |
bfa74976 | 6071 | |
d9df47b6 | 6072 | When you use the Bison declaration @code{%define api.pure} to request a |
e425e872 RS |
6073 | pure, reentrant parser, the global communication variables @code{yylval} |
6074 | and @code{yylloc} cannot be used. (@xref{Pure Decl, ,A Pure (Reentrant) | |
6075 | Parser}.) In such parsers the two global variables are replaced by | |
6076 | pointers passed as arguments to @code{yylex}. You must declare them as | |
6077 | shown here, and pass the information back by storing it through those | |
6078 | pointers. | |
bfa74976 RS |
6079 | |
6080 | @example | |
13863333 AD |
6081 | int |
6082 | yylex (YYSTYPE *lvalp, YYLTYPE *llocp) | |
bfa74976 RS |
6083 | @{ |
6084 | @dots{} | |
6085 | *lvalp = value; /* Put value onto Bison stack. */ | |
6086 | return INT; /* Return the type of the token. */ | |
6087 | @dots{} | |
6088 | @} | |
6089 | @end example | |
6090 | ||
6091 | If the grammar file does not use the @samp{@@} constructs to refer to | |
95923bd6 | 6092 | textual locations, then the type @code{YYLTYPE} will not be defined. In |
bfa74976 RS |
6093 | this case, omit the second argument; @code{yylex} will be called with |
6094 | only one argument. | |
6095 | ||
e425e872 | 6096 | |
2a8d363a AD |
6097 | If you wish to pass the additional parameter data to @code{yylex}, use |
6098 | @code{%lex-param} just like @code{%parse-param} (@pxref{Parser | |
6099 | Function}). | |
e425e872 | 6100 | |
feeb0eda | 6101 | @deffn {Directive} lex-param @{@var{argument-declaration}@} |
2a8d363a | 6102 | @findex %lex-param |
287c78f6 PE |
6103 | Declare that the braced-code @var{argument-declaration} is an |
6104 | additional @code{yylex} argument declaration. | |
2a8d363a | 6105 | @end deffn |
e425e872 | 6106 | |
2a8d363a | 6107 | For instance: |
e425e872 RS |
6108 | |
6109 | @example | |
feeb0eda PE |
6110 | %parse-param @{int *nastiness@} |
6111 | %lex-param @{int *nastiness@} | |
6112 | %parse-param @{int *randomness@} | |
e425e872 RS |
6113 | @end example |
6114 | ||
6115 | @noindent | |
18ad57b3 | 6116 | results in the following signatures: |
e425e872 RS |
6117 | |
6118 | @example | |
2a8d363a AD |
6119 | int yylex (int *nastiness); |
6120 | int yyparse (int *nastiness, int *randomness); | |
e425e872 RS |
6121 | @end example |
6122 | ||
d9df47b6 | 6123 | If @code{%define api.pure} is added: |
c656404a RS |
6124 | |
6125 | @example | |
2a8d363a AD |
6126 | int yylex (YYSTYPE *lvalp, int *nastiness); |
6127 | int yyparse (int *nastiness, int *randomness); | |
c656404a RS |
6128 | @end example |
6129 | ||
2a8d363a | 6130 | @noindent |
d9df47b6 | 6131 | and finally, if both @code{%define api.pure} and @code{%locations} are used: |
c656404a | 6132 | |
2a8d363a AD |
6133 | @example |
6134 | int yylex (YYSTYPE *lvalp, YYLTYPE *llocp, int *nastiness); | |
6135 | int yyparse (int *nastiness, int *randomness); | |
6136 | @end example | |
931c7513 | 6137 | |
342b8b6e | 6138 | @node Error Reporting |
bfa74976 RS |
6139 | @section The Error Reporting Function @code{yyerror} |
6140 | @cindex error reporting function | |
6141 | @findex yyerror | |
6142 | @cindex parse error | |
6143 | @cindex syntax error | |
6144 | ||
6e649e65 | 6145 | The Bison parser detects a @dfn{syntax error} or @dfn{parse error} |
9ecbd125 | 6146 | whenever it reads a token which cannot satisfy any syntax rule. An |
bfa74976 | 6147 | action in the grammar can also explicitly proclaim an error, using the |
ceed8467 AD |
6148 | macro @code{YYERROR} (@pxref{Action Features, ,Special Features for Use |
6149 | in Actions}). | |
bfa74976 RS |
6150 | |
6151 | The Bison parser expects to report the error by calling an error | |
6152 | reporting function named @code{yyerror}, which you must supply. It is | |
6153 | called by @code{yyparse} whenever a syntax error is found, and it | |
6e649e65 PE |
6154 | receives one argument. For a syntax error, the string is normally |
6155 | @w{@code{"syntax error"}}. | |
bfa74976 | 6156 | |
2a8d363a | 6157 | @findex %error-verbose |
6f04ee6c JD |
6158 | If you invoke the directive @code{%error-verbose} in the Bison declarations |
6159 | section (@pxref{Bison Declarations, ,The Bison Declarations Section}), then | |
6160 | Bison provides a more verbose and specific error message string instead of | |
6161 | just plain @w{@code{"syntax error"}}. However, that message sometimes | |
6162 | contains incorrect information if LAC is not enabled (@pxref{LAC}). | |
bfa74976 | 6163 | |
1a059451 PE |
6164 | The parser can detect one other kind of error: memory exhaustion. This |
6165 | can happen when the input contains constructions that are very deeply | |
bfa74976 | 6166 | nested. It isn't likely you will encounter this, since the Bison |
1a059451 PE |
6167 | parser normally extends its stack automatically up to a very large limit. But |
6168 | if memory is exhausted, @code{yyparse} calls @code{yyerror} in the usual | |
6169 | fashion, except that the argument string is @w{@code{"memory exhausted"}}. | |
6170 | ||
6171 | In some cases diagnostics like @w{@code{"syntax error"}} are | |
6172 | translated automatically from English to some other language before | |
6173 | they are passed to @code{yyerror}. @xref{Internationalization}. | |
bfa74976 RS |
6174 | |
6175 | The following definition suffices in simple programs: | |
6176 | ||
6177 | @example | |
6178 | @group | |
13863333 | 6179 | void |
38a92d50 | 6180 | yyerror (char const *s) |
bfa74976 RS |
6181 | @{ |
6182 | @end group | |
6183 | @group | |
6184 | fprintf (stderr, "%s\n", s); | |
6185 | @} | |
6186 | @end group | |
6187 | @end example | |
6188 | ||
6189 | After @code{yyerror} returns to @code{yyparse}, the latter will attempt | |
6190 | error recovery if you have written suitable error recovery grammar rules | |
6191 | (@pxref{Error Recovery}). If recovery is impossible, @code{yyparse} will | |
6192 | immediately return 1. | |
6193 | ||
93724f13 | 6194 | Obviously, in location tracking pure parsers, @code{yyerror} should have |
fa7e68c3 | 6195 | an access to the current location. |
35430378 | 6196 | This is indeed the case for the GLR |
2a8d363a | 6197 | parsers, but not for the Yacc parser, for historical reasons. I.e., if |
d9df47b6 | 6198 | @samp{%locations %define api.pure} is passed then the prototypes for |
2a8d363a AD |
6199 | @code{yyerror} are: |
6200 | ||
6201 | @example | |
38a92d50 PE |
6202 | void yyerror (char const *msg); /* Yacc parsers. */ |
6203 | void yyerror (YYLTYPE *locp, char const *msg); /* GLR parsers. */ | |
2a8d363a AD |
6204 | @end example |
6205 | ||
feeb0eda | 6206 | If @samp{%parse-param @{int *nastiness@}} is used, then: |
2a8d363a AD |
6207 | |
6208 | @example | |
b317297e PE |
6209 | void yyerror (int *nastiness, char const *msg); /* Yacc parsers. */ |
6210 | void yyerror (int *nastiness, char const *msg); /* GLR parsers. */ | |
2a8d363a AD |
6211 | @end example |
6212 | ||
35430378 | 6213 | Finally, GLR and Yacc parsers share the same @code{yyerror} calling |
2a8d363a AD |
6214 | convention for absolutely pure parsers, i.e., when the calling |
6215 | convention of @code{yylex} @emph{and} the calling convention of | |
d9df47b6 JD |
6216 | @code{%define api.pure} are pure. |
6217 | I.e.: | |
2a8d363a AD |
6218 | |
6219 | @example | |
6220 | /* Location tracking. */ | |
6221 | %locations | |
6222 | /* Pure yylex. */ | |
d9df47b6 | 6223 | %define api.pure |
feeb0eda | 6224 | %lex-param @{int *nastiness@} |
2a8d363a | 6225 | /* Pure yyparse. */ |
feeb0eda PE |
6226 | %parse-param @{int *nastiness@} |
6227 | %parse-param @{int *randomness@} | |
2a8d363a AD |
6228 | @end example |
6229 | ||
6230 | @noindent | |
6231 | results in the following signatures for all the parser kinds: | |
6232 | ||
6233 | @example | |
6234 | int yylex (YYSTYPE *lvalp, YYLTYPE *llocp, int *nastiness); | |
6235 | int yyparse (int *nastiness, int *randomness); | |
93724f13 AD |
6236 | void yyerror (YYLTYPE *locp, |
6237 | int *nastiness, int *randomness, | |
38a92d50 | 6238 | char const *msg); |
2a8d363a AD |
6239 | @end example |
6240 | ||
1c0c3e95 | 6241 | @noindent |
38a92d50 PE |
6242 | The prototypes are only indications of how the code produced by Bison |
6243 | uses @code{yyerror}. Bison-generated code always ignores the returned | |
6244 | value, so @code{yyerror} can return any type, including @code{void}. | |
6245 | Also, @code{yyerror} can be a variadic function; that is why the | |
6246 | message is always passed last. | |
6247 | ||
6248 | Traditionally @code{yyerror} returns an @code{int} that is always | |
6249 | ignored, but this is purely for historical reasons, and @code{void} is | |
6250 | preferable since it more accurately describes the return type for | |
6251 | @code{yyerror}. | |
93724f13 | 6252 | |
bfa74976 RS |
6253 | @vindex yynerrs |
6254 | The variable @code{yynerrs} contains the number of syntax errors | |
8a2800e7 | 6255 | reported so far. Normally this variable is global; but if you |
704a47c4 AD |
6256 | request a pure parser (@pxref{Pure Decl, ,A Pure (Reentrant) Parser}) |
6257 | then it is a local variable which only the actions can access. | |
bfa74976 | 6258 | |
342b8b6e | 6259 | @node Action Features |
bfa74976 RS |
6260 | @section Special Features for Use in Actions |
6261 | @cindex summary, action features | |
6262 | @cindex action features summary | |
6263 | ||
6264 | Here is a table of Bison constructs, variables and macros that | |
6265 | are useful in actions. | |
6266 | ||
18b519c0 | 6267 | @deffn {Variable} $$ |
bfa74976 RS |
6268 | Acts like a variable that contains the semantic value for the |
6269 | grouping made by the current rule. @xref{Actions}. | |
18b519c0 | 6270 | @end deffn |
bfa74976 | 6271 | |
18b519c0 | 6272 | @deffn {Variable} $@var{n} |
bfa74976 RS |
6273 | Acts like a variable that contains the semantic value for the |
6274 | @var{n}th component of the current rule. @xref{Actions}. | |
18b519c0 | 6275 | @end deffn |
bfa74976 | 6276 | |
18b519c0 | 6277 | @deffn {Variable} $<@var{typealt}>$ |
bfa74976 | 6278 | Like @code{$$} but specifies alternative @var{typealt} in the union |
704a47c4 AD |
6279 | specified by the @code{%union} declaration. @xref{Action Types, ,Data |
6280 | Types of Values in Actions}. | |
18b519c0 | 6281 | @end deffn |
bfa74976 | 6282 | |
18b519c0 | 6283 | @deffn {Variable} $<@var{typealt}>@var{n} |
bfa74976 | 6284 | Like @code{$@var{n}} but specifies alternative @var{typealt} in the |
13863333 | 6285 | union specified by the @code{%union} declaration. |
e0c471a9 | 6286 | @xref{Action Types, ,Data Types of Values in Actions}. |
18b519c0 | 6287 | @end deffn |
bfa74976 | 6288 | |
34a41a93 | 6289 | @deffn {Macro} YYABORT @code{;} |
bfa74976 RS |
6290 | Return immediately from @code{yyparse}, indicating failure. |
6291 | @xref{Parser Function, ,The Parser Function @code{yyparse}}. | |
18b519c0 | 6292 | @end deffn |
bfa74976 | 6293 | |
34a41a93 | 6294 | @deffn {Macro} YYACCEPT @code{;} |
bfa74976 RS |
6295 | Return immediately from @code{yyparse}, indicating success. |
6296 | @xref{Parser Function, ,The Parser Function @code{yyparse}}. | |
18b519c0 | 6297 | @end deffn |
bfa74976 | 6298 | |
34a41a93 | 6299 | @deffn {Macro} YYBACKUP (@var{token}, @var{value})@code{;} |
bfa74976 RS |
6300 | @findex YYBACKUP |
6301 | Unshift a token. This macro is allowed only for rules that reduce | |
742e4900 | 6302 | a single value, and only when there is no lookahead token. |
35430378 | 6303 | It is also disallowed in GLR parsers. |
742e4900 | 6304 | It installs a lookahead token with token type @var{token} and |
bfa74976 RS |
6305 | semantic value @var{value}; then it discards the value that was |
6306 | going to be reduced by this rule. | |
6307 | ||
6308 | If the macro is used when it is not valid, such as when there is | |
742e4900 | 6309 | a lookahead token already, then it reports a syntax error with |
bfa74976 RS |
6310 | a message @samp{cannot back up} and performs ordinary error |
6311 | recovery. | |
6312 | ||
6313 | In either case, the rest of the action is not executed. | |
18b519c0 | 6314 | @end deffn |
bfa74976 | 6315 | |
18b519c0 | 6316 | @deffn {Macro} YYEMPTY |
742e4900 | 6317 | Value stored in @code{yychar} when there is no lookahead token. |
18b519c0 | 6318 | @end deffn |
bfa74976 | 6319 | |
32c29292 | 6320 | @deffn {Macro} YYEOF |
742e4900 | 6321 | Value stored in @code{yychar} when the lookahead is the end of the input |
32c29292 JD |
6322 | stream. |
6323 | @end deffn | |
6324 | ||
34a41a93 | 6325 | @deffn {Macro} YYERROR @code{;} |
bfa74976 RS |
6326 | Cause an immediate syntax error. This statement initiates error |
6327 | recovery just as if the parser itself had detected an error; however, it | |
6328 | does not call @code{yyerror}, and does not print any message. If you | |
6329 | want to print an error message, call @code{yyerror} explicitly before | |
6330 | the @samp{YYERROR;} statement. @xref{Error Recovery}. | |
18b519c0 | 6331 | @end deffn |
bfa74976 | 6332 | |
18b519c0 | 6333 | @deffn {Macro} YYRECOVERING |
02103984 PE |
6334 | @findex YYRECOVERING |
6335 | The expression @code{YYRECOVERING ()} yields 1 when the parser | |
6336 | is recovering from a syntax error, and 0 otherwise. | |
bfa74976 | 6337 | @xref{Error Recovery}. |
18b519c0 | 6338 | @end deffn |
bfa74976 | 6339 | |
18b519c0 | 6340 | @deffn {Variable} yychar |
742e4900 JD |
6341 | Variable containing either the lookahead token, or @code{YYEOF} when the |
6342 | lookahead is the end of the input stream, or @code{YYEMPTY} when no lookahead | |
32c29292 JD |
6343 | has been performed so the next token is not yet known. |
6344 | Do not modify @code{yychar} in a deferred semantic action (@pxref{GLR Semantic | |
6345 | Actions}). | |
742e4900 | 6346 | @xref{Lookahead, ,Lookahead Tokens}. |
18b519c0 | 6347 | @end deffn |
bfa74976 | 6348 | |
34a41a93 | 6349 | @deffn {Macro} yyclearin @code{;} |
742e4900 | 6350 | Discard the current lookahead token. This is useful primarily in |
32c29292 JD |
6351 | error rules. |
6352 | Do not invoke @code{yyclearin} in a deferred semantic action (@pxref{GLR | |
6353 | Semantic Actions}). | |
6354 | @xref{Error Recovery}. | |
18b519c0 | 6355 | @end deffn |
bfa74976 | 6356 | |
34a41a93 | 6357 | @deffn {Macro} yyerrok @code{;} |
bfa74976 | 6358 | Resume generating error messages immediately for subsequent syntax |
13863333 | 6359 | errors. This is useful primarily in error rules. |
bfa74976 | 6360 | @xref{Error Recovery}. |
18b519c0 | 6361 | @end deffn |
bfa74976 | 6362 | |
32c29292 | 6363 | @deffn {Variable} yylloc |
742e4900 | 6364 | Variable containing the lookahead token location when @code{yychar} is not set |
32c29292 JD |
6365 | to @code{YYEMPTY} or @code{YYEOF}. |
6366 | Do not modify @code{yylloc} in a deferred semantic action (@pxref{GLR Semantic | |
6367 | Actions}). | |
6368 | @xref{Actions and Locations, ,Actions and Locations}. | |
6369 | @end deffn | |
6370 | ||
6371 | @deffn {Variable} yylval | |
742e4900 | 6372 | Variable containing the lookahead token semantic value when @code{yychar} is |
32c29292 JD |
6373 | not set to @code{YYEMPTY} or @code{YYEOF}. |
6374 | Do not modify @code{yylval} in a deferred semantic action (@pxref{GLR Semantic | |
6375 | Actions}). | |
6376 | @xref{Actions, ,Actions}. | |
6377 | @end deffn | |
6378 | ||
18b519c0 | 6379 | @deffn {Value} @@$ |
847bf1f5 | 6380 | @findex @@$ |
7404cdf3 JD |
6381 | Acts like a structure variable containing information on the textual |
6382 | location of the grouping made by the current rule. @xref{Tracking | |
6383 | Locations}. | |
bfa74976 | 6384 | |
847bf1f5 AD |
6385 | @c Check if those paragraphs are still useful or not. |
6386 | ||
6387 | @c @example | |
6388 | @c struct @{ | |
6389 | @c int first_line, last_line; | |
6390 | @c int first_column, last_column; | |
6391 | @c @}; | |
6392 | @c @end example | |
6393 | ||
6394 | @c Thus, to get the starting line number of the third component, you would | |
6395 | @c use @samp{@@3.first_line}. | |
bfa74976 | 6396 | |
847bf1f5 AD |
6397 | @c In order for the members of this structure to contain valid information, |
6398 | @c you must make @code{yylex} supply this information about each token. | |
6399 | @c If you need only certain members, then @code{yylex} need only fill in | |
6400 | @c those members. | |
bfa74976 | 6401 | |
847bf1f5 | 6402 | @c The use of this feature makes the parser noticeably slower. |
18b519c0 | 6403 | @end deffn |
847bf1f5 | 6404 | |
18b519c0 | 6405 | @deffn {Value} @@@var{n} |
847bf1f5 | 6406 | @findex @@@var{n} |
7404cdf3 JD |
6407 | Acts like a structure variable containing information on the textual |
6408 | location of the @var{n}th component of the current rule. @xref{Tracking | |
6409 | Locations}. | |
18b519c0 | 6410 | @end deffn |
bfa74976 | 6411 | |
f7ab6a50 PE |
6412 | @node Internationalization |
6413 | @section Parser Internationalization | |
6414 | @cindex internationalization | |
6415 | @cindex i18n | |
6416 | @cindex NLS | |
6417 | @cindex gettext | |
6418 | @cindex bison-po | |
6419 | ||
6420 | A Bison-generated parser can print diagnostics, including error and | |
6421 | tracing messages. By default, they appear in English. However, Bison | |
f8e1c9e5 AD |
6422 | also supports outputting diagnostics in the user's native language. To |
6423 | make this work, the user should set the usual environment variables. | |
6424 | @xref{Users, , The User's View, gettext, GNU @code{gettext} utilities}. | |
6425 | For example, the shell command @samp{export LC_ALL=fr_CA.UTF-8} might | |
35430378 | 6426 | set the user's locale to French Canadian using the UTF-8 |
f7ab6a50 PE |
6427 | encoding. The exact set of available locales depends on the user's |
6428 | installation. | |
6429 | ||
6430 | The maintainer of a package that uses a Bison-generated parser enables | |
6431 | the internationalization of the parser's output through the following | |
35430378 JD |
6432 | steps. Here we assume a package that uses GNU Autoconf and |
6433 | GNU Automake. | |
f7ab6a50 PE |
6434 | |
6435 | @enumerate | |
6436 | @item | |
30757c8c | 6437 | @cindex bison-i18n.m4 |
35430378 | 6438 | Into the directory containing the GNU Autoconf macros used |
f7ab6a50 PE |
6439 | by the package---often called @file{m4}---copy the |
6440 | @file{bison-i18n.m4} file installed by Bison under | |
6441 | @samp{share/aclocal/bison-i18n.m4} in Bison's installation directory. | |
6442 | For example: | |
6443 | ||
6444 | @example | |
6445 | cp /usr/local/share/aclocal/bison-i18n.m4 m4/bison-i18n.m4 | |
6446 | @end example | |
6447 | ||
6448 | @item | |
30757c8c PE |
6449 | @findex BISON_I18N |
6450 | @vindex BISON_LOCALEDIR | |
6451 | @vindex YYENABLE_NLS | |
f7ab6a50 PE |
6452 | In the top-level @file{configure.ac}, after the @code{AM_GNU_GETTEXT} |
6453 | invocation, add an invocation of @code{BISON_I18N}. This macro is | |
6454 | defined in the file @file{bison-i18n.m4} that you copied earlier. It | |
6455 | causes @samp{configure} to find the value of the | |
30757c8c PE |
6456 | @code{BISON_LOCALEDIR} variable, and it defines the source-language |
6457 | symbol @code{YYENABLE_NLS} to enable translations in the | |
6458 | Bison-generated parser. | |
f7ab6a50 PE |
6459 | |
6460 | @item | |
6461 | In the @code{main} function of your program, designate the directory | |
6462 | containing Bison's runtime message catalog, through a call to | |
6463 | @samp{bindtextdomain} with domain name @samp{bison-runtime}. | |
6464 | For example: | |
6465 | ||
6466 | @example | |
6467 | bindtextdomain ("bison-runtime", BISON_LOCALEDIR); | |
6468 | @end example | |
6469 | ||
6470 | Typically this appears after any other call @code{bindtextdomain | |
6471 | (PACKAGE, LOCALEDIR)} that your package already has. Here we rely on | |
6472 | @samp{BISON_LOCALEDIR} to be defined as a string through the | |
6473 | @file{Makefile}. | |
6474 | ||
6475 | @item | |
6476 | In the @file{Makefile.am} that controls the compilation of the @code{main} | |
6477 | function, make @samp{BISON_LOCALEDIR} available as a C preprocessor macro, | |
6478 | either in @samp{DEFS} or in @samp{AM_CPPFLAGS}. For example: | |
6479 | ||
6480 | @example | |
6481 | DEFS = @@DEFS@@ -DBISON_LOCALEDIR='"$(BISON_LOCALEDIR)"' | |
6482 | @end example | |
6483 | ||
6484 | or: | |
6485 | ||
6486 | @example | |
6487 | AM_CPPFLAGS = -DBISON_LOCALEDIR='"$(BISON_LOCALEDIR)"' | |
6488 | @end example | |
6489 | ||
6490 | @item | |
6491 | Finally, invoke the command @command{autoreconf} to generate the build | |
6492 | infrastructure. | |
6493 | @end enumerate | |
6494 | ||
bfa74976 | 6495 | |
342b8b6e | 6496 | @node Algorithm |
13863333 AD |
6497 | @chapter The Bison Parser Algorithm |
6498 | @cindex Bison parser algorithm | |
bfa74976 RS |
6499 | @cindex algorithm of parser |
6500 | @cindex shifting | |
6501 | @cindex reduction | |
6502 | @cindex parser stack | |
6503 | @cindex stack, parser | |
6504 | ||
6505 | As Bison reads tokens, it pushes them onto a stack along with their | |
6506 | semantic values. The stack is called the @dfn{parser stack}. Pushing a | |
6507 | token is traditionally called @dfn{shifting}. | |
6508 | ||
6509 | For example, suppose the infix calculator has read @samp{1 + 5 *}, with a | |
6510 | @samp{3} to come. The stack will have four elements, one for each token | |
6511 | that was shifted. | |
6512 | ||
6513 | But the stack does not always have an element for each token read. When | |
6514 | the last @var{n} tokens and groupings shifted match the components of a | |
6515 | grammar rule, they can be combined according to that rule. This is called | |
6516 | @dfn{reduction}. Those tokens and groupings are replaced on the stack by a | |
6517 | single grouping whose symbol is the result (left hand side) of that rule. | |
6518 | Running the rule's action is part of the process of reduction, because this | |
6519 | is what computes the semantic value of the resulting grouping. | |
6520 | ||
6521 | For example, if the infix calculator's parser stack contains this: | |
6522 | ||
6523 | @example | |
6524 | 1 + 5 * 3 | |
6525 | @end example | |
6526 | ||
6527 | @noindent | |
6528 | and the next input token is a newline character, then the last three | |
6529 | elements can be reduced to 15 via the rule: | |
6530 | ||
6531 | @example | |
6532 | expr: expr '*' expr; | |
6533 | @end example | |
6534 | ||
6535 | @noindent | |
6536 | Then the stack contains just these three elements: | |
6537 | ||
6538 | @example | |
6539 | 1 + 15 | |
6540 | @end example | |
6541 | ||
6542 | @noindent | |
6543 | At this point, another reduction can be made, resulting in the single value | |
6544 | 16. Then the newline token can be shifted. | |
6545 | ||
6546 | The parser tries, by shifts and reductions, to reduce the entire input down | |
6547 | to a single grouping whose symbol is the grammar's start-symbol | |
6548 | (@pxref{Language and Grammar, ,Languages and Context-Free Grammars}). | |
6549 | ||
6550 | This kind of parser is known in the literature as a bottom-up parser. | |
6551 | ||
6552 | @menu | |
742e4900 | 6553 | * Lookahead:: Parser looks one token ahead when deciding what to do. |
bfa74976 RS |
6554 | * Shift/Reduce:: Conflicts: when either shifting or reduction is valid. |
6555 | * Precedence:: Operator precedence works by resolving conflicts. | |
6556 | * Contextual Precedence:: When an operator's precedence depends on context. | |
6557 | * Parser States:: The parser is a finite-state-machine with stack. | |
6558 | * Reduce/Reduce:: When two rules are applicable in the same situation. | |
5da0355a | 6559 | * Mysterious Conflicts:: Conflicts that look unjustified. |
6f04ee6c | 6560 | * Tuning LR:: How to tune fundamental aspects of LR-based parsing. |
676385e2 | 6561 | * Generalized LR Parsing:: Parsing arbitrary context-free grammars. |
1a059451 | 6562 | * Memory Management:: What happens when memory is exhausted. How to avoid it. |
bfa74976 RS |
6563 | @end menu |
6564 | ||
742e4900 JD |
6565 | @node Lookahead |
6566 | @section Lookahead Tokens | |
6567 | @cindex lookahead token | |
bfa74976 RS |
6568 | |
6569 | The Bison parser does @emph{not} always reduce immediately as soon as the | |
6570 | last @var{n} tokens and groupings match a rule. This is because such a | |
6571 | simple strategy is inadequate to handle most languages. Instead, when a | |
6572 | reduction is possible, the parser sometimes ``looks ahead'' at the next | |
6573 | token in order to decide what to do. | |
6574 | ||
6575 | When a token is read, it is not immediately shifted; first it becomes the | |
742e4900 | 6576 | @dfn{lookahead token}, which is not on the stack. Now the parser can |
bfa74976 | 6577 | perform one or more reductions of tokens and groupings on the stack, while |
742e4900 JD |
6578 | the lookahead token remains off to the side. When no more reductions |
6579 | should take place, the lookahead token is shifted onto the stack. This | |
bfa74976 | 6580 | does not mean that all possible reductions have been done; depending on the |
742e4900 | 6581 | token type of the lookahead token, some rules may choose to delay their |
bfa74976 RS |
6582 | application. |
6583 | ||
742e4900 | 6584 | Here is a simple case where lookahead is needed. These three rules define |
bfa74976 RS |
6585 | expressions which contain binary addition operators and postfix unary |
6586 | factorial operators (@samp{!}), and allow parentheses for grouping. | |
6587 | ||
6588 | @example | |
6589 | @group | |
de6be119 AD |
6590 | expr: |
6591 | term '+' expr | |
6592 | | term | |
6593 | ; | |
bfa74976 RS |
6594 | @end group |
6595 | ||
6596 | @group | |
de6be119 AD |
6597 | term: |
6598 | '(' expr ')' | |
6599 | | term '!' | |
6600 | | NUMBER | |
6601 | ; | |
bfa74976 RS |
6602 | @end group |
6603 | @end example | |
6604 | ||
6605 | Suppose that the tokens @w{@samp{1 + 2}} have been read and shifted; what | |
6606 | should be done? If the following token is @samp{)}, then the first three | |
6607 | tokens must be reduced to form an @code{expr}. This is the only valid | |
6608 | course, because shifting the @samp{)} would produce a sequence of symbols | |
6609 | @w{@code{term ')'}}, and no rule allows this. | |
6610 | ||
6611 | If the following token is @samp{!}, then it must be shifted immediately so | |
6612 | that @w{@samp{2 !}} can be reduced to make a @code{term}. If instead the | |
6613 | parser were to reduce before shifting, @w{@samp{1 + 2}} would become an | |
6614 | @code{expr}. It would then be impossible to shift the @samp{!} because | |
6615 | doing so would produce on the stack the sequence of symbols @code{expr | |
6616 | '!'}. No rule allows that sequence. | |
6617 | ||
6618 | @vindex yychar | |
32c29292 JD |
6619 | @vindex yylval |
6620 | @vindex yylloc | |
742e4900 | 6621 | The lookahead token is stored in the variable @code{yychar}. |
32c29292 JD |
6622 | Its semantic value and location, if any, are stored in the variables |
6623 | @code{yylval} and @code{yylloc}. | |
bfa74976 RS |
6624 | @xref{Action Features, ,Special Features for Use in Actions}. |
6625 | ||
342b8b6e | 6626 | @node Shift/Reduce |
bfa74976 RS |
6627 | @section Shift/Reduce Conflicts |
6628 | @cindex conflicts | |
6629 | @cindex shift/reduce conflicts | |
6630 | @cindex dangling @code{else} | |
6631 | @cindex @code{else}, dangling | |
6632 | ||
6633 | Suppose we are parsing a language which has if-then and if-then-else | |
6634 | statements, with a pair of rules like this: | |
6635 | ||
6636 | @example | |
6637 | @group | |
6638 | if_stmt: | |
de6be119 AD |
6639 | IF expr THEN stmt |
6640 | | IF expr THEN stmt ELSE stmt | |
6641 | ; | |
bfa74976 RS |
6642 | @end group |
6643 | @end example | |
6644 | ||
6645 | @noindent | |
6646 | Here we assume that @code{IF}, @code{THEN} and @code{ELSE} are | |
6647 | terminal symbols for specific keyword tokens. | |
6648 | ||
742e4900 | 6649 | When the @code{ELSE} token is read and becomes the lookahead token, the |
bfa74976 RS |
6650 | contents of the stack (assuming the input is valid) are just right for |
6651 | reduction by the first rule. But it is also legitimate to shift the | |
6652 | @code{ELSE}, because that would lead to eventual reduction by the second | |
6653 | rule. | |
6654 | ||
6655 | This situation, where either a shift or a reduction would be valid, is | |
6656 | called a @dfn{shift/reduce conflict}. Bison is designed to resolve | |
6657 | these conflicts by choosing to shift, unless otherwise directed by | |
6658 | operator precedence declarations. To see the reason for this, let's | |
6659 | contrast it with the other alternative. | |
6660 | ||
6661 | Since the parser prefers to shift the @code{ELSE}, the result is to attach | |
6662 | the else-clause to the innermost if-statement, making these two inputs | |
6663 | equivalent: | |
6664 | ||
6665 | @example | |
6666 | if x then if y then win (); else lose; | |
6667 | ||
6668 | if x then do; if y then win (); else lose; end; | |
6669 | @end example | |
6670 | ||
6671 | But if the parser chose to reduce when possible rather than shift, the | |
6672 | result would be to attach the else-clause to the outermost if-statement, | |
6673 | making these two inputs equivalent: | |
6674 | ||
6675 | @example | |
6676 | if x then if y then win (); else lose; | |
6677 | ||
6678 | if x then do; if y then win (); end; else lose; | |
6679 | @end example | |
6680 | ||
6681 | The conflict exists because the grammar as written is ambiguous: either | |
6682 | parsing of the simple nested if-statement is legitimate. The established | |
6683 | convention is that these ambiguities are resolved by attaching the | |
6684 | else-clause to the innermost if-statement; this is what Bison accomplishes | |
6685 | by choosing to shift rather than reduce. (It would ideally be cleaner to | |
6686 | write an unambiguous grammar, but that is very hard to do in this case.) | |
6687 | This particular ambiguity was first encountered in the specifications of | |
6688 | Algol 60 and is called the ``dangling @code{else}'' ambiguity. | |
6689 | ||
6690 | To avoid warnings from Bison about predictable, legitimate shift/reduce | |
cf22447c JD |
6691 | conflicts, use the @code{%expect @var{n}} declaration. |
6692 | There will be no warning as long as the number of shift/reduce conflicts | |
6693 | is exactly @var{n}, and Bison will report an error if there is a | |
6694 | different number. | |
bfa74976 RS |
6695 | @xref{Expect Decl, ,Suppressing Conflict Warnings}. |
6696 | ||
6697 | The definition of @code{if_stmt} above is solely to blame for the | |
6698 | conflict, but the conflict does not actually appear without additional | |
9913d6e4 JD |
6699 | rules. Here is a complete Bison grammar file that actually manifests |
6700 | the conflict: | |
bfa74976 RS |
6701 | |
6702 | @example | |
6703 | @group | |
6704 | %token IF THEN ELSE variable | |
6705 | %% | |
6706 | @end group | |
6707 | @group | |
de6be119 AD |
6708 | stmt: |
6709 | expr | |
6710 | | if_stmt | |
6711 | ; | |
bfa74976 RS |
6712 | @end group |
6713 | ||
6714 | @group | |
6715 | if_stmt: | |
de6be119 AD |
6716 | IF expr THEN stmt |
6717 | | IF expr THEN stmt ELSE stmt | |
6718 | ; | |
bfa74976 RS |
6719 | @end group |
6720 | ||
de6be119 AD |
6721 | expr: |
6722 | variable | |
6723 | ; | |
bfa74976 RS |
6724 | @end example |
6725 | ||
342b8b6e | 6726 | @node Precedence |
bfa74976 RS |
6727 | @section Operator Precedence |
6728 | @cindex operator precedence | |
6729 | @cindex precedence of operators | |
6730 | ||
6731 | Another situation where shift/reduce conflicts appear is in arithmetic | |
6732 | expressions. Here shifting is not always the preferred resolution; the | |
6733 | Bison declarations for operator precedence allow you to specify when to | |
6734 | shift and when to reduce. | |
6735 | ||
6736 | @menu | |
6737 | * Why Precedence:: An example showing why precedence is needed. | |
6738 | * Using Precedence:: How to specify precedence in Bison grammars. | |
6739 | * Precedence Examples:: How these features are used in the previous example. | |
6740 | * How Precedence:: How they work. | |
6741 | @end menu | |
6742 | ||
342b8b6e | 6743 | @node Why Precedence |
bfa74976 RS |
6744 | @subsection When Precedence is Needed |
6745 | ||
6746 | Consider the following ambiguous grammar fragment (ambiguous because the | |
6747 | input @w{@samp{1 - 2 * 3}} can be parsed in two different ways): | |
6748 | ||
6749 | @example | |
6750 | @group | |
de6be119 AD |
6751 | expr: |
6752 | expr '-' expr | |
6753 | | expr '*' expr | |
6754 | | expr '<' expr | |
6755 | | '(' expr ')' | |
6756 | @dots{} | |
6757 | ; | |
bfa74976 RS |
6758 | @end group |
6759 | @end example | |
6760 | ||
6761 | @noindent | |
6762 | Suppose the parser has seen the tokens @samp{1}, @samp{-} and @samp{2}; | |
14ded682 AD |
6763 | should it reduce them via the rule for the subtraction operator? It |
6764 | depends on the next token. Of course, if the next token is @samp{)}, we | |
6765 | must reduce; shifting is invalid because no single rule can reduce the | |
6766 | token sequence @w{@samp{- 2 )}} or anything starting with that. But if | |
6767 | the next token is @samp{*} or @samp{<}, we have a choice: either | |
6768 | shifting or reduction would allow the parse to complete, but with | |
6769 | different results. | |
6770 | ||
6771 | To decide which one Bison should do, we must consider the results. If | |
6772 | the next operator token @var{op} is shifted, then it must be reduced | |
6773 | first in order to permit another opportunity to reduce the difference. | |
6774 | The result is (in effect) @w{@samp{1 - (2 @var{op} 3)}}. On the other | |
6775 | hand, if the subtraction is reduced before shifting @var{op}, the result | |
6776 | is @w{@samp{(1 - 2) @var{op} 3}}. Clearly, then, the choice of shift or | |
6777 | reduce should depend on the relative precedence of the operators | |
6778 | @samp{-} and @var{op}: @samp{*} should be shifted first, but not | |
6779 | @samp{<}. | |
bfa74976 RS |
6780 | |
6781 | @cindex associativity | |
6782 | What about input such as @w{@samp{1 - 2 - 5}}; should this be | |
14ded682 AD |
6783 | @w{@samp{(1 - 2) - 5}} or should it be @w{@samp{1 - (2 - 5)}}? For most |
6784 | operators we prefer the former, which is called @dfn{left association}. | |
6785 | The latter alternative, @dfn{right association}, is desirable for | |
6786 | assignment operators. The choice of left or right association is a | |
6787 | matter of whether the parser chooses to shift or reduce when the stack | |
742e4900 | 6788 | contains @w{@samp{1 - 2}} and the lookahead token is @samp{-}: shifting |
14ded682 | 6789 | makes right-associativity. |
bfa74976 | 6790 | |
342b8b6e | 6791 | @node Using Precedence |
bfa74976 RS |
6792 | @subsection Specifying Operator Precedence |
6793 | @findex %left | |
6794 | @findex %right | |
6795 | @findex %nonassoc | |
6796 | ||
6797 | Bison allows you to specify these choices with the operator precedence | |
6798 | declarations @code{%left} and @code{%right}. Each such declaration | |
6799 | contains a list of tokens, which are operators whose precedence and | |
6800 | associativity is being declared. The @code{%left} declaration makes all | |
6801 | those operators left-associative and the @code{%right} declaration makes | |
6802 | them right-associative. A third alternative is @code{%nonassoc}, which | |
6803 | declares that it is a syntax error to find the same operator twice ``in a | |
6804 | row''. | |
6805 | ||
6806 | The relative precedence of different operators is controlled by the | |
6807 | order in which they are declared. The first @code{%left} or | |
6808 | @code{%right} declaration in the file declares the operators whose | |
6809 | precedence is lowest, the next such declaration declares the operators | |
6810 | whose precedence is a little higher, and so on. | |
6811 | ||
342b8b6e | 6812 | @node Precedence Examples |
bfa74976 RS |
6813 | @subsection Precedence Examples |
6814 | ||
6815 | In our example, we would want the following declarations: | |
6816 | ||
6817 | @example | |
6818 | %left '<' | |
6819 | %left '-' | |
6820 | %left '*' | |
6821 | @end example | |
6822 | ||
6823 | In a more complete example, which supports other operators as well, we | |
6824 | would declare them in groups of equal precedence. For example, @code{'+'} is | |
6825 | declared with @code{'-'}: | |
6826 | ||
6827 | @example | |
6828 | %left '<' '>' '=' NE LE GE | |
6829 | %left '+' '-' | |
6830 | %left '*' '/' | |
6831 | @end example | |
6832 | ||
6833 | @noindent | |
6834 | (Here @code{NE} and so on stand for the operators for ``not equal'' | |
6835 | and so on. We assume that these tokens are more than one character long | |
6836 | and therefore are represented by names, not character literals.) | |
6837 | ||
342b8b6e | 6838 | @node How Precedence |
bfa74976 RS |
6839 | @subsection How Precedence Works |
6840 | ||
6841 | The first effect of the precedence declarations is to assign precedence | |
6842 | levels to the terminal symbols declared. The second effect is to assign | |
704a47c4 AD |
6843 | precedence levels to certain rules: each rule gets its precedence from |
6844 | the last terminal symbol mentioned in the components. (You can also | |
6845 | specify explicitly the precedence of a rule. @xref{Contextual | |
6846 | Precedence, ,Context-Dependent Precedence}.) | |
6847 | ||
6848 | Finally, the resolution of conflicts works by comparing the precedence | |
742e4900 | 6849 | of the rule being considered with that of the lookahead token. If the |
704a47c4 AD |
6850 | token's precedence is higher, the choice is to shift. If the rule's |
6851 | precedence is higher, the choice is to reduce. If they have equal | |
6852 | precedence, the choice is made based on the associativity of that | |
6853 | precedence level. The verbose output file made by @samp{-v} | |
6854 | (@pxref{Invocation, ,Invoking Bison}) says how each conflict was | |
6855 | resolved. | |
bfa74976 RS |
6856 | |
6857 | Not all rules and not all tokens have precedence. If either the rule or | |
742e4900 | 6858 | the lookahead token has no precedence, then the default is to shift. |
bfa74976 | 6859 | |
342b8b6e | 6860 | @node Contextual Precedence |
bfa74976 RS |
6861 | @section Context-Dependent Precedence |
6862 | @cindex context-dependent precedence | |
6863 | @cindex unary operator precedence | |
6864 | @cindex precedence, context-dependent | |
6865 | @cindex precedence, unary operator | |
6866 | @findex %prec | |
6867 | ||
6868 | Often the precedence of an operator depends on the context. This sounds | |
6869 | outlandish at first, but it is really very common. For example, a minus | |
6870 | sign typically has a very high precedence as a unary operator, and a | |
6871 | somewhat lower precedence (lower than multiplication) as a binary operator. | |
6872 | ||
6873 | The Bison precedence declarations, @code{%left}, @code{%right} and | |
6874 | @code{%nonassoc}, can only be used once for a given token; so a token has | |
6875 | only one precedence declared in this way. For context-dependent | |
6876 | precedence, you need to use an additional mechanism: the @code{%prec} | |
e0c471a9 | 6877 | modifier for rules. |
bfa74976 RS |
6878 | |
6879 | The @code{%prec} modifier declares the precedence of a particular rule by | |
6880 | specifying a terminal symbol whose precedence should be used for that rule. | |
6881 | It's not necessary for that symbol to appear otherwise in the rule. The | |
6882 | modifier's syntax is: | |
6883 | ||
6884 | @example | |
6885 | %prec @var{terminal-symbol} | |
6886 | @end example | |
6887 | ||
6888 | @noindent | |
6889 | and it is written after the components of the rule. Its effect is to | |
6890 | assign the rule the precedence of @var{terminal-symbol}, overriding | |
6891 | the precedence that would be deduced for it in the ordinary way. The | |
6892 | altered rule precedence then affects how conflicts involving that rule | |
6893 | are resolved (@pxref{Precedence, ,Operator Precedence}). | |
6894 | ||
6895 | Here is how @code{%prec} solves the problem of unary minus. First, declare | |
6896 | a precedence for a fictitious terminal symbol named @code{UMINUS}. There | |
6897 | are no tokens of this type, but the symbol serves to stand for its | |
6898 | precedence: | |
6899 | ||
6900 | @example | |
6901 | @dots{} | |
6902 | %left '+' '-' | |
6903 | %left '*' | |
6904 | %left UMINUS | |
6905 | @end example | |
6906 | ||
6907 | Now the precedence of @code{UMINUS} can be used in specific rules: | |
6908 | ||
6909 | @example | |
6910 | @group | |
de6be119 AD |
6911 | exp: |
6912 | @dots{} | |
6913 | | exp '-' exp | |
6914 | @dots{} | |
6915 | | '-' exp %prec UMINUS | |
bfa74976 RS |
6916 | @end group |
6917 | @end example | |
6918 | ||
91d2c560 | 6919 | @ifset defaultprec |
39a06c25 PE |
6920 | If you forget to append @code{%prec UMINUS} to the rule for unary |
6921 | minus, Bison silently assumes that minus has its usual precedence. | |
6922 | This kind of problem can be tricky to debug, since one typically | |
6923 | discovers the mistake only by testing the code. | |
6924 | ||
22fccf95 | 6925 | The @code{%no-default-prec;} declaration makes it easier to discover |
39a06c25 PE |
6926 | this kind of problem systematically. It causes rules that lack a |
6927 | @code{%prec} modifier to have no precedence, even if the last terminal | |
6928 | symbol mentioned in their components has a declared precedence. | |
6929 | ||
22fccf95 | 6930 | If @code{%no-default-prec;} is in effect, you must specify @code{%prec} |
39a06c25 PE |
6931 | for all rules that participate in precedence conflict resolution. |
6932 | Then you will see any shift/reduce conflict until you tell Bison how | |
6933 | to resolve it, either by changing your grammar or by adding an | |
6934 | explicit precedence. This will probably add declarations to the | |
6935 | grammar, but it helps to protect against incorrect rule precedences. | |
6936 | ||
22fccf95 PE |
6937 | The effect of @code{%no-default-prec;} can be reversed by giving |
6938 | @code{%default-prec;}, which is the default. | |
91d2c560 | 6939 | @end ifset |
39a06c25 | 6940 | |
342b8b6e | 6941 | @node Parser States |
bfa74976 RS |
6942 | @section Parser States |
6943 | @cindex finite-state machine | |
6944 | @cindex parser state | |
6945 | @cindex state (of parser) | |
6946 | ||
6947 | The function @code{yyparse} is implemented using a finite-state machine. | |
6948 | The values pushed on the parser stack are not simply token type codes; they | |
6949 | represent the entire sequence of terminal and nonterminal symbols at or | |
6950 | near the top of the stack. The current state collects all the information | |
6951 | about previous input which is relevant to deciding what to do next. | |
6952 | ||
742e4900 JD |
6953 | Each time a lookahead token is read, the current parser state together |
6954 | with the type of lookahead token are looked up in a table. This table | |
6955 | entry can say, ``Shift the lookahead token.'' In this case, it also | |
bfa74976 RS |
6956 | specifies the new parser state, which is pushed onto the top of the |
6957 | parser stack. Or it can say, ``Reduce using rule number @var{n}.'' | |
6958 | This means that a certain number of tokens or groupings are taken off | |
6959 | the top of the stack, and replaced by one grouping. In other words, | |
6960 | that number of states are popped from the stack, and one new state is | |
6961 | pushed. | |
6962 | ||
742e4900 | 6963 | There is one other alternative: the table can say that the lookahead token |
bfa74976 RS |
6964 | is erroneous in the current state. This causes error processing to begin |
6965 | (@pxref{Error Recovery}). | |
6966 | ||
342b8b6e | 6967 | @node Reduce/Reduce |
bfa74976 RS |
6968 | @section Reduce/Reduce Conflicts |
6969 | @cindex reduce/reduce conflict | |
6970 | @cindex conflicts, reduce/reduce | |
6971 | ||
6972 | A reduce/reduce conflict occurs if there are two or more rules that apply | |
6973 | to the same sequence of input. This usually indicates a serious error | |
6974 | in the grammar. | |
6975 | ||
6976 | For example, here is an erroneous attempt to define a sequence | |
6977 | of zero or more @code{word} groupings. | |
6978 | ||
6979 | @example | |
98842516 | 6980 | @group |
de6be119 AD |
6981 | sequence: |
6982 | /* empty */ @{ printf ("empty sequence\n"); @} | |
6983 | | maybeword | |
6984 | | sequence word @{ printf ("added word %s\n", $2); @} | |
6985 | ; | |
98842516 | 6986 | @end group |
bfa74976 | 6987 | |
98842516 | 6988 | @group |
de6be119 AD |
6989 | maybeword: |
6990 | /* empty */ @{ printf ("empty maybeword\n"); @} | |
6991 | | word @{ printf ("single word %s\n", $1); @} | |
6992 | ; | |
98842516 | 6993 | @end group |
bfa74976 RS |
6994 | @end example |
6995 | ||
6996 | @noindent | |
6997 | The error is an ambiguity: there is more than one way to parse a single | |
6998 | @code{word} into a @code{sequence}. It could be reduced to a | |
6999 | @code{maybeword} and then into a @code{sequence} via the second rule. | |
7000 | Alternatively, nothing-at-all could be reduced into a @code{sequence} | |
7001 | via the first rule, and this could be combined with the @code{word} | |
7002 | using the third rule for @code{sequence}. | |
7003 | ||
7004 | There is also more than one way to reduce nothing-at-all into a | |
7005 | @code{sequence}. This can be done directly via the first rule, | |
7006 | or indirectly via @code{maybeword} and then the second rule. | |
7007 | ||
7008 | You might think that this is a distinction without a difference, because it | |
7009 | does not change whether any particular input is valid or not. But it does | |
7010 | affect which actions are run. One parsing order runs the second rule's | |
7011 | action; the other runs the first rule's action and the third rule's action. | |
7012 | In this example, the output of the program changes. | |
7013 | ||
7014 | Bison resolves a reduce/reduce conflict by choosing to use the rule that | |
7015 | appears first in the grammar, but it is very risky to rely on this. Every | |
7016 | reduce/reduce conflict must be studied and usually eliminated. Here is the | |
7017 | proper way to define @code{sequence}: | |
7018 | ||
7019 | @example | |
de6be119 AD |
7020 | sequence: |
7021 | /* empty */ @{ printf ("empty sequence\n"); @} | |
7022 | | sequence word @{ printf ("added word %s\n", $2); @} | |
7023 | ; | |
bfa74976 RS |
7024 | @end example |
7025 | ||
7026 | Here is another common error that yields a reduce/reduce conflict: | |
7027 | ||
7028 | @example | |
de6be119 AD |
7029 | sequence: |
7030 | /* empty */ | |
7031 | | sequence words | |
7032 | | sequence redirects | |
7033 | ; | |
bfa74976 | 7034 | |
de6be119 AD |
7035 | words: |
7036 | /* empty */ | |
7037 | | words word | |
7038 | ; | |
bfa74976 | 7039 | |
de6be119 AD |
7040 | redirects: |
7041 | /* empty */ | |
7042 | | redirects redirect | |
7043 | ; | |
bfa74976 RS |
7044 | @end example |
7045 | ||
7046 | @noindent | |
7047 | The intention here is to define a sequence which can contain either | |
7048 | @code{word} or @code{redirect} groupings. The individual definitions of | |
7049 | @code{sequence}, @code{words} and @code{redirects} are error-free, but the | |
7050 | three together make a subtle ambiguity: even an empty input can be parsed | |
7051 | in infinitely many ways! | |
7052 | ||
7053 | Consider: nothing-at-all could be a @code{words}. Or it could be two | |
7054 | @code{words} in a row, or three, or any number. It could equally well be a | |
7055 | @code{redirects}, or two, or any number. Or it could be a @code{words} | |
7056 | followed by three @code{redirects} and another @code{words}. And so on. | |
7057 | ||
7058 | Here are two ways to correct these rules. First, to make it a single level | |
7059 | of sequence: | |
7060 | ||
7061 | @example | |
de6be119 AD |
7062 | sequence: |
7063 | /* empty */ | |
7064 | | sequence word | |
7065 | | sequence redirect | |
7066 | ; | |
bfa74976 RS |
7067 | @end example |
7068 | ||
7069 | Second, to prevent either a @code{words} or a @code{redirects} | |
7070 | from being empty: | |
7071 | ||
7072 | @example | |
98842516 | 7073 | @group |
de6be119 AD |
7074 | sequence: |
7075 | /* empty */ | |
7076 | | sequence words | |
7077 | | sequence redirects | |
7078 | ; | |
98842516 | 7079 | @end group |
bfa74976 | 7080 | |
98842516 | 7081 | @group |
de6be119 AD |
7082 | words: |
7083 | word | |
7084 | | words word | |
7085 | ; | |
98842516 | 7086 | @end group |
bfa74976 | 7087 | |
98842516 | 7088 | @group |
de6be119 AD |
7089 | redirects: |
7090 | redirect | |
7091 | | redirects redirect | |
7092 | ; | |
98842516 | 7093 | @end group |
bfa74976 RS |
7094 | @end example |
7095 | ||
5da0355a JD |
7096 | @node Mysterious Conflicts |
7097 | @section Mysterious Conflicts | |
6f04ee6c | 7098 | @cindex Mysterious Conflicts |
bfa74976 RS |
7099 | |
7100 | Sometimes reduce/reduce conflicts can occur that don't look warranted. | |
7101 | Here is an example: | |
7102 | ||
7103 | @example | |
7104 | @group | |
7105 | %token ID | |
7106 | ||
7107 | %% | |
de6be119 | 7108 | def: param_spec return_spec ','; |
bfa74976 | 7109 | param_spec: |
de6be119 AD |
7110 | type |
7111 | | name_list ':' type | |
7112 | ; | |
bfa74976 RS |
7113 | @end group |
7114 | @group | |
7115 | return_spec: | |
de6be119 AD |
7116 | type |
7117 | | name ':' type | |
7118 | ; | |
bfa74976 RS |
7119 | @end group |
7120 | @group | |
de6be119 | 7121 | type: ID; |
bfa74976 RS |
7122 | @end group |
7123 | @group | |
de6be119 | 7124 | name: ID; |
bfa74976 | 7125 | name_list: |
de6be119 AD |
7126 | name |
7127 | | name ',' name_list | |
7128 | ; | |
bfa74976 RS |
7129 | @end group |
7130 | @end example | |
7131 | ||
7132 | It would seem that this grammar can be parsed with only a single token | |
742e4900 | 7133 | of lookahead: when a @code{param_spec} is being read, an @code{ID} is |
bfa74976 | 7134 | a @code{name} if a comma or colon follows, or a @code{type} if another |
35430378 | 7135 | @code{ID} follows. In other words, this grammar is LR(1). |
bfa74976 | 7136 | |
6f04ee6c JD |
7137 | @cindex LR |
7138 | @cindex LALR | |
34a6c2d1 | 7139 | However, for historical reasons, Bison cannot by default handle all |
35430378 | 7140 | LR(1) grammars. |
34a6c2d1 JD |
7141 | In this grammar, two contexts, that after an @code{ID} at the beginning |
7142 | of a @code{param_spec} and likewise at the beginning of a | |
7143 | @code{return_spec}, are similar enough that Bison assumes they are the | |
7144 | same. | |
7145 | They appear similar because the same set of rules would be | |
bfa74976 RS |
7146 | active---the rule for reducing to a @code{name} and that for reducing to |
7147 | a @code{type}. Bison is unable to determine at that stage of processing | |
742e4900 | 7148 | that the rules would require different lookahead tokens in the two |
bfa74976 RS |
7149 | contexts, so it makes a single parser state for them both. Combining |
7150 | the two contexts causes a conflict later. In parser terminology, this | |
35430378 | 7151 | occurrence means that the grammar is not LALR(1). |
bfa74976 | 7152 | |
6f04ee6c JD |
7153 | @cindex IELR |
7154 | @cindex canonical LR | |
7155 | For many practical grammars (specifically those that fall into the non-LR(1) | |
7156 | class), the limitations of LALR(1) result in difficulties beyond just | |
7157 | mysterious reduce/reduce conflicts. The best way to fix all these problems | |
7158 | is to select a different parser table construction algorithm. Either | |
7159 | IELR(1) or canonical LR(1) would suffice, but the former is more efficient | |
7160 | and easier to debug during development. @xref{LR Table Construction}, for | |
7161 | details. (Bison's IELR(1) and canonical LR(1) implementations are | |
7162 | experimental. More user feedback will help to stabilize them.) | |
34a6c2d1 | 7163 | |
35430378 | 7164 | If you instead wish to work around LALR(1)'s limitations, you |
34a6c2d1 JD |
7165 | can often fix a mysterious conflict by identifying the two parser states |
7166 | that are being confused, and adding something to make them look | |
7167 | distinct. In the above example, adding one rule to | |
bfa74976 RS |
7168 | @code{return_spec} as follows makes the problem go away: |
7169 | ||
7170 | @example | |
7171 | @group | |
7172 | %token BOGUS | |
7173 | @dots{} | |
7174 | %% | |
7175 | @dots{} | |
7176 | return_spec: | |
de6be119 AD |
7177 | type |
7178 | | name ':' type | |
7179 | | ID BOGUS /* This rule is never used. */ | |
7180 | ; | |
bfa74976 RS |
7181 | @end group |
7182 | @end example | |
7183 | ||
7184 | This corrects the problem because it introduces the possibility of an | |
7185 | additional active rule in the context after the @code{ID} at the beginning of | |
7186 | @code{return_spec}. This rule is not active in the corresponding context | |
7187 | in a @code{param_spec}, so the two contexts receive distinct parser states. | |
7188 | As long as the token @code{BOGUS} is never generated by @code{yylex}, | |
7189 | the added rule cannot alter the way actual input is parsed. | |
7190 | ||
7191 | In this particular example, there is another way to solve the problem: | |
7192 | rewrite the rule for @code{return_spec} to use @code{ID} directly | |
7193 | instead of via @code{name}. This also causes the two confusing | |
7194 | contexts to have different sets of active rules, because the one for | |
7195 | @code{return_spec} activates the altered rule for @code{return_spec} | |
7196 | rather than the one for @code{name}. | |
7197 | ||
7198 | @example | |
7199 | param_spec: | |
de6be119 AD |
7200 | type |
7201 | | name_list ':' type | |
7202 | ; | |
bfa74976 | 7203 | return_spec: |
de6be119 AD |
7204 | type |
7205 | | ID ':' type | |
7206 | ; | |
bfa74976 RS |
7207 | @end example |
7208 | ||
35430378 | 7209 | For a more detailed exposition of LALR(1) parsers and parser |
71caec06 | 7210 | generators, @pxref{Bibliography,,DeRemer 1982}. |
e054b190 | 7211 | |
6f04ee6c JD |
7212 | @node Tuning LR |
7213 | @section Tuning LR | |
7214 | ||
7215 | The default behavior of Bison's LR-based parsers is chosen mostly for | |
7216 | historical reasons, but that behavior is often not robust. For example, in | |
7217 | the previous section, we discussed the mysterious conflicts that can be | |
7218 | produced by LALR(1), Bison's default parser table construction algorithm. | |
7219 | Another example is Bison's @code{%error-verbose} directive, which instructs | |
7220 | the generated parser to produce verbose syntax error messages, which can | |
7221 | sometimes contain incorrect information. | |
7222 | ||
7223 | In this section, we explore several modern features of Bison that allow you | |
7224 | to tune fundamental aspects of the generated LR-based parsers. Some of | |
7225 | these features easily eliminate shortcomings like those mentioned above. | |
7226 | Others can be helpful purely for understanding your parser. | |
7227 | ||
7228 | Most of the features discussed in this section are still experimental. More | |
7229 | user feedback will help to stabilize them. | |
7230 | ||
7231 | @menu | |
7232 | * LR Table Construction:: Choose a different construction algorithm. | |
7233 | * Default Reductions:: Disable default reductions. | |
7234 | * LAC:: Correct lookahead sets in the parser states. | |
7235 | * Unreachable States:: Keep unreachable parser states for debugging. | |
7236 | @end menu | |
7237 | ||
7238 | @node LR Table Construction | |
7239 | @subsection LR Table Construction | |
7240 | @cindex Mysterious Conflict | |
7241 | @cindex LALR | |
7242 | @cindex IELR | |
7243 | @cindex canonical LR | |
7244 | @findex %define lr.type | |
7245 | ||
7246 | For historical reasons, Bison constructs LALR(1) parser tables by default. | |
7247 | However, LALR does not possess the full language-recognition power of LR. | |
7248 | As a result, the behavior of parsers employing LALR parser tables is often | |
5da0355a | 7249 | mysterious. We presented a simple example of this effect in @ref{Mysterious |
6f04ee6c JD |
7250 | Conflicts}. |
7251 | ||
7252 | As we also demonstrated in that example, the traditional approach to | |
7253 | eliminating such mysterious behavior is to restructure the grammar. | |
7254 | Unfortunately, doing so correctly is often difficult. Moreover, merely | |
7255 | discovering that LALR causes mysterious behavior in your parser can be | |
7256 | difficult as well. | |
7257 | ||
7258 | Fortunately, Bison provides an easy way to eliminate the possibility of such | |
7259 | mysterious behavior altogether. You simply need to activate a more powerful | |
7260 | parser table construction algorithm by using the @code{%define lr.type} | |
7261 | directive. | |
7262 | ||
7263 | @deffn {Directive} {%define lr.type @var{TYPE}} | |
7264 | Specify the type of parser tables within the LR(1) family. The accepted | |
7265 | values for @var{TYPE} are: | |
7266 | ||
7267 | @itemize | |
7268 | @item @code{lalr} (default) | |
7269 | @item @code{ielr} | |
7270 | @item @code{canonical-lr} | |
7271 | @end itemize | |
7272 | ||
7273 | (This feature is experimental. More user feedback will help to stabilize | |
7274 | it.) | |
7275 | @end deffn | |
7276 | ||
7277 | For example, to activate IELR, you might add the following directive to you | |
7278 | grammar file: | |
7279 | ||
7280 | @example | |
7281 | %define lr.type ielr | |
7282 | @end example | |
7283 | ||
5da0355a | 7284 | @noindent For the example in @ref{Mysterious Conflicts}, the mysterious |
6f04ee6c JD |
7285 | conflict is then eliminated, so there is no need to invest time in |
7286 | comprehending the conflict or restructuring the grammar to fix it. If, | |
7287 | during future development, the grammar evolves such that all mysterious | |
7288 | behavior would have disappeared using just LALR, you need not fear that | |
7289 | continuing to use IELR will result in unnecessarily large parser tables. | |
7290 | That is, IELR generates LALR tables when LALR (using a deterministic parsing | |
7291 | algorithm) is sufficient to support the full language-recognition power of | |
7292 | LR. Thus, by enabling IELR at the start of grammar development, you can | |
7293 | safely and completely eliminate the need to consider LALR's shortcomings. | |
7294 | ||
7295 | While IELR is almost always preferable, there are circumstances where LALR | |
7296 | or the canonical LR parser tables described by Knuth | |
7297 | (@pxref{Bibliography,,Knuth 1965}) can be useful. Here we summarize the | |
7298 | relative advantages of each parser table construction algorithm within | |
7299 | Bison: | |
7300 | ||
7301 | @itemize | |
7302 | @item LALR | |
7303 | ||
7304 | There are at least two scenarios where LALR can be worthwhile: | |
7305 | ||
7306 | @itemize | |
7307 | @item GLR without static conflict resolution. | |
7308 | ||
7309 | @cindex GLR with LALR | |
7310 | When employing GLR parsers (@pxref{GLR Parsers}), if you do not resolve any | |
7311 | conflicts statically (for example, with @code{%left} or @code{%prec}), then | |
7312 | the parser explores all potential parses of any given input. In this case, | |
7313 | the choice of parser table construction algorithm is guaranteed not to alter | |
7314 | the language accepted by the parser. LALR parser tables are the smallest | |
7315 | parser tables Bison can currently construct, so they may then be preferable. | |
7316 | Nevertheless, once you begin to resolve conflicts statically, GLR behaves | |
7317 | more like a deterministic parser in the syntactic contexts where those | |
7318 | conflicts appear, and so either IELR or canonical LR can then be helpful to | |
7319 | avoid LALR's mysterious behavior. | |
7320 | ||
7321 | @item Malformed grammars. | |
7322 | ||
7323 | Occasionally during development, an especially malformed grammar with a | |
7324 | major recurring flaw may severely impede the IELR or canonical LR parser | |
7325 | table construction algorithm. LALR can be a quick way to construct parser | |
7326 | tables in order to investigate such problems while ignoring the more subtle | |
7327 | differences from IELR and canonical LR. | |
7328 | @end itemize | |
7329 | ||
7330 | @item IELR | |
7331 | ||
7332 | IELR (Inadequacy Elimination LR) is a minimal LR algorithm. That is, given | |
7333 | any grammar (LR or non-LR), parsers using IELR or canonical LR parser tables | |
7334 | always accept exactly the same set of sentences. However, like LALR, IELR | |
7335 | merges parser states during parser table construction so that the number of | |
7336 | parser states is often an order of magnitude less than for canonical LR. | |
7337 | More importantly, because canonical LR's extra parser states may contain | |
7338 | duplicate conflicts in the case of non-LR grammars, the number of conflicts | |
7339 | for IELR is often an order of magnitude less as well. This effect can | |
7340 | significantly reduce the complexity of developing a grammar. | |
7341 | ||
7342 | @item Canonical LR | |
7343 | ||
7344 | @cindex delayed syntax error detection | |
7345 | @cindex LAC | |
7346 | @findex %nonassoc | |
7347 | While inefficient, canonical LR parser tables can be an interesting means to | |
7348 | explore a grammar because they possess a property that IELR and LALR tables | |
7349 | do not. That is, if @code{%nonassoc} is not used and default reductions are | |
7350 | left disabled (@pxref{Default Reductions}), then, for every left context of | |
7351 | every canonical LR state, the set of tokens accepted by that state is | |
7352 | guaranteed to be the exact set of tokens that is syntactically acceptable in | |
7353 | that left context. It might then seem that an advantage of canonical LR | |
7354 | parsers in production is that, under the above constraints, they are | |
7355 | guaranteed to detect a syntax error as soon as possible without performing | |
7356 | any unnecessary reductions. However, IELR parsers that use LAC are also | |
7357 | able to achieve this behavior without sacrificing @code{%nonassoc} or | |
7358 | default reductions. For details and a few caveats of LAC, @pxref{LAC}. | |
7359 | @end itemize | |
7360 | ||
7361 | For a more detailed exposition of the mysterious behavior in LALR parsers | |
7362 | and the benefits of IELR, @pxref{Bibliography,,Denny 2008 March}, and | |
7363 | @ref{Bibliography,,Denny 2010 November}. | |
7364 | ||
7365 | @node Default Reductions | |
7366 | @subsection Default Reductions | |
7367 | @cindex default reductions | |
7368 | @findex %define lr.default-reductions | |
7369 | @findex %nonassoc | |
7370 | ||
7371 | After parser table construction, Bison identifies the reduction with the | |
7372 | largest lookahead set in each parser state. To reduce the size of the | |
7373 | parser state, traditional Bison behavior is to remove that lookahead set and | |
7374 | to assign that reduction to be the default parser action. Such a reduction | |
7375 | is known as a @dfn{default reduction}. | |
7376 | ||
7377 | Default reductions affect more than the size of the parser tables. They | |
7378 | also affect the behavior of the parser: | |
7379 | ||
7380 | @itemize | |
7381 | @item Delayed @code{yylex} invocations. | |
7382 | ||
7383 | @cindex delayed yylex invocations | |
7384 | @cindex consistent states | |
7385 | @cindex defaulted states | |
7386 | A @dfn{consistent state} is a state that has only one possible parser | |
7387 | action. If that action is a reduction and is encoded as a default | |
7388 | reduction, then that consistent state is called a @dfn{defaulted state}. | |
7389 | Upon reaching a defaulted state, a Bison-generated parser does not bother to | |
7390 | invoke @code{yylex} to fetch the next token before performing the reduction. | |
7391 | In other words, whether default reductions are enabled in consistent states | |
7392 | determines how soon a Bison-generated parser invokes @code{yylex} for a | |
7393 | token: immediately when it @emph{reaches} that token in the input or when it | |
7394 | eventually @emph{needs} that token as a lookahead to determine the next | |
7395 | parser action. Traditionally, default reductions are enabled, and so the | |
7396 | parser exhibits the latter behavior. | |
7397 | ||
7398 | The presence of defaulted states is an important consideration when | |
7399 | designing @code{yylex} and the grammar file. That is, if the behavior of | |
7400 | @code{yylex} can influence or be influenced by the semantic actions | |
7401 | associated with the reductions in defaulted states, then the delay of the | |
7402 | next @code{yylex} invocation until after those reductions is significant. | |
7403 | For example, the semantic actions might pop a scope stack that @code{yylex} | |
7404 | uses to determine what token to return. Thus, the delay might be necessary | |
7405 | to ensure that @code{yylex} does not look up the next token in a scope that | |
7406 | should already be considered closed. | |
7407 | ||
7408 | @item Delayed syntax error detection. | |
7409 | ||
7410 | @cindex delayed syntax error detection | |
7411 | When the parser fetches a new token by invoking @code{yylex}, it checks | |
7412 | whether there is an action for that token in the current parser state. The | |
7413 | parser detects a syntax error if and only if either (1) there is no action | |
7414 | for that token or (2) the action for that token is the error action (due to | |
7415 | the use of @code{%nonassoc}). However, if there is a default reduction in | |
7416 | that state (which might or might not be a defaulted state), then it is | |
7417 | impossible for condition 1 to exist. That is, all tokens have an action. | |
7418 | Thus, the parser sometimes fails to detect the syntax error until it reaches | |
7419 | a later state. | |
7420 | ||
7421 | @cindex LAC | |
7422 | @c If there's an infinite loop, default reductions can prevent an incorrect | |
7423 | @c sentence from being rejected. | |
7424 | While default reductions never cause the parser to accept syntactically | |
7425 | incorrect sentences, the delay of syntax error detection can have unexpected | |
7426 | effects on the behavior of the parser. However, the delay can be caused | |
7427 | anyway by parser state merging and the use of @code{%nonassoc}, and it can | |
7428 | be fixed by another Bison feature, LAC. We discuss the effects of delayed | |
7429 | syntax error detection and LAC more in the next section (@pxref{LAC}). | |
7430 | @end itemize | |
7431 | ||
7432 | For canonical LR, the only default reduction that Bison enables by default | |
7433 | is the accept action, which appears only in the accepting state, which has | |
7434 | no other action and is thus a defaulted state. However, the default accept | |
7435 | action does not delay any @code{yylex} invocation or syntax error detection | |
7436 | because the accept action ends the parse. | |
7437 | ||
7438 | For LALR and IELR, Bison enables default reductions in nearly all states by | |
7439 | default. There are only two exceptions. First, states that have a shift | |
7440 | action on the @code{error} token do not have default reductions because | |
7441 | delayed syntax error detection could then prevent the @code{error} token | |
7442 | from ever being shifted in that state. However, parser state merging can | |
7443 | cause the same effect anyway, and LAC fixes it in both cases, so future | |
7444 | versions of Bison might drop this exception when LAC is activated. Second, | |
7445 | GLR parsers do not record the default reduction as the action on a lookahead | |
7446 | token for which there is a conflict. The correct action in this case is to | |
7447 | split the parse instead. | |
7448 | ||
7449 | To adjust which states have default reductions enabled, use the | |
7450 | @code{%define lr.default-reductions} directive. | |
7451 | ||
7452 | @deffn {Directive} {%define lr.default-reductions @var{WHERE}} | |
7453 | Specify the kind of states that are permitted to contain default reductions. | |
7454 | The accepted values of @var{WHERE} are: | |
7455 | @itemize | |
a6e5a280 | 7456 | @item @code{most} (default for LALR and IELR) |
6f04ee6c JD |
7457 | @item @code{consistent} |
7458 | @item @code{accepting} (default for canonical LR) | |
7459 | @end itemize | |
7460 | ||
7461 | (The ability to specify where default reductions are permitted is | |
7462 | experimental. More user feedback will help to stabilize it.) | |
7463 | @end deffn | |
7464 | ||
6f04ee6c JD |
7465 | @node LAC |
7466 | @subsection LAC | |
7467 | @findex %define parse.lac | |
7468 | @cindex LAC | |
7469 | @cindex lookahead correction | |
7470 | ||
7471 | Canonical LR, IELR, and LALR can suffer from a couple of problems upon | |
7472 | encountering a syntax error. First, the parser might perform additional | |
7473 | parser stack reductions before discovering the syntax error. Such | |
7474 | reductions can perform user semantic actions that are unexpected because | |
7475 | they are based on an invalid token, and they cause error recovery to begin | |
7476 | in a different syntactic context than the one in which the invalid token was | |
7477 | encountered. Second, when verbose error messages are enabled (@pxref{Error | |
7478 | Reporting}), the expected token list in the syntax error message can both | |
7479 | contain invalid tokens and omit valid tokens. | |
7480 | ||
7481 | The culprits for the above problems are @code{%nonassoc}, default reductions | |
7482 | in inconsistent states (@pxref{Default Reductions}), and parser state | |
7483 | merging. Because IELR and LALR merge parser states, they suffer the most. | |
7484 | Canonical LR can suffer only if @code{%nonassoc} is used or if default | |
7485 | reductions are enabled for inconsistent states. | |
7486 | ||
7487 | LAC (Lookahead Correction) is a new mechanism within the parsing algorithm | |
7488 | that solves these problems for canonical LR, IELR, and LALR without | |
7489 | sacrificing @code{%nonassoc}, default reductions, or state merging. You can | |
7490 | enable LAC with the @code{%define parse.lac} directive. | |
7491 | ||
7492 | @deffn {Directive} {%define parse.lac @var{VALUE}} | |
7493 | Enable LAC to improve syntax error handling. | |
7494 | @itemize | |
7495 | @item @code{none} (default) | |
7496 | @item @code{full} | |
7497 | @end itemize | |
7498 | (This feature is experimental. More user feedback will help to stabilize | |
7499 | it. Moreover, it is currently only available for deterministic parsers in | |
7500 | C.) | |
7501 | @end deffn | |
7502 | ||
7503 | Conceptually, the LAC mechanism is straight-forward. Whenever the parser | |
7504 | fetches a new token from the scanner so that it can determine the next | |
7505 | parser action, it immediately suspends normal parsing and performs an | |
7506 | exploratory parse using a temporary copy of the normal parser state stack. | |
7507 | During this exploratory parse, the parser does not perform user semantic | |
7508 | actions. If the exploratory parse reaches a shift action, normal parsing | |
7509 | then resumes on the normal parser stacks. If the exploratory parse reaches | |
7510 | an error instead, the parser reports a syntax error. If verbose syntax | |
7511 | error messages are enabled, the parser must then discover the list of | |
7512 | expected tokens, so it performs a separate exploratory parse for each token | |
7513 | in the grammar. | |
7514 | ||
7515 | There is one subtlety about the use of LAC. That is, when in a consistent | |
7516 | parser state with a default reduction, the parser will not attempt to fetch | |
7517 | a token from the scanner because no lookahead is needed to determine the | |
7518 | next parser action. Thus, whether default reductions are enabled in | |
7519 | consistent states (@pxref{Default Reductions}) affects how soon the parser | |
7520 | detects a syntax error: immediately when it @emph{reaches} an erroneous | |
7521 | token or when it eventually @emph{needs} that token as a lookahead to | |
7522 | determine the next parser action. The latter behavior is probably more | |
7523 | intuitive, so Bison currently provides no way to achieve the former behavior | |
7524 | while default reductions are enabled in consistent states. | |
7525 | ||
7526 | Thus, when LAC is in use, for some fixed decision of whether to enable | |
7527 | default reductions in consistent states, canonical LR and IELR behave almost | |
7528 | exactly the same for both syntactically acceptable and syntactically | |
7529 | unacceptable input. While LALR still does not support the full | |
7530 | language-recognition power of canonical LR and IELR, LAC at least enables | |
7531 | LALR's syntax error handling to correctly reflect LALR's | |
7532 | language-recognition power. | |
7533 | ||
7534 | There are a few caveats to consider when using LAC: | |
7535 | ||
7536 | @itemize | |
7537 | @item Infinite parsing loops. | |
7538 | ||
7539 | IELR plus LAC does have one shortcoming relative to canonical LR. Some | |
7540 | parsers generated by Bison can loop infinitely. LAC does not fix infinite | |
7541 | parsing loops that occur between encountering a syntax error and detecting | |
7542 | it, but enabling canonical LR or disabling default reductions sometimes | |
7543 | does. | |
7544 | ||
7545 | @item Verbose error message limitations. | |
7546 | ||
7547 | Because of internationalization considerations, Bison-generated parsers | |
7548 | limit the size of the expected token list they are willing to report in a | |
7549 | verbose syntax error message. If the number of expected tokens exceeds that | |
7550 | limit, the list is simply dropped from the message. Enabling LAC can | |
7551 | increase the size of the list and thus cause the parser to drop it. Of | |
7552 | course, dropping the list is better than reporting an incorrect list. | |
7553 | ||
7554 | @item Performance. | |
7555 | ||
7556 | Because LAC requires many parse actions to be performed twice, it can have a | |
7557 | performance penalty. However, not all parse actions must be performed | |
7558 | twice. Specifically, during a series of default reductions in consistent | |
7559 | states and shift actions, the parser never has to initiate an exploratory | |
7560 | parse. Moreover, the most time-consuming tasks in a parse are often the | |
7561 | file I/O, the lexical analysis performed by the scanner, and the user's | |
7562 | semantic actions, but none of these are performed during the exploratory | |
7563 | parse. Finally, the base of the temporary stack used during an exploratory | |
7564 | parse is a pointer into the normal parser state stack so that the stack is | |
7565 | never physically copied. In our experience, the performance penalty of LAC | |
56da1e52 | 7566 | has proved insignificant for practical grammars. |
6f04ee6c JD |
7567 | @end itemize |
7568 | ||
56706c61 JD |
7569 | While the LAC algorithm shares techniques that have been recognized in the |
7570 | parser community for years, for the publication that introduces LAC, | |
7571 | @pxref{Bibliography,,Denny 2010 May}. | |
121c4982 | 7572 | |
6f04ee6c JD |
7573 | @node Unreachable States |
7574 | @subsection Unreachable States | |
7575 | @findex %define lr.keep-unreachable-states | |
7576 | @cindex unreachable states | |
7577 | ||
7578 | If there exists no sequence of transitions from the parser's start state to | |
7579 | some state @var{s}, then Bison considers @var{s} to be an @dfn{unreachable | |
7580 | state}. A state can become unreachable during conflict resolution if Bison | |
7581 | disables a shift action leading to it from a predecessor state. | |
7582 | ||
7583 | By default, Bison removes unreachable states from the parser after conflict | |
7584 | resolution because they are useless in the generated parser. However, | |
7585 | keeping unreachable states is sometimes useful when trying to understand the | |
7586 | relationship between the parser and the grammar. | |
7587 | ||
7588 | @deffn {Directive} {%define lr.keep-unreachable-states @var{VALUE}} | |
7589 | Request that Bison allow unreachable states to remain in the parser tables. | |
7590 | @var{VALUE} must be a Boolean. The default is @code{false}. | |
7591 | @end deffn | |
7592 | ||
7593 | There are a few caveats to consider: | |
7594 | ||
7595 | @itemize @bullet | |
7596 | @item Missing or extraneous warnings. | |
7597 | ||
7598 | Unreachable states may contain conflicts and may use rules not used in any | |
7599 | other state. Thus, keeping unreachable states may induce warnings that are | |
7600 | irrelevant to your parser's behavior, and it may eliminate warnings that are | |
7601 | relevant. Of course, the change in warnings may actually be relevant to a | |
7602 | parser table analysis that wants to keep unreachable states, so this | |
7603 | behavior will likely remain in future Bison releases. | |
7604 | ||
7605 | @item Other useless states. | |
7606 | ||
7607 | While Bison is able to remove unreachable states, it is not guaranteed to | |
7608 | remove other kinds of useless states. Specifically, when Bison disables | |
7609 | reduce actions during conflict resolution, some goto actions may become | |
7610 | useless, and thus some additional states may become useless. If Bison were | |
7611 | to compute which goto actions were useless and then disable those actions, | |
7612 | it could identify such states as unreachable and then remove those states. | |
7613 | However, Bison does not compute which goto actions are useless. | |
7614 | @end itemize | |
7615 | ||
fae437e8 | 7616 | @node Generalized LR Parsing |
35430378 JD |
7617 | @section Generalized LR (GLR) Parsing |
7618 | @cindex GLR parsing | |
7619 | @cindex generalized LR (GLR) parsing | |
676385e2 | 7620 | @cindex ambiguous grammars |
9d9b8b70 | 7621 | @cindex nondeterministic parsing |
676385e2 | 7622 | |
fae437e8 AD |
7623 | Bison produces @emph{deterministic} parsers that choose uniquely |
7624 | when to reduce and which reduction to apply | |
742e4900 | 7625 | based on a summary of the preceding input and on one extra token of lookahead. |
676385e2 PH |
7626 | As a result, normal Bison handles a proper subset of the family of |
7627 | context-free languages. | |
fae437e8 | 7628 | Ambiguous grammars, since they have strings with more than one possible |
676385e2 PH |
7629 | sequence of reductions cannot have deterministic parsers in this sense. |
7630 | The same is true of languages that require more than one symbol of | |
742e4900 | 7631 | lookahead, since the parser lacks the information necessary to make a |
676385e2 | 7632 | decision at the point it must be made in a shift-reduce parser. |
5da0355a | 7633 | Finally, as previously mentioned (@pxref{Mysterious Conflicts}), |
34a6c2d1 | 7634 | there are languages where Bison's default choice of how to |
676385e2 PH |
7635 | summarize the input seen so far loses necessary information. |
7636 | ||
7637 | When you use the @samp{%glr-parser} declaration in your grammar file, | |
7638 | Bison generates a parser that uses a different algorithm, called | |
35430378 | 7639 | Generalized LR (or GLR). A Bison GLR |
c827f760 | 7640 | parser uses the same basic |
676385e2 PH |
7641 | algorithm for parsing as an ordinary Bison parser, but behaves |
7642 | differently in cases where there is a shift-reduce conflict that has not | |
fae437e8 | 7643 | been resolved by precedence rules (@pxref{Precedence}) or a |
35430378 | 7644 | reduce-reduce conflict. When a GLR parser encounters such a |
c827f760 | 7645 | situation, it |
fae437e8 | 7646 | effectively @emph{splits} into a several parsers, one for each possible |
676385e2 PH |
7647 | shift or reduction. These parsers then proceed as usual, consuming |
7648 | tokens in lock-step. Some of the stacks may encounter other conflicts | |
fae437e8 | 7649 | and split further, with the result that instead of a sequence of states, |
35430378 | 7650 | a Bison GLR parsing stack is what is in effect a tree of states. |
676385e2 PH |
7651 | |
7652 | In effect, each stack represents a guess as to what the proper parse | |
7653 | is. Additional input may indicate that a guess was wrong, in which case | |
7654 | the appropriate stack silently disappears. Otherwise, the semantics | |
fae437e8 | 7655 | actions generated in each stack are saved, rather than being executed |
676385e2 | 7656 | immediately. When a stack disappears, its saved semantic actions never |
fae437e8 | 7657 | get executed. When a reduction causes two stacks to become equivalent, |
676385e2 PH |
7658 | their sets of semantic actions are both saved with the state that |
7659 | results from the reduction. We say that two stacks are equivalent | |
fae437e8 | 7660 | when they both represent the same sequence of states, |
676385e2 PH |
7661 | and each pair of corresponding states represents a |
7662 | grammar symbol that produces the same segment of the input token | |
7663 | stream. | |
7664 | ||
7665 | Whenever the parser makes a transition from having multiple | |
34a6c2d1 | 7666 | states to having one, it reverts to the normal deterministic parsing |
676385e2 PH |
7667 | algorithm, after resolving and executing the saved-up actions. |
7668 | At this transition, some of the states on the stack will have semantic | |
7669 | values that are sets (actually multisets) of possible actions. The | |
7670 | parser tries to pick one of the actions by first finding one whose rule | |
7671 | has the highest dynamic precedence, as set by the @samp{%dprec} | |
fae437e8 | 7672 | declaration. Otherwise, if the alternative actions are not ordered by |
676385e2 | 7673 | precedence, but there the same merging function is declared for both |
fae437e8 | 7674 | rules by the @samp{%merge} declaration, |
676385e2 PH |
7675 | Bison resolves and evaluates both and then calls the merge function on |
7676 | the result. Otherwise, it reports an ambiguity. | |
7677 | ||
35430378 JD |
7678 | It is possible to use a data structure for the GLR parsing tree that |
7679 | permits the processing of any LR(1) grammar in linear time (in the | |
c827f760 | 7680 | size of the input), any unambiguous (not necessarily |
35430378 | 7681 | LR(1)) grammar in |
fae437e8 | 7682 | quadratic worst-case time, and any general (possibly ambiguous) |
676385e2 PH |
7683 | context-free grammar in cubic worst-case time. However, Bison currently |
7684 | uses a simpler data structure that requires time proportional to the | |
7685 | length of the input times the maximum number of stacks required for any | |
9d9b8b70 | 7686 | prefix of the input. Thus, really ambiguous or nondeterministic |
676385e2 PH |
7687 | grammars can require exponential time and space to process. Such badly |
7688 | behaving examples, however, are not generally of practical interest. | |
9d9b8b70 | 7689 | Usually, nondeterminism in a grammar is local---the parser is ``in |
676385e2 | 7690 | doubt'' only for a few tokens at a time. Therefore, the current data |
35430378 | 7691 | structure should generally be adequate. On LR(1) portions of a |
34a6c2d1 | 7692 | grammar, in particular, it is only slightly slower than with the |
35430378 | 7693 | deterministic LR(1) Bison parser. |
676385e2 | 7694 | |
71caec06 JD |
7695 | For a more detailed exposition of GLR parsers, @pxref{Bibliography,,Scott |
7696 | 2000}. | |
f6481e2f | 7697 | |
1a059451 PE |
7698 | @node Memory Management |
7699 | @section Memory Management, and How to Avoid Memory Exhaustion | |
7700 | @cindex memory exhaustion | |
7701 | @cindex memory management | |
bfa74976 RS |
7702 | @cindex stack overflow |
7703 | @cindex parser stack overflow | |
7704 | @cindex overflow of parser stack | |
7705 | ||
1a059451 | 7706 | The Bison parser stack can run out of memory if too many tokens are shifted and |
bfa74976 | 7707 | not reduced. When this happens, the parser function @code{yyparse} |
1a059451 | 7708 | calls @code{yyerror} and then returns 2. |
bfa74976 | 7709 | |
c827f760 | 7710 | Because Bison parsers have growing stacks, hitting the upper limit |
d1a1114f | 7711 | usually results from using a right recursion instead of a left |
188867ac | 7712 | recursion, see @ref{Recursion, ,Recursive Rules}. |
d1a1114f | 7713 | |
bfa74976 RS |
7714 | @vindex YYMAXDEPTH |
7715 | By defining the macro @code{YYMAXDEPTH}, you can control how deep the | |
1a059451 | 7716 | parser stack can become before memory is exhausted. Define the |
bfa74976 RS |
7717 | macro with a value that is an integer. This value is the maximum number |
7718 | of tokens that can be shifted (and not reduced) before overflow. | |
bfa74976 RS |
7719 | |
7720 | The stack space allowed is not necessarily allocated. If you specify a | |
1a059451 | 7721 | large value for @code{YYMAXDEPTH}, the parser normally allocates a small |
bfa74976 RS |
7722 | stack at first, and then makes it bigger by stages as needed. This |
7723 | increasing allocation happens automatically and silently. Therefore, | |
7724 | you do not need to make @code{YYMAXDEPTH} painfully small merely to save | |
7725 | space for ordinary inputs that do not need much stack. | |
7726 | ||
d7e14fc0 PE |
7727 | However, do not allow @code{YYMAXDEPTH} to be a value so large that |
7728 | arithmetic overflow could occur when calculating the size of the stack | |
7729 | space. Also, do not allow @code{YYMAXDEPTH} to be less than | |
7730 | @code{YYINITDEPTH}. | |
7731 | ||
bfa74976 RS |
7732 | @cindex default stack limit |
7733 | The default value of @code{YYMAXDEPTH}, if you do not define it, is | |
7734 | 10000. | |
7735 | ||
7736 | @vindex YYINITDEPTH | |
7737 | You can control how much stack is allocated initially by defining the | |
34a6c2d1 JD |
7738 | macro @code{YYINITDEPTH} to a positive integer. For the deterministic |
7739 | parser in C, this value must be a compile-time constant | |
d7e14fc0 PE |
7740 | unless you are assuming C99 or some other target language or compiler |
7741 | that allows variable-length arrays. The default is 200. | |
7742 | ||
1a059451 | 7743 | Do not allow @code{YYINITDEPTH} to be greater than @code{YYMAXDEPTH}. |
bfa74976 | 7744 | |
d1a1114f | 7745 | @c FIXME: C++ output. |
c781580d | 7746 | Because of semantic differences between C and C++, the deterministic |
34a6c2d1 | 7747 | parsers in C produced by Bison cannot grow when compiled |
1a059451 PE |
7748 | by C++ compilers. In this precise case (compiling a C parser as C++) you are |
7749 | suggested to grow @code{YYINITDEPTH}. The Bison maintainers hope to fix | |
7750 | this deficiency in a future release. | |
d1a1114f | 7751 | |
342b8b6e | 7752 | @node Error Recovery |
bfa74976 RS |
7753 | @chapter Error Recovery |
7754 | @cindex error recovery | |
7755 | @cindex recovery from errors | |
7756 | ||
6e649e65 | 7757 | It is not usually acceptable to have a program terminate on a syntax |
bfa74976 RS |
7758 | error. For example, a compiler should recover sufficiently to parse the |
7759 | rest of the input file and check it for errors; a calculator should accept | |
7760 | another expression. | |
7761 | ||
7762 | In a simple interactive command parser where each input is one line, it may | |
7763 | be sufficient to allow @code{yyparse} to return 1 on error and have the | |
7764 | caller ignore the rest of the input line when that happens (and then call | |
7765 | @code{yyparse} again). But this is inadequate for a compiler, because it | |
7766 | forgets all the syntactic context leading up to the error. A syntax error | |
7767 | deep within a function in the compiler input should not cause the compiler | |
7768 | to treat the following line like the beginning of a source file. | |
7769 | ||
7770 | @findex error | |
7771 | You can define how to recover from a syntax error by writing rules to | |
7772 | recognize the special token @code{error}. This is a terminal symbol that | |
7773 | is always defined (you need not declare it) and reserved for error | |
7774 | handling. The Bison parser generates an @code{error} token whenever a | |
7775 | syntax error happens; if you have provided a rule to recognize this token | |
13863333 | 7776 | in the current context, the parse can continue. |
bfa74976 RS |
7777 | |
7778 | For example: | |
7779 | ||
7780 | @example | |
0765d393 | 7781 | stmts: |
de6be119 | 7782 | /* empty string */ |
0765d393 AD |
7783 | | stmts '\n' |
7784 | | stmts exp '\n' | |
7785 | | stmts error '\n' | |
bfa74976 RS |
7786 | @end example |
7787 | ||
7788 | The fourth rule in this example says that an error followed by a newline | |
0765d393 | 7789 | makes a valid addition to any @code{stmts}. |
bfa74976 RS |
7790 | |
7791 | What happens if a syntax error occurs in the middle of an @code{exp}? The | |
7792 | error recovery rule, interpreted strictly, applies to the precise sequence | |
0765d393 | 7793 | of a @code{stmts}, an @code{error} and a newline. If an error occurs in |
bfa74976 | 7794 | the middle of an @code{exp}, there will probably be some additional tokens |
0765d393 | 7795 | and subexpressions on the stack after the last @code{stmts}, and there |
bfa74976 RS |
7796 | will be tokens to read before the next newline. So the rule is not |
7797 | applicable in the ordinary way. | |
7798 | ||
7799 | But Bison can force the situation to fit the rule, by discarding part of | |
72f889cc AD |
7800 | the semantic context and part of the input. First it discards states |
7801 | and objects from the stack until it gets back to a state in which the | |
bfa74976 | 7802 | @code{error} token is acceptable. (This means that the subexpressions |
0765d393 | 7803 | already parsed are discarded, back to the last complete @code{stmts}.) |
72f889cc | 7804 | At this point the @code{error} token can be shifted. Then, if the old |
742e4900 | 7805 | lookahead token is not acceptable to be shifted next, the parser reads |
bfa74976 | 7806 | tokens and discards them until it finds a token which is acceptable. In |
72f889cc AD |
7807 | this example, Bison reads and discards input until the next newline so |
7808 | that the fourth rule can apply. Note that discarded symbols are | |
7809 | possible sources of memory leaks, see @ref{Destructor Decl, , Freeing | |
7810 | Discarded Symbols}, for a means to reclaim this memory. | |
bfa74976 RS |
7811 | |
7812 | The choice of error rules in the grammar is a choice of strategies for | |
7813 | error recovery. A simple and useful strategy is simply to skip the rest of | |
7814 | the current input line or current statement if an error is detected: | |
7815 | ||
7816 | @example | |
0765d393 | 7817 | stmt: error ';' /* On error, skip until ';' is read. */ |
bfa74976 RS |
7818 | @end example |
7819 | ||
7820 | It is also useful to recover to the matching close-delimiter of an | |
7821 | opening-delimiter that has already been parsed. Otherwise the | |
7822 | close-delimiter will probably appear to be unmatched, and generate another, | |
7823 | spurious error message: | |
7824 | ||
7825 | @example | |
de6be119 AD |
7826 | primary: |
7827 | '(' expr ')' | |
7828 | | '(' error ')' | |
7829 | @dots{} | |
7830 | ; | |
bfa74976 RS |
7831 | @end example |
7832 | ||
7833 | Error recovery strategies are necessarily guesses. When they guess wrong, | |
7834 | one syntax error often leads to another. In the above example, the error | |
7835 | recovery rule guesses that an error is due to bad input within one | |
0765d393 AD |
7836 | @code{stmt}. Suppose that instead a spurious semicolon is inserted in the |
7837 | middle of a valid @code{stmt}. After the error recovery rule recovers | |
bfa74976 RS |
7838 | from the first error, another syntax error will be found straightaway, |
7839 | since the text following the spurious semicolon is also an invalid | |
0765d393 | 7840 | @code{stmt}. |
bfa74976 RS |
7841 | |
7842 | To prevent an outpouring of error messages, the parser will output no error | |
7843 | message for another syntax error that happens shortly after the first; only | |
7844 | after three consecutive input tokens have been successfully shifted will | |
7845 | error messages resume. | |
7846 | ||
7847 | Note that rules which accept the @code{error} token may have actions, just | |
7848 | as any other rules can. | |
7849 | ||
7850 | @findex yyerrok | |
7851 | You can make error messages resume immediately by using the macro | |
7852 | @code{yyerrok} in an action. If you do this in the error rule's action, no | |
7853 | error messages will be suppressed. This macro requires no arguments; | |
7854 | @samp{yyerrok;} is a valid C statement. | |
7855 | ||
7856 | @findex yyclearin | |
742e4900 | 7857 | The previous lookahead token is reanalyzed immediately after an error. If |
bfa74976 RS |
7858 | this is unacceptable, then the macro @code{yyclearin} may be used to clear |
7859 | this token. Write the statement @samp{yyclearin;} in the error rule's | |
7860 | action. | |
32c29292 | 7861 | @xref{Action Features, ,Special Features for Use in Actions}. |
bfa74976 | 7862 | |
6e649e65 | 7863 | For example, suppose that on a syntax error, an error handling routine is |
bfa74976 RS |
7864 | called that advances the input stream to some point where parsing should |
7865 | once again commence. The next symbol returned by the lexical scanner is | |
742e4900 | 7866 | probably correct. The previous lookahead token ought to be discarded |
bfa74976 RS |
7867 | with @samp{yyclearin;}. |
7868 | ||
7869 | @vindex YYRECOVERING | |
02103984 PE |
7870 | The expression @code{YYRECOVERING ()} yields 1 when the parser |
7871 | is recovering from a syntax error, and 0 otherwise. | |
7872 | Syntax error diagnostics are suppressed while recovering from a syntax | |
7873 | error. | |
bfa74976 | 7874 | |
342b8b6e | 7875 | @node Context Dependency |
bfa74976 RS |
7876 | @chapter Handling Context Dependencies |
7877 | ||
7878 | The Bison paradigm is to parse tokens first, then group them into larger | |
7879 | syntactic units. In many languages, the meaning of a token is affected by | |
7880 | its context. Although this violates the Bison paradigm, certain techniques | |
7881 | (known as @dfn{kludges}) may enable you to write Bison parsers for such | |
7882 | languages. | |
7883 | ||
7884 | @menu | |
7885 | * Semantic Tokens:: Token parsing can depend on the semantic context. | |
7886 | * Lexical Tie-ins:: Token parsing can depend on the syntactic context. | |
7887 | * Tie-in Recovery:: Lexical tie-ins have implications for how | |
7888 | error recovery rules must be written. | |
7889 | @end menu | |
7890 | ||
7891 | (Actually, ``kludge'' means any technique that gets its job done but is | |
7892 | neither clean nor robust.) | |
7893 | ||
342b8b6e | 7894 | @node Semantic Tokens |
bfa74976 RS |
7895 | @section Semantic Info in Token Types |
7896 | ||
7897 | The C language has a context dependency: the way an identifier is used | |
7898 | depends on what its current meaning is. For example, consider this: | |
7899 | ||
7900 | @example | |
7901 | foo (x); | |
7902 | @end example | |
7903 | ||
7904 | This looks like a function call statement, but if @code{foo} is a typedef | |
7905 | name, then this is actually a declaration of @code{x}. How can a Bison | |
7906 | parser for C decide how to parse this input? | |
7907 | ||
35430378 | 7908 | The method used in GNU C is to have two different token types, |
bfa74976 RS |
7909 | @code{IDENTIFIER} and @code{TYPENAME}. When @code{yylex} finds an |
7910 | identifier, it looks up the current declaration of the identifier in order | |
7911 | to decide which token type to return: @code{TYPENAME} if the identifier is | |
7912 | declared as a typedef, @code{IDENTIFIER} otherwise. | |
7913 | ||
7914 | The grammar rules can then express the context dependency by the choice of | |
7915 | token type to recognize. @code{IDENTIFIER} is accepted as an expression, | |
7916 | but @code{TYPENAME} is not. @code{TYPENAME} can start a declaration, but | |
7917 | @code{IDENTIFIER} cannot. In contexts where the meaning of the identifier | |
7918 | is @emph{not} significant, such as in declarations that can shadow a | |
7919 | typedef name, either @code{TYPENAME} or @code{IDENTIFIER} is | |
7920 | accepted---there is one rule for each of the two token types. | |
7921 | ||
7922 | This technique is simple to use if the decision of which kinds of | |
7923 | identifiers to allow is made at a place close to where the identifier is | |
7924 | parsed. But in C this is not always so: C allows a declaration to | |
7925 | redeclare a typedef name provided an explicit type has been specified | |
7926 | earlier: | |
7927 | ||
7928 | @example | |
3a4f411f PE |
7929 | typedef int foo, bar; |
7930 | int baz (void) | |
98842516 | 7931 | @group |
3a4f411f PE |
7932 | @{ |
7933 | static bar (bar); /* @r{redeclare @code{bar} as static variable} */ | |
7934 | extern foo foo (foo); /* @r{redeclare @code{foo} as function} */ | |
7935 | return foo (bar); | |
7936 | @} | |
98842516 | 7937 | @end group |
bfa74976 RS |
7938 | @end example |
7939 | ||
7940 | Unfortunately, the name being declared is separated from the declaration | |
7941 | construct itself by a complicated syntactic structure---the ``declarator''. | |
7942 | ||
9ecbd125 | 7943 | As a result, part of the Bison parser for C needs to be duplicated, with |
14ded682 AD |
7944 | all the nonterminal names changed: once for parsing a declaration in |
7945 | which a typedef name can be redefined, and once for parsing a | |
7946 | declaration in which that can't be done. Here is a part of the | |
7947 | duplication, with actions omitted for brevity: | |
bfa74976 RS |
7948 | |
7949 | @example | |
98842516 | 7950 | @group |
bfa74976 | 7951 | initdcl: |
de6be119 AD |
7952 | declarator maybeasm '=' init |
7953 | | declarator maybeasm | |
7954 | ; | |
98842516 | 7955 | @end group |
bfa74976 | 7956 | |
98842516 | 7957 | @group |
bfa74976 | 7958 | notype_initdcl: |
de6be119 AD |
7959 | notype_declarator maybeasm '=' init |
7960 | | notype_declarator maybeasm | |
7961 | ; | |
98842516 | 7962 | @end group |
bfa74976 RS |
7963 | @end example |
7964 | ||
7965 | @noindent | |
7966 | Here @code{initdcl} can redeclare a typedef name, but @code{notype_initdcl} | |
7967 | cannot. The distinction between @code{declarator} and | |
7968 | @code{notype_declarator} is the same sort of thing. | |
7969 | ||
7970 | There is some similarity between this technique and a lexical tie-in | |
7971 | (described next), in that information which alters the lexical analysis is | |
7972 | changed during parsing by other parts of the program. The difference is | |
7973 | here the information is global, and is used for other purposes in the | |
7974 | program. A true lexical tie-in has a special-purpose flag controlled by | |
7975 | the syntactic context. | |
7976 | ||
342b8b6e | 7977 | @node Lexical Tie-ins |
bfa74976 RS |
7978 | @section Lexical Tie-ins |
7979 | @cindex lexical tie-in | |
7980 | ||
7981 | One way to handle context-dependency is the @dfn{lexical tie-in}: a flag | |
7982 | which is set by Bison actions, whose purpose is to alter the way tokens are | |
7983 | parsed. | |
7984 | ||
7985 | For example, suppose we have a language vaguely like C, but with a special | |
7986 | construct @samp{hex (@var{hex-expr})}. After the keyword @code{hex} comes | |
7987 | an expression in parentheses in which all integers are hexadecimal. In | |
7988 | particular, the token @samp{a1b} must be treated as an integer rather than | |
7989 | as an identifier if it appears in that context. Here is how you can do it: | |
7990 | ||
7991 | @example | |
7992 | @group | |
7993 | %@{ | |
38a92d50 PE |
7994 | int hexflag; |
7995 | int yylex (void); | |
7996 | void yyerror (char const *); | |
bfa74976 RS |
7997 | %@} |
7998 | %% | |
7999 | @dots{} | |
8000 | @end group | |
8001 | @group | |
de6be119 AD |
8002 | expr: |
8003 | IDENTIFIER | |
8004 | | constant | |
8005 | | HEX '(' @{ hexflag = 1; @} | |
8006 | expr ')' @{ hexflag = 0; $$ = $4; @} | |
8007 | | expr '+' expr @{ $$ = make_sum ($1, $3); @} | |
8008 | @dots{} | |
8009 | ; | |
bfa74976 RS |
8010 | @end group |
8011 | ||
8012 | @group | |
8013 | constant: | |
de6be119 AD |
8014 | INTEGER |
8015 | | STRING | |
8016 | ; | |
bfa74976 RS |
8017 | @end group |
8018 | @end example | |
8019 | ||
8020 | @noindent | |
8021 | Here we assume that @code{yylex} looks at the value of @code{hexflag}; when | |
8022 | it is nonzero, all integers are parsed in hexadecimal, and tokens starting | |
8023 | with letters are parsed as integers if possible. | |
8024 | ||
9913d6e4 JD |
8025 | The declaration of @code{hexflag} shown in the prologue of the grammar |
8026 | file is needed to make it accessible to the actions (@pxref{Prologue, | |
8027 | ,The Prologue}). You must also write the code in @code{yylex} to obey | |
8028 | the flag. | |
bfa74976 | 8029 | |
342b8b6e | 8030 | @node Tie-in Recovery |
bfa74976 RS |
8031 | @section Lexical Tie-ins and Error Recovery |
8032 | ||
8033 | Lexical tie-ins make strict demands on any error recovery rules you have. | |
8034 | @xref{Error Recovery}. | |
8035 | ||
8036 | The reason for this is that the purpose of an error recovery rule is to | |
8037 | abort the parsing of one construct and resume in some larger construct. | |
8038 | For example, in C-like languages, a typical error recovery rule is to skip | |
8039 | tokens until the next semicolon, and then start a new statement, like this: | |
8040 | ||
8041 | @example | |
de6be119 AD |
8042 | stmt: |
8043 | expr ';' | |
8044 | | IF '(' expr ')' stmt @{ @dots{} @} | |
8045 | @dots{} | |
8046 | | error ';' @{ hexflag = 0; @} | |
8047 | ; | |
bfa74976 RS |
8048 | @end example |
8049 | ||
8050 | If there is a syntax error in the middle of a @samp{hex (@var{expr})} | |
8051 | construct, this error rule will apply, and then the action for the | |
8052 | completed @samp{hex (@var{expr})} will never run. So @code{hexflag} would | |
8053 | remain set for the entire rest of the input, or until the next @code{hex} | |
8054 | keyword, causing identifiers to be misinterpreted as integers. | |
8055 | ||
8056 | To avoid this problem the error recovery rule itself clears @code{hexflag}. | |
8057 | ||
8058 | There may also be an error recovery rule that works within expressions. | |
8059 | For example, there could be a rule which applies within parentheses | |
8060 | and skips to the close-parenthesis: | |
8061 | ||
8062 | @example | |
8063 | @group | |
de6be119 AD |
8064 | expr: |
8065 | @dots{} | |
8066 | | '(' expr ')' @{ $$ = $2; @} | |
8067 | | '(' error ')' | |
8068 | @dots{} | |
bfa74976 RS |
8069 | @end group |
8070 | @end example | |
8071 | ||
8072 | If this rule acts within the @code{hex} construct, it is not going to abort | |
8073 | that construct (since it applies to an inner level of parentheses within | |
8074 | the construct). Therefore, it should not clear the flag: the rest of | |
8075 | the @code{hex} construct should be parsed with the flag still in effect. | |
8076 | ||
8077 | What if there is an error recovery rule which might abort out of the | |
8078 | @code{hex} construct or might not, depending on circumstances? There is no | |
8079 | way you can write the action to determine whether a @code{hex} construct is | |
8080 | being aborted or not. So if you are using a lexical tie-in, you had better | |
8081 | make sure your error recovery rules are not of this kind. Each rule must | |
8082 | be such that you can be sure that it always will, or always won't, have to | |
8083 | clear the flag. | |
8084 | ||
ec3bc396 AD |
8085 | @c ================================================== Debugging Your Parser |
8086 | ||
342b8b6e | 8087 | @node Debugging |
bfa74976 | 8088 | @chapter Debugging Your Parser |
ec3bc396 | 8089 | |
56d60c19 AD |
8090 | Developing a parser can be a challenge, especially if you don't understand |
8091 | the algorithm (@pxref{Algorithm, ,The Bison Parser Algorithm}). This | |
8092 | chapter explains how to generate and read the detailed description of the | |
8093 | automaton, and how to enable and understand the parser run-time traces. | |
ec3bc396 AD |
8094 | |
8095 | @menu | |
8096 | * Understanding:: Understanding the structure of your parser. | |
fc4fdd62 | 8097 | * Graphviz:: Getting a visual representation of the parser. |
ec3bc396 AD |
8098 | * Tracing:: Tracing the execution of your parser. |
8099 | @end menu | |
8100 | ||
8101 | @node Understanding | |
8102 | @section Understanding Your Parser | |
8103 | ||
8104 | As documented elsewhere (@pxref{Algorithm, ,The Bison Parser Algorithm}) | |
8105 | Bison parsers are @dfn{shift/reduce automata}. In some cases (much more | |
8106 | frequent than one would hope), looking at this automaton is required to | |
8107 | tune or simply fix a parser. Bison provides two different | |
35fe0834 | 8108 | representation of it, either textually or graphically (as a DOT file). |
ec3bc396 AD |
8109 | |
8110 | The textual file is generated when the options @option{--report} or | |
2ba03112 | 8111 | @option{--verbose} are specified, see @ref{Invocation, , Invoking |
ec3bc396 | 8112 | Bison}. Its name is made by removing @samp{.tab.c} or @samp{.c} from |
9913d6e4 JD |
8113 | the parser implementation file name, and adding @samp{.output} |
8114 | instead. Therefore, if the grammar file is @file{foo.y}, then the | |
8115 | parser implementation file is called @file{foo.tab.c} by default. As | |
8116 | a consequence, the verbose output file is called @file{foo.output}. | |
ec3bc396 AD |
8117 | |
8118 | The following grammar file, @file{calc.y}, will be used in the sequel: | |
8119 | ||
8120 | @example | |
8121 | %token NUM STR | |
8122 | %left '+' '-' | |
8123 | %left '*' | |
8124 | %% | |
de6be119 AD |
8125 | exp: |
8126 | exp '+' exp | |
8127 | | exp '-' exp | |
8128 | | exp '*' exp | |
8129 | | exp '/' exp | |
8130 | | NUM | |
8131 | ; | |
ec3bc396 AD |
8132 | useless: STR; |
8133 | %% | |
8134 | @end example | |
8135 | ||
88bce5a2 AD |
8136 | @command{bison} reports: |
8137 | ||
8138 | @example | |
379261b3 JD |
8139 | calc.y: warning: 1 nonterminal useless in grammar |
8140 | calc.y: warning: 1 rule useless in grammar | |
cff03fb2 JD |
8141 | calc.y:11.1-7: warning: nonterminal useless in grammar: useless |
8142 | calc.y:11.10-12: warning: rule useless in grammar: useless: STR | |
5a99098d | 8143 | calc.y: conflicts: 7 shift/reduce |
88bce5a2 AD |
8144 | @end example |
8145 | ||
8146 | When given @option{--report=state}, in addition to @file{calc.tab.c}, it | |
8147 | creates a file @file{calc.output} with contents detailed below. The | |
8148 | order of the output and the exact presentation might vary, but the | |
8149 | interpretation is the same. | |
ec3bc396 | 8150 | |
ec3bc396 AD |
8151 | @noindent |
8152 | @cindex token, useless | |
8153 | @cindex useless token | |
8154 | @cindex nonterminal, useless | |
8155 | @cindex useless nonterminal | |
8156 | @cindex rule, useless | |
8157 | @cindex useless rule | |
84c1cdc7 AD |
8158 | The first section reports useless tokens, nonterminals and rules. Useless |
8159 | nonterminals and rules are removed in order to produce a smaller parser, but | |
8160 | useless tokens are preserved, since they might be used by the scanner (note | |
8161 | the difference between ``useless'' and ``unused'' below): | |
ec3bc396 AD |
8162 | |
8163 | @example | |
84c1cdc7 | 8164 | Nonterminals useless in grammar |
ec3bc396 AD |
8165 | useless |
8166 | ||
84c1cdc7 | 8167 | Terminals unused in grammar |
ec3bc396 AD |
8168 | STR |
8169 | ||
84c1cdc7 AD |
8170 | Rules useless in grammar |
8171 | 6 useless: STR | |
ec3bc396 AD |
8172 | @end example |
8173 | ||
8174 | @noindent | |
84c1cdc7 AD |
8175 | The next section lists states that still have conflicts. |
8176 | ||
8177 | @example | |
8178 | State 8 conflicts: 1 shift/reduce | |
8179 | State 9 conflicts: 1 shift/reduce | |
8180 | State 10 conflicts: 1 shift/reduce | |
8181 | State 11 conflicts: 4 shift/reduce | |
8182 | @end example | |
8183 | ||
8184 | @noindent | |
8185 | Then Bison reproduces the exact grammar it used: | |
ec3bc396 AD |
8186 | |
8187 | @example | |
8188 | Grammar | |
8189 | ||
84c1cdc7 AD |
8190 | 0 $accept: exp $end |
8191 | ||
8192 | 1 exp: exp '+' exp | |
8193 | 2 | exp '-' exp | |
8194 | 3 | exp '*' exp | |
8195 | 4 | exp '/' exp | |
8196 | 5 | NUM | |
ec3bc396 AD |
8197 | @end example |
8198 | ||
8199 | @noindent | |
8200 | and reports the uses of the symbols: | |
8201 | ||
8202 | @example | |
98842516 | 8203 | @group |
ec3bc396 AD |
8204 | Terminals, with rules where they appear |
8205 | ||
88bce5a2 | 8206 | $end (0) 0 |
ec3bc396 AD |
8207 | '*' (42) 3 |
8208 | '+' (43) 1 | |
8209 | '-' (45) 2 | |
8210 | '/' (47) 4 | |
8211 | error (256) | |
8212 | NUM (258) 5 | |
84c1cdc7 | 8213 | STR (259) |
98842516 | 8214 | @end group |
ec3bc396 | 8215 | |
98842516 | 8216 | @group |
ec3bc396 AD |
8217 | Nonterminals, with rules where they appear |
8218 | ||
84c1cdc7 | 8219 | $accept (9) |
ec3bc396 | 8220 | on left: 0 |
84c1cdc7 | 8221 | exp (10) |
ec3bc396 | 8222 | on left: 1 2 3 4 5, on right: 0 1 2 3 4 |
98842516 | 8223 | @end group |
ec3bc396 AD |
8224 | @end example |
8225 | ||
8226 | @noindent | |
8227 | @cindex item | |
8228 | @cindex pointed rule | |
8229 | @cindex rule, pointed | |
8230 | Bison then proceeds onto the automaton itself, describing each state | |
d13d14cc PE |
8231 | with its set of @dfn{items}, also known as @dfn{pointed rules}. Each |
8232 | item is a production rule together with a point (@samp{.}) marking | |
8233 | the location of the input cursor. | |
ec3bc396 AD |
8234 | |
8235 | @example | |
8236 | state 0 | |
8237 | ||
84c1cdc7 | 8238 | 0 $accept: . exp $end |
ec3bc396 | 8239 | |
84c1cdc7 | 8240 | NUM shift, and go to state 1 |
ec3bc396 | 8241 | |
84c1cdc7 | 8242 | exp go to state 2 |
ec3bc396 AD |
8243 | @end example |
8244 | ||
8245 | This reads as follows: ``state 0 corresponds to being at the very | |
8246 | beginning of the parsing, in the initial rule, right before the start | |
8247 | symbol (here, @code{exp}). When the parser returns to this state right | |
8248 | after having reduced a rule that produced an @code{exp}, the control | |
8249 | flow jumps to state 2. If there is no such transition on a nonterminal | |
d13d14cc | 8250 | symbol, and the lookahead is a @code{NUM}, then this token is shifted onto |
ec3bc396 | 8251 | the parse stack, and the control flow jumps to state 1. Any other |
742e4900 | 8252 | lookahead triggers a syntax error.'' |
ec3bc396 AD |
8253 | |
8254 | @cindex core, item set | |
8255 | @cindex item set core | |
8256 | @cindex kernel, item set | |
8257 | @cindex item set core | |
8258 | Even though the only active rule in state 0 seems to be rule 0, the | |
742e4900 | 8259 | report lists @code{NUM} as a lookahead token because @code{NUM} can be |
ec3bc396 AD |
8260 | at the beginning of any rule deriving an @code{exp}. By default Bison |
8261 | reports the so-called @dfn{core} or @dfn{kernel} of the item set, but if | |
8262 | you want to see more detail you can invoke @command{bison} with | |
d13d14cc | 8263 | @option{--report=itemset} to list the derived items as well: |
ec3bc396 AD |
8264 | |
8265 | @example | |
8266 | state 0 | |
8267 | ||
84c1cdc7 AD |
8268 | 0 $accept: . exp $end |
8269 | 1 exp: . exp '+' exp | |
8270 | 2 | . exp '-' exp | |
8271 | 3 | . exp '*' exp | |
8272 | 4 | . exp '/' exp | |
8273 | 5 | . NUM | |
ec3bc396 | 8274 | |
84c1cdc7 | 8275 | NUM shift, and go to state 1 |
ec3bc396 | 8276 | |
84c1cdc7 | 8277 | exp go to state 2 |
ec3bc396 AD |
8278 | @end example |
8279 | ||
8280 | @noindent | |
84c1cdc7 | 8281 | In the state 1@dots{} |
ec3bc396 AD |
8282 | |
8283 | @example | |
8284 | state 1 | |
8285 | ||
84c1cdc7 | 8286 | 5 exp: NUM . |
ec3bc396 | 8287 | |
84c1cdc7 | 8288 | $default reduce using rule 5 (exp) |
ec3bc396 AD |
8289 | @end example |
8290 | ||
8291 | @noindent | |
742e4900 | 8292 | the rule 5, @samp{exp: NUM;}, is completed. Whatever the lookahead token |
ec3bc396 AD |
8293 | (@samp{$default}), the parser will reduce it. If it was coming from |
8294 | state 0, then, after this reduction it will return to state 0, and will | |
8295 | jump to state 2 (@samp{exp: go to state 2}). | |
8296 | ||
8297 | @example | |
8298 | state 2 | |
8299 | ||
84c1cdc7 AD |
8300 | 0 $accept: exp . $end |
8301 | 1 exp: exp . '+' exp | |
8302 | 2 | exp . '-' exp | |
8303 | 3 | exp . '*' exp | |
8304 | 4 | exp . '/' exp | |
ec3bc396 | 8305 | |
84c1cdc7 AD |
8306 | $end shift, and go to state 3 |
8307 | '+' shift, and go to state 4 | |
8308 | '-' shift, and go to state 5 | |
8309 | '*' shift, and go to state 6 | |
8310 | '/' shift, and go to state 7 | |
ec3bc396 AD |
8311 | @end example |
8312 | ||
8313 | @noindent | |
8314 | In state 2, the automaton can only shift a symbol. For instance, | |
84c1cdc7 | 8315 | because of the item @samp{exp: exp . '+' exp}, if the lookahead is |
d13d14cc | 8316 | @samp{+} it is shifted onto the parse stack, and the automaton |
84c1cdc7 | 8317 | jumps to state 4, corresponding to the item @samp{exp: exp '+' . exp}. |
d13d14cc PE |
8318 | Since there is no default action, any lookahead not listed triggers a syntax |
8319 | error. | |
ec3bc396 | 8320 | |
34a6c2d1 | 8321 | @cindex accepting state |
ec3bc396 AD |
8322 | The state 3 is named the @dfn{final state}, or the @dfn{accepting |
8323 | state}: | |
8324 | ||
8325 | @example | |
8326 | state 3 | |
8327 | ||
84c1cdc7 | 8328 | 0 $accept: exp $end . |
ec3bc396 | 8329 | |
84c1cdc7 | 8330 | $default accept |
ec3bc396 AD |
8331 | @end example |
8332 | ||
8333 | @noindent | |
84c1cdc7 AD |
8334 | the initial rule is completed (the start symbol and the end-of-input were |
8335 | read), the parsing exits successfully. | |
ec3bc396 AD |
8336 | |
8337 | The interpretation of states 4 to 7 is straightforward, and is left to | |
8338 | the reader. | |
8339 | ||
8340 | @example | |
8341 | state 4 | |
8342 | ||
84c1cdc7 | 8343 | 1 exp: exp '+' . exp |
ec3bc396 | 8344 | |
84c1cdc7 AD |
8345 | NUM shift, and go to state 1 |
8346 | ||
8347 | exp go to state 8 | |
ec3bc396 | 8348 | |
ec3bc396 AD |
8349 | |
8350 | state 5 | |
8351 | ||
84c1cdc7 AD |
8352 | 2 exp: exp '-' . exp |
8353 | ||
8354 | NUM shift, and go to state 1 | |
ec3bc396 | 8355 | |
84c1cdc7 | 8356 | exp go to state 9 |
ec3bc396 | 8357 | |
ec3bc396 AD |
8358 | |
8359 | state 6 | |
8360 | ||
84c1cdc7 | 8361 | 3 exp: exp '*' . exp |
ec3bc396 | 8362 | |
84c1cdc7 AD |
8363 | NUM shift, and go to state 1 |
8364 | ||
8365 | exp go to state 10 | |
ec3bc396 | 8366 | |
ec3bc396 AD |
8367 | |
8368 | state 7 | |
8369 | ||
84c1cdc7 | 8370 | 4 exp: exp '/' . exp |
ec3bc396 | 8371 | |
84c1cdc7 | 8372 | NUM shift, and go to state 1 |
ec3bc396 | 8373 | |
84c1cdc7 | 8374 | exp go to state 11 |
ec3bc396 AD |
8375 | @end example |
8376 | ||
5a99098d PE |
8377 | As was announced in beginning of the report, @samp{State 8 conflicts: |
8378 | 1 shift/reduce}: | |
ec3bc396 AD |
8379 | |
8380 | @example | |
8381 | state 8 | |
8382 | ||
84c1cdc7 AD |
8383 | 1 exp: exp . '+' exp |
8384 | 1 | exp '+' exp . | |
8385 | 2 | exp . '-' exp | |
8386 | 3 | exp . '*' exp | |
8387 | 4 | exp . '/' exp | |
ec3bc396 | 8388 | |
84c1cdc7 AD |
8389 | '*' shift, and go to state 6 |
8390 | '/' shift, and go to state 7 | |
ec3bc396 | 8391 | |
84c1cdc7 AD |
8392 | '/' [reduce using rule 1 (exp)] |
8393 | $default reduce using rule 1 (exp) | |
ec3bc396 AD |
8394 | @end example |
8395 | ||
742e4900 | 8396 | Indeed, there are two actions associated to the lookahead @samp{/}: |
ec3bc396 AD |
8397 | either shifting (and going to state 7), or reducing rule 1. The |
8398 | conflict means that either the grammar is ambiguous, or the parser lacks | |
8399 | information to make the right decision. Indeed the grammar is | |
8400 | ambiguous, as, since we did not specify the precedence of @samp{/}, the | |
8401 | sentence @samp{NUM + NUM / NUM} can be parsed as @samp{NUM + (NUM / | |
8402 | NUM)}, which corresponds to shifting @samp{/}, or as @samp{(NUM + NUM) / | |
8403 | NUM}, which corresponds to reducing rule 1. | |
8404 | ||
34a6c2d1 | 8405 | Because in deterministic parsing a single decision can be made, Bison |
ec3bc396 | 8406 | arbitrarily chose to disable the reduction, see @ref{Shift/Reduce, , |
84c1cdc7 | 8407 | Shift/Reduce Conflicts}. Discarded actions are reported between |
ec3bc396 AD |
8408 | square brackets. |
8409 | ||
8410 | Note that all the previous states had a single possible action: either | |
8411 | shifting the next token and going to the corresponding state, or | |
8412 | reducing a single rule. In the other cases, i.e., when shifting | |
8413 | @emph{and} reducing is possible or when @emph{several} reductions are | |
742e4900 JD |
8414 | possible, the lookahead is required to select the action. State 8 is |
8415 | one such state: if the lookahead is @samp{*} or @samp{/} then the action | |
ec3bc396 AD |
8416 | is shifting, otherwise the action is reducing rule 1. In other words, |
8417 | the first two items, corresponding to rule 1, are not eligible when the | |
742e4900 | 8418 | lookahead token is @samp{*}, since we specified that @samp{*} has higher |
8dd162d3 | 8419 | precedence than @samp{+}. More generally, some items are eligible only |
742e4900 JD |
8420 | with some set of possible lookahead tokens. When run with |
8421 | @option{--report=lookahead}, Bison specifies these lookahead tokens: | |
ec3bc396 AD |
8422 | |
8423 | @example | |
8424 | state 8 | |
8425 | ||
84c1cdc7 AD |
8426 | 1 exp: exp . '+' exp |
8427 | 1 | exp '+' exp . [$end, '+', '-', '/'] | |
8428 | 2 | exp . '-' exp | |
8429 | 3 | exp . '*' exp | |
8430 | 4 | exp . '/' exp | |
8431 | ||
8432 | '*' shift, and go to state 6 | |
8433 | '/' shift, and go to state 7 | |
ec3bc396 | 8434 | |
84c1cdc7 AD |
8435 | '/' [reduce using rule 1 (exp)] |
8436 | $default reduce using rule 1 (exp) | |
8437 | @end example | |
8438 | ||
8439 | Note however that while @samp{NUM + NUM / NUM} is ambiguous (which results in | |
8440 | the conflicts on @samp{/}), @samp{NUM + NUM * NUM} is not: the conflict was | |
8441 | solved thanks to associativity and precedence directives. If invoked with | |
8442 | @option{--report=solved}, Bison includes information about the solved | |
8443 | conflicts in the report: | |
ec3bc396 | 8444 | |
84c1cdc7 AD |
8445 | @example |
8446 | Conflict between rule 1 and token '+' resolved as reduce (%left '+'). | |
8447 | Conflict between rule 1 and token '-' resolved as reduce (%left '-'). | |
8448 | Conflict between rule 1 and token '*' resolved as shift ('+' < '*'). | |
ec3bc396 AD |
8449 | @end example |
8450 | ||
84c1cdc7 | 8451 | |
ec3bc396 AD |
8452 | The remaining states are similar: |
8453 | ||
8454 | @example | |
98842516 | 8455 | @group |
ec3bc396 AD |
8456 | state 9 |
8457 | ||
84c1cdc7 AD |
8458 | 1 exp: exp . '+' exp |
8459 | 2 | exp . '-' exp | |
8460 | 2 | exp '-' exp . | |
8461 | 3 | exp . '*' exp | |
8462 | 4 | exp . '/' exp | |
ec3bc396 | 8463 | |
84c1cdc7 AD |
8464 | '*' shift, and go to state 6 |
8465 | '/' shift, and go to state 7 | |
ec3bc396 | 8466 | |
84c1cdc7 AD |
8467 | '/' [reduce using rule 2 (exp)] |
8468 | $default reduce using rule 2 (exp) | |
98842516 | 8469 | @end group |
ec3bc396 | 8470 | |
98842516 | 8471 | @group |
ec3bc396 AD |
8472 | state 10 |
8473 | ||
84c1cdc7 AD |
8474 | 1 exp: exp . '+' exp |
8475 | 2 | exp . '-' exp | |
8476 | 3 | exp . '*' exp | |
8477 | 3 | exp '*' exp . | |
8478 | 4 | exp . '/' exp | |
ec3bc396 | 8479 | |
84c1cdc7 | 8480 | '/' shift, and go to state 7 |
ec3bc396 | 8481 | |
84c1cdc7 AD |
8482 | '/' [reduce using rule 3 (exp)] |
8483 | $default reduce using rule 3 (exp) | |
98842516 | 8484 | @end group |
ec3bc396 | 8485 | |
98842516 | 8486 | @group |
ec3bc396 AD |
8487 | state 11 |
8488 | ||
84c1cdc7 AD |
8489 | 1 exp: exp . '+' exp |
8490 | 2 | exp . '-' exp | |
8491 | 3 | exp . '*' exp | |
8492 | 4 | exp . '/' exp | |
8493 | 4 | exp '/' exp . | |
8494 | ||
8495 | '+' shift, and go to state 4 | |
8496 | '-' shift, and go to state 5 | |
8497 | '*' shift, and go to state 6 | |
8498 | '/' shift, and go to state 7 | |
8499 | ||
8500 | '+' [reduce using rule 4 (exp)] | |
8501 | '-' [reduce using rule 4 (exp)] | |
8502 | '*' [reduce using rule 4 (exp)] | |
8503 | '/' [reduce using rule 4 (exp)] | |
8504 | $default reduce using rule 4 (exp) | |
98842516 | 8505 | @end group |
ec3bc396 AD |
8506 | @end example |
8507 | ||
8508 | @noindent | |
fa7e68c3 PE |
8509 | Observe that state 11 contains conflicts not only due to the lack of |
8510 | precedence of @samp{/} with respect to @samp{+}, @samp{-}, and | |
8511 | @samp{*}, but also because the | |
ec3bc396 AD |
8512 | associativity of @samp{/} is not specified. |
8513 | ||
fc4fdd62 TR |
8514 | @c ================================================= Graphical Representation |
8515 | ||
8516 | @node Graphviz | |
8517 | @section Visualizing Your Parser | |
8518 | @cindex dot | |
8519 | ||
8520 | As another means to gain better understanding of the shift/reduce | |
8521 | automaton corresponding to the Bison parser, a DOT file can be generated. Note | |
8522 | that debugging a real grammar with this is tedious at best, and impractical | |
8523 | most of the times, because the generated files are huge (the generation of | |
8524 | a PDF or PNG file from it will take very long, and more often than not it will | |
8525 | fail due to memory exhaustion). This option was rather designed for beginners, | |
8526 | to help them understand LR parsers. | |
8527 | ||
8528 | This file is generated when the @option{--graph} option is specified (see | |
8529 | @pxref{Invocation, , Invoking Bison}). Its name is made by removing | |
8530 | @samp{.tab.c} or @samp{.c} from the parser implementation file name, and | |
8531 | adding @samp{.dot} instead. If the grammar file is @file{foo.y}, the | |
8532 | Graphviz output file is called @file{foo.dot}. | |
8533 | ||
8534 | The following grammar file, @file{rr.y}, will be used in the sequel: | |
8535 | ||
8536 | @example | |
8537 | %% | |
8538 | @group | |
8539 | exp: a ";" | b "."; | |
8540 | a: "0"; | |
8541 | b: "0"; | |
8542 | @end group | |
8543 | @end example | |
8544 | ||
8545 | The graphical output is very similar to the textual one, and as such it is | |
8546 | easier understood by making direct comparisons between them. See | |
8547 | @ref{Debugging, , Debugging Your Parser} for a detailled analysis of the | |
8548 | textual report. | |
8549 | ||
8550 | @subheading Graphical Representation of States | |
8551 | ||
8552 | The items (pointed rules) for each state are grouped together in graph nodes. | |
8553 | Their numbering is the same as in the verbose file. See the following points, | |
8554 | about transitions, for examples | |
8555 | ||
8556 | When invoked with @option{--report=lookaheads}, the lookahead tokens, when | |
8557 | needed, are shown next to the relevant rule between square brackets as a | |
8558 | comma separated list. This is the case in the figure for the representation of | |
8559 | reductions, below. | |
8560 | ||
8561 | @sp 1 | |
8562 | ||
8563 | The transitions are represented as directed edges between the current and | |
8564 | the target states. | |
8565 | ||
8566 | @subheading Graphical Representation of Shifts | |
8567 | ||
8568 | Shifts are shown as solid arrows, labelled with the lookahead token for that | |
8569 | shift. The following describes a reduction in the @file{rr.output} file: | |
8570 | ||
8571 | @example | |
8572 | @group | |
8573 | state 3 | |
8574 | ||
8575 | 1 exp: a . ";" | |
8576 | ||
8577 | ";" shift, and go to state 6 | |
8578 | @end group | |
8579 | @end example | |
8580 | ||
8581 | A Graphviz rendering of this portion of the graph could be: | |
8582 | ||
8583 | @center @image{figs/example-shift, 100pt} | |
8584 | ||
8585 | @subheading Graphical Representation of Reductions | |
8586 | ||
8587 | Reductions are shown as solid arrows, leading to a diamond-shaped node | |
8588 | bearing the number of the reduction rule. The arrow is labelled with the | |
8589 | appropriate comma separated lookahead tokens. If the reduction is the default | |
8590 | action for the given state, there is no such label. | |
8591 | ||
8592 | This is how reductions are represented in the verbose file @file{rr.output}: | |
8593 | @example | |
8594 | state 1 | |
8595 | ||
8596 | 3 a: "0" . [";"] | |
8597 | 4 b: "0" . ["."] | |
8598 | ||
8599 | "." reduce using rule 4 (b) | |
8600 | $default reduce using rule 3 (a) | |
8601 | @end example | |
8602 | ||
8603 | A Graphviz rendering of this portion of the graph could be: | |
8604 | ||
8605 | @center @image{figs/example-reduce, 120pt} | |
8606 | ||
8607 | When unresolved conflicts are present, because in deterministic parsing | |
8608 | a single decision can be made, Bison can arbitrarily choose to disable a | |
8609 | reduction, see @ref{Shift/Reduce, , Shift/Reduce Conflicts}. Discarded actions | |
8610 | are distinguished by a red filling color on these nodes, just like how they are | |
8611 | reported between square brackets in the verbose file. | |
8612 | ||
8613 | The reduction corresponding to the rule number 0 is the acceptation state. It | |
8614 | is shown as a blue diamond, labelled "Acc". | |
8615 | ||
8616 | @subheading Graphical representation of go tos | |
8617 | ||
8618 | The @samp{go to} jump transitions are represented as dotted lines bearing | |
8619 | the name of the rule being jumped to. | |
8620 | ||
8621 | @c ================================================= Tracing | |
ec3bc396 AD |
8622 | |
8623 | @node Tracing | |
8624 | @section Tracing Your Parser | |
bfa74976 RS |
8625 | @findex yydebug |
8626 | @cindex debugging | |
8627 | @cindex tracing the parser | |
8628 | ||
56d60c19 AD |
8629 | When a Bison grammar compiles properly but parses ``incorrectly'', the |
8630 | @code{yydebug} parser-trace feature helps figuring out why. | |
8631 | ||
8632 | @menu | |
8633 | * Enabling Traces:: Activating run-time trace support | |
8634 | * Mfcalc Traces:: Extending @code{mfcalc} to support traces | |
8635 | * The YYPRINT Macro:: Obsolete interface for semantic value reports | |
8636 | @end menu | |
bfa74976 | 8637 | |
56d60c19 AD |
8638 | @node Enabling Traces |
8639 | @subsection Enabling Traces | |
3ded9a63 AD |
8640 | There are several means to enable compilation of trace facilities: |
8641 | ||
8642 | @table @asis | |
8643 | @item the macro @code{YYDEBUG} | |
8644 | @findex YYDEBUG | |
8645 | Define the macro @code{YYDEBUG} to a nonzero value when you compile the | |
35430378 | 8646 | parser. This is compliant with POSIX Yacc. You could use |
3ded9a63 AD |
8647 | @samp{-DYYDEBUG=1} as a compiler option or you could put @samp{#define |
8648 | YYDEBUG 1} in the prologue of the grammar file (@pxref{Prologue, , The | |
8649 | Prologue}). | |
8650 | ||
e6ae99fe | 8651 | If the @code{%define} variable @code{api.prefix} is used (@pxref{Multiple |
e358222b AD |
8652 | Parsers, ,Multiple Parsers in the Same Program}), for instance @samp{%define |
8653 | api.prefix x}, then if @code{CDEBUG} is defined, its value controls the | |
5a05f42e AD |
8654 | tracing feature (enabled if and only if nonzero); otherwise tracing is |
8655 | enabled if and only if @code{YYDEBUG} is nonzero. | |
e358222b AD |
8656 | |
8657 | @item the option @option{-t} (POSIX Yacc compliant) | |
8658 | @itemx the option @option{--debug} (Bison extension) | |
8659 | Use the @samp{-t} option when you run Bison (@pxref{Invocation, ,Invoking | |
8660 | Bison}). With @samp{%define api.prefix c}, it defines @code{CDEBUG} to 1, | |
8661 | otherwise it defines @code{YYDEBUG} to 1. | |
3ded9a63 AD |
8662 | |
8663 | @item the directive @samp{%debug} | |
8664 | @findex %debug | |
e358222b AD |
8665 | Add the @code{%debug} directive (@pxref{Decl Summary, ,Bison Declaration |
8666 | Summary}). This is a Bison extension, especially useful for languages that | |
8667 | don't use a preprocessor. Unless POSIX and Yacc portability matter to you, | |
8668 | this is the preferred solution. | |
3ded9a63 AD |
8669 | @end table |
8670 | ||
8671 | We suggest that you always enable the debug option so that debugging is | |
8672 | always possible. | |
bfa74976 | 8673 | |
56d60c19 | 8674 | @findex YYFPRINTF |
02a81e05 | 8675 | The trace facility outputs messages with macro calls of the form |
e2742e46 | 8676 | @code{YYFPRINTF (stderr, @var{format}, @var{args})} where |
f57a7536 | 8677 | @var{format} and @var{args} are the usual @code{printf} format and variadic |
4947ebdb PE |
8678 | arguments. If you define @code{YYDEBUG} to a nonzero value but do not |
8679 | define @code{YYFPRINTF}, @code{<stdio.h>} is automatically included | |
9c437126 | 8680 | and @code{YYFPRINTF} is defined to @code{fprintf}. |
bfa74976 RS |
8681 | |
8682 | Once you have compiled the program with trace facilities, the way to | |
8683 | request a trace is to store a nonzero value in the variable @code{yydebug}. | |
8684 | You can do this by making the C code do it (in @code{main}, perhaps), or | |
8685 | you can alter the value with a C debugger. | |
8686 | ||
8687 | Each step taken by the parser when @code{yydebug} is nonzero produces a | |
8688 | line or two of trace information, written on @code{stderr}. The trace | |
8689 | messages tell you these things: | |
8690 | ||
8691 | @itemize @bullet | |
8692 | @item | |
8693 | Each time the parser calls @code{yylex}, what kind of token was read. | |
8694 | ||
8695 | @item | |
8696 | Each time a token is shifted, the depth and complete contents of the | |
8697 | state stack (@pxref{Parser States}). | |
8698 | ||
8699 | @item | |
8700 | Each time a rule is reduced, which rule it is, and the complete contents | |
8701 | of the state stack afterward. | |
8702 | @end itemize | |
8703 | ||
56d60c19 AD |
8704 | To make sense of this information, it helps to refer to the automaton |
8705 | description file (@pxref{Understanding, ,Understanding Your Parser}). | |
8706 | This file shows the meaning of each state in terms of | |
704a47c4 AD |
8707 | positions in various rules, and also what each state will do with each |
8708 | possible input token. As you read the successive trace messages, you | |
8709 | can see that the parser is functioning according to its specification in | |
8710 | the listing file. Eventually you will arrive at the place where | |
8711 | something undesirable happens, and you will see which parts of the | |
8712 | grammar are to blame. | |
bfa74976 | 8713 | |
56d60c19 | 8714 | The parser implementation file is a C/C++/Java program and you can use |
9913d6e4 JD |
8715 | debuggers on it, but it's not easy to interpret what it is doing. The |
8716 | parser function is a finite-state machine interpreter, and aside from | |
8717 | the actions it executes the same code over and over. Only the values | |
8718 | of variables show where in the grammar it is working. | |
bfa74976 | 8719 | |
56d60c19 AD |
8720 | @node Mfcalc Traces |
8721 | @subsection Enabling Debug Traces for @code{mfcalc} | |
8722 | ||
8723 | The debugging information normally gives the token type of each token read, | |
8724 | but not its semantic value. The @code{%printer} directive allows specify | |
8725 | how semantic values are reported, see @ref{Printer Decl, , Printing | |
8726 | Semantic Values}. For backward compatibility, Yacc like C parsers may also | |
8727 | use the @code{YYPRINT} (@pxref{The YYPRINT Macro, , The @code{YYPRINT} | |
8728 | Macro}), but its use is discouraged. | |
8729 | ||
8730 | As a demonstration of @code{%printer}, consider the multi-function | |
8731 | calculator, @code{mfcalc} (@pxref{Multi-function Calc}). To enable run-time | |
8732 | traces, and semantic value reports, insert the following directives in its | |
8733 | prologue: | |
8734 | ||
8735 | @comment file: mfcalc.y: 2 | |
8736 | @example | |
8737 | /* Generate the parser description file. */ | |
8738 | %verbose | |
8739 | /* Enable run-time traces (yydebug). */ | |
8740 | %define parse.trace | |
8741 | ||
8742 | /* Formatting semantic values. */ | |
8743 | %printer @{ fprintf (yyoutput, "%s", $$->name); @} VAR; | |
8744 | %printer @{ fprintf (yyoutput, "%s()", $$->name); @} FNCT; | |
8745 | %printer @{ fprintf (yyoutput, "%g", $$); @} <val>; | |
8746 | @end example | |
8747 | ||
8748 | The @code{%define} directive instructs Bison to generate run-time trace | |
8749 | support. Then, activation of these traces is controlled at run-time by the | |
8750 | @code{yydebug} variable, which is disabled by default. Because these traces | |
8751 | will refer to the ``states'' of the parser, it is helpful to ask for the | |
8752 | creation of a description of that parser; this is the purpose of (admittedly | |
8753 | ill-named) @code{%verbose} directive. | |
8754 | ||
8755 | The set of @code{%printer} directives demonstrates how to format the | |
8756 | semantic value in the traces. Note that the specification can be done | |
8757 | either on the symbol type (e.g., @code{VAR} or @code{FNCT}), or on the type | |
8758 | tag: since @code{<val>} is the type for both @code{NUM} and @code{exp}, this | |
8759 | printer will be used for them. | |
8760 | ||
8761 | Here is a sample of the information provided by run-time traces. The traces | |
8762 | are sent onto standard error. | |
8763 | ||
8764 | @example | |
8765 | $ @kbd{echo 'sin(1-1)' | ./mfcalc -p} | |
8766 | Starting parse | |
8767 | Entering state 0 | |
8768 | Reducing stack by rule 1 (line 34): | |
8769 | -> $$ = nterm input () | |
8770 | Stack now 0 | |
8771 | Entering state 1 | |
8772 | @end example | |
8773 | ||
8774 | @noindent | |
8775 | This first batch shows a specific feature of this grammar: the first rule | |
8776 | (which is in line 34 of @file{mfcalc.y} can be reduced without even having | |
8777 | to look for the first token. The resulting left-hand symbol (@code{$$}) is | |
8778 | a valueless (@samp{()}) @code{input} non terminal (@code{nterm}). | |
8779 | ||
8780 | Then the parser calls the scanner. | |
8781 | @example | |
8782 | Reading a token: Next token is token FNCT (sin()) | |
8783 | Shifting token FNCT (sin()) | |
8784 | Entering state 6 | |
8785 | @end example | |
8786 | ||
8787 | @noindent | |
8788 | That token (@code{token}) is a function (@code{FNCT}) whose value is | |
8789 | @samp{sin} as formatted per our @code{%printer} specification: @samp{sin()}. | |
8790 | The parser stores (@code{Shifting}) that token, and others, until it can do | |
8791 | something about it. | |
8792 | ||
8793 | @example | |
8794 | Reading a token: Next token is token '(' () | |
8795 | Shifting token '(' () | |
8796 | Entering state 14 | |
8797 | Reading a token: Next token is token NUM (1.000000) | |
8798 | Shifting token NUM (1.000000) | |
8799 | Entering state 4 | |
8800 | Reducing stack by rule 6 (line 44): | |
8801 | $1 = token NUM (1.000000) | |
8802 | -> $$ = nterm exp (1.000000) | |
8803 | Stack now 0 1 6 14 | |
8804 | Entering state 24 | |
8805 | @end example | |
8806 | ||
8807 | @noindent | |
8808 | The previous reduction demonstrates the @code{%printer} directive for | |
8809 | @code{<val>}: both the token @code{NUM} and the resulting non-terminal | |
8810 | @code{exp} have @samp{1} as value. | |
8811 | ||
8812 | @example | |
8813 | Reading a token: Next token is token '-' () | |
8814 | Shifting token '-' () | |
8815 | Entering state 17 | |
8816 | Reading a token: Next token is token NUM (1.000000) | |
8817 | Shifting token NUM (1.000000) | |
8818 | Entering state 4 | |
8819 | Reducing stack by rule 6 (line 44): | |
8820 | $1 = token NUM (1.000000) | |
8821 | -> $$ = nterm exp (1.000000) | |
8822 | Stack now 0 1 6 14 24 17 | |
8823 | Entering state 26 | |
8824 | Reading a token: Next token is token ')' () | |
8825 | Reducing stack by rule 11 (line 49): | |
8826 | $1 = nterm exp (1.000000) | |
8827 | $2 = token '-' () | |
8828 | $3 = nterm exp (1.000000) | |
8829 | -> $$ = nterm exp (0.000000) | |
8830 | Stack now 0 1 6 14 | |
8831 | Entering state 24 | |
8832 | @end example | |
8833 | ||
8834 | @noindent | |
8835 | The rule for the subtraction was just reduced. The parser is about to | |
8836 | discover the end of the call to @code{sin}. | |
8837 | ||
8838 | @example | |
8839 | Next token is token ')' () | |
8840 | Shifting token ')' () | |
8841 | Entering state 31 | |
8842 | Reducing stack by rule 9 (line 47): | |
8843 | $1 = token FNCT (sin()) | |
8844 | $2 = token '(' () | |
8845 | $3 = nterm exp (0.000000) | |
8846 | $4 = token ')' () | |
8847 | -> $$ = nterm exp (0.000000) | |
8848 | Stack now 0 1 | |
8849 | Entering state 11 | |
8850 | @end example | |
8851 | ||
8852 | @noindent | |
8853 | Finally, the end-of-line allow the parser to complete the computation, and | |
8854 | display its result. | |
8855 | ||
8856 | @example | |
8857 | Reading a token: Next token is token '\n' () | |
8858 | Shifting token '\n' () | |
8859 | Entering state 22 | |
8860 | Reducing stack by rule 4 (line 40): | |
8861 | $1 = nterm exp (0.000000) | |
8862 | $2 = token '\n' () | |
8863 | @result{} 0 | |
8864 | -> $$ = nterm line () | |
8865 | Stack now 0 1 | |
8866 | Entering state 10 | |
8867 | Reducing stack by rule 2 (line 35): | |
8868 | $1 = nterm input () | |
8869 | $2 = nterm line () | |
8870 | -> $$ = nterm input () | |
8871 | Stack now 0 | |
8872 | Entering state 1 | |
8873 | @end example | |
8874 | ||
8875 | The parser has returned into state 1, in which it is waiting for the next | |
8876 | expression to evaluate, or for the end-of-file token, which causes the | |
8877 | completion of the parsing. | |
8878 | ||
8879 | @example | |
8880 | Reading a token: Now at end of input. | |
8881 | Shifting token $end () | |
8882 | Entering state 2 | |
8883 | Stack now 0 1 2 | |
8884 | Cleanup: popping token $end () | |
8885 | Cleanup: popping nterm input () | |
8886 | @end example | |
8887 | ||
8888 | ||
8889 | @node The YYPRINT Macro | |
8890 | @subsection The @code{YYPRINT} Macro | |
8891 | ||
8892 | @findex YYPRINT | |
8893 | Before @code{%printer} support, semantic values could be displayed using the | |
8894 | @code{YYPRINT} macro, which works only for terminal symbols and only with | |
8895 | the @file{yacc.c} skeleton. | |
8896 | ||
8897 | @deffn {Macro} YYPRINT (@var{stream}, @var{token}, @var{value}); | |
bfa74976 | 8898 | @findex YYPRINT |
56d60c19 AD |
8899 | If you define @code{YYPRINT}, it should take three arguments. The parser |
8900 | will pass a standard I/O stream, the numeric code for the token type, and | |
8901 | the token value (from @code{yylval}). | |
8902 | ||
8903 | For @file{yacc.c} only. Obsoleted by @code{%printer}. | |
8904 | @end deffn | |
bfa74976 RS |
8905 | |
8906 | Here is an example of @code{YYPRINT} suitable for the multi-function | |
f56274a8 | 8907 | calculator (@pxref{Mfcalc Declarations, ,Declarations for @code{mfcalc}}): |
bfa74976 | 8908 | |
ea118b72 | 8909 | @example |
38a92d50 PE |
8910 | %@{ |
8911 | static void print_token_value (FILE *, int, YYSTYPE); | |
56d60c19 AD |
8912 | #define YYPRINT(File, Type, Value) \ |
8913 | print_token_value (File, Type, Value) | |
38a92d50 PE |
8914 | %@} |
8915 | ||
8916 | @dots{} %% @dots{} %% @dots{} | |
bfa74976 RS |
8917 | |
8918 | static void | |
831d3c99 | 8919 | print_token_value (FILE *file, int type, YYSTYPE value) |
bfa74976 RS |
8920 | @{ |
8921 | if (type == VAR) | |
d3c4e709 | 8922 | fprintf (file, "%s", value.tptr->name); |
bfa74976 | 8923 | else if (type == NUM) |
d3c4e709 | 8924 | fprintf (file, "%d", value.val); |
bfa74976 | 8925 | @} |
ea118b72 | 8926 | @end example |
bfa74976 | 8927 | |
ec3bc396 AD |
8928 | @c ================================================= Invoking Bison |
8929 | ||
342b8b6e | 8930 | @node Invocation |
bfa74976 RS |
8931 | @chapter Invoking Bison |
8932 | @cindex invoking Bison | |
8933 | @cindex Bison invocation | |
8934 | @cindex options for invoking Bison | |
8935 | ||
8936 | The usual way to invoke Bison is as follows: | |
8937 | ||
8938 | @example | |
8939 | bison @var{infile} | |
8940 | @end example | |
8941 | ||
8942 | Here @var{infile} is the grammar file name, which usually ends in | |
9913d6e4 JD |
8943 | @samp{.y}. The parser implementation file's name is made by replacing |
8944 | the @samp{.y} with @samp{.tab.c} and removing any leading directory. | |
8945 | Thus, the @samp{bison foo.y} file name yields @file{foo.tab.c}, and | |
8946 | the @samp{bison hack/foo.y} file name yields @file{foo.tab.c}. It's | |
8947 | also possible, in case you are writing C++ code instead of C in your | |
8948 | grammar file, to name it @file{foo.ypp} or @file{foo.y++}. Then, the | |
8949 | output files will take an extension like the given one as input | |
8950 | (respectively @file{foo.tab.cpp} and @file{foo.tab.c++}). This | |
8951 | feature takes effect with all options that manipulate file names like | |
234a3be3 AD |
8952 | @samp{-o} or @samp{-d}. |
8953 | ||
8954 | For example : | |
8955 | ||
8956 | @example | |
8957 | bison -d @var{infile.yxx} | |
8958 | @end example | |
84163231 | 8959 | @noindent |
72d2299c | 8960 | will produce @file{infile.tab.cxx} and @file{infile.tab.hxx}, and |
234a3be3 AD |
8961 | |
8962 | @example | |
b56471a6 | 8963 | bison -d -o @var{output.c++} @var{infile.y} |
234a3be3 | 8964 | @end example |
84163231 | 8965 | @noindent |
234a3be3 AD |
8966 | will produce @file{output.c++} and @file{outfile.h++}. |
8967 | ||
35430378 | 8968 | For compatibility with POSIX, the standard Bison |
397ec073 PE |
8969 | distribution also contains a shell script called @command{yacc} that |
8970 | invokes Bison with the @option{-y} option. | |
8971 | ||
bfa74976 | 8972 | @menu |
13863333 | 8973 | * Bison Options:: All the options described in detail, |
c827f760 | 8974 | in alphabetical order by short options. |
bfa74976 | 8975 | * Option Cross Key:: Alphabetical list of long options. |
93dd49ab | 8976 | * Yacc Library:: Yacc-compatible @code{yylex} and @code{main}. |
bfa74976 RS |
8977 | @end menu |
8978 | ||
342b8b6e | 8979 | @node Bison Options |
bfa74976 RS |
8980 | @section Bison Options |
8981 | ||
8982 | Bison supports both traditional single-letter options and mnemonic long | |
8983 | option names. Long option names are indicated with @samp{--} instead of | |
8984 | @samp{-}. Abbreviations for option names are allowed as long as they | |
8985 | are unique. When a long option takes an argument, like | |
8986 | @samp{--file-prefix}, connect the option name and the argument with | |
8987 | @samp{=}. | |
8988 | ||
8989 | Here is a list of options that can be used with Bison, alphabetized by | |
8990 | short option. It is followed by a cross key alphabetized by long | |
8991 | option. | |
8992 | ||
89cab50d AD |
8993 | @c Please, keep this ordered as in `bison --help'. |
8994 | @noindent | |
8995 | Operations modes: | |
8996 | @table @option | |
8997 | @item -h | |
8998 | @itemx --help | |
8999 | Print a summary of the command-line options to Bison and exit. | |
bfa74976 | 9000 | |
89cab50d AD |
9001 | @item -V |
9002 | @itemx --version | |
9003 | Print the version number of Bison and exit. | |
bfa74976 | 9004 | |
f7ab6a50 PE |
9005 | @item --print-localedir |
9006 | Print the name of the directory containing locale-dependent data. | |
9007 | ||
a0de5091 JD |
9008 | @item --print-datadir |
9009 | Print the name of the directory containing skeletons and XSLT. | |
9010 | ||
89cab50d AD |
9011 | @item -y |
9012 | @itemx --yacc | |
9913d6e4 JD |
9013 | Act more like the traditional Yacc command. This can cause different |
9014 | diagnostics to be generated, and may change behavior in other minor | |
9015 | ways. Most importantly, imitate Yacc's output file name conventions, | |
9016 | so that the parser implementation file is called @file{y.tab.c}, and | |
9017 | the other outputs are called @file{y.output} and @file{y.tab.h}. | |
9018 | Also, if generating a deterministic parser in C, generate | |
9019 | @code{#define} statements in addition to an @code{enum} to associate | |
9020 | token numbers with token names. Thus, the following shell script can | |
9021 | substitute for Yacc, and the Bison distribution contains such a script | |
9022 | for compatibility with POSIX: | |
bfa74976 | 9023 | |
89cab50d | 9024 | @example |
397ec073 | 9025 | #! /bin/sh |
26e06a21 | 9026 | bison -y "$@@" |
89cab50d | 9027 | @end example |
54662697 PE |
9028 | |
9029 | The @option{-y}/@option{--yacc} option is intended for use with | |
9030 | traditional Yacc grammars. If your grammar uses a Bison extension | |
9031 | like @samp{%glr-parser}, Bison might not be Yacc-compatible even if | |
9032 | this option is specified. | |
9033 | ||
ecd1b61c JD |
9034 | @item -W [@var{category}] |
9035 | @itemx --warnings[=@var{category}] | |
118d4978 AD |
9036 | Output warnings falling in @var{category}. @var{category} can be one |
9037 | of: | |
9038 | @table @code | |
9039 | @item midrule-values | |
8e55b3aa JD |
9040 | Warn about mid-rule values that are set but not used within any of the actions |
9041 | of the parent rule. | |
9042 | For example, warn about unused @code{$2} in: | |
118d4978 AD |
9043 | |
9044 | @example | |
9045 | exp: '1' @{ $$ = 1; @} '+' exp @{ $$ = $1 + $4; @}; | |
9046 | @end example | |
9047 | ||
8e55b3aa JD |
9048 | Also warn about mid-rule values that are used but not set. |
9049 | For example, warn about unset @code{$$} in the mid-rule action in: | |
118d4978 AD |
9050 | |
9051 | @example | |
de6be119 | 9052 | exp: '1' @{ $1 = 1; @} '+' exp @{ $$ = $2 + $4; @}; |
118d4978 AD |
9053 | @end example |
9054 | ||
9055 | These warnings are not enabled by default since they sometimes prove to | |
9056 | be false alarms in existing grammars employing the Yacc constructs | |
8e55b3aa | 9057 | @code{$0} or @code{$-@var{n}} (where @var{n} is some positive integer). |
118d4978 | 9058 | |
118d4978 | 9059 | @item yacc |
35430378 | 9060 | Incompatibilities with POSIX Yacc. |
118d4978 | 9061 | |
6f8bdce2 JD |
9062 | @item conflicts-sr |
9063 | @itemx conflicts-rr | |
9064 | S/R and R/R conflicts. These warnings are enabled by default. However, if | |
9065 | the @code{%expect} or @code{%expect-rr} directive is specified, an | |
9066 | unexpected number of conflicts is an error, and an expected number of | |
9067 | conflicts is not reported, so @option{-W} and @option{--warning} then have | |
9068 | no effect on the conflict report. | |
9069 | ||
8ffd7912 JD |
9070 | @item other |
9071 | All warnings not categorized above. These warnings are enabled by default. | |
9072 | ||
9073 | This category is provided merely for the sake of completeness. Future | |
9074 | releases of Bison may move warnings from this category to new, more specific | |
9075 | categories. | |
9076 | ||
118d4978 | 9077 | @item all |
8e55b3aa | 9078 | All the warnings. |
118d4978 | 9079 | @item none |
8e55b3aa | 9080 | Turn off all the warnings. |
118d4978 | 9081 | @item error |
8e55b3aa | 9082 | Treat warnings as errors. |
118d4978 AD |
9083 | @end table |
9084 | ||
9085 | A category can be turned off by prefixing its name with @samp{no-}. For | |
cf22447c | 9086 | instance, @option{-Wno-yacc} will hide the warnings about |
35430378 | 9087 | POSIX Yacc incompatibilities. |
89cab50d AD |
9088 | @end table |
9089 | ||
9090 | @noindent | |
9091 | Tuning the parser: | |
9092 | ||
9093 | @table @option | |
9094 | @item -t | |
9095 | @itemx --debug | |
9913d6e4 JD |
9096 | In the parser implementation file, define the macro @code{YYDEBUG} to |
9097 | 1 if it is not already defined, so that the debugging facilities are | |
9098 | compiled. @xref{Tracing, ,Tracing Your Parser}. | |
89cab50d | 9099 | |
e14c6831 AD |
9100 | @item -D @var{name}[=@var{value}] |
9101 | @itemx --define=@var{name}[=@var{value}] | |
c33bc800 | 9102 | @itemx -F @var{name}[=@var{value}] |
34d41938 JD |
9103 | @itemx --force-define=@var{name}[=@var{value}] |
9104 | Each of these is equivalent to @samp{%define @var{name} "@var{value}"} | |
2f4518a1 | 9105 | (@pxref{%define Summary}) except that Bison processes multiple |
34d41938 JD |
9106 | definitions for the same @var{name} as follows: |
9107 | ||
9108 | @itemize | |
9109 | @item | |
e3a33f7c JD |
9110 | Bison quietly ignores all command-line definitions for @var{name} except |
9111 | the last. | |
34d41938 | 9112 | @item |
e3a33f7c JD |
9113 | If that command-line definition is specified by a @code{-D} or |
9114 | @code{--define}, Bison reports an error for any @code{%define} | |
9115 | definition for @var{name}. | |
34d41938 | 9116 | @item |
e3a33f7c JD |
9117 | If that command-line definition is specified by a @code{-F} or |
9118 | @code{--force-define} instead, Bison quietly ignores all @code{%define} | |
9119 | definitions for @var{name}. | |
9120 | @item | |
9121 | Otherwise, Bison reports an error if there are multiple @code{%define} | |
9122 | definitions for @var{name}. | |
34d41938 JD |
9123 | @end itemize |
9124 | ||
9125 | You should avoid using @code{-F} and @code{--force-define} in your | |
9913d6e4 JD |
9126 | make files unless you are confident that it is safe to quietly ignore |
9127 | any conflicting @code{%define} that may be added to the grammar file. | |
e14c6831 | 9128 | |
0e021770 PE |
9129 | @item -L @var{language} |
9130 | @itemx --language=@var{language} | |
9131 | Specify the programming language for the generated parser, as if | |
9132 | @code{%language} was specified (@pxref{Decl Summary, , Bison Declaration | |
59da312b | 9133 | Summary}). Currently supported languages include C, C++, and Java. |
e6e704dc | 9134 | @var{language} is case-insensitive. |
0e021770 | 9135 | |
ed4d67dc JD |
9136 | This option is experimental and its effect may be modified in future |
9137 | releases. | |
9138 | ||
89cab50d | 9139 | @item --locations |
d8988b2f | 9140 | Pretend that @code{%locations} was specified. @xref{Decl Summary}. |
89cab50d AD |
9141 | |
9142 | @item -p @var{prefix} | |
9143 | @itemx --name-prefix=@var{prefix} | |
4b3847c3 AD |
9144 | Pretend that @code{%name-prefix "@var{prefix}"} was specified (@pxref{Decl |
9145 | Summary}). Obsoleted by @code{-Dapi.prefix=@var{prefix}}. @xref{Multiple | |
9146 | Parsers, ,Multiple Parsers in the Same Program}. | |
bfa74976 RS |
9147 | |
9148 | @item -l | |
9149 | @itemx --no-lines | |
9913d6e4 JD |
9150 | Don't put any @code{#line} preprocessor commands in the parser |
9151 | implementation file. Ordinarily Bison puts them in the parser | |
9152 | implementation file so that the C compiler and debuggers will | |
9153 | associate errors with your source file, the grammar file. This option | |
9154 | causes them to associate errors with the parser implementation file, | |
9155 | treating it as an independent source file in its own right. | |
bfa74976 | 9156 | |
e6e704dc JD |
9157 | @item -S @var{file} |
9158 | @itemx --skeleton=@var{file} | |
a7867f53 | 9159 | Specify the skeleton to use, similar to @code{%skeleton} |
e6e704dc JD |
9160 | (@pxref{Decl Summary, , Bison Declaration Summary}). |
9161 | ||
ed4d67dc JD |
9162 | @c You probably don't need this option unless you are developing Bison. |
9163 | @c You should use @option{--language} if you want to specify the skeleton for a | |
9164 | @c different language, because it is clearer and because it will always | |
9165 | @c choose the correct skeleton for non-deterministic or push parsers. | |
e6e704dc | 9166 | |
a7867f53 JD |
9167 | If @var{file} does not contain a @code{/}, @var{file} is the name of a skeleton |
9168 | file in the Bison installation directory. | |
9169 | If it does, @var{file} is an absolute file name or a file name relative to the | |
9170 | current working directory. | |
9171 | This is similar to how most shells resolve commands. | |
9172 | ||
89cab50d AD |
9173 | @item -k |
9174 | @itemx --token-table | |
d8988b2f | 9175 | Pretend that @code{%token-table} was specified. @xref{Decl Summary}. |
89cab50d | 9176 | @end table |
bfa74976 | 9177 | |
89cab50d AD |
9178 | @noindent |
9179 | Adjust the output: | |
bfa74976 | 9180 | |
89cab50d | 9181 | @table @option |
8e55b3aa | 9182 | @item --defines[=@var{file}] |
d8988b2f | 9183 | Pretend that @code{%defines} was specified, i.e., write an extra output |
6deb4447 | 9184 | file containing macro definitions for the token type names defined in |
4bfd5e4e | 9185 | the grammar, as well as a few other declarations. @xref{Decl Summary}. |
931c7513 | 9186 | |
8e55b3aa JD |
9187 | @item -d |
9188 | This is the same as @code{--defines} except @code{-d} does not accept a | |
9189 | @var{file} argument since POSIX Yacc requires that @code{-d} can be bundled | |
9190 | with other short options. | |
342b8b6e | 9191 | |
89cab50d AD |
9192 | @item -b @var{file-prefix} |
9193 | @itemx --file-prefix=@var{prefix} | |
9c437126 | 9194 | Pretend that @code{%file-prefix} was specified, i.e., specify prefix to use |
72d2299c | 9195 | for all Bison output file names. @xref{Decl Summary}. |
bfa74976 | 9196 | |
ec3bc396 AD |
9197 | @item -r @var{things} |
9198 | @itemx --report=@var{things} | |
9199 | Write an extra output file containing verbose description of the comma | |
9200 | separated list of @var{things} among: | |
9201 | ||
9202 | @table @code | |
9203 | @item state | |
9204 | Description of the grammar, conflicts (resolved and unresolved), and | |
34a6c2d1 | 9205 | parser's automaton. |
ec3bc396 | 9206 | |
57f8bd8d AD |
9207 | @item itemset |
9208 | Implies @code{state} and augments the description of the automaton with | |
9209 | the full set of items for each state, instead of its core only. | |
9210 | ||
742e4900 | 9211 | @item lookahead |
ec3bc396 | 9212 | Implies @code{state} and augments the description of the automaton with |
742e4900 | 9213 | each rule's lookahead set. |
ec3bc396 | 9214 | |
57f8bd8d AD |
9215 | @item solved |
9216 | Implies @code{state}. Explain how conflicts were solved thanks to | |
9217 | precedence and associativity directives. | |
9218 | ||
9219 | @item all | |
9220 | Enable all the items. | |
9221 | ||
9222 | @item none | |
9223 | Do not generate the report. | |
ec3bc396 AD |
9224 | @end table |
9225 | ||
1bb2bd75 JD |
9226 | @item --report-file=@var{file} |
9227 | Specify the @var{file} for the verbose description. | |
9228 | ||
bfa74976 RS |
9229 | @item -v |
9230 | @itemx --verbose | |
9c437126 | 9231 | Pretend that @code{%verbose} was specified, i.e., write an extra output |
6deb4447 | 9232 | file containing verbose descriptions of the grammar and |
72d2299c | 9233 | parser. @xref{Decl Summary}. |
bfa74976 | 9234 | |
fa4d969f PE |
9235 | @item -o @var{file} |
9236 | @itemx --output=@var{file} | |
9913d6e4 | 9237 | Specify the @var{file} for the parser implementation file. |
bfa74976 | 9238 | |
fa4d969f | 9239 | The other output files' names are constructed from @var{file} as |
d8988b2f | 9240 | described under the @samp{-v} and @samp{-d} options. |
342b8b6e | 9241 | |
72183df4 | 9242 | @item -g [@var{file}] |
8e55b3aa | 9243 | @itemx --graph[=@var{file}] |
34a6c2d1 | 9244 | Output a graphical representation of the parser's |
35fe0834 | 9245 | automaton computed by Bison, in @uref{http://www.graphviz.org/, Graphviz} |
35430378 | 9246 | @uref{http://www.graphviz.org/doc/info/lang.html, DOT} format. |
8e55b3aa JD |
9247 | @code{@var{file}} is optional. |
9248 | If omitted and the grammar file is @file{foo.y}, the output file will be | |
9249 | @file{foo.dot}. | |
59da312b | 9250 | |
72183df4 | 9251 | @item -x [@var{file}] |
8e55b3aa | 9252 | @itemx --xml[=@var{file}] |
34a6c2d1 | 9253 | Output an XML report of the parser's automaton computed by Bison. |
8e55b3aa | 9254 | @code{@var{file}} is optional. |
59da312b JD |
9255 | If omitted and the grammar file is @file{foo.y}, the output file will be |
9256 | @file{foo.xml}. | |
9257 | (The current XML schema is experimental and may evolve. | |
9258 | More user feedback will help to stabilize it.) | |
bfa74976 RS |
9259 | @end table |
9260 | ||
342b8b6e | 9261 | @node Option Cross Key |
bfa74976 RS |
9262 | @section Option Cross Key |
9263 | ||
9264 | Here is a list of options, alphabetized by long option, to help you find | |
34d41938 | 9265 | the corresponding short option and directive. |
bfa74976 | 9266 | |
34d41938 | 9267 | @multitable {@option{--force-define=@var{name}[=@var{value}]}} {@option{-F @var{name}[=@var{value}]}} {@code{%nondeterministic-parser}} |
72183df4 | 9268 | @headitem Long Option @tab Short Option @tab Bison Directive |
f4101aa6 | 9269 | @include cross-options.texi |
aa08666d | 9270 | @end multitable |
bfa74976 | 9271 | |
93dd49ab PE |
9272 | @node Yacc Library |
9273 | @section Yacc Library | |
9274 | ||
9275 | The Yacc library contains default implementations of the | |
9276 | @code{yyerror} and @code{main} functions. These default | |
35430378 | 9277 | implementations are normally not useful, but POSIX requires |
93dd49ab PE |
9278 | them. To use the Yacc library, link your program with the |
9279 | @option{-ly} option. Note that Bison's implementation of the Yacc | |
35430378 | 9280 | library is distributed under the terms of the GNU General |
93dd49ab PE |
9281 | Public License (@pxref{Copying}). |
9282 | ||
9283 | If you use the Yacc library's @code{yyerror} function, you should | |
9284 | declare @code{yyerror} as follows: | |
9285 | ||
9286 | @example | |
9287 | int yyerror (char const *); | |
9288 | @end example | |
9289 | ||
9290 | Bison ignores the @code{int} value returned by this @code{yyerror}. | |
9291 | If you use the Yacc library's @code{main} function, your | |
9292 | @code{yyparse} function should have the following type signature: | |
9293 | ||
9294 | @example | |
9295 | int yyparse (void); | |
9296 | @end example | |
9297 | ||
12545799 AD |
9298 | @c ================================================= C++ Bison |
9299 | ||
8405b70c PB |
9300 | @node Other Languages |
9301 | @chapter Parsers Written In Other Languages | |
12545799 AD |
9302 | |
9303 | @menu | |
9304 | * C++ Parsers:: The interface to generate C++ parser classes | |
8405b70c | 9305 | * Java Parsers:: The interface to generate Java parser classes |
12545799 AD |
9306 | @end menu |
9307 | ||
9308 | @node C++ Parsers | |
9309 | @section C++ Parsers | |
9310 | ||
9311 | @menu | |
9312 | * C++ Bison Interface:: Asking for C++ parser generation | |
9313 | * C++ Semantic Values:: %union vs. C++ | |
9314 | * C++ Location Values:: The position and location classes | |
9315 | * C++ Parser Interface:: Instantiating and running the parser | |
9316 | * C++ Scanner Interface:: Exchanges between yylex and parse | |
8405b70c | 9317 | * A Complete C++ Example:: Demonstrating their use |
12545799 AD |
9318 | @end menu |
9319 | ||
9320 | @node C++ Bison Interface | |
9321 | @subsection C++ Bison Interface | |
ed4d67dc | 9322 | @c - %skeleton "lalr1.cc" |
12545799 AD |
9323 | @c - Always pure |
9324 | @c - initial action | |
9325 | ||
34a6c2d1 | 9326 | The C++ deterministic parser is selected using the skeleton directive, |
baacae49 AD |
9327 | @samp{%skeleton "lalr1.cc"}, or the synonymous command-line option |
9328 | @option{--skeleton=lalr1.cc}. | |
e6e704dc | 9329 | @xref{Decl Summary}. |
0e021770 | 9330 | |
793fbca5 JD |
9331 | When run, @command{bison} will create several entities in the @samp{yy} |
9332 | namespace. | |
9333 | @findex %define namespace | |
2f4518a1 JD |
9334 | Use the @samp{%define namespace} directive to change the namespace |
9335 | name, see @ref{%define Summary,,namespace}. The various classes are | |
9336 | generated in the following files: | |
aa08666d | 9337 | |
12545799 AD |
9338 | @table @file |
9339 | @item position.hh | |
9340 | @itemx location.hh | |
db8ab2be AD |
9341 | The definition of the classes @code{position} and @code{location}, used for |
9342 | location tracking. These files are not generated if the @code{%define} | |
9343 | variable @code{api.location.type} is defined. @xref{C++ Location Values}. | |
12545799 AD |
9344 | |
9345 | @item stack.hh | |
9346 | An auxiliary class @code{stack} used by the parser. | |
9347 | ||
fa4d969f PE |
9348 | @item @var{file}.hh |
9349 | @itemx @var{file}.cc | |
9913d6e4 | 9350 | (Assuming the extension of the grammar file was @samp{.yy}.) The |
cd8b5791 AD |
9351 | declaration and implementation of the C++ parser class. The basename |
9352 | and extension of these two files follow the same rules as with regular C | |
9353 | parsers (@pxref{Invocation}). | |
12545799 | 9354 | |
cd8b5791 AD |
9355 | The header is @emph{mandatory}; you must either pass |
9356 | @option{-d}/@option{--defines} to @command{bison}, or use the | |
12545799 AD |
9357 | @samp{%defines} directive. |
9358 | @end table | |
9359 | ||
9360 | All these files are documented using Doxygen; run @command{doxygen} | |
9361 | for a complete and accurate documentation. | |
9362 | ||
9363 | @node C++ Semantic Values | |
9364 | @subsection C++ Semantic Values | |
9365 | @c - No objects in unions | |
178e123e | 9366 | @c - YYSTYPE |
12545799 AD |
9367 | @c - Printer and destructor |
9368 | ||
9369 | The @code{%union} directive works as for C, see @ref{Union Decl, ,The | |
9370 | Collection of Value Types}. In particular it produces a genuine | |
9371 | @code{union}@footnote{In the future techniques to allow complex types | |
fb9712a9 AD |
9372 | within pseudo-unions (similar to Boost variants) might be implemented to |
9373 | alleviate these issues.}, which have a few specific features in C++. | |
12545799 AD |
9374 | @itemize @minus |
9375 | @item | |
fb9712a9 AD |
9376 | The type @code{YYSTYPE} is defined but its use is discouraged: rather |
9377 | you should refer to the parser's encapsulated type | |
9378 | @code{yy::parser::semantic_type}. | |
12545799 AD |
9379 | @item |
9380 | Non POD (Plain Old Data) types cannot be used. C++ forbids any | |
9381 | instance of classes with constructors in unions: only @emph{pointers} | |
9382 | to such objects are allowed. | |
9383 | @end itemize | |
9384 | ||
9385 | Because objects have to be stored via pointers, memory is not | |
9386 | reclaimed automatically: using the @code{%destructor} directive is the | |
9387 | only means to avoid leaks. @xref{Destructor Decl, , Freeing Discarded | |
9388 | Symbols}. | |
9389 | ||
9390 | ||
9391 | @node C++ Location Values | |
9392 | @subsection C++ Location Values | |
9393 | @c - %locations | |
9394 | @c - class Position | |
9395 | @c - class Location | |
16dc6a9e | 9396 | @c - %define filename_type "const symbol::Symbol" |
12545799 AD |
9397 | |
9398 | When the directive @code{%locations} is used, the C++ parser supports | |
db8ab2be AD |
9399 | location tracking, see @ref{Tracking Locations}. |
9400 | ||
9401 | By default, two auxiliary classes define a @code{position}, a single point | |
9402 | in a file, and a @code{location}, a range composed of a pair of | |
9403 | @code{position}s (possibly spanning several files). But if the | |
9404 | @code{%define} variable @code{api.location.type} is defined, then these | |
9405 | classes will not be generated, and the user defined type will be used. | |
12545799 | 9406 | |
936c88d1 AD |
9407 | @tindex uint |
9408 | In this section @code{uint} is an abbreviation for @code{unsigned int}: in | |
9409 | genuine code only the latter is used. | |
9410 | ||
9411 | @menu | |
db8ab2be AD |
9412 | * C++ position:: One point in the source file |
9413 | * C++ location:: Two points in the source file | |
9414 | * User Defined Location Type:: Required interface for locations | |
936c88d1 AD |
9415 | @end menu |
9416 | ||
9417 | @node C++ position | |
9418 | @subsubsection C++ @code{position} | |
9419 | ||
9420 | @deftypeop {Constructor} {position} {} position (std::string* @var{file} = 0, uint @var{line} = 1, uint @var{col} = 1) | |
9421 | Create a @code{position} denoting a given point. Note that @code{file} is | |
9422 | not reclaimed when the @code{position} is destroyed: memory managed must be | |
9423 | handled elsewhere. | |
9424 | @end deftypeop | |
9425 | ||
9426 | @deftypemethod {position} {void} initialize (std::string* @var{file} = 0, uint @var{line} = 1, uint @var{col} = 1) | |
9427 | Reset the position to the given values. | |
9428 | @end deftypemethod | |
9429 | ||
9430 | @deftypeivar {position} {std::string*} file | |
12545799 AD |
9431 | The name of the file. It will always be handled as a pointer, the |
9432 | parser will never duplicate nor deallocate it. As an experimental | |
9433 | feature you may change it to @samp{@var{type}*} using @samp{%define | |
16dc6a9e | 9434 | filename_type "@var{type}"}. |
936c88d1 | 9435 | @end deftypeivar |
12545799 | 9436 | |
936c88d1 | 9437 | @deftypeivar {position} {uint} line |
12545799 | 9438 | The line, starting at 1. |
936c88d1 | 9439 | @end deftypeivar |
12545799 | 9440 | |
936c88d1 | 9441 | @deftypemethod {position} {uint} lines (int @var{height} = 1) |
12545799 AD |
9442 | Advance by @var{height} lines, resetting the column number. |
9443 | @end deftypemethod | |
9444 | ||
936c88d1 AD |
9445 | @deftypeivar {position} {uint} column |
9446 | The column, starting at 1. | |
9447 | @end deftypeivar | |
12545799 | 9448 | |
936c88d1 | 9449 | @deftypemethod {position} {uint} columns (int @var{width} = 1) |
12545799 AD |
9450 | Advance by @var{width} columns, without changing the line number. |
9451 | @end deftypemethod | |
9452 | ||
936c88d1 AD |
9453 | @deftypemethod {position} {position&} operator+= (int @var{width}) |
9454 | @deftypemethodx {position} {position} operator+ (int @var{width}) | |
9455 | @deftypemethodx {position} {position&} operator-= (int @var{width}) | |
9456 | @deftypemethodx {position} {position} operator- (int @var{width}) | |
12545799 AD |
9457 | Various forms of syntactic sugar for @code{columns}. |
9458 | @end deftypemethod | |
9459 | ||
936c88d1 AD |
9460 | @deftypemethod {position} {bool} operator== (const position& @var{that}) |
9461 | @deftypemethodx {position} {bool} operator!= (const position& @var{that}) | |
9462 | Whether @code{*this} and @code{that} denote equal/different positions. | |
9463 | @end deftypemethod | |
9464 | ||
9465 | @deftypefun {std::ostream&} operator<< (std::ostream& @var{o}, const position& @var{p}) | |
12545799 | 9466 | Report @var{p} on @var{o} like this: |
fa4d969f PE |
9467 | @samp{@var{file}:@var{line}.@var{column}}, or |
9468 | @samp{@var{line}.@var{column}} if @var{file} is null. | |
936c88d1 AD |
9469 | @end deftypefun |
9470 | ||
9471 | @node C++ location | |
9472 | @subsubsection C++ @code{location} | |
9473 | ||
9474 | @deftypeop {Constructor} {location} {} location (const position& @var{begin}, const position& @var{end}) | |
9475 | Create a @code{Location} from the endpoints of the range. | |
9476 | @end deftypeop | |
9477 | ||
9478 | @deftypeop {Constructor} {location} {} location (const position& @var{pos} = position()) | |
9479 | @deftypeopx {Constructor} {location} {} location (std::string* @var{file}, uint @var{line}, uint @var{col}) | |
9480 | Create a @code{Location} denoting an empty range located at a given point. | |
9481 | @end deftypeop | |
9482 | ||
9483 | @deftypemethod {location} {void} initialize (std::string* @var{file} = 0, uint @var{line} = 1, uint @var{col} = 1) | |
9484 | Reset the location to an empty range at the given values. | |
12545799 AD |
9485 | @end deftypemethod |
9486 | ||
936c88d1 AD |
9487 | @deftypeivar {location} {position} begin |
9488 | @deftypeivarx {location} {position} end | |
12545799 | 9489 | The first, inclusive, position of the range, and the first beyond. |
936c88d1 | 9490 | @end deftypeivar |
12545799 | 9491 | |
936c88d1 AD |
9492 | @deftypemethod {location} {uint} columns (int @var{width} = 1) |
9493 | @deftypemethodx {location} {uint} lines (int @var{height} = 1) | |
12545799 AD |
9494 | Advance the @code{end} position. |
9495 | @end deftypemethod | |
9496 | ||
936c88d1 AD |
9497 | @deftypemethod {location} {location} operator+ (const location& @var{end}) |
9498 | @deftypemethodx {location} {location} operator+ (int @var{width}) | |
9499 | @deftypemethodx {location} {location} operator+= (int @var{width}) | |
12545799 AD |
9500 | Various forms of syntactic sugar. |
9501 | @end deftypemethod | |
9502 | ||
9503 | @deftypemethod {location} {void} step () | |
9504 | Move @code{begin} onto @code{end}. | |
9505 | @end deftypemethod | |
9506 | ||
936c88d1 AD |
9507 | @deftypemethod {location} {bool} operator== (const location& @var{that}) |
9508 | @deftypemethodx {location} {bool} operator!= (const location& @var{that}) | |
9509 | Whether @code{*this} and @code{that} denote equal/different ranges of | |
9510 | positions. | |
9511 | @end deftypemethod | |
9512 | ||
9513 | @deftypefun {std::ostream&} operator<< (std::ostream& @var{o}, const location& @var{p}) | |
9514 | Report @var{p} on @var{o}, taking care of special cases such as: no | |
9515 | @code{filename} defined, or equal filename/line or column. | |
9516 | @end deftypefun | |
12545799 | 9517 | |
db8ab2be AD |
9518 | @node User Defined Location Type |
9519 | @subsubsection User Defined Location Type | |
9520 | @findex %define api.location.type | |
9521 | ||
9522 | Instead of using the built-in types you may use the @code{%define} variable | |
9523 | @code{api.location.type} to specify your own type: | |
9524 | ||
9525 | @example | |
9526 | %define api.location.type @var{LocationType} | |
9527 | @end example | |
9528 | ||
9529 | The requirements over your @var{LocationType} are: | |
9530 | @itemize | |
9531 | @item | |
9532 | it must be copyable; | |
9533 | ||
9534 | @item | |
9535 | in order to compute the (default) value of @code{@@$} in a reduction, the | |
9536 | parser basically runs | |
9537 | @example | |
9538 | @@$.begin = @@$1.begin; | |
9539 | @@$.end = @@$@var{N}.end; // The location of last right-hand side symbol. | |
9540 | @end example | |
9541 | @noindent | |
9542 | so there must be copyable @code{begin} and @code{end} members; | |
9543 | ||
9544 | @item | |
9545 | alternatively you may redefine the computation of the default location, in | |
9546 | which case these members are not required (@pxref{Location Default Action}); | |
9547 | ||
9548 | @item | |
9549 | if traces are enabled, then there must exist an @samp{std::ostream& | |
9550 | operator<< (std::ostream& o, const @var{LocationType}& s)} function. | |
9551 | @end itemize | |
9552 | ||
9553 | @sp 1 | |
9554 | ||
9555 | In programs with several C++ parsers, you may also use the @code{%define} | |
9556 | variable @code{api.location.type} to share a common set of built-in | |
9557 | definitions for @code{position} and @code{location}. For instance, one | |
9558 | parser @file{master/parser.yy} might use: | |
9559 | ||
9560 | @example | |
9561 | %defines | |
9562 | %locations | |
9563 | %define namespace "master::" | |
9564 | @end example | |
9565 | ||
9566 | @noindent | |
9567 | to generate the @file{master/position.hh} and @file{master/location.hh} | |
9568 | files, reused by other parsers as follows: | |
9569 | ||
9570 | @example | |
7287be84 | 9571 | %define api.location.type "master::location" |
db8ab2be AD |
9572 | %code requires @{ #include <master/location.hh> @} |
9573 | @end example | |
9574 | ||
12545799 AD |
9575 | @node C++ Parser Interface |
9576 | @subsection C++ Parser Interface | |
9577 | @c - define parser_class_name | |
9578 | @c - Ctor | |
9579 | @c - parse, error, set_debug_level, debug_level, set_debug_stream, | |
9580 | @c debug_stream. | |
9581 | @c - Reporting errors | |
9582 | ||
9583 | The output files @file{@var{output}.hh} and @file{@var{output}.cc} | |
9584 | declare and define the parser class in the namespace @code{yy}. The | |
9585 | class name defaults to @code{parser}, but may be changed using | |
16dc6a9e | 9586 | @samp{%define parser_class_name "@var{name}"}. The interface of |
9d9b8b70 | 9587 | this class is detailed below. It can be extended using the |
12545799 AD |
9588 | @code{%parse-param} feature: its semantics is slightly changed since |
9589 | it describes an additional member of the parser class, and an | |
9590 | additional argument for its constructor. | |
9591 | ||
baacae49 AD |
9592 | @defcv {Type} {parser} {semantic_type} |
9593 | @defcvx {Type} {parser} {location_type} | |
12545799 | 9594 | The types for semantics value and locations. |
8a0adb01 | 9595 | @end defcv |
12545799 | 9596 | |
baacae49 | 9597 | @defcv {Type} {parser} {token} |
2c0f9706 AD |
9598 | A structure that contains (only) the @code{yytokentype} enumeration, which |
9599 | defines the tokens. To refer to the token @code{FOO}, | |
9600 | use @code{yy::parser::token::FOO}. The scanner can use | |
baacae49 AD |
9601 | @samp{typedef yy::parser::token token;} to ``import'' the token enumeration |
9602 | (@pxref{Calc++ Scanner}). | |
9603 | @end defcv | |
9604 | ||
12545799 AD |
9605 | @deftypemethod {parser} {} parser (@var{type1} @var{arg1}, ...) |
9606 | Build a new parser object. There are no arguments by default, unless | |
9607 | @samp{%parse-param @{@var{type1} @var{arg1}@}} was used. | |
9608 | @end deftypemethod | |
9609 | ||
9610 | @deftypemethod {parser} {int} parse () | |
9611 | Run the syntactic analysis, and return 0 on success, 1 otherwise. | |
d3e4409a AD |
9612 | |
9613 | @cindex exceptions | |
9614 | The whole function is wrapped in a @code{try}/@code{catch} block, so that | |
9615 | when an exception is thrown, the @code{%destructor}s are called to release | |
9616 | the lookahead symbol, and the symbols pushed on the stack. | |
12545799 AD |
9617 | @end deftypemethod |
9618 | ||
9619 | @deftypemethod {parser} {std::ostream&} debug_stream () | |
9620 | @deftypemethodx {parser} {void} set_debug_stream (std::ostream& @var{o}) | |
9621 | Get or set the stream used for tracing the parsing. It defaults to | |
9622 | @code{std::cerr}. | |
9623 | @end deftypemethod | |
9624 | ||
9625 | @deftypemethod {parser} {debug_level_type} debug_level () | |
9626 | @deftypemethodx {parser} {void} set_debug_level (debug_level @var{l}) | |
9627 | Get or set the tracing level. Currently its value is either 0, no trace, | |
9d9b8b70 | 9628 | or nonzero, full tracing. |
12545799 AD |
9629 | @end deftypemethod |
9630 | ||
9631 | @deftypemethod {parser} {void} error (const location_type& @var{l}, const std::string& @var{m}) | |
9632 | The definition for this member function must be supplied by the user: | |
9633 | the parser uses it to report a parser error occurring at @var{l}, | |
9634 | described by @var{m}. | |
9635 | @end deftypemethod | |
9636 | ||
9637 | ||
9638 | @node C++ Scanner Interface | |
9639 | @subsection C++ Scanner Interface | |
9640 | @c - prefix for yylex. | |
9641 | @c - Pure interface to yylex | |
9642 | @c - %lex-param | |
9643 | ||
9644 | The parser invokes the scanner by calling @code{yylex}. Contrary to C | |
9645 | parsers, C++ parsers are always pure: there is no point in using the | |
d9df47b6 | 9646 | @code{%define api.pure} directive. Therefore the interface is as follows. |
12545799 | 9647 | |
baacae49 | 9648 | @deftypemethod {parser} {int} yylex (semantic_type* @var{yylval}, location_type* @var{yylloc}, @var{type1} @var{arg1}, ...) |
12545799 AD |
9649 | Return the next token. Its type is the return value, its semantic |
9650 | value and location being @var{yylval} and @var{yylloc}. Invocations of | |
9651 | @samp{%lex-param @{@var{type1} @var{arg1}@}} yield additional arguments. | |
9652 | @end deftypemethod | |
9653 | ||
9654 | ||
9655 | @node A Complete C++ Example | |
8405b70c | 9656 | @subsection A Complete C++ Example |
12545799 AD |
9657 | |
9658 | This section demonstrates the use of a C++ parser with a simple but | |
9659 | complete example. This example should be available on your system, | |
9660 | ready to compile, in the directory @dfn{../bison/examples/calc++}. It | |
9661 | focuses on the use of Bison, therefore the design of the various C++ | |
9662 | classes is very naive: no accessors, no encapsulation of members etc. | |
9663 | We will use a Lex scanner, and more precisely, a Flex scanner, to | |
9664 | demonstrate the various interaction. A hand written scanner is | |
9665 | actually easier to interface with. | |
9666 | ||
9667 | @menu | |
9668 | * Calc++ --- C++ Calculator:: The specifications | |
9669 | * Calc++ Parsing Driver:: An active parsing context | |
9670 | * Calc++ Parser:: A parser class | |
9671 | * Calc++ Scanner:: A pure C++ Flex scanner | |
9672 | * Calc++ Top Level:: Conducting the band | |
9673 | @end menu | |
9674 | ||
9675 | @node Calc++ --- C++ Calculator | |
8405b70c | 9676 | @subsubsection Calc++ --- C++ Calculator |
12545799 AD |
9677 | |
9678 | Of course the grammar is dedicated to arithmetics, a single | |
9d9b8b70 | 9679 | expression, possibly preceded by variable assignments. An |
12545799 AD |
9680 | environment containing possibly predefined variables such as |
9681 | @code{one} and @code{two}, is exchanged with the parser. An example | |
9682 | of valid input follows. | |
9683 | ||
9684 | @example | |
9685 | three := 3 | |
9686 | seven := one + two * three | |
9687 | seven * seven | |
9688 | @end example | |
9689 | ||
9690 | @node Calc++ Parsing Driver | |
8405b70c | 9691 | @subsubsection Calc++ Parsing Driver |
12545799 AD |
9692 | @c - An env |
9693 | @c - A place to store error messages | |
9694 | @c - A place for the result | |
9695 | ||
9696 | To support a pure interface with the parser (and the scanner) the | |
9697 | technique of the ``parsing context'' is convenient: a structure | |
9698 | containing all the data to exchange. Since, in addition to simply | |
9699 | launch the parsing, there are several auxiliary tasks to execute (open | |
9700 | the file for parsing, instantiate the parser etc.), we recommend | |
9701 | transforming the simple parsing context structure into a fully blown | |
9702 | @dfn{parsing driver} class. | |
9703 | ||
9704 | The declaration of this driver class, @file{calc++-driver.hh}, is as | |
9705 | follows. The first part includes the CPP guard and imports the | |
fb9712a9 AD |
9706 | required standard library components, and the declaration of the parser |
9707 | class. | |
12545799 | 9708 | |
1c59e0a1 | 9709 | @comment file: calc++-driver.hh |
12545799 AD |
9710 | @example |
9711 | #ifndef CALCXX_DRIVER_HH | |
9712 | # define CALCXX_DRIVER_HH | |
9713 | # include <string> | |
9714 | # include <map> | |
fb9712a9 | 9715 | # include "calc++-parser.hh" |
12545799 AD |
9716 | @end example |
9717 | ||
12545799 AD |
9718 | |
9719 | @noindent | |
9720 | Then comes the declaration of the scanning function. Flex expects | |
9721 | the signature of @code{yylex} to be defined in the macro | |
9722 | @code{YY_DECL}, and the C++ parser expects it to be declared. We can | |
9723 | factor both as follows. | |
1c59e0a1 AD |
9724 | |
9725 | @comment file: calc++-driver.hh | |
12545799 | 9726 | @example |
3dc5e96b PE |
9727 | // Tell Flex the lexer's prototype ... |
9728 | # define YY_DECL \ | |
c095d689 AD |
9729 | yy::calcxx_parser::token_type \ |
9730 | yylex (yy::calcxx_parser::semantic_type* yylval, \ | |
9731 | yy::calcxx_parser::location_type* yylloc, \ | |
9732 | calcxx_driver& driver) | |
12545799 AD |
9733 | // ... and declare it for the parser's sake. |
9734 | YY_DECL; | |
9735 | @end example | |
9736 | ||
9737 | @noindent | |
9738 | The @code{calcxx_driver} class is then declared with its most obvious | |
9739 | members. | |
9740 | ||
1c59e0a1 | 9741 | @comment file: calc++-driver.hh |
12545799 AD |
9742 | @example |
9743 | // Conducting the whole scanning and parsing of Calc++. | |
9744 | class calcxx_driver | |
9745 | @{ | |
9746 | public: | |
9747 | calcxx_driver (); | |
9748 | virtual ~calcxx_driver (); | |
9749 | ||
9750 | std::map<std::string, int> variables; | |
9751 | ||
9752 | int result; | |
9753 | @end example | |
9754 | ||
9755 | @noindent | |
9756 | To encapsulate the coordination with the Flex scanner, it is useful to | |
9757 | have two members function to open and close the scanning phase. | |
12545799 | 9758 | |
1c59e0a1 | 9759 | @comment file: calc++-driver.hh |
12545799 AD |
9760 | @example |
9761 | // Handling the scanner. | |
9762 | void scan_begin (); | |
9763 | void scan_end (); | |
9764 | bool trace_scanning; | |
9765 | @end example | |
9766 | ||
9767 | @noindent | |
9768 | Similarly for the parser itself. | |
9769 | ||
1c59e0a1 | 9770 | @comment file: calc++-driver.hh |
12545799 | 9771 | @example |
bb32f4f2 AD |
9772 | // Run the parser. Return 0 on success. |
9773 | int parse (const std::string& f); | |
12545799 AD |
9774 | std::string file; |
9775 | bool trace_parsing; | |
9776 | @end example | |
9777 | ||
9778 | @noindent | |
9779 | To demonstrate pure handling of parse errors, instead of simply | |
9780 | dumping them on the standard error output, we will pass them to the | |
9781 | compiler driver using the following two member functions. Finally, we | |
9782 | close the class declaration and CPP guard. | |
9783 | ||
1c59e0a1 | 9784 | @comment file: calc++-driver.hh |
12545799 AD |
9785 | @example |
9786 | // Error handling. | |
9787 | void error (const yy::location& l, const std::string& m); | |
9788 | void error (const std::string& m); | |
9789 | @}; | |
9790 | #endif // ! CALCXX_DRIVER_HH | |
9791 | @end example | |
9792 | ||
9793 | The implementation of the driver is straightforward. The @code{parse} | |
9794 | member function deserves some attention. The @code{error} functions | |
9795 | are simple stubs, they should actually register the located error | |
9796 | messages and set error state. | |
9797 | ||
1c59e0a1 | 9798 | @comment file: calc++-driver.cc |
12545799 AD |
9799 | @example |
9800 | #include "calc++-driver.hh" | |
9801 | #include "calc++-parser.hh" | |
9802 | ||
9803 | calcxx_driver::calcxx_driver () | |
9804 | : trace_scanning (false), trace_parsing (false) | |
9805 | @{ | |
9806 | variables["one"] = 1; | |
9807 | variables["two"] = 2; | |
9808 | @} | |
9809 | ||
9810 | calcxx_driver::~calcxx_driver () | |
9811 | @{ | |
9812 | @} | |
9813 | ||
bb32f4f2 | 9814 | int |
12545799 AD |
9815 | calcxx_driver::parse (const std::string &f) |
9816 | @{ | |
9817 | file = f; | |
9818 | scan_begin (); | |
9819 | yy::calcxx_parser parser (*this); | |
9820 | parser.set_debug_level (trace_parsing); | |
bb32f4f2 | 9821 | int res = parser.parse (); |
12545799 | 9822 | scan_end (); |
bb32f4f2 | 9823 | return res; |
12545799 AD |
9824 | @} |
9825 | ||
9826 | void | |
9827 | calcxx_driver::error (const yy::location& l, const std::string& m) | |
9828 | @{ | |
9829 | std::cerr << l << ": " << m << std::endl; | |
9830 | @} | |
9831 | ||
9832 | void | |
9833 | calcxx_driver::error (const std::string& m) | |
9834 | @{ | |
9835 | std::cerr << m << std::endl; | |
9836 | @} | |
9837 | @end example | |
9838 | ||
9839 | @node Calc++ Parser | |
8405b70c | 9840 | @subsubsection Calc++ Parser |
12545799 | 9841 | |
9913d6e4 JD |
9842 | The grammar file @file{calc++-parser.yy} starts by asking for the C++ |
9843 | deterministic parser skeleton, the creation of the parser header file, | |
9844 | and specifies the name of the parser class. Because the C++ skeleton | |
9845 | changed several times, it is safer to require the version you designed | |
9846 | the grammar for. | |
1c59e0a1 AD |
9847 | |
9848 | @comment file: calc++-parser.yy | |
12545799 | 9849 | @example |
ea118b72 | 9850 | %skeleton "lalr1.cc" /* -*- C++ -*- */ |
e6e704dc | 9851 | %require "@value{VERSION}" |
12545799 | 9852 | %defines |
16dc6a9e | 9853 | %define parser_class_name "calcxx_parser" |
fb9712a9 AD |
9854 | @end example |
9855 | ||
9856 | @noindent | |
16dc6a9e | 9857 | @findex %code requires |
fb9712a9 AD |
9858 | Then come the declarations/inclusions needed to define the |
9859 | @code{%union}. Because the parser uses the parsing driver and | |
9860 | reciprocally, both cannot include the header of the other. Because the | |
9861 | driver's header needs detailed knowledge about the parser class (in | |
9862 | particular its inner types), it is the parser's header which will simply | |
9863 | use a forward declaration of the driver. | |
8e6f2266 | 9864 | @xref{%code Summary}. |
fb9712a9 AD |
9865 | |
9866 | @comment file: calc++-parser.yy | |
9867 | @example | |
16dc6a9e | 9868 | %code requires @{ |
12545799 | 9869 | # include <string> |
fb9712a9 | 9870 | class calcxx_driver; |
9bc0dd67 | 9871 | @} |
12545799 AD |
9872 | @end example |
9873 | ||
9874 | @noindent | |
9875 | The driver is passed by reference to the parser and to the scanner. | |
9876 | This provides a simple but effective pure interface, not relying on | |
9877 | global variables. | |
9878 | ||
1c59e0a1 | 9879 | @comment file: calc++-parser.yy |
12545799 AD |
9880 | @example |
9881 | // The parsing context. | |
9882 | %parse-param @{ calcxx_driver& driver @} | |
9883 | %lex-param @{ calcxx_driver& driver @} | |
9884 | @end example | |
9885 | ||
9886 | @noindent | |
9887 | Then we request the location tracking feature, and initialize the | |
c781580d | 9888 | first location's file name. Afterward new locations are computed |
12545799 AD |
9889 | relatively to the previous locations: the file name will be |
9890 | automatically propagated. | |
9891 | ||
1c59e0a1 | 9892 | @comment file: calc++-parser.yy |
12545799 AD |
9893 | @example |
9894 | %locations | |
9895 | %initial-action | |
9896 | @{ | |
9897 | // Initialize the initial location. | |
b47dbebe | 9898 | @@$.begin.filename = @@$.end.filename = &driver.file; |
12545799 AD |
9899 | @}; |
9900 | @end example | |
9901 | ||
9902 | @noindent | |
6f04ee6c JD |
9903 | Use the two following directives to enable parser tracing and verbose error |
9904 | messages. However, verbose error messages can contain incorrect information | |
9905 | (@pxref{LAC}). | |
12545799 | 9906 | |
1c59e0a1 | 9907 | @comment file: calc++-parser.yy |
12545799 AD |
9908 | @example |
9909 | %debug | |
9910 | %error-verbose | |
9911 | @end example | |
9912 | ||
9913 | @noindent | |
9914 | Semantic values cannot use ``real'' objects, but only pointers to | |
9915 | them. | |
9916 | ||
1c59e0a1 | 9917 | @comment file: calc++-parser.yy |
12545799 AD |
9918 | @example |
9919 | // Symbols. | |
9920 | %union | |
9921 | @{ | |
9922 | int ival; | |
9923 | std::string *sval; | |
9924 | @}; | |
9925 | @end example | |
9926 | ||
fb9712a9 | 9927 | @noindent |
136a0f76 PB |
9928 | @findex %code |
9929 | The code between @samp{%code @{} and @samp{@}} is output in the | |
34f98f46 | 9930 | @file{*.cc} file; it needs detailed knowledge about the driver. |
fb9712a9 AD |
9931 | |
9932 | @comment file: calc++-parser.yy | |
9933 | @example | |
136a0f76 | 9934 | %code @{ |
fb9712a9 | 9935 | # include "calc++-driver.hh" |
34f98f46 | 9936 | @} |
fb9712a9 AD |
9937 | @end example |
9938 | ||
9939 | ||
12545799 AD |
9940 | @noindent |
9941 | The token numbered as 0 corresponds to end of file; the following line | |
9942 | allows for nicer error messages referring to ``end of file'' instead | |
9943 | of ``$end''. Similarly user friendly named are provided for each | |
9944 | symbol. Note that the tokens names are prefixed by @code{TOKEN_} to | |
9945 | avoid name clashes. | |
9946 | ||
1c59e0a1 | 9947 | @comment file: calc++-parser.yy |
12545799 | 9948 | @example |
fb9712a9 AD |
9949 | %token END 0 "end of file" |
9950 | %token ASSIGN ":=" | |
9951 | %token <sval> IDENTIFIER "identifier" | |
9952 | %token <ival> NUMBER "number" | |
a8c2e813 | 9953 | %type <ival> exp |
12545799 AD |
9954 | @end example |
9955 | ||
9956 | @noindent | |
9957 | To enable memory deallocation during error recovery, use | |
9958 | @code{%destructor}. | |
9959 | ||
287c78f6 | 9960 | @c FIXME: Document %printer, and mention that it takes a braced-code operand. |
1c59e0a1 | 9961 | @comment file: calc++-parser.yy |
12545799 | 9962 | @example |
68fff38a | 9963 | %printer @{ yyoutput << *$$; @} "identifier" |
12545799 AD |
9964 | %destructor @{ delete $$; @} "identifier" |
9965 | ||
68fff38a | 9966 | %printer @{ yyoutput << $$; @} <ival> |
12545799 AD |
9967 | @end example |
9968 | ||
9969 | @noindent | |
9970 | The grammar itself is straightforward. | |
9971 | ||
1c59e0a1 | 9972 | @comment file: calc++-parser.yy |
12545799 AD |
9973 | @example |
9974 | %% | |
9975 | %start unit; | |
9976 | unit: assignments exp @{ driver.result = $2; @}; | |
9977 | ||
de6be119 AD |
9978 | assignments: |
9979 | /* Nothing. */ @{@} | |
9980 | | assignments assignment @{@}; | |
12545799 | 9981 | |
3dc5e96b PE |
9982 | assignment: |
9983 | "identifier" ":=" exp | |
9984 | @{ driver.variables[*$1] = $3; delete $1; @}; | |
12545799 AD |
9985 | |
9986 | %left '+' '-'; | |
9987 | %left '*' '/'; | |
9988 | exp: exp '+' exp @{ $$ = $1 + $3; @} | |
9989 | | exp '-' exp @{ $$ = $1 - $3; @} | |
9990 | | exp '*' exp @{ $$ = $1 * $3; @} | |
9991 | | exp '/' exp @{ $$ = $1 / $3; @} | |
3dc5e96b | 9992 | | "identifier" @{ $$ = driver.variables[*$1]; delete $1; @} |
fb9712a9 | 9993 | | "number" @{ $$ = $1; @}; |
12545799 AD |
9994 | %% |
9995 | @end example | |
9996 | ||
9997 | @noindent | |
9998 | Finally the @code{error} member function registers the errors to the | |
9999 | driver. | |
10000 | ||
1c59e0a1 | 10001 | @comment file: calc++-parser.yy |
12545799 AD |
10002 | @example |
10003 | void | |
1c59e0a1 AD |
10004 | yy::calcxx_parser::error (const yy::calcxx_parser::location_type& l, |
10005 | const std::string& m) | |
12545799 AD |
10006 | @{ |
10007 | driver.error (l, m); | |
10008 | @} | |
10009 | @end example | |
10010 | ||
10011 | @node Calc++ Scanner | |
8405b70c | 10012 | @subsubsection Calc++ Scanner |
12545799 AD |
10013 | |
10014 | The Flex scanner first includes the driver declaration, then the | |
10015 | parser's to get the set of defined tokens. | |
10016 | ||
1c59e0a1 | 10017 | @comment file: calc++-scanner.ll |
12545799 | 10018 | @example |
ea118b72 | 10019 | %@{ /* -*- C++ -*- */ |
04098407 | 10020 | # include <cstdlib> |
b10dd689 AD |
10021 | # include <cerrno> |
10022 | # include <climits> | |
12545799 AD |
10023 | # include <string> |
10024 | # include "calc++-driver.hh" | |
10025 | # include "calc++-parser.hh" | |
eaea13f5 PE |
10026 | |
10027 | /* Work around an incompatibility in flex (at least versions | |
10028 | 2.5.31 through 2.5.33): it generates code that does | |
10029 | not conform to C89. See Debian bug 333231 | |
10030 | <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333231>. */ | |
7870f699 PE |
10031 | # undef yywrap |
10032 | # define yywrap() 1 | |
eaea13f5 | 10033 | |
c095d689 AD |
10034 | /* By default yylex returns int, we use token_type. |
10035 | Unfortunately yyterminate by default returns 0, which is | |
10036 | not of token_type. */ | |
8c5b881d | 10037 | #define yyterminate() return token::END |
12545799 AD |
10038 | %@} |
10039 | @end example | |
10040 | ||
10041 | @noindent | |
10042 | Because there is no @code{#include}-like feature we don't need | |
10043 | @code{yywrap}, we don't need @code{unput} either, and we parse an | |
10044 | actual file, this is not an interactive session with the user. | |
10045 | Finally we enable the scanner tracing features. | |
10046 | ||
1c59e0a1 | 10047 | @comment file: calc++-scanner.ll |
12545799 AD |
10048 | @example |
10049 | %option noyywrap nounput batch debug | |
10050 | @end example | |
10051 | ||
10052 | @noindent | |
10053 | Abbreviations allow for more readable rules. | |
10054 | ||
1c59e0a1 | 10055 | @comment file: calc++-scanner.ll |
12545799 AD |
10056 | @example |
10057 | id [a-zA-Z][a-zA-Z_0-9]* | |
10058 | int [0-9]+ | |
10059 | blank [ \t] | |
10060 | @end example | |
10061 | ||
10062 | @noindent | |
9d9b8b70 | 10063 | The following paragraph suffices to track locations accurately. Each |
12545799 AD |
10064 | time @code{yylex} is invoked, the begin position is moved onto the end |
10065 | position. Then when a pattern is matched, the end position is | |
10066 | advanced of its width. In case it matched ends of lines, the end | |
10067 | cursor is adjusted, and each time blanks are matched, the begin cursor | |
10068 | is moved onto the end cursor to effectively ignore the blanks | |
10069 | preceding tokens. Comments would be treated equally. | |
10070 | ||
1c59e0a1 | 10071 | @comment file: calc++-scanner.ll |
12545799 | 10072 | @example |
98842516 | 10073 | @group |
828c373b AD |
10074 | %@{ |
10075 | # define YY_USER_ACTION yylloc->columns (yyleng); | |
10076 | %@} | |
98842516 | 10077 | @end group |
12545799 AD |
10078 | %% |
10079 | %@{ | |
10080 | yylloc->step (); | |
12545799 AD |
10081 | %@} |
10082 | @{blank@}+ yylloc->step (); | |
10083 | [\n]+ yylloc->lines (yyleng); yylloc->step (); | |
10084 | @end example | |
10085 | ||
10086 | @noindent | |
fb9712a9 AD |
10087 | The rules are simple, just note the use of the driver to report errors. |
10088 | It is convenient to use a typedef to shorten | |
10089 | @code{yy::calcxx_parser::token::identifier} into | |
9d9b8b70 | 10090 | @code{token::identifier} for instance. |
12545799 | 10091 | |
1c59e0a1 | 10092 | @comment file: calc++-scanner.ll |
12545799 | 10093 | @example |
fb9712a9 AD |
10094 | %@{ |
10095 | typedef yy::calcxx_parser::token token; | |
10096 | %@} | |
8c5b881d | 10097 | /* Convert ints to the actual type of tokens. */ |
c095d689 | 10098 | [-+*/] return yy::calcxx_parser::token_type (yytext[0]); |
fb9712a9 | 10099 | ":=" return token::ASSIGN; |
04098407 PE |
10100 | @{int@} @{ |
10101 | errno = 0; | |
10102 | long n = strtol (yytext, NULL, 10); | |
10103 | if (! (INT_MIN <= n && n <= INT_MAX && errno != ERANGE)) | |
10104 | driver.error (*yylloc, "integer is out of range"); | |
10105 | yylval->ival = n; | |
fb9712a9 | 10106 | return token::NUMBER; |
04098407 | 10107 | @} |
fb9712a9 | 10108 | @{id@} yylval->sval = new std::string (yytext); return token::IDENTIFIER; |
12545799 AD |
10109 | . driver.error (*yylloc, "invalid character"); |
10110 | %% | |
10111 | @end example | |
10112 | ||
10113 | @noindent | |
10114 | Finally, because the scanner related driver's member function depend | |
10115 | on the scanner's data, it is simpler to implement them in this file. | |
10116 | ||
1c59e0a1 | 10117 | @comment file: calc++-scanner.ll |
12545799 | 10118 | @example |
98842516 | 10119 | @group |
12545799 AD |
10120 | void |
10121 | calcxx_driver::scan_begin () | |
10122 | @{ | |
10123 | yy_flex_debug = trace_scanning; | |
56d60c19 | 10124 | if (file.empty () || file == "-") |
bb32f4f2 AD |
10125 | yyin = stdin; |
10126 | else if (!(yyin = fopen (file.c_str (), "r"))) | |
10127 | @{ | |
2c0f9706 | 10128 | error ("cannot open " + file + ": " + strerror(errno)); |
dd561157 | 10129 | exit (EXIT_FAILURE); |
bb32f4f2 | 10130 | @} |
12545799 | 10131 | @} |
98842516 | 10132 | @end group |
12545799 | 10133 | |
98842516 | 10134 | @group |
12545799 AD |
10135 | void |
10136 | calcxx_driver::scan_end () | |
10137 | @{ | |
10138 | fclose (yyin); | |
10139 | @} | |
98842516 | 10140 | @end group |
12545799 AD |
10141 | @end example |
10142 | ||
10143 | @node Calc++ Top Level | |
8405b70c | 10144 | @subsubsection Calc++ Top Level |
12545799 AD |
10145 | |
10146 | The top level file, @file{calc++.cc}, poses no problem. | |
10147 | ||
1c59e0a1 | 10148 | @comment file: calc++.cc |
12545799 AD |
10149 | @example |
10150 | #include <iostream> | |
10151 | #include "calc++-driver.hh" | |
10152 | ||
98842516 | 10153 | @group |
12545799 | 10154 | int |
fa4d969f | 10155 | main (int argc, char *argv[]) |
12545799 AD |
10156 | @{ |
10157 | calcxx_driver driver; | |
56d60c19 AD |
10158 | for (int i = 1; i < argc; ++i) |
10159 | if (argv[i] == std::string ("-p")) | |
12545799 | 10160 | driver.trace_parsing = true; |
56d60c19 | 10161 | else if (argv[i] == std::string ("-s")) |
12545799 | 10162 | driver.trace_scanning = true; |
56d60c19 | 10163 | else if (!driver.parse (argv[i])) |
bb32f4f2 | 10164 | std::cout << driver.result << std::endl; |
12545799 | 10165 | @} |
98842516 | 10166 | @end group |
12545799 AD |
10167 | @end example |
10168 | ||
8405b70c PB |
10169 | @node Java Parsers |
10170 | @section Java Parsers | |
10171 | ||
10172 | @menu | |
f56274a8 DJ |
10173 | * Java Bison Interface:: Asking for Java parser generation |
10174 | * Java Semantic Values:: %type and %token vs. Java | |
10175 | * Java Location Values:: The position and location classes | |
10176 | * Java Parser Interface:: Instantiating and running the parser | |
10177 | * Java Scanner Interface:: Specifying the scanner for the parser | |
10178 | * Java Action Features:: Special features for use in actions | |
10179 | * Java Differences:: Differences between C/C++ and Java Grammars | |
10180 | * Java Declarations Summary:: List of Bison declarations used with Java | |
8405b70c PB |
10181 | @end menu |
10182 | ||
10183 | @node Java Bison Interface | |
10184 | @subsection Java Bison Interface | |
10185 | @c - %language "Java" | |
8405b70c | 10186 | |
59da312b JD |
10187 | (The current Java interface is experimental and may evolve. |
10188 | More user feedback will help to stabilize it.) | |
10189 | ||
e254a580 DJ |
10190 | The Java parser skeletons are selected using the @code{%language "Java"} |
10191 | directive or the @option{-L java}/@option{--language=java} option. | |
8405b70c | 10192 | |
e254a580 | 10193 | @c FIXME: Documented bug. |
9913d6e4 JD |
10194 | When generating a Java parser, @code{bison @var{basename}.y} will |
10195 | create a single Java source file named @file{@var{basename}.java} | |
10196 | containing the parser implementation. Using a grammar file without a | |
10197 | @file{.y} suffix is currently broken. The basename of the parser | |
10198 | implementation file can be changed by the @code{%file-prefix} | |
10199 | directive or the @option{-p}/@option{--name-prefix} option. The | |
10200 | entire parser implementation file name can be changed by the | |
10201 | @code{%output} directive or the @option{-o}/@option{--output} option. | |
10202 | The parser implementation file contains a single class for the parser. | |
8405b70c | 10203 | |
e254a580 | 10204 | You can create documentation for generated parsers using Javadoc. |
8405b70c | 10205 | |
e254a580 DJ |
10206 | Contrary to C parsers, Java parsers do not use global variables; the |
10207 | state of the parser is always local to an instance of the parser class. | |
10208 | Therefore, all Java parsers are ``pure'', and the @code{%pure-parser} | |
10209 | and @code{%define api.pure} directives does not do anything when used in | |
10210 | Java. | |
8405b70c | 10211 | |
e254a580 | 10212 | Push parsers are currently unsupported in Java and @code{%define |
812775a0 | 10213 | api.push-pull} have no effect. |
01b477c6 | 10214 | |
35430378 | 10215 | GLR parsers are currently unsupported in Java. Do not use the |
e254a580 DJ |
10216 | @code{glr-parser} directive. |
10217 | ||
10218 | No header file can be generated for Java parsers. Do not use the | |
10219 | @code{%defines} directive or the @option{-d}/@option{--defines} options. | |
10220 | ||
10221 | @c FIXME: Possible code change. | |
10222 | Currently, support for debugging and verbose errors are always compiled | |
10223 | in. Thus the @code{%debug} and @code{%token-table} directives and the | |
10224 | @option{-t}/@option{--debug} and @option{-k}/@option{--token-table} | |
10225 | options have no effect. This may change in the future to eliminate | |
10226 | unused code in the generated parser, so use @code{%debug} and | |
10227 | @code{%verbose-error} explicitly if needed. Also, in the future the | |
10228 | @code{%token-table} directive might enable a public interface to | |
10229 | access the token names and codes. | |
8405b70c PB |
10230 | |
10231 | @node Java Semantic Values | |
10232 | @subsection Java Semantic Values | |
10233 | @c - No %union, specify type in %type/%token. | |
10234 | @c - YYSTYPE | |
10235 | @c - Printer and destructor | |
10236 | ||
10237 | There is no @code{%union} directive in Java parsers. Instead, the | |
10238 | semantic values' types (class names) should be specified in the | |
10239 | @code{%type} or @code{%token} directive: | |
10240 | ||
10241 | @example | |
10242 | %type <Expression> expr assignment_expr term factor | |
10243 | %type <Integer> number | |
10244 | @end example | |
10245 | ||
10246 | By default, the semantic stack is declared to have @code{Object} members, | |
10247 | which means that the class types you specify can be of any class. | |
10248 | To improve the type safety of the parser, you can declare the common | |
e254a580 DJ |
10249 | superclass of all the semantic values using the @code{%define stype} |
10250 | directive. For example, after the following declaration: | |
8405b70c PB |
10251 | |
10252 | @example | |
e254a580 | 10253 | %define stype "ASTNode" |
8405b70c PB |
10254 | @end example |
10255 | ||
10256 | @noindent | |
10257 | any @code{%type} or @code{%token} specifying a semantic type which | |
10258 | is not a subclass of ASTNode, will cause a compile-time error. | |
10259 | ||
e254a580 | 10260 | @c FIXME: Documented bug. |
8405b70c PB |
10261 | Types used in the directives may be qualified with a package name. |
10262 | Primitive data types are accepted for Java version 1.5 or later. Note | |
10263 | that in this case the autoboxing feature of Java 1.5 will be used. | |
e254a580 DJ |
10264 | Generic types may not be used; this is due to a limitation in the |
10265 | implementation of Bison, and may change in future releases. | |
8405b70c PB |
10266 | |
10267 | Java parsers do not support @code{%destructor}, since the language | |
10268 | adopts garbage collection. The parser will try to hold references | |
10269 | to semantic values for as little time as needed. | |
10270 | ||
10271 | Java parsers do not support @code{%printer}, as @code{toString()} | |
10272 | can be used to print the semantic values. This however may change | |
10273 | (in a backwards-compatible way) in future versions of Bison. | |
10274 | ||
10275 | ||
10276 | @node Java Location Values | |
10277 | @subsection Java Location Values | |
10278 | @c - %locations | |
10279 | @c - class Position | |
10280 | @c - class Location | |
10281 | ||
7404cdf3 JD |
10282 | When the directive @code{%locations} is used, the Java parser supports |
10283 | location tracking, see @ref{Tracking Locations}. An auxiliary user-defined | |
10284 | class defines a @dfn{position}, a single point in a file; Bison itself | |
10285 | defines a class representing a @dfn{location}, a range composed of a pair of | |
10286 | positions (possibly spanning several files). The location class is an inner | |
10287 | class of the parser; the name is @code{Location} by default, and may also be | |
7287be84 | 10288 | renamed using @code{%define api.location.type "@var{class-name}"}. |
8405b70c PB |
10289 | |
10290 | The location class treats the position as a completely opaque value. | |
10291 | By default, the class name is @code{Position}, but this can be changed | |
7287be84 | 10292 | with @code{%define api.position.type "@var{class-name}"}. This class must |
e254a580 | 10293 | be supplied by the user. |
8405b70c PB |
10294 | |
10295 | ||
e254a580 DJ |
10296 | @deftypeivar {Location} {Position} begin |
10297 | @deftypeivarx {Location} {Position} end | |
8405b70c | 10298 | The first, inclusive, position of the range, and the first beyond. |
e254a580 DJ |
10299 | @end deftypeivar |
10300 | ||
10301 | @deftypeop {Constructor} {Location} {} Location (Position @var{loc}) | |
c046698e | 10302 | Create a @code{Location} denoting an empty range located at a given point. |
e254a580 | 10303 | @end deftypeop |
8405b70c | 10304 | |
e254a580 DJ |
10305 | @deftypeop {Constructor} {Location} {} Location (Position @var{begin}, Position @var{end}) |
10306 | Create a @code{Location} from the endpoints of the range. | |
10307 | @end deftypeop | |
10308 | ||
10309 | @deftypemethod {Location} {String} toString () | |
8405b70c PB |
10310 | Prints the range represented by the location. For this to work |
10311 | properly, the position class should override the @code{equals} and | |
10312 | @code{toString} methods appropriately. | |
10313 | @end deftypemethod | |
10314 | ||
10315 | ||
10316 | @node Java Parser Interface | |
10317 | @subsection Java Parser Interface | |
10318 | @c - define parser_class_name | |
10319 | @c - Ctor | |
10320 | @c - parse, error, set_debug_level, debug_level, set_debug_stream, | |
10321 | @c debug_stream. | |
10322 | @c - Reporting errors | |
10323 | ||
e254a580 DJ |
10324 | The name of the generated parser class defaults to @code{YYParser}. The |
10325 | @code{YY} prefix may be changed using the @code{%name-prefix} directive | |
10326 | or the @option{-p}/@option{--name-prefix} option. Alternatively, use | |
10327 | @code{%define parser_class_name "@var{name}"} to give a custom name to | |
10328 | the class. The interface of this class is detailed below. | |
8405b70c | 10329 | |
e254a580 DJ |
10330 | By default, the parser class has package visibility. A declaration |
10331 | @code{%define public} will change to public visibility. Remember that, | |
10332 | according to the Java language specification, the name of the @file{.java} | |
10333 | file should match the name of the class in this case. Similarly, you can | |
10334 | use @code{abstract}, @code{final} and @code{strictfp} with the | |
10335 | @code{%define} declaration to add other modifiers to the parser class. | |
10336 | ||
10337 | The Java package name of the parser class can be specified using the | |
10338 | @code{%define package} directive. The superclass and the implemented | |
10339 | interfaces of the parser class can be specified with the @code{%define | |
10340 | extends} and @code{%define implements} directives. | |
10341 | ||
10342 | The parser class defines an inner class, @code{Location}, that is used | |
10343 | for location tracking (see @ref{Java Location Values}), and a inner | |
10344 | interface, @code{Lexer} (see @ref{Java Scanner Interface}). Other than | |
10345 | these inner class/interface, and the members described in the interface | |
10346 | below, all the other members and fields are preceded with a @code{yy} or | |
10347 | @code{YY} prefix to avoid clashes with user code. | |
10348 | ||
10349 | @c FIXME: The following constants and variables are still undocumented: | |
10350 | @c @code{bisonVersion}, @code{bisonSkeleton} and @code{errorVerbose}. | |
10351 | ||
10352 | The parser class can be extended using the @code{%parse-param} | |
10353 | directive. Each occurrence of the directive will add a @code{protected | |
10354 | final} field to the parser class, and an argument to its constructor, | |
10355 | which initialize them automatically. | |
10356 | ||
10357 | Token names defined by @code{%token} and the predefined @code{EOF} token | |
10358 | name are added as constant fields to the parser class. | |
10359 | ||
10360 | @deftypeop {Constructor} {YYParser} {} YYParser (@var{lex_param}, @dots{}, @var{parse_param}, @dots{}) | |
10361 | Build a new parser object with embedded @code{%code lexer}. There are | |
10362 | no parameters, unless @code{%parse-param}s and/or @code{%lex-param}s are | |
10363 | used. | |
10364 | @end deftypeop | |
10365 | ||
10366 | @deftypeop {Constructor} {YYParser} {} YYParser (Lexer @var{lexer}, @var{parse_param}, @dots{}) | |
10367 | Build a new parser object using the specified scanner. There are no | |
10368 | additional parameters unless @code{%parse-param}s are used. | |
10369 | ||
10370 | If the scanner is defined by @code{%code lexer}, this constructor is | |
10371 | declared @code{protected} and is called automatically with a scanner | |
10372 | created with the correct @code{%lex-param}s. | |
10373 | @end deftypeop | |
8405b70c PB |
10374 | |
10375 | @deftypemethod {YYParser} {boolean} parse () | |
10376 | Run the syntactic analysis, and return @code{true} on success, | |
10377 | @code{false} otherwise. | |
10378 | @end deftypemethod | |
10379 | ||
01b477c6 | 10380 | @deftypemethod {YYParser} {boolean} recovering () |
8405b70c | 10381 | During the syntactic analysis, return @code{true} if recovering |
e254a580 DJ |
10382 | from a syntax error. |
10383 | @xref{Error Recovery}. | |
8405b70c PB |
10384 | @end deftypemethod |
10385 | ||
10386 | @deftypemethod {YYParser} {java.io.PrintStream} getDebugStream () | |
10387 | @deftypemethodx {YYParser} {void} setDebugStream (java.io.printStream @var{o}) | |
10388 | Get or set the stream used for tracing the parsing. It defaults to | |
10389 | @code{System.err}. | |
10390 | @end deftypemethod | |
10391 | ||
10392 | @deftypemethod {YYParser} {int} getDebugLevel () | |
10393 | @deftypemethodx {YYParser} {void} setDebugLevel (int @var{l}) | |
10394 | Get or set the tracing level. Currently its value is either 0, no trace, | |
10395 | or nonzero, full tracing. | |
10396 | @end deftypemethod | |
10397 | ||
8405b70c PB |
10398 | |
10399 | @node Java Scanner Interface | |
10400 | @subsection Java Scanner Interface | |
01b477c6 | 10401 | @c - %code lexer |
8405b70c | 10402 | @c - %lex-param |
01b477c6 | 10403 | @c - Lexer interface |
8405b70c | 10404 | |
e254a580 DJ |
10405 | There are two possible ways to interface a Bison-generated Java parser |
10406 | with a scanner: the scanner may be defined by @code{%code lexer}, or | |
10407 | defined elsewhere. In either case, the scanner has to implement the | |
10408 | @code{Lexer} inner interface of the parser class. | |
10409 | ||
10410 | In the first case, the body of the scanner class is placed in | |
10411 | @code{%code lexer} blocks. If you want to pass parameters from the | |
10412 | parser constructor to the scanner constructor, specify them with | |
10413 | @code{%lex-param}; they are passed before @code{%parse-param}s to the | |
10414 | constructor. | |
01b477c6 | 10415 | |
59c5ac72 | 10416 | In the second case, the scanner has to implement the @code{Lexer} interface, |
01b477c6 PB |
10417 | which is defined within the parser class (e.g., @code{YYParser.Lexer}). |
10418 | The constructor of the parser object will then accept an object | |
10419 | implementing the interface; @code{%lex-param} is not used in this | |
10420 | case. | |
10421 | ||
10422 | In both cases, the scanner has to implement the following methods. | |
10423 | ||
e254a580 DJ |
10424 | @deftypemethod {Lexer} {void} yyerror (Location @var{loc}, String @var{msg}) |
10425 | This method is defined by the user to emit an error message. The first | |
10426 | parameter is omitted if location tracking is not active. Its type can be | |
7287be84 | 10427 | changed using @code{%define api.location.type "@var{class-name}".} |
8405b70c PB |
10428 | @end deftypemethod |
10429 | ||
e254a580 | 10430 | @deftypemethod {Lexer} {int} yylex () |
8405b70c | 10431 | Return the next token. Its type is the return value, its semantic |
c781580d | 10432 | value and location are saved and returned by the their methods in the |
e254a580 DJ |
10433 | interface. |
10434 | ||
10435 | Use @code{%define lex_throws} to specify any uncaught exceptions. | |
10436 | Default is @code{java.io.IOException}. | |
8405b70c PB |
10437 | @end deftypemethod |
10438 | ||
10439 | @deftypemethod {Lexer} {Position} getStartPos () | |
10440 | @deftypemethodx {Lexer} {Position} getEndPos () | |
01b477c6 PB |
10441 | Return respectively the first position of the last token that |
10442 | @code{yylex} returned, and the first position beyond it. These | |
10443 | methods are not needed unless location tracking is active. | |
8405b70c | 10444 | |
7287be84 | 10445 | The return type can be changed using @code{%define api.position.type |
8405b70c PB |
10446 | "@var{class-name}".} |
10447 | @end deftypemethod | |
10448 | ||
10449 | @deftypemethod {Lexer} {Object} getLVal () | |
c781580d | 10450 | Return the semantic value of the last token that yylex returned. |
8405b70c | 10451 | |
e254a580 | 10452 | The return type can be changed using @code{%define stype |
8405b70c PB |
10453 | "@var{class-name}".} |
10454 | @end deftypemethod | |
10455 | ||
10456 | ||
e254a580 DJ |
10457 | @node Java Action Features |
10458 | @subsection Special Features for Use in Java Actions | |
10459 | ||
10460 | The following special constructs can be uses in Java actions. | |
10461 | Other analogous C action features are currently unavailable for Java. | |
10462 | ||
10463 | Use @code{%define throws} to specify any uncaught exceptions from parser | |
10464 | actions, and initial actions specified by @code{%initial-action}. | |
10465 | ||
10466 | @defvar $@var{n} | |
10467 | The semantic value for the @var{n}th component of the current rule. | |
10468 | This may not be assigned to. | |
10469 | @xref{Java Semantic Values}. | |
10470 | @end defvar | |
10471 | ||
10472 | @defvar $<@var{typealt}>@var{n} | |
10473 | Like @code{$@var{n}} but specifies a alternative type @var{typealt}. | |
10474 | @xref{Java Semantic Values}. | |
10475 | @end defvar | |
10476 | ||
10477 | @defvar $$ | |
10478 | The semantic value for the grouping made by the current rule. As a | |
10479 | value, this is in the base type (@code{Object} or as specified by | |
10480 | @code{%define stype}) as in not cast to the declared subtype because | |
10481 | casts are not allowed on the left-hand side of Java assignments. | |
10482 | Use an explicit Java cast if the correct subtype is needed. | |
10483 | @xref{Java Semantic Values}. | |
10484 | @end defvar | |
10485 | ||
10486 | @defvar $<@var{typealt}>$ | |
10487 | Same as @code{$$} since Java always allow assigning to the base type. | |
10488 | Perhaps we should use this and @code{$<>$} for the value and @code{$$} | |
10489 | for setting the value but there is currently no easy way to distinguish | |
10490 | these constructs. | |
10491 | @xref{Java Semantic Values}. | |
10492 | @end defvar | |
10493 | ||
10494 | @defvar @@@var{n} | |
10495 | The location information of the @var{n}th component of the current rule. | |
10496 | This may not be assigned to. | |
10497 | @xref{Java Location Values}. | |
10498 | @end defvar | |
10499 | ||
10500 | @defvar @@$ | |
10501 | The location information of the grouping made by the current rule. | |
10502 | @xref{Java Location Values}. | |
10503 | @end defvar | |
10504 | ||
34a41a93 | 10505 | @deftypefn {Statement} return YYABORT @code{;} |
e254a580 DJ |
10506 | Return immediately from the parser, indicating failure. |
10507 | @xref{Java Parser Interface}. | |
34a41a93 | 10508 | @end deftypefn |
8405b70c | 10509 | |
34a41a93 | 10510 | @deftypefn {Statement} return YYACCEPT @code{;} |
e254a580 DJ |
10511 | Return immediately from the parser, indicating success. |
10512 | @xref{Java Parser Interface}. | |
34a41a93 | 10513 | @end deftypefn |
8405b70c | 10514 | |
34a41a93 | 10515 | @deftypefn {Statement} {return} YYERROR @code{;} |
4a11b852 | 10516 | Start error recovery (without printing an error message). |
e254a580 | 10517 | @xref{Error Recovery}. |
34a41a93 | 10518 | @end deftypefn |
8405b70c | 10519 | |
e254a580 DJ |
10520 | @deftypefn {Function} {boolean} recovering () |
10521 | Return whether error recovery is being done. In this state, the parser | |
10522 | reads token until it reaches a known state, and then restarts normal | |
10523 | operation. | |
10524 | @xref{Error Recovery}. | |
10525 | @end deftypefn | |
8405b70c | 10526 | |
e254a580 DJ |
10527 | @deftypefn {Function} {protected void} yyerror (String msg) |
10528 | @deftypefnx {Function} {protected void} yyerror (Position pos, String msg) | |
10529 | @deftypefnx {Function} {protected void} yyerror (Location loc, String msg) | |
10530 | Print an error message using the @code{yyerror} method of the scanner | |
10531 | instance in use. | |
10532 | @end deftypefn | |
8405b70c | 10533 | |
8405b70c | 10534 | |
8405b70c PB |
10535 | @node Java Differences |
10536 | @subsection Differences between C/C++ and Java Grammars | |
10537 | ||
10538 | The different structure of the Java language forces several differences | |
10539 | between C/C++ grammars, and grammars designed for Java parsers. This | |
29553547 | 10540 | section summarizes these differences. |
8405b70c PB |
10541 | |
10542 | @itemize | |
10543 | @item | |
01b477c6 | 10544 | Java lacks a preprocessor, so the @code{YYERROR}, @code{YYACCEPT}, |
8405b70c | 10545 | @code{YYABORT} symbols (@pxref{Table of Symbols}) cannot obviously be |
01b477c6 PB |
10546 | macros. Instead, they should be preceded by @code{return} when they |
10547 | appear in an action. The actual definition of these symbols is | |
8405b70c PB |
10548 | opaque to the Bison grammar, and it might change in the future. The |
10549 | only meaningful operation that you can do, is to return them. | |
2ba03112 | 10550 | @xref{Java Action Features}. |
8405b70c PB |
10551 | |
10552 | Note that of these three symbols, only @code{YYACCEPT} and | |
10553 | @code{YYABORT} will cause a return from the @code{yyparse} | |
10554 | method@footnote{Java parsers include the actions in a separate | |
10555 | method than @code{yyparse} in order to have an intuitive syntax that | |
10556 | corresponds to these C macros.}. | |
10557 | ||
e254a580 DJ |
10558 | @item |
10559 | Java lacks unions, so @code{%union} has no effect. Instead, semantic | |
10560 | values have a common base type: @code{Object} or as specified by | |
c781580d | 10561 | @samp{%define stype}. Angle brackets on @code{%token}, @code{type}, |
e254a580 DJ |
10562 | @code{$@var{n}} and @code{$$} specify subtypes rather than fields of |
10563 | an union. The type of @code{$$}, even with angle brackets, is the base | |
10564 | type since Java casts are not allow on the left-hand side of assignments. | |
10565 | Also, @code{$@var{n}} and @code{@@@var{n}} are not allowed on the | |
15cd62c2 | 10566 | left-hand side of assignments. @xref{Java Semantic Values}, and |
2ba03112 | 10567 | @ref{Java Action Features}. |
e254a580 | 10568 | |
8405b70c | 10569 | @item |
c781580d | 10570 | The prologue declarations have a different meaning than in C/C++ code. |
01b477c6 PB |
10571 | @table @asis |
10572 | @item @code{%code imports} | |
10573 | blocks are placed at the beginning of the Java source code. They may | |
10574 | include copyright notices. For a @code{package} declarations, it is | |
10575 | suggested to use @code{%define package} instead. | |
8405b70c | 10576 | |
01b477c6 PB |
10577 | @item unqualified @code{%code} |
10578 | blocks are placed inside the parser class. | |
10579 | ||
10580 | @item @code{%code lexer} | |
10581 | blocks, if specified, should include the implementation of the | |
10582 | scanner. If there is no such block, the scanner can be any class | |
2ba03112 | 10583 | that implements the appropriate interface (@pxref{Java Scanner |
01b477c6 | 10584 | Interface}). |
29553547 | 10585 | @end table |
8405b70c PB |
10586 | |
10587 | Other @code{%code} blocks are not supported in Java parsers. | |
e254a580 DJ |
10588 | In particular, @code{%@{ @dots{} %@}} blocks should not be used |
10589 | and may give an error in future versions of Bison. | |
10590 | ||
01b477c6 | 10591 | The epilogue has the same meaning as in C/C++ code and it can |
e254a580 DJ |
10592 | be used to define other classes used by the parser @emph{outside} |
10593 | the parser class. | |
8405b70c PB |
10594 | @end itemize |
10595 | ||
e254a580 DJ |
10596 | |
10597 | @node Java Declarations Summary | |
10598 | @subsection Java Declarations Summary | |
10599 | ||
10600 | This summary only include declarations specific to Java or have special | |
10601 | meaning when used in a Java parser. | |
10602 | ||
10603 | @deffn {Directive} {%language "Java"} | |
10604 | Generate a Java class for the parser. | |
10605 | @end deffn | |
10606 | ||
10607 | @deffn {Directive} %lex-param @{@var{type} @var{name}@} | |
10608 | A parameter for the lexer class defined by @code{%code lexer} | |
10609 | @emph{only}, added as parameters to the lexer constructor and the parser | |
10610 | constructor that @emph{creates} a lexer. Default is none. | |
10611 | @xref{Java Scanner Interface}. | |
10612 | @end deffn | |
10613 | ||
10614 | @deffn {Directive} %name-prefix "@var{prefix}" | |
10615 | The prefix of the parser class name @code{@var{prefix}Parser} if | |
10616 | @code{%define parser_class_name} is not used. Default is @code{YY}. | |
10617 | @xref{Java Bison Interface}. | |
10618 | @end deffn | |
10619 | ||
10620 | @deffn {Directive} %parse-param @{@var{type} @var{name}@} | |
10621 | A parameter for the parser class added as parameters to constructor(s) | |
10622 | and as fields initialized by the constructor(s). Default is none. | |
10623 | @xref{Java Parser Interface}. | |
10624 | @end deffn | |
10625 | ||
10626 | @deffn {Directive} %token <@var{type}> @var{token} @dots{} | |
10627 | Declare tokens. Note that the angle brackets enclose a Java @emph{type}. | |
10628 | @xref{Java Semantic Values}. | |
10629 | @end deffn | |
10630 | ||
10631 | @deffn {Directive} %type <@var{type}> @var{nonterminal} @dots{} | |
10632 | Declare the type of nonterminals. Note that the angle brackets enclose | |
10633 | a Java @emph{type}. | |
10634 | @xref{Java Semantic Values}. | |
10635 | @end deffn | |
10636 | ||
10637 | @deffn {Directive} %code @{ @var{code} @dots{} @} | |
10638 | Code appended to the inside of the parser class. | |
10639 | @xref{Java Differences}. | |
10640 | @end deffn | |
10641 | ||
10642 | @deffn {Directive} {%code imports} @{ @var{code} @dots{} @} | |
10643 | Code inserted just after the @code{package} declaration. | |
10644 | @xref{Java Differences}. | |
10645 | @end deffn | |
10646 | ||
10647 | @deffn {Directive} {%code lexer} @{ @var{code} @dots{} @} | |
10648 | Code added to the body of a inner lexer class within the parser class. | |
10649 | @xref{Java Scanner Interface}. | |
10650 | @end deffn | |
10651 | ||
10652 | @deffn {Directive} %% @var{code} @dots{} | |
10653 | Code (after the second @code{%%}) appended to the end of the file, | |
10654 | @emph{outside} the parser class. | |
10655 | @xref{Java Differences}. | |
10656 | @end deffn | |
10657 | ||
10658 | @deffn {Directive} %@{ @var{code} @dots{} %@} | |
10659 | Not supported. Use @code{%code import} instead. | |
10660 | @xref{Java Differences}. | |
10661 | @end deffn | |
10662 | ||
10663 | @deffn {Directive} {%define abstract} | |
10664 | Whether the parser class is declared @code{abstract}. Default is false. | |
10665 | @xref{Java Bison Interface}. | |
10666 | @end deffn | |
10667 | ||
10668 | @deffn {Directive} {%define extends} "@var{superclass}" | |
10669 | The superclass of the parser class. Default is none. | |
10670 | @xref{Java Bison Interface}. | |
10671 | @end deffn | |
10672 | ||
10673 | @deffn {Directive} {%define final} | |
10674 | Whether the parser class is declared @code{final}. Default is false. | |
10675 | @xref{Java Bison Interface}. | |
10676 | @end deffn | |
10677 | ||
10678 | @deffn {Directive} {%define implements} "@var{interfaces}" | |
10679 | The implemented interfaces of the parser class, a comma-separated list. | |
10680 | Default is none. | |
10681 | @xref{Java Bison Interface}. | |
10682 | @end deffn | |
10683 | ||
10684 | @deffn {Directive} {%define lex_throws} "@var{exceptions}" | |
10685 | The exceptions thrown by the @code{yylex} method of the lexer, a | |
10686 | comma-separated list. Default is @code{java.io.IOException}. | |
10687 | @xref{Java Scanner Interface}. | |
10688 | @end deffn | |
10689 | ||
7287be84 | 10690 | @deffn {Directive} {%define api.location.type} "@var{class}" |
e254a580 DJ |
10691 | The name of the class used for locations (a range between two |
10692 | positions). This class is generated as an inner class of the parser | |
10693 | class by @command{bison}. Default is @code{Location}. | |
7287be84 | 10694 | Formerly named @code{location_type}. |
e254a580 DJ |
10695 | @xref{Java Location Values}. |
10696 | @end deffn | |
10697 | ||
10698 | @deffn {Directive} {%define package} "@var{package}" | |
10699 | The package to put the parser class in. Default is none. | |
10700 | @xref{Java Bison Interface}. | |
10701 | @end deffn | |
10702 | ||
10703 | @deffn {Directive} {%define parser_class_name} "@var{name}" | |
10704 | The name of the parser class. Default is @code{YYParser} or | |
10705 | @code{@var{name-prefix}Parser}. | |
10706 | @xref{Java Bison Interface}. | |
10707 | @end deffn | |
10708 | ||
7287be84 | 10709 | @deffn {Directive} {%define api.position.type} "@var{class}" |
e254a580 DJ |
10710 | The name of the class used for positions. This class must be supplied by |
10711 | the user. Default is @code{Position}. | |
7287be84 | 10712 | Formerly named @code{position_type}. |
e254a580 DJ |
10713 | @xref{Java Location Values}. |
10714 | @end deffn | |
10715 | ||
10716 | @deffn {Directive} {%define public} | |
10717 | Whether the parser class is declared @code{public}. Default is false. | |
10718 | @xref{Java Bison Interface}. | |
10719 | @end deffn | |
10720 | ||
10721 | @deffn {Directive} {%define stype} "@var{class}" | |
10722 | The base type of semantic values. Default is @code{Object}. | |
10723 | @xref{Java Semantic Values}. | |
10724 | @end deffn | |
10725 | ||
10726 | @deffn {Directive} {%define strictfp} | |
10727 | Whether the parser class is declared @code{strictfp}. Default is false. | |
10728 | @xref{Java Bison Interface}. | |
10729 | @end deffn | |
10730 | ||
10731 | @deffn {Directive} {%define throws} "@var{exceptions}" | |
10732 | The exceptions thrown by user-supplied parser actions and | |
10733 | @code{%initial-action}, a comma-separated list. Default is none. | |
10734 | @xref{Java Parser Interface}. | |
10735 | @end deffn | |
10736 | ||
10737 | ||
12545799 | 10738 | @c ================================================= FAQ |
d1a1114f AD |
10739 | |
10740 | @node FAQ | |
10741 | @chapter Frequently Asked Questions | |
10742 | @cindex frequently asked questions | |
10743 | @cindex questions | |
10744 | ||
10745 | Several questions about Bison come up occasionally. Here some of them | |
10746 | are addressed. | |
10747 | ||
10748 | @menu | |
55ba27be AD |
10749 | * Memory Exhausted:: Breaking the Stack Limits |
10750 | * How Can I Reset the Parser:: @code{yyparse} Keeps some State | |
10751 | * Strings are Destroyed:: @code{yylval} Loses Track of Strings | |
10752 | * Implementing Gotos/Loops:: Control Flow in the Calculator | |
ed2e6384 | 10753 | * Multiple start-symbols:: Factoring closely related grammars |
35430378 | 10754 | * Secure? Conform?:: Is Bison POSIX safe? |
55ba27be AD |
10755 | * I can't build Bison:: Troubleshooting |
10756 | * Where can I find help?:: Troubleshouting | |
10757 | * Bug Reports:: Troublereporting | |
8405b70c | 10758 | * More Languages:: Parsers in C++, Java, and so on |
55ba27be AD |
10759 | * Beta Testing:: Experimenting development versions |
10760 | * Mailing Lists:: Meeting other Bison users | |
d1a1114f AD |
10761 | @end menu |
10762 | ||
1a059451 PE |
10763 | @node Memory Exhausted |
10764 | @section Memory Exhausted | |
d1a1114f | 10765 | |
ab8932bf | 10766 | @quotation |
1a059451 | 10767 | My parser returns with error with a @samp{memory exhausted} |
d1a1114f | 10768 | message. What can I do? |
ab8932bf | 10769 | @end quotation |
d1a1114f | 10770 | |
188867ac AD |
10771 | This question is already addressed elsewhere, see @ref{Recursion, ,Recursive |
10772 | Rules}. | |
d1a1114f | 10773 | |
e64fec0a PE |
10774 | @node How Can I Reset the Parser |
10775 | @section How Can I Reset the Parser | |
5b066063 | 10776 | |
0e14ad77 PE |
10777 | The following phenomenon has several symptoms, resulting in the |
10778 | following typical questions: | |
5b066063 | 10779 | |
ab8932bf | 10780 | @quotation |
5b066063 AD |
10781 | I invoke @code{yyparse} several times, and on correct input it works |
10782 | properly; but when a parse error is found, all the other calls fail | |
0e14ad77 | 10783 | too. How can I reset the error flag of @code{yyparse}? |
ab8932bf | 10784 | @end quotation |
5b066063 AD |
10785 | |
10786 | @noindent | |
10787 | or | |
10788 | ||
ab8932bf | 10789 | @quotation |
0e14ad77 | 10790 | My parser includes support for an @samp{#include}-like feature, in |
5b066063 | 10791 | which case I run @code{yyparse} from @code{yyparse}. This fails |
ab8932bf AD |
10792 | although I did specify @samp{%define api.pure}. |
10793 | @end quotation | |
5b066063 | 10794 | |
0e14ad77 PE |
10795 | These problems typically come not from Bison itself, but from |
10796 | Lex-generated scanners. Because these scanners use large buffers for | |
5b066063 AD |
10797 | speed, they might not notice a change of input file. As a |
10798 | demonstration, consider the following source file, | |
10799 | @file{first-line.l}: | |
10800 | ||
98842516 AD |
10801 | @example |
10802 | @group | |
10803 | %@{ | |
5b066063 AD |
10804 | #include <stdio.h> |
10805 | #include <stdlib.h> | |
98842516 AD |
10806 | %@} |
10807 | @end group | |
5b066063 AD |
10808 | %% |
10809 | .*\n ECHO; return 1; | |
10810 | %% | |
98842516 | 10811 | @group |
5b066063 | 10812 | int |
0e14ad77 | 10813 | yyparse (char const *file) |
98842516 | 10814 | @{ |
5b066063 AD |
10815 | yyin = fopen (file, "r"); |
10816 | if (!yyin) | |
98842516 AD |
10817 | @{ |
10818 | perror ("fopen"); | |
10819 | exit (EXIT_FAILURE); | |
10820 | @} | |
10821 | @end group | |
10822 | @group | |
fa7e68c3 | 10823 | /* One token only. */ |
5b066063 | 10824 | yylex (); |
0e14ad77 | 10825 | if (fclose (yyin) != 0) |
98842516 AD |
10826 | @{ |
10827 | perror ("fclose"); | |
10828 | exit (EXIT_FAILURE); | |
10829 | @} | |
5b066063 | 10830 | return 0; |
98842516 AD |
10831 | @} |
10832 | @end group | |
5b066063 | 10833 | |
98842516 | 10834 | @group |
5b066063 | 10835 | int |
0e14ad77 | 10836 | main (void) |
98842516 | 10837 | @{ |
5b066063 AD |
10838 | yyparse ("input"); |
10839 | yyparse ("input"); | |
10840 | return 0; | |
98842516 AD |
10841 | @} |
10842 | @end group | |
10843 | @end example | |
5b066063 AD |
10844 | |
10845 | @noindent | |
10846 | If the file @file{input} contains | |
10847 | ||
ab8932bf | 10848 | @example |
5b066063 AD |
10849 | input:1: Hello, |
10850 | input:2: World! | |
ab8932bf | 10851 | @end example |
5b066063 AD |
10852 | |
10853 | @noindent | |
0e14ad77 | 10854 | then instead of getting the first line twice, you get: |
5b066063 AD |
10855 | |
10856 | @example | |
10857 | $ @kbd{flex -ofirst-line.c first-line.l} | |
10858 | $ @kbd{gcc -ofirst-line first-line.c -ll} | |
10859 | $ @kbd{./first-line} | |
10860 | input:1: Hello, | |
10861 | input:2: World! | |
10862 | @end example | |
10863 | ||
0e14ad77 PE |
10864 | Therefore, whenever you change @code{yyin}, you must tell the |
10865 | Lex-generated scanner to discard its current buffer and switch to the | |
10866 | new one. This depends upon your implementation of Lex; see its | |
10867 | documentation for more. For Flex, it suffices to call | |
10868 | @samp{YY_FLUSH_BUFFER} after each change to @code{yyin}. If your | |
10869 | Flex-generated scanner needs to read from several input streams to | |
10870 | handle features like include files, you might consider using Flex | |
10871 | functions like @samp{yy_switch_to_buffer} that manipulate multiple | |
10872 | input buffers. | |
5b066063 | 10873 | |
b165c324 AD |
10874 | If your Flex-generated scanner uses start conditions (@pxref{Start |
10875 | conditions, , Start conditions, flex, The Flex Manual}), you might | |
10876 | also want to reset the scanner's state, i.e., go back to the initial | |
10877 | start condition, through a call to @samp{BEGIN (0)}. | |
10878 | ||
fef4cb51 AD |
10879 | @node Strings are Destroyed |
10880 | @section Strings are Destroyed | |
10881 | ||
ab8932bf | 10882 | @quotation |
c7e441b4 | 10883 | My parser seems to destroy old strings, or maybe it loses track of |
fef4cb51 AD |
10884 | them. Instead of reporting @samp{"foo", "bar"}, it reports |
10885 | @samp{"bar", "bar"}, or even @samp{"foo\nbar", "bar"}. | |
ab8932bf | 10886 | @end quotation |
fef4cb51 AD |
10887 | |
10888 | This error is probably the single most frequent ``bug report'' sent to | |
10889 | Bison lists, but is only concerned with a misunderstanding of the role | |
8c5b881d | 10890 | of the scanner. Consider the following Lex code: |
fef4cb51 | 10891 | |
ab8932bf | 10892 | @example |
98842516 | 10893 | @group |
ab8932bf | 10894 | %@{ |
fef4cb51 AD |
10895 | #include <stdio.h> |
10896 | char *yylval = NULL; | |
ab8932bf | 10897 | %@} |
98842516 AD |
10898 | @end group |
10899 | @group | |
fef4cb51 AD |
10900 | %% |
10901 | .* yylval = yytext; return 1; | |
10902 | \n /* IGNORE */ | |
10903 | %% | |
98842516 AD |
10904 | @end group |
10905 | @group | |
fef4cb51 AD |
10906 | int |
10907 | main () | |
ab8932bf | 10908 | @{ |
fa7e68c3 | 10909 | /* Similar to using $1, $2 in a Bison action. */ |
fef4cb51 AD |
10910 | char *fst = (yylex (), yylval); |
10911 | char *snd = (yylex (), yylval); | |
10912 | printf ("\"%s\", \"%s\"\n", fst, snd); | |
10913 | return 0; | |
ab8932bf | 10914 | @} |
98842516 | 10915 | @end group |
ab8932bf | 10916 | @end example |
fef4cb51 AD |
10917 | |
10918 | If you compile and run this code, you get: | |
10919 | ||
10920 | @example | |
10921 | $ @kbd{flex -osplit-lines.c split-lines.l} | |
10922 | $ @kbd{gcc -osplit-lines split-lines.c -ll} | |
10923 | $ @kbd{printf 'one\ntwo\n' | ./split-lines} | |
10924 | "one | |
10925 | two", "two" | |
10926 | @end example | |
10927 | ||
10928 | @noindent | |
10929 | this is because @code{yytext} is a buffer provided for @emph{reading} | |
10930 | in the action, but if you want to keep it, you have to duplicate it | |
10931 | (e.g., using @code{strdup}). Note that the output may depend on how | |
10932 | your implementation of Lex handles @code{yytext}. For instance, when | |
10933 | given the Lex compatibility option @option{-l} (which triggers the | |
10934 | option @samp{%array}) Flex generates a different behavior: | |
10935 | ||
10936 | @example | |
10937 | $ @kbd{flex -l -osplit-lines.c split-lines.l} | |
10938 | $ @kbd{gcc -osplit-lines split-lines.c -ll} | |
10939 | $ @kbd{printf 'one\ntwo\n' | ./split-lines} | |
10940 | "two", "two" | |
10941 | @end example | |
10942 | ||
10943 | ||
2fa09258 AD |
10944 | @node Implementing Gotos/Loops |
10945 | @section Implementing Gotos/Loops | |
a06ea4aa | 10946 | |
ab8932bf | 10947 | @quotation |
a06ea4aa | 10948 | My simple calculator supports variables, assignments, and functions, |
2fa09258 | 10949 | but how can I implement gotos, or loops? |
ab8932bf | 10950 | @end quotation |
a06ea4aa AD |
10951 | |
10952 | Although very pedagogical, the examples included in the document blur | |
a1c84f45 | 10953 | the distinction to make between the parser---whose job is to recover |
a06ea4aa | 10954 | the structure of a text and to transmit it to subsequent modules of |
a1c84f45 | 10955 | the program---and the processing (such as the execution) of this |
a06ea4aa AD |
10956 | structure. This works well with so called straight line programs, |
10957 | i.e., precisely those that have a straightforward execution model: | |
10958 | execute simple instructions one after the others. | |
10959 | ||
10960 | @cindex abstract syntax tree | |
35430378 | 10961 | @cindex AST |
a06ea4aa AD |
10962 | If you want a richer model, you will probably need to use the parser |
10963 | to construct a tree that does represent the structure it has | |
10964 | recovered; this tree is usually called the @dfn{abstract syntax tree}, | |
35430378 | 10965 | or @dfn{AST} for short. Then, walking through this tree, |
a06ea4aa AD |
10966 | traversing it in various ways, will enable treatments such as its |
10967 | execution or its translation, which will result in an interpreter or a | |
10968 | compiler. | |
10969 | ||
10970 | This topic is way beyond the scope of this manual, and the reader is | |
10971 | invited to consult the dedicated literature. | |
10972 | ||
10973 | ||
ed2e6384 AD |
10974 | @node Multiple start-symbols |
10975 | @section Multiple start-symbols | |
10976 | ||
ab8932bf | 10977 | @quotation |
ed2e6384 AD |
10978 | I have several closely related grammars, and I would like to share their |
10979 | implementations. In fact, I could use a single grammar but with | |
10980 | multiple entry points. | |
ab8932bf | 10981 | @end quotation |
ed2e6384 AD |
10982 | |
10983 | Bison does not support multiple start-symbols, but there is a very | |
10984 | simple means to simulate them. If @code{foo} and @code{bar} are the two | |
10985 | pseudo start-symbols, then introduce two new tokens, say | |
10986 | @code{START_FOO} and @code{START_BAR}, and use them as switches from the | |
10987 | real start-symbol: | |
10988 | ||
10989 | @example | |
10990 | %token START_FOO START_BAR; | |
10991 | %start start; | |
de6be119 AD |
10992 | start: |
10993 | START_FOO foo | |
10994 | | START_BAR bar; | |
ed2e6384 AD |
10995 | @end example |
10996 | ||
10997 | These tokens prevents the introduction of new conflicts. As far as the | |
10998 | parser goes, that is all that is needed. | |
10999 | ||
11000 | Now the difficult part is ensuring that the scanner will send these | |
11001 | tokens first. If your scanner is hand-written, that should be | |
11002 | straightforward. If your scanner is generated by Lex, them there is | |
11003 | simple means to do it: recall that anything between @samp{%@{ ... %@}} | |
11004 | after the first @code{%%} is copied verbatim in the top of the generated | |
11005 | @code{yylex} function. Make sure a variable @code{start_token} is | |
11006 | available in the scanner (e.g., a global variable or using | |
11007 | @code{%lex-param} etc.), and use the following: | |
11008 | ||
11009 | @example | |
11010 | /* @r{Prologue.} */ | |
11011 | %% | |
11012 | %@{ | |
11013 | if (start_token) | |
11014 | @{ | |
11015 | int t = start_token; | |
11016 | start_token = 0; | |
11017 | return t; | |
11018 | @} | |
11019 | %@} | |
11020 | /* @r{The rules.} */ | |
11021 | @end example | |
11022 | ||
11023 | ||
55ba27be AD |
11024 | @node Secure? Conform? |
11025 | @section Secure? Conform? | |
11026 | ||
ab8932bf | 11027 | @quotation |
55ba27be | 11028 | Is Bison secure? Does it conform to POSIX? |
ab8932bf | 11029 | @end quotation |
55ba27be AD |
11030 | |
11031 | If you're looking for a guarantee or certification, we don't provide it. | |
11032 | However, Bison is intended to be a reliable program that conforms to the | |
35430378 | 11033 | POSIX specification for Yacc. If you run into problems, |
55ba27be AD |
11034 | please send us a bug report. |
11035 | ||
11036 | @node I can't build Bison | |
11037 | @section I can't build Bison | |
11038 | ||
ab8932bf | 11039 | @quotation |
8c5b881d PE |
11040 | I can't build Bison because @command{make} complains that |
11041 | @code{msgfmt} is not found. | |
55ba27be | 11042 | What should I do? |
ab8932bf | 11043 | @end quotation |
55ba27be AD |
11044 | |
11045 | Like most GNU packages with internationalization support, that feature | |
11046 | is turned on by default. If you have problems building in the @file{po} | |
11047 | subdirectory, it indicates that your system's internationalization | |
11048 | support is lacking. You can re-configure Bison with | |
11049 | @option{--disable-nls} to turn off this support, or you can install GNU | |
11050 | gettext from @url{ftp://ftp.gnu.org/gnu/gettext/} and re-configure | |
11051 | Bison. See the file @file{ABOUT-NLS} for more information. | |
11052 | ||
11053 | ||
11054 | @node Where can I find help? | |
11055 | @section Where can I find help? | |
11056 | ||
ab8932bf | 11057 | @quotation |
55ba27be | 11058 | I'm having trouble using Bison. Where can I find help? |
ab8932bf | 11059 | @end quotation |
55ba27be AD |
11060 | |
11061 | First, read this fine manual. Beyond that, you can send mail to | |
11062 | @email{help-bison@@gnu.org}. This mailing list is intended to be | |
11063 | populated with people who are willing to answer questions about using | |
11064 | and installing Bison. Please keep in mind that (most of) the people on | |
11065 | the list have aspects of their lives which are not related to Bison (!), | |
11066 | so you may not receive an answer to your question right away. This can | |
11067 | be frustrating, but please try not to honk them off; remember that any | |
11068 | help they provide is purely voluntary and out of the kindness of their | |
11069 | hearts. | |
11070 | ||
11071 | @node Bug Reports | |
11072 | @section Bug Reports | |
11073 | ||
ab8932bf | 11074 | @quotation |
55ba27be | 11075 | I found a bug. What should I include in the bug report? |
ab8932bf | 11076 | @end quotation |
55ba27be AD |
11077 | |
11078 | Before you send a bug report, make sure you are using the latest | |
11079 | version. Check @url{ftp://ftp.gnu.org/pub/gnu/bison/} or one of its | |
11080 | mirrors. Be sure to include the version number in your bug report. If | |
11081 | the bug is present in the latest version but not in a previous version, | |
11082 | try to determine the most recent version which did not contain the bug. | |
11083 | ||
11084 | If the bug is parser-related, you should include the smallest grammar | |
11085 | you can which demonstrates the bug. The grammar file should also be | |
11086 | complete (i.e., I should be able to run it through Bison without having | |
11087 | to edit or add anything). The smaller and simpler the grammar, the | |
11088 | easier it will be to fix the bug. | |
11089 | ||
11090 | Include information about your compilation environment, including your | |
11091 | operating system's name and version and your compiler's name and | |
11092 | version. If you have trouble compiling, you should also include a | |
11093 | transcript of the build session, starting with the invocation of | |
11094 | `configure'. Depending on the nature of the bug, you may be asked to | |
11095 | send additional files as well (such as `config.h' or `config.cache'). | |
11096 | ||
11097 | Patches are most welcome, but not required. That is, do not hesitate to | |
d6864e19 | 11098 | send a bug report just because you cannot provide a fix. |
55ba27be AD |
11099 | |
11100 | Send bug reports to @email{bug-bison@@gnu.org}. | |
11101 | ||
8405b70c PB |
11102 | @node More Languages |
11103 | @section More Languages | |
55ba27be | 11104 | |
ab8932bf | 11105 | @quotation |
8405b70c | 11106 | Will Bison ever have C++ and Java support? How about @var{insert your |
55ba27be | 11107 | favorite language here}? |
ab8932bf | 11108 | @end quotation |
55ba27be | 11109 | |
8405b70c | 11110 | C++ and Java support is there now, and is documented. We'd love to add other |
55ba27be AD |
11111 | languages; contributions are welcome. |
11112 | ||
11113 | @node Beta Testing | |
11114 | @section Beta Testing | |
11115 | ||
ab8932bf | 11116 | @quotation |
55ba27be | 11117 | What is involved in being a beta tester? |
ab8932bf | 11118 | @end quotation |
55ba27be AD |
11119 | |
11120 | It's not terribly involved. Basically, you would download a test | |
11121 | release, compile it, and use it to build and run a parser or two. After | |
11122 | that, you would submit either a bug report or a message saying that | |
11123 | everything is okay. It is important to report successes as well as | |
11124 | failures because test releases eventually become mainstream releases, | |
11125 | but only if they are adequately tested. If no one tests, development is | |
11126 | essentially halted. | |
11127 | ||
11128 | Beta testers are particularly needed for operating systems to which the | |
11129 | developers do not have easy access. They currently have easy access to | |
11130 | recent GNU/Linux and Solaris versions. Reports about other operating | |
11131 | systems are especially welcome. | |
11132 | ||
11133 | @node Mailing Lists | |
11134 | @section Mailing Lists | |
11135 | ||
ab8932bf | 11136 | @quotation |
55ba27be | 11137 | How do I join the help-bison and bug-bison mailing lists? |
ab8932bf | 11138 | @end quotation |
55ba27be AD |
11139 | |
11140 | See @url{http://lists.gnu.org/}. | |
a06ea4aa | 11141 | |
d1a1114f AD |
11142 | @c ================================================= Table of Symbols |
11143 | ||
342b8b6e | 11144 | @node Table of Symbols |
bfa74976 RS |
11145 | @appendix Bison Symbols |
11146 | @cindex Bison symbols, table of | |
11147 | @cindex symbols in Bison, table of | |
11148 | ||
18b519c0 | 11149 | @deffn {Variable} @@$ |
3ded9a63 | 11150 | In an action, the location of the left-hand side of the rule. |
7404cdf3 | 11151 | @xref{Tracking Locations}. |
18b519c0 | 11152 | @end deffn |
3ded9a63 | 11153 | |
18b519c0 | 11154 | @deffn {Variable} @@@var{n} |
7404cdf3 JD |
11155 | In an action, the location of the @var{n}-th symbol of the right-hand side |
11156 | of the rule. @xref{Tracking Locations}. | |
18b519c0 | 11157 | @end deffn |
3ded9a63 | 11158 | |
1f68dca5 | 11159 | @deffn {Variable} @@@var{name} |
7404cdf3 JD |
11160 | In an action, the location of a symbol addressed by name. @xref{Tracking |
11161 | Locations}. | |
1f68dca5 AR |
11162 | @end deffn |
11163 | ||
11164 | @deffn {Variable} @@[@var{name}] | |
7404cdf3 JD |
11165 | In an action, the location of a symbol addressed by name. @xref{Tracking |
11166 | Locations}. | |
1f68dca5 AR |
11167 | @end deffn |
11168 | ||
18b519c0 | 11169 | @deffn {Variable} $$ |
3ded9a63 AD |
11170 | In an action, the semantic value of the left-hand side of the rule. |
11171 | @xref{Actions}. | |
18b519c0 | 11172 | @end deffn |
3ded9a63 | 11173 | |
18b519c0 | 11174 | @deffn {Variable} $@var{n} |
3ded9a63 AD |
11175 | In an action, the semantic value of the @var{n}-th symbol of the |
11176 | right-hand side of the rule. @xref{Actions}. | |
18b519c0 | 11177 | @end deffn |
3ded9a63 | 11178 | |
1f68dca5 AR |
11179 | @deffn {Variable} $@var{name} |
11180 | In an action, the semantic value of a symbol addressed by name. | |
11181 | @xref{Actions}. | |
11182 | @end deffn | |
11183 | ||
11184 | @deffn {Variable} $[@var{name}] | |
11185 | In an action, the semantic value of a symbol addressed by name. | |
11186 | @xref{Actions}. | |
11187 | @end deffn | |
11188 | ||
dd8d9022 AD |
11189 | @deffn {Delimiter} %% |
11190 | Delimiter used to separate the grammar rule section from the | |
11191 | Bison declarations section or the epilogue. | |
11192 | @xref{Grammar Layout, ,The Overall Layout of a Bison Grammar}. | |
18b519c0 | 11193 | @end deffn |
bfa74976 | 11194 | |
dd8d9022 AD |
11195 | @c Don't insert spaces, or check the DVI output. |
11196 | @deffn {Delimiter} %@{@var{code}%@} | |
9913d6e4 JD |
11197 | All code listed between @samp{%@{} and @samp{%@}} is copied verbatim |
11198 | to the parser implementation file. Such code forms the prologue of | |
11199 | the grammar file. @xref{Grammar Outline, ,Outline of a Bison | |
dd8d9022 | 11200 | Grammar}. |
18b519c0 | 11201 | @end deffn |
bfa74976 | 11202 | |
dd8d9022 AD |
11203 | @deffn {Construct} /*@dots{}*/ |
11204 | Comment delimiters, as in C. | |
18b519c0 | 11205 | @end deffn |
bfa74976 | 11206 | |
dd8d9022 AD |
11207 | @deffn {Delimiter} : |
11208 | Separates a rule's result from its components. @xref{Rules, ,Syntax of | |
11209 | Grammar Rules}. | |
18b519c0 | 11210 | @end deffn |
bfa74976 | 11211 | |
dd8d9022 AD |
11212 | @deffn {Delimiter} ; |
11213 | Terminates a rule. @xref{Rules, ,Syntax of Grammar Rules}. | |
18b519c0 | 11214 | @end deffn |
bfa74976 | 11215 | |
dd8d9022 AD |
11216 | @deffn {Delimiter} | |
11217 | Separates alternate rules for the same result nonterminal. | |
11218 | @xref{Rules, ,Syntax of Grammar Rules}. | |
18b519c0 | 11219 | @end deffn |
bfa74976 | 11220 | |
12e35840 JD |
11221 | @deffn {Directive} <*> |
11222 | Used to define a default tagged @code{%destructor} or default tagged | |
11223 | @code{%printer}. | |
85894313 JD |
11224 | |
11225 | This feature is experimental. | |
11226 | More user feedback will help to determine whether it should become a permanent | |
11227 | feature. | |
11228 | ||
12e35840 JD |
11229 | @xref{Destructor Decl, , Freeing Discarded Symbols}. |
11230 | @end deffn | |
11231 | ||
3ebecc24 | 11232 | @deffn {Directive} <> |
12e35840 JD |
11233 | Used to define a default tagless @code{%destructor} or default tagless |
11234 | @code{%printer}. | |
85894313 JD |
11235 | |
11236 | This feature is experimental. | |
11237 | More user feedback will help to determine whether it should become a permanent | |
11238 | feature. | |
11239 | ||
12e35840 JD |
11240 | @xref{Destructor Decl, , Freeing Discarded Symbols}. |
11241 | @end deffn | |
11242 | ||
dd8d9022 AD |
11243 | @deffn {Symbol} $accept |
11244 | The predefined nonterminal whose only rule is @samp{$accept: @var{start} | |
11245 | $end}, where @var{start} is the start symbol. @xref{Start Decl, , The | |
11246 | Start-Symbol}. It cannot be used in the grammar. | |
18b519c0 | 11247 | @end deffn |
bfa74976 | 11248 | |
136a0f76 | 11249 | @deffn {Directive} %code @{@var{code}@} |
148d66d8 | 11250 | @deffnx {Directive} %code @var{qualifier} @{@var{code}@} |
406dec82 JD |
11251 | Insert @var{code} verbatim into the output parser source at the |
11252 | default location or at the location specified by @var{qualifier}. | |
8e6f2266 | 11253 | @xref{%code Summary}. |
9bc0dd67 | 11254 | @end deffn |
9bc0dd67 | 11255 | |
18b519c0 | 11256 | @deffn {Directive} %debug |
6deb4447 | 11257 | Equip the parser for debugging. @xref{Decl Summary}. |
18b519c0 | 11258 | @end deffn |
6deb4447 | 11259 | |
91d2c560 | 11260 | @ifset defaultprec |
22fccf95 PE |
11261 | @deffn {Directive} %default-prec |
11262 | Assign a precedence to rules that lack an explicit @samp{%prec} | |
11263 | modifier. @xref{Contextual Precedence, ,Context-Dependent | |
11264 | Precedence}. | |
39a06c25 | 11265 | @end deffn |
91d2c560 | 11266 | @end ifset |
39a06c25 | 11267 | |
6f04ee6c JD |
11268 | @deffn {Directive} %define @var{variable} |
11269 | @deffnx {Directive} %define @var{variable} @var{value} | |
11270 | @deffnx {Directive} %define @var{variable} "@var{value}" | |
2f4518a1 | 11271 | Define a variable to adjust Bison's behavior. @xref{%define Summary}. |
148d66d8 JD |
11272 | @end deffn |
11273 | ||
18b519c0 | 11274 | @deffn {Directive} %defines |
9913d6e4 JD |
11275 | Bison declaration to create a parser header file, which is usually |
11276 | meant for the scanner. @xref{Decl Summary}. | |
18b519c0 | 11277 | @end deffn |
6deb4447 | 11278 | |
02975b9a JD |
11279 | @deffn {Directive} %defines @var{defines-file} |
11280 | Same as above, but save in the file @var{defines-file}. | |
11281 | @xref{Decl Summary}. | |
11282 | @end deffn | |
11283 | ||
18b519c0 | 11284 | @deffn {Directive} %destructor |
258b75ca | 11285 | Specify how the parser should reclaim the memory associated to |
fa7e68c3 | 11286 | discarded symbols. @xref{Destructor Decl, , Freeing Discarded Symbols}. |
18b519c0 | 11287 | @end deffn |
72f889cc | 11288 | |
18b519c0 | 11289 | @deffn {Directive} %dprec |
676385e2 | 11290 | Bison declaration to assign a precedence to a rule that is used at parse |
c827f760 | 11291 | time to resolve reduce/reduce conflicts. @xref{GLR Parsers, ,Writing |
35430378 | 11292 | GLR Parsers}. |
18b519c0 | 11293 | @end deffn |
676385e2 | 11294 | |
dd8d9022 AD |
11295 | @deffn {Symbol} $end |
11296 | The predefined token marking the end of the token stream. It cannot be | |
11297 | used in the grammar. | |
11298 | @end deffn | |
11299 | ||
11300 | @deffn {Symbol} error | |
11301 | A token name reserved for error recovery. This token may be used in | |
11302 | grammar rules so as to allow the Bison parser to recognize an error in | |
11303 | the grammar without halting the process. In effect, a sentence | |
11304 | containing an error may be recognized as valid. On a syntax error, the | |
742e4900 JD |
11305 | token @code{error} becomes the current lookahead token. Actions |
11306 | corresponding to @code{error} are then executed, and the lookahead | |
dd8d9022 AD |
11307 | token is reset to the token that originally caused the violation. |
11308 | @xref{Error Recovery}. | |
18d192f0 AD |
11309 | @end deffn |
11310 | ||
18b519c0 | 11311 | @deffn {Directive} %error-verbose |
2a8d363a | 11312 | Bison declaration to request verbose, specific error message strings |
6f04ee6c | 11313 | when @code{yyerror} is called. @xref{Error Reporting}. |
18b519c0 | 11314 | @end deffn |
2a8d363a | 11315 | |
02975b9a | 11316 | @deffn {Directive} %file-prefix "@var{prefix}" |
72d2299c | 11317 | Bison declaration to set the prefix of the output files. @xref{Decl |
d8988b2f | 11318 | Summary}. |
18b519c0 | 11319 | @end deffn |
d8988b2f | 11320 | |
18b519c0 | 11321 | @deffn {Directive} %glr-parser |
35430378 JD |
11322 | Bison declaration to produce a GLR parser. @xref{GLR |
11323 | Parsers, ,Writing GLR Parsers}. | |
18b519c0 | 11324 | @end deffn |
676385e2 | 11325 | |
dd8d9022 AD |
11326 | @deffn {Directive} %initial-action |
11327 | Run user code before parsing. @xref{Initial Action Decl, , Performing Actions before Parsing}. | |
11328 | @end deffn | |
11329 | ||
e6e704dc JD |
11330 | @deffn {Directive} %language |
11331 | Specify the programming language for the generated parser. | |
11332 | @xref{Decl Summary}. | |
11333 | @end deffn | |
11334 | ||
18b519c0 | 11335 | @deffn {Directive} %left |
bfa74976 RS |
11336 | Bison declaration to assign left associativity to token(s). |
11337 | @xref{Precedence Decl, ,Operator Precedence}. | |
18b519c0 | 11338 | @end deffn |
bfa74976 | 11339 | |
feeb0eda | 11340 | @deffn {Directive} %lex-param @{@var{argument-declaration}@} |
2a8d363a AD |
11341 | Bison declaration to specifying an additional parameter that |
11342 | @code{yylex} should accept. @xref{Pure Calling,, Calling Conventions | |
11343 | for Pure Parsers}. | |
18b519c0 | 11344 | @end deffn |
2a8d363a | 11345 | |
18b519c0 | 11346 | @deffn {Directive} %merge |
676385e2 | 11347 | Bison declaration to assign a merging function to a rule. If there is a |
fae437e8 | 11348 | reduce/reduce conflict with a rule having the same merging function, the |
676385e2 | 11349 | function is applied to the two semantic values to get a single result. |
35430378 | 11350 | @xref{GLR Parsers, ,Writing GLR Parsers}. |
18b519c0 | 11351 | @end deffn |
676385e2 | 11352 | |
02975b9a | 11353 | @deffn {Directive} %name-prefix "@var{prefix}" |
4b3847c3 AD |
11354 | Obsoleted by the @code{%define} variable @code{api.prefix} (@pxref{Multiple |
11355 | Parsers, ,Multiple Parsers in the Same Program}). | |
11356 | ||
11357 | Rename the external symbols (variables and functions) used in the parser so | |
11358 | that they start with @var{prefix} instead of @samp{yy}. Contrary to | |
11359 | @code{api.prefix}, do no rename types and macros. | |
11360 | ||
11361 | The precise list of symbols renamed in C parsers is @code{yyparse}, | |
11362 | @code{yylex}, @code{yyerror}, @code{yynerrs}, @code{yylval}, @code{yychar}, | |
11363 | @code{yydebug}, and (if locations are used) @code{yylloc}. If you use a | |
11364 | push parser, @code{yypush_parse}, @code{yypull_parse}, @code{yypstate}, | |
11365 | @code{yypstate_new} and @code{yypstate_delete} will also be renamed. For | |
11366 | example, if you use @samp{%name-prefix "c_"}, the names become | |
11367 | @code{c_parse}, @code{c_lex}, and so on. For C++ parsers, see the | |
11368 | @code{%define namespace} documentation in this section. | |
18b519c0 | 11369 | @end deffn |
d8988b2f | 11370 | |
4b3847c3 | 11371 | |
91d2c560 | 11372 | @ifset defaultprec |
22fccf95 PE |
11373 | @deffn {Directive} %no-default-prec |
11374 | Do not assign a precedence to rules that lack an explicit @samp{%prec} | |
11375 | modifier. @xref{Contextual Precedence, ,Context-Dependent | |
11376 | Precedence}. | |
11377 | @end deffn | |
91d2c560 | 11378 | @end ifset |
22fccf95 | 11379 | |
18b519c0 | 11380 | @deffn {Directive} %no-lines |
931c7513 | 11381 | Bison declaration to avoid generating @code{#line} directives in the |
9913d6e4 | 11382 | parser implementation file. @xref{Decl Summary}. |
18b519c0 | 11383 | @end deffn |
931c7513 | 11384 | |
18b519c0 | 11385 | @deffn {Directive} %nonassoc |
9d9b8b70 | 11386 | Bison declaration to assign nonassociativity to token(s). |
bfa74976 | 11387 | @xref{Precedence Decl, ,Operator Precedence}. |
18b519c0 | 11388 | @end deffn |
bfa74976 | 11389 | |
02975b9a | 11390 | @deffn {Directive} %output "@var{file}" |
9913d6e4 JD |
11391 | Bison declaration to set the name of the parser implementation file. |
11392 | @xref{Decl Summary}. | |
18b519c0 | 11393 | @end deffn |
d8988b2f | 11394 | |
feeb0eda | 11395 | @deffn {Directive} %parse-param @{@var{argument-declaration}@} |
2a8d363a AD |
11396 | Bison declaration to specifying an additional parameter that |
11397 | @code{yyparse} should accept. @xref{Parser Function,, The Parser | |
11398 | Function @code{yyparse}}. | |
18b519c0 | 11399 | @end deffn |
2a8d363a | 11400 | |
18b519c0 | 11401 | @deffn {Directive} %prec |
bfa74976 RS |
11402 | Bison declaration to assign a precedence to a specific rule. |
11403 | @xref{Contextual Precedence, ,Context-Dependent Precedence}. | |
18b519c0 | 11404 | @end deffn |
bfa74976 | 11405 | |
18b519c0 | 11406 | @deffn {Directive} %pure-parser |
2f4518a1 JD |
11407 | Deprecated version of @code{%define api.pure} (@pxref{%define |
11408 | Summary,,api.pure}), for which Bison is more careful to warn about | |
11409 | unreasonable usage. | |
18b519c0 | 11410 | @end deffn |
bfa74976 | 11411 | |
b50d2359 | 11412 | @deffn {Directive} %require "@var{version}" |
9b8a5ce0 AD |
11413 | Require version @var{version} or higher of Bison. @xref{Require Decl, , |
11414 | Require a Version of Bison}. | |
b50d2359 AD |
11415 | @end deffn |
11416 | ||
18b519c0 | 11417 | @deffn {Directive} %right |
bfa74976 RS |
11418 | Bison declaration to assign right associativity to token(s). |
11419 | @xref{Precedence Decl, ,Operator Precedence}. | |
18b519c0 | 11420 | @end deffn |
bfa74976 | 11421 | |
e6e704dc JD |
11422 | @deffn {Directive} %skeleton |
11423 | Specify the skeleton to use; usually for development. | |
11424 | @xref{Decl Summary}. | |
11425 | @end deffn | |
11426 | ||
18b519c0 | 11427 | @deffn {Directive} %start |
704a47c4 AD |
11428 | Bison declaration to specify the start symbol. @xref{Start Decl, ,The |
11429 | Start-Symbol}. | |
18b519c0 | 11430 | @end deffn |
bfa74976 | 11431 | |
18b519c0 | 11432 | @deffn {Directive} %token |
bfa74976 RS |
11433 | Bison declaration to declare token(s) without specifying precedence. |
11434 | @xref{Token Decl, ,Token Type Names}. | |
18b519c0 | 11435 | @end deffn |
bfa74976 | 11436 | |
18b519c0 | 11437 | @deffn {Directive} %token-table |
9913d6e4 JD |
11438 | Bison declaration to include a token name table in the parser |
11439 | implementation file. @xref{Decl Summary}. | |
18b519c0 | 11440 | @end deffn |
931c7513 | 11441 | |
18b519c0 | 11442 | @deffn {Directive} %type |
704a47c4 AD |
11443 | Bison declaration to declare nonterminals. @xref{Type Decl, |
11444 | ,Nonterminal Symbols}. | |
18b519c0 | 11445 | @end deffn |
bfa74976 | 11446 | |
dd8d9022 AD |
11447 | @deffn {Symbol} $undefined |
11448 | The predefined token onto which all undefined values returned by | |
11449 | @code{yylex} are mapped. It cannot be used in the grammar, rather, use | |
11450 | @code{error}. | |
11451 | @end deffn | |
11452 | ||
18b519c0 | 11453 | @deffn {Directive} %union |
bfa74976 RS |
11454 | Bison declaration to specify several possible data types for semantic |
11455 | values. @xref{Union Decl, ,The Collection of Value Types}. | |
18b519c0 | 11456 | @end deffn |
bfa74976 | 11457 | |
dd8d9022 AD |
11458 | @deffn {Macro} YYABORT |
11459 | Macro to pretend that an unrecoverable syntax error has occurred, by | |
11460 | making @code{yyparse} return 1 immediately. The error reporting | |
11461 | function @code{yyerror} is not called. @xref{Parser Function, ,The | |
11462 | Parser Function @code{yyparse}}. | |
8405b70c PB |
11463 | |
11464 | For Java parsers, this functionality is invoked using @code{return YYABORT;} | |
11465 | instead. | |
dd8d9022 | 11466 | @end deffn |
3ded9a63 | 11467 | |
dd8d9022 AD |
11468 | @deffn {Macro} YYACCEPT |
11469 | Macro to pretend that a complete utterance of the language has been | |
11470 | read, by making @code{yyparse} return 0 immediately. | |
11471 | @xref{Parser Function, ,The Parser Function @code{yyparse}}. | |
8405b70c PB |
11472 | |
11473 | For Java parsers, this functionality is invoked using @code{return YYACCEPT;} | |
11474 | instead. | |
dd8d9022 | 11475 | @end deffn |
bfa74976 | 11476 | |
dd8d9022 | 11477 | @deffn {Macro} YYBACKUP |
742e4900 | 11478 | Macro to discard a value from the parser stack and fake a lookahead |
dd8d9022 | 11479 | token. @xref{Action Features, ,Special Features for Use in Actions}. |
18b519c0 | 11480 | @end deffn |
bfa74976 | 11481 | |
dd8d9022 | 11482 | @deffn {Variable} yychar |
32c29292 | 11483 | External integer variable that contains the integer value of the |
742e4900 | 11484 | lookahead token. (In a pure parser, it is a local variable within |
dd8d9022 AD |
11485 | @code{yyparse}.) Error-recovery rule actions may examine this variable. |
11486 | @xref{Action Features, ,Special Features for Use in Actions}. | |
18b519c0 | 11487 | @end deffn |
bfa74976 | 11488 | |
dd8d9022 AD |
11489 | @deffn {Variable} yyclearin |
11490 | Macro used in error-recovery rule actions. It clears the previous | |
742e4900 | 11491 | lookahead token. @xref{Error Recovery}. |
18b519c0 | 11492 | @end deffn |
bfa74976 | 11493 | |
dd8d9022 AD |
11494 | @deffn {Macro} YYDEBUG |
11495 | Macro to define to equip the parser with tracing code. @xref{Tracing, | |
11496 | ,Tracing Your Parser}. | |
18b519c0 | 11497 | @end deffn |
bfa74976 | 11498 | |
dd8d9022 AD |
11499 | @deffn {Variable} yydebug |
11500 | External integer variable set to zero by default. If @code{yydebug} | |
11501 | is given a nonzero value, the parser will output information on input | |
11502 | symbols and parser action. @xref{Tracing, ,Tracing Your Parser}. | |
18b519c0 | 11503 | @end deffn |
bfa74976 | 11504 | |
dd8d9022 AD |
11505 | @deffn {Macro} yyerrok |
11506 | Macro to cause parser to recover immediately to its normal mode | |
11507 | after a syntax error. @xref{Error Recovery}. | |
11508 | @end deffn | |
11509 | ||
11510 | @deffn {Macro} YYERROR | |
4a11b852 AD |
11511 | Cause an immediate syntax error. This statement initiates error |
11512 | recovery just as if the parser itself had detected an error; however, it | |
11513 | does not call @code{yyerror}, and does not print any message. If you | |
11514 | want to print an error message, call @code{yyerror} explicitly before | |
11515 | the @samp{YYERROR;} statement. @xref{Error Recovery}. | |
8405b70c PB |
11516 | |
11517 | For Java parsers, this functionality is invoked using @code{return YYERROR;} | |
11518 | instead. | |
dd8d9022 AD |
11519 | @end deffn |
11520 | ||
11521 | @deffn {Function} yyerror | |
11522 | User-supplied function to be called by @code{yyparse} on error. | |
11523 | @xref{Error Reporting, ,The Error | |
11524 | Reporting Function @code{yyerror}}. | |
11525 | @end deffn | |
11526 | ||
11527 | @deffn {Macro} YYERROR_VERBOSE | |
11528 | An obsolete macro that you define with @code{#define} in the prologue | |
11529 | to request verbose, specific error message strings | |
11530 | when @code{yyerror} is called. It doesn't matter what definition you | |
258cddbc AD |
11531 | use for @code{YYERROR_VERBOSE}, just whether you define it. |
11532 | Supported by the C skeletons only; using | |
6f04ee6c | 11533 | @code{%error-verbose} is preferred. @xref{Error Reporting}. |
dd8d9022 AD |
11534 | @end deffn |
11535 | ||
56d60c19 AD |
11536 | @deffn {Macro} YYFPRINTF |
11537 | Macro used to output run-time traces. | |
11538 | @xref{Enabling Traces}. | |
11539 | @end deffn | |
11540 | ||
dd8d9022 AD |
11541 | @deffn {Macro} YYINITDEPTH |
11542 | Macro for specifying the initial size of the parser stack. | |
1a059451 | 11543 | @xref{Memory Management}. |
dd8d9022 AD |
11544 | @end deffn |
11545 | ||
11546 | @deffn {Function} yylex | |
11547 | User-supplied lexical analyzer function, called with no arguments to get | |
11548 | the next token. @xref{Lexical, ,The Lexical Analyzer Function | |
11549 | @code{yylex}}. | |
11550 | @end deffn | |
11551 | ||
11552 | @deffn {Macro} YYLEX_PARAM | |
11553 | An obsolete macro for specifying an extra argument (or list of extra | |
32c29292 | 11554 | arguments) for @code{yyparse} to pass to @code{yylex}. The use of this |
dd8d9022 AD |
11555 | macro is deprecated, and is supported only for Yacc like parsers. |
11556 | @xref{Pure Calling,, Calling Conventions for Pure Parsers}. | |
11557 | @end deffn | |
11558 | ||
11559 | @deffn {Variable} yylloc | |
11560 | External variable in which @code{yylex} should place the line and column | |
11561 | numbers associated with a token. (In a pure parser, it is a local | |
11562 | variable within @code{yyparse}, and its address is passed to | |
32c29292 JD |
11563 | @code{yylex}.) |
11564 | You can ignore this variable if you don't use the @samp{@@} feature in the | |
11565 | grammar actions. | |
11566 | @xref{Token Locations, ,Textual Locations of Tokens}. | |
742e4900 | 11567 | In semantic actions, it stores the location of the lookahead token. |
32c29292 | 11568 | @xref{Actions and Locations, ,Actions and Locations}. |
dd8d9022 AD |
11569 | @end deffn |
11570 | ||
11571 | @deffn {Type} YYLTYPE | |
11572 | Data type of @code{yylloc}; by default, a structure with four | |
11573 | members. @xref{Location Type, , Data Types of Locations}. | |
11574 | @end deffn | |
11575 | ||
11576 | @deffn {Variable} yylval | |
11577 | External variable in which @code{yylex} should place the semantic | |
11578 | value associated with a token. (In a pure parser, it is a local | |
11579 | variable within @code{yyparse}, and its address is passed to | |
32c29292 JD |
11580 | @code{yylex}.) |
11581 | @xref{Token Values, ,Semantic Values of Tokens}. | |
742e4900 | 11582 | In semantic actions, it stores the semantic value of the lookahead token. |
32c29292 | 11583 | @xref{Actions, ,Actions}. |
dd8d9022 AD |
11584 | @end deffn |
11585 | ||
11586 | @deffn {Macro} YYMAXDEPTH | |
1a059451 PE |
11587 | Macro for specifying the maximum size of the parser stack. @xref{Memory |
11588 | Management}. | |
dd8d9022 AD |
11589 | @end deffn |
11590 | ||
11591 | @deffn {Variable} yynerrs | |
8a2800e7 | 11592 | Global variable which Bison increments each time it reports a syntax error. |
f4101aa6 | 11593 | (In a pure parser, it is a local variable within @code{yyparse}. In a |
9987d1b3 | 11594 | pure push parser, it is a member of yypstate.) |
dd8d9022 AD |
11595 | @xref{Error Reporting, ,The Error Reporting Function @code{yyerror}}. |
11596 | @end deffn | |
11597 | ||
11598 | @deffn {Function} yyparse | |
11599 | The parser function produced by Bison; call this function to start | |
11600 | parsing. @xref{Parser Function, ,The Parser Function @code{yyparse}}. | |
11601 | @end deffn | |
11602 | ||
56d60c19 AD |
11603 | @deffn {Macro} YYPRINT |
11604 | Macro used to output token semantic values. For @file{yacc.c} only. | |
11605 | Obsoleted by @code{%printer}. | |
11606 | @xref{The YYPRINT Macro, , The @code{YYPRINT} Macro}. | |
11607 | @end deffn | |
11608 | ||
9987d1b3 | 11609 | @deffn {Function} yypstate_delete |
f4101aa6 | 11610 | The function to delete a parser instance, produced by Bison in push mode; |
9987d1b3 | 11611 | call this function to delete the memory associated with a parser. |
f4101aa6 | 11612 | @xref{Parser Delete Function, ,The Parser Delete Function |
9987d1b3 | 11613 | @code{yypstate_delete}}. |
59da312b JD |
11614 | (The current push parsing interface is experimental and may evolve. |
11615 | More user feedback will help to stabilize it.) | |
9987d1b3 JD |
11616 | @end deffn |
11617 | ||
11618 | @deffn {Function} yypstate_new | |
f4101aa6 | 11619 | The function to create a parser instance, produced by Bison in push mode; |
9987d1b3 | 11620 | call this function to create a new parser. |
f4101aa6 | 11621 | @xref{Parser Create Function, ,The Parser Create Function |
9987d1b3 | 11622 | @code{yypstate_new}}. |
59da312b JD |
11623 | (The current push parsing interface is experimental and may evolve. |
11624 | More user feedback will help to stabilize it.) | |
9987d1b3 JD |
11625 | @end deffn |
11626 | ||
11627 | @deffn {Function} yypull_parse | |
f4101aa6 AD |
11628 | The parser function produced by Bison in push mode; call this function to |
11629 | parse the rest of the input stream. | |
11630 | @xref{Pull Parser Function, ,The Pull Parser Function | |
9987d1b3 | 11631 | @code{yypull_parse}}. |
59da312b JD |
11632 | (The current push parsing interface is experimental and may evolve. |
11633 | More user feedback will help to stabilize it.) | |
9987d1b3 JD |
11634 | @end deffn |
11635 | ||
11636 | @deffn {Function} yypush_parse | |
f4101aa6 AD |
11637 | The parser function produced by Bison in push mode; call this function to |
11638 | parse a single token. @xref{Push Parser Function, ,The Push Parser Function | |
9987d1b3 | 11639 | @code{yypush_parse}}. |
59da312b JD |
11640 | (The current push parsing interface is experimental and may evolve. |
11641 | More user feedback will help to stabilize it.) | |
9987d1b3 JD |
11642 | @end deffn |
11643 | ||
dd8d9022 AD |
11644 | @deffn {Macro} YYPARSE_PARAM |
11645 | An obsolete macro for specifying the name of a parameter that | |
11646 | @code{yyparse} should accept. The use of this macro is deprecated, and | |
11647 | is supported only for Yacc like parsers. @xref{Pure Calling,, Calling | |
11648 | Conventions for Pure Parsers}. | |
11649 | @end deffn | |
11650 | ||
11651 | @deffn {Macro} YYRECOVERING | |
02103984 PE |
11652 | The expression @code{YYRECOVERING ()} yields 1 when the parser |
11653 | is recovering from a syntax error, and 0 otherwise. | |
11654 | @xref{Action Features, ,Special Features for Use in Actions}. | |
dd8d9022 AD |
11655 | @end deffn |
11656 | ||
11657 | @deffn {Macro} YYSTACK_USE_ALLOCA | |
34a6c2d1 JD |
11658 | Macro used to control the use of @code{alloca} when the |
11659 | deterministic parser in C needs to extend its stacks. If defined to 0, | |
d7e14fc0 PE |
11660 | the parser will use @code{malloc} to extend its stacks. If defined to |
11661 | 1, the parser will use @code{alloca}. Values other than 0 and 1 are | |
11662 | reserved for future Bison extensions. If not defined, | |
11663 | @code{YYSTACK_USE_ALLOCA} defaults to 0. | |
11664 | ||
55289366 | 11665 | In the all-too-common case where your code may run on a host with a |
d7e14fc0 PE |
11666 | limited stack and with unreliable stack-overflow checking, you should |
11667 | set @code{YYMAXDEPTH} to a value that cannot possibly result in | |
11668 | unchecked stack overflow on any of your target hosts when | |
11669 | @code{alloca} is called. You can inspect the code that Bison | |
11670 | generates in order to determine the proper numeric values. This will | |
11671 | require some expertise in low-level implementation details. | |
dd8d9022 AD |
11672 | @end deffn |
11673 | ||
11674 | @deffn {Type} YYSTYPE | |
11675 | Data type of semantic values; @code{int} by default. | |
11676 | @xref{Value Type, ,Data Types of Semantic Values}. | |
18b519c0 | 11677 | @end deffn |
bfa74976 | 11678 | |
342b8b6e | 11679 | @node Glossary |
bfa74976 RS |
11680 | @appendix Glossary |
11681 | @cindex glossary | |
11682 | ||
11683 | @table @asis | |
6f04ee6c | 11684 | @item Accepting state |
34a6c2d1 JD |
11685 | A state whose only action is the accept action. |
11686 | The accepting state is thus a consistent state. | |
11687 | @xref{Understanding,,}. | |
11688 | ||
35430378 | 11689 | @item Backus-Naur Form (BNF; also called ``Backus Normal Form'') |
c827f760 PE |
11690 | Formal method of specifying context-free grammars originally proposed |
11691 | by John Backus, and slightly improved by Peter Naur in his 1960-01-02 | |
11692 | committee document contributing to what became the Algol 60 report. | |
11693 | @xref{Language and Grammar, ,Languages and Context-Free Grammars}. | |
bfa74976 | 11694 | |
6f04ee6c JD |
11695 | @item Consistent state |
11696 | A state containing only one possible action. @xref{Default Reductions}. | |
34a6c2d1 | 11697 | |
bfa74976 RS |
11698 | @item Context-free grammars |
11699 | Grammars specified as rules that can be applied regardless of context. | |
11700 | Thus, if there is a rule which says that an integer can be used as an | |
11701 | expression, integers are allowed @emph{anywhere} an expression is | |
89cab50d AD |
11702 | permitted. @xref{Language and Grammar, ,Languages and Context-Free |
11703 | Grammars}. | |
bfa74976 | 11704 | |
6f04ee6c | 11705 | @item Default reduction |
620b5727 | 11706 | The reduction that a parser should perform if the current parser state |
2f4518a1 | 11707 | contains no other action for the lookahead token. In permitted parser |
6f04ee6c JD |
11708 | states, Bison declares the reduction with the largest lookahead set to be |
11709 | the default reduction and removes that lookahead set. @xref{Default | |
11710 | Reductions}. | |
11711 | ||
11712 | @item Defaulted state | |
11713 | A consistent state with a default reduction. @xref{Default Reductions}. | |
34a6c2d1 | 11714 | |
bfa74976 RS |
11715 | @item Dynamic allocation |
11716 | Allocation of memory that occurs during execution, rather than at | |
11717 | compile time or on entry to a function. | |
11718 | ||
11719 | @item Empty string | |
11720 | Analogous to the empty set in set theory, the empty string is a | |
11721 | character string of length zero. | |
11722 | ||
11723 | @item Finite-state stack machine | |
11724 | A ``machine'' that has discrete states in which it is said to exist at | |
11725 | each instant in time. As input to the machine is processed, the | |
11726 | machine moves from state to state as specified by the logic of the | |
11727 | machine. In the case of the parser, the input is the language being | |
11728 | parsed, and the states correspond to various stages in the grammar | |
c827f760 | 11729 | rules. @xref{Algorithm, ,The Bison Parser Algorithm}. |
bfa74976 | 11730 | |
35430378 | 11731 | @item Generalized LR (GLR) |
676385e2 | 11732 | A parsing algorithm that can handle all context-free grammars, including those |
35430378 | 11733 | that are not LR(1). It resolves situations that Bison's |
34a6c2d1 | 11734 | deterministic parsing |
676385e2 PH |
11735 | algorithm cannot by effectively splitting off multiple parsers, trying all |
11736 | possible parsers, and discarding those that fail in the light of additional | |
c827f760 | 11737 | right context. @xref{Generalized LR Parsing, ,Generalized |
35430378 | 11738 | LR Parsing}. |
676385e2 | 11739 | |
bfa74976 RS |
11740 | @item Grouping |
11741 | A language construct that is (in general) grammatically divisible; | |
c827f760 | 11742 | for example, `expression' or `declaration' in C@. |
bfa74976 RS |
11743 | @xref{Language and Grammar, ,Languages and Context-Free Grammars}. |
11744 | ||
6f04ee6c JD |
11745 | @item IELR(1) (Inadequacy Elimination LR(1)) |
11746 | A minimal LR(1) parser table construction algorithm. That is, given any | |
2f4518a1 | 11747 | context-free grammar, IELR(1) generates parser tables with the full |
6f04ee6c JD |
11748 | language-recognition power of canonical LR(1) but with nearly the same |
11749 | number of parser states as LALR(1). This reduction in parser states is | |
11750 | often an order of magnitude. More importantly, because canonical LR(1)'s | |
11751 | extra parser states may contain duplicate conflicts in the case of non-LR(1) | |
11752 | grammars, the number of conflicts for IELR(1) is often an order of magnitude | |
11753 | less as well. This can significantly reduce the complexity of developing a | |
11754 | grammar. @xref{LR Table Construction}. | |
34a6c2d1 | 11755 | |
bfa74976 RS |
11756 | @item Infix operator |
11757 | An arithmetic operator that is placed between the operands on which it | |
11758 | performs some operation. | |
11759 | ||
11760 | @item Input stream | |
11761 | A continuous flow of data between devices or programs. | |
11762 | ||
35430378 | 11763 | @item LAC (Lookahead Correction) |
4c38b19e | 11764 | A parsing mechanism that fixes the problem of delayed syntax error |
6f04ee6c JD |
11765 | detection, which is caused by LR state merging, default reductions, and the |
11766 | use of @code{%nonassoc}. Delayed syntax error detection results in | |
11767 | unexpected semantic actions, initiation of error recovery in the wrong | |
11768 | syntactic context, and an incorrect list of expected tokens in a verbose | |
11769 | syntax error message. @xref{LAC}. | |
4c38b19e | 11770 | |
bfa74976 RS |
11771 | @item Language construct |
11772 | One of the typical usage schemas of the language. For example, one of | |
11773 | the constructs of the C language is the @code{if} statement. | |
11774 | @xref{Language and Grammar, ,Languages and Context-Free Grammars}. | |
11775 | ||
11776 | @item Left associativity | |
11777 | Operators having left associativity are analyzed from left to right: | |
11778 | @samp{a+b+c} first computes @samp{a+b} and then combines with | |
11779 | @samp{c}. @xref{Precedence, ,Operator Precedence}. | |
11780 | ||
11781 | @item Left recursion | |
89cab50d AD |
11782 | A rule whose result symbol is also its first component symbol; for |
11783 | example, @samp{expseq1 : expseq1 ',' exp;}. @xref{Recursion, ,Recursive | |
11784 | Rules}. | |
bfa74976 RS |
11785 | |
11786 | @item Left-to-right parsing | |
11787 | Parsing a sentence of a language by analyzing it token by token from | |
c827f760 | 11788 | left to right. @xref{Algorithm, ,The Bison Parser Algorithm}. |
bfa74976 RS |
11789 | |
11790 | @item Lexical analyzer (scanner) | |
11791 | A function that reads an input stream and returns tokens one by one. | |
11792 | @xref{Lexical, ,The Lexical Analyzer Function @code{yylex}}. | |
11793 | ||
11794 | @item Lexical tie-in | |
11795 | A flag, set by actions in the grammar rules, which alters the way | |
11796 | tokens are parsed. @xref{Lexical Tie-ins}. | |
11797 | ||
931c7513 | 11798 | @item Literal string token |
14ded682 | 11799 | A token which consists of two or more fixed characters. @xref{Symbols}. |
931c7513 | 11800 | |
742e4900 JD |
11801 | @item Lookahead token |
11802 | A token already read but not yet shifted. @xref{Lookahead, ,Lookahead | |
89cab50d | 11803 | Tokens}. |
bfa74976 | 11804 | |
35430378 | 11805 | @item LALR(1) |
bfa74976 | 11806 | The class of context-free grammars that Bison (like most other parser |
35430378 | 11807 | generators) can handle by default; a subset of LR(1). |
5da0355a | 11808 | @xref{Mysterious Conflicts}. |
bfa74976 | 11809 | |
35430378 | 11810 | @item LR(1) |
bfa74976 | 11811 | The class of context-free grammars in which at most one token of |
742e4900 | 11812 | lookahead is needed to disambiguate the parsing of any piece of input. |
bfa74976 RS |
11813 | |
11814 | @item Nonterminal symbol | |
11815 | A grammar symbol standing for a grammatical construct that can | |
11816 | be expressed through rules in terms of smaller constructs; in other | |
11817 | words, a construct that is not a token. @xref{Symbols}. | |
11818 | ||
bfa74976 RS |
11819 | @item Parser |
11820 | A function that recognizes valid sentences of a language by analyzing | |
11821 | the syntax structure of a set of tokens passed to it from a lexical | |
11822 | analyzer. | |
11823 | ||
11824 | @item Postfix operator | |
11825 | An arithmetic operator that is placed after the operands upon which it | |
11826 | performs some operation. | |
11827 | ||
11828 | @item Reduction | |
11829 | Replacing a string of nonterminals and/or terminals with a single | |
89cab50d | 11830 | nonterminal, according to a grammar rule. @xref{Algorithm, ,The Bison |
c827f760 | 11831 | Parser Algorithm}. |
bfa74976 RS |
11832 | |
11833 | @item Reentrant | |
11834 | A reentrant subprogram is a subprogram which can be in invoked any | |
11835 | number of times in parallel, without interference between the various | |
11836 | invocations. @xref{Pure Decl, ,A Pure (Reentrant) Parser}. | |
11837 | ||
11838 | @item Reverse polish notation | |
11839 | A language in which all operators are postfix operators. | |
11840 | ||
11841 | @item Right recursion | |
89cab50d AD |
11842 | A rule whose result symbol is also its last component symbol; for |
11843 | example, @samp{expseq1: exp ',' expseq1;}. @xref{Recursion, ,Recursive | |
11844 | Rules}. | |
bfa74976 RS |
11845 | |
11846 | @item Semantics | |
11847 | In computer languages, the semantics are specified by the actions | |
11848 | taken for each instance of the language, i.e., the meaning of | |
11849 | each statement. @xref{Semantics, ,Defining Language Semantics}. | |
11850 | ||
11851 | @item Shift | |
11852 | A parser is said to shift when it makes the choice of analyzing | |
11853 | further input from the stream rather than reducing immediately some | |
c827f760 | 11854 | already-recognized rule. @xref{Algorithm, ,The Bison Parser Algorithm}. |
bfa74976 RS |
11855 | |
11856 | @item Single-character literal | |
11857 | A single character that is recognized and interpreted as is. | |
11858 | @xref{Grammar in Bison, ,From Formal Rules to Bison Input}. | |
11859 | ||
11860 | @item Start symbol | |
11861 | The nonterminal symbol that stands for a complete valid utterance in | |
11862 | the language being parsed. The start symbol is usually listed as the | |
13863333 | 11863 | first nonterminal symbol in a language specification. |
bfa74976 RS |
11864 | @xref{Start Decl, ,The Start-Symbol}. |
11865 | ||
11866 | @item Symbol table | |
11867 | A data structure where symbol names and associated data are stored | |
11868 | during parsing to allow for recognition and use of existing | |
11869 | information in repeated uses of a symbol. @xref{Multi-function Calc}. | |
11870 | ||
6e649e65 PE |
11871 | @item Syntax error |
11872 | An error encountered during parsing of an input stream due to invalid | |
11873 | syntax. @xref{Error Recovery}. | |
11874 | ||
bfa74976 RS |
11875 | @item Token |
11876 | A basic, grammatically indivisible unit of a language. The symbol | |
11877 | that describes a token in the grammar is a terminal symbol. | |
11878 | The input of the Bison parser is a stream of tokens which comes from | |
11879 | the lexical analyzer. @xref{Symbols}. | |
11880 | ||
11881 | @item Terminal symbol | |
89cab50d AD |
11882 | A grammar symbol that has no rules in the grammar and therefore is |
11883 | grammatically indivisible. The piece of text it represents is a token. | |
11884 | @xref{Language and Grammar, ,Languages and Context-Free Grammars}. | |
6f04ee6c JD |
11885 | |
11886 | @item Unreachable state | |
11887 | A parser state to which there does not exist a sequence of transitions from | |
11888 | the parser's start state. A state can become unreachable during conflict | |
11889 | resolution. @xref{Unreachable States}. | |
bfa74976 RS |
11890 | @end table |
11891 | ||
342b8b6e | 11892 | @node Copying This Manual |
f2b5126e | 11893 | @appendix Copying This Manual |
f2b5126e PB |
11894 | @include fdl.texi |
11895 | ||
71caec06 JD |
11896 | @node Bibliography |
11897 | @unnumbered Bibliography | |
11898 | ||
11899 | @table @asis | |
11900 | @item [Denny 2008] | |
11901 | Joel E. Denny and Brian A. Malloy, IELR(1): Practical LR(1) Parser Tables | |
11902 | for Non-LR(1) Grammars with Conflict Resolution, in @cite{Proceedings of the | |
11903 | 2008 ACM Symposium on Applied Computing} (SAC'08), ACM, New York, NY, USA, | |
11904 | pp.@: 240--245. @uref{http://dx.doi.org/10.1145/1363686.1363747} | |
11905 | ||
11906 | @item [Denny 2010 May] | |
11907 | Joel E. Denny, PSLR(1): Pseudo-Scannerless Minimal LR(1) for the | |
11908 | Deterministic Parsing of Composite Languages, Ph.D. Dissertation, Clemson | |
11909 | University, Clemson, SC, USA (May 2010). | |
11910 | @uref{http://proquest.umi.com/pqdlink?did=2041473591&Fmt=7&clientId=79356&RQT=309&VName=PQD} | |
11911 | ||
11912 | @item [Denny 2010 November] | |
11913 | Joel E. Denny and Brian A. Malloy, The IELR(1) Algorithm for Generating | |
11914 | Minimal LR(1) Parser Tables for Non-LR(1) Grammars with Conflict Resolution, | |
11915 | in @cite{Science of Computer Programming}, Vol.@: 75, Issue 11 (November | |
11916 | 2010), pp.@: 943--979. @uref{http://dx.doi.org/10.1016/j.scico.2009.08.001} | |
11917 | ||
11918 | @item [DeRemer 1982] | |
11919 | Frank DeRemer and Thomas Pennello, Efficient Computation of LALR(1) | |
11920 | Look-Ahead Sets, in @cite{ACM Transactions on Programming Languages and | |
11921 | Systems}, Vol.@: 4, No.@: 4 (October 1982), pp.@: | |
11922 | 615--649. @uref{http://dx.doi.org/10.1145/69622.357187} | |
11923 | ||
11924 | @item [Knuth 1965] | |
11925 | Donald E. Knuth, On the Translation of Languages from Left to Right, in | |
11926 | @cite{Information and Control}, Vol.@: 8, Issue 6 (December 1965), pp.@: | |
11927 | 607--639. @uref{http://dx.doi.org/10.1016/S0019-9958(65)90426-2} | |
11928 | ||
11929 | @item [Scott 2000] | |
11930 | Elizabeth Scott, Adrian Johnstone, and Shamsa Sadaf Hussain, | |
11931 | @cite{Tomita-Style Generalised LR Parsers}, Royal Holloway, University of | |
11932 | London, Department of Computer Science, TR-00-12 (December 2000). | |
11933 | @uref{http://www.cs.rhul.ac.uk/research/languages/publications/tomita_style_1.ps} | |
11934 | @end table | |
11935 | ||
f9b86351 AD |
11936 | @node Index of Terms |
11937 | @unnumbered Index of Terms | |
bfa74976 RS |
11938 | |
11939 | @printindex cp | |
11940 | ||
bfa74976 | 11941 | @bye |
a06ea4aa | 11942 | |
232be91a AD |
11943 | @c LocalWords: texinfo setfilename settitle setchapternewpage finalout texi FSF |
11944 | @c LocalWords: ifinfo smallbook shorttitlepage titlepage GPL FIXME iftex FSF's | |
11945 | @c LocalWords: akim fn cp syncodeindex vr tp synindex dircategory direntry Naur | |
11946 | @c LocalWords: ifset vskip pt filll insertcopying sp ISBN Etienne Suvasa Multi | |
11947 | @c LocalWords: ifnottex yyparse detailmenu GLR RPN Calc var Decls Rpcalc multi | |
11948 | @c LocalWords: rpcalc Lexer Expr ltcalc mfcalc yylex defaultprec Donnelly Gotos | |
11949 | @c LocalWords: yyerror pxref LR yylval cindex dfn LALR samp gpl BNF xref yypush | |
11950 | @c LocalWords: const int paren ifnotinfo AC noindent emph expr stmt findex lr | |
11951 | @c LocalWords: glr YYSTYPE TYPENAME prog dprec printf decl init stmtMerge POSIX | |
11952 | @c LocalWords: pre STDC GNUC endif yy YY alloca lf stddef stdlib YYDEBUG yypull | |
11953 | @c LocalWords: NUM exp subsubsection kbd Ctrl ctype EOF getchar isdigit nonfree | |
11954 | @c LocalWords: ungetc stdin scanf sc calc ulator ls lm cc NEG prec yyerrok rr | |
11955 | @c LocalWords: longjmp fprintf stderr yylloc YYLTYPE cos ln Stallman Destructor | |
56da1e52 | 11956 | @c LocalWords: symrec val tptr FNCT fnctptr func struct sym enum IEC syntaxes |
232be91a AD |
11957 | @c LocalWords: fnct putsym getsym fname arith fncts atan ptr malloc sizeof Lex |
11958 | @c LocalWords: strlen strcpy fctn strcmp isalpha symbuf realloc isalnum DOTDOT | |
11959 | @c LocalWords: ptypes itype YYPRINT trigraphs yytname expseq vindex dtype Unary | |
11960 | @c LocalWords: Rhs YYRHSLOC LE nonassoc op deffn typeless yynerrs nonterminal | |
11961 | @c LocalWords: yychar yydebug msg YYNTOKENS YYNNTS YYNRULES YYNSTATES reentrant | |
11962 | @c LocalWords: cparse clex deftypefun NE defmac YYACCEPT YYABORT param yypstate | |
11963 | @c LocalWords: strncmp intval tindex lvalp locp llocp typealt YYBACKUP subrange | |
11964 | @c LocalWords: YYEMPTY YYEOF YYRECOVERING yyclearin GE def UMINUS maybeword loc | |
11965 | @c LocalWords: Johnstone Shamsa Sadaf Hussain Tomita TR uref YYMAXDEPTH inline | |
56da1e52 | 11966 | @c LocalWords: YYINITDEPTH stmts ref initdcl maybeasm notype Lookahead yyoutput |
232be91a AD |
11967 | @c LocalWords: hexflag STR exdent itemset asis DYYDEBUG YYFPRINTF args Autoconf |
11968 | @c LocalWords: infile ypp yxx outfile itemx tex leaderfill Troubleshouting sqrt | |
11969 | @c LocalWords: hbox hss hfill tt ly yyin fopen fclose ofirst gcc ll lookahead | |
11970 | @c LocalWords: nbar yytext fst snd osplit ntwo strdup AST Troublereporting th | |
11971 | @c LocalWords: YYSTACK DVI fdl printindex IELR nondeterministic nonterminals ps | |
4c38b19e | 11972 | @c LocalWords: subexpressions declarator nondeferred config libintl postfix LAC |
56da1e52 AD |
11973 | @c LocalWords: preprocessor nonpositive unary nonnumeric typedef extern rhs sr |
11974 | @c LocalWords: yytokentype destructor multicharacter nonnull EBCDIC nterm LR's | |
232be91a | 11975 | @c LocalWords: lvalue nonnegative XNUM CHR chr TAGLESS tagless stdout api TOK |
56da1e52 | 11976 | @c LocalWords: destructors Reentrancy nonreentrant subgrammar nonassociative Ph |
232be91a AD |
11977 | @c LocalWords: deffnx namespace xml goto lalr ielr runtime lex yacc yyps env |
11978 | @c LocalWords: yystate variadic Unshift NLS gettext po UTF Automake LOCALEDIR | |
11979 | @c LocalWords: YYENABLE bindtextdomain Makefile DEFS CPPFLAGS DBISON DeRemer | |
56da1e52 | 11980 | @c LocalWords: autoreconf Pennello multisets nondeterminism Generalised baz ACM |
232be91a | 11981 | @c LocalWords: redeclare automata Dparse localedir datadir XSLT midrule Wno |
56da1e52 | 11982 | @c LocalWords: Graphviz multitable headitem hh basename Doxygen fno filename |
232be91a AD |
11983 | @c LocalWords: doxygen ival sval deftypemethod deallocate pos deftypemethodx |
11984 | @c LocalWords: Ctor defcv defcvx arg accessors arithmetics CPP ifndef CALCXX | |
11985 | @c LocalWords: lexer's calcxx bool LPAREN RPAREN deallocation cerrno climits | |
11986 | @c LocalWords: cstdlib Debian undef yywrap unput noyywrap nounput zA yyleng | |
56da1e52 | 11987 | @c LocalWords: errno strtol ERANGE str strerror iostream argc argv Javadoc PSLR |
232be91a AD |
11988 | @c LocalWords: bytecode initializers superclass stype ASTNode autoboxing nls |
11989 | @c LocalWords: toString deftypeivar deftypeivarx deftypeop YYParser strictfp | |
11990 | @c LocalWords: superclasses boolean getErrorVerbose setErrorVerbose deftypecv | |
11991 | @c LocalWords: getDebugStream setDebugStream getDebugLevel setDebugLevel url | |
5a05f42e | 11992 | @c LocalWords: bisonVersion deftypecvx bisonSkeleton getStartPos getEndPos uint |
56da1e52 | 11993 | @c LocalWords: getLVal defvar deftypefn deftypefnx gotos msgfmt Corbett LALR's |
5a05f42e AD |
11994 | @c LocalWords: subdirectory Solaris nonassociativity perror schemas Malloy ints |
11995 | @c LocalWords: Scannerless ispell american ChangeLog smallexample CSTYPE CLTYPE | |
7287be84 | 11996 | @c LocalWords: clval CDEBUG cdebug deftypeopx yyterminate LocationType |
b7226022 | 11997 | @c LocalWords: errorVerbose |
f3103c5b AD |
11998 | |
11999 | @c Local Variables: | |
12000 | @c ispell-dictionary: "american" | |
12001 | @c fill-column: 76 | |
12002 | @c End: |