1 # C++ skeleton for Bison
3 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 # Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 m4_include(b4_pkgdatadir
/[c
++.m4
])
22 # b4_integral_parser_table_declare(TABLE-NAME, CONTENT, COMMENT)
23 # --------------------------------------------------------------
24 # Declare "parser::yy<TABLE-NAME>_" which contents is CONTENT.
25 m4_define([b4_integral_parser_table_declare
],
26 [m4_ifval([$
3], [b4_c_comment([$
3], [ ])
28 static const b4_int_type_for([$
2]) yy$
1_
[[]];dnl
31 # b4_integral_parser_table_define(TABLE-NAME, CONTENT, COMMENT)
32 # ---------------------------------------------
33 # Define "parser::yy<TABLE-NAME>_" which contents is CONTENT.
34 m4_define([b4_integral_parser_table_define
],
35 [ const b4_int_type_for([$
2])
36 b4_parser_class_name::yy$
1_
[[]] =
43 # b4_symbol_value_template(VAL, [TYPE])
44 # -------------------------------------
45 # Same as b4_symbol_value, but used in a template method. It makes
46 # a difference when using variants.
47 m4_copy([b4_symbol_value
], [b4_symbol_value_template
])
50 # b4_lhs_value([TYPE])
51 # --------------------
52 # Expansion of $<TYPE>$.
53 m4_define([b4_lhs_value
],
54 [b4_symbol_value([yylhs
.value
], [$
1])])
60 m4_define([b4_lhs_location
],
64 # b4_rhs_data(RULE-LENGTH, NUM)
65 # -----------------------------
66 # Return the data corresponding to the symbol #NUM, where the current
67 # rule has RULE-LENGTH symbols on RHS.
68 m4_define([b4_rhs_data
],
69 [yystack_@
{b4_subtract($@
)@
}])
72 # b4_rhs_state(RULE-LENGTH, NUM)
73 # ------------------------------
74 # The state corresponding to the symbol #NUM, where the current
75 # rule has RULE-LENGTH symbols on RHS.
76 m4_define([b4_rhs_state
],
77 [b4_rhs_data([$
1], [$
2]).state
])
80 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
81 # --------------------------------------
82 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
84 m4_define([b4_rhs_value
],
85 [b4_symbol_value([b4_rhs_data([$
1], [$
2]).value
], [$
3])])
88 # b4_rhs_location(RULE-LENGTH, NUM)
89 # ---------------------------------
90 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
92 m4_define([b4_rhs_location
],
93 [b4_rhs_data([$
1], [$
2]).location
])
96 # b4_symbol_action(SYMBOL-NUM, KIND)
97 # ----------------------------------
98 # Run the action KIND (destructor or printer) for SYMBOL-NUM.
99 # Same as in C, but using references instead of pointers.
100 m4_define([b4_symbol_action
],
101 [b4_symbol_if([$
1], [has_$
2],
102 [m4_pushdef([b4_dollar_dollar
],
103 [b4_symbol_value_template([yysym
.value
],
104 b4_symbol_if([$
1], [has_type
],
105 [b4_symbol([$
1], [type
])]))])dnl
106 m4_pushdef([b4_at_dollar
], [yysym
.location
])dnl
107 b4_symbol_case_([$
1])
108 b4_syncline([b4_symbol([$
1], [$
2_line
])], ["b4_symbol([$1], [$2_file])"])
109 b4_symbol([$
1], [$
2])
110 b4_syncline([@oline@
], [@ofile@
])
113 m4_popdef([b4_at_dollar
])dnl
114 m4_popdef([b4_dollar_dollar
])dnl
118 m4_pushdef([b4_copyright_years
],
119 [2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009])
121 m4_define([b4_parser_class_name
],
122 [b4_percent_define_get([[parser_class_name]])])
124 # The header is mandatory.
126 [b4_fatal([b4_skeleton
[: using %%defines is mandatory
]])])
129 [# Backward compatibility.
130 m4_define([b4_location_constructors
])
131 m4_include(b4_pkgdatadir
/[location
.cc
])])
132 m4_include(b4_pkgdatadir
/[stack
.hh
])
133 b4_variant_if([m4_include(b4_pkgdatadir
/[variant
.hh
])])
135 # We do want M4 expansion after # for CPP macros.
138 @
output(b4_spec_defines_file@
)@
139 b4_copyright([Skeleton interface
for Bison
LALR(1) parsers in C
++])
140 dnl FIXME
: This is wrong
, we want computed header guards
.
142 /* C++ LALR(1) parser skeleton written by Akim Demaille. */
144 #ifndef PARSER_HEADER_H
145 # define PARSER_HEADER_H
147 ]b4_percent_code_get([[requires]])[
149 ]b4_parse_assert_if([#include <cassert>])[
155 ]b4_locations_if([ class position
;
157 ]b4_variant_if([b4_variant_define
])[
160 ]b4_locations_if([#include "location.hh"])[
162 /* Enabling traces. */
164 # define YYDEBUG ]b4_parse_trace_if([1], [0])[
167 /* Enabling verbose error messages. */
168 #ifdef YYERROR_VERBOSE
169 # undef YYERROR_VERBOSE
170 # define YYERROR_VERBOSE 1
172 # define YYERROR_VERBOSE ]b4_error_verbose_if([1], [0])[
175 /* Enabling the token table. */
176 #ifndef YYTOKEN_TABLE
177 # define YYTOKEN_TABLE ]b4_token_table[
180 ]b4_locations_if([dnl
181 [/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
182 If N is 0, then set CURRENT to the empty location which ends
183 the previous symbol: RHS[0] (always defined). */
185 #ifndef YYLLOC_DEFAULT
186 # define YYLLOC_DEFAULT(Current, Rhs, N) \
190 (Current).begin = (Rhs)[1].location.begin; \
191 (Current).end = (Rhs)[N].location.end; \
195 (Current).begin = (Current).end = (Rhs)[0].location.end; \
203 class ]b4_parser_class_name
[
206 ]b4_public_types_declare
[
207 /// Build a parser object.
208 ]b4_parser_class_name
[ (]b4_parse_param_decl
[);
209 virtual ~]b4_parser_class_name
[ ();
212 /// \returns 0 iff parsing succeeded.
213 virtual int parse ();
216 /// The current debugging stream.
217 std::ostream
& debug_stream () const;
218 /// Set the current debugging stream.
219 void set_debug_stream (std::ostream
&);
221 /// Type for debugging levels.
222 typedef int debug_level_type
;
223 /// The current debugging level.
224 debug_level_type
debug_level () const;
225 /// Set the current debugging level.
226 void set_debug_level (debug_level_type l
);
229 /// Report a syntax error.]b4_locations_if([
230 /// \param loc where the syntax error is found.])[
231 /// \param msg a description of the syntax error.
232 virtual void error (]b4_locations_if([const location_type
& loc
, ])[const std::string
& msg
);
235 /// Generate an error message.
236 /// \param state the state where the error occurred.
237 /// \param tok the lookahead token.
238 virtual std::string
yysyntax_error_ (int yystate
, int tok
);
241 typedef int state_type
;
243 /// Internal symbol numbers.
244 typedef ]b4_int_type_for([b4_translate
])[ token_number_type
;
245 static const ]b4_int_type(b4_pact_ninf
, b4_pact_ninf
)[ yypact_ninf_
;
246 static const ]b4_int_type(b4_table_ninf
, b4_table_ninf
)[ yytable_ninf_
;
249 ]b4_parser_tables_declare
[
251 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
252 /// For a symbol, its name in clear.
253 static const char* const yytname_
[];
254 #endif]b4_error_verbose_if([
256 /// Convert the symbol name \a n to a form suitable for a diagnostic.
257 static std::string
yytnamerr_ (const char *n
);])[
260 ]b4_integral_parser_table_declare([rline
], [b4_rline
],
261 [YYRLINE
[YYN
] -- Source line where rule number YYN was defined
.])[
262 /// Report on the debug stream that the rule \a r is going to be reduced.
263 virtual void yy_reduce_print_ (int r
);
264 /// Print the state stack on the debug stream.
265 virtual void yystack_print_ ();
269 std::ostream
* yycdebug_
;
272 /// Convert a scanner token number \a t to a symbol number.
273 static inline token_number_type
yytranslate_ (]b4_lex_symbol_if([token_type
], [int])[ t
);
276 /// \brief Display a symbol type, value and location.
277 /// \param yyo The output stream.
278 /// \param yysym The symbol.
279 template <typename Exact
>
280 void yy_print_ (std::ostream
& yyo
,
281 const symbol_base_type
<Exact
>& yysym
) const;
284 /// \brief Reclaim the memory associated to a symbol.
285 /// \param yymsg Why this token is reclaimed.
286 /// If null, print nothing.
287 /// \param s The symbol.
288 template <typename Exact
>
289 inline void yy_destroy_ (const char* yymsg
,
290 symbol_base_type
<Exact
>& yysym
) const;
293 /// Element of the stack: a state and its attributes.
294 struct stack_symbol_type
: symbol_base_type
<stack_symbol_type
>
296 /// The parent class.
297 typedef symbol_base_type
<stack_symbol_type
> super_type
;
299 /// Default constructor.
300 inline stack_symbol_type ();
303 inline stack_symbol_type (]b4_args([state_type s
],
304 [const semantic_type
& v
],
305 b4_locations_if([const location_type
& l
]))[);
310 /// Return the type corresponding to this state.
311 inline int type_get_ () const;
315 typedef stack
<stack_symbol_type
> stack_type
;
320 /// Push a new state on the stack.
321 /// \param m a debug message to display
322 /// if null, no trace is output.
323 /// \param s the symbol
324 /// \warning the contents of \a s.value is stolen.
325 inline void yypush_ (const char* m
, stack_symbol_type
& s
);
327 /// Push a new look ahead token on the state on the stack.
328 /// \param m a debug message to display
329 /// if null, no trace is output.
330 /// \param s the state
331 /// \param sym the symbol (for its value and location).
332 /// \warning the contents of \a s.value is stolen.
333 inline void yypush_ (const char* m
, state_type s
, symbol_type
& sym
);
335 /// Pop \a n symbols the three stacks.
336 inline void yypop_ (unsigned int n
= 1);
342 yylast_
= ]b4_last
[, //< Last index in yytable_.
343 yynnts_
= ]b4_nterms_number
[, //< Number of nonterminal symbols.
345 yyfinal_
= ]b4_final_state_number
[, //< Termination state number.
348 yyntokens_
= ]b4_tokens_number
[, //< Number of tokens.
351 ]b4_parse_param_vars
[
354 ]b4_lex_symbol_if([b4_yytranslate_define
355 b4_public_types_define
])[
358 ]b4_percent_define_flag_if([[global_tokens_and_yystype]],
359 [b4_token_defines(b4_tokens
)
362 /* Redirection for backward compatibility. */
363 # define YYSTYPE b4_namespace_ref::b4_parser_class_name::semantic_type
366 b4_percent_code_get([[provides]])[]dnl
368 [#endif /* ! defined PARSER_HEADER_H */]
369 @
output(b4_parser_file_name@
)@
370 b4_copyright([Skeleton implementation
for Bison
LALR(1) parsers in C
++])
371 b4_percent_code_get([[top]])[]dnl
372 m4_if(b4_prefix
, [yy
], [],
374 // Take the name prefix into account.
375 #define yylex b4_prefix[]lex])[
377 /* First part of user declarations. */
378 ]b4_user_pre_prologue
[
380 #include "@basename(]b4_spec_defines_file[@)"
382 /* User implementation prologue. */
383 ]b4_user_post_prologue
384 b4_percent_code_get
[]dnl
389 # include <libintl.h> /* FIXME: INFRINGES ON USER NAME SPACE */
390 # define YY_(msgid) dgettext ("bison-runtime", msgid)
394 # define YY_(msgid) msgid
398 /* Suppress unused-variable warnings by "using" E. */
399 #define YYUSE(e) ((void) (e))
401 /* Enable debugging if requested. */
404 /* A pseudo ostream that takes yydebug_ into account. */
405 # define YYCDEBUG if (yydebug_) (*yycdebug_)
407 # define YY_SYMBOL_PRINT(Title, Symbol) \
411 *yycdebug_ << Title << ' '; \
412 yy_print_ (*yycdebug_, Symbol); \
413 *yycdebug_ << std::endl; \
417 # define YY_REDUCE_PRINT(Rule) \
420 yy_reduce_print_ (Rule); \
423 # define YY_STACK_PRINT() \
431 # define YYCDEBUG if (false) std::cerr
432 # define YY_SYMBOL_PRINT(Title, Symbol) static_cast<void>(0)
433 # define YY_REDUCE_PRINT(Rule) static_cast<void>(0)
434 # define YY_STACK_PRINT() static_cast<void>(0)
436 #endif /* !YYDEBUG */
438 #define yyerrok (yyerrstatus_ = 0)
439 #define yyclearin (yyempty = true)
441 #define YYACCEPT goto yyacceptlab
442 #define YYABORT goto yyabortlab
443 #define YYERROR goto yyerrorlab
444 #define YYRECOVERING() (!!yyerrstatus_)
446 ]b4_namespace_open
[]b4_error_verbose_if([[
448 /* Return YYSTR after stripping away unnecessary quotes and
449 backslashes, so that it's suitable for yyerror. The heuristic is
450 that double-quoting is unnecessary unless the string contains an
451 apostrophe, a comma, or backslash (other than backslash-backslash).
452 YYSTR is taken from yytname. */
454 ]b4_parser_class_name
[::yytnamerr_ (const char *yystr
)
458 std::string yyr
= "";
459 char const *yyp
= yystr
;
466 goto do_not_strip_quotes
;
470 goto do_not_strip_quotes
;
479 do_not_strip_quotes
: ;
486 /// Build a parser object.
487 ]b4_parser_class_name::b4_parser_class_name
[ (]b4_parse_param_decl
[)]m4_ifset([b4_parse_param
], [
490 ]m4_ifset([b4_parse_param
], [ ], [ :])[yydebug_ (false),
491 yycdebug_ (&std::cerr
)]m4_ifset([b4_parse_param
], [,])[
492 #endif]b4_parse_param_cons[
496 ]b4_parser_class_name::~b4_parser_class_name
[ ()
505 ]b4_lex_symbol_if([], [b4_public_types_define
])[
507 // stack_symbol_type.
508 ]b4_parser_class_name
[::stack_symbol_type::stack_symbol_type ()
514 ]b4_parser_class_name
[::stack_symbol_type::stack_symbol_type (]b4_args(
516 [const semantic_type
& v
],
517 b4_locations_if([const location_type
& l
]))[)
518 : super_type (v
]b4_locations_if([, l
])[)
524 ]b4_parser_class_name
[::stack_symbol_type::type_get_ () const
526 return yystos_
[state
];
530 template <typename Exact
>
532 ]b4_parser_class_name
[::yy_destroy_ (const char* yymsg
,
533 symbol_base_type
<Exact
>& yysym
) const
535 int yytype
= yysym
.type_get ();
538 YY_SYMBOL_PRINT (yymsg
, yysym
);
543 ]b4_symbol_foreach([b4_symbol_destructor
])dnl
549 b4_symbol_variant([[yytype]], [[yysym
.value
]], [[template destroy]])])[
553 template <typename Exact
>
555 ]b4_parser_class_name
[::yy_print_ (std::ostream
& yyo
,
556 const symbol_base_type
<Exact
>& yysym
) const
558 int yytype
= yysym
.type_get ();
559 yyo
<< (yytype
< yyntokens_
? "token" : "nterm")
560 << ' ' << yytname_
[yytype
] << " ("]b4_locations_if([
561 << yysym
.location
<< ": "])[;
564 ]b4_symbol_foreach([b4_symbol_printer
])dnl
573 ]b4_parser_class_name
[::yypush_ (const char* m
, state_type s
,
577 YY_SYMBOL_PRINT (m
, sym
);
579 [[ yystack_
.push (stack_symbol_type (]b4_args(
582 b4_locations_if([sym
.location
]))[));
583 ]b4_symbol_variant([[yystos_
[s
]]], [[yystack_
[0].value
]],
584 [build
], [sym
.value
])],
585 [[ yystack_
.push (stack_symbol_type (]b4_args(
588 b4_locations_if([sym
.location
]))[));]])[
592 ]b4_parser_class_name
[::yypush_ (const char* m
, stack_symbol_type
& s
)
595 YY_SYMBOL_PRINT (m
, s
);
597 [[ yystack_
.push (stack_symbol_type (]b4_args(
600 b4_locations_if([s
.location
]))[));
601 ]b4_symbol_variant([[yystos_
[s
.state
]]], [[yystack_
[0].value
]],
602 [build
], [s
.value
])],
603 [ yystack_
.push (s
);])[
607 ]b4_parser_class_name
[::yypop_ (unsigned int n
)
614 ]b4_parser_class_name
[::debug_stream () const
620 ]b4_parser_class_name
[::set_debug_stream (std::ostream
& o
)
626 ]b4_parser_class_name
[::debug_level_type
627 ]b4_parser_class_name
[::debug_level () const
633 ]b4_parser_class_name
[::set_debug_level (debug_level_type l
)
640 ]b4_parser_class_name
[::parse ()
642 /// Whether yyla contains a lookahead.
650 /* Error handling. */
652 int yyerrstatus_
= 0;
654 /// The lookahead symbol.
655 symbol_type yyla
;]b4_locations_if([[
657 /// The locations where the error started and ended.
658 stack_symbol_type yyerror_range
[2];]])[
661 stack_symbol_type yylhs
;
663 /// The return value of parse().
666 YYCDEBUG
<< "Starting parse" << std::endl
;
668 ]m4_ifdef([b4_initial_action
], [
669 m4_pushdef([b4_at_dollar
], [yyla
.location
])dnl
670 m4_pushdef([b4_dollar_dollar
], [yyla
.value
])dnl
671 /* User initialization code. */
672 b4_user_initial_action
673 m4_popdef([b4_dollar_dollar
])dnl
674 m4_popdef([b4_at_dollar
])])dnl
676 [ /* Initialize the stack. The initial state will be set in
677 yynewstate, since the latter expects the semantical and the
678 location values to have been already stored, initialize these
679 stacks with a primary value. */
680 yystack_
= stack_type (0);
681 yypush_ (0, 0, yyla
);
683 // A new state was pushed on the stack.
684 // Invariant: yystate == yystack_[0].state, i.e.,
685 // yystate was just pushed onto the state stack.
687 YYCDEBUG
<< "Entering state " << yystate
<< std::endl
;
690 if (yystate
== yyfinal_
)
698 /* Try to take a decision without lookahead. */
699 yyn
= yypact_
[yystate
];
700 if (yyn
== yypact_ninf_
)
703 /* Read a lookahead token. */
706 YYCDEBUG
<< "Reading a token: ";
708 [ yyla
= b4_c_function_call([yylex
], [symbol_type
],
709 m4_ifdef([b4_lex_param
], b4_lex_param
));],
710 [ yyla
.type
= yytranslate_ (b4_c_function_call([yylex
], [int],
711 [[YYSTYPE
*], [&yyla
.value
]][]dnl
712 b4_locations_if([, [[location
*], [&yyla
.location
]]])dnl
713 m4_ifdef([b4_lex_param
], [, ]b4_lex_param
)));])[
716 YY_SYMBOL_PRINT ("Next token is", yyla
);
718 /* If the proper action on seeing token YYLA.TYPE is to reduce or
719 to detect an error, take that action. */
721 if (yyn
< 0 || yylast_
< yyn
|| yycheck_
[yyn
] != yyla
.type
)
724 /* Reduce or error. */
728 if (yyn
== 0 || yyn
== yytable_ninf_
)
734 /* Discard the token being shifted. */
737 /* Count tokens shifted since error; after three, turn off error
742 /* Shift the lookahead token. */
744 yypush_ ("Shifting", yystate
, yyla
);
747 /*-----------------------------------------------------------.
748 | yydefault -- do the default action for the current state. |
749 `-----------------------------------------------------------*/
751 yyn
= yydefact_
[yystate
];
756 /*-----------------------------.
757 | yyreduce -- Do a reduction. |
758 `-----------------------------*/
760 yylen
= yyr2_
[yyn
];]b4_variant_if([
761 /* Variants are always initialized to an empty instance of the
762 correct type. The default $$=$1 action is NOT applied when using
764 ]b4_symbol_variant([[yyr1_@
{yyn@
}]], [yylhs
.value
], [build
]),[
765 /* If YYLEN is nonzero, implement the default value of the action:
766 `$$ = $1'. Otherwise, use the top of the stack.
768 Otherwise, the following line sets YYLHS.VALUE to garbage.
769 This behavior is undocumented and Bison
770 users should not rely upon it. */
772 yylhs
.value
= yystack_@
{yylen
- 1@
}.value
;
774 yylhs
.value
= yystack_@
{0@
}.value
;])[
775 ]b4_locations_if([dnl
777 // Compute the default @@$.
779 slice
<stack_symbol_type
, stack_type
> slice (yystack_
, yylen
);
780 YYLLOC_DEFAULT (yylhs
.location
, slice
, yylen
);
783 // Perform the reduction.
784 YY_REDUCE_PRINT (yyn
);
791 // Compute post-reduction state.
793 yystate
= yypgoto_
[yyn
- yyntokens_
] + yystack_
[yylen
].state
;
794 if (0 <= yystate
&& yystate
<= yylast_
795 && yycheck_
[yystate
] == yystack_
[yylen
].state
)
796 yystate
= yytable_
[yystate
];
798 yystate
= yydefgoto_
[yyn
- yyntokens_
];
799 yylhs
.state
= yystate
;
800 YY_SYMBOL_PRINT ("-> $$ =", yylhs
);
802 // Destroy the rhs symbols.
803 for (int i
= 0; i
< yylen
; ++i
)
804 // Destroy a variant which value may have been swapped with
805 // yylhs.value (for instance if the action was "std::swap($$,
806 // $1)"). The value of yylhs.value (hence possibly one of these
807 // rhs symbols) depends on the default contruction for this
808 // type. In the case of pointers for instance, no
809 // initialization is done, so the value is junk. Therefore do
810 // not try to report the value of symbols about to be destroyed
811 // in the debug trace, it's possibly junk. Hence yymsg = 0.
812 // Besides, that keeps exactly the same traces as with the other
814 yy_destroy_ (0, yystack_
[i
]);]])[
820 /* Shift the result of the reduction. */
824 /*--------------------------------------.
825 | yyerrlab -- here on detecting error. |
826 `--------------------------------------*/
828 /* If not already recovering from an error, report this error. */
832 error (]b4_args(b4_locations_if([yyla
.location
]),
833 [yysyntax_error_ (yystate
, yyla
.type
)])[);
837 yyerror_range
[0].location
= yyla
.location
;]])[
838 if (yyerrstatus_
== 3)
840 /* If just tried and failed to reuse lookahead token after an
841 error, discard it. */
843 /* Return failure if at end of input. */
844 if (yyla
.type
== yyeof_
)
848 yy_destroy_ ("Error: discarding", yyla
);
853 /* Else will try to reuse lookahead token after shifting the error
858 /*---------------------------------------------------.
859 | yyerrorlab -- error raised explicitly by YYERROR. |
860 `---------------------------------------------------*/
863 /* Pacify compilers like GCC when the user code never invokes
864 YYERROR and the label yyerrorlab therefore never appears in user
870 yyerror_range
[0].location
= yystack_
[yylen
- 1].location
;]])[
871 /* Do not reclaim the symbols of the rule which action triggered
875 yystate
= yystack_
[0].state
;
878 /*-------------------------------------------------------------.
879 | yyerrlab1 -- common code for both syntax error and YYERROR. |
880 `-------------------------------------------------------------*/
882 yyerrstatus_
= 3; /* Each real token shifted decrements this. */
884 stack_symbol_type error_token
;
887 yyn
= yypact_
[yystate
];
888 if (yyn
!= yypact_ninf_
)
891 if (0 <= yyn
&& yyn
<= yylast_
&& yycheck_
[yyn
] == yyterror_
)
899 // Pop the current state because it cannot handle the error token.
900 if (yystack_
.size () == 1)
903 yyerror_range
[0].location
= yystack_
[0].location
;]])[
904 yy_destroy_ ("Error: popping", yystack_
[0]);
906 yystate
= yystack_
[0].state
;
910 yyerror_range
[1].location
= yyla
.location
;
911 YYLLOC_DEFAULT (error_token
.location
, (yyerror_range
- 1), 2);]])[
913 /* Shift the error token. */
914 error_token
.state
= yystate
= yyn
;
915 yypush_ ("Shifting", error_token
);
931 yy_destroy_ ("Cleanup: discarding lookahead", yyla
);
933 /* Do not reclaim the symbols of the rule which action triggered
934 this YYABORT or YYACCEPT. */
936 while (yystack_
.size () != 1)
938 yy_destroy_ ("Cleanup: popping", yystack_
[0]);
945 // Generate an error message.
947 ]b4_parser_class_name
[::yysyntax_error_ (]dnl
948 b4_error_verbose_if([int yystate
, int yytoken
],
951 std::string yyres
;]b4_error_verbose_if([[
952 int yyn
= yypact_
[yystate
];
953 if (yypact_ninf_
< yyn
&& yyn
<= yylast_
)
955 /* Start YYX at -YYN if negative to avoid negative indexes in
957 int yyxbegin
= yyn
< 0 ? -yyn
: 0;
959 /* Stay within bounds of both yycheck and yytname. */
960 int yychecklim
= yylast_
- yyn
+ 1;
961 int yyxend
= yychecklim
< yyntokens_
? yychecklim
: yyntokens_
;
963 // Number of reported tokens (one for the "unexpected", one per
967 enum { YYERROR_VERBOSE_ARGS_MAXIMUM
= 5 };
968 // Arguments of yyformat.
969 char const *yyarg
[YYERROR_VERBOSE_ARGS_MAXIMUM
];
970 yyarg
[yycount
++] = yytname_
[yytoken
];
971 for (int yyx
= yyxbegin
; yyx
< yyxend
; ++yyx
)
972 if (yycheck_
[yyx
+ yyn
] == yyx
&& yyx
!= yyterror_
)
974 if (yycount
== YYERROR_VERBOSE_ARGS_MAXIMUM
)
980 yyarg
[yycount
++] = yytname_
[yyx
];
983 char const* yyformat
= 0;
986 #define YYCASE_(N, S) \
990 YYCASE_(1, YY_("syntax error, unexpected %s"));
991 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
992 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
993 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
994 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
999 for (char const* yyp
= yyformat
; *yyp
; ++yyp
)
1000 if (yyp
[0] == '%' && yyp
[1] == 's' && yyi
< yycount
)
1002 yyres
+= yytnamerr_ (yyarg
[yyi
++]);
1010 [ yyres
= YY_("syntax error");
1015 const ]b4_int_type(b4_pact_ninf
, b4_pact_ninf
) b4_parser_class_name::yypact_ninf_
= b4_pact_ninf
[;
1017 const ]b4_int_type(b4_table_ninf
, b4_table_ninf
) b4_parser_class_name::yytable_ninf_
= b4_table_ninf
[;
1019 ]b4_parser_tables_define
[
1021 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
1022 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
1023 First, the terminals, then, starting at \a yyntokens_, nonterminals. */
1025 const ]b4_parser_class_name
[::yytname_
[] =
1032 ]b4_integral_parser_table_define([rline
], [b4_rline
])[
1034 // Print the state stack on the debug stream.
1036 ]b4_parser_class_name
[::yystack_print_ ()
1038 *yycdebug_
<< "Stack now";
1039 for (stack_type::const_iterator
1040 i
= yystack_
.begin (),
1041 i_end
= yystack_
.end ();
1043 *yycdebug_
<< ' ' << i
->state
;
1044 *yycdebug_
<< std::endl
;
1047 // Report on the debug stream that the rule \a yyrule is going to be reduced.
1049 ]b4_parser_class_name
[::yy_reduce_print_ (int yyrule
)
1051 unsigned int yylno
= yyrline_
[yyrule
];
1052 int yynrhs
= yyr2_
[yyrule
];
1053 /* Print the symbols being reduced, and their result. */
1054 *yycdebug_
<< "Reducing stack by rule " << yyrule
- 1
1055 << " (line " << yylno
<< "):" << std::endl
;
1056 /* The symbols being reduced. */
1057 for (int yyi
= 0; yyi
< yynrhs
; yyi
++)
1058 YY_SYMBOL_PRINT (" $" << yyi
+ 1 << " =",
1059 ]b4_rhs_data(yynrhs
, yyi
+ 1)[);
1063 ]b4_lex_symbol_if([], [b4_yytranslate_define
])[
1064 ]b4_namespace_close
[
1067 m4_popdef([b4_copyright_years
])dnl