]> git.saurik.com Git - bison.git/blame - data/lalr1.cc
Handle a trailing `:' in a user-supplied C++ namespace better.
[bison.git] / data / lalr1.cc
CommitLineData
60491a94 1# C++ skeleton for Bison
b4721715 2
b3a2272a 3# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
cf98343c 4# Free Software Foundation, Inc.
60491a94 5
f16b0819 6# This program is free software: you can redistribute it and/or modify
60491a94 7# it under the terms of the GNU General Public License as published by
f16b0819 8# the Free Software Foundation, either version 3 of the License, or
60491a94 9# (at your option) any later version.
f16b0819 10#
60491a94
AD
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.
f16b0819 15#
60491a94 16# You should have received a copy of the GNU General Public License
f16b0819 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
60491a94 18
cf147260 19m4_include(b4_pkgdatadir/[c++.m4])
7eb8a0bc 20
2ea7730c 21
ba206cf4
AD
22# b4_integral_parser_table_declare(TABLE-NAME, CONTENT, COMMENT)
23# --------------------------------------------------------------
0fddb3d5 24# Declare "parser::yy<TABLE-NAME>_" which contents is CONTENT.
ba206cf4 25m4_define([b4_integral_parser_table_declare],
6ab1adbe
AD
26[m4_ifval([$3], [b4_c_comment([$3], [ ])
27])dnl
28 static const b4_int_type_for([$2]) yy$1_[[]];dnl
0fddb3d5
AD
29])
30
ba206cf4 31# b4_integral_parser_table_define(TABLE-NAME, CONTENT, COMMENT)
0fddb3d5 32# ---------------------------------------------
8901f32e 33# Define "parser::yy<TABLE-NAME>_" which contents is CONTENT.
ba206cf4 34m4_define([b4_integral_parser_table_define],
6ab1adbe 35[ const b4_int_type_for([$2])
8901f32e
AD
36 b4_parser_class_name::yy$1_[[]] =
37 {
38 $2
6ab1adbe
AD
39 };dnl
40])
41
a9ce3f54 42
5de9c593
AD
43# b4_symbol_value_template(VAL, [TYPE])
44# -------------------------------------
507aa0e2
AD
45# Same as b4_symbol_value, but used in a template method. It makes
46# a difference when using variants.
5de9c593
AD
47m4_copy([b4_symbol_value], [b4_symbol_value_template])
48
5ab8c47b 49
e1f93869
AD
50# b4_lhs_value([TYPE])
51# --------------------
52# Expansion of $<TYPE>$.
53m4_define([b4_lhs_value],
507aa0e2 54 [b4_symbol_value([yylhs.value], [$1])])
e1f93869
AD
55
56
57# b4_lhs_location()
58# -----------------
59# Expansion of @$.
60m4_define([b4_lhs_location],
507aa0e2 61 [yylhs.location])
e1f93869
AD
62
63
33c195cc
AD
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.
68m4_define([b4_rhs_data],
3204049e 69 [yystack_@{b4_subtract($@)@}])
33c195cc
AD
70
71
72# b4_rhs_state(RULE-LENGTH, NUM)
51bacae6 73# ------------------------------
33c195cc
AD
74# The state corresponding to the symbol #NUM, where the current
75# rule has RULE-LENGTH symbols on RHS.
76m4_define([b4_rhs_state],
77 [b4_rhs_data([$1], [$2]).state])
78
79
8901f32e
AD
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.
84m4_define([b4_rhs_value],
33c195cc
AD
85 [b4_symbol_value([b4_rhs_data([$1], [$2]).value], [$3])])
86
8901f32e
AD
87
88# b4_rhs_location(RULE-LENGTH, NUM)
89# ---------------------------------
90# Expansion of @NUM, where the current rule has RULE-LENGTH symbols
91# on RHS.
92m4_define([b4_rhs_location],
33c195cc 93 [b4_rhs_data([$1], [$2]).location])
8901f32e 94
507aa0e2 95
2bde9113
AD
96# b4_symbol_action(SYMBOL-NUM, KIND)
97# ----------------------------------
98# Run the action KIND (destructor or printer) for SYMBOL-NUM.
c4585f1e 99# Same as in C, but using references instead of pointers.
2bde9113
AD
100m4_define([b4_symbol_action],
101[b4_symbol_if([$1], [has_$2],
c4585f1e 102[m4_pushdef([b4_dollar_dollar],
2bde9113
AD
103 [b4_symbol_value_template([yysym.value],
104 b4_symbol_if([$1], [has_type],
105 [b4_symbol([$1], [type])]))])dnl
1f7d007b 106m4_pushdef([b4_at_dollar], [yysym.location])dnl
fb7c5b1f 107 b4_symbol_case_([$1])
2bde9113
AD
108b4_syncline([b4_symbol([$1], [$2_line])], ["b4_symbol([$1], [$2_file])"])
109 b4_symbol([$1], [$2])
c4585f1e
AD
110b4_syncline([@oline@], [@ofile@])
111 break;
2bde9113 112
c4585f1e
AD
113m4_popdef([b4_at_dollar])dnl
114m4_popdef([b4_dollar_dollar])dnl
2bde9113
AD
115])])
116
2873fdf8 117
8901f32e 118m4_pushdef([b4_copyright_years],
b3a2272a 119 [2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009])
8901f32e 120
6afc30cc 121m4_define([b4_parser_class_name],
a4e25e1d 122 [b4_percent_define_get([[parser_class_name]])])
34376418
AD
123
124# The header is mandatory.
125b4_defines_if([],
5f340b48 126 [b4_fatal([b4_skeleton[: using %%defines is mandatory]])])
34376418 127
2ea7730c
AD
128b4_locations_if(
129[# Backward compatibility.
4626a15d 130m4_define([b4_location_constructors])
2ea7730c 131m4_include(b4_pkgdatadir/[location.cc])])
51bacae6 132m4_include(b4_pkgdatadir/[stack.hh])
507aa0e2 133b4_variant_if([m4_include(b4_pkgdatadir/[variant.hh])])
a5eb1ed2 134
b526ee61
AD
135# We do want M4 expansion after # for CPP macros.
136m4_changecom()
08af01c2 137m4_divert_push(0)dnl
c944f7f2 138@output(b4_spec_defines_file@)@
a9ce3f54 139b4_copyright([Skeleton interface for Bison LALR(1) parsers in C++])
fb9712a9 140dnl FIXME: This is wrong, we want computed header guards.
8bb4c753 141[
af3412cd
PE
142/* C++ LALR(1) parser skeleton written by Akim Demaille. */
143
c5e3e510
AD
144#ifndef PARSER_HEADER_H
145# define PARSER_HEADER_H
2b548aa6 146
a4e25e1d 147]b4_percent_code_get([[requires]])[
aef3da86 148
0c90a1f5 149]b4_parse_assert_if([#include <cassert>])[
8d69a1a3 150#include <string>
717be197 151#include <iostream>
fb9712a9 152#include "stack.hh"
50997c6e 153
793fbca5 154]b4_namespace_open[
2ea7730c
AD
155]b4_locations_if([ class position;
156 class location;])[
5f5a90df 157]b4_variant_if([b4_variant_define])[
793fbca5 158]b4_namespace_close[
4162fa07 159
2ea7730c 160]b4_locations_if([#include "location.hh"])[
fc695704 161
69e2658b
RA
162/* Enabling traces. */
163#ifndef YYDEBUG
fa819509 164# define YYDEBUG ]b4_parse_trace_if([1], [0])[
69e2658b
RA
165#endif
166
141f5793
PE
167/* Enabling verbose error messages. */
168#ifdef YYERROR_VERBOSE
169# undef YYERROR_VERBOSE
170# define YYERROR_VERBOSE 1
171#else
b3a2272a 172# define YYERROR_VERBOSE ]b4_error_verbose_if([1], [0])[
69e2658b
RA
173#endif
174
141f5793
PE
175/* Enabling the token table. */
176#ifndef YYTOKEN_TABLE
177# define YYTOKEN_TABLE ]b4_token_table[
178#endif
179
2ea7730c
AD
180]b4_locations_if([dnl
181[/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
b4a20338
AD
182 If N is 0, then set CURRENT to the empty location which ends
183 the previous symbol: RHS[0] (always defined). */
3fc16193 184
374f5a14 185#ifndef YYLLOC_DEFAULT
8901f32e
AD
186# define YYLLOC_DEFAULT(Current, Rhs, N) \
187do { \
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 } \
2a4647a3 197} while (false)
2ea7730c 198#endif]])[
374f5a14 199
793fbca5 200]b4_namespace_open[
3f3eed27 201
efeed023 202 /// A Bison parser.
07fed891 203 class ]b4_parser_class_name[
2b548aa6 204 {
fb9712a9 205 public:
4f84717d 206]b4_public_types_declare[
efeed023 207 /// Build a parser object.
98ae9643
AD
208 ]b4_parser_class_name[ (]b4_parse_param_decl[);
209 virtual ~]b4_parser_class_name[ ();
2b548aa6 210
f69a4142
AD
211 /// Parse.
212 /// \returns 0 iff parsing succeeded.
e019c247 213 virtual int parse ();
2b548aa6 214
52cbbe84 215#if YYDEBUG
f69a4142 216 /// The current debugging stream.
9a1e9989
AD
217 std::ostream& debug_stream () const;
218 /// Set the current debugging stream.
219 void set_debug_stream (std::ostream &);
220
a3cb6248
AD
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);
52cbbe84 227#endif
a3cb6248 228
2ea7730c
AD
229 /// Report a syntax error.]b4_locations_if([
230 /// \param loc where the syntax error is found.])[
efeed023 231 /// \param msg a description of the syntax error.
2ea7730c 232 virtual void error (]b4_locations_if([const location_type& loc, ])[const std::string& msg);
efeed023 233
49572920 234 private:
dbcdae2d 235 /// Generate an error message.
d4fb5e3c 236 /// \param state the state where the error occurred.
742e4900 237 /// \param tok the lookahead token.
8901f32e 238 virtual std::string yysyntax_error_ (int yystate, int tok);
efeed023 239
e019c247 240 /// State numbers.
f479c6c6 241 typedef int state_type;
2b548aa6 242
e019c247 243 /// Internal symbol numbers.
f479c6c6 244 typedef ]b4_int_type_for([b4_translate])[ token_number_type;
617a8f12 245 static const ]b4_int_type(b4_pact_ninf, b4_pact_ninf)[ yypact_ninf_;
617a8f12 246 static const ]b4_int_type(b4_table_ninf, b4_table_ninf)[ yytable_ninf_;
efeed023 247
0fddb3d5 248 /* Tables. */
ba206cf4 249]b4_parser_tables_declare[
69e2658b 250
141f5793 251#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
efeed023 252 /// For a symbol, its name in clear.
9e0876fb 253 static const char* const yytname_[];
422c18f4 254#endif]b4_error_verbose_if([
9e0876fb 255
9e0876fb 256 /// Convert the symbol name \a n to a form suitable for a diagnostic.
422c18f4 257 static std::string yytnamerr_ (const char *n);])[
2b548aa6 258
69e2658b 259#if YYDEBUG
ba206cf4
AD
260]b4_integral_parser_table_declare([rline], [b4_rline],
261 [YYRLINE[YYN] -- Source line where rule number YYN was defined.])[
efeed023 262 /// Report on the debug stream that the rule \a r is going to be reduced.
d1ff7a7c 263 virtual void yy_reduce_print_ (int r);
efeed023 264 /// Print the state stack on the debug stream.
f69a4142 265 virtual void yystack_print_ ();
fa7b79c0
PE
266
267 /* Debugging. */
268 int yydebug_;
269 std::ostream* yycdebug_;
69e2658b 270#endif
2b548aa6 271
32c96bd7 272 /// Convert a scanner token number \a t to a symbol number.
1c4af381 273 static inline token_number_type yytranslate_ (]b4_lex_symbol_if([token_type], [int])[ t);
f69a4142 274
57295d14 275#if YYDEBUG
1f7d007b
AD
276 /// \brief Display a symbol type, value and location.
277 /// \param yyo The output stream.
278 /// \param yysym The symbol.
5de9c593
AD
279 template <typename Exact>
280 void yy_print_ (std::ostream& yyo,
281 const symbol_base_type<Exact>& yysym) const;
57295d14
AD
282#endif
283
1f7d007b
AD
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.
5de9c593
AD
288 template <typename Exact>
289 inline void yy_destroy_ (const char* yymsg,
290 symbol_base_type<Exact>& yysym) const;
1f7d007b 291
2873fdf8 292 private:
1f7d007b 293 /// Element of the stack: a state and its attributes.
5de9c593 294 struct stack_symbol_type : symbol_base_type<stack_symbol_type>
1f7d007b 295 {
5de9c593
AD
296 /// The parent class.
297 typedef symbol_base_type<stack_symbol_type> super_type;
298
1f7d007b 299 /// Default constructor.
d3be4f6d 300 inline stack_symbol_type ();
1f7d007b
AD
301
302 /// Constructor.
2ea7730c
AD
303 inline stack_symbol_type (]b4_args([state_type s],
304 [const semantic_type& v],
305 b4_locations_if([const location_type& l]))[);
1f7d007b
AD
306
307 /// The state.
308 state_type state;
57295d14 309
1f7d007b 310 /// Return the type corresponding to this state.
5de9c593 311 inline int type_get_ () const;
1f7d007b 312 };
57295d14 313
8901f32e 314 /// Stack type.
bc0b0477 315 typedef stack<stack_symbol_type> stack_type;
8901f32e
AD
316
317 /// The stack.
318 stack_type yystack_;
319
7dedf26e 320 /// Push a new state on the stack.
9380cfd0
AD
321 /// \param m a debug message to display
322 /// if null, no trace is output.
e9b0834e
AD
323 /// \param s the symbol
324 /// \warning the contents of \a s.value is stolen.
bc0b0477 325 inline void yypush_ (const char* m, stack_symbol_type& s);
7dedf26e 326
1f7d007b
AD
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
52d5733f 335 /// Pop \a n symbols the three stacks.
f69a4142 336 inline void yypop_ (unsigned int n = 1);
52d5733f 337
762a801e 338 /* Constants. */
914202bd
AD
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
caf37a36 351]b4_parse_param_vars[
2b548aa6 352 };
1c4af381 353
5f5a90df 354]b4_lex_symbol_if([b4_yytranslate_define
0623bacc 355b4_public_types_define])[
793fbca5 356]b4_namespace_close[
2b548aa6 357
592d0b1e 358]b4_percent_define_flag_if([[global_tokens_and_yystype]],
fb9712a9
AD
359[b4_token_defines(b4_tokens)
360
361#ifndef YYSTYPE
9d9b8b70 362 /* Redirection for backward compatibility. */
793fbca5 363# define YYSTYPE b4_namespace_ref::b4_parser_class_name::semantic_type
fb9712a9 364#endif
9bc0dd67 365])
a4e25e1d 366b4_percent_code_get([[provides]])[]dnl
9bc0dd67
JD
367
368[#endif /* ! defined PARSER_HEADER_H */]
a0d4650a 369@output(b4_parser_file_name@)@
a9ce3f54 370b4_copyright([Skeleton implementation for Bison LALR(1) parsers in C++])
a4e25e1d 371b4_percent_code_get([[top]])[]dnl
aa08666d 372m4_if(b4_prefix, [yy], [],
c5b95ccf
AD
373[
374// Take the name prefix into account.
9bc0dd67
JD
375#define yylex b4_prefix[]lex])[
376
377/* First part of user declarations. */
c944f7f2 378]b4_user_pre_prologue[
9bc0dd67 379
c944f7f2 380#include "@basename(]b4_spec_defines_file[@)"
50997c6e 381
fb9712a9 382/* User implementation prologue. */
8e0a5e9e 383]b4_user_post_prologue
a4e25e1d 384b4_percent_code_get[]dnl
fb9712a9 385
8e0a5e9e 386[#ifndef YY_
30757c8c
PE
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
989b5b8e
AD
396#endif
397
2a4647a3 398/* Suppress unused-variable warnings by "using" E. */
12ce2df6 399#define YYUSE(e) ((void) (e))
2a4647a3 400
2b548aa6 401/* Enable debugging if requested. */
50997c6e 402#if YYDEBUG
284acc8b 403
fa7b79c0
PE
404/* A pseudo ostream that takes yydebug_ into account. */
405# define YYCDEBUG if (yydebug_) (*yycdebug_)
406
1f7d007b 407# define YY_SYMBOL_PRINT(Title, Symbol) \
57295d14
AD
408 do { \
409 if (yydebug_) \
410 { \
411 *yycdebug_ << Title << ' '; \
1f7d007b 412 yy_print_ (*yycdebug_, Symbol); \
57295d14
AD
413 *yycdebug_ << std::endl; \
414 } \
8901f32e 415 } while (false)
284acc8b 416
5348bfbe 417# define YY_REDUCE_PRINT(Rule) \
8901f32e
AD
418 do { \
419 if (yydebug_) \
420 yy_reduce_print_ (Rule); \
421 } while (false)
284acc8b 422
25f66e1a 423# define YY_STACK_PRINT() \
8901f32e
AD
424 do { \
425 if (yydebug_) \
426 yystack_print_ (); \
427 } while (false)
284acc8b 428
2b548aa6 429#else /* !YYDEBUG */
284acc8b 430
a36b333c 431# define YYCDEBUG if (false) std::cerr
1f7d007b
AD
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)
284acc8b 435
2b548aa6
RA
436#endif /* !YYDEBUG */
437
39be9022
AD
438#define yyerrok (yyerrstatus_ = 0)
439#define yyclearin (yyempty = true)
98e26a92 440
39be9022
AD
441#define YYACCEPT goto yyacceptlab
442#define YYABORT goto yyabortlab
443#define YYERROR goto yyerrorlab
98e26a92 444#define YYRECOVERING() (!!yyerrstatus_)
60a777aa 445
422c18f4 446]b4_namespace_open[]b4_error_verbose_if([[
9e0876fb 447
aa08666d
AD
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;
193d7c70 460
aa08666d
AD
461 for (;;)
462 switch (*++yyp)
463 {
464 case '\'':
465 case ',':
466 goto do_not_strip_quotes;
193d7c70 467
aa08666d
AD
468 case '\\':
469 if (*++yyp != '\\')
470 goto do_not_strip_quotes;
471 /* Fall through. */
472 default:
473 yyr += *yyp;
474 break;
193d7c70 475
aa08666d
AD
476 case '"':
477 return yyr;
478 }
479 do_not_strip_quotes: ;
480 }
193d7c70 481
aa08666d
AD
482 return yystr;
483 }
422c18f4 484]])[
9e0876fb 485
98ae9643 486 /// Build a parser object.
fa7b79c0
PE
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[
98ae9643
AD
493 {
494 }
a0e68930 495
98ae9643
AD
496 ]b4_parser_class_name::~b4_parser_class_name[ ()
497 {
498 }
a0e68930 499
a0e68930 500
1f7d007b
AD
501 /*---------------.
502 | Symbol types. |
503 `---------------*/
504
0623bacc 505]b4_lex_symbol_if([], [b4_public_types_define])[
2873fdf8 506
1f7d007b
AD
507 // stack_symbol_type.
508 ]b4_parser_class_name[::stack_symbol_type::stack_symbol_type ()
5de9c593
AD
509 : super_type ()
510 , state ()
1f7d007b
AD
511 {
512 }
513
2ea7730c
AD
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])[)
5de9c593 519 , state (s)
1f7d007b
AD
520 {
521 }
522
523 int
5de9c593 524 ]b4_parser_class_name[::stack_symbol_type::type_get_ () const
1f7d007b
AD
525 {
526 return yystos_[state];
527 }
528
529
5de9c593 530 template <typename Exact>
98ae9643 531 void
5de9c593
AD
532 ]b4_parser_class_name[::yy_destroy_ (const char* yymsg,
533 symbol_base_type<Exact>& yysym) const
98ae9643 534 {
1f7d007b 535 int yytype = yysym.type_get ();
98ae9643 536 YYUSE (yymsg);
8901f32e 537 if (yymsg)
1f7d007b 538 YY_SYMBOL_PRINT (yymsg, yysym);
98ae9643 539
8901f32e 540 // User destructor.
98ae9643
AD
541 switch (yytype)
542 {
e3c52a63 543]b4_symbol_foreach([b4_symbol_destructor])dnl
2bde9113
AD
544[ default:
545 break;
8901f32e
AD
546 }]b4_variant_if([
547
548 // Type destructor.
4c3cc7da 549 b4_symbol_variant([[yytype]], [[yysym.value]], [[template destroy]])])[
8901f32e
AD
550 }
551
1f7d007b 552#if YYDEBUG
5de9c593 553 template <typename Exact>
1f7d007b 554 void
5de9c593
AD
555 ]b4_parser_class_name[::yy_print_ (std::ostream& yyo,
556 const symbol_base_type<Exact>& yysym) const
8901f32e 557 {
1f7d007b
AD
558 int yytype = yysym.type_get ();
559 yyo << (yytype < yyntokens_ ? "token" : "nterm")
2ea7730c
AD
560 << ' ' << yytname_[yytype] << " ("]b4_locations_if([
561 << yysym.location << ": "])[;
1f7d007b
AD
562 switch (yytype)
563 {
e3c52a63 564]b4_symbol_foreach([b4_symbol_printer])dnl
2bde9113 565[ default:
1f7d007b
AD
566 break;
567 }
568 yyo << ')';
8901f32e 569 }
1f7d007b 570#endif
8901f32e 571
1f7d007b
AD
572 void
573 ]b4_parser_class_name[::yypush_ (const char* m, state_type s,
574 symbol_type& sym)
8901f32e 575 {
1f7d007b
AD
576 if (m)
577 YY_SYMBOL_PRINT (m, sym);
578]b4_variant_if(
2ea7730c
AD
579[[ yystack_.push (stack_symbol_type (]b4_args(
580 [s],
581 [semantic_type()],
582 b4_locations_if([sym.location]))[));
1f7d007b
AD
583 ]b4_symbol_variant([[yystos_[s]]], [[yystack_[0].value]],
584 [build], [sym.value])],
2ea7730c
AD
585[[ yystack_.push (stack_symbol_type (]b4_args(
586 [s],
587 [sym.value],
588 b4_locations_if([sym.location]))[));]])[
98ae9643 589 }
60a777aa 590
7dedf26e 591 void
bc0b0477 592 ]b4_parser_class_name[::yypush_ (const char* m, stack_symbol_type& s)
7dedf26e 593 {
9380cfd0 594 if (m)
1f7d007b 595 YY_SYMBOL_PRINT (m, s);
8901f32e 596]b4_variant_if(
2ea7730c
AD
597[[ yystack_.push (stack_symbol_type (]b4_args(
598 [s.state],
599 [semantic_type()],
600 b4_locations_if([s.location]))[));
1f7d007b 601 ]b4_symbol_variant([[yystos_[s.state]]], [[yystack_[0].value]],
e9b0834e
AD
602 [build], [s.value])],
603[ yystack_.push (s);])[
7dedf26e
AD
604 }
605
98ae9643
AD
606 void
607 ]b4_parser_class_name[::yypop_ (unsigned int n)
608 {
8901f32e 609 yystack_.pop (n);
98ae9643 610 }
52d5733f 611
fa7b79c0 612#if YYDEBUG
98ae9643
AD
613 std::ostream&
614 ]b4_parser_class_name[::debug_stream () const
615 {
616 return *yycdebug_;
617 }
9a1e9989 618
98ae9643
AD
619 void
620 ]b4_parser_class_name[::set_debug_stream (std::ostream& o)
621 {
622 yycdebug_ = &o;
623 }
9a1e9989
AD
624
625
98ae9643
AD
626 ]b4_parser_class_name[::debug_level_type
627 ]b4_parser_class_name[::debug_level () const
628 {
629 return yydebug_;
630 }
a3cb6248 631
98ae9643
AD
632 void
633 ]b4_parser_class_name[::set_debug_level (debug_level_type l)
634 {
635 yydebug_ = l;
636 }
fa7b79c0 637#endif
a3cb6248 638
98ae9643
AD
639 int
640 ]b4_parser_class_name[::parse ()
641 {
39be9022
AD
642 /// Whether yyla contains a lookahead.
643 bool yyempty = true;
d4fb5e3c 644
98ae9643
AD
645 /* State. */
646 int yyn;
a85284cf 647 int yylen = 0;
98ae9643 648 int yystate = 0;
d4fb5e3c 649
9d9b8b70 650 /* Error handling. */
98ae9643
AD
651 int yynerrs_ = 0;
652 int yyerrstatus_ = 0;
dbcdae2d 653
6082531a 654 /// The lookahead symbol.
2ea7730c 655 symbol_type yyla;]b4_locations_if([[
6082531a 656
98ae9643 657 /// The locations where the error started and ended.
2ea7730c 658 stack_symbol_type yyerror_range[2];]])[
dbcdae2d 659
e1f93869 660 /// $$ and @@$.
bc0b0477 661 stack_symbol_type yylhs;
dbcdae2d 662
e1f93869 663 /// The return value of parse().
98ae9643 664 int yyresult;
ad745863 665
98ae9643 666 YYCDEBUG << "Starting parse" << std::endl;
451364ed 667
451364ed 668]m4_ifdef([b4_initial_action], [
6082531a
AD
669m4_pushdef([b4_at_dollar], [yyla.location])dnl
670m4_pushdef([b4_dollar_dollar], [yyla.value])dnl
9d9b8b70 671 /* User initialization code. */
8ec0a172 672 b4_user_initial_action
451364ed 673m4_popdef([b4_dollar_dollar])dnl
8ec0a172 674m4_popdef([b4_at_dollar])])dnl
451364ed 675
8901f32e 676 [ /* Initialize the stack. The initial state will be set in
98ae9643
AD
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. */
8901f32e 680 yystack_ = stack_type (0);
1f7d007b 681 yypush_ (0, 0, yyla);
98ae9643 682
7dedf26e
AD
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.
98ae9643 686 yynewstate:
98ae9643 687 YYCDEBUG << "Entering state " << yystate << std::endl;
868d2d96
JD
688
689 /* Accept? */
690 if (yystate == yyfinal_)
691 goto yyacceptlab;
692
98ae9643
AD
693 goto yybackup;
694
695 /* Backup. */
696 yybackup:
697
742e4900 698 /* Try to take a decision without lookahead. */
98ae9643
AD
699 yyn = yypact_[yystate];
700 if (yyn == yypact_ninf_)
701 goto yydefault;
702
742e4900 703 /* Read a lookahead token. */
39be9022 704 if (yyempty)
98ae9643 705 {
09277875
AD
706 YYCDEBUG << "Reading a token: ";
707]b4_lex_symbol_if(
dd735e4e
AD
708[ yyla = b4_c_function_call([yylex], [symbol_type],
709 m4_ifdef([b4_lex_param], b4_lex_param));],
09277875 710[ yyla.type = yytranslate_ (b4_c_function_call([yylex], [int],
6082531a
AD
711 [[YYSTYPE*], [&yyla.value]][]dnl
712b4_locations_if([, [[location*], [&yyla.location]]])dnl
09277875 713m4_ifdef([b4_lex_param], [, ]b4_lex_param)));])[
39be9022 714 yyempty = false;
98ae9643 715 }
aba12ad1 716 YY_SYMBOL_PRINT ("Next token is", yyla);
98ae9643 717
1f7d007b
AD
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)
98ae9643
AD
722 goto yydefault;
723
724 /* Reduce or error. */
725 yyn = yytable_[yyn];
726 if (yyn <= 0)
727 {
02650b7f 728 if (yyn == 0 || yyn == yytable_ninf_)
6082531a 729 goto yyerrlab;
02650b7f
PE
730 yyn = -yyn;
731 goto yyreduce;
98ae9643
AD
732 }
733
868d2d96 734 /* Discard the token being shifted. */
39be9022 735 yyempty = true;
98ae9643
AD
736
737 /* Count tokens shifted since error; after three, turn off error
738 status. */
739 if (yyerrstatus_)
740 --yyerrstatus_;
741
9380cfd0 742 /* Shift the lookahead token. */
1f7d007b
AD
743 yystate = yyn;
744 yypush_ ("Shifting", yystate, yyla);
98ae9643
AD
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:
5ab8c47b
AD
760 yylen = yyr2_[yyn];]b4_variant_if([
761 /* Variants are always initialized to an empty instance of the
3eead995
AD
762 correct type. The default $$=$1 action is NOT applied when using
763 variants. */
507aa0e2 764 ]b4_symbol_variant([[yyr1_@{yyn@}]], [yylhs.value], [build]),[
a85284cf 765 /* If YYLEN is nonzero, implement the default value of the action:
98ae9643
AD
766 `$$ = $1'. Otherwise, use the top of the stack.
767
e1f93869 768 Otherwise, the following line sets YYLHS.VALUE to garbage.
98ae9643
AD
769 This behavior is undocumented and Bison
770 users should not rely upon it. */
771 if (yylen)
e1f93869 772 yylhs.value = yystack_@{yylen - 1@}.value;
98ae9643 773 else
e1f93869 774 yylhs.value = yystack_@{0@}.value;])[
2ea7730c
AD
775]b4_locations_if([dnl
776[
8901f32e 777 // Compute the default @@$.
2b548aa6 778 {
bc0b0477 779 slice<stack_symbol_type, stack_type> slice (yystack_, yylen);
e1f93869 780 YYLLOC_DEFAULT (yylhs.location, slice, yylen);
2ea7730c 781 }]])[
8901f32e
AD
782
783 // Perform the reduction.
98ae9643
AD
784 YY_REDUCE_PRINT (yyn);
785 switch (yyn)
786 {
30bb2edc 787]b4_user_actions[
cf98343c
AD
788 default:
789 break;
98ae9643 790 }
e1f93869
AD
791 // Compute post-reduction state.
792 yyn = yyr1_[yyn];
793 yystate = yypgoto_[yyn - yyntokens_] + yystack_[yylen].state;
794 if (0 <= yystate && yystate <= yylast_
795 && yycheck_[yystate] == yystack_[yylen].state)
796 yystate = yytable_[yystate];
797 else
798 yystate = yydefgoto_[yyn - yyntokens_];
799 yylhs.state = yystate;
1f7d007b 800 YY_SYMBOL_PRINT ("-> $$ =", yylhs);
8901f32e 801]b4_variant_if([[
9c6a8966 802 // Destroy the rhs symbols.
8901f32e 803 for (int i = 0; i < yylen; ++i)
9c6a8966
AD
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
813 // Bison skeletons.
1f7d007b 814 yy_destroy_ (0, yystack_[i]);]])[
98ae9643
AD
815
816 yypop_ (yylen);
a85284cf 817 yylen = 0;
98ae9643 818 YY_STACK_PRINT ();
98ae9643
AD
819
820 /* Shift the result of the reduction. */
e9b0834e 821 yypush_ (0, yylhs);
98ae9643
AD
822 goto yynewstate;
823
9c6a8966
AD
824 /*--------------------------------------.
825 | yyerrlab -- here on detecting error. |
826 `--------------------------------------*/
98ae9643
AD
827 yyerrlab:
828 /* If not already recovering from an error, report this error. */
829 if (!yyerrstatus_)
830 {
02650b7f 831 ++yynerrs_;
2ea7730c
AD
832 error (]b4_args(b4_locations_if([yyla.location]),
833 [yysyntax_error_ (yystate, yyla.type)])[);
98ae9643
AD
834 }
835
2ea7730c
AD
836]b4_locations_if([[
837 yyerror_range[0].location = yyla.location;]])[
98ae9643
AD
838 if (yyerrstatus_ == 3)
839 {
742e4900 840 /* If just tried and failed to reuse lookahead token after an
27cb5b59
AD
841 error, discard it. */
842
843 /* Return failure if at end of input. */
aba12ad1 844 if (yyla.type == yyeof_)
27cb5b59
AD
845 YYABORT;
846 else
39be9022 847 {
27cb5b59 848 yy_destroy_ ("Error: discarding", yyla);
39be9022 849 yyempty = true;
02650b7f 850 }
98ae9643
AD
851 }
852
742e4900 853 /* Else will try to reuse lookahead token after shifting the error
98ae9643
AD
854 token. */
855 goto yyerrlab1;
856
857
858 /*---------------------------------------------------.
859 | yyerrorlab -- error raised explicitly by YYERROR. |
860 `---------------------------------------------------*/
861 yyerrorlab:
862
863 /* Pacify compilers like GCC when the user code never invokes
864 YYERROR and the label yyerrorlab therefore never appears in user
865 code. */
866 if (false)
867 goto yyerrorlab;
868
2ea7730c
AD
869]b4_locations_if([[
870 yyerror_range[0].location = yystack_[yylen - 1].location;]])[
a85284cf 871 /* Do not reclaim the symbols of the rule which action triggered
9d9b8b70 872 this YYERROR. */
98ae9643 873 yypop_ (yylen);
a85284cf 874 yylen = 0;
8901f32e 875 yystate = yystack_[0].state;
98ae9643
AD
876 goto yyerrlab1;
877
878 /*-------------------------------------------------------------.
879 | yyerrlab1 -- common code for both syntax error and YYERROR. |
880 `-------------------------------------------------------------*/
881 yyerrlab1:
882 yyerrstatus_ = 3; /* Each real token shifted decrements this. */
e1f93869 883 {
bc0b0477 884 stack_symbol_type error_token;
e1f93869
AD
885 for (;;)
886 {
887 yyn = yypact_[yystate];
888 if (yyn != yypact_ninf_)
889 {
890 yyn += yyterror_;
891 if (0 <= yyn && yyn <= yylast_ && yycheck_[yyn] == yyterror_)
892 {
893 yyn = yytable_[yyn];
894 if (0 < yyn)
895 break;
896 }
897 }
98ae9643 898
e1f93869
AD
899 // Pop the current state because it cannot handle the error token.
900 if (yystack_.size () == 1)
901 YYABORT;
2ea7730c
AD
902]b4_locations_if([[
903 yyerror_range[0].location = yystack_[0].location;]])[
1f7d007b 904 yy_destroy_ ("Error: popping", yystack_[0]);
e1f93869
AD
905 yypop_ ();
906 yystate = yystack_[0].state;
907 YY_STACK_PRINT ();
908 }
2ea7730c 909]b4_locations_if([[
6082531a 910 yyerror_range[1].location = yyla.location;
2ea7730c 911 YYLLOC_DEFAULT (error_token.location, (yyerror_range - 1), 2);]])[
e1f93869
AD
912
913 /* Shift the error token. */
e9b0834e
AD
914 error_token.state = yystate = yyn;
915 yypush_ ("Shifting", error_token);
e1f93869 916 }
98ae9643
AD
917 goto yynewstate;
918
919 /* Accept. */
920 yyacceptlab:
921 yyresult = 0;
922 goto yyreturn;
923
924 /* Abort. */
925 yyabortlab:
926 yyresult = 1;
927 goto yyreturn;
928
929 yyreturn:
39be9022 930 if (!yyempty)
1f7d007b 931 yy_destroy_ ("Cleanup: discarding lookahead", yyla);
98ae9643 932
a85284cf 933 /* Do not reclaim the symbols of the rule which action triggered
9d9b8b70 934 this YYABORT or YYACCEPT. */
a85284cf 935 yypop_ (yylen);
8901f32e 936 while (yystack_.size () != 1)
98ae9643 937 {
1f7d007b 938 yy_destroy_ ("Cleanup: popping", yystack_[0]);
02650b7f 939 yypop_ ();
98ae9643
AD
940 }
941
942 return yyresult;
943 }
2b548aa6 944
98ae9643
AD
945 // Generate an error message.
946 std::string
422c18f4
AD
947 ]b4_parser_class_name[::yysyntax_error_ (]dnl
948b4_error_verbose_if([int yystate, int yytoken],
949 [int, int])[)
98ae9643 950 {
422c18f4 951 std::string yyres;]b4_error_verbose_if([[
98ae9643 952 int yyn = yypact_[yystate];
d6645148 953 if (yypact_ninf_ < yyn && yyn <= yylast_)
98ae9643 954 {
02650b7f
PE
955 /* Start YYX at -YYN if negative to avoid negative indexes in
956 YYCHECK. */
957 int yyxbegin = yyn < 0 ? -yyn : 0;
958
959 /* Stay within bounds of both yycheck and yytname. */
d6645148 960 int yychecklim = yylast_ - yyn + 1;
02650b7f 961 int yyxend = yychecklim < yyntokens_ ? yychecklim : yyntokens_;
a0ffc175 962
eeb29422
AD
963 // Number of reported tokens (one for the "unexpected", one per
964 // "expected").
a0ffc175
AD
965 size_t yycount = 0;
966 // Its maximum.
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_)
973 {
974 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
975 {
976 yycount = 1;
977 break;
978 }
979 else
980 yyarg[yycount++] = yytname_[yyx];
981 }
982
983 char const* yyformat = 0;
984 switch (yycount)
985 {
986#define YYCASE_(N, S) \
987 case N: \
988 yyformat = S; \
989 break
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"));
995#undef YYCASE_
996 }
997 // Argument number.
998 size_t yyi = 0;
999 for (char const* yyp = yyformat; *yyp; ++yyp)
1000 if (yyp[0] == '%' && yyp[1] == 's' && yyi < yycount)
1001 {
1002 yyres += yytnamerr_ (yyarg[yyi++]);
1003 ++yyp;
1004 }
1005 else
1006 yyres += *yyp;
98ae9643
AD
1007 }
1008 else
422c18f4
AD
1009 ]])dnl
1010[ yyres = YY_("syntax error");
a0ffc175 1011 return yyres;
98ae9643 1012 }
a08460b0 1013
5348bfbe 1014
98ae9643 1015 const ]b4_int_type(b4_pact_ninf, b4_pact_ninf) b4_parser_class_name::yypact_ninf_ = b4_pact_ninf[;
2b548aa6 1016
0fddb3d5
AD
1017 const ]b4_int_type(b4_table_ninf, b4_table_ninf) b4_parser_class_name::yytable_ninf_ = b4_table_ninf[;
1018
ba206cf4 1019]b4_parser_tables_define[
2b548aa6 1020
141f5793 1021#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
98ae9643 1022 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
9d9b8b70 1023 First, the terminals, then, starting at \a yyntokens_, nonterminals. */
98ae9643
AD
1024 const char*
1025 const ]b4_parser_class_name[::yytname_[] =
1026 {
8901f32e 1027 ]b4_tname[
98ae9643 1028 };
69e2658b 1029#endif
2b548aa6 1030
69e2658b 1031#if YYDEBUG
ba206cf4 1032]b4_integral_parser_table_define([rline], [b4_rline])[
5348bfbe 1033
98ae9643
AD
1034 // Print the state stack on the debug stream.
1035 void
1036 ]b4_parser_class_name[::yystack_print_ ()
1037 {
1038 *yycdebug_ << "Stack now";
8901f32e
AD
1039 for (stack_type::const_iterator
1040 i = yystack_.begin (),
1041 i_end = yystack_.end ();
1042 i != i_end; ++i)
1043 *yycdebug_ << ' ' << i->state;
98ae9643
AD
1044 *yycdebug_ << std::endl;
1045 }
25f66e1a 1046
98ae9643
AD
1047 // Report on the debug stream that the rule \a yyrule is going to be reduced.
1048 void
d1ff7a7c 1049 ]b4_parser_class_name[::yy_reduce_print_ (int yyrule)
98ae9643
AD
1050 {
1051 unsigned int yylno = yyrline_[yyrule];
d1ff7a7c 1052 int yynrhs = yyr2_[yyrule];
98ae9643
AD
1053 /* Print the symbols being reduced, and their result. */
1054 *yycdebug_ << "Reducing stack by rule " << yyrule - 1
7cff04b5 1055 << " (line " << yylno << "):" << std::endl;
d1ff7a7c
AD
1056 /* The symbols being reduced. */
1057 for (int yyi = 0; yyi < yynrhs; yyi++)
1058 YY_SYMBOL_PRINT (" $" << yyi + 1 << " =",
1f7d007b 1059 ]b4_rhs_data(yynrhs, yyi + 1)[);
98ae9643 1060 }
5348bfbe 1061#endif // YYDEBUG
69e2658b 1062
5f5a90df 1063]b4_lex_symbol_if([], [b4_yytranslate_define])[
793fbca5 1064]b4_namespace_close[
8901f32e 1065]b4_epilogue[]dnl
08af01c2 1066m4_divert_pop(0)
a9ce3f54 1067m4_popdef([b4_copyright_years])dnl