]> git.saurik.com Git - bison.git/blob - doc/bison.info-3
* doc/bison.texinfo (Locations): Update @$ stuff.
[bison.git] / doc / bison.info-3
1 Ceci est le fichier Info bison.info, produit par Makeinfo version 4.0b
2 à partir bison.texinfo.
3
4 START-INFO-DIR-ENTRY
5 * bison: (bison). GNU Project parser generator (yacc replacement).
6 END-INFO-DIR-ENTRY
7
8 This file documents the Bison parser generator.
9
10 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1995, 1998, 1999,
11 2000 Free Software Foundation, Inc.
12
13 Permission is granted to make and distribute verbatim copies of this
14 manual provided the copyright notice and this permission notice are
15 preserved on all copies.
16
17 Permission is granted to copy and distribute modified versions of
18 this manual under the conditions for verbatim copying, provided also
19 that the sections entitled "GNU General Public License" and "Conditions
20 for Using Bison" are included exactly as in the original, and provided
21 that the entire resulting derived work is distributed under the terms
22 of a permission notice identical to this one.
23
24 Permission is granted to copy and distribute translations of this
25 manual into another language, under the above conditions for modified
26 versions, except that the sections entitled "GNU General Public
27 License", "Conditions for Using Bison" and this permission notice may be
28 included in translations approved by the Free Software Foundation
29 instead of in the original English.
30
31 \1f
32 File: bison.info, Node: Mid-Rule Actions, Prev: Action Types, Up: Semantics
33
34 Actions in Mid-Rule
35 -------------------
36
37 Occasionally it is useful to put an action in the middle of a rule.
38 These actions are written just like usual end-of-rule actions, but they
39 are executed before the parser even recognizes the following components.
40
41 A mid-rule action may refer to the components preceding it using
42 `$N', but it may not refer to subsequent components because it is run
43 before they are parsed.
44
45 The mid-rule action itself counts as one of the components of the
46 rule. This makes a difference when there is another action later in
47 the same rule (and usually there is another at the end): you have to
48 count the actions along with the symbols when working out which number
49 N to use in `$N'.
50
51 The mid-rule action can also have a semantic value. The action can
52 set its value with an assignment to `$$', and actions later in the rule
53 can refer to the value using `$N'. Since there is no symbol to name
54 the action, there is no way to declare a data type for the value in
55 advance, so you must use the `$<...>N' construct to specify a data type
56 each time you refer to this value.
57
58 There is no way to set the value of the entire rule with a mid-rule
59 action, because assignments to `$$' do not have that effect. The only
60 way to set the value for the entire rule is with an ordinary action at
61 the end of the rule.
62
63 Here is an example from a hypothetical compiler, handling a `let'
64 statement that looks like `let (VARIABLE) STATEMENT' and serves to
65 create a variable named VARIABLE temporarily for the duration of
66 STATEMENT. To parse this construct, we must put VARIABLE into the
67 symbol table while STATEMENT is parsed, then remove it afterward. Here
68 is how it is done:
69
70 stmt: LET '(' var ')'
71 { $<context>$ = push_context ();
72 declare_variable ($3); }
73 stmt { $$ = $6;
74 pop_context ($<context>5); }
75
76 As soon as `let (VARIABLE)' has been recognized, the first action is
77 run. It saves a copy of the current semantic context (the list of
78 accessible variables) as its semantic value, using alternative
79 `context' in the data-type union. Then it calls `declare_variable' to
80 add the new variable to that list. Once the first action is finished,
81 the embedded statement `stmt' can be parsed. Note that the mid-rule
82 action is component number 5, so the `stmt' is component number 6.
83
84 After the embedded statement is parsed, its semantic value becomes
85 the value of the entire `let'-statement. Then the semantic value from
86 the earlier action is used to restore the prior list of variables. This
87 removes the temporary `let'-variable from the list so that it won't
88 appear to exist while the rest of the program is parsed.
89
90 Taking action before a rule is completely recognized often leads to
91 conflicts since the parser must commit to a parse in order to execute
92 the action. For example, the following two rules, without mid-rule
93 actions, can coexist in a working parser because the parser can shift
94 the open-brace token and look at what follows before deciding whether
95 there is a declaration or not:
96
97 compound: '{' declarations statements '}'
98 | '{' statements '}'
99 ;
100
101 But when we add a mid-rule action as follows, the rules become
102 nonfunctional:
103
104 compound: { prepare_for_local_variables (); }
105 '{' declarations statements '}'
106 | '{' statements '}'
107 ;
108
109 Now the parser is forced to decide whether to run the mid-rule action
110 when it has read no farther than the open-brace. In other words, it
111 must commit to using one rule or the other, without sufficient
112 information to do it correctly. (The open-brace token is what is called
113 the "look-ahead" token at this time, since the parser is still deciding
114 what to do about it. *Note Look-Ahead Tokens: Look-Ahead.)
115
116 You might think that you could correct the problem by putting
117 identical actions into the two rules, like this:
118
119 compound: { prepare_for_local_variables (); }
120 '{' declarations statements '}'
121 | { prepare_for_local_variables (); }
122 '{' statements '}'
123 ;
124
125 But this does not help, because Bison does not realize that the two
126 actions are identical. (Bison never tries to understand the C code in
127 an action.)
128
129 If the grammar is such that a declaration can be distinguished from a
130 statement by the first token (which is true in C), then one solution
131 which does work is to put the action after the open-brace, like this:
132
133 compound: '{' { prepare_for_local_variables (); }
134 declarations statements '}'
135 | '{' statements '}'
136 ;
137
138 Now the first token of the following declaration or statement, which
139 would in any case tell Bison which rule to use, can still do so.
140
141 Another solution is to bury the action inside a nonterminal symbol
142 which serves as a subroutine:
143
144 subroutine: /* empty */
145 { prepare_for_local_variables (); }
146 ;
147
148 compound: subroutine
149 '{' declarations statements '}'
150 | subroutine
151 '{' statements '}'
152 ;
153
154 Now Bison can execute the action in the rule for `subroutine' without
155 deciding which rule for `compound' it will eventually use. Note that
156 the action is now at the end of its rule. Any mid-rule action can be
157 converted to an end-of-rule action in this way, and this is what Bison
158 actually does to implement mid-rule actions.
159
160 \1f
161 File: bison.info, Node: Locations, Next: Declarations, Prev: Semantics, Up: Grammar File
162
163 Tracking Locations
164 ==================
165
166 Though grammar rules and semantic actions are enough to write a fully
167 functional parser, it can be useful to process some additionnal
168 informations, especially locations of tokens and groupings.
169
170 The way locations are handled is defined by providing a data type,
171 and actions to take when rules are matched.
172
173 * Menu:
174
175 * Location Type:: Specifying a data type for locations.
176 * Actions and Locations:: Using locations in actions.
177 * Location Default Action:: Defining a general way to compute locations.
178
179 \1f
180 File: bison.info, Node: Location Type, Next: Actions and Locations, Up: Locations
181
182 Data Type of Locations
183 ----------------------
184
185 Defining a data type for locations is much simpler than for semantic
186 values, since all tokens and groupings always use the same type.
187
188 The type of locations is specified by defining a macro called
189 `YYLTYPE'. When `YYLTYPE' is not defined, Bison uses a default
190 structure type with four members:
191
192 struct
193 {
194 int first_line;
195 int first_column;
196 int last_line;
197 int last_column;
198 }
199
200 \1f
201 File: bison.info, Node: Actions and Locations, Next: Location Default Action, Prev: Location Type, Up: Locations
202
203 Actions and Locations
204 ---------------------
205
206 Actions are not only useful for defining language semantics, but
207 also for describing the behavior of the output parser with locations.
208
209 The most obvious way for building locations of syntactic groupings
210 is very similar to the way semantic values are computed. In a given
211 rule, several constructs can be used to access the locations of the
212 elements being matched. The location of the Nth component of the right
213 hand side is `@N', while the location of the left hand side grouping is
214 `@$'.
215
216 Here is a simple example using the default data type for locations:
217
218 exp: ...
219 | exp '+' exp
220 {
221 @$.last_column = @3.last_column;
222 @$.last_line = @3.last_line;
223 $$ = $1 + $3;
224 }
225
226 In the example above, there is no need to set the beginning of `@$'. The
227 output parser always sets `@$' to `@1' before executing the C code of a
228 given action, whether you provide a processing for locations or not.
229
230 \1f
231 File: bison.info, Node: Location Default Action, Prev: Actions and Locations, Up: Locations
232
233 Default Action for Locations
234 ----------------------------
235
236 Actually, actions are not the best place to compute locations. Since
237 locations are much more general than semantic values, there is room in
238 the output parser to define a default action to take for each rule. The
239 `YYLLOC_DEFAULT' macro is called each time a rule is matched, before
240 the associated action is run.
241
242 This macro takes two parameters, the first one being the location of
243 the grouping (the result of the computation), and the second one being
244 the location of the last element matched. Of course, before
245 `YYLLOC_DEFAULT' is run, the result is set to the location of the first
246 component matched.
247
248 By default, this macro computes a location that ranges from the
249 beginning of the first element to the end of the last element. It is
250 defined this way:
251
252 #define YYLLOC_DEFAULT(Current, Last) \
253 Current.last_line = Last.last_line; \
254 Current.last_column = Last.last_column;
255
256 Most of the time, the default action for locations is general enough to
257 suppress location dedicated code from most actions.
258
259 \1f
260 File: bison.info, Node: Declarations, Next: Multiple Parsers, Prev: Locations, Up: Grammar File
261
262 Bison Declarations
263 ==================
264
265 The "Bison declarations" section of a Bison grammar defines the
266 symbols used in formulating the grammar and the data types of semantic
267 values. *Note Symbols::.
268
269 All token type names (but not single-character literal tokens such as
270 `'+'' and `'*'') must be declared. Nonterminal symbols must be
271 declared if you need to specify which data type to use for the semantic
272 value (*note More Than One Value Type: Multiple Types.).
273
274 The first rule in the file also specifies the start symbol, by
275 default. If you want some other symbol to be the start symbol, you
276 must declare it explicitly (*note Languages and Context-Free Grammars:
277 Language and Grammar.).
278
279 * Menu:
280
281 * Token Decl:: Declaring terminal symbols.
282 * Precedence Decl:: Declaring terminals with precedence and associativity.
283 * Union Decl:: Declaring the set of all semantic value types.
284 * Type Decl:: Declaring the choice of type for a nonterminal symbol.
285 * Expect Decl:: Suppressing warnings about shift/reduce conflicts.
286 * Start Decl:: Specifying the start symbol.
287 * Pure Decl:: Requesting a reentrant parser.
288 * Decl Summary:: Table of all Bison declarations.
289
290 \1f
291 File: bison.info, Node: Token Decl, Next: Precedence Decl, Up: Declarations
292
293 Token Type Names
294 ----------------
295
296 The basic way to declare a token type name (terminal symbol) is as
297 follows:
298
299 %token NAME
300
301 Bison will convert this into a `#define' directive in the parser, so
302 that the function `yylex' (if it is in this file) can use the name NAME
303 to stand for this token type's code.
304
305 Alternatively, you can use `%left', `%right', or `%nonassoc' instead
306 of `%token', if you wish to specify associativity and precedence.
307 *Note Operator Precedence: Precedence Decl.
308
309 You can explicitly specify the numeric code for a token type by
310 appending an integer value in the field immediately following the token
311 name:
312
313 %token NUM 300
314
315 It is generally best, however, to let Bison choose the numeric codes for
316 all token types. Bison will automatically select codes that don't
317 conflict with each other or with ASCII characters.
318
319 In the event that the stack type is a union, you must augment the
320 `%token' or other token declaration to include the data type
321 alternative delimited by angle-brackets (*note More Than One Value
322 Type: Multiple Types.).
323
324 For example:
325
326 %union { /* define stack type */
327 double val;
328 symrec *tptr;
329 }
330 %token <val> NUM /* define token NUM and its type */
331
332 You can associate a literal string token with a token type name by
333 writing the literal string at the end of a `%token' declaration which
334 declares the name. For example:
335
336 %token arrow "=>"
337
338 For example, a grammar for the C language might specify these names with
339 equivalent literal string tokens:
340
341 %token <operator> OR "||"
342 %token <operator> LE 134 "<="
343 %left OR "<="
344
345 Once you equate the literal string and the token name, you can use them
346 interchangeably in further declarations or the grammar rules. The
347 `yylex' function can use the token name or the literal string to obtain
348 the token type code number (*note Calling Convention::).
349
350 \1f
351 File: bison.info, Node: Precedence Decl, Next: Union Decl, Prev: Token Decl, Up: Declarations
352
353 Operator Precedence
354 -------------------
355
356 Use the `%left', `%right' or `%nonassoc' declaration to declare a
357 token and specify its precedence and associativity, all at once. These
358 are called "precedence declarations". *Note Operator Precedence:
359 Precedence, for general information on operator precedence.
360
361 The syntax of a precedence declaration is the same as that of
362 `%token': either
363
364 %left SYMBOLS...
365
366 or
367
368 %left <TYPE> SYMBOLS...
369
370 And indeed any of these declarations serves the purposes of `%token'.
371 But in addition, they specify the associativity and relative precedence
372 for all the SYMBOLS:
373
374 * The associativity of an operator OP determines how repeated uses
375 of the operator nest: whether `X OP Y OP Z' is parsed by grouping
376 X with Y first or by grouping Y with Z first. `%left' specifies
377 left-associativity (grouping X with Y first) and `%right'
378 specifies right-associativity (grouping Y with Z first).
379 `%nonassoc' specifies no associativity, which means that `X OP Y
380 OP Z' is considered a syntax error.
381
382 * The precedence of an operator determines how it nests with other
383 operators. All the tokens declared in a single precedence
384 declaration have equal precedence and nest together according to
385 their associativity. When two tokens declared in different
386 precedence declarations associate, the one declared later has the
387 higher precedence and is grouped first.
388
389 \1f
390 File: bison.info, Node: Union Decl, Next: Type Decl, Prev: Precedence Decl, Up: Declarations
391
392 The Collection of Value Types
393 -----------------------------
394
395 The `%union' declaration specifies the entire collection of possible
396 data types for semantic values. The keyword `%union' is followed by a
397 pair of braces containing the same thing that goes inside a `union' in
398 C.
399
400 For example:
401
402 %union {
403 double val;
404 symrec *tptr;
405 }
406
407 This says that the two alternative types are `double' and `symrec *'.
408 They are given names `val' and `tptr'; these names are used in the
409 `%token' and `%type' declarations to pick one of the types for a
410 terminal or nonterminal symbol (*note Nonterminal Symbols: Type Decl.).
411
412 Note that, unlike making a `union' declaration in C, you do not write
413 a semicolon after the closing brace.
414
415 \1f
416 File: bison.info, Node: Type Decl, Next: Expect Decl, Prev: Union Decl, Up: Declarations
417
418 Nonterminal Symbols
419 -------------------
420
421 When you use `%union' to specify multiple value types, you must declare
422 the value type of each nonterminal symbol for which values are used.
423 This is done with a `%type' declaration, like this:
424
425 %type <TYPE> NONTERMINAL...
426
427 Here NONTERMINAL is the name of a nonterminal symbol, and TYPE is the
428 name given in the `%union' to the alternative that you want (*note The
429 Collection of Value Types: Union Decl.). You can give any number of
430 nonterminal symbols in the same `%type' declaration, if they have the
431 same value type. Use spaces to separate the symbol names.
432
433 You can also declare the value type of a terminal symbol. To do
434 this, use the same `<TYPE>' construction in a declaration for the
435 terminal symbol. All kinds of token declarations allow `<TYPE>'.
436
437 \1f
438 File: bison.info, Node: Expect Decl, Next: Start Decl, Prev: Type Decl, Up: Declarations
439
440 Suppressing Conflict Warnings
441 -----------------------------
442
443 Bison normally warns if there are any conflicts in the grammar
444 (*note Shift/Reduce Conflicts: Shift/Reduce.), but most real grammars
445 have harmless shift/reduce conflicts which are resolved in a
446 predictable way and would be difficult to eliminate. It is desirable
447 to suppress the warning about these conflicts unless the number of
448 conflicts changes. You can do this with the `%expect' declaration.
449
450 The declaration looks like this:
451
452 %expect N
453
454 Here N is a decimal integer. The declaration says there should be no
455 warning if there are N shift/reduce conflicts and no reduce/reduce
456 conflicts. The usual warning is given if there are either more or fewer
457 conflicts, or if there are any reduce/reduce conflicts.
458
459 In general, using `%expect' involves these steps:
460
461 * Compile your grammar without `%expect'. Use the `-v' option to
462 get a verbose list of where the conflicts occur. Bison will also
463 print the number of conflicts.
464
465 * Check each of the conflicts to make sure that Bison's default
466 resolution is what you really want. If not, rewrite the grammar
467 and go back to the beginning.
468
469 * Add an `%expect' declaration, copying the number N from the number
470 which Bison printed.
471
472 Now Bison will stop annoying you about the conflicts you have
473 checked, but it will warn you again if changes in the grammar result in
474 additional conflicts.
475
476 \1f
477 File: bison.info, Node: Start Decl, Next: Pure Decl, Prev: Expect Decl, Up: Declarations
478
479 The Start-Symbol
480 ----------------
481
482 Bison assumes by default that the start symbol for the grammar is
483 the first nonterminal specified in the grammar specification section.
484 The programmer may override this restriction with the `%start'
485 declaration as follows:
486
487 %start SYMBOL
488
489 \1f
490 File: bison.info, Node: Pure Decl, Next: Decl Summary, Prev: Start Decl, Up: Declarations
491
492 A Pure (Reentrant) Parser
493 -------------------------
494
495 A "reentrant" program is one which does not alter in the course of
496 execution; in other words, it consists entirely of "pure" (read-only)
497 code. Reentrancy is important whenever asynchronous execution is
498 possible; for example, a non-reentrant program may not be safe to call
499 from a signal handler. In systems with multiple threads of control, a
500 non-reentrant program must be called only within interlocks.
501
502 Normally, Bison generates a parser which is not reentrant. This is
503 suitable for most uses, and it permits compatibility with YACC. (The
504 standard YACC interfaces are inherently nonreentrant, because they use
505 statically allocated variables for communication with `yylex',
506 including `yylval' and `yylloc'.)
507
508 Alternatively, you can generate a pure, reentrant parser. The Bison
509 declaration `%pure_parser' says that you want the parser to be
510 reentrant. It looks like this:
511
512 %pure_parser
513
514 The result is that the communication variables `yylval' and `yylloc'
515 become local variables in `yyparse', and a different calling convention
516 is used for the lexical analyzer function `yylex'. *Note Calling
517 Conventions for Pure Parsers: Pure Calling, for the details of this.
518 The variable `yynerrs' also becomes local in `yyparse' (*note The Error
519 Reporting Function `yyerror': Error Reporting.). The convention for
520 calling `yyparse' itself is unchanged.
521
522 Whether the parser is pure has nothing to do with the grammar rules.
523 You can generate either a pure parser or a nonreentrant parser from any
524 valid grammar.
525
526 \1f
527 File: bison.info, Node: Decl Summary, Prev: Pure Decl, Up: Declarations
528
529 Bison Declaration Summary
530 -------------------------
531
532 Here is a summary of all Bison declarations:
533
534 `%union'
535 Declare the collection of data types that semantic values may have
536 (*note The Collection of Value Types: Union Decl.).
537
538 `%token'
539 Declare a terminal symbol (token type name) with no precedence or
540 associativity specified (*note Token Type Names: Token Decl.).
541
542 `%right'
543 Declare a terminal symbol (token type name) that is
544 right-associative (*note Operator Precedence: Precedence Decl.).
545
546 `%left'
547 Declare a terminal symbol (token type name) that is
548 left-associative (*note Operator Precedence: Precedence Decl.).
549
550 `%nonassoc'
551 Declare a terminal symbol (token type name) that is nonassociative
552 (using it in a way that would be associative is a syntax error)
553 (*note Operator Precedence: Precedence Decl.).
554
555 `%type'
556 Declare the type of semantic values for a nonterminal symbol
557 (*note Nonterminal Symbols: Type Decl.).
558
559 `%start'
560 Specify the grammar's start symbol (*note The Start-Symbol: Start
561 Decl.).
562
563 `%expect'
564 Declare the expected number of shift-reduce conflicts (*note
565 Suppressing Conflict Warnings: Expect Decl.).
566
567 `%yacc'
568 `%fixed_output_files'
569 Pretend the option `--yacc' was given, i.e., imitate Yacc,
570 including its naming conventions. *Note Bison Options::, for more.
571
572 `%locations'
573 Generate the code processing the locations (*note Special Features
574 for Use in Actions: Action Features.). This mode is enabled as
575 soon as the grammar uses the special `@N' tokens, but if your
576 grammar does not use it, using `%locations' allows for more
577 accurate parse error messages.
578
579 `%pure_parser'
580 Request a pure (reentrant) parser program (*note A Pure
581 (Reentrant) Parser: Pure Decl.).
582
583 `%no_parser'
584 Do not include any C code in the parser file; generate tables
585 only. The parser file contains just `#define' directives and
586 static variable declarations.
587
588 This option also tells Bison to write the C code for the grammar
589 actions into a file named `FILENAME.act', in the form of a
590 brace-surrounded body fit for a `switch' statement.
591
592 `%no_lines'
593 Don't generate any `#line' preprocessor commands in the parser
594 file. Ordinarily Bison writes these commands in the parser file
595 so that the C compiler and debuggers will associate errors and
596 object code with your source file (the grammar file). This
597 directive causes them to associate errors with the parser file,
598 treating it an independent source file in its own right.
599
600 `%debug'
601 Output a definition of the macro `YYDEBUG' into the parser file, so
602 that the debugging facilities are compiled. *Note Debugging Your
603 Parser: Debugging.
604
605 `%defines'
606 Write an extra output file containing macro definitions for the
607 token type names defined in the grammar and the semantic value type
608 `YYSTYPE', as well as a few `extern' variable declarations.
609
610 If the parser output file is named `NAME.c' then this file is
611 named `NAME.h'.
612
613 This output file is essential if you wish to put the definition of
614 `yylex' in a separate source file, because `yylex' needs to be
615 able to refer to token type codes and the variable `yylval'.
616 *Note Semantic Values of Tokens: Token Values.
617
618 `%verbose'
619 Write an extra output file containing verbose descriptions of the
620 parser states and what is done for each type of look-ahead token in
621 that state.
622
623 This file also describes all the conflicts, both those resolved by
624 operator precedence and the unresolved ones.
625
626 The file's name is made by removing `.tab.c' or `.c' from the
627 parser output file name, and adding `.output' instead.
628
629 Therefore, if the input file is `foo.y', then the parser file is
630 called `foo.tab.c' by default. As a consequence, the verbose
631 output file is called `foo.output'.
632
633 `%token_table'
634 Generate an array of token names in the parser file. The name of
635 the array is `yytname'; `yytname[I]' is the name of the token
636 whose internal Bison token code number is I. The first three
637 elements of `yytname' are always `"$"', `"error"', and
638 `"$illegal"'; after these come the symbols defined in the grammar
639 file.
640
641 For single-character literal tokens and literal string tokens, the
642 name in the table includes the single-quote or double-quote
643 characters: for example, `"'+'"' is a single-character literal and
644 `"\"<=\""' is a literal string token. All the characters of the
645 literal string token appear verbatim in the string found in the
646 table; even double-quote characters are not escaped. For example,
647 if the token consists of three characters `*"*', its string in
648 `yytname' contains `"*"*"'. (In C, that would be written as
649 `"\"*\"*\""').
650
651 When you specify `%token_table', Bison also generates macro
652 definitions for macros `YYNTOKENS', `YYNNTS', and `YYNRULES', and
653 `YYNSTATES':
654
655 `YYNTOKENS'
656 The highest token number, plus one.
657
658 `YYNNTS'
659 The number of nonterminal symbols.
660
661 `YYNRULES'
662 The number of grammar rules,
663
664 `YYNSTATES'
665 The number of parser states (*note Parser States::).
666
667 \1f
668 File: bison.info, Node: Multiple Parsers, Prev: Declarations, Up: Grammar File
669
670 Multiple Parsers in the Same Program
671 ====================================
672
673 Most programs that use Bison parse only one language and therefore
674 contain only one Bison parser. But what if you want to parse more than
675 one language with the same program? Then you need to avoid a name
676 conflict between different definitions of `yyparse', `yylval', and so
677 on.
678
679 The easy way to do this is to use the option `-p PREFIX' (*note
680 Invoking Bison: Invocation.). This renames the interface functions and
681 variables of the Bison parser to start with PREFIX instead of `yy'.
682 You can use this to give each parser distinct names that do not
683 conflict.
684
685 The precise list of symbols renamed is `yyparse', `yylex',
686 `yyerror', `yynerrs', `yylval', `yychar' and `yydebug'. For example,
687 if you use `-p c', the names become `cparse', `clex', and so on.
688
689 *All the other variables and macros associated with Bison are not
690 renamed.* These others are not global; there is no conflict if the same
691 name is used in different parsers. For example, `YYSTYPE' is not
692 renamed, but defining this in different ways in different parsers causes
693 no trouble (*note Data Types of Semantic Values: Value Type.).
694
695 The `-p' option works by adding macro definitions to the beginning
696 of the parser source file, defining `yyparse' as `PREFIXparse', and so
697 on. This effectively substitutes one name for the other in the entire
698 parser file.
699
700 \1f
701 File: bison.info, Node: Interface, Next: Algorithm, Prev: Grammar File, Up: Top
702
703 Parser C-Language Interface
704 ***************************
705
706 The Bison parser is actually a C function named `yyparse'. Here we
707 describe the interface conventions of `yyparse' and the other functions
708 that it needs to use.
709
710 Keep in mind that the parser uses many C identifiers starting with
711 `yy' and `YY' for internal purposes. If you use such an identifier
712 (aside from those in this manual) in an action or in additional C code
713 in the grammar file, you are likely to run into trouble.
714
715 * Menu:
716
717 * Parser Function:: How to call `yyparse' and what it returns.
718 * Lexical:: You must supply a function `yylex'
719 which reads tokens.
720 * Error Reporting:: You must supply a function `yyerror'.
721 * Action Features:: Special features for use in actions.
722
723 \1f
724 File: bison.info, Node: Parser Function, Next: Lexical, Up: Interface
725
726 The Parser Function `yyparse'
727 =============================
728
729 You call the function `yyparse' to cause parsing to occur. This
730 function reads tokens, executes actions, and ultimately returns when it
731 encounters end-of-input or an unrecoverable syntax error. You can also
732 write an action which directs `yyparse' to return immediately without
733 reading further.
734
735 The value returned by `yyparse' is 0 if parsing was successful
736 (return is due to end-of-input).
737
738 The value is 1 if parsing failed (return is due to a syntax error).
739
740 In an action, you can cause immediate return from `yyparse' by using
741 these macros:
742
743 `YYACCEPT'
744 Return immediately with value 0 (to report success).
745
746 `YYABORT'
747 Return immediately with value 1 (to report failure).
748
749 \1f
750 File: bison.info, Node: Lexical, Next: Error Reporting, Prev: Parser Function, Up: Interface
751
752 The Lexical Analyzer Function `yylex'
753 =====================================
754
755 The "lexical analyzer" function, `yylex', recognizes tokens from the
756 input stream and returns them to the parser. Bison does not create
757 this function automatically; you must write it so that `yyparse' can
758 call it. The function is sometimes referred to as a lexical scanner.
759
760 In simple programs, `yylex' is often defined at the end of the Bison
761 grammar file. If `yylex' is defined in a separate source file, you
762 need to arrange for the token-type macro definitions to be available
763 there. To do this, use the `-d' option when you run Bison, so that it
764 will write these macro definitions into a separate header file
765 `NAME.tab.h' which you can include in the other source files that need
766 it. *Note Invoking Bison: Invocation.
767
768 * Menu:
769
770 * Calling Convention:: How `yyparse' calls `yylex'.
771 * Token Values:: How `yylex' must return the semantic value
772 of the token it has read.
773 * Token Positions:: How `yylex' must return the text position
774 (line number, etc.) of the token, if the
775 actions want that.
776 * Pure Calling:: How the calling convention differs
777 in a pure parser (*note A Pure (Reentrant) Parser: Pure Decl.).
778
779 \1f
780 File: bison.info, Node: Calling Convention, Next: Token Values, Up: Lexical
781
782 Calling Convention for `yylex'
783 ------------------------------
784
785 The value that `yylex' returns must be the numeric code for the type
786 of token it has just found, or 0 for end-of-input.
787
788 When a token is referred to in the grammar rules by a name, that name
789 in the parser file becomes a C macro whose definition is the proper
790 numeric code for that token type. So `yylex' can use the name to
791 indicate that type. *Note Symbols::.
792
793 When a token is referred to in the grammar rules by a character
794 literal, the numeric code for that character is also the code for the
795 token type. So `yylex' can simply return that character code. The
796 null character must not be used this way, because its code is zero and
797 that is what signifies end-of-input.
798
799 Here is an example showing these things:
800
801 int
802 yylex (void)
803 {
804 ...
805 if (c == EOF) /* Detect end of file. */
806 return 0;
807 ...
808 if (c == '+' || c == '-')
809 return c; /* Assume token type for `+' is '+'. */
810 ...
811 return INT; /* Return the type of the token. */
812 ...
813 }
814
815 This interface has been designed so that the output from the `lex'
816 utility can be used without change as the definition of `yylex'.
817
818 If the grammar uses literal string tokens, there are two ways that
819 `yylex' can determine the token type codes for them:
820
821 * If the grammar defines symbolic token names as aliases for the
822 literal string tokens, `yylex' can use these symbolic names like
823 all others. In this case, the use of the literal string tokens in
824 the grammar file has no effect on `yylex'.
825
826 * `yylex' can find the multicharacter token in the `yytname' table.
827 The index of the token in the table is the token type's code. The
828 name of a multicharacter token is recorded in `yytname' with a
829 double-quote, the token's characters, and another double-quote.
830 The token's characters are not escaped in any way; they appear
831 verbatim in the contents of the string in the table.
832
833 Here's code for looking up a token in `yytname', assuming that the
834 characters of the token are stored in `token_buffer'.
835
836 for (i = 0; i < YYNTOKENS; i++)
837 {
838 if (yytname[i] != 0
839 && yytname[i][0] == '"'
840 && strncmp (yytname[i] + 1, token_buffer,
841 strlen (token_buffer))
842 && yytname[i][strlen (token_buffer) + 1] == '"'
843 && yytname[i][strlen (token_buffer) + 2] == 0)
844 break;
845 }
846
847 The `yytname' table is generated only if you use the
848 `%token_table' declaration. *Note Decl Summary::.
849
850 \1f
851 File: bison.info, Node: Token Values, Next: Token Positions, Prev: Calling Convention, Up: Lexical
852
853 Semantic Values of Tokens
854 -------------------------
855
856 In an ordinary (non-reentrant) parser, the semantic value of the
857 token must be stored into the global variable `yylval'. When you are
858 using just one data type for semantic values, `yylval' has that type.
859 Thus, if the type is `int' (the default), you might write this in
860 `yylex':
861
862 ...
863 yylval = value; /* Put value onto Bison stack. */
864 return INT; /* Return the type of the token. */
865 ...
866
867 When you are using multiple data types, `yylval''s type is a union
868 made from the `%union' declaration (*note The Collection of Value
869 Types: Union Decl.). So when you store a token's value, you must use
870 the proper member of the union. If the `%union' declaration looks like
871 this:
872
873 %union {
874 int intval;
875 double val;
876 symrec *tptr;
877 }
878
879 then the code in `yylex' might look like this:
880
881 ...
882 yylval.intval = value; /* Put value onto Bison stack. */
883 return INT; /* Return the type of the token. */
884 ...
885
886 \1f
887 File: bison.info, Node: Token Positions, Next: Pure Calling, Prev: Token Values, Up: Lexical
888
889 Textual Positions of Tokens
890 ---------------------------
891
892 If you are using the `@N'-feature (*note Tracking Locations:
893 Locations.) in actions to keep track of the textual locations of tokens
894 and groupings, then you must provide this information in `yylex'. The
895 function `yyparse' expects to find the textual location of a token just
896 parsed in the global variable `yylloc'. So `yylex' must store the
897 proper data in that variable.
898
899 By default, the value of `yylloc' is a structure and you need only
900 initialize the members that are going to be used by the actions. The
901 four members are called `first_line', `first_column', `last_line' and
902 `last_column'. Note that the use of this feature makes the parser
903 noticeably slower.
904
905 The data type of `yylloc' has the name `YYLTYPE'.
906
907 \1f
908 File: bison.info, Node: Pure Calling, Prev: Token Positions, Up: Lexical
909
910 Calling Conventions for Pure Parsers
911 ------------------------------------
912
913 When you use the Bison declaration `%pure_parser' to request a pure,
914 reentrant parser, the global communication variables `yylval' and
915 `yylloc' cannot be used. (*Note A Pure (Reentrant) Parser: Pure Decl.)
916 In such parsers the two global variables are replaced by pointers
917 passed as arguments to `yylex'. You must declare them as shown here,
918 and pass the information back by storing it through those pointers.
919
920 int
921 yylex (YYSTYPE *lvalp, YYLTYPE *llocp)
922 {
923 ...
924 *lvalp = value; /* Put value onto Bison stack. */
925 return INT; /* Return the type of the token. */
926 ...
927 }
928
929 If the grammar file does not use the `@' constructs to refer to
930 textual positions, then the type `YYLTYPE' will not be defined. In
931 this case, omit the second argument; `yylex' will be called with only
932 one argument.
933
934 If you use a reentrant parser, you can optionally pass additional
935 parameter information to it in a reentrant way. To do so, define the
936 macro `YYPARSE_PARAM' as a variable name. This modifies the `yyparse'
937 function to accept one argument, of type `void *', with that name.
938
939 When you call `yyparse', pass the address of an object, casting the
940 address to `void *'. The grammar actions can refer to the contents of
941 the object by casting the pointer value back to its proper type and
942 then dereferencing it. Here's an example. Write this in the parser:
943
944 %{
945 struct parser_control
946 {
947 int nastiness;
948 int randomness;
949 };
950
951 #define YYPARSE_PARAM parm
952 %}
953
954 Then call the parser like this:
955
956 struct parser_control
957 {
958 int nastiness;
959 int randomness;
960 };
961
962 ...
963
964 {
965 struct parser_control foo;
966 ... /* Store proper data in `foo'. */
967 value = yyparse ((void *) &foo);
968 ...
969 }
970
971 In the grammar actions, use expressions like this to refer to the data:
972
973 ((struct parser_control *) parm)->randomness
974
975 If you wish to pass the additional parameter data to `yylex', define
976 the macro `YYLEX_PARAM' just like `YYPARSE_PARAM', as shown here:
977
978 %{
979 struct parser_control
980 {
981 int nastiness;
982 int randomness;
983 };
984
985 #define YYPARSE_PARAM parm
986 #define YYLEX_PARAM parm
987 %}
988
989 You should then define `yylex' to accept one additional
990 argument--the value of `parm'. (This makes either two or three
991 arguments in total, depending on whether an argument of type `YYLTYPE'
992 is passed.) You can declare the argument as a pointer to the proper
993 object type, or you can declare it as `void *' and access the contents
994 as shown above.
995
996 You can use `%pure_parser' to request a reentrant parser without
997 also using `YYPARSE_PARAM'. Then you should call `yyparse' with no
998 arguments, as usual.
999
1000 \1f
1001 File: bison.info, Node: Error Reporting, Next: Action Features, Prev: Lexical, Up: Interface
1002
1003 The Error Reporting Function `yyerror'
1004 ======================================
1005
1006 The Bison parser detects a "parse error" or "syntax error" whenever
1007 it reads a token which cannot satisfy any syntax rule. An action in
1008 the grammar can also explicitly proclaim an error, using the macro
1009 `YYERROR' (*note Special Features for Use in Actions: Action Features.).
1010
1011 The Bison parser expects to report the error by calling an error
1012 reporting function named `yyerror', which you must supply. It is
1013 called by `yyparse' whenever a syntax error is found, and it receives
1014 one argument. For a parse error, the string is normally
1015 `"parse error"'.
1016
1017 If you define the macro `YYERROR_VERBOSE' in the Bison declarations
1018 section (*note The Bison Declarations Section: Bison Declarations.),
1019 then Bison provides a more verbose and specific error message string
1020 instead of just plain `"parse error"'. It doesn't matter what
1021 definition you use for `YYERROR_VERBOSE', just whether you define it.
1022
1023 The parser can detect one other kind of error: stack overflow. This
1024 happens when the input contains constructions that are very deeply
1025 nested. It isn't likely you will encounter this, since the Bison
1026 parser extends its stack automatically up to a very large limit. But
1027 if overflow happens, `yyparse' calls `yyerror' in the usual fashion,
1028 except that the argument string is `"parser stack overflow"'.
1029
1030 The following definition suffices in simple programs:
1031
1032 void
1033 yyerror (char *s)
1034 {
1035 fprintf (stderr, "%s\n", s);
1036 }
1037
1038 After `yyerror' returns to `yyparse', the latter will attempt error
1039 recovery if you have written suitable error recovery grammar rules
1040 (*note Error Recovery::). If recovery is impossible, `yyparse' will
1041 immediately return 1.
1042
1043 The variable `yynerrs' contains the number of syntax errors
1044 encountered so far. Normally this variable is global; but if you
1045 request a pure parser (*note A Pure (Reentrant) Parser: Pure Decl.)
1046 then it is a local variable which only the actions can access.
1047
1048 \1f
1049 File: bison.info, Node: Action Features, Prev: Error Reporting, Up: Interface
1050
1051 Special Features for Use in Actions
1052 ===================================
1053
1054 Here is a table of Bison constructs, variables and macros that are
1055 useful in actions.
1056
1057 `$$'
1058 Acts like a variable that contains the semantic value for the
1059 grouping made by the current rule. *Note Actions::.
1060
1061 `$N'
1062 Acts like a variable that contains the semantic value for the Nth
1063 component of the current rule. *Note Actions::.
1064
1065 `$<TYPEALT>$'
1066 Like `$$' but specifies alternative TYPEALT in the union specified
1067 by the `%union' declaration. *Note Data Types of Values in
1068 Actions: Action Types.
1069
1070 `$<TYPEALT>N'
1071 Like `$N' but specifies alternative TYPEALT in the union specified
1072 by the `%union' declaration. *Note Data Types of Values in
1073 Actions: Action Types.
1074
1075 `YYABORT;'
1076 Return immediately from `yyparse', indicating failure. *Note The
1077 Parser Function `yyparse': Parser Function.
1078
1079 `YYACCEPT;'
1080 Return immediately from `yyparse', indicating success. *Note The
1081 Parser Function `yyparse': Parser Function.
1082
1083 `YYBACKUP (TOKEN, VALUE);'
1084 Unshift a token. This macro is allowed only for rules that reduce
1085 a single value, and only when there is no look-ahead token. It
1086 installs a look-ahead token with token type TOKEN and semantic
1087 value VALUE; then it discards the value that was going to be
1088 reduced by this rule.
1089
1090 If the macro is used when it is not valid, such as when there is a
1091 look-ahead token already, then it reports a syntax error with a
1092 message `cannot back up' and performs ordinary error recovery.
1093
1094 In either case, the rest of the action is not executed.
1095
1096 `YYEMPTY'
1097 Value stored in `yychar' when there is no look-ahead token.
1098
1099 `YYERROR;'
1100 Cause an immediate syntax error. This statement initiates error
1101 recovery just as if the parser itself had detected an error;
1102 however, it does not call `yyerror', and does not print any
1103 message. If you want to print an error message, call `yyerror'
1104 explicitly before the `YYERROR;' statement. *Note Error
1105 Recovery::.
1106
1107 `YYRECOVERING'
1108 This macro stands for an expression that has the value 1 when the
1109 parser is recovering from a syntax error, and 0 the rest of the
1110 time. *Note Error Recovery::.
1111
1112 `yychar'
1113 Variable containing the current look-ahead token. (In a pure
1114 parser, this is actually a local variable within `yyparse'.) When
1115 there is no look-ahead token, the value `YYEMPTY' is stored in the
1116 variable. *Note Look-Ahead Tokens: Look-Ahead.
1117
1118 `yyclearin;'
1119 Discard the current look-ahead token. This is useful primarily in
1120 error rules. *Note Error Recovery::.
1121
1122 `yyerrok;'
1123 Resume generating error messages immediately for subsequent syntax
1124 errors. This is useful primarily in error rules. *Note Error
1125 Recovery::.
1126
1127 `@$'
1128 Acts like a structure variable containing information on the
1129 textual position of the grouping made by the current rule. *Note
1130 Tracking Locations: Locations.
1131
1132 `@N'
1133 Acts like a structure variable containing information on the
1134 textual position of the Nth component of the current rule. *Note
1135 Tracking Locations: Locations.
1136
1137 \1f
1138 File: bison.info, Node: Algorithm, Next: Error Recovery, Prev: Interface, Up: Top
1139
1140 The Bison Parser Algorithm
1141 **************************
1142
1143 As Bison reads tokens, it pushes them onto a stack along with their
1144 semantic values. The stack is called the "parser stack". Pushing a
1145 token is traditionally called "shifting".
1146
1147 For example, suppose the infix calculator has read `1 + 5 *', with a
1148 `3' to come. The stack will have four elements, one for each token
1149 that was shifted.
1150
1151 But the stack does not always have an element for each token read.
1152 When the last N tokens and groupings shifted match the components of a
1153 grammar rule, they can be combined according to that rule. This is
1154 called "reduction". Those tokens and groupings are replaced on the
1155 stack by a single grouping whose symbol is the result (left hand side)
1156 of that rule. Running the rule's action is part of the process of
1157 reduction, because this is what computes the semantic value of the
1158 resulting grouping.
1159
1160 For example, if the infix calculator's parser stack contains this:
1161
1162 1 + 5 * 3
1163
1164 and the next input token is a newline character, then the last three
1165 elements can be reduced to 15 via the rule:
1166
1167 expr: expr '*' expr;
1168
1169 Then the stack contains just these three elements:
1170
1171 1 + 15
1172
1173 At this point, another reduction can be made, resulting in the single
1174 value 16. Then the newline token can be shifted.
1175
1176 The parser tries, by shifts and reductions, to reduce the entire
1177 input down to a single grouping whose symbol is the grammar's
1178 start-symbol (*note Languages and Context-Free Grammars: Language and
1179 Grammar.).
1180
1181 This kind of parser is known in the literature as a bottom-up parser.
1182
1183 * Menu:
1184
1185 * Look-Ahead:: Parser looks one token ahead when deciding what to do.
1186 * Shift/Reduce:: Conflicts: when either shifting or reduction is valid.
1187 * Precedence:: Operator precedence works by resolving conflicts.
1188 * Contextual Precedence:: When an operator's precedence depends on context.
1189 * Parser States:: The parser is a finite-state-machine with stack.
1190 * Reduce/Reduce:: When two rules are applicable in the same situation.
1191 * Mystery Conflicts:: Reduce/reduce conflicts that look unjustified.
1192 * Stack Overflow:: What happens when stack gets full. How to avoid it.
1193
1194 \1f
1195 File: bison.info, Node: Look-Ahead, Next: Shift/Reduce, Up: Algorithm
1196
1197 Look-Ahead Tokens
1198 =================
1199
1200 The Bison parser does _not_ always reduce immediately as soon as the
1201 last N tokens and groupings match a rule. This is because such a
1202 simple strategy is inadequate to handle most languages. Instead, when a
1203 reduction is possible, the parser sometimes "looks ahead" at the next
1204 token in order to decide what to do.
1205
1206 When a token is read, it is not immediately shifted; first it
1207 becomes the "look-ahead token", which is not on the stack. Now the
1208 parser can perform one or more reductions of tokens and groupings on
1209 the stack, while the look-ahead token remains off to the side. When no
1210 more reductions should take place, the look-ahead token is shifted onto
1211 the stack. This does not mean that all possible reductions have been
1212 done; depending on the token type of the look-ahead token, some rules
1213 may choose to delay their application.
1214
1215 Here is a simple case where look-ahead is needed. These three rules
1216 define expressions which contain binary addition operators and postfix
1217 unary factorial operators (`!'), and allow parentheses for grouping.
1218
1219 expr: term '+' expr
1220 | term
1221 ;
1222
1223 term: '(' expr ')'
1224 | term '!'
1225 | NUMBER
1226 ;
1227
1228 Suppose that the tokens `1 + 2' have been read and shifted; what
1229 should be done? If the following token is `)', then the first three
1230 tokens must be reduced to form an `expr'. This is the only valid
1231 course, because shifting the `)' would produce a sequence of symbols
1232 `term ')'', and no rule allows this.
1233
1234 If the following token is `!', then it must be shifted immediately so
1235 that `2 !' can be reduced to make a `term'. If instead the parser were
1236 to reduce before shifting, `1 + 2' would become an `expr'. It would
1237 then be impossible to shift the `!' because doing so would produce on
1238 the stack the sequence of symbols `expr '!''. No rule allows that
1239 sequence.
1240
1241 The current look-ahead token is stored in the variable `yychar'.
1242 *Note Special Features for Use in Actions: Action Features.
1243
1244 \1f
1245 File: bison.info, Node: Shift/Reduce, Next: Precedence, Prev: Look-Ahead, Up: Algorithm
1246
1247 Shift/Reduce Conflicts
1248 ======================
1249
1250 Suppose we are parsing a language which has if-then and if-then-else
1251 statements, with a pair of rules like this:
1252
1253 if_stmt:
1254 IF expr THEN stmt
1255 | IF expr THEN stmt ELSE stmt
1256 ;
1257
1258 Here we assume that `IF', `THEN' and `ELSE' are terminal symbols for
1259 specific keyword tokens.
1260
1261 When the `ELSE' token is read and becomes the look-ahead token, the
1262 contents of the stack (assuming the input is valid) are just right for
1263 reduction by the first rule. But it is also legitimate to shift the
1264 `ELSE', because that would lead to eventual reduction by the second
1265 rule.
1266
1267 This situation, where either a shift or a reduction would be valid,
1268 is called a "shift/reduce conflict". Bison is designed to resolve
1269 these conflicts by choosing to shift, unless otherwise directed by
1270 operator precedence declarations. To see the reason for this, let's
1271 contrast it with the other alternative.
1272
1273 Since the parser prefers to shift the `ELSE', the result is to attach
1274 the else-clause to the innermost if-statement, making these two inputs
1275 equivalent:
1276
1277 if x then if y then win (); else lose;
1278
1279 if x then do; if y then win (); else lose; end;
1280
1281 But if the parser chose to reduce when possible rather than shift,
1282 the result would be to attach the else-clause to the outermost
1283 if-statement, making these two inputs equivalent:
1284
1285 if x then if y then win (); else lose;
1286
1287 if x then do; if y then win (); end; else lose;
1288
1289 The conflict exists because the grammar as written is ambiguous:
1290 either parsing of the simple nested if-statement is legitimate. The
1291 established convention is that these ambiguities are resolved by
1292 attaching the else-clause to the innermost if-statement; this is what
1293 Bison accomplishes by choosing to shift rather than reduce. (It would
1294 ideally be cleaner to write an unambiguous grammar, but that is very
1295 hard to do in this case.) This particular ambiguity was first
1296 encountered in the specifications of Algol 60 and is called the
1297 "dangling `else'" ambiguity.
1298
1299 To avoid warnings from Bison about predictable, legitimate
1300 shift/reduce conflicts, use the `%expect N' declaration. There will be
1301 no warning as long as the number of shift/reduce conflicts is exactly N.
1302 *Note Suppressing Conflict Warnings: Expect Decl.
1303
1304 The definition of `if_stmt' above is solely to blame for the
1305 conflict, but the conflict does not actually appear without additional
1306 rules. Here is a complete Bison input file that actually manifests the
1307 conflict:
1308
1309 %token IF THEN ELSE variable
1310 %%
1311 stmt: expr
1312 | if_stmt
1313 ;
1314
1315 if_stmt:
1316 IF expr THEN stmt
1317 | IF expr THEN stmt ELSE stmt
1318 ;
1319
1320 expr: variable
1321 ;
1322