]> git.saurik.com Git - bison.git/blame_incremental - data/lalr1.cc
Push a complete symbol, not connected parts.
[bison.git] / data / lalr1.cc
... / ...
CommitLineData
1# C++ skeleton for Bison
2
3# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
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
19m4_include(b4_pkgdatadir/[c++.m4])
20
21# b4_table_define(TABLE-NAME, CONTENT)
22# ------------------------------------
23# Define "parser::yy<TABLE-NAME>_" which contents is CONTENT.
24m4_define([b4_table_define],
25[const b4_int_type_for([$2])
26 b4_parser_class_name::yy$1_[[]] =
27 {
28 $2
29 }dnl
30])
31
32# How the semantic value is extracted when using variants.
33b4_variant_if([
34 # b4_symbol_value(VAL, [TYPE])
35 # ----------------------------
36 m4_define([b4_symbol_value],
37 [m4_ifval([$2],
38 [$1.as<$2>()],
39 [$1])])
40]) # b4_variant_if
41
42
43# b4_assert_if([IF-ASSERTIONS-ARE-USED], [IF-NOT])
44# ----------------------------------------------------
45m4_define([b4_assert_if],
46[b4_percent_define_ifdef([[assert]], [$1], [$2])])
47
48
49# b4_lhs_value([TYPE])
50# --------------------
51# Expansion of $<TYPE>$.
52m4_define([b4_lhs_value],
53[b4_symbol_value([yylhs.value], [$1])])
54
55
56# b4_lhs_location()
57# -----------------
58# Expansion of @$.
59m4_define([b4_lhs_location],
60[yylhs.location])
61
62
63# b4_rhs_data(RULE-LENGTH, NUM)
64# -----------------------------
65# Return the data corresponding to the symbol #NUM, where the current
66# rule has RULE-LENGTH symbols on RHS.
67m4_define([b4_rhs_data],
68 [yystack_@{($1) - ($2)@}])
69
70
71# b4_rhs_state(RULE-LENGTH, NUM)
72# -----------------------------
73# The state corresponding to the symbol #NUM, where the current
74# rule has RULE-LENGTH symbols on RHS.
75m4_define([b4_rhs_state],
76 [b4_rhs_data([$1], [$2]).state])
77
78
79# b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
80# --------------------------------------
81# Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
82# symbols on RHS.
83m4_define([b4_rhs_value],
84 [b4_symbol_value([b4_rhs_data([$1], [$2]).value], [$3])])
85
86
87# b4_rhs_location(RULE-LENGTH, NUM)
88# ---------------------------------
89# Expansion of @NUM, where the current rule has RULE-LENGTH symbols
90# on RHS.
91m4_define([b4_rhs_location],
92 [b4_rhs_data([$1], [$2]).location])
93
94
95# b4_symbol_actions(FILENAME, LINENO,
96# SYMBOL-TAG, SYMBOL-NUM,
97# SYMBOL-ACTION, SYMBOL-TYPENAME)
98# -------------------------------------------------
99# Same as in C, but using references instead of pointers.
100m4_define([b4_symbol_actions],
101[m4_pushdef([b4_dollar_dollar],
102 [b4_symbol_value([yyvalue], [$6])])dnl
103m4_pushdef([b4_at_dollar], [yylocation])dnl
104 case $4: // $3
105b4_syncline([$2], [$1])
106 $5;
107b4_syncline([@oline@], [@ofile@])
108 break;
109m4_popdef([b4_at_dollar])dnl
110m4_popdef([b4_dollar_dollar])dnl
111])
112
113
114# b4_symbol_action_(SYMBOL-TAG, SYMBOL-NUM, SYMBOL-TYPENAME)
115# ----------------------------------------------------------
116# Invoke b4_dollar_dollar(SYMBOL_TYPENAME) for each symbol.
117m4_define([b4_symbol_action_],
118[m4_ifval($3,
119[ case $2: // $1
120 b4_dollar_dollar($@);
121 break;
122])])
123
124
125# b4_symbol_variant(YYTYPE, YYVAL, ACTION, [ARGS])
126# ------------------------------------------------
127# Run some ACTION ("build", or "destroy") on YYVAL of symbol type
128# YYTYPE.
129m4_define([b4_symbol_variant],
130[m4_pushdef([b4_dollar_dollar],
131 [$2.$3<$][3>(m4_shift3($@))])dnl
132 switch ($1)
133 {
134m4_map([b4_symbol_action_], m4_defn([b4_type_names]))
135 default:
136 break;
137 }
138m4_popdef([b4_dollar_dollar])dnl
139])
140
141
142# _b4_char_sizeof_counter
143# -----------------------
144# A counter used by _b4_char_sizeof_dummy to create fresh symbols.
145m4_define([_b4_char_sizeof_counter],
146[0])
147
148# _b4_char_sizeof_dummy
149# ---------------------
150# At each call return a new C++ identifier.
151m4_define([_b4_char_sizeof_dummy],
152[m4_define([_b4_char_sizeof_counter], m4_incr(_b4_char_sizeof_counter))dnl
153dummy[]_b4_char_sizeof_counter])
154
155
156# b4_char_sizeof(SYMBOL-TAG, SYMBOL-NUM, SYMBOL-TYPENAME)
157# -------------------------------------------------------
158# To be mapped on the list of type names to produce:
159#
160# char dummy1[sizeof(type_name_1)];
161# char dummy2[sizeof(type_name_2)];
162#
163# for defined type names.
164# $3 is doubly-quoted, do not quote it again.
165m4_define([b4_char_sizeof],
166[m4_ifval($3,
167[
168 char _b4_char_sizeof_dummy@{sizeof($3)@}; // $1])dnl
169])
170
171
172m4_pushdef([b4_copyright_years],
173 [2002, 2003, 2004, 2005, 2006, 2007, 2008])
174
175m4_define([b4_parser_class_name],
176 [b4_percent_define_get([[parser_class_name]])])
177
178# The header is mandatory.
179b4_defines_if([],
180 [b4_fatal([b4_skeleton[: using %%defines is mandatory]])])
181
182# Backward compatibility.
183m4_define([b4_location_constructors])
184m4_include(b4_pkgdatadir/[location.cc])
185
186# We do want M4 expansion after # for CPP macros.
187m4_changecom()
188m4_divert_push(0)dnl
189b4_defines_if(
190[@output(b4_spec_defines_file@)@
191b4_copyright([Skeleton interface for Bison LALR(1) parsers in C++])
192dnl FIXME: This is wrong, we want computed header guards.
193[
194/* C++ LALR(1) parser skeleton written by Akim Demaille. */
195
196#ifndef PARSER_HEADER_H
197# define PARSER_HEADER_H
198
199]b4_percent_code_get([[requires]])[
200
201]b4_assert_if([#include <cassert>])[
202#include <string>
203#include <iostream>
204#include "stack.hh"
205
206]b4_namespace_open[
207 class position;
208 class location;
209]b4_variant_if(
210[[
211 /// A char[S] buffer to store and retrieve objects.
212 ///
213 /// Sort of a variant, but does not keep track of the nature
214 /// of the stored data, since that knowledge is available
215 /// via the current state.
216 template <size_t S>
217 struct variant
218 {]b4_assert_if([
219 /// Whether something is contained.
220 bool built;
221
222 /// Initially uninitialized.
223 variant ()
224 : built(false)
225 {}])[
226
227 /// Instantiate a \a T in here.
228 template <typename T>
229 inline T&
230 build()
231 {]b4_assert_if([
232 assert(!built);
233 built = true;])[
234 return *new (buffer) T;
235 }
236
237 /// Accessor to a built \a T.
238 template <typename T>
239 inline T&
240 as()
241 {]b4_assert_if([
242 assert(built);])[
243 return reinterpret_cast<T&>(buffer);
244 }
245
246 /// Const accessor to a built \a T (for %printer).
247 template <typename T>
248 inline const T&
249 as() const
250 {]b4_assert_if([
251 assert(built);])[
252 return reinterpret_cast<const T&>(buffer);
253 }
254
255 /// Swap the content with \a other.
256 template <typename T>
257 inline void
258 swap(variant<S>& other)
259 {
260 std::swap(as<T>(), other.as<T>());
261 }
262
263 /// Assign the content of \a other to this.
264 /// Destroys \a other.
265 template <typename T>
266 inline void
267 build(variant<S>& other)
268 {
269 build<T>();
270 swap<T>(other);
271 other.destroy<T>();
272 }
273
274 /// Destroy the stored \a T.
275 template <typename T>
276 inline void
277 destroy()
278 {
279 as<T>().~T();]b4_assert_if([
280 built = false;])[
281 }
282
283 /// A buffer large enough to store any of the semantic values.
284 char buffer[S];
285 };
286]])[
287]b4_namespace_close[
288
289#include "location.hh"
290
291/* Enabling traces. */
292#ifndef YYDEBUG
293# define YYDEBUG ]b4_debug_flag[
294#endif
295
296/* Enabling verbose error messages. */
297#ifdef YYERROR_VERBOSE
298# undef YYERROR_VERBOSE
299# define YYERROR_VERBOSE 1
300#else
301# define YYERROR_VERBOSE ]b4_error_verbose_flag[
302#endif
303
304/* Enabling the token table. */
305#ifndef YYTOKEN_TABLE
306# define YYTOKEN_TABLE ]b4_token_table[
307#endif
308
309/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
310 If N is 0, then set CURRENT to the empty location which ends
311 the previous symbol: RHS[0] (always defined). */
312
313#ifndef YYLLOC_DEFAULT
314# define YYLLOC_DEFAULT(Current, Rhs, N) \
315do { \
316 if (N) \
317 { \
318 (Current).begin = (Rhs)[1].location.begin; \
319 (Current).end = (Rhs)[N].location.end; \
320 } \
321 else \
322 { \
323 (Current).begin = (Current).end = (Rhs)[0].location.end; \
324 } \
325} while (false)
326#endif
327
328]b4_namespace_open[
329
330 /// A Bison parser.
331 class ]b4_parser_class_name[
332 {
333 public:
334#ifndef YYSTYPE
335]b4_variant_if(
336[ /// An auxiliary type to compute the largest semantic type.
337 union union_type
338 {]m4_map([b4_char_sizeof], m4_defn([b4_type_names]))[
339 };
340
341 /// Symbol semantic values.
342 typedef variant<sizeof(union_type)> semantic_type;],
343[ /// Symbol semantic values.
344m4_ifdef([b4_stype],
345[ union semantic_type
346 {b4_user_stype
347 };],
348[m4_if(b4_tag_seen_flag, 0,
349[[ typedef int semantic_type;]],
350[[ typedef YYSTYPE semantic_type;]])])])[
351#else
352 typedef YYSTYPE semantic_type;
353#endif
354 /// Symbol locations.
355 typedef ]b4_percent_define_get([[location_type]])[ location_type;
356 /// Tokens.
357 struct token
358 {
359 ]b4_token_enums(b4_tokens)[
360 };
361 /// Token type.
362 typedef token::yytokentype token_type;
363
364 /// Build a parser object.
365 ]b4_parser_class_name[ (]b4_parse_param_decl[);
366 virtual ~]b4_parser_class_name[ ();
367
368 /// Parse.
369 /// \returns 0 iff parsing succeeded.
370 virtual int parse ();
371
372#if YYDEBUG
373 /// The current debugging stream.
374 std::ostream& debug_stream () const;
375 /// Set the current debugging stream.
376 void set_debug_stream (std::ostream &);
377
378 /// Type for debugging levels.
379 typedef int debug_level_type;
380 /// The current debugging level.
381 debug_level_type debug_level () const;
382 /// Set the current debugging level.
383 void set_debug_level (debug_level_type l);
384#endif
385
386 private:
387 /// Report a syntax error.
388 /// \param loc where the syntax error is found.
389 /// \param msg a description of the syntax error.
390 virtual void error (const location_type& loc, const std::string& msg);
391
392 /// Generate an error message.
393 /// \param state the state where the error occurred.
394 /// \param tok the lookahead token.
395 virtual std::string yysyntax_error_ (int yystate, int tok);
396
397#if YYDEBUG
398 /// \brief Report a symbol value on the debug stream.
399 /// \param yytype The token type.
400 /// \param yyvalue Its semantic value.
401 /// \param yylocation Its location.
402 virtual void yy_symbol_value_print_ (int yytype,
403 const semantic_type& yyvalue,
404 const location_type& yylocation);
405 /// \brief Report a symbol on the debug stream.
406 /// \param yytype The token type.
407 /// \param yyvalue Its semantic value.
408 /// \param yylocation Its location.
409 virtual void yy_symbol_print_ (int yytype,
410 const semantic_type& yyvalue,
411 const location_type& yylocation);
412#endif
413
414 /// State numbers.
415 typedef int state_type;
416
417 /// Internal symbol numbers.
418 typedef ]b4_int_type_for([b4_translate])[ token_number_type;
419 /* Tables. */
420 /// For a state, the index in \a yytable_ of its portion.
421 static const ]b4_int_type_for([b4_pact])[ yypact_[];
422 static const ]b4_int_type(b4_pact_ninf, b4_pact_ninf)[ yypact_ninf_;
423
424 /// For a state, default rule to reduce.
425 /// Unless\a yytable_ specifies something else to do.
426 /// Zero means the default is an error.
427 static const ]b4_int_type_for([b4_defact])[ yydefact_[];
428
429 static const ]b4_int_type_for([b4_pgoto])[ yypgoto_[];
430 static const ]b4_int_type_for([b4_defgoto])[ yydefgoto_[];
431
432 /// What to do in a state.
433 /// \a yytable_[yypact_[s]]: what to do in state \a s.
434 /// - if positive, shift that token.
435 /// - if negative, reduce the rule which number is the opposite.
436 /// - if zero, do what YYDEFACT says.
437 static const ]b4_int_type_for([b4_table])[ yytable_[];
438 static const ]b4_int_type(b4_table_ninf, b4_table_ninf)[ yytable_ninf_;
439
440 static const ]b4_int_type_for([b4_check])[ yycheck_[];
441
442 /// For a state, its accessing symbol.
443 static const ]b4_int_type_for([b4_stos])[ yystos_[];
444
445 /// For a rule, its LHS.
446 static const ]b4_int_type_for([b4_r1])[ yyr1_[];
447 /// For a rule, its RHS length.
448 static const ]b4_int_type_for([b4_r2])[ yyr2_[];
449
450#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
451 /// For a symbol, its name in clear.
452 static const char* const yytname_[];
453#endif
454
455#if YYERROR_VERBOSE
456 /// Convert the symbol name \a n to a form suitable for a diagnostic.
457 virtual std::string yytnamerr_ (const char *n);
458#endif
459
460#if YYDEBUG
461 /// For each rule, its source line number.
462 static const ]b4_int_type_for([b4_rline])[ yyrline_[];
463 /// For each scanner token number, its symbol number.
464 static const ]b4_int_type_for([b4_toknum])[ yytoken_number_[];
465 /// Report on the debug stream that the rule \a r is going to be reduced.
466 virtual void yy_reduce_print_ (int r);
467 /// Print the state stack on the debug stream.
468 virtual void yystack_print_ ();
469
470 /* Debugging. */
471 int yydebug_;
472 std::ostream* yycdebug_;
473#endif
474
475 /// Convert a scanner token number \a t to a symbol number.
476 token_number_type yytranslate_ (int t);
477
478 /// \brief Reclaim the memory associated to a symbol.
479 /// \param yymsg Why this token is reclaimed.
480 /// If null, nothing is printed at all.
481 /// \param yytype The symbol type.
482 /// \param yyvalue Its semantic value.
483 /// \param yylocation Its location.
484 inline void yydestruct_ (const char* yymsg,
485 int yytype,
486 semantic_type& yyvalue,
487 location_type& yylocation);
488
489 /// Element of the stack: a state and its attributes.
490 struct data_type
491 {
492 /// Default constructor.
493 data_type ();
494
495 /// Constructor.
496 data_type (state_type s, const semantic_type& v, const location_type& l);
497
498 /// The state.
499 state_type state;
500
501 /// The semantic value.
502 semantic_type value;
503
504 /// The location.
505 location_type location;
506 };
507
508 /// Stack type.
509 typedef stack<data_type> stack_type;
510
511 /// The stack.
512 stack_type yystack_;
513
514 /// Push a new state on the stack.
515 /// \param m a debug message to display
516 /// if null, no trace is output.
517 /// \param s the symbol
518 /// \warning the contents of \a s.value is stolen.
519 inline void yypush_ (const char* m, data_type& s);
520
521 /// Pop \a n symbols the three stacks.
522 inline void yypop_ (unsigned int n = 1);
523
524 /* Constants. */
525 static const int yyeof_;
526 /* LAST_ -- Last index in TABLE_. */
527 static const int yylast_;
528 static const int yynnts_;
529 static const int yyempty_;
530 static const int yyfinal_;
531 static const int yyterror_;
532 static const int yyerrcode_;
533 static const int yyntokens_;
534 static const unsigned int yyuser_token_number_max_;
535 static const token_number_type yyundef_token_;
536]b4_parse_param_vars[
537 };
538]b4_namespace_close[
539
540]b4_percent_define_flag_if([[global_tokens_and_yystype]],
541[b4_token_defines(b4_tokens)
542
543#ifndef YYSTYPE
544 /* Redirection for backward compatibility. */
545# define YYSTYPE b4_namespace_ref::b4_parser_class_name::semantic_type
546#endif
547])
548b4_percent_code_get([[provides]])[]dnl
549
550[#endif /* ! defined PARSER_HEADER_H */]
551])dnl
552@output(b4_parser_file_name@)@
553b4_copyright([Skeleton implementation for Bison LALR(1) parsers in C++])
554b4_percent_code_get([[top]])[]dnl
555m4_if(b4_prefix, [yy], [],
556[
557// Take the name prefix into account.
558#define yylex b4_prefix[]lex])[
559
560/* First part of user declarations. */
561]b4_user_pre_prologue
562
563b4_defines_if([[
564#include "@basename(]b4_spec_defines_file[@)"]])[
565
566/* User implementation prologue. */
567]b4_user_post_prologue
568b4_percent_code_get[]dnl
569
570[#ifndef YY_
571# if YYENABLE_NLS
572# if ENABLE_NLS
573# include <libintl.h> /* FIXME: INFRINGES ON USER NAME SPACE */
574# define YY_(msgid) dgettext ("bison-runtime", msgid)
575# endif
576# endif
577# ifndef YY_
578# define YY_(msgid) msgid
579# endif
580#endif
581
582/* Suppress unused-variable warnings by "using" E. */
583#define YYUSE(e) ((void) (e))
584
585/* Enable debugging if requested. */
586#if YYDEBUG
587
588/* A pseudo ostream that takes yydebug_ into account. */
589# define YYCDEBUG if (yydebug_) (*yycdebug_)
590
591# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
592 do { \
593 if (yydebug_) \
594 { \
595 *yycdebug_ << Title << ' '; \
596 yy_symbol_print_ ((Type), (Value), (Location)); \
597 *yycdebug_ << std::endl; \
598 } \
599 } while (false)
600
601# define YY_REDUCE_PRINT(Rule) \
602 do { \
603 if (yydebug_) \
604 yy_reduce_print_ (Rule); \
605 } while (false)
606
607# define YY_STACK_PRINT() \
608 do { \
609 if (yydebug_) \
610 yystack_print_ (); \
611 } while (false)
612
613#else /* !YYDEBUG */
614
615# define YYCDEBUG if (false) std::cerr
616# define YY_SYMBOL_PRINT(Title, Type, Value, Location) static_cast<void>(0)
617# define YY_REDUCE_PRINT(Rule) static_cast<void>(0)
618# define YY_STACK_PRINT() static_cast<void>(0)
619
620#endif /* !YYDEBUG */
621
622#define yyerrok (yyerrstatus_ = 0)
623#define yyclearin (yychar = yyempty_)
624
625#define YYACCEPT goto yyacceptlab
626#define YYABORT goto yyabortlab
627#define YYERROR goto yyerrorlab
628#define YYRECOVERING() (!!yyerrstatus_)
629
630]b4_namespace_open[
631#if YYERROR_VERBOSE
632
633 /* Return YYSTR after stripping away unnecessary quotes and
634 backslashes, so that it's suitable for yyerror. The heuristic is
635 that double-quoting is unnecessary unless the string contains an
636 apostrophe, a comma, or backslash (other than backslash-backslash).
637 YYSTR is taken from yytname. */
638 std::string
639 ]b4_parser_class_name[::yytnamerr_ (const char *yystr)
640 {
641 if (*yystr == '"')
642 {
643 std::string yyr = "";
644 char const *yyp = yystr;
645
646 for (;;)
647 switch (*++yyp)
648 {
649 case '\'':
650 case ',':
651 goto do_not_strip_quotes;
652
653 case '\\':
654 if (*++yyp != '\\')
655 goto do_not_strip_quotes;
656 /* Fall through. */
657 default:
658 yyr += *yyp;
659 break;
660
661 case '"':
662 return yyr;
663 }
664 do_not_strip_quotes: ;
665 }
666
667 return yystr;
668 }
669
670#endif
671
672 /// Build a parser object.
673 ]b4_parser_class_name::b4_parser_class_name[ (]b4_parse_param_decl[)]m4_ifset([b4_parse_param], [
674 :])[
675#if YYDEBUG
676 ]m4_ifset([b4_parse_param], [ ], [ :])[yydebug_ (false),
677 yycdebug_ (&std::cerr)]m4_ifset([b4_parse_param], [,])[
678#endif]b4_parse_param_cons[
679 {
680 }
681
682 ]b4_parser_class_name::~b4_parser_class_name[ ()
683 {
684 }
685
686#if YYDEBUG
687 /*--------------------------------.
688 | Print this symbol on YYOUTPUT. |
689 `--------------------------------*/
690
691 inline void
692 ]b4_parser_class_name[::yy_symbol_value_print_ (int yytype,
693 const semantic_type& yyvalue, const location_type& yylocation)
694 {
695 YYUSE (yylocation);
696 YYUSE (yyvalue);
697 switch (yytype)
698 {
699 ]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
700[ default:
701 break;
702 }
703 }
704
705
706 void
707 ]b4_parser_class_name[::yy_symbol_print_ (int yytype,
708 const semantic_type& yyvalue, const location_type& yylocation)
709 {
710 *yycdebug_ << (yytype < yyntokens_ ? "token" : "nterm")
711 << ' ' << yytname_[yytype] << " ("
712 << yylocation << ": ";
713 yy_symbol_value_print_ (yytype, yyvalue, yylocation);
714 *yycdebug_ << ')';
715 }
716#endif
717
718 void
719 ]b4_parser_class_name[::yydestruct_ (const char* yymsg,
720 int yytype, semantic_type& yyvalue, location_type& yylocation)
721 {
722 YYUSE (yymsg);
723 YYUSE (yyvalue);
724 YYUSE (yylocation);
725
726 if (yymsg)
727 YY_SYMBOL_PRINT (yymsg, yytype, yyvalue, yylocation);
728
729 // User destructor.
730 switch (yytype)
731 {
732 ]m4_map([b4_symbol_actions], m4_defn([b4_symbol_destructors]))[
733 default:
734 break;
735 }]b4_variant_if([
736
737 // Type destructor.
738 b4_symbol_variant([[yytype]], [[yyvalue]], [[destroy]])])[
739 }
740
741 ]b4_parser_class_name[::data_type::data_type ()
742 : state()
743 , value()
744 , location()
745 {
746 }
747
748 ]b4_parser_class_name[::data_type::data_type (state_type s,
749 const semantic_type& v, const location_type& l)
750 : state(s)
751 , value(v)
752 , location(l)
753 {
754 }
755
756 void
757 ]b4_parser_class_name[::yypush_ (const char* m, data_type& s)
758 {
759 if (m)
760 YY_SYMBOL_PRINT (m, yystos_[s.state], s.value, s.location);
761]b4_variant_if(
762[[ yystack_.push (data_type (s, semantic_type(), l));
763 ]b4_symbol_variant([[yystos_[s]]], [[yystack_[0].value]],
764 [build], [s.value])],
765[ yystack_.push (s);])[
766 }
767
768 void
769 ]b4_parser_class_name[::yypop_ (unsigned int n)
770 {
771 yystack_.pop (n);
772 }
773
774#if YYDEBUG
775 std::ostream&
776 ]b4_parser_class_name[::debug_stream () const
777 {
778 return *yycdebug_;
779 }
780
781 void
782 ]b4_parser_class_name[::set_debug_stream (std::ostream& o)
783 {
784 yycdebug_ = &o;
785 }
786
787
788 ]b4_parser_class_name[::debug_level_type
789 ]b4_parser_class_name[::debug_level () const
790 {
791 return yydebug_;
792 }
793
794 void
795 ]b4_parser_class_name[::set_debug_level (debug_level_type l)
796 {
797 yydebug_ = l;
798 }
799#endif
800
801 int
802 ]b4_parser_class_name[::parse ()
803 {
804 /// Lookahead and lookahead in internal form.
805 int yychar = yyempty_;
806 int yytoken = 0;
807
808 /* State. */
809 int yyn;
810 int yylen = 0;
811 int yystate = 0;
812
813 /* Error handling. */
814 int yynerrs_ = 0;
815 int yyerrstatus_ = 0;
816
817 /// The lookahead symbol.
818 data_type yyla;
819
820 /// The locations where the error started and ended.
821 data_type yyerror_range[2];
822
823 /// $$ and @@$.
824 data_type yylhs;
825
826 /// The return value of parse().
827 int yyresult;
828
829 YYCDEBUG << "Starting parse" << std::endl;
830
831]m4_ifdef([b4_initial_action], [
832m4_pushdef([b4_at_dollar], [yyla.location])dnl
833m4_pushdef([b4_dollar_dollar], [yyla.value])dnl
834 /* User initialization code. */
835 b4_user_initial_action
836m4_popdef([b4_dollar_dollar])dnl
837m4_popdef([b4_at_dollar])])dnl
838
839 [ /* Initialize the stack. The initial state will be set in
840 yynewstate, since the latter expects the semantical and the
841 location values to have been already stored, initialize these
842 stacks with a primary value. */
843 yystack_ = stack_type (0);
844 yypush_ (0, yyla);
845
846 // A new state was pushed on the stack.
847 // Invariant: yystate == yystack_[0].state, i.e.,
848 // yystate was just pushed onto the state stack.
849 yynewstate:
850 YYCDEBUG << "Entering state " << yystate << std::endl;
851
852 /* Accept? */
853 if (yystate == yyfinal_)
854 goto yyacceptlab;
855
856 goto yybackup;
857
858 /* Backup. */
859 yybackup:
860
861 /* Try to take a decision without lookahead. */
862 yyn = yypact_[yystate];
863 if (yyn == yypact_ninf_)
864 goto yydefault;
865
866 /* Read a lookahead token. */
867 if (yychar == yyempty_)
868 {
869 YYCDEBUG << "Reading a token: ";
870 yychar = ]b4_c_function_call([yylex], [int],
871 [[YYSTYPE*], [&yyla.value]][]dnl
872b4_locations_if([, [[location*], [&yyla.location]]])dnl
873m4_ifdef([b4_lex_param], [, ]b4_lex_param))[;
874 }
875
876
877 /* Convert token to internal form. */
878 if (yychar <= yyeof_)
879 {
880 yychar = yytoken = yyeof_;
881 YYCDEBUG << "Now at end of input." << std::endl;
882 }
883 else
884 {
885 yytoken = yytranslate_ (yychar);
886 YY_SYMBOL_PRINT ("Next token is", yytoken, yyla.value, yyla.location);
887 }
888
889 /* If the proper action on seeing token YYTOKEN is to reduce or to
890 detect an error, take that action. */
891 yyn += yytoken;
892 if (yyn < 0 || yylast_ < yyn || yycheck_[yyn] != yytoken)
893 goto yydefault;
894
895 /* Reduce or error. */
896 yyn = yytable_[yyn];
897 if (yyn <= 0)
898 {
899 if (yyn == 0 || yyn == yytable_ninf_)
900 goto yyerrlab;
901 yyn = -yyn;
902 goto yyreduce;
903 }
904
905 /* Discard the token being shifted. */
906 yychar = yyempty_;
907
908 /* Count tokens shifted since error; after three, turn off error
909 status. */
910 if (yyerrstatus_)
911 --yyerrstatus_;
912
913 /* Shift the lookahead token. */
914 yyla.state = yystate = yyn;
915 yypush_ ("Shifting", yyla);
916 goto yynewstate;
917
918 /*-----------------------------------------------------------.
919 | yydefault -- do the default action for the current state. |
920 `-----------------------------------------------------------*/
921 yydefault:
922 yyn = yydefact_[yystate];
923 if (yyn == 0)
924 goto yyerrlab;
925 goto yyreduce;
926
927 /*-----------------------------.
928 | yyreduce -- Do a reduction. |
929 `-----------------------------*/
930 yyreduce:
931 yylen = yyr2_[yyn];]b4_variant_if([
932 /* Variants are always initialized to an empty instance of the
933 correct type. The default $$=$1 rule is NOT applied when using
934 variants */
935 ]b4_symbol_variant([[yyr1_@{yyn@}]], [yylhs.value], [build])[],[
936 /* If YYLEN is nonzero, implement the default value of the action:
937 `$$ = $1'. Otherwise, use the top of the stack.
938
939 Otherwise, the following line sets YYLHS.VALUE to garbage.
940 This behavior is undocumented and Bison
941 users should not rely upon it. */
942 if (yylen)
943 yylhs.value = yystack_@{yylen - 1@}.value;
944 else
945 yylhs.value = yystack_@{0@}.value;])[
946
947 // Compute the default @@$.
948 {
949 slice<data_type, stack_type> slice (yystack_, yylen);
950 YYLLOC_DEFAULT (yylhs.location, slice, yylen);
951 }
952
953 // Perform the reduction.
954 YY_REDUCE_PRINT (yyn);
955 switch (yyn)
956 {
957 ]b4_user_actions[
958 default:
959 break;
960 }
961 // Compute post-reduction state.
962 yyn = yyr1_[yyn];
963 yystate = yypgoto_[yyn - yyntokens_] + yystack_[yylen].state;
964 if (0 <= yystate && yystate <= yylast_
965 && yycheck_[yystate] == yystack_[yylen].state)
966 yystate = yytable_[yystate];
967 else
968 yystate = yydefgoto_[yyn - yyntokens_];
969 yylhs.state = yystate;
970 YY_SYMBOL_PRINT ("-> $$ =", yyn, yylhs.value, yylhs.location);
971]b4_variant_if([[
972 // Destroy the lhs symbols.
973 for (int i = 0; i < yylen; ++i)
974 // Destroy a variant which value may have be swapped with
975 // yylhs.value. The value of yylhs.value (hence maybe one of
976 // these lhs symbols) depends on what does the default
977 // contruction for this type. In the case of pointers for
978 // instance, nothing is done, so the value is junk. Therefore
979 // do not try to report the content in the debug trace, it's
980 // junk. Hence yymsg = 0. Besides, that keeps exactly the same
981 // traces as with the other Bison skeletons.
982 yydestruct_ (0,
983 yystos_[yystack_[i].state],
984 yystack_[i].value, yystack_[i].location);]])[
985
986 yypop_ (yylen);
987 yylen = 0;
988 YY_STACK_PRINT ();
989
990 /* Shift the result of the reduction. */
991 yypush_ (0, yylhs);
992 goto yynewstate;
993
994 /*------------------------------------.
995 | yyerrlab -- here on detecting error |
996 `------------------------------------*/
997 yyerrlab:
998 /* If not already recovering from an error, report this error. */
999 if (!yyerrstatus_)
1000 {
1001 ++yynerrs_;
1002 error (yyla.location, yysyntax_error_ (yystate, yytoken));
1003 }
1004
1005 yyerror_range[0].location = yyla.location;
1006 if (yyerrstatus_ == 3)
1007 {
1008 /* If just tried and failed to reuse lookahead token after an
1009 error, discard it. */
1010
1011 if (yychar <= yyeof_)
1012 {
1013 /* Return failure if at end of input. */
1014 if (yychar == yyeof_)
1015 YYABORT;
1016 }
1017 else
1018 {
1019 yydestruct_ ("Error: discarding",
1020 yytoken, yyla.value, yyla.location);
1021 yychar = yyempty_;
1022 }
1023 }
1024
1025 /* Else will try to reuse lookahead token after shifting the error
1026 token. */
1027 goto yyerrlab1;
1028
1029
1030 /*---------------------------------------------------.
1031 | yyerrorlab -- error raised explicitly by YYERROR. |
1032 `---------------------------------------------------*/
1033 yyerrorlab:
1034
1035 /* Pacify compilers like GCC when the user code never invokes
1036 YYERROR and the label yyerrorlab therefore never appears in user
1037 code. */
1038 if (false)
1039 goto yyerrorlab;
1040
1041 yyerror_range[0].location = yystack_[yylen - 1].location;
1042 /* Do not reclaim the symbols of the rule which action triggered
1043 this YYERROR. */
1044 yypop_ (yylen);
1045 yylen = 0;
1046 yystate = yystack_[0].state;
1047 goto yyerrlab1;
1048
1049 /*-------------------------------------------------------------.
1050 | yyerrlab1 -- common code for both syntax error and YYERROR. |
1051 `-------------------------------------------------------------*/
1052 yyerrlab1:
1053 yyerrstatus_ = 3; /* Each real token shifted decrements this. */
1054 {
1055 data_type error_token;
1056 for (;;)
1057 {
1058 yyn = yypact_[yystate];
1059 if (yyn != yypact_ninf_)
1060 {
1061 yyn += yyterror_;
1062 if (0 <= yyn && yyn <= yylast_ && yycheck_[yyn] == yyterror_)
1063 {
1064 yyn = yytable_[yyn];
1065 if (0 < yyn)
1066 break;
1067 }
1068 }
1069
1070 // Pop the current state because it cannot handle the error token.
1071 if (yystack_.size () == 1)
1072 YYABORT;
1073
1074 yyerror_range[0].location = yystack_[0].location;
1075 yydestruct_ ("Error: popping",
1076 yystos_[yystate],
1077 yystack_[0].value, yystack_[0].location);
1078 yypop_ ();
1079 yystate = yystack_[0].state;
1080 YY_STACK_PRINT ();
1081 }
1082
1083 yyerror_range[1].location = yyla.location;
1084 YYLLOC_DEFAULT (error_token.location, (yyerror_range - 1), 2);
1085
1086 /* Shift the error token. */
1087 error_token.state = yystate = yyn;
1088 yypush_ ("Shifting", error_token);
1089 }
1090 goto yynewstate;
1091
1092 /* Accept. */
1093 yyacceptlab:
1094 yyresult = 0;
1095 goto yyreturn;
1096
1097 /* Abort. */
1098 yyabortlab:
1099 yyresult = 1;
1100 goto yyreturn;
1101
1102 yyreturn:
1103 if (yychar != yyempty_)
1104 yydestruct_ ("Cleanup: discarding lookahead",
1105 yytoken, yyla.value, yyla.location);
1106
1107 /* Do not reclaim the symbols of the rule which action triggered
1108 this YYABORT or YYACCEPT. */
1109 yypop_ (yylen);
1110 while (yystack_.size () != 1)
1111 {
1112 yydestruct_ ("Cleanup: popping",
1113 yystos_[yystack_[0].state],
1114 yystack_[0].value, yystack_[0].location);
1115 yypop_ ();
1116 }
1117
1118 return yyresult;
1119 }
1120
1121 // Generate an error message.
1122 std::string
1123 ]b4_parser_class_name[::yysyntax_error_ (int yystate, int]dnl
1124b4_error_verbose_if([ tok])[)
1125 {
1126 std::string res;
1127 YYUSE (yystate);
1128#if YYERROR_VERBOSE
1129 int yyn = yypact_[yystate];
1130 if (yypact_ninf_ < yyn && yyn <= yylast_)
1131 {
1132 /* Start YYX at -YYN if negative to avoid negative indexes in
1133 YYCHECK. */
1134 int yyxbegin = yyn < 0 ? -yyn : 0;
1135
1136 /* Stay within bounds of both yycheck and yytname. */
1137 int yychecklim = yylast_ - yyn + 1;
1138 int yyxend = yychecklim < yyntokens_ ? yychecklim : yyntokens_;
1139 int count = 0;
1140 for (int x = yyxbegin; x < yyxend; ++x)
1141 if (yycheck_[x + yyn] == x && x != yyterror_)
1142 ++count;
1143
1144 // FIXME: This method of building the message is not compatible
1145 // with internationalization. It should work like yacc.c does it.
1146 // That is, first build a string that looks like this:
1147 // "syntax error, unexpected %s or %s or %s"
1148 // Then, invoke YY_ on this string.
1149 // Finally, use the string as a format to output
1150 // yytname_[tok], etc.
1151 // Until this gets fixed, this message appears in English only.
1152 res = "syntax error, unexpected ";
1153 res += yytnamerr_ (yytname_[tok]);
1154 if (count < 5)
1155 {
1156 count = 0;
1157 for (int x = yyxbegin; x < yyxend; ++x)
1158 if (yycheck_[x + yyn] == x && x != yyterror_)
1159 {
1160 res += (!count++) ? ", expecting " : " or ";
1161 res += yytnamerr_ (yytname_[x]);
1162 }
1163 }
1164 }
1165 else
1166#endif
1167 res = YY_("syntax error");
1168 return res;
1169 }
1170
1171
1172 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
1173 STATE-NUM. */
1174 const ]b4_int_type(b4_pact_ninf, b4_pact_ninf) b4_parser_class_name::yypact_ninf_ = b4_pact_ninf[;
1175 ]b4_table_define([pact], [b4_pact])[;
1176
1177 /* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE
1178 doesn't specify something else to do. Zero means the default is an
1179 error. */
1180 ]b4_table_define([defact], [b4_defact])[;
1181
1182 /* YYPGOTO[NTERM-NUM]. */
1183 ]b4_table_define([pgoto], [b4_pgoto])[;
1184
1185 /* YYDEFGOTO[NTERM-NUM]. */
1186 ]b4_table_define([defgoto], [b4_defgoto])[;
1187
1188 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
1189 positive, shift that token. If negative, reduce the rule which
1190 number is the opposite. If zero, do what YYDEFACT says. */
1191 const ]b4_int_type(b4_table_ninf, b4_table_ninf) b4_parser_class_name::yytable_ninf_ = b4_table_ninf[;
1192 ]b4_table_define([table], [b4_table])[;
1193
1194 /* YYCHECK. */
1195 ]b4_table_define([check], [b4_check])[;
1196
1197 /* STOS_[STATE-NUM] -- The (internal number of the) accessing
1198 symbol of state STATE-NUM. */
1199 ]b4_table_define([stos], [b4_stos])[;
1200
1201#if YYDEBUG
1202 /* TOKEN_NUMBER_[YYLEX-NUM] -- Internal symbol number corresponding
1203 to YYLEX-NUM. */
1204 ]b4_table_define([token_number], [b4_toknum])[;
1205#endif
1206
1207 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
1208 ]b4_table_define([r1], [b4_r1])[;
1209
1210 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
1211 ]b4_table_define([r2], [b4_r2])[;
1212
1213#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
1214 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
1215 First, the terminals, then, starting at \a yyntokens_, nonterminals. */
1216 const char*
1217 const ]b4_parser_class_name[::yytname_[] =
1218 {
1219 ]b4_tname[
1220 };
1221#endif
1222
1223#if YYDEBUG
1224 /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
1225 ]b4_table_define([rline], [b4_rline])[;
1226
1227 // Print the state stack on the debug stream.
1228 void
1229 ]b4_parser_class_name[::yystack_print_ ()
1230 {
1231 *yycdebug_ << "Stack now";
1232 for (stack_type::const_iterator
1233 i = yystack_.begin (),
1234 i_end = yystack_.end ();
1235 i != i_end; ++i)
1236 *yycdebug_ << ' ' << i->state;
1237 *yycdebug_ << std::endl;
1238 }
1239
1240 // Report on the debug stream that the rule \a yyrule is going to be reduced.
1241 void
1242 ]b4_parser_class_name[::yy_reduce_print_ (int yyrule)
1243 {
1244 unsigned int yylno = yyrline_[yyrule];
1245 int yynrhs = yyr2_[yyrule];
1246 /* Print the symbols being reduced, and their result. */
1247 *yycdebug_ << "Reducing stack by rule " << yyrule - 1
1248 << " (line " << yylno << "):" << std::endl;
1249 /* The symbols being reduced. */
1250 for (int yyi = 0; yyi < yynrhs; yyi++)
1251 YY_SYMBOL_PRINT (" $" << yyi + 1 << " =",
1252 ]yystos_@{b4_rhs_state(yynrhs, yyi + 1)@}[,
1253 ]b4_rhs_value(yynrhs, yyi + 1)[,
1254 ]b4_rhs_location(yynrhs, yyi + 1)[);
1255 }
1256#endif // YYDEBUG
1257
1258 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
1259 ]b4_parser_class_name[::token_number_type
1260 ]b4_parser_class_name[::yytranslate_ (int t)
1261 {
1262 static
1263 const token_number_type
1264 translate_table[] =
1265 {
1266 ]b4_translate[
1267 };
1268 if ((unsigned int) t <= yyuser_token_number_max_)
1269 return translate_table[t];
1270 else
1271 return yyundef_token_;
1272 }
1273
1274 const int ]b4_parser_class_name[::yyeof_ = 0;
1275 const int ]b4_parser_class_name[::yylast_ = ]b4_last[;
1276 const int ]b4_parser_class_name[::yynnts_ = ]b4_nterms_number[;
1277 const int ]b4_parser_class_name[::yyempty_ = -2;
1278 const int ]b4_parser_class_name[::yyfinal_ = ]b4_final_state_number[;
1279 const int ]b4_parser_class_name[::yyterror_ = 1;
1280 const int ]b4_parser_class_name[::yyerrcode_ = 256;
1281 const int ]b4_parser_class_name[::yyntokens_ = ]b4_tokens_number[;
1282
1283 const unsigned int ]b4_parser_class_name[::yyuser_token_number_max_ = ]b4_user_token_number_max[;
1284 const ]b4_parser_class_name[::token_number_type ]b4_parser_class_name[::yyundef_token_ = ]b4_undef_token_number[;
1285
1286]b4_namespace_close[
1287
1288]b4_epilogue[]dnl
1289@output(b4_dir_prefix[]stack.hh@)@
1290b4_copyright([Stack handling for Bison parsers in C++])[
1291
1292#ifndef BISON_STACK_HH
1293# define BISON_STACK_HH
1294
1295#include <deque>
1296
1297]b4_namespace_open[
1298 template <class T, class S = std::deque<T> >
1299 class stack
1300 {
1301 public:
1302
1303 // Hide our reversed order.
1304 typedef typename S::reverse_iterator iterator;
1305 typedef typename S::const_reverse_iterator const_iterator;
1306
1307 stack () : seq_ ()
1308 {
1309 }
1310
1311 stack (unsigned int n) : seq_ (n)
1312 {
1313 }
1314
1315 inline
1316 T&
1317 operator [] (unsigned int i)
1318 {
1319 return seq_[i];
1320 }
1321
1322 inline
1323 const T&
1324 operator [] (unsigned int i) const
1325 {
1326 return seq_[i];
1327 }
1328
1329 inline
1330 void
1331 push (const T& t)
1332 {
1333 seq_.push_front (t);
1334 }
1335
1336 inline
1337 void
1338 pop (unsigned int n = 1)
1339 {
1340 for (; n; --n)
1341 seq_.pop_front ();
1342 }
1343
1344 inline
1345 typename S::size_type
1346 size () const
1347 {
1348 return seq_.size ();
1349 }
1350
1351 inline const_iterator begin () const { return seq_.rbegin (); }
1352 inline const_iterator end () const { return seq_.rend (); }
1353
1354 private:
1355 /// The wrapped container.
1356 S seq_;
1357 };
1358
1359 /// Present a slice of the top of a stack.
1360 template <class T, class S = stack<T> >
1361 class slice
1362 {
1363 public:
1364
1365 slice (const S& stack,
1366 unsigned int range) : stack_ (stack),
1367 range_ (range)
1368 {
1369 }
1370
1371 inline
1372 const T&
1373 operator [] (unsigned int i) const
1374 {
1375 return stack_[range_ - i];
1376 }
1377
1378 private:
1379
1380 const S& stack_;
1381 unsigned int range_;
1382 };
1383]b4_namespace_close[
1384
1385#endif // not BISON_STACK_HH[]dnl
1386]
1387m4_divert_pop(0)
1388m4_popdef([b4_copyright_years])dnl