5 # Return the smallest signed int type able to handle the number MAX.
6 m4_define([b4_sint_type
],
7 [m4_if(m4_eval([$
1 <= 127]), [1], [signed char],
8 m4_eval([$
1 <= 32767]), [1], [signed short],
14 # Return the smallest unsigned int type able to handle the number MAX.
15 m4_define([b4_uint_type
],
16 [m4_if(m4_eval([$
1 <= 255]), [1], [unsigned char],
17 m4_eval([$
1 <= 65535]), [1], [unsigned short],
21 # b4_lhs_value([TYPE])
22 # --------------------
23 # Expansion of $<TYPE>$.
24 m4_define([b4_lhs_value
],
25 [yyval
[]m4_ifval([$
1], [.$
1])])
28 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
29 # --------------------------------------
30 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
32 m4_define([b4_rhs_value
],
33 [semantic_stack_@
<:@
m4_eval([$
1 - $
2])@
:>@
m4_ifval([$
3], [.$
3])])
39 m4_define([b4_lhs_location
],
43 # b4_rhs_location(RULE-LENGTH, NUM)
44 # ---------------------------------
45 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
47 m4_define([b4_rhs_location
],
48 [location_stack_@
<:@
m4_eval([$
1 - $
2])@
:>@
])
51 # b4_token_define(TOKEN-NAME, TOKEN-NUMBER)
52 # -----------------------------------------
53 # Output the definition of this token as #define.
54 m4_define([b4_token_define
],
59 # b4_token_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
60 # -------------------------------------------------------
61 # Output the definition of the tokens as #define.
62 m4_define([b4_token_defines
],
63 [m4_map([b4_token_define
], [$@
])])
65 m4_define_default([b4_input_suffix
], [.y
])
67 m4_define_default([b4_output_parser_suffix
],
68 [m4_translit(b4_input_suffix
, [yY
], [cC
])])
70 m4_define_default([b4_output_parser_name
],
71 [b4_output_prefix
[]b4_output_infix
[]b4_output_parser_suffix
[]])
74 m4_define_default([b4_output_header_suffix
],
75 [m4_translit(b4_input_suffix
, [yY
], [hH
])])
77 m4_define_default([b4_output_header_name
],
78 [b4_output_prefix
[]b4_output_infix
[]b4_output_header_suffix
[]])
80 m4_define_default([b4_header_guard
],
81 [m4_bpatsubst(m4_toupper([BISON_
]b4_output_header_name
),
82 [[^ABCDEFGHIJKLMNOPQRSTUVWXYZ
]], [_
])])
84 m4_define([b4_inherit
],
96 m4_define([b4_constructor
],
102 m4_define([b4_copyright
],
104 /* A Bison parser, made from b4_filename,
105 by GNU bison b4_version. */
107 /* Skeleton output parser for bison,
108 Copyright 2002 Free Software Foundation, Inc.
110 This program is free software; you can redistribute it and/or modify
111 it under the terms of the GNU General Public License as published by
112 the Free Software Foundation; either version 2, or (at your option)
115 This program is distributed in the hope that it will be useful,
116 but WITHOUT ANY WARRANTY; without even the implied warranty of
117 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
118 GNU General Public License for more details.
120 You should have received a copy of the GNU General Public License
121 along with this program; if not, write to the Free Software
122 Foundation, Inc., 59 Temple Place - Suite 330,
123 Boston, MA 02111-1307, USA. */
125 /* As a special exception, when this file is copied by Bison into a
126 Bison output file, you may use that output file without restriction.
127 This special exception was added by the Free Software Foundation
128 in version 1.24 of Bison. */])
131 #output "b4_output_header_name"
133 #ifndef b4_header_guard
134 # define b4_header_guard
137 #include "location.hh"
142 /* Using locations. */
143 #define YYLSP_NEEDED b4_locations_flag
145 /* Copy the first part of user declarations. */
149 b4_token_defines(b4_tokens
)
151 /* Enabling traces. */
153 # define YYDEBUG b4_debug
156 /* Enabling verbose error message. */
157 #ifndef YYERROR_VERBOSE
158 # define YYERROR_VERBOSE b4_error_verbose
163 [#line b4_stype_line "b4_filename"
164 typedef union b4_stype yystype
;],
165 [typedef int yystype
;])
166 # define YYSTYPE yystype
169 /* Copy the second part of user declarations. */
172 #line __oline__ "__ofile__"
173 #ifndef YYLLOC_DEFAULT
174 # define YYLLOC_DEFAULT(Current, Rhs, N) \
175 Current.last_line = Rhs[[N]].last_line; \
176 Current.last_column = Rhs[[N]].last_column;
179 m4_if(b4_locations_flag
, [0], [],
181 typedef struct yyltype
188 # define YYLTYPE yyltype
195 template < typename P
>
201 struct Traits
< b4_name
>
203 typedef b4_uint_type(b4_translate_max
) TokenNumberType
;
204 typedef b4_sint_type(b4_rhs_max
) RhsNumberType
;
205 typedef int StateType
;
206 typedef yystype SemanticType
;
207 typedef b4_ltype LocationType
;
213 class b4_name b4_inherit
217 typedef Traits
< b4_name
>::TokenNumberType TokenNumberType
;
218 typedef Traits
< b4_name
>::RhsNumberType RhsNumberType
;
219 typedef Traits
< b4_name
>::StateType StateType
;
220 typedef Traits
< b4_name
>::SemanticType SemanticType
;
221 typedef Traits
< b4_name
>::LocationType LocationType
;
223 typedef Stack
< StateType
> StateStack
;
224 typedef Stack
< SemanticType
> SemanticStack
;
225 typedef Stack
< LocationType
> LocationStack
;
229 LocationType initlocation
[]b4_param
) :
230 b4_constructor
[]debug_ (debug
),
232 initlocation_ (initlocation
)
234 b4_name (bool debug
[]b4_param
) :
235 b4_constructor
[]debug_ (debug
),
245 virtual int parse ();
249 virtual void lex_ ();
250 virtual void error_ ();
251 virtual void print_ ();
254 StateStack state_stack_
;
255 SemanticStack semantic_stack_
;
256 LocationStack location_stack_
;
259 static const short pact_
[[]];
260 static const short defact_
[[]];
261 static const short pgoto_
[[]];
262 static const short defgoto_
[[]];
263 static const short table_
[[]];
264 static const short check_
[[]];
265 static const b4_uint_type(b4_r1_max
) r1_
[[]];
266 static const b4_uint_type(b4_r2_max
) r2_
[[]];
268 #if YYDEBUG || YYERROR_VERBOSE
269 static const char* const name_
[[]];
272 /* More tables, for debugging. */
274 static const RhsNumberType rhs_
[[]];
275 static const b4_uint_type(b4_prhs_max
) prhs_
[[]];
276 static const b4_uint_type(b4_rline_max
) rline_
[[]];
277 static const b4_uint_type(b4_stos_max
) stos_
[[]];
278 static const short token_number_
[[]];
281 /* Even more tables. */
282 static inline TokenNumberType
translate_ (int token
);
285 static const int eof_
;
286 static const int last_
;
287 static const int flag_
;
288 static const int nnts_
;
289 static const int nsym_
;
290 static const int empty_
;
291 static const int final_
;
292 static const int terror_
;
293 static const int errcode_
;
294 static const int ntokens_
;
295 static const int initdepth_
;
296 static const unsigned user_token_number_max_
;
297 static const TokenNumberType undef_token_
;
306 std::ostream
&cdebug_
;
308 /* Lookahead and lookahead in internal form. */
315 /* Semantic value and location of lookahead token. */
317 LocationType location
;
323 /* Initial location. */
324 LocationType initlocation_
;
328 #endif /* not b4_header_guard */
330 #output "b4_output_prefix[]b4_output_infix[].cc"
333 #include "b4_output_header_name"
335 /* Enable debugging if requested. */
337 # define YYCDEBUG if (debug_) cdebug_
339 # define YYCDEBUG if (0) cdebug_
340 #endif /* !YYDEBUG */
343 yy::b4_name::parse ()
348 /* Initialize stack. */
349 state_stack_
= StateStack (0);
350 semantic_stack_
= SemanticStack (1);
351 location_stack_
= LocationStack (1);
357 location
= initlocation_
;
359 YYCDEBUG
<< "Starting parse" << std::endl
;
363 state_stack_
.push (state_
);
364 YYCDEBUG
<< "Entering state " << state_
<< std::endl
;
370 /* Try to take a decision without lookahead. */
371 n_
= pact_
[[state_]];
375 /* Read a lookahead token. */
376 if (looka_
== empty_
)
378 YYCDEBUG
<< "Reading a token: ";
382 /* Convert token to internal form. */
387 YYCDEBUG
<< "Now at end of input." << std::endl
;
391 ilooka_
= translate_ (looka_
);
395 YYCDEBUG
<< "Next token is " << looka_
396 << " (" << name_
[[ilooka_]];
398 YYCDEBUG
<< ')' << std::endl
;
404 if (n_
< 0 || n_
> last_
|| check_
[[n_]] != ilooka_
)
407 /* Reduce or error. */
426 /* Shift the lookahead token. */
427 YYCDEBUG
<< "Shifting token " << looka_
428 << " (" << name_
[[ilooka_]] << "), ";
430 /* Discard the token being shifted unless it is eof. */
434 semantic_stack_
.push (value
);
435 location_stack_
.push (location
);
437 /* Count tokens shifted since error; after three, turn off error
445 /* Default action. */
447 n_
= defact_
[[state_]];
457 yyval
= semantic_stack_
[[len_
- 1]];
458 yyloc
= location_stack_
[[len_
- 1]];
462 yyval
= semantic_stack_
[[0]];
463 yyloc
= location_stack_
[[0]];
469 YYCDEBUG
<< "Reducing via rule " << n_
- 1
470 << " (line " << rline_
[[n_]] << "), ";
471 for (b4_uint_type(b4_prhs_max
) i
= prhs_
[[n_]];
473 YYCDEBUG
<< name_
[[rhs_
[i
]]] << ' ';
474 YYCDEBUG
<< "-> " << name_
[[r1_
[n_
]]] << std::endl
;
480 Slice
< LocationType
, LocationStack
> slice (location_stack_
, len_
);
481 YYLLOC_DEFAULT (yyloc
, slice
, len_
);
489 /* Line __line__ of __file__. */
490 #line __oline__ "__ofile__"
492 state_stack_
.pop (len_
);
493 semantic_stack_
.pop (len_
);
494 location_stack_
.pop (len_
);
499 YYCDEBUG
<< "state stack now";
500 for (StateStack::ConstIterator i
= state_stack_
.begin ();
501 i
!= state_stack_
.end (); ++i
)
502 YYCDEBUG
<< ' ' << *i
;
503 YYCDEBUG
<< std::endl
;
507 semantic_stack_
.push (yyval
);
508 location_stack_
.push (yyloc
);
510 /* Shift the result of the reduction. */
512 state_
= pgoto_
[[n_
- ntokens_
]] + state_stack_
[[0]];
513 if (state_
>= 0 && state_
<= last_
&& check_
[[state_]] == state_stack_
[[0]])
514 state_
= table_
[[state_]];
516 state_
= defgoto_
[[n_
- ntokens_
]];
519 /* Report and recover from errors. This is very incomplete. */
521 /* If not already recovering from an error, report this error. */
527 n_
= pact_
[[state_]];
528 if (n_
> flag_
&& n_
< last_
)
530 message
= "parse error, unexpected ";
531 message
+= name_
[[ilooka_]];
534 for (int x
= (n_
< 0 ? -n_
: 0); x
< ntokens_
+ nnts_
; ++x
)
535 if (check_
[[x
+ n_
]] == x
)
540 for (int x
= (n_
< 0 ? -n_
: 0); x
< ntokens_
+ nnts_
; ++x
)
541 if (check_
[[x
+ n_
]] == x
)
543 message
+= (!count
++) ? ", expecting " : " or ";
544 message
+= name_
[[x]];
551 message
= "parse error";
556 /* Error raised explicitly by an action. */
560 /* If just tried and failed to reuse lookahead token after an
561 error, discard it. */
563 /* Return failure if at end of input. */
566 YYCDEBUG
<< "Discarding token " << looka_
567 << " (" << name_
[[ilooka_]] << ")." << std::endl
;
571 /* Else will try to reuse lookahead token after shifting the error
578 n_
= pact_
[[state_]];
582 if (0 <= n_
&& n_
<= last_
&& check_
[[n_]] == terror_
)
590 /* Pop the current state because it cannot handle the error token. */
591 if (!state_stack_
.height ())
597 if (stos_
[[state_]] < ntokens_
)
599 YYCDEBUG
<< "Error: popping token "
600 << token_number_
[[stos_
[state_
]]]
601 << " (" << name_
[[stos_
[state_
]]];
603 YYPRINT (stderr
, token_number_
[[stos_
[state_
]]],
604 semantic_stack_
.top ());
606 YYCDEBUG
<< ')' << std::endl
;
610 YYCDEBUG
<< "Error: popping nonterminal ("
611 << name_
[[stos_
[state_
]]] << ')' << std::endl
;
616 state_
= (state_stack_
.pop (), state_stack_
[[0]]);
617 semantic_stack_
.pop ();
618 location_stack_
.pop ();;
623 YYCDEBUG
<< "Error: state stack now";
624 for (StateStack::ConstIterator i
= state_stack_
.begin ();
625 i
!= state_stack_
.end (); ++i
)
626 YYCDEBUG
<< ' ' << *i
;
627 YYCDEBUG
<< std::endl
;
635 YYCDEBUG
<< "Shifting error token, ";
637 semantic_stack_
.push (value
);
638 location_stack_
.push (location
);
656 looka_
= yylex (&value
, &location
);
658 looka_
= yylex (&value
);
662 /* YYPACT[[STATE-NUM]] -- Index in YYTABLE of the portion describing
665 yy::b4_name::pact_
[[]] =
670 /* YYDEFACT[[S]] -- default rule to reduce with in state S when YYTABLE
671 doesn't specify something else to do. Zero means the default is an
674 yy::b4_name::defact_
[[]] =
679 /* YYPGOTO[[NTERM-NUM]]. */
681 yy::b4_name::pgoto_
[[]] =
686 /* YYDEFGOTO[[NTERM-NUM]]. */
688 yy::b4_name::defgoto_
[[]] =
693 /* YYTABLE[[YYPACT[STATE-NUM]]]. What to do in state STATE-NUM. If
694 positive, shift that token. If negative, reduce the rule which
695 number is the opposite. If zero, do what YYDEFACT says. */
697 yy::b4_name::table_
[[]] =
704 yy::b4_name::check_
[[]] =
710 /* STOS_[[STATE-NUM]] -- The (internal number of the) accessing
711 symbol of state STATE-NUM. */
712 const b4_uint_type(b4_stos_max
)
713 yy::b4_name::stos_
[[]] =
718 /* TOKEN_NUMBER_[[YYLEX-NUM]] -- Internal token number corresponding
721 yy::b4_name::token_number_
[[]] =
727 /* YYR1[[YYN]] -- Symbol number of symbol that rule YYN derives. */
728 const b4_uint_type(b4_r1_max
)
729 yy::b4_name::r1_
[[]] =
734 /* YYR2[[YYN]] -- Number of symbols composing right hand side of rule YYN. */
735 const b4_uint_type(b4_r2_max
)
736 yy::b4_name::r2_
[[]] =
741 #if YYDEBUG || YYERROR_VERBOSE
742 /* YYTNAME[[SYMBOL-NUM]] -- String name of the symbol SYMBOL-NUM.
743 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
745 const yy::b4_name::name_
[[]] =
752 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
753 const yy::b4_name::RhsNumberType
754 yy::b4_name::rhs_
[[]] =
759 /* YYPRHS[[YYN]] -- Index of the first RHS symbol of rule number YYN in
761 const b4_uint_type(b4_prhs_max
)
762 yy::b4_name::prhs_
[[]] =
767 /* YYRLINE[[YYN]] -- source line where rule number YYN was defined. */
768 const b4_uint_type(b4_rline_max
)
769 yy::b4_name::rline_
[[]] =
775 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
776 yy::b4_name::TokenNumberType
777 yy::b4_name::translate_ (int token
)
780 const TokenNumberType
785 if ((unsigned) token
<= user_token_number_max_
)
786 return translate_
[[token]];
791 const int yy::b4_name::eof_
= 0;
792 const int yy::b4_name::last_
= b4_last
;
793 const int yy::b4_name::flag_
= b4_flag
;
794 const int yy::b4_name::nnts_
= b4_nnts
;
795 const int yy::b4_name::nsym_
= b4_nsym
;
796 const int yy::b4_name::empty_
= -2;
797 const int yy::b4_name::final_
= b4_final
;
798 const int yy::b4_name::terror_
= 1;
799 const int yy::b4_name::errcode_
= 256;
800 const int yy::b4_name::ntokens_
= b4_ntokens
;
801 const int yy::b4_name::initdepth_
= b4_initdepth
;
803 const unsigned yy::b4_name::user_token_number_max_
= b4_user_token_number_max
;
804 const yy::b4_name::TokenNumberType
yy::b4_name::undef_token_
= b4_undef_token_number
;
811 #ifndef BISON_STACK_HH
812 # define BISON_STACK_HH
818 template < class T
, class S
= std::deque
< T
> >
823 typedef typename
S::iterator Iterator
;
824 typedef typename
S::const_iterator ConstIterator
;
830 Stack (unsigned n
) : seq_ (n
)
836 operator [[]] (unsigned index
)
838 return seq_
[[index]];
843 operator [[]] (unsigned index
) const
845 return seq_
[[index]];
870 inline ConstIterator
begin () const { return seq_
.begin (); }
871 inline ConstIterator
end () const { return seq_
.end (); }
878 template < class T
, class S
= Stack
< T
> >
883 Slice (const S
& stack
,
884 unsigned range
) : stack_ (stack
),
891 operator [[]] (unsigned index
) const
893 return stack_
[[range_
- index
]];
903 #endif // not BISON_STACK_HH
905 #output "location.hh"
908 #ifndef BISON_LOCATION_HH
909 # define BISON_LOCATION_HH
926 #endif // not BISON_LOCATION_HH