1 m4_divert(-1) -*- C
-*-
3 # C++ GLR skeleton for Bison
4 # Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
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.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 # We require a pure interface using locations.
22 m4_define([b4_location_flag
], [1])
23 m4_define([b4_pure
], [1])
25 m4_include(b4_pkgdatadir
/[c
++.m4
])
26 m4_include(b4_pkgdatadir
/[location
.cc
])
29 # b4_yysymprint_generate(FUNCTION-DECLARATOR)
30 # -------------------------------------------
31 # Generate the "yysymprint" function, which declaration is issued using
32 # FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
33 # or "b4_c_function_def" for K&R.
34 m4_define([b4_yysymprint_generate
],
35 [b4_c_ansi_function_decl([yyerror
],
37 [[yy::b4_parser_class_name::location_type
*yylocationp
], [yylocationp
]],
39 [[const char* msg
], [msg
]])[
41 /*--------------------------------.
42 | Print this symbol on YYOUTPUT. |
43 `--------------------------------*/
47 [[FILE *yyoutput
], [yyoutput
]],
48 [[int yytype
], [yytype
]],
49 [[const yy::b4_parser_class_name::semantic_type
*yyvaluep
],
52 [[const yy::b4_parser_class_name::location_type
*yylocationp
],
54 m4_ifset([b4_parse_param
], [, b4_parse_param
]))[
57 yyparser
.yysymprint_ (yytype
, yyvaluep
]b4_location_if([, yylocationp
])[);
61 m4_prepend([b4_epilogue
],
67 ]b4_c_ansi_function_def([yyerror
],
69 [[yy::b4_parser_class_name::location_type
*yylocationp
], [yylocationp
]],
71 [[const char* msg
], [msg
]])[
73 yyparser
.error (*yylocationp
, msg
);
79 ]dnl Restore the actual parser params
.
80 m4_popdef([b4_parse_param
])dnl
82 /// Build a parser object.
83 ]b4_parser_class_name::b4_parser_class_name
[ (]b4_parse_param_decl
[)
84 : yycdebug_ (&std::cerr
)]b4_parse_param_cons
[
88 ]b4_parser_class_name::~b4_parser_class_name
[ ()
93 ]b4_parser_class_name
[::parse ()
95 return ::yyparse (*this]b4_user_args
[);
100 /*--------------------------------.
101 | Print this symbol on YYOUTPUT. |
102 `--------------------------------*/
105 ]b4_parser_class_name
[::yysymprint_ (int yytype
,
106 const semantic_type
* yyvaluep
, const location_type
* yylocationp
)
108 /* Pacify ``unused variable'' warnings. */
111 /* Backward compatibility, but should be removed eventually. */
112 std::ostream
& cdebug_
= *yycdebug_
;
115 *yycdebug_
<< (yytype
< YYNTOKENS
? "token" : "nterm")
116 << ' ' << yytname
[yytype
] << " ("
117 << *yylocationp
<< ": ";
120 ]m4_map([b4_symbol_actions
], m4_defn([b4_symbol_printers
]))dnl
128 ]b4_parser_class_name
[::debug_stream () const
134 ]b4_parser_class_name
[::set_debug_stream (std::ostream
& o
)
140 ]b4_parser_class_name
[::debug_level_type
141 ]b4_parser_class_name
[::debug_level () const
147 ]b4_parser_class_name
[::set_debug_level (debug_level_type l
)
152 #endif /* ! YYDEBUG */
158 # Let glr.c believe that the user arguments are only the parser itself.
159 m4_pushdef([b4_parse_param
],
160 [[yy::b4_parser_class_name
& yyparser
, yyparser
],]
161 m4_defn([b4_parse_param
]))
162 m4_include(b4_pkgdatadir
/[glr
.c
])
163 @output @output_header_name@
164 b4_copyright([C
++ Skeleton parser
for GLALR(1) parsing with Bison
],
165 [2002, 2003, 2004, 2005])[
166 #ifndef PARSER_HEADER_H
167 # define PARSER_HEADER_H
172 /* Using locations. */
173 #define YYLSP_NEEDED ]b4_locations_flag[
181 /* Copy the first part of user declarations. */
184 ]/* Line __line__ of glr.cc. */
185 b4_syncline([@oline@
], [@ofile@
])[
188 #include "location.hh"
190 /* Enabling traces. */
192 # define YYDEBUG ]b4_debug[
195 /* Enabling verbose error messages. */
196 #ifdef YYERROR_VERBOSE
197 # undef YYERROR_VERBOSE
198 # define YYERROR_VERBOSE 1
200 # define YYERROR_VERBOSE ]b4_error_verbose[
203 /* Enabling the token table. */
204 #ifndef YYTOKEN_TABLE
205 # define YYTOKEN_TABLE ]b4_token_table[
209 /* Copy the second part of user declarations. */
212 ]/* Line __line__ of glr.cc. */
214 b4_syncline([@oline@
], [@ofile@
])[
217 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
218 If N is 0, then set CURRENT to the empty location which ends
219 the previous symbol: RHS[0] (always defined). */
221 #ifndef YYLLOC_DEFAULT
222 # define YYLLOC_DEFAULT(Current, Rhs, N) \
226 (Current).begin = YYRHSLOC (Rhs, 1).begin; \
227 (Current).end = YYRHSLOC (Rhs, N).end; \
231 (Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \
233 while (/*CONSTCOND*/ 0)
239 class ]b4_parser_class_name
[
242 /// Symbol semantic values.
243 #if ! defined (YYSTYPE)
244 ]m4_ifdef([b4_stype
],
245 [b4_syncline([b4_stype_line
], [b4_file_name
])
246 union semantic_type b4_stype
;
247 /* Line __line__ of lalr1.cc. */
248 b4_syncline([@oline@
], [@ofile@
])],
249 [ typedef int semantic_type
;])[
251 typedef YYSTYPE semantic_type
;
253 /// Symbol locations.
254 typedef ]b4_location_type
[ location_type
;
258 ]b4_token_enums(b4_tokens
)[
261 /// Build a parser object.
262 ]b4_parser_class_name
[ (]b4_parse_param_decl
[);
263 virtual ~]b4_parser_class_name
[ ();
266 /// \returns 0 iff parsing succeeded.
267 virtual int parse ();
269 /// The current debugging stream.
270 std::ostream
& debug_stream () const;
271 /// Set the current debugging stream.
272 void set_debug_stream (std::ostream
&);
274 /// Type for debugging levels.
275 typedef int debug_level_type
;
276 /// The current debugging level.
277 debug_level_type
debug_level () const;
278 /// Set the current debugging level.
279 void set_debug_level (debug_level_type l
);
284 /// Report a syntax error.
285 /// \param loc where the syntax error is found.
286 /// \param msg a description of the syntax error.
287 virtual void error (const location_type
& loc
, const std::string
& msg
);
292 /// \brief Report a symbol on the debug stream.
293 /// \param yytype The token type.
294 /// \param yyvaluep Its semantic value.
295 /// \param yylocationp Its location.
296 virtual void yysymprint_ (int yytype
,
297 const semantic_type
* yyvaluep
,
298 const location_type
* yylocationp
);
300 #endif /* ! YYDEBUG */
303 /// \brief Reclaim the memory associated to a symbol.
304 /// \param yymsg Why this token is reclaimed.
305 /// \param yytype The symbol type.
306 /// \param yyvaluep Its semantic value.
307 /// \param yylocationp Its location.
308 inline void yydestruct_ (const char* yymsg
,
310 semantic_type
* yyvaluep
,
311 location_type
* yylocationp
);
314 std::ostream
* yycdebug_
;
315 ]b4_parse_param_vars
[
318 ]dnl Redirections
for glr
.c
.
319 [#define YYSTYPE yy::]b4_parser_class_name[::semantic_type
320 #define YYLTYPE yy::]b4_parser_class_name[::location_type
324 #endif /* ! defined PARSER_HEADER_H */]