1 # C++ skeleton for Bison
3 # Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 m4_include(b4_pkgdatadir
/[c
++.m4
])
21 b4_check_percent_code_qualifiers([[requires]], [[provides]], [[top]])
23 # The header is mandatory.
25 [b4_fatal([b4_skeleton
[: using %%defines is mandatory
]])])
27 # Backward compatibility.
28 m4_define([b4_location_constructors
])
29 m4_include(b4_pkgdatadir
/[location
.cc
])
31 # We do want M4 expansion after # for CPP macros.
35 [@
output(b4_spec_defines_file@
)
36 b4_copyright([Skeleton interface
for Bison
LALR(1) parsers in C
++],
37 [2002, 2003, 2004, 2005, 2006])
38 dnl FIXME
: This is wrong
, we want computed header guards
.
40 /* C++ LALR(1) parser skeleton written by Akim Demaille. */
42 #ifndef PARSER_HEADER_H
43 # define PARSER_HEADER_H
45 ]m4_ifdef([b4_percent_code_requires
],
46 [[/* Copy the %code "requires" blocks. */
47 ]b4_user_code([b4_percent_code_requires
])])[
53 namespace ]b4_namespace
[
59 #include "location.hh"
61 /* Enabling traces. */
63 # define YYDEBUG ]b4_debug_flag[
66 /* Enabling verbose error messages. */
67 #ifdef YYERROR_VERBOSE
68 # undef YYERROR_VERBOSE
69 # define YYERROR_VERBOSE 1
71 # define YYERROR_VERBOSE ]b4_error_verbose_flag[
74 /* Enabling the token table. */
76 # define YYTOKEN_TABLE ]b4_token_table[
79 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
80 If N is 0, then set CURRENT to the empty location which ends
81 the previous symbol: RHS[0] (always defined). */
83 #ifndef YYLLOC_DEFAULT
84 # define YYLLOC_DEFAULT(Current, Rhs, N) \
88 (Current).begin = (Rhs)[1].begin; \
89 (Current).end = (Rhs)[N].end; \
93 (Current).begin = (Current).end = (Rhs)[0].end; \
98 namespace ]b4_namespace
[
102 class ]b4_parser_class_name
[
105 /// Symbol semantic values.
107 ]m4_ifdef([b4_stype
],
108 [ union semantic_type
111 [m4_if(b4_tag_seen_flag
, 0,
112 [[ typedef int semantic_type
;]],
113 [[ typedef YYSTYPE semantic_type
;]])])[
115 typedef YYSTYPE semantic_type
;
117 /// Symbol locations.
118 typedef ]b4_location_type
[ location_type
;
122 ]b4_token_enums(b4_tokens
)[
125 typedef token::yytokentype token_type
;
127 /// Build a parser object.
128 ]b4_parser_class_name
[ (]b4_parse_param_decl
[);
129 virtual ~]b4_parser_class_name
[ ();
132 /// \returns 0 iff parsing succeeded.
133 virtual int parse ();
135 /// The current debugging stream.
136 std::ostream
& debug_stream () const;
137 /// Set the current debugging stream.
138 void set_debug_stream (std::ostream
&);
140 /// Type for debugging levels.
141 typedef int debug_level_type
;
142 /// The current debugging level.
143 debug_level_type
debug_level () const;
144 /// Set the current debugging level.
145 void set_debug_level (debug_level_type l
);
148 /// Report a syntax error.
149 /// \param loc where the syntax error is found.
150 /// \param msg a description of the syntax error.
151 virtual void error (const location_type
& loc
, const std::string
& msg
);
153 /// Generate an error message.
154 /// \param state the state where the error occurred.
155 /// \param tok the lookahead token.
156 virtual std::string
yysyntax_error_ (int yystate
]dnl
157 b4_error_verbose_if([, int tok
])[);
160 /// \brief Report a symbol value on the debug stream.
161 /// \param yytype The token type.
162 /// \param yyvaluep Its semantic value.
163 /// \param yylocationp Its location.
164 virtual void yy_symbol_value_print_ (int yytype
,
165 const semantic_type
* yyvaluep
,
166 const location_type
* yylocationp
);
167 /// \brief Report a symbol on the debug stream.
168 /// \param yytype The token type.
169 /// \param yyvaluep Its semantic value.
170 /// \param yylocationp Its location.
171 virtual void yy_symbol_print_ (int yytype
,
172 const semantic_type
* yyvaluep
,
173 const location_type
* yylocationp
);
178 typedef int state_type
;
179 /// State stack type.
180 typedef stack
<state_type
> state_stack_type
;
181 /// Semantic value stack type.
182 typedef stack
<semantic_type
> semantic_stack_type
;
183 /// location stack type.
184 typedef stack
<location_type
> location_stack_type
;
187 state_stack_type yystate_stack_
;
188 /// The semantic value stack.
189 semantic_stack_type yysemantic_stack_
;
190 /// The location stack.
191 location_stack_type yylocation_stack_
;
193 /// Internal symbol numbers.
194 typedef ]b4_int_type_for([b4_translate
])[ token_number_type
;
196 /// For a state, the index in \a yytable_ of its portion.
197 static const ]b4_int_type_for([b4_pact
])[ yypact_
[];
198 static const ]b4_int_type(b4_pact_ninf
, b4_pact_ninf
)[ yypact_ninf_
;
200 /// For a state, default rule to reduce.
201 /// Unless\a yytable_ specifies something else to do.
202 /// Zero means the default is an error.
203 static const ]b4_int_type_for([b4_defact
])[ yydefact_
[];
205 static const ]b4_int_type_for([b4_pgoto
])[ yypgoto_
[];
206 static const ]b4_int_type_for([b4_defgoto
])[ yydefgoto_
[];
208 /// What to do in a state.
209 /// \a yytable_[yypact_[s]]: what to do in state \a s.
210 /// - if positive, shift that token.
211 /// - if negative, reduce the rule which number is the opposite.
212 /// - if zero, do what YYDEFACT says.
213 static const ]b4_int_type_for([b4_table
])[ yytable_
[];
214 static const ]b4_int_type(b4_table_ninf
, b4_table_ninf
)[ yytable_ninf_
;
216 static const ]b4_int_type_for([b4_check
])[ yycheck_
[];
218 /// For a state, its accessing symbol.
219 static const ]b4_int_type_for([b4_stos
])[ yystos_
[];
221 /// For a rule, its LHS.
222 static const ]b4_int_type_for([b4_r1
])[ yyr1_
[];
223 /// For a rule, its RHS length.
224 static const ]b4_int_type_for([b4_r2
])[ yyr2_
[];
226 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
227 /// For a symbol, its name in clear.
228 static const char* const yytname_
[];
232 /// Convert the symbol name \a n to a form suitable for a diagnostic.
233 virtual std::string
yytnamerr_ (const char *n
);
237 /// A type to store symbol numbers and -1.
238 typedef ]b4_int_type_for([b4_rhs
])[ rhs_number_type
;
239 /// A `-1'-separated list of the rules' RHS.
240 static const rhs_number_type yyrhs_
[];
241 /// For each rule, the index of the first RHS symbol in \a yyrhs_.
242 static const ]b4_int_type_for([b4_prhs
])[ yyprhs_
[];
243 /// For each rule, its source line number.
244 static const ]b4_int_type_for([b4_rline
])[ yyrline_
[];
245 /// For each scanner token number, its symbol number.
246 static const ]b4_int_type_for([b4_toknum
])[ yytoken_number_
[];
247 /// Report on the debug stream that the rule \a r is going to be reduced.
248 virtual void yy_reduce_print_ (int r
);
249 /// Print the state stack on the debug stream.
250 virtual void yystack_print_ ();
254 std::ostream
* yycdebug_
;
257 /// Convert a scanner token number \a t to a symbol number.
258 token_number_type
yytranslate_ (int t
);
260 /// \brief Reclaim the memory associated to a symbol.
261 /// \param yymsg Why this token is reclaimed.
262 /// \param yytype The symbol type.
263 /// \param yyvaluep Its semantic value.
264 /// \param yylocationp Its location.
265 inline void yydestruct_ (const char* yymsg
,
267 semantic_type
* yyvaluep
,
268 location_type
* yylocationp
);
270 /// Pop \a n symbols the three stacks.
271 inline void yypop_ (unsigned int n
= 1);
274 static const int yyeof_
;
275 /* LAST_ -- Last index in TABLE_. */
276 static const int yylast_
;
277 static const int yynnts_
;
278 static const int yyempty_
;
279 static const int yyfinal_
;
280 static const int yyterror_
;
281 static const int yyerrcode_
;
282 static const int yyntokens_
;
283 static const unsigned int yyuser_token_number_max_
;
284 static const token_number_type yyundef_token_
;
285 ]b4_parse_param_vars
[
289 ]m4_ifset([b4_global_tokens_and_yystype
],
290 [b4_token_defines(b4_tokens
)
293 /* Redirection for backward compatibility. */
294 # define YYSTYPE b4_namespace::b4_parser_class_name::semantic_type
297 m4_ifdef([b4_percent_code_provides
],
298 [[/* Copy the %code "provides" blocks. */
299 ]b4_user_code([b4_percent_code_provides
])])[]dnl
301 [#endif /* ! defined PARSER_HEADER_H */]
303 @
output(b4_parser_file_name@
)
304 b4_copyright([Skeleton implementation
for Bison
LALR(1) parsers in C
++],
305 [2002, 2003, 2004, 2005, 2006])
306 m4_ifdef([b4_percent_code_top
],
307 [[/* Copy the %code "top" blocks. */
308 ]b4_user_code([b4_percent_code_top
])])[]dnl
309 m4_if(b4_prefix
, [yy
], [],
311 // Take the name prefix into account.
312 #define yylex b4_prefix[]lex])[
314 /* First part of user declarations. */
315 ]b4_user_pre_prologue
318 #include "@basename(]b4_spec_defines_file[@)"]])[
320 /* User implementation prologue. */
321 ]b4_user_post_prologue
322 m4_ifdef([b4_percent_code
],
323 [[/* Copy the unqualified %code blocks. */
324 ]b4_user_code([b4_percent_code
])
330 # include <libintl.h> /* FIXME: INFRINGES ON USER NAME SPACE */
331 # define YY_(msgid) dgettext ("bison-runtime", msgid)
335 # define YY_(msgid) msgid
339 /* Suppress unused-variable warnings by "using" E. */
340 #define YYUSE(e) ((void) (e))
342 /* Enable debugging if requested. */
345 /* A pseudo ostream that takes yydebug_ into account. */
346 # define YYCDEBUG if (yydebug_) (*yycdebug_)
348 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
352 *yycdebug_ << Title << ' '; \
353 yy_symbol_print_ ((Type), (Value), (Location)); \
354 *yycdebug_ << std::endl; \
358 # define YY_REDUCE_PRINT(Rule) \
361 yy_reduce_print_ (Rule); \
364 # define YY_STACK_PRINT() \
372 # define YYCDEBUG if (false) std::cerr
373 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
374 # define YY_REDUCE_PRINT(Rule)
375 # define YY_STACK_PRINT()
377 #endif /* !YYDEBUG */
379 #define YYACCEPT goto yyacceptlab
380 #define YYABORT goto yyabortlab
381 #define YYERROR goto yyerrorlab
383 namespace ]b4_namespace
[
387 /* Return YYSTR after stripping away unnecessary quotes and
388 backslashes, so that it's suitable for yyerror. The heuristic is
389 that double-quoting is unnecessary unless the string contains an
390 apostrophe, a comma, or backslash (other than backslash-backslash).
391 YYSTR is taken from yytname. */
393 ]b4_parser_class_name
[::yytnamerr_ (const char *yystr
)
397 std::string yyr
= "";
398 char const *yyp
= yystr
;
405 goto do_not_strip_quotes
;
409 goto do_not_strip_quotes
;
418 do_not_strip_quotes
: ;
426 /// Build a parser object.
427 ]b4_parser_class_name::b4_parser_class_name
[ (]b4_parse_param_decl
[)]m4_ifset([b4_parse_param
], [
430 ]m4_ifset([b4_parse_param
], [ ], [ :])[yydebug_ (false),
431 yycdebug_ (&std::cerr
)]m4_ifset([b4_parse_param
], [,])[
432 #endif]b4_parse_param_cons[
436 ]b4_parser_class_name::~b4_parser_class_name
[ ()
441 /*--------------------------------.
442 | Print this symbol on YYOUTPUT. |
443 `--------------------------------*/
446 ]b4_parser_class_name
[::yy_symbol_value_print_ (int yytype
,
447 const semantic_type
* yyvaluep
, const location_type
* yylocationp
)
453 ]m4_map([b4_symbol_actions
], m4_defn([b4_symbol_printers
]))dnl
461 ]b4_parser_class_name
[::yy_symbol_print_ (int yytype
,
462 const semantic_type
* yyvaluep
, const location_type
* yylocationp
)
464 *yycdebug_
<< (yytype
< yyntokens_
? "token" : "nterm")
465 << ' ' << yytname_
[yytype
] << " ("
466 << *yylocationp
<< ": ";
467 yy_symbol_value_print_ (yytype
, yyvaluep
, yylocationp
);
473 ]b4_parser_class_name
[::yydestruct_ (const char* yymsg
,
474 int yytype
, semantic_type
* yyvaluep
, location_type
* yylocationp
)
480 YY_SYMBOL_PRINT (yymsg
, yytype
, yyvaluep
, yylocationp
);
484 ]m4_map([b4_symbol_actions
], m4_defn([b4_symbol_destructors
]))[
491 ]b4_parser_class_name
[::yypop_ (unsigned int n
)
493 yystate_stack_
.pop (n
);
494 yysemantic_stack_
.pop (n
);
495 yylocation_stack_
.pop (n
);
500 ]b4_parser_class_name
[::debug_stream () const
506 ]b4_parser_class_name
[::set_debug_stream (std::ostream
& o
)
512 ]b4_parser_class_name
[::debug_level_type
513 ]b4_parser_class_name
[::debug_level () const
519 ]b4_parser_class_name
[::set_debug_level (debug_level_type l
)
526 ]b4_parser_class_name
[::parse ()
528 /// Lookahead and lookahead in internal form.
529 int yychar
= yyempty_
;
537 /* Error handling. */
539 int yyerrstatus_
= 0;
541 /// Semantic value of the lookahead.
542 semantic_type yylval
;
543 /// Location of the lookahead.
544 location_type yylloc
;
545 /// The locations where the error started and ended.
546 location yyerror_range
[2];
555 YYCDEBUG
<< "Starting parse" << std::endl
;
557 ]m4_ifdef([b4_initial_action
], [
558 m4_pushdef([b4_at_dollar
], [yylloc
])dnl
559 m4_pushdef([b4_dollar_dollar
], [yylval
])dnl
560 /* User initialization code. */
561 b4_user_initial_action
562 m4_popdef([b4_dollar_dollar
])dnl
563 m4_popdef([b4_at_dollar
])])dnl
565 [ /* Initialize the stacks. The initial state will be pushed in
566 yynewstate, since the latter expects the semantical and the
567 location values to have been already stored, initialize these
568 stacks with a primary value. */
569 yystate_stack_
= state_stack_type (0);
570 yysemantic_stack_
= semantic_stack_type (0);
571 yylocation_stack_
= location_stack_type (0);
572 yysemantic_stack_
.push (yylval
);
573 yylocation_stack_
.push (yylloc
);
577 yystate_stack_
.push (yystate
);
578 YYCDEBUG
<< "Entering state " << yystate
<< std::endl
;
581 if (yystate
== yyfinal_
)
589 /* Try to take a decision without lookahead. */
590 yyn
= yypact_
[yystate
];
591 if (yyn
== yypact_ninf_
)
594 /* Read a lookahead token. */
595 if (yychar
== yyempty_
)
597 YYCDEBUG
<< "Reading a token: ";
598 yychar
= ]b4_c_function_call([yylex
], [int],
599 [[YYSTYPE
*], [&yylval
]][]dnl
600 b4_locations_if([, [[location
*], [&yylloc
]]])dnl
601 m4_ifdef([b4_lex_param
], [, ]b4_lex_param
))[;
605 /* Convert token to internal form. */
606 if (yychar
<= yyeof_
)
608 yychar
= yytoken
= yyeof_
;
609 YYCDEBUG
<< "Now at end of input." << std::endl
;
613 yytoken
= yytranslate_ (yychar
);
614 YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
);
617 /* If the proper action on seeing token YYTOKEN is to reduce or to
618 detect an error, take that action. */
620 if (yyn
< 0 || yylast_
< yyn
|| yycheck_
[yyn
] != yytoken
)
623 /* Reduce or error. */
627 if (yyn
== 0 || yyn
== yytable_ninf_
)
633 /* Shift the lookahead token. */
634 YY_SYMBOL_PRINT ("Shifting", yytoken
, &yylval
, &yylloc
);
636 /* Discard the token being shifted. */
639 yysemantic_stack_
.push (yylval
);
640 yylocation_stack_
.push (yylloc
);
642 /* Count tokens shifted since error; after three, turn off error
650 /*-----------------------------------------------------------.
651 | yydefault -- do the default action for the current state. |
652 `-----------------------------------------------------------*/
654 yyn
= yydefact_
[yystate
];
659 /*-----------------------------.
660 | yyreduce -- Do a reduction. |
661 `-----------------------------*/
664 /* If YYLEN is nonzero, implement the default value of the action:
665 `$$ = $1'. Otherwise, use the top of the stack.
667 Otherwise, the following line sets YYVAL to garbage.
668 This behavior is undocumented and Bison
669 users should not rely upon it. */
671 yyval
= yysemantic_stack_
[yylen
- 1];
673 yyval
= yysemantic_stack_
[0];
676 slice
<location_type
, location_stack_type
> slice (yylocation_stack_
, yylen
);
677 YYLLOC_DEFAULT (yyloc
, slice
, yylen
);
679 YY_REDUCE_PRINT (yyn
);
685 YY_SYMBOL_PRINT ("-> $$ =", yyr1_
[yyn
], &yyval
, &yyloc
);
691 yysemantic_stack_
.push (yyval
);
692 yylocation_stack_
.push (yyloc
);
694 /* Shift the result of the reduction. */
696 yystate
= yypgoto_
[yyn
- yyntokens_
] + yystate_stack_
[0];
697 if (0 <= yystate
&& yystate
<= yylast_
698 && yycheck_
[yystate
] == yystate_stack_
[0])
699 yystate
= yytable_
[yystate
];
701 yystate
= yydefgoto_
[yyn
- yyntokens_
];
704 /*------------------------------------.
705 | yyerrlab -- here on detecting error |
706 `------------------------------------*/
708 /* If not already recovering from an error, report this error. */
712 error (yylloc
, yysyntax_error_ (yystate
]dnl
713 b4_error_verbose_if([, yytoken
])[));
716 yyerror_range
[0] = yylloc
;
717 if (yyerrstatus_
== 3)
719 /* If just tried and failed to reuse lookahead token after an
720 error, discard it. */
722 if (yychar
<= yyeof_
)
724 /* Return failure if at end of input. */
725 if (yychar
== yyeof_
)
730 yydestruct_ ("Error: discarding", yytoken
, &yylval
, &yylloc
);
735 /* Else will try to reuse lookahead token after shifting the error
740 /*---------------------------------------------------.
741 | yyerrorlab -- error raised explicitly by YYERROR. |
742 `---------------------------------------------------*/
745 /* Pacify compilers like GCC when the user code never invokes
746 YYERROR and the label yyerrorlab therefore never appears in user
751 yyerror_range
[0] = yylocation_stack_
[yylen
- 1];
752 /* Do not reclaim the symbols of the rule which action triggered
756 yystate
= yystate_stack_
[0];
759 /*-------------------------------------------------------------.
760 | yyerrlab1 -- common code for both syntax error and YYERROR. |
761 `-------------------------------------------------------------*/
763 yyerrstatus_
= 3; /* Each real token shifted decrements this. */
767 yyn
= yypact_
[yystate
];
768 if (yyn
!= yypact_ninf_
)
771 if (0 <= yyn
&& yyn
<= yylast_
&& yycheck_
[yyn
] == yyterror_
)
779 /* Pop the current state because it cannot handle the error token. */
780 if (yystate_stack_
.height () == 1)
783 yyerror_range
[0] = yylocation_stack_
[0];
784 yydestruct_ ("Error: popping",
786 &yysemantic_stack_
[0], &yylocation_stack_
[0]);
788 yystate
= yystate_stack_
[0];
792 yyerror_range
[1] = yylloc
;
793 // Using YYLLOC is tempting, but would change the location of
794 // the lookahead. YYLOC is available though.
795 YYLLOC_DEFAULT (yyloc
, (yyerror_range
- 1), 2);
796 yysemantic_stack_
.push (yylval
);
797 yylocation_stack_
.push (yyloc
);
799 /* Shift the error token. */
800 YY_SYMBOL_PRINT ("Shifting", yystos_
[yyn
],
801 &yysemantic_stack_
[0], &yylocation_stack_
[0]);
817 if (yychar
!= yyempty_
)
818 yydestruct_ ("Cleanup: discarding lookahead", yytoken
, &yylval
, &yylloc
);
820 /* Do not reclaim the symbols of the rule which action triggered
821 this YYABORT or YYACCEPT. */
823 while (yystate_stack_
.height () != 1)
825 yydestruct_ ("Cleanup: popping",
826 yystos_
[yystate_stack_
[0]],
827 &yysemantic_stack_
[0],
828 &yylocation_stack_
[0]);
835 // Generate an error message.
837 ]b4_parser_class_name
[::yysyntax_error_ (int yystate
]dnl
838 b4_error_verbose_if([, int tok
])[)
843 int yyn
= yypact_
[yystate
];
844 if (yypact_ninf_
< yyn
&& yyn
<= yylast_
)
846 /* Start YYX at -YYN if negative to avoid negative indexes in
848 int yyxbegin
= yyn
< 0 ? -yyn
: 0;
850 /* Stay within bounds of both yycheck and yytname. */
851 int yychecklim
= yylast_
- yyn
+ 1;
852 int yyxend
= yychecklim
< yyntokens_
? yychecklim
: yyntokens_
;
854 for (int x
= yyxbegin
; x
< yyxend
; ++x
)
855 if (yycheck_
[x
+ yyn
] == x
&& x
!= yyterror_
)
858 // FIXME: This method of building the message is not compatible
859 // with internationalization. It should work like yacc.c does it.
860 // That is, first build a string that looks like this:
861 // "syntax error, unexpected %s or %s or %s"
862 // Then, invoke YY_ on this string.
863 // Finally, use the string as a format to output
864 // yytname_[tok], etc.
865 // Until this gets fixed, this message appears in English only.
866 res
= "syntax error, unexpected ";
867 res
+= yytnamerr_ (yytname_
[tok
]);
871 for (int x
= yyxbegin
; x
< yyxend
; ++x
)
872 if (yycheck_
[x
+ yyn
] == x
&& x
!= yyterror_
)
874 res
+= (!count
++) ? ", expecting " : " or ";
875 res
+= yytnamerr_ (yytname_
[x
]);
881 res
= YY_("syntax error");
886 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
888 const ]b4_int_type(b4_pact_ninf
, b4_pact_ninf
) b4_parser_class_name::yypact_ninf_
= b4_pact_ninf
[;
889 const ]b4_int_type_for([b4_pact
])[
890 ]b4_parser_class_name
[::yypact_
[] =
895 /* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE
896 doesn't specify something else to do. Zero means the default is an
898 const ]b4_int_type_for([b4_defact
])[
899 ]b4_parser_class_name
[::yydefact_
[] =
904 /* YYPGOTO[NTERM-NUM]. */
905 const ]b4_int_type_for([b4_pgoto
])[
906 ]b4_parser_class_name
[::yypgoto_
[] =
911 /* YYDEFGOTO[NTERM-NUM]. */
912 const ]b4_int_type_for([b4_defgoto
])[
913 ]b4_parser_class_name
[::yydefgoto_
[] =
918 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
919 positive, shift that token. If negative, reduce the rule which
920 number is the opposite. If zero, do what YYDEFACT says. */
921 const ]b4_int_type(b4_table_ninf
, b4_table_ninf
) b4_parser_class_name::yytable_ninf_
= b4_table_ninf
[;
922 const ]b4_int_type_for([b4_table
])[
923 ]b4_parser_class_name
[::yytable_
[] =
929 const ]b4_int_type_for([b4_check
])[
930 ]b4_parser_class_name
[::yycheck_
[] =
935 /* STOS_[STATE-NUM] -- The (internal number of the) accessing
936 symbol of state STATE-NUM. */
937 const ]b4_int_type_for([b4_stos
])[
938 ]b4_parser_class_name
[::yystos_
[] =
944 /* TOKEN_NUMBER_[YYLEX-NUM] -- Internal symbol number corresponding
946 const ]b4_int_type_for([b4_toknum
])[
947 ]b4_parser_class_name
[::yytoken_number_
[] =
953 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
954 const ]b4_int_type_for([b4_r1
])[
955 ]b4_parser_class_name
[::yyr1_
[] =
960 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
961 const ]b4_int_type_for([b4_r2
])[
962 ]b4_parser_class_name
[::yyr2_
[] =
967 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
968 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
969 First, the terminals, then, starting at \a yyntokens_, nonterminals. */
971 const ]b4_parser_class_name
[::yytname_
[] =
978 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
979 const ]b4_parser_class_name
[::rhs_number_type
980 ]b4_parser_class_name
[::yyrhs_
[] =
985 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
987 const ]b4_int_type_for([b4_prhs
])[
988 ]b4_parser_class_name
[::yyprhs_
[] =
993 /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
994 const ]b4_int_type_for([b4_rline
])[
995 ]b4_parser_class_name
[::yyrline_
[] =
1000 // Print the state stack on the debug stream.
1002 ]b4_parser_class_name
[::yystack_print_ ()
1004 *yycdebug_
<< "Stack now";
1005 for (state_stack_type::const_iterator i
= yystate_stack_
.begin ();
1006 i
!= yystate_stack_
.end (); ++i
)
1007 *yycdebug_
<< ' ' << *i
;
1008 *yycdebug_
<< std::endl
;
1011 // Report on the debug stream that the rule \a yyrule is going to be reduced.
1013 ]b4_parser_class_name
[::yy_reduce_print_ (int yyrule
)
1015 unsigned int yylno
= yyrline_
[yyrule
];
1016 int yynrhs
= yyr2_
[yyrule
];
1017 /* Print the symbols being reduced, and their result. */
1018 *yycdebug_
<< "Reducing stack by rule " << yyrule
- 1
1019 << " (line " << yylno
<< "), ";
1020 /* The symbols being reduced. */
1021 for (int yyi
= 0; yyi
< yynrhs
; yyi
++)
1022 YY_SYMBOL_PRINT (" $" << yyi
+ 1 << " =",
1023 yyrhs_
[yyprhs_
[yyrule
] + yyi
],
1024 &]b4_rhs_value(yynrhs
, yyi
+ 1)[,
1025 &]b4_rhs_location(yynrhs
, yyi
+ 1)[);
1029 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
1030 ]b4_parser_class_name
[::token_number_type
1031 ]b4_parser_class_name
[::yytranslate_ (int t
)
1034 const token_number_type
1039 if ((unsigned int) t
<= yyuser_token_number_max_
)
1040 return translate_table
[t
];
1042 return yyundef_token_
;
1045 const int ]b4_parser_class_name
[::yyeof_
= 0;
1046 const int ]b4_parser_class_name
[::yylast_
= ]b4_last
[;
1047 const int ]b4_parser_class_name
[::yynnts_
= ]b4_nterms_number
[;
1048 const int ]b4_parser_class_name
[::yyempty_
= -2;
1049 const int ]b4_parser_class_name
[::yyfinal_
= ]b4_final_state_number
[;
1050 const int ]b4_parser_class_name
[::yyterror_
= 1;
1051 const int ]b4_parser_class_name
[::yyerrcode_
= 256;
1052 const int ]b4_parser_class_name
[::yyntokens_
= ]b4_tokens_number
[;
1054 const unsigned int ]b4_parser_class_name
[::yyuser_token_number_max_
= ]b4_user_token_number_max
[;
1055 const ]b4_parser_class_name
[::token_number_type
]b4_parser_class_name
[::yyundef_token_
= ]b4_undef_token_number
[;
1057 } // namespace ]b4_namespace[
1061 @
output(b4_dir_prefix
[]stack
.hh@
)
1062 b4_copyright([Stack handling
for Bison parsers in C
++],
1063 [2002, 2003, 2004, 2005, 2006])[
1065 #ifndef BISON_STACK_HH
1066 # define BISON_STACK_HH
1070 namespace ]b4_namespace
[
1072 template <class T
, class S
= std::deque
<T
> >
1077 // Hide our reversed order.
1078 typedef typename
S::reverse_iterator iterator
;
1079 typedef typename
S::const_reverse_iterator const_iterator
;
1085 stack (unsigned int n
) : seq_ (n
)
1091 operator [] (unsigned int i
)
1098 operator [] (unsigned int i
) const
1107 seq_
.push_front (t
);
1112 pop (unsigned int n
= 1)
1122 return seq_
.size ();
1125 inline const_iterator
begin () const { return seq_
.rbegin (); }
1126 inline const_iterator
end () const { return seq_
.rend (); }
1133 /// Present a slice of the top of a stack.
1134 template <class T
, class S
= stack
<T
> >
1139 slice (const S
& stack
,
1140 unsigned int range
) : stack_ (stack
),
1147 operator [] (unsigned int i
) const
1149 return stack_
[range_
- i
];
1155 unsigned int range_
;
1159 #endif // not BISON_STACK_HH]