]> git.saurik.com Git - bison.git/blob - data/lalr1.cc
271cdb3e94ff4e8ab816b8075f89e7c920b8e1b4
[bison.git] / data / lalr1.cc
1 # C++ skeleton for Bison
2
3 # Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
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
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 # 02110-1301 USA
19
20 m4_include(b4_pkgdatadir/[c++.m4])
21 b4_check_percent_code_qualifiers([[requires]], [[provides]], [[top]])
22
23 # The header is mandatory.
24 b4_defines_if([],
25 [b4_fatal([b4_skeleton[: using %%defines is mandatory]])])
26
27 # Backward compatibility.
28 m4_define([b4_location_constructors])
29 m4_include(b4_pkgdatadir/[location.cc])
30
31 # We do want M4 expansion after # for CPP macros.
32 m4_changecom()
33 m4_divert_push(0)dnl
34 b4_defines_if(
35 [@output(b4_spec_defines_file@)
36 b4_copyright([Skeleton interface for Bison LALR(1) parsers in C++],
37 [2002, 2003, 2004, 2005, 2006])
38 dnl FIXME: This is wrong, we want computed header guards.
39 [
40 /* C++ LALR(1) parser skeleton written by Akim Demaille. */
41
42 #ifndef PARSER_HEADER_H
43 # define PARSER_HEADER_H
44
45 ]m4_ifdef([b4_percent_code_requires],
46 [[/* Copy the %code "requires" blocks. */
47 ]b4_user_code([b4_percent_code_requires])])[
48
49 #include <string>
50 #include <iostream>
51 #include "stack.hh"
52
53 namespace ]b4_namespace[
54 {
55 class position;
56 class location;
57 }
58
59 #include "location.hh"
60
61 /* Enabling traces. */
62 #ifndef YYDEBUG
63 # define YYDEBUG ]b4_debug_flag[
64 #endif
65
66 /* Enabling verbose error messages. */
67 #ifdef YYERROR_VERBOSE
68 # undef YYERROR_VERBOSE
69 # define YYERROR_VERBOSE 1
70 #else
71 # define YYERROR_VERBOSE ]b4_error_verbose_flag[
72 #endif
73
74 /* Enabling the token table. */
75 #ifndef YYTOKEN_TABLE
76 # define YYTOKEN_TABLE ]b4_token_table[
77 #endif
78
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). */
82
83 #ifndef YYLLOC_DEFAULT
84 # define YYLLOC_DEFAULT(Current, Rhs, N) \
85 do { \
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 } \
95 } while (false)
96 #endif
97
98 namespace ]b4_namespace[
99 {
100
101 /// A Bison parser.
102 class ]b4_parser_class_name[
103 {
104 public:
105 /// Symbol semantic values.
106 #ifndef YYSTYPE
107 ]m4_ifdef([b4_stype],
108 [ union semantic_type
109 b4_user_stype
110 ;],
111 [m4_if(b4_tag_seen_flag, 0,
112 [[ typedef int semantic_type;]],
113 [[ typedef YYSTYPE semantic_type;]])])[
114 #else
115 typedef YYSTYPE semantic_type;
116 #endif
117 /// Symbol locations.
118 typedef ]b4_location_type[ location_type;
119 /// Tokens.
120 struct token
121 {
122 ]b4_token_enums(b4_tokens)[
123 };
124 /// Token type.
125 typedef token::yytokentype token_type;
126
127 /// Build a parser object.
128 ]b4_parser_class_name[ (]b4_parse_param_decl[);
129 virtual ~]b4_parser_class_name[ ();
130
131 /// Parse.
132 /// \returns 0 iff parsing succeeded.
133 virtual int parse ();
134
135 /// The current debugging stream.
136 std::ostream& debug_stream () const;
137 /// Set the current debugging stream.
138 void set_debug_stream (std::ostream &);
139
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
147 private:
148 /// Report a syntax error.
149 /// \param loc where the syntax error is found.
150 /// \param msg a description of the syntax error.
151 virtual void error (const location_type& loc, const std::string& msg);
152
153 /// Generate an error message.
154 /// \param state the state where the error occurred.
155 /// \param tok the lookahead token.
156 virtual std::string yysyntax_error_ (int yystate]dnl
157 b4_error_verbose_if([, int tok])[);
158
159 #if YYDEBUG
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,
165 const semantic_type* yyvaluep,
166 const location_type* yylocationp);
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.
171 virtual void yy_symbol_print_ (int yytype,
172 const semantic_type* yyvaluep,
173 const location_type* yylocationp);
174 #endif
175
176
177 /// State numbers.
178 typedef int state_type;
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
186 /// The state stack.
187 state_stack_type yystate_stack_;
188 /// The semantic value stack.
189 semantic_stack_type yysemantic_stack_;
190 /// The location stack.
191 location_stack_type yylocation_stack_;
192
193 /// Internal symbol numbers.
194 typedef ]b4_int_type_for([b4_translate])[ token_number_type;
195 /* Tables. */
196 /// For a state, the index in \a yytable_ of its portion.
197 static const ]b4_int_type_for([b4_pact])[ yypact_[];
198 static const ]b4_int_type(b4_pact_ninf, b4_pact_ninf)[ yypact_ninf_;
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.
203 static const ]b4_int_type_for([b4_defact])[ yydefact_[];
204
205 static const ]b4_int_type_for([b4_pgoto])[ yypgoto_[];
206 static const ]b4_int_type_for([b4_defgoto])[ yydefgoto_[];
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.
213 static const ]b4_int_type_for([b4_table])[ yytable_[];
214 static const ]b4_int_type(b4_table_ninf, b4_table_ninf)[ yytable_ninf_;
215
216 static const ]b4_int_type_for([b4_check])[ yycheck_[];
217
218 /// For a state, its accessing symbol.
219 static const ]b4_int_type_for([b4_stos])[ yystos_[];
220
221 /// For a rule, its LHS.
222 static const ]b4_int_type_for([b4_r1])[ yyr1_[];
223 /// For a rule, its RHS length.
224 static const ]b4_int_type_for([b4_r2])[ yyr2_[];
225
226 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
227 /// For a symbol, its name in clear.
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);
234 #endif
235
236 #if YYDEBUG
237 /// A type to store symbol numbers and -1.
238 typedef ]b4_int_type_for([b4_rhs])[ rhs_number_type;
239 /// A `-1'-separated list of the rules' RHS.
240 static const rhs_number_type yyrhs_[];
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_[];
247 /// Report on the debug stream that the rule \a r is going to be reduced.
248 virtual void yy_reduce_print_ (int r);
249 /// Print the state stack on the debug stream.
250 virtual void yystack_print_ ();
251
252 /* Debugging. */
253 int yydebug_;
254 std::ostream* yycdebug_;
255 #endif
256
257 /// Convert a scanner token number \a t to a symbol number.
258 token_number_type yytranslate_ (int t);
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,
266 int yytype,
267 semantic_type* yyvaluep,
268 location_type* yylocationp);
269
270 /// Pop \a n symbols the three stacks.
271 inline void yypop_ (unsigned int n = 1);
272
273 /* Constants. */
274 static const int yyeof_;
275 /* LAST_ -- Last index in TABLE_. */
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_;
284 static const token_number_type yyundef_token_;
285 ]b4_parse_param_vars[
286 };
287 }
288
289 ]m4_ifset([b4_global_tokens_and_yystype],
290 [b4_token_defines(b4_tokens)
291
292 #ifndef YYSTYPE
293 /* Redirection for backward compatibility. */
294 # define YYSTYPE b4_namespace::b4_parser_class_name::semantic_type
295 #endif
296 ])
297 m4_ifdef([b4_percent_code_provides],
298 [[/* Copy the %code "provides" blocks. */
299 ]b4_user_code([b4_percent_code_provides])])[]dnl
300
301 [#endif /* ! defined PARSER_HEADER_H */]
302 ])dnl
303 @output(b4_parser_file_name@)
304 b4_copyright([Skeleton implementation for Bison LALR(1) parsers in C++],
305 [2002, 2003, 2004, 2005, 2006])
306 m4_ifdef([b4_percent_code_top],
307 [[/* Copy the %code "top" blocks. */
308 ]b4_user_code([b4_percent_code_top])])[]dnl
309 m4_if(b4_prefix, [yy], [],
310 [
311 // Take the name prefix into account.
312 #define yylex b4_prefix[]lex])[
313
314 /* First part of user declarations. */
315 ]b4_user_pre_prologue
316
317 b4_defines_if([[
318 #include "@basename(]b4_spec_defines_file[@)"]])[
319
320 /* User implementation prologue. */
321 ]b4_user_post_prologue
322 m4_ifdef([b4_percent_code],
323 [[/* Copy the unqualified %code blocks. */
324 ]b4_user_code([b4_percent_code])
325 ])[]dnl
326
327 [#ifndef YY_
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
337 #endif
338
339 /* Suppress unused-variable warnings by "using" E. */
340 #define YYUSE(e) ((void) (e))
341
342 /* Enable debugging if requested. */
343 #if YYDEBUG
344
345 /* A pseudo ostream that takes yydebug_ into account. */
346 # define YYCDEBUG if (yydebug_) (*yycdebug_)
347
348 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
349 do { \
350 if (yydebug_) \
351 { \
352 *yycdebug_ << Title << ' '; \
353 yy_symbol_print_ ((Type), (Value), (Location)); \
354 *yycdebug_ << std::endl; \
355 } \
356 } while (false)
357
358 # define YY_REDUCE_PRINT(Rule) \
359 do { \
360 if (yydebug_) \
361 yy_reduce_print_ (Rule); \
362 } while (false)
363
364 # define YY_STACK_PRINT() \
365 do { \
366 if (yydebug_) \
367 yystack_print_ (); \
368 } while (false)
369
370 #else /* !YYDEBUG */
371
372 # define YYCDEBUG if (false) std::cerr
373 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
374 # define YY_REDUCE_PRINT(Rule)
375 # define YY_STACK_PRINT()
376
377 #endif /* !YYDEBUG */
378
379 #define YYACCEPT goto yyacceptlab
380 #define YYABORT goto yyabortlab
381 #define YYERROR goto yyerrorlab
382
383 namespace ]b4_namespace[
384 {
385 #if YYERROR_VERBOSE
386
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;
399
400 for (;;)
401 switch (*++yyp)
402 {
403 case '\'':
404 case ',':
405 goto do_not_strip_quotes;
406
407 case '\\':
408 if (*++yyp != '\\')
409 goto do_not_strip_quotes;
410 /* Fall through. */
411 default:
412 yyr += *yyp;
413 break;
414
415 case '"':
416 return yyr;
417 }
418 do_not_strip_quotes: ;
419 }
420
421 return yystr;
422 }
423
424 #endif
425
426 /// Build a parser object.
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[
433 {
434 }
435
436 ]b4_parser_class_name::~b4_parser_class_name[ ()
437 {
438 }
439
440 #if YYDEBUG
441 /*--------------------------------.
442 | Print this symbol on YYOUTPUT. |
443 `--------------------------------*/
444
445 inline void
446 ]b4_parser_class_name[::yy_symbol_value_print_ (int yytype,
447 const semantic_type* yyvaluep, const location_type* yylocationp)
448 {
449 YYUSE (yylocationp);
450 YYUSE (yyvaluep);
451 switch (yytype)
452 {
453 ]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
454 [ default:
455 break;
456 }
457 }
458
459
460 void
461 ]b4_parser_class_name[::yy_symbol_print_ (int yytype,
462 const semantic_type* yyvaluep, const location_type* yylocationp)
463 {
464 *yycdebug_ << (yytype < yyntokens_ ? "token" : "nterm")
465 << ' ' << yytname_[yytype] << " ("
466 << *yylocationp << ": ";
467 yy_symbol_value_print_ (yytype, yyvaluep, yylocationp);
468 *yycdebug_ << ')';
469 }
470 #endif
471
472 void
473 ]b4_parser_class_name[::yydestruct_ (const char* yymsg,
474 int yytype, semantic_type* yyvaluep, location_type* yylocationp)
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]))[
485 default:
486 break;
487 }
488 }
489
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 }
497
498 #if YYDEBUG
499 std::ostream&
500 ]b4_parser_class_name[::debug_stream () const
501 {
502 return *yycdebug_;
503 }
504
505 void
506 ]b4_parser_class_name[::set_debug_stream (std::ostream& o)
507 {
508 yycdebug_ = &o;
509 }
510
511
512 ]b4_parser_class_name[::debug_level_type
513 ]b4_parser_class_name[::debug_level () const
514 {
515 return yydebug_;
516 }
517
518 void
519 ]b4_parser_class_name[::set_debug_level (debug_level_type l)
520 {
521 yydebug_ = l;
522 }
523 #endif
524
525 int
526 ]b4_parser_class_name[::parse ()
527 {
528 /// Lookahead and lookahead in internal form.
529 int yychar = yyempty_;
530 int yytoken = 0;
531
532 /* State. */
533 int yyn;
534 int yylen = 0;
535 int yystate = 0;
536
537 /* Error handling. */
538 int yynerrs_ = 0;
539 int yyerrstatus_ = 0;
540
541 /// Semantic value of the lookahead.
542 semantic_type yylval;
543 /// Location of the lookahead.
544 location_type yylloc;
545 /// The locations where the error started and ended.
546 location yyerror_range[2];
547
548 /// $$.
549 semantic_type yyval;
550 /// @@$.
551 location_type yyloc;
552
553 int yyresult;
554
555 YYCDEBUG << "Starting parse" << std::endl;
556
557 ]m4_ifdef([b4_initial_action], [
558 m4_pushdef([b4_at_dollar], [yylloc])dnl
559 m4_pushdef([b4_dollar_dollar], [yylval])dnl
560 /* User initialization code. */
561 b4_user_initial_action
562 m4_popdef([b4_dollar_dollar])dnl
563 m4_popdef([b4_at_dollar])])dnl
564
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;
579
580 /* Accept? */
581 if (yystate == yyfinal_)
582 goto yyacceptlab;
583
584 goto yybackup;
585
586 /* Backup. */
587 yybackup:
588
589 /* Try to take a decision without lookahead. */
590 yyn = yypact_[yystate];
591 if (yyn == yypact_ninf_)
592 goto yydefault;
593
594 /* Read a lookahead token. */
595 if (yychar == yyempty_)
596 {
597 YYCDEBUG << "Reading a token: ";
598 yychar = ]b4_c_function_call([yylex], [int],
599 [[YYSTYPE*], [&yylval]][]dnl
600 b4_locations_if([, [[location*], [&yylloc]]])dnl
601 m4_ifdef([b4_lex_param], [, ]b4_lex_param))[;
602 }
603
604
605 /* Convert token to internal form. */
606 if (yychar <= yyeof_)
607 {
608 yychar = yytoken = yyeof_;
609 YYCDEBUG << "Now at end of input." << std::endl;
610 }
611 else
612 {
613 yytoken = yytranslate_ (yychar);
614 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
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;
620 if (yyn < 0 || yylast_ < yyn || yycheck_[yyn] != yytoken)
621 goto yydefault;
622
623 /* Reduce or error. */
624 yyn = yytable_[yyn];
625 if (yyn <= 0)
626 {
627 if (yyn == 0 || yyn == yytable_ninf_)
628 goto yyerrlab;
629 yyn = -yyn;
630 goto yyreduce;
631 }
632
633 /* Shift the lookahead token. */
634 YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
635
636 /* Discard the token being shifted. */
637 yychar = yyempty_;
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];
664 /* If YYLEN is nonzero, implement the default value of the action:
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];
674
675 {
676 slice<location_type, location_stack_type> slice (yylocation_stack_, yylen);
677 YYLLOC_DEFAULT (yyloc, slice, yylen);
678 }
679 YY_REDUCE_PRINT (yyn);
680 switch (yyn)
681 {
682 ]b4_user_actions[
683 default: break;
684 }
685 YY_SYMBOL_PRINT ("-> $$ =", yyr1_[yyn], &yyval, &yyloc);
686
687 yypop_ (yylen);
688 yylen = 0;
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_
698 && yycheck_[yystate] == yystate_stack_[0])
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 {
711 ++yynerrs_;
712 error (yylloc, yysyntax_error_ (yystate]dnl
713 b4_error_verbose_if([, yytoken])[));
714 }
715
716 yyerror_range[0] = yylloc;
717 if (yyerrstatus_ == 3)
718 {
719 /* If just tried and failed to reuse lookahead token after an
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 }
733 }
734
735 /* Else will try to reuse lookahead token after shifting the error
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];
752 /* Do not reclaim the symbols of the rule which action triggered
753 this YYERROR. */
754 yypop_ (yylen);
755 yylen = 0;
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 {
767 yyn = yypact_[yystate];
768 if (yyn != yypact_ninf_)
769 {
770 yyn += yyterror_;
771 if (0 <= yyn && yyn <= yylast_ && yycheck_[yyn] == yyterror_)
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 ();
790 }
791
792 yyerror_range[1] = yylloc;
793 // Using YYLLOC is tempting, but would change the location of
794 // the lookahead. YYLOC is available though.
795 YYLLOC_DEFAULT (yyloc, (yyerror_range - 1), 2);
796 yysemantic_stack_.push (yylval);
797 yylocation_stack_.push (yyloc);
798
799 /* Shift the error token. */
800 YY_SYMBOL_PRINT ("Shifting", yystos_[yyn],
801 &yysemantic_stack_[0], &yylocation_stack_[0]);
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:
817 if (yychar != yyempty_)
818 yydestruct_ ("Cleanup: discarding lookahead", yytoken, &yylval, &yylloc);
819
820 /* Do not reclaim the symbols of the rule which action triggered
821 this YYABORT or YYACCEPT. */
822 yypop_ (yylen);
823 while (yystate_stack_.height () != 1)
824 {
825 yydestruct_ ("Cleanup: popping",
826 yystos_[yystate_stack_[0]],
827 &yysemantic_stack_[0],
828 &yylocation_stack_[0]);
829 yypop_ ();
830 }
831
832 return yyresult;
833 }
834
835 // Generate an error message.
836 std::string
837 ]b4_parser_class_name[::yysyntax_error_ (int yystate]dnl
838 b4_error_verbose_if([, int tok])[)
839 {
840 std::string res;
841 YYUSE (yystate);
842 #if YYERROR_VERBOSE
843 int yyn = yypact_[yystate];
844 if (yypact_ninf_ < yyn && yyn <= yylast_)
845 {
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. */
851 int yychecklim = yylast_ - yyn + 1;
852 int yyxend = yychecklim < yyntokens_ ? yychecklim : yyntokens_;
853 int count = 0;
854 for (int x = yyxbegin; x < yyxend; ++x)
855 if (yycheck_[x + yyn] == x && x != yyterror_)
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)
872 if (yycheck_[x + yyn] == x && x != yyterror_)
873 {
874 res += (!count++) ? ", expecting " : " or ";
875 res += yytnamerr_ (yytname_[x]);
876 }
877 }
878 }
879 else
880 #endif
881 res = YY_("syntax error");
882 return res;
883 }
884
885
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 };
894
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 };
903
904 /* YYPGOTO[NTERM-NUM]. */
905 const ]b4_int_type_for([b4_pgoto])[
906 ]b4_parser_class_name[::yypgoto_[] =
907 {
908 ]b4_pgoto[
909 };
910
911 /* YYDEFGOTO[NTERM-NUM]. */
912 const ]b4_int_type_for([b4_defgoto])[
913 ]b4_parser_class_name[::yydefgoto_[] =
914 {
915 ]b4_defgoto[
916 };
917
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 };
942
943 #if YYDEBUG
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 };
951 #endif
952
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 };
959
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 };
966
967 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
968 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
969 First, the terminals, then, starting at \a yyntokens_, nonterminals. */
970 const char*
971 const ]b4_parser_class_name[::yytname_[] =
972 {
973 ]b4_tname[
974 };
975 #endif
976
977 #if YYDEBUG
978 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
979 const ]b4_parser_class_name[::rhs_number_type
980 ]b4_parser_class_name[::yyrhs_[] =
981 {
982 ]b4_rhs[
983 };
984
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 };
992
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 };
999
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 ();
1006 i != yystate_stack_.end (); ++i)
1007 *yycdebug_ << ' ' << *i;
1008 *yycdebug_ << std::endl;
1009 }
1010
1011 // Report on the debug stream that the rule \a yyrule is going to be reduced.
1012 void
1013 ]b4_parser_class_name[::yy_reduce_print_ (int yyrule)
1014 {
1015 unsigned int yylno = yyrline_[yyrule];
1016 int yynrhs = yyr2_[yyrule];
1017 /* Print the symbols being reduced, and their result. */
1018 *yycdebug_ << "Reducing stack by rule " << yyrule - 1
1019 << " (line " << yylno << "), ";
1020 /* The symbols being reduced. */
1021 for (int yyi = 0; yyi < yynrhs; yyi++)
1022 YY_SYMBOL_PRINT (" $" << yyi + 1 << " =",
1023 yyrhs_[yyprhs_[yyrule] + yyi],
1024 &]b4_rhs_value(yynrhs, yyi + 1)[,
1025 &]b4_rhs_location(yynrhs, yyi + 1)[);
1026 }
1027 #endif // YYDEBUG
1028
1029 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
1030 ]b4_parser_class_name[::token_number_type
1031 ]b4_parser_class_name[::yytranslate_ (int t)
1032 {
1033 static
1034 const token_number_type
1035 translate_table[] =
1036 {
1037 ]b4_translate[
1038 };
1039 if ((unsigned int) t <= yyuser_token_number_max_)
1040 return translate_table[t];
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[;
1056
1057 } // namespace ]b4_namespace[
1058
1059 ]b4_epilogue
1060 dnl
1061 @output(b4_dir_prefix[]stack.hh@)
1062 b4_copyright([Stack handling for Bison parsers in C++],
1063 [2002, 2003, 2004, 2005, 2006])[
1064
1065 #ifndef BISON_STACK_HH
1066 # define BISON_STACK_HH
1067
1068 #include <deque>
1069
1070 namespace ]b4_namespace[
1071 {
1072 template <class T, class S = std::deque<T> >
1073 class stack
1074 {
1075 public:
1076
1077 // Hide our reversed order.
1078 typedef typename S::reverse_iterator iterator;
1079 typedef typename S::const_reverse_iterator const_iterator;
1080
1081 stack () : seq_ ()
1082 {
1083 }
1084
1085 stack (unsigned int n) : seq_ (n)
1086 {
1087 }
1088
1089 inline
1090 T&
1091 operator [] (unsigned int i)
1092 {
1093 return seq_[i];
1094 }
1095
1096 inline
1097 const T&
1098 operator [] (unsigned int i) const
1099 {
1100 return seq_[i];
1101 }
1102
1103 inline
1104 void
1105 push (const T& t)
1106 {
1107 seq_.push_front (t);
1108 }
1109
1110 inline
1111 void
1112 pop (unsigned int n = 1)
1113 {
1114 for (; n; --n)
1115 seq_.pop_front ();
1116 }
1117
1118 inline
1119 unsigned int
1120 height () const
1121 {
1122 return seq_.size ();
1123 }
1124
1125 inline const_iterator begin () const { return seq_.rbegin (); }
1126 inline const_iterator end () const { return seq_.rend (); }
1127
1128 private:
1129
1130 S seq_;
1131 };
1132
1133 /// Present a slice of the top of a stack.
1134 template <class T, class S = stack<T> >
1135 class slice
1136 {
1137 public:
1138
1139 slice (const S& stack,
1140 unsigned int range) : stack_ (stack),
1141 range_ (range)
1142 {
1143 }
1144
1145 inline
1146 const T&
1147 operator [] (unsigned int i) const
1148 {
1149 return stack_[range_ - i];
1150 }
1151
1152 private:
1153
1154 const S& stack_;
1155 unsigned int range_;
1156 };
1157 }
1158
1159 #endif // not BISON_STACK_HH]
1160 m4_divert_pop(0)