]> git.saurik.com Git - bison.git/blob - data/lalr1.cc
365a3845ca5c9db16b22f1e8b6b1886be346b0de
[bison.git] / data / lalr1.cc
1 # C++ skeleton for Bison
2
3 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 # Free Software Foundation, Inc.
5
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.
10 #
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.
15 #
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/>.
18
19 m4_include(b4_pkgdatadir/[c++.m4])
20
21
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], [ ])
27 ])dnl
28 static const b4_int_type_for([$2]) yy$1_[[]];dnl
29 ])
30
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_[[]] =
37 {
38 $2
39 };dnl
40 ])
41
42
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])
48
49
50 # b4_lhs_value([TYPE])
51 # --------------------
52 # Expansion of $<TYPE>$.
53 m4_define([b4_lhs_value],
54 [b4_symbol_value([yylhs.value], [$1])])
55
56
57 # b4_lhs_location()
58 # -----------------
59 # Expansion of @$.
60 m4_define([b4_lhs_location],
61 [yylhs.location])
62
63
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($@)@}])
70
71
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])
78
79
80 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
81 # --------------------------------------
82 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
83 # symbols on RHS.
84 m4_define([b4_rhs_value],
85 [b4_symbol_value([b4_rhs_data([$1], [$2]).value], [$3])])
86
87
88 # b4_rhs_location(RULE-LENGTH, NUM)
89 # ---------------------------------
90 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
91 # on RHS.
92 m4_define([b4_rhs_location],
93 [b4_rhs_data([$1], [$2]).location])
94
95
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@])
111 break;
112
113 m4_popdef([b4_at_dollar])dnl
114 m4_popdef([b4_dollar_dollar])dnl
115 ])])
116
117
118 m4_pushdef([b4_copyright_years],
119 [2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009])
120
121 m4_define([b4_parser_class_name],
122 [b4_percent_define_get([[parser_class_name]])])
123
124 # The header is mandatory.
125 b4_defines_if([],
126 [b4_fatal([b4_skeleton[: using %%defines is mandatory]])])
127
128 b4_locations_if(
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])])
134
135 # We do want M4 expansion after # for CPP macros.
136 m4_changecom()
137 m4_divert_push(0)dnl
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.
141 [
142 /* C++ LALR(1) parser skeleton written by Akim Demaille. */
143
144 #ifndef PARSER_HEADER_H
145 # define PARSER_HEADER_H
146
147 ]b4_percent_code_get([[requires]])[
148
149 ]b4_parse_assert_if([#include <cassert>])[
150 #include <string>
151 #include <iostream>
152 #include "stack.hh"
153
154 ]b4_namespace_open[
155 ]b4_locations_if([ class position;
156 class location;])[
157 ]b4_variant_if([b4_variant_define])[
158 ]b4_namespace_close[
159
160 ]b4_locations_if([#include "location.hh"])[
161
162 /* Enabling traces. */
163 #ifndef YYDEBUG
164 # define YYDEBUG ]b4_parse_trace_if([1], [0])[
165 #endif
166
167 /* Enabling verbose error messages. */
168 #ifdef YYERROR_VERBOSE
169 # undef YYERROR_VERBOSE
170 # define YYERROR_VERBOSE 1
171 #else
172 # define YYERROR_VERBOSE ]b4_error_verbose_if([1], [0])[
173 #endif
174
175 /* Enabling the token table. */
176 #ifndef YYTOKEN_TABLE
177 # define YYTOKEN_TABLE ]b4_token_table[
178 #endif
179
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). */
184
185 #ifndef YYLLOC_DEFAULT
186 # define YYLLOC_DEFAULT(Current, Rhs, N) \
187 do { \
188 if (N) \
189 { \
190 (Current).begin = (Rhs)[1].location.begin; \
191 (Current).end = (Rhs)[N].location.end; \
192 } \
193 else \
194 { \
195 (Current).begin = (Current).end = (Rhs)[0].location.end; \
196 } \
197 } while (false)
198 #endif]])[
199
200 ]b4_namespace_open[
201
202 /// A Bison parser.
203 class ]b4_parser_class_name[
204 {
205 public:
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[ ();
210
211 /// Parse.
212 /// \returns 0 iff parsing succeeded.
213 virtual int parse ();
214
215 #if YYDEBUG
216 /// The current debugging stream.
217 std::ostream& debug_stream () const;
218 /// Set the current debugging stream.
219 void set_debug_stream (std::ostream &);
220
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);
227 #endif
228
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);
233
234 private:
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);
239
240 /// State numbers.
241 typedef int state_type;
242
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_;
247
248 /* Tables. */
249 ]b4_parser_tables_declare[
250
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([
255
256 /// Convert the symbol name \a n to a form suitable for a diagnostic.
257 static std::string yytnamerr_ (const char *n);])[
258
259 #if YYDEBUG
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_ ();
266
267 /* Debugging. */
268 int yydebug_;
269 std::ostream* yycdebug_;
270 #endif
271
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);
274
275 #if YYDEBUG
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;
282 #endif
283
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;
291
292 private:
293 /// Element of the stack: a state and its attributes.
294 struct stack_symbol_type : symbol_base_type<stack_symbol_type>
295 {
296 /// The parent class.
297 typedef symbol_base_type<stack_symbol_type> super_type;
298
299 /// Default constructor.
300 inline stack_symbol_type ();
301
302 /// Constructor.
303 inline stack_symbol_type (]b4_args([state_type s],
304 [const semantic_type& v],
305 b4_locations_if([const location_type& l]))[);
306
307 /// The state.
308 state_type state;
309
310 /// Return the type corresponding to this state.
311 inline int type_get_ () const;
312 };
313
314 /// Stack type.
315 typedef stack<stack_symbol_type> stack_type;
316
317 /// The stack.
318 stack_type yystack_;
319
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);
326
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);
334
335 /// Pop \a n symbols the three stacks.
336 inline void yypop_ (unsigned int n = 1);
337
338 /* Constants. */
339 enum
340 {
341 yyeof_ = 0,
342 yylast_ = ]b4_last[, //< Last index in yytable_.
343 yynnts_ = ]b4_nterms_number[, //< Number of nonterminal symbols.
344 yyempty_ = -2,
345 yyfinal_ = ]b4_final_state_number[, //< Termination state number.
346 yyterror_ = 1,
347 yyerrcode_ = 256,
348 yyntokens_ = ]b4_tokens_number[, //< Number of tokens.
349 };
350
351 ]b4_parse_param_vars[
352 };
353
354 ]b4_lex_symbol_if([b4_yytranslate_define
355 b4_public_types_define])[
356 ]b4_namespace_close[
357
358 ]b4_percent_define_flag_if([[global_tokens_and_yystype]],
359 [b4_token_defines(b4_tokens)
360
361 #ifndef YYSTYPE
362 /* Redirection for backward compatibility. */
363 # define YYSTYPE b4_namespace_ref::b4_parser_class_name::semantic_type
364 #endif
365 ])
366 b4_percent_code_get([[provides]])[]dnl
367
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], [],
373 [
374 // Take the name prefix into account.
375 #define yylex b4_prefix[]lex])[
376
377 /* First part of user declarations. */
378 ]b4_user_pre_prologue[
379
380 #include "@basename(]b4_spec_defines_file[@)"
381
382 /* User implementation prologue. */
383 ]b4_user_post_prologue
384 b4_percent_code_get[]dnl
385
386 [#ifndef YY_
387 # if YYENABLE_NLS
388 # if ENABLE_NLS
389 # include <libintl.h> /* FIXME: INFRINGES ON USER NAME SPACE */
390 # define YY_(msgid) dgettext ("bison-runtime", msgid)
391 # endif
392 # endif
393 # ifndef YY_
394 # define YY_(msgid) msgid
395 # endif
396 #endif
397
398 /* Suppress unused-variable warnings by "using" E. */
399 #define YYUSE(e) ((void) (e))
400
401 /* Enable debugging if requested. */
402 #if YYDEBUG
403
404 /* A pseudo ostream that takes yydebug_ into account. */
405 # define YYCDEBUG if (yydebug_) (*yycdebug_)
406
407 # define YY_SYMBOL_PRINT(Title, Symbol) \
408 do { \
409 if (yydebug_) \
410 { \
411 *yycdebug_ << Title << ' '; \
412 yy_print_ (*yycdebug_, Symbol); \
413 *yycdebug_ << std::endl; \
414 } \
415 } while (false)
416
417 # define YY_REDUCE_PRINT(Rule) \
418 do { \
419 if (yydebug_) \
420 yy_reduce_print_ (Rule); \
421 } while (false)
422
423 # define YY_STACK_PRINT() \
424 do { \
425 if (yydebug_) \
426 yystack_print_ (); \
427 } while (false)
428
429 #else /* !YYDEBUG */
430
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)
435
436 #endif /* !YYDEBUG */
437
438 #define yyerrok (yyerrstatus_ = 0)
439 #define yyclearin (yyempty = true)
440
441 #define YYACCEPT goto yyacceptlab
442 #define YYABORT goto yyabortlab
443 #define YYERROR goto yyerrorlab
444 #define YYRECOVERING() (!!yyerrstatus_)
445
446 ]b4_namespace_open[]b4_error_verbose_if([[
447
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. */
453 std::string
454 ]b4_parser_class_name[::yytnamerr_ (const char *yystr)
455 {
456 if (*yystr == '"')
457 {
458 std::string yyr = "";
459 char const *yyp = yystr;
460
461 for (;;)
462 switch (*++yyp)
463 {
464 case '\'':
465 case ',':
466 goto do_not_strip_quotes;
467
468 case '\\':
469 if (*++yyp != '\\')
470 goto do_not_strip_quotes;
471 /* Fall through. */
472 default:
473 yyr += *yyp;
474 break;
475
476 case '"':
477 return yyr;
478 }
479 do_not_strip_quotes: ;
480 }
481
482 return yystr;
483 }
484 ]])[
485
486 /// Build a parser object.
487 ]b4_parser_class_name::b4_parser_class_name[ (]b4_parse_param_decl[)]m4_ifset([b4_parse_param], [
488 :])[
489 #if YYDEBUG
490 ]m4_ifset([b4_parse_param], [ ], [ :])[yydebug_ (false),
491 yycdebug_ (&std::cerr)]m4_ifset([b4_parse_param], [,])[
492 #endif]b4_parse_param_cons[
493 {
494 }
495
496 ]b4_parser_class_name::~b4_parser_class_name[ ()
497 {
498 }
499
500
501 /*---------------.
502 | Symbol types. |
503 `---------------*/
504
505 ]b4_lex_symbol_if([], [b4_public_types_define])[
506
507 // stack_symbol_type.
508 ]b4_parser_class_name[::stack_symbol_type::stack_symbol_type ()
509 : super_type ()
510 , state ()
511 {
512 }
513
514 ]b4_parser_class_name[::stack_symbol_type::stack_symbol_type (]b4_args(
515 [state_type s],
516 [const semantic_type& v],
517 b4_locations_if([const location_type& l]))[)
518 : super_type (v]b4_locations_if([, l])[)
519 , state (s)
520 {
521 }
522
523 int
524 ]b4_parser_class_name[::stack_symbol_type::type_get_ () const
525 {
526 return yystos_[state];
527 }
528
529
530 template <typename Exact>
531 void
532 ]b4_parser_class_name[::yy_destroy_ (const char* yymsg,
533 symbol_base_type<Exact>& yysym) const
534 {
535 int yytype = yysym.type_get ();
536 YYUSE (yymsg);
537 if (yymsg)
538 YY_SYMBOL_PRINT (yymsg, yysym);
539
540 // User destructor.
541 switch (yytype)
542 {
543 ]b4_symbol_foreach([b4_symbol_destructor])dnl
544 [ default:
545 break;
546 }]b4_variant_if([
547
548 // Type destructor.
549 b4_symbol_variant([[yytype]], [[yysym.value]], [[template destroy]])])[
550 }
551
552 #if YYDEBUG
553 template <typename Exact>
554 void
555 ]b4_parser_class_name[::yy_print_ (std::ostream& yyo,
556 const symbol_base_type<Exact>& yysym) const
557 {
558 int yytype = yysym.type_get ();
559 yyo << (yytype < yyntokens_ ? "token" : "nterm")
560 << ' ' << yytname_[yytype] << " ("]b4_locations_if([
561 << yysym.location << ": "])[;
562 switch (yytype)
563 {
564 ]b4_symbol_foreach([b4_symbol_printer])dnl
565 [ default:
566 break;
567 }
568 yyo << ')';
569 }
570 #endif
571
572 void
573 ]b4_parser_class_name[::yypush_ (const char* m, state_type s,
574 symbol_type& sym)
575 {
576 if (m)
577 YY_SYMBOL_PRINT (m, sym);
578 ]b4_variant_if(
579 [[ yystack_.push (stack_symbol_type (]b4_args(
580 [s],
581 [semantic_type()],
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(
586 [s],
587 [sym.value],
588 b4_locations_if([sym.location]))[));]])[
589 }
590
591 void
592 ]b4_parser_class_name[::yypush_ (const char* m, stack_symbol_type& s)
593 {
594 if (m)
595 YY_SYMBOL_PRINT (m, s);
596 ]b4_variant_if(
597 [[ yystack_.push (stack_symbol_type (]b4_args(
598 [s.state],
599 [semantic_type()],
600 b4_locations_if([s.location]))[));
601 ]b4_symbol_variant([[yystos_[s.state]]], [[yystack_[0].value]],
602 [build], [s.value])],
603 [ yystack_.push (s);])[
604 }
605
606 void
607 ]b4_parser_class_name[::yypop_ (unsigned int n)
608 {
609 yystack_.pop (n);
610 }
611
612 #if YYDEBUG
613 std::ostream&
614 ]b4_parser_class_name[::debug_stream () const
615 {
616 return *yycdebug_;
617 }
618
619 void
620 ]b4_parser_class_name[::set_debug_stream (std::ostream& o)
621 {
622 yycdebug_ = &o;
623 }
624
625
626 ]b4_parser_class_name[::debug_level_type
627 ]b4_parser_class_name[::debug_level () const
628 {
629 return yydebug_;
630 }
631
632 void
633 ]b4_parser_class_name[::set_debug_level (debug_level_type l)
634 {
635 yydebug_ = l;
636 }
637 #endif
638
639 int
640 ]b4_parser_class_name[::parse ()
641 {
642 /// Whether yyla contains a lookahead.
643 bool yyempty = true;
644
645 /* State. */
646 int yyn;
647 int yylen = 0;
648 int yystate = 0;
649
650 /* Error handling. */
651 int yynerrs_ = 0;
652 int yyerrstatus_ = 0;
653
654 /// The lookahead symbol.
655 symbol_type yyla;]b4_locations_if([[
656
657 /// The locations where the error started and ended.
658 stack_symbol_type yyerror_range[2];]])[
659
660 /// $$ and @@$.
661 stack_symbol_type yylhs;
662
663 /// The return value of parse().
664 int yyresult;
665
666 YYCDEBUG << "Starting parse" << std::endl;
667
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
675
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);
682
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.
686 yynewstate:
687 YYCDEBUG << "Entering state " << yystate << std::endl;
688
689 /* Accept? */
690 if (yystate == yyfinal_)
691 goto yyacceptlab;
692
693 goto yybackup;
694
695 /* Backup. */
696 yybackup:
697
698 /* Try to take a decision without lookahead. */
699 yyn = yypact_[yystate];
700 if (yyn == yypact_ninf_)
701 goto yydefault;
702
703 /* Read a lookahead token. */
704 if (yyempty)
705 {
706 YYCDEBUG << "Reading a token: ";
707 ]b4_lex_symbol_if(
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)));])[
714 yyempty = false;
715 }
716 YY_SYMBOL_PRINT ("Next token is", yyla);
717
718 /* If the proper action on seeing token YYLA.TYPE is to reduce or
719 to detect an error, take that action. */
720 yyn += yyla.type;
721 if (yyn < 0 || yylast_ < yyn || yycheck_[yyn] != yyla.type)
722 goto yydefault;
723
724 /* Reduce or error. */
725 yyn = yytable_[yyn];
726 if (yyn <= 0)
727 {
728 if (yyn == 0 || yyn == yytable_ninf_)
729 goto yyerrlab;
730 yyn = -yyn;
731 goto yyreduce;
732 }
733
734 /* Discard the token being shifted. */
735 yyempty = true;
736
737 /* Count tokens shifted since error; after three, turn off error
738 status. */
739 if (yyerrstatus_)
740 --yyerrstatus_;
741
742 /* Shift the lookahead token. */
743 yystate = yyn;
744 yypush_ ("Shifting", yystate, yyla);
745 goto yynewstate;
746
747 /*-----------------------------------------------------------.
748 | yydefault -- do the default action for the current state. |
749 `-----------------------------------------------------------*/
750 yydefault:
751 yyn = yydefact_[yystate];
752 if (yyn == 0)
753 goto yyerrlab;
754 goto yyreduce;
755
756 /*-----------------------------.
757 | yyreduce -- Do a reduction. |
758 `-----------------------------*/
759 yyreduce:
760 yylen = yyr2_[yyn];
761 // Compute post-reduction state.
762 yystate = yypgoto_[yyr1_[yyn] - yyntokens_] + yystack_[yylen].state;
763 if (0 <= yystate && yystate <= yylast_
764 && yycheck_[yystate] == yystack_[yylen].state)
765 yystate = yytable_[yystate];
766 else
767 yystate = yydefgoto_[yyr1_[yyn] - yyntokens_];
768 yylhs.state = yystate;]b4_variant_if([
769 /* Variants are always initialized to an empty instance of the
770 correct type. The default $$=$1 action is NOT applied when using
771 variants. */
772 b4_symbol_variant([[yyr1_@{yyn@}]], [yylhs.value], [build])],[
773 /* If YYLEN is nonzero, implement the default value of the action:
774 `$$ = $1'. Otherwise, use the top of the stack.
775
776 Otherwise, the following line sets YYLHS.VALUE to garbage.
777 This behavior is undocumented and Bison
778 users should not rely upon it. */
779 if (yylen)
780 yylhs.value = yystack_@{yylen - 1@}.value;
781 else
782 yylhs.value = yystack_@{0@}.value;])[
783 ]b4_locations_if([dnl
784 [
785 // Compute the default @@$.
786 {
787 slice<stack_symbol_type, stack_type> slice (yystack_, yylen);
788 YYLLOC_DEFAULT (yylhs.location, slice, yylen);
789 }]])[
790
791 // Perform the reduction.
792 YY_REDUCE_PRINT (yyn);
793 switch (yyn)
794 {
795 ]b4_user_actions[
796 default:
797 break;
798 }
799 YY_SYMBOL_PRINT ("-> $$ =", yylhs);
800 ]b4_variant_if([[
801 // Destroy the rhs symbols.
802 for (int i = 0; i < yylen; ++i)
803 // Destroy a variant which value may have been swapped with
804 // yylhs.value (for instance if the action was "std::swap($$,
805 // $1)"). The value of yylhs.value (hence possibly one of these
806 // rhs symbols) depends on the default contruction for this
807 // type. In the case of pointers for instance, no
808 // initialization is done, so the value is junk. Therefore do
809 // not try to report the value of symbols about to be destroyed
810 // in the debug trace, it's possibly junk. Hence yymsg = 0.
811 // Besides, that keeps exactly the same traces as with the other
812 // Bison skeletons.
813 yy_destroy_ (0, yystack_[i]);]])[
814
815 yypop_ (yylen);
816 yylen = 0;
817 YY_STACK_PRINT ();
818
819 /* Shift the result of the reduction. */
820 yypush_ (0, yylhs);
821 goto yynewstate;
822
823 /*--------------------------------------.
824 | yyerrlab -- here on detecting error. |
825 `--------------------------------------*/
826 yyerrlab:
827 /* If not already recovering from an error, report this error. */
828 if (!yyerrstatus_)
829 {
830 ++yynerrs_;
831 error (]b4_args(b4_locations_if([yyla.location]),
832 [yysyntax_error_ (yystate, yyla.type)])[);
833 }
834
835 ]b4_locations_if([[
836 yyerror_range[0].location = yyla.location;]])[
837 if (yyerrstatus_ == 3)
838 {
839 /* If just tried and failed to reuse lookahead token after an
840 error, discard it. */
841
842 /* Return failure if at end of input. */
843 if (yyla.type == yyeof_)
844 YYABORT;
845 else
846 {
847 yy_destroy_ ("Error: discarding", yyla);
848 yyempty = true;
849 }
850 }
851
852 /* Else will try to reuse lookahead token after shifting the error
853 token. */
854 goto yyerrlab1;
855
856
857 /*---------------------------------------------------.
858 | yyerrorlab -- error raised explicitly by YYERROR. |
859 `---------------------------------------------------*/
860 yyerrorlab:
861
862 /* Pacify compilers like GCC when the user code never invokes
863 YYERROR and the label yyerrorlab therefore never appears in user
864 code. */
865 if (false)
866 goto yyerrorlab;]b4_locations_if([[
867 yyerror_range[0].location = yystack_[yylen - 1].location;]])b4_variant_if([[
868 /* $$ was initialized before running the user action. */
869 yy_destroy_ ("Error: discarding", yylhs);]])[
870 /* Do not reclaim the symbols of the rule which action triggered
871 this YYERROR. */
872 yypop_ (yylen);
873 yylen = 0;
874 yystate = yystack_[0].state;
875 goto yyerrlab1;
876
877 /*-------------------------------------------------------------.
878 | yyerrlab1 -- common code for both syntax error and YYERROR. |
879 `-------------------------------------------------------------*/
880 yyerrlab1:
881 yyerrstatus_ = 3; /* Each real token shifted decrements this. */
882 {
883 stack_symbol_type error_token;
884 for (;;)
885 {
886 yyn = yypact_[yystate];
887 if (yyn != yypact_ninf_)
888 {
889 yyn += yyterror_;
890 if (0 <= yyn && yyn <= yylast_ && yycheck_[yyn] == yyterror_)
891 {
892 yyn = yytable_[yyn];
893 if (0 < yyn)
894 break;
895 }
896 }
897
898 // Pop the current state because it cannot handle the error token.
899 if (yystack_.size () == 1)
900 YYABORT;
901 ]b4_locations_if([[
902 yyerror_range[0].location = yystack_[0].location;]])[
903 yy_destroy_ ("Error: popping", yystack_[0]);
904 yypop_ ();
905 yystate = yystack_[0].state;
906 YY_STACK_PRINT ();
907 }
908 ]b4_locations_if([[
909 yyerror_range[1].location = yyla.location;
910 YYLLOC_DEFAULT (error_token.location, (yyerror_range - 1), 2);]])[
911
912 /* Shift the error token. */
913 error_token.state = yystate = yyn;
914 yypush_ ("Shifting", error_token);
915 }
916 goto yynewstate;
917
918 /* Accept. */
919 yyacceptlab:
920 yyresult = 0;
921 goto yyreturn;
922
923 /* Abort. */
924 yyabortlab:
925 yyresult = 1;
926 goto yyreturn;
927
928 yyreturn:
929 if (!yyempty)
930 yy_destroy_ ("Cleanup: discarding lookahead", yyla);
931
932 /* Do not reclaim the symbols of the rule which action triggered
933 this YYABORT or YYACCEPT. */
934 yypop_ (yylen);
935 while (yystack_.size () != 1)
936 {
937 yy_destroy_ ("Cleanup: popping", yystack_[0]);
938 yypop_ ();
939 }
940
941 return yyresult;
942 }
943
944 // Generate an error message.
945 std::string
946 ]b4_parser_class_name[::yysyntax_error_ (]dnl
947 b4_error_verbose_if([int yystate, int yytoken],
948 [int, int])[)
949 {
950 std::string yyres;]b4_error_verbose_if([[
951 int yyn = yypact_[yystate];
952 if (yypact_ninf_ < yyn && yyn <= yylast_)
953 {
954 /* Start YYX at -YYN if negative to avoid negative indexes in
955 YYCHECK. */
956 int yyxbegin = yyn < 0 ? -yyn : 0;
957
958 /* Stay within bounds of both yycheck and yytname. */
959 int yychecklim = yylast_ - yyn + 1;
960 int yyxend = yychecklim < yyntokens_ ? yychecklim : yyntokens_;
961
962 // Number of reported tokens (one for the "unexpected", one per
963 // "expected").
964 size_t yycount = 0;
965 // Its maximum.
966 enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
967 // Arguments of yyformat.
968 char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
969 yyarg[yycount++] = yytname_[yytoken];
970 for (int yyx = yyxbegin; yyx < yyxend; ++yyx)
971 if (yycheck_[yyx + yyn] == yyx && yyx != yyterror_)
972 {
973 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
974 {
975 yycount = 1;
976 break;
977 }
978 else
979 yyarg[yycount++] = yytname_[yyx];
980 }
981
982 char const* yyformat = 0;
983 switch (yycount)
984 {
985 #define YYCASE_(N, S) \
986 case N: \
987 yyformat = S; \
988 break
989 YYCASE_(1, YY_("syntax error, unexpected %s"));
990 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
991 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
992 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
993 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
994 #undef YYCASE_
995 }
996 // Argument number.
997 size_t yyi = 0;
998 for (char const* yyp = yyformat; *yyp; ++yyp)
999 if (yyp[0] == '%' && yyp[1] == 's' && yyi < yycount)
1000 {
1001 yyres += yytnamerr_ (yyarg[yyi++]);
1002 ++yyp;
1003 }
1004 else
1005 yyres += *yyp;
1006 }
1007 else
1008 ]])dnl
1009 [ yyres = YY_("syntax error");
1010 return yyres;
1011 }
1012
1013
1014 const ]b4_int_type(b4_pact_ninf, b4_pact_ninf) b4_parser_class_name::yypact_ninf_ = b4_pact_ninf[;
1015
1016 const ]b4_int_type(b4_table_ninf, b4_table_ninf) b4_parser_class_name::yytable_ninf_ = b4_table_ninf[;
1017
1018 ]b4_parser_tables_define[
1019
1020 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
1021 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
1022 First, the terminals, then, starting at \a yyntokens_, nonterminals. */
1023 const char*
1024 const ]b4_parser_class_name[::yytname_[] =
1025 {
1026 ]b4_tname[
1027 };
1028 #endif
1029
1030 #if YYDEBUG
1031 ]b4_integral_parser_table_define([rline], [b4_rline])[
1032
1033 // Print the state stack on the debug stream.
1034 void
1035 ]b4_parser_class_name[::yystack_print_ ()
1036 {
1037 *yycdebug_ << "Stack now";
1038 for (stack_type::const_iterator
1039 i = yystack_.begin (),
1040 i_end = yystack_.end ();
1041 i != i_end; ++i)
1042 *yycdebug_ << ' ' << i->state;
1043 *yycdebug_ << std::endl;
1044 }
1045
1046 // Report on the debug stream that the rule \a yyrule is going to be reduced.
1047 void
1048 ]b4_parser_class_name[::yy_reduce_print_ (int yyrule)
1049 {
1050 unsigned int yylno = yyrline_[yyrule];
1051 int yynrhs = yyr2_[yyrule];
1052 /* Print the symbols being reduced, and their result. */
1053 *yycdebug_ << "Reducing stack by rule " << yyrule - 1
1054 << " (line " << yylno << "):" << std::endl;
1055 /* The symbols being reduced. */
1056 for (int yyi = 0; yyi < yynrhs; yyi++)
1057 YY_SYMBOL_PRINT (" $" << yyi + 1 << " =",
1058 ]b4_rhs_data(yynrhs, yyi + 1)[);
1059 }
1060 #endif // YYDEBUG
1061
1062 ]b4_lex_symbol_if([], [b4_yytranslate_define])[
1063 ]b4_namespace_close[
1064 ]b4_epilogue[]dnl
1065 m4_divert_pop(0)
1066 m4_popdef([b4_copyright_years])dnl