]> git.saurik.com Git - bison.git/blame - data/lalr1.cc
Provide warn_at, complain_at, and fatal_at function callbacks to the
[bison.git] / data / lalr1.cc
CommitLineData
60491a94 1# C++ skeleton for Bison
b4721715 2
1221b78a 3# Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
60491a94
AD
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
0fb669f9
PE
17# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18# 02110-1301 USA
60491a94 19
cf147260 20m4_include(b4_pkgdatadir/[c++.m4])
8e0a5e9e 21b4_check_percent_code_qualifiers([[requires]], [[provides]], [[top]])
34376418
AD
22
23# The header is mandatory.
24b4_defines_if([],
08af01c2 25 [b4_fatal([b4_skeleton[: using %%defines is mandatory]])])
34376418 26
4626a15d
AD
27# Backward compatibility.
28m4_define([b4_location_constructors])
fc695704 29m4_include(b4_pkgdatadir/[location.cc])
a5eb1ed2 30
b526ee61
AD
31# We do want M4 expansion after # for CPP macros.
32m4_changecom()
08af01c2 33m4_divert_push(0)dnl
327afc7c 34b4_defines_if(
08af01c2 35[@output(b4_spec_defines_file@)
193d7c70
PE
36b4_copyright([Skeleton interface for Bison LALR(1) parsers in C++],
37 [2002, 2003, 2004, 2005, 2006])
fb9712a9 38dnl FIXME: This is wrong, we want computed header guards.
8bb4c753 39[
af3412cd
PE
40/* C++ LALR(1) parser skeleton written by Akim Demaille. */
41
c5e3e510
AD
42#ifndef PARSER_HEADER_H
43# define PARSER_HEADER_H
2b548aa6 44
8e0a5e9e
JD
45]m4_ifdef([b4_percent_code_requires],
46[[/* Copy the %code "requires" blocks. */
47]b4_user_code([b4_percent_code_requires])])[
aef3da86 48
8d69a1a3 49#include <string>
717be197 50#include <iostream>
fb9712a9 51#include "stack.hh"
50997c6e 52
aa08666d 53namespace ]b4_namespace[
fc695704
AD
54{
55 class position;
56 class location;
57}
4162fa07 58
aef3da86 59#include "location.hh"
fc695704 60
69e2658b
RA
61/* Enabling traces. */
62#ifndef YYDEBUG
327afc7c 63# define YYDEBUG ]b4_debug_flag[
69e2658b
RA
64#endif
65
141f5793
PE
66/* Enabling verbose error messages. */
67#ifdef YYERROR_VERBOSE
68# undef YYERROR_VERBOSE
69# define YYERROR_VERBOSE 1
70#else
327afc7c 71# define YYERROR_VERBOSE ]b4_error_verbose_flag[
69e2658b
RA
72#endif
73
141f5793
PE
74/* Enabling the token table. */
75#ifndef YYTOKEN_TABLE
76# define YYTOKEN_TABLE ]b4_token_table[
77#endif
78
b4a20338
AD
79/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
80 If N is 0, then set CURRENT to the empty location which ends
81 the previous symbol: RHS[0] (always defined). */
3fc16193 82
374f5a14 83#ifndef YYLLOC_DEFAULT
b4a20338
AD
84# define YYLLOC_DEFAULT(Current, Rhs, N) \
85do { \
86 if (N) \
87 { \
88 (Current).begin = (Rhs)[1].begin; \
89 (Current).end = (Rhs)[N].end; \
90 } \
91 else \
92 { \
93 (Current).begin = (Current).end = (Rhs)[0].end; \
94 } \
2a4647a3 95} while (false)
374f5a14
RA
96#endif
97
aa08666d 98namespace ]b4_namespace[
2b548aa6 99{
3f3eed27 100
efeed023 101 /// A Bison parser.
07fed891 102 class ]b4_parser_class_name[
2b548aa6 103 {
fb9712a9 104 public:
617a8f12 105 /// Symbol semantic values.
02650b7f 106#ifndef YYSTYPE
fb9712a9 107]m4_ifdef([b4_stype],
1221b78a 108[ union semantic_type
8ec0a172 109b4_user_stype
1221b78a 110 ;],
ddc8ede1
PE
111[m4_if(b4_tag_seen_flag, 0,
112[[ typedef int semantic_type;]],
113[[ typedef YYSTYPE semantic_type;]])])[
fb9712a9 114#else
f479c6c6 115 typedef YYSTYPE semantic_type;
fb9712a9 116#endif
617a8f12 117 /// Symbol locations.
f479c6c6 118 typedef ]b4_location_type[ location_type;
fb9712a9
AD
119 /// Tokens.
120 struct token
121 {
122 ]b4_token_enums(b4_tokens)[
123 };
c095d689
AD
124 /// Token type.
125 typedef token::yytokentype token_type;
2b548aa6 126
efeed023 127 /// Build a parser object.
98ae9643
AD
128 ]b4_parser_class_name[ (]b4_parse_param_decl[);
129 virtual ~]b4_parser_class_name[ ();
2b548aa6 130
f69a4142
AD
131 /// Parse.
132 /// \returns 0 iff parsing succeeded.
e019c247 133 virtual int parse ();
2b548aa6 134
f69a4142 135 /// The current debugging stream.
9a1e9989
AD
136 std::ostream& debug_stream () const;
137 /// Set the current debugging stream.
138 void set_debug_stream (std::ostream &);
139
a3cb6248
AD
140 /// Type for debugging levels.
141 typedef int debug_level_type;
142 /// The current debugging level.
143 debug_level_type debug_level () const;
144 /// Set the current debugging level.
145 void set_debug_level (debug_level_type l);
146
2b548aa6 147 private:
efeed023
AD
148 /// Report a syntax error.
149 /// \param loc where the syntax error is found.
150 /// \param msg a description of the syntax error.
99880de5 151 virtual void error (const location_type& loc, const std::string& msg);
efeed023 152
dbcdae2d 153 /// Generate an error message.
d4fb5e3c 154 /// \param state the state where the error occurred.
742e4900 155 /// \param tok the lookahead token.
d4fb5e3c
AD
156 virtual std::string yysyntax_error_ (int yystate]dnl
157b4_error_verbose_if([, int tok])[);
efeed023 158
a5eb1ed2 159#if YYDEBUG
a0af42fc
AD
160 /// \brief Report a symbol value on the debug stream.
161 /// \param yytype The token type.
162 /// \param yyvaluep Its semantic value.
163 /// \param yylocationp Its location.
164 virtual void yy_symbol_value_print_ (int yytype,
02650b7f
PE
165 const semantic_type* yyvaluep,
166 const location_type* yylocationp);
f69a4142
AD
167 /// \brief Report a symbol on the debug stream.
168 /// \param yytype The token type.
169 /// \param yyvaluep Its semantic value.
170 /// \param yylocationp Its location.
a0af42fc 171 virtual void yy_symbol_print_ (int yytype,
02650b7f
PE
172 const semantic_type* yyvaluep,
173 const location_type* yylocationp);
fa7b79c0 174#endif
a5eb1ed2 175
4bb2bc3f 176
e019c247 177 /// State numbers.
f479c6c6 178 typedef int state_type;
e019c247
AD
179 /// State stack type.
180 typedef stack<state_type> state_stack_type;
181 /// Semantic value stack type.
182 typedef stack<semantic_type> semantic_stack_type;
183 /// location stack type.
184 typedef stack<location_type> location_stack_type;
185
f69a4142 186 /// The state stack.
e019c247 187 state_stack_type yystate_stack_;
f69a4142 188 /// The semantic value stack.
e019c247 189 semantic_stack_type yysemantic_stack_;
f69a4142 190 /// The location stack.
e019c247 191 location_stack_type yylocation_stack_;
2b548aa6 192
e019c247 193 /// Internal symbol numbers.
f479c6c6 194 typedef ]b4_int_type_for([b4_translate])[ token_number_type;
2b548aa6 195 /* Tables. */
efeed023 196 /// For a state, the index in \a yytable_ of its portion.
617a8f12
AD
197 static const ]b4_int_type_for([b4_pact])[ yypact_[];
198 static const ]b4_int_type(b4_pact_ninf, b4_pact_ninf)[ yypact_ninf_;
efeed023
AD
199
200 /// For a state, default rule to reduce.
201 /// Unless\a yytable_ specifies something else to do.
202 /// Zero means the default is an error.
617a8f12 203 static const ]b4_int_type_for([b4_defact])[ yydefact_[];
efeed023 204
617a8f12
AD
205 static const ]b4_int_type_for([b4_pgoto])[ yypgoto_[];
206 static const ]b4_int_type_for([b4_defgoto])[ yydefgoto_[];
efeed023
AD
207
208 /// What to do in a state.
209 /// \a yytable_[yypact_[s]]: what to do in state \a s.
210 /// - if positive, shift that token.
211 /// - if negative, reduce the rule which number is the opposite.
212 /// - if zero, do what YYDEFACT says.
617a8f12
AD
213 static const ]b4_int_type_for([b4_table])[ yytable_[];
214 static const ]b4_int_type(b4_table_ninf, b4_table_ninf)[ yytable_ninf_;
efeed023 215
617a8f12 216 static const ]b4_int_type_for([b4_check])[ yycheck_[];
efeed023
AD
217
218 /// For a state, its accessing symbol.
617a8f12 219 static const ]b4_int_type_for([b4_stos])[ yystos_[];
efeed023
AD
220
221 /// For a rule, its LHS.
617a8f12 222 static const ]b4_int_type_for([b4_r1])[ yyr1_[];
efeed023 223 /// For a rule, its RHS length.
617a8f12 224 static const ]b4_int_type_for([b4_r2])[ yyr2_[];
69e2658b 225
141f5793 226#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
efeed023 227 /// For a symbol, its name in clear.
9e0876fb
PE
228 static const char* const yytname_[];
229#endif
230
231#if YYERROR_VERBOSE
232 /// Convert the symbol name \a n to a form suitable for a diagnostic.
233 virtual std::string yytnamerr_ (const char *n);
69e2658b 234#endif
2b548aa6 235
69e2658b 236#if YYDEBUG
e019c247 237 /// A type to store symbol numbers and -1.
f479c6c6 238 typedef ]b4_int_type_for([b4_rhs])[ rhs_number_type;
617a8f12 239 /// A `-1'-separated list of the rules' RHS.
99880de5 240 static const rhs_number_type yyrhs_[];
617a8f12
AD
241 /// For each rule, the index of the first RHS symbol in \a yyrhs_.
242 static const ]b4_int_type_for([b4_prhs])[ yyprhs_[];
243 /// For each rule, its source line number.
244 static const ]b4_int_type_for([b4_rline])[ yyrline_[];
245 /// For each scanner token number, its symbol number.
246 static const ]b4_int_type_for([b4_toknum])[ yytoken_number_[];
efeed023 247 /// Report on the debug stream that the rule \a r is going to be reduced.
d1ff7a7c 248 virtual void yy_reduce_print_ (int r);
efeed023 249 /// Print the state stack on the debug stream.
f69a4142 250 virtual void yystack_print_ ();
fa7b79c0
PE
251
252 /* Debugging. */
253 int yydebug_;
254 std::ostream* yycdebug_;
69e2658b 255#endif
2b548aa6 256
32c96bd7
AD
257 /// Convert a scanner token number \a t to a symbol number.
258 token_number_type yytranslate_ (int t);
f69a4142
AD
259
260 /// \brief Reclaim the memory associated to a symbol.
261 /// \param yymsg Why this token is reclaimed.
262 /// \param yytype The symbol type.
263 /// \param yyvaluep Its semantic value.
264 /// \param yylocationp Its location.
265 inline void yydestruct_ (const char* yymsg,
02650b7f
PE
266 int yytype,
267 semantic_type* yyvaluep,
268 location_type* yylocationp);
2b548aa6 269
52d5733f 270 /// Pop \a n symbols the three stacks.
f69a4142 271 inline void yypop_ (unsigned int n = 1);
52d5733f 272
762a801e 273 /* Constants. */
617a8f12 274 static const int yyeof_;
39912f52 275 /* LAST_ -- Last index in TABLE_. */
617a8f12
AD
276 static const int yylast_;
277 static const int yynnts_;
278 static const int yyempty_;
279 static const int yyfinal_;
280 static const int yyterror_;
281 static const int yyerrcode_;
282 static const int yyntokens_;
283 static const unsigned int yyuser_token_number_max_;
99880de5 284 static const token_number_type yyundef_token_;
caf37a36 285]b4_parse_param_vars[
2b548aa6
RA
286 };
287}
288
fb9712a9
AD
289]m4_ifset([b4_global_tokens_and_yystype],
290[b4_token_defines(b4_tokens)
291
292#ifndef YYSTYPE
9d9b8b70 293 /* Redirection for backward compatibility. */
aa08666d 294# define YYSTYPE b4_namespace::b4_parser_class_name::semantic_type
fb9712a9 295#endif
9bc0dd67 296])
8e0a5e9e
JD
297m4_ifdef([b4_percent_code_provides],
298[[/* Copy the %code "provides" blocks. */
299]b4_user_code([b4_percent_code_provides])])[]dnl
9bc0dd67
JD
300
301[#endif /* ! defined PARSER_HEADER_H */]
b61c6978 302])dnl
08af01c2 303@output(b4_parser_file_name@)
193d7c70
PE
304b4_copyright([Skeleton implementation for Bison LALR(1) parsers in C++],
305 [2002, 2003, 2004, 2005, 2006])
8e0a5e9e
JD
306m4_ifdef([b4_percent_code_top],
307[[/* Copy the %code "top" blocks. */
308]b4_user_code([b4_percent_code_top])])[]dnl
aa08666d 309m4_if(b4_prefix, [yy], [],
c5b95ccf
AD
310[
311// Take the name prefix into account.
9bc0dd67
JD
312#define yylex b4_prefix[]lex])[
313
314/* First part of user declarations. */
136a0f76 315]b4_user_pre_prologue
9bc0dd67 316
bd9d212b
JD
317b4_defines_if([[
318#include "@basename(]b4_spec_defines_file[@)"]])[
50997c6e 319
fb9712a9 320/* User implementation prologue. */
8e0a5e9e
JD
321]b4_user_post_prologue
322m4_ifdef([b4_percent_code],
323[[/* Copy the unqualified %code blocks. */
324]b4_user_code([b4_percent_code])
325])[]dnl
fb9712a9 326
8e0a5e9e 327[#ifndef YY_
30757c8c
PE
328# if YYENABLE_NLS
329# if ENABLE_NLS
330# include <libintl.h> /* FIXME: INFRINGES ON USER NAME SPACE */
331# define YY_(msgid) dgettext ("bison-runtime", msgid)
332# endif
333# endif
334# ifndef YY_
335# define YY_(msgid) msgid
336# endif
989b5b8e
AD
337#endif
338
2a4647a3 339/* Suppress unused-variable warnings by "using" E. */
12ce2df6 340#define YYUSE(e) ((void) (e))
2a4647a3 341
2b548aa6 342/* Enable debugging if requested. */
50997c6e 343#if YYDEBUG
284acc8b 344
fa7b79c0
PE
345/* A pseudo ostream that takes yydebug_ into account. */
346# define YYCDEBUG if (yydebug_) (*yycdebug_)
347
284acc8b
AD
348# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
349do { \
a3cb6248 350 if (yydebug_) \
284acc8b 351 { \
d1ff7a7c 352 *yycdebug_ << Title << ' '; \
a0af42fc 353 yy_symbol_print_ ((Type), (Value), (Location)); \
9a1e9989 354 *yycdebug_ << std::endl; \
284acc8b 355 } \
2a4647a3 356} while (false)
284acc8b 357
5348bfbe
AD
358# define YY_REDUCE_PRINT(Rule) \
359do { \
a3cb6248 360 if (yydebug_) \
d1ff7a7c 361 yy_reduce_print_ (Rule); \
2a4647a3 362} while (false)
284acc8b 363
25f66e1a
AD
364# define YY_STACK_PRINT() \
365do { \
a3cb6248 366 if (yydebug_) \
f69a4142 367 yystack_print_ (); \
2a4647a3 368} while (false)
284acc8b 369
2b548aa6 370#else /* !YYDEBUG */
284acc8b 371
a36b333c 372# define YYCDEBUG if (false) std::cerr
284acc8b 373# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
5348bfbe 374# define YY_REDUCE_PRINT(Rule)
25f66e1a 375# define YY_STACK_PRINT()
284acc8b 376
2b548aa6
RA
377#endif /* !YYDEBUG */
378
60a777aa
AD
379#define YYACCEPT goto yyacceptlab
380#define YYABORT goto yyabortlab
47301314 381#define YYERROR goto yyerrorlab
60a777aa 382
aa08666d 383namespace ]b4_namespace[
9e0876fb 384{
aa08666d 385#if YYERROR_VERBOSE
9e0876fb 386
aa08666d
AD
387 /* Return YYSTR after stripping away unnecessary quotes and
388 backslashes, so that it's suitable for yyerror. The heuristic is
389 that double-quoting is unnecessary unless the string contains an
390 apostrophe, a comma, or backslash (other than backslash-backslash).
391 YYSTR is taken from yytname. */
392 std::string
393 ]b4_parser_class_name[::yytnamerr_ (const char *yystr)
394 {
395 if (*yystr == '"')
396 {
397 std::string yyr = "";
398 char const *yyp = yystr;
193d7c70 399
aa08666d
AD
400 for (;;)
401 switch (*++yyp)
402 {
403 case '\'':
404 case ',':
405 goto do_not_strip_quotes;
193d7c70 406
aa08666d
AD
407 case '\\':
408 if (*++yyp != '\\')
409 goto do_not_strip_quotes;
410 /* Fall through. */
411 default:
412 yyr += *yyp;
413 break;
193d7c70 414
aa08666d
AD
415 case '"':
416 return yyr;
417 }
418 do_not_strip_quotes: ;
419 }
193d7c70 420
aa08666d
AD
421 return yystr;
422 }
9e0876fb
PE
423
424#endif
425
98ae9643 426 /// Build a parser object.
fa7b79c0
PE
427 ]b4_parser_class_name::b4_parser_class_name[ (]b4_parse_param_decl[)]m4_ifset([b4_parse_param], [
428 :])[
429#if YYDEBUG
430 ]m4_ifset([b4_parse_param], [ ], [ :])[yydebug_ (false),
431 yycdebug_ (&std::cerr)]m4_ifset([b4_parse_param], [,])[
432#endif]b4_parse_param_cons[
98ae9643
AD
433 {
434 }
a0e68930 435
98ae9643
AD
436 ]b4_parser_class_name::~b4_parser_class_name[ ()
437 {
438 }
a0e68930 439
98ae9643
AD
440#if YYDEBUG
441 /*--------------------------------.
442 | Print this symbol on YYOUTPUT. |
443 `--------------------------------*/
a0e68930 444
a0af42fc
AD
445 inline void
446 ]b4_parser_class_name[::yy_symbol_value_print_ (int yytype,
02650b7f 447 const semantic_type* yyvaluep, const location_type* yylocationp)
98ae9643 448 {
98ae9643
AD
449 YYUSE (yylocationp);
450 YYUSE (yyvaluep);
98ae9643
AD
451 switch (yytype)
452 {
453 ]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
454[ default:
02650b7f 455 break;
98ae9643 456 }
a0af42fc
AD
457 }
458
459
460 void
461 ]b4_parser_class_name[::yy_symbol_print_ (int yytype,
02650b7f 462 const semantic_type* yyvaluep, const location_type* yylocationp)
a0af42fc
AD
463 {
464 *yycdebug_ << (yytype < yyntokens_ ? "token" : "nterm")
02650b7f
PE
465 << ' ' << yytname_[yytype] << " ("
466 << *yylocationp << ": ";
a0af42fc 467 yy_symbol_value_print_ (yytype, yyvaluep, yylocationp);
98ae9643
AD
468 *yycdebug_ << ')';
469 }
fa7b79c0 470#endif
a0e68930 471
98ae9643
AD
472 void
473 ]b4_parser_class_name[::yydestruct_ (const char* yymsg,
02650b7f 474 int yytype, semantic_type* yyvaluep, location_type* yylocationp)
98ae9643
AD
475 {
476 YYUSE (yylocationp);
477 YYUSE (yymsg);
478 YYUSE (yyvaluep);
479
480 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
481
482 switch (yytype)
483 {
484 ]m4_map([b4_symbol_actions], m4_defn([b4_symbol_destructors]))[
02650b7f
PE
485 default:
486 break;
98ae9643
AD
487 }
488 }
60a777aa 489
98ae9643
AD
490 void
491 ]b4_parser_class_name[::yypop_ (unsigned int n)
492 {
493 yystate_stack_.pop (n);
494 yysemantic_stack_.pop (n);
495 yylocation_stack_.pop (n);
496 }
52d5733f 497
fa7b79c0 498#if YYDEBUG
98ae9643
AD
499 std::ostream&
500 ]b4_parser_class_name[::debug_stream () const
501 {
502 return *yycdebug_;
503 }
9a1e9989 504
98ae9643
AD
505 void
506 ]b4_parser_class_name[::set_debug_stream (std::ostream& o)
507 {
508 yycdebug_ = &o;
509 }
9a1e9989
AD
510
511
98ae9643
AD
512 ]b4_parser_class_name[::debug_level_type
513 ]b4_parser_class_name[::debug_level () const
514 {
515 return yydebug_;
516 }
a3cb6248 517
98ae9643
AD
518 void
519 ]b4_parser_class_name[::set_debug_level (debug_level_type l)
520 {
521 yydebug_ = l;
522 }
fa7b79c0 523#endif
a3cb6248 524
98ae9643
AD
525 int
526 ]b4_parser_class_name[::parse ()
527 {
742e4900 528 /// Lookahead and lookahead in internal form.
98ae9643
AD
529 int yychar = yyempty_;
530 int yytoken = 0;
d4fb5e3c 531
98ae9643
AD
532 /* State. */
533 int yyn;
a85284cf 534 int yylen = 0;
98ae9643 535 int yystate = 0;
d4fb5e3c 536
9d9b8b70 537 /* Error handling. */
98ae9643
AD
538 int yynerrs_ = 0;
539 int yyerrstatus_ = 0;
dbcdae2d 540
742e4900 541 /// Semantic value of the lookahead.
98ae9643 542 semantic_type yylval;
742e4900 543 /// Location of the lookahead.
98ae9643
AD
544 location_type yylloc;
545 /// The locations where the error started and ended.
546 location yyerror_range[2];
dbcdae2d 547
98ae9643
AD
548 /// $$.
549 semantic_type yyval;
550 /// @@$.
551 location_type yyloc;
dbcdae2d 552
98ae9643 553 int yyresult;
ad745863 554
98ae9643 555 YYCDEBUG << "Starting parse" << std::endl;
451364ed 556
451364ed 557]m4_ifdef([b4_initial_action], [
99880de5
AD
558m4_pushdef([b4_at_dollar], [yylloc])dnl
559m4_pushdef([b4_dollar_dollar], [yylval])dnl
9d9b8b70 560 /* User initialization code. */
8ec0a172 561 b4_user_initial_action
451364ed 562m4_popdef([b4_dollar_dollar])dnl
8ec0a172 563m4_popdef([b4_at_dollar])])dnl
451364ed 564
98ae9643
AD
565 [ /* Initialize the stacks. The initial state will be pushed in
566 yynewstate, since the latter expects the semantical and the
567 location values to have been already stored, initialize these
568 stacks with a primary value. */
569 yystate_stack_ = state_stack_type (0);
570 yysemantic_stack_ = semantic_stack_type (0);
571 yylocation_stack_ = location_stack_type (0);
572 yysemantic_stack_.push (yylval);
573 yylocation_stack_.push (yylloc);
574
575 /* New state. */
576 yynewstate:
577 yystate_stack_.push (yystate);
578 YYCDEBUG << "Entering state " << yystate << std::endl;
868d2d96
JD
579
580 /* Accept? */
581 if (yystate == yyfinal_)
582 goto yyacceptlab;
583
98ae9643
AD
584 goto yybackup;
585
586 /* Backup. */
587 yybackup:
588
742e4900 589 /* Try to take a decision without lookahead. */
98ae9643
AD
590 yyn = yypact_[yystate];
591 if (yyn == yypact_ninf_)
592 goto yydefault;
593
742e4900 594 /* Read a lookahead token. */
98ae9643
AD
595 if (yychar == yyempty_)
596 {
02650b7f
PE
597 YYCDEBUG << "Reading a token: ";
598 yychar = ]b4_c_function_call([yylex], [int],
599 [[YYSTYPE*], [&yylval]][]dnl
327afc7c 600b4_locations_if([, [[location*], [&yylloc]]])dnl
dbcdae2d 601m4_ifdef([b4_lex_param], [, ]b4_lex_param))[;
98ae9643
AD
602 }
603
604
605 /* Convert token to internal form. */
606 if (yychar <= yyeof_)
607 {
02650b7f
PE
608 yychar = yytoken = yyeof_;
609 YYCDEBUG << "Now at end of input." << std::endl;
98ae9643
AD
610 }
611 else
612 {
02650b7f
PE
613 yytoken = yytranslate_ (yychar);
614 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
98ae9643
AD
615 }
616
617 /* If the proper action on seeing token YYTOKEN is to reduce or to
618 detect an error, take that action. */
619 yyn += yytoken;
34ec3579 620 if (yyn < 0 || yylast_ < yyn || yycheck_[yyn] != yytoken)
98ae9643
AD
621 goto yydefault;
622
623 /* Reduce or error. */
624 yyn = yytable_[yyn];
625 if (yyn <= 0)
626 {
02650b7f
PE
627 if (yyn == 0 || yyn == yytable_ninf_)
628 goto yyerrlab;
629 yyn = -yyn;
630 goto yyreduce;
98ae9643
AD
631 }
632
742e4900 633 /* Shift the lookahead token. */
98ae9643
AD
634 YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
635
868d2d96
JD
636 /* Discard the token being shifted. */
637 yychar = yyempty_;
98ae9643
AD
638
639 yysemantic_stack_.push (yylval);
640 yylocation_stack_.push (yylloc);
641
642 /* Count tokens shifted since error; after three, turn off error
643 status. */
644 if (yyerrstatus_)
645 --yyerrstatus_;
646
647 yystate = yyn;
648 goto yynewstate;
649
650 /*-----------------------------------------------------------.
651 | yydefault -- do the default action for the current state. |
652 `-----------------------------------------------------------*/
653 yydefault:
654 yyn = yydefact_[yystate];
655 if (yyn == 0)
656 goto yyerrlab;
657 goto yyreduce;
658
659 /*-----------------------------.
660 | yyreduce -- Do a reduction. |
661 `-----------------------------*/
662 yyreduce:
663 yylen = yyr2_[yyn];
a85284cf 664 /* If YYLEN is nonzero, implement the default value of the action:
98ae9643
AD
665 `$$ = $1'. Otherwise, use the top of the stack.
666
667 Otherwise, the following line sets YYVAL to garbage.
668 This behavior is undocumented and Bison
669 users should not rely upon it. */
670 if (yylen)
671 yyval = yysemantic_stack_[yylen - 1];
672 else
673 yyval = yysemantic_stack_[0];
2b548aa6 674
2b548aa6 675 {
98ae9643
AD
676 slice<location_type, location_stack_type> slice (yylocation_stack_, yylen);
677 YYLLOC_DEFAULT (yyloc, slice, yylen);
2b548aa6 678 }
98ae9643
AD
679 YY_REDUCE_PRINT (yyn);
680 switch (yyn)
681 {
8ec0a172 682 ]b4_user_actions[
02650b7f 683 default: break;
98ae9643 684 }
d1ff7a7c 685 YY_SYMBOL_PRINT ("-> $$ =", yyr1_[yyn], &yyval, &yyloc);
98ae9643
AD
686
687 yypop_ (yylen);
a85284cf 688 yylen = 0;
98ae9643
AD
689 YY_STACK_PRINT ();
690
691 yysemantic_stack_.push (yyval);
692 yylocation_stack_.push (yyloc);
693
694 /* Shift the result of the reduction. */
695 yyn = yyr1_[yyn];
696 yystate = yypgoto_[yyn - yyntokens_] + yystate_stack_[0];
697 if (0 <= yystate && yystate <= yylast_
34ec3579 698 && yycheck_[yystate] == yystate_stack_[0])
98ae9643
AD
699 yystate = yytable_[yystate];
700 else
701 yystate = yydefgoto_[yyn - yyntokens_];
702 goto yynewstate;
703
704 /*------------------------------------.
705 | yyerrlab -- here on detecting error |
706 `------------------------------------*/
707 yyerrlab:
708 /* If not already recovering from an error, report this error. */
709 if (!yyerrstatus_)
710 {
02650b7f
PE
711 ++yynerrs_;
712 error (yylloc, yysyntax_error_ (yystate]dnl
d4fb5e3c 713b4_error_verbose_if([, yytoken])[));
98ae9643
AD
714 }
715
716 yyerror_range[0] = yylloc;
717 if (yyerrstatus_ == 3)
718 {
742e4900 719 /* If just tried and failed to reuse lookahead token after an
02650b7f
PE
720 error, discard it. */
721
722 if (yychar <= yyeof_)
723 {
724 /* Return failure if at end of input. */
725 if (yychar == yyeof_)
726 YYABORT;
727 }
728 else
729 {
730 yydestruct_ ("Error: discarding", yytoken, &yylval, &yylloc);
731 yychar = yyempty_;
732 }
98ae9643
AD
733 }
734
742e4900 735 /* Else will try to reuse lookahead token after shifting the error
98ae9643
AD
736 token. */
737 goto yyerrlab1;
738
739
740 /*---------------------------------------------------.
741 | yyerrorlab -- error raised explicitly by YYERROR. |
742 `---------------------------------------------------*/
743 yyerrorlab:
744
745 /* Pacify compilers like GCC when the user code never invokes
746 YYERROR and the label yyerrorlab therefore never appears in user
747 code. */
748 if (false)
749 goto yyerrorlab;
750
751 yyerror_range[0] = yylocation_stack_[yylen - 1];
a85284cf 752 /* Do not reclaim the symbols of the rule which action triggered
9d9b8b70 753 this YYERROR. */
98ae9643 754 yypop_ (yylen);
a85284cf 755 yylen = 0;
98ae9643
AD
756 yystate = yystate_stack_[0];
757 goto yyerrlab1;
758
759 /*-------------------------------------------------------------.
760 | yyerrlab1 -- common code for both syntax error and YYERROR. |
761 `-------------------------------------------------------------*/
762 yyerrlab1:
763 yyerrstatus_ = 3; /* Each real token shifted decrements this. */
764
765 for (;;)
766 {
02650b7f
PE
767 yyn = yypact_[yystate];
768 if (yyn != yypact_ninf_)
769 {
770 yyn += yyterror_;
34ec3579 771 if (0 <= yyn && yyn <= yylast_ && yycheck_[yyn] == yyterror_)
02650b7f
PE
772 {
773 yyn = yytable_[yyn];
774 if (0 < yyn)
775 break;
776 }
777 }
778
779 /* Pop the current state because it cannot handle the error token. */
780 if (yystate_stack_.height () == 1)
781 YYABORT;
782
783 yyerror_range[0] = yylocation_stack_[0];
784 yydestruct_ ("Error: popping",
785 yystos_[yystate],
786 &yysemantic_stack_[0], &yylocation_stack_[0]);
787 yypop_ ();
788 yystate = yystate_stack_[0];
789 YY_STACK_PRINT ();
98ae9643
AD
790 }
791
98ae9643
AD
792 yyerror_range[1] = yylloc;
793 // Using YYLLOC is tempting, but would change the location of
742e4900 794 // the lookahead. YYLOC is available though.
401aace6 795 YYLLOC_DEFAULT (yyloc, (yyerror_range - 1), 2);
98ae9643
AD
796 yysemantic_stack_.push (yylval);
797 yylocation_stack_.push (yyloc);
798
9d9b8b70 799 /* Shift the error token. */
98ae9643 800 YY_SYMBOL_PRINT ("Shifting", yystos_[yyn],
02650b7f 801 &yysemantic_stack_[0], &yylocation_stack_[0]);
98ae9643
AD
802
803 yystate = yyn;
804 goto yynewstate;
805
806 /* Accept. */
807 yyacceptlab:
808 yyresult = 0;
809 goto yyreturn;
810
811 /* Abort. */
812 yyabortlab:
813 yyresult = 1;
814 goto yyreturn;
815
816 yyreturn:
868d2d96 817 if (yychar != yyempty_)
98ae9643
AD
818 yydestruct_ ("Cleanup: discarding lookahead", yytoken, &yylval, &yylloc);
819
a85284cf 820 /* Do not reclaim the symbols of the rule which action triggered
9d9b8b70 821 this YYABORT or YYACCEPT. */
a85284cf 822 yypop_ (yylen);
98ae9643
AD
823 while (yystate_stack_.height () != 1)
824 {
02650b7f
PE
825 yydestruct_ ("Cleanup: popping",
826 yystos_[yystate_stack_[0]],
827 &yysemantic_stack_[0],
828 &yylocation_stack_[0]);
829 yypop_ ();
98ae9643
AD
830 }
831
832 return yyresult;
833 }
2b548aa6 834
98ae9643
AD
835 // Generate an error message.
836 std::string
837 ]b4_parser_class_name[::yysyntax_error_ (int yystate]dnl
fb9712a9 838b4_error_verbose_if([, int tok])[)
98ae9643
AD
839 {
840 std::string res;
c66dfadd 841 YYUSE (yystate);
a08460b0 842#if YYERROR_VERBOSE
98ae9643 843 int yyn = yypact_[yystate];
d6645148 844 if (yypact_ninf_ < yyn && yyn <= yylast_)
98ae9643 845 {
02650b7f
PE
846 /* Start YYX at -YYN if negative to avoid negative indexes in
847 YYCHECK. */
848 int yyxbegin = yyn < 0 ? -yyn : 0;
849
850 /* Stay within bounds of both yycheck and yytname. */
d6645148 851 int yychecklim = yylast_ - yyn + 1;
02650b7f
PE
852 int yyxend = yychecklim < yyntokens_ ? yychecklim : yyntokens_;
853 int count = 0;
854 for (int x = yyxbegin; x < yyxend; ++x)
34ec3579 855 if (yycheck_[x + yyn] == x && x != yyterror_)
02650b7f
PE
856 ++count;
857
858 // FIXME: This method of building the message is not compatible
859 // with internationalization. It should work like yacc.c does it.
860 // That is, first build a string that looks like this:
861 // "syntax error, unexpected %s or %s or %s"
862 // Then, invoke YY_ on this string.
863 // Finally, use the string as a format to output
864 // yytname_[tok], etc.
865 // Until this gets fixed, this message appears in English only.
866 res = "syntax error, unexpected ";
867 res += yytnamerr_ (yytname_[tok]);
868 if (count < 5)
869 {
870 count = 0;
871 for (int x = yyxbegin; x < yyxend; ++x)
34ec3579 872 if (yycheck_[x + yyn] == x && x != yyterror_)
02650b7f
PE
873 {
874 res += (!count++) ? ", expecting " : " or ";
875 res += yytnamerr_ (yytname_[x]);
876 }
877 }
98ae9643
AD
878 }
879 else
dbcdae2d 880#endif
98ae9643
AD
881 res = YY_("syntax error");
882 return res;
883 }
a08460b0 884
5348bfbe 885
98ae9643
AD
886 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
887 STATE-NUM. */
888 const ]b4_int_type(b4_pact_ninf, b4_pact_ninf) b4_parser_class_name::yypact_ninf_ = b4_pact_ninf[;
889 const ]b4_int_type_for([b4_pact])[
890 ]b4_parser_class_name[::yypact_[] =
891 {
892 ]b4_pact[
893 };
2b548aa6 894
98ae9643
AD
895 /* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE
896 doesn't specify something else to do. Zero means the default is an
897 error. */
898 const ]b4_int_type_for([b4_defact])[
899 ]b4_parser_class_name[::yydefact_[] =
900 {
901 ]b4_defact[
902 };
2b548aa6 903
98ae9643
AD
904 /* YYPGOTO[NTERM-NUM]. */
905 const ]b4_int_type_for([b4_pgoto])[
906 ]b4_parser_class_name[::yypgoto_[] =
907 {
908 ]b4_pgoto[
909 };
2b548aa6 910
98ae9643
AD
911 /* YYDEFGOTO[NTERM-NUM]. */
912 const ]b4_int_type_for([b4_defgoto])[
913 ]b4_parser_class_name[::yydefgoto_[] =
914 {
915 ]b4_defgoto[
916 };
2b548aa6 917
98ae9643
AD
918 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
919 positive, shift that token. If negative, reduce the rule which
920 number is the opposite. If zero, do what YYDEFACT says. */
921 const ]b4_int_type(b4_table_ninf, b4_table_ninf) b4_parser_class_name::yytable_ninf_ = b4_table_ninf[;
922 const ]b4_int_type_for([b4_table])[
923 ]b4_parser_class_name[::yytable_[] =
924 {
925 ]b4_table[
926 };
927
928 /* YYCHECK. */
929 const ]b4_int_type_for([b4_check])[
930 ]b4_parser_class_name[::yycheck_[] =
931 {
932 ]b4_check[
933 };
934
935 /* STOS_[STATE-NUM] -- The (internal number of the) accessing
936 symbol of state STATE-NUM. */
937 const ]b4_int_type_for([b4_stos])[
938 ]b4_parser_class_name[::yystos_[] =
939 {
940 ]b4_stos[
941 };
769b430f 942
45d5982f 943#if YYDEBUG
98ae9643
AD
944 /* TOKEN_NUMBER_[YYLEX-NUM] -- Internal symbol number corresponding
945 to YYLEX-NUM. */
946 const ]b4_int_type_for([b4_toknum])[
947 ]b4_parser_class_name[::yytoken_number_[] =
948 {
949 ]b4_toknum[
950 };
769b430f
AD
951#endif
952
98ae9643
AD
953 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
954 const ]b4_int_type_for([b4_r1])[
955 ]b4_parser_class_name[::yyr1_[] =
956 {
957 ]b4_r1[
958 };
2b548aa6 959
98ae9643
AD
960 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
961 const ]b4_int_type_for([b4_r2])[
962 ]b4_parser_class_name[::yyr2_[] =
963 {
964 ]b4_r2[
965 };
2b548aa6 966
141f5793 967#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
98ae9643 968 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
9d9b8b70 969 First, the terminals, then, starting at \a yyntokens_, nonterminals. */
98ae9643
AD
970 const char*
971 const ]b4_parser_class_name[::yytname_[] =
972 {
973 ]b4_tname[
974 };
69e2658b 975#endif
2b548aa6 976
69e2658b 977#if YYDEBUG
9d9b8b70 978 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
98ae9643
AD
979 const ]b4_parser_class_name[::rhs_number_type
980 ]b4_parser_class_name[::yyrhs_[] =
981 {
982 ]b4_rhs[
983 };
2b548aa6 984
98ae9643
AD
985 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
986 YYRHS. */
987 const ]b4_int_type_for([b4_prhs])[
988 ]b4_parser_class_name[::yyprhs_[] =
989 {
990 ]b4_prhs[
991 };
2b548aa6 992
98ae9643
AD
993 /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
994 const ]b4_int_type_for([b4_rline])[
995 ]b4_parser_class_name[::yyrline_[] =
996 {
997 ]b4_rline[
998 };
5348bfbe 999
98ae9643
AD
1000 // Print the state stack on the debug stream.
1001 void
1002 ]b4_parser_class_name[::yystack_print_ ()
1003 {
1004 *yycdebug_ << "Stack now";
1005 for (state_stack_type::const_iterator i = yystate_stack_.begin ();
02650b7f 1006 i != yystate_stack_.end (); ++i)
98ae9643
AD
1007 *yycdebug_ << ' ' << *i;
1008 *yycdebug_ << std::endl;
1009 }
25f66e1a 1010
98ae9643
AD
1011 // Report on the debug stream that the rule \a yyrule is going to be reduced.
1012 void
d1ff7a7c 1013 ]b4_parser_class_name[::yy_reduce_print_ (int yyrule)
98ae9643
AD
1014 {
1015 unsigned int yylno = yyrline_[yyrule];
d1ff7a7c 1016 int yynrhs = yyr2_[yyrule];
98ae9643
AD
1017 /* Print the symbols being reduced, and their result. */
1018 *yycdebug_ << "Reducing stack by rule " << yyrule - 1
02650b7f 1019 << " (line " << yylno << "), ";
d1ff7a7c
AD
1020 /* The symbols being reduced. */
1021 for (int yyi = 0; yyi < yynrhs; yyi++)
1022 YY_SYMBOL_PRINT (" $" << yyi + 1 << " =",
02650b7f
PE
1023 yyrhs_[yyprhs_[yyrule] + yyi],
1024 &]b4_rhs_value(yynrhs, yyi + 1)[,
1025 &]b4_rhs_location(yynrhs, yyi + 1)[);
98ae9643 1026 }
5348bfbe 1027#endif // YYDEBUG
69e2658b 1028
98ae9643
AD
1029 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
1030 ]b4_parser_class_name[::token_number_type
32c96bd7 1031 ]b4_parser_class_name[::yytranslate_ (int t)
2b548aa6 1032 {
98ae9643
AD
1033 static
1034 const token_number_type
1035 translate_table[] =
1036 {
1037 ]b4_translate[
1038 };
32c96bd7
AD
1039 if ((unsigned int) t <= yyuser_token_number_max_)
1040 return translate_table[t];
98ae9643
AD
1041 else
1042 return yyundef_token_;
1043 }
1044
1045 const int ]b4_parser_class_name[::yyeof_ = 0;
1046 const int ]b4_parser_class_name[::yylast_ = ]b4_last[;
1047 const int ]b4_parser_class_name[::yynnts_ = ]b4_nterms_number[;
1048 const int ]b4_parser_class_name[::yyempty_ = -2;
1049 const int ]b4_parser_class_name[::yyfinal_ = ]b4_final_state_number[;
1050 const int ]b4_parser_class_name[::yyterror_ = 1;
1051 const int ]b4_parser_class_name[::yyerrcode_ = 256;
1052 const int ]b4_parser_class_name[::yyntokens_ = ]b4_tokens_number[;
1053
1054 const unsigned int ]b4_parser_class_name[::yyuser_token_number_max_ = ]b4_user_token_number_max[;
1055 const ]b4_parser_class_name[::token_number_type ]b4_parser_class_name[::yyundef_token_ = ]b4_undef_token_number[;
2b548aa6 1056
aa08666d 1057} // namespace ]b4_namespace[
2b548aa6 1058
c5e3e510 1059]b4_epilogue
21846f69 1060dnl
08af01c2 1061@output(b4_dir_prefix[]stack.hh@)
193d7c70 1062b4_copyright([Stack handling for Bison parsers in C++],
6e93d810 1063 [2002, 2003, 2004, 2005, 2006])[
98254360 1064
2b548aa6
RA
1065#ifndef BISON_STACK_HH
1066# define BISON_STACK_HH
1067
45119f04 1068#include <deque>
2b548aa6 1069
aa08666d 1070namespace ]b4_namespace[
2b548aa6 1071{
f85a5e6f 1072 template <class T, class S = std::deque<T> >
99880de5 1073 class stack
2b548aa6
RA
1074 {
1075 public:
1076
ecfe33e7
AD
1077 // Hide our reversed order.
1078 typedef typename S::reverse_iterator iterator;
1079 typedef typename S::const_reverse_iterator const_iterator;
2b548aa6 1080
99880de5 1081 stack () : seq_ ()
2b548aa6
RA
1082 {
1083 }
1084
99880de5 1085 stack (unsigned int n) : seq_ (n)
2b548aa6
RA
1086 {
1087 }
1088
1089 inline
1090 T&
779e7ceb 1091 operator [] (unsigned int i)
2b548aa6 1092 {
1d4055aa 1093 return seq_[i];
2b548aa6
RA
1094 }
1095
1096 inline
1097 const T&
779e7ceb 1098 operator [] (unsigned int i) const
2b548aa6 1099 {
1d4055aa 1100 return seq_[i];
2b548aa6
RA
1101 }
1102
1103 inline
1104 void
1105 push (const T& t)
1106 {
45119f04 1107 seq_.push_front (t);
2b548aa6
RA
1108 }
1109
1110 inline
1111 void
779e7ceb 1112 pop (unsigned int n = 1)
2b548aa6
RA
1113 {
1114 for (; n; --n)
45119f04 1115 seq_.pop_front ();
2b548aa6
RA
1116 }
1117
762a801e 1118 inline
779e7ceb 1119 unsigned int
762a801e
RA
1120 height () const
1121 {
1122 return seq_.size ();
1123 }
1124
ecfe33e7
AD
1125 inline const_iterator begin () const { return seq_.rbegin (); }
1126 inline const_iterator end () const { return seq_.rend (); }
2b548aa6
RA
1127
1128 private:
1129
1130 S seq_;
1131 };
374f5a14 1132
e019c247 1133 /// Present a slice of the top of a stack.
99880de5
AD
1134 template <class T, class S = stack<T> >
1135 class slice
374f5a14
RA
1136 {
1137 public:
1138
99880de5 1139 slice (const S& stack,
779e7ceb
PE
1140 unsigned int range) : stack_ (stack),
1141 range_ (range)
374f5a14
RA
1142 {
1143 }
1144
1145 inline
1146 const T&
779e7ceb 1147 operator [] (unsigned int i) const
374f5a14 1148 {
1d4055aa 1149 return stack_[range_ - i];
374f5a14
RA
1150 }
1151
1152 private:
1153
1154 const S& stack_;
779e7ceb 1155 unsigned int range_;
374f5a14 1156 };
2b548aa6
RA
1157}
1158
c5e3e510 1159#endif // not BISON_STACK_HH]
08af01c2 1160m4_divert_pop(0)