]> git.saurik.com Git - bison.git/blame - data/glr.cc
* data/glr.c: Reformat whitespace with tabs.
[bison.git] / data / glr.cc
CommitLineData
42249483
AD
1m4_divert(-1) -*- C -*-
2
3# C++ GLR skeleton for Bison
4# Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5
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.
10
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.
15
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
19# 02110-1301 USA
20
21# We require a pure interface using locations.
22m4_define([b4_location_flag], [1])
23m4_define([b4_pure], [1])
24
25m4_include(b4_pkgdatadir/[c++.m4])
26m4_include(b4_pkgdatadir/[location.cc])
27
28
c4d497a0
AD
29# b4_yy_symbol_print_generate
30# ---------------------------
31# Bypass the default implementation to generate the "yy_symbol_print"
32# and "yy_symbol_value_print" functions.
33m4_define([b4_yy_symbol_print_generate],
42249483
AD
34[b4_c_ansi_function_decl([yyerror],
35 [static void],
36 [[yy::b4_parser_class_name::location_type *yylocationp], [yylocationp]],
37 b4_parse_param,
38 [[const char* msg], [msg]])[
39
c4d497a0
AD
40/*--------------------.
41| Print this symbol. |
42`--------------------*/
42249483 43
c4d497a0 44]b4_c_ansi_function_def([yy_symbol_print],
42249483 45 [static void],
c4d497a0 46 [[FILE *], []],
42249483
AD
47 [[int yytype], [yytype]],
48 [[const yy::b4_parser_class_name::semantic_type *yyvaluep],
49 [yyvaluep]][]dnl
50b4_location_if([,
51 [[const yy::b4_parser_class_name::location_type *yylocationp],
52 [yylocationp]]])[]dnl
53m4_ifset([b4_parse_param], [, b4_parse_param]))[
54{
613d8952 55]b4_parse_param_use[]dnl
c4d497a0 56[ yyparser.yy_symbol_print_ (yytype, yyvaluep]b4_location_if([, yylocationp])[);
42249483
AD
57}
58]])
59
60m4_prepend([b4_epilogue],
61[[
62/*------------------.
63| Report an error. |
64`------------------*/
65
66]b4_c_ansi_function_def([yyerror],
67 [static void],
68 [[yy::b4_parser_class_name::location_type *yylocationp], [yylocationp]],
69 b4_parse_param,
70 [[const char* msg], [msg]])[
71{
613d8952 72]b4_parse_param_use[]dnl
c4d497a0 73[ yyparser.error (*yylocationp, msg);
42249483
AD
74}
75
76
77namespace yy
78{
79]dnl Restore the actual parser params.
80m4_popdef([b4_parse_param])dnl
81[
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[
85 {
86 }
87
88 ]b4_parser_class_name::~b4_parser_class_name[ ()
89 {
90 }
91
92 int
93 ]b4_parser_class_name[::parse ()
94 {
95 return ::yyparse (*this]b4_user_args[);
96 }
97
98#if YYDEBUG
c4d497a0
AD
99 /*--------------------.
100 | Print this symbol. |
101 `--------------------*/
42249483 102
c4d497a0
AD
103 inline void
104 ]b4_parser_class_name[::yy_symbol_value_print_ (int yytype,
42249483
AD
105 const semantic_type* yyvaluep, const location_type* yylocationp)
106 {
107 /* Pacify ``unused variable'' warnings. */
613d8952
AD
108 YYUSE (yyvaluep);
109 YYUSE (yylocationp);
42249483
AD
110 switch (yytype)
111 {
112 ]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
113[ default:
114 break;
115 }
c4d497a0
AD
116 }
117
118
119 void
120 ]b4_parser_class_name[::yy_symbol_print_ (int yytype,
121 const semantic_type* yyvaluep, const location_type* yylocationp)
122 {
123 *yycdebug_ << (yytype < YYNTOKENS ? "token" : "nterm")
124 << ' ' << yytname[yytype] << " ("
125 << *yylocationp << ": ";
126 yy_symbol_value_print_ (yytype, yyvaluep, yylocationp);
42249483
AD
127 *yycdebug_ << ')';
128 }
129
130 std::ostream&
131 ]b4_parser_class_name[::debug_stream () const
132 {
133 return *yycdebug_;
134 }
135
136 void
137 ]b4_parser_class_name[::set_debug_stream (std::ostream& o)
138 {
139 yycdebug_ = &o;
140 }
141
142
143 ]b4_parser_class_name[::debug_level_type
144 ]b4_parser_class_name[::debug_level () const
145 {
146 return ::yydebug;
147 }
148
149 void
150 ]b4_parser_class_name[::set_debug_level (debug_level_type l)
151 {
152 ::yydebug = l;
153 }
154
155#endif /* ! YYDEBUG */
156
157} // namespace yy
158
159]])
160
161# Let glr.c believe that the user arguments are only the parser itself.
162m4_pushdef([b4_parse_param],
163 [[yy::b4_parser_class_name& yyparser, yyparser],]
164 m4_defn([b4_parse_param]))
165m4_include(b4_pkgdatadir/[glr.c])
166@output @output_header_name@
167b4_copyright([C++ Skeleton parser for GLALR(1) parsing with Bison],
168 [2002, 2003, 2004, 2005])[
af3412cd 169
af3412cd
PE
170/* C++ GLR parser skeleton written by Akim Demaille. */
171
42249483
AD
172#ifndef PARSER_HEADER_H
173# define PARSER_HEADER_H
174
175#include <string>
176#include <iostream>
177
178/* Using locations. */
179#define YYLSP_NEEDED ]b4_locations_flag[
180
181namespace yy
182{
183 class position;
184 class location;
185}
186
187/* Copy the first part of user declarations. */
188]b4_pre_prologue[
189
190]/* Line __line__ of glr.cc. */
191b4_syncline([@oline@], [@ofile@])[
192
193#include "stack.hh"
194#include "location.hh"
195
196/* Enabling traces. */
197#ifndef YYDEBUG
198# define YYDEBUG ]b4_debug[
199#endif
200
201/* Enabling verbose error messages. */
202#ifdef YYERROR_VERBOSE
203# undef YYERROR_VERBOSE
204# define YYERROR_VERBOSE 1
205#else
206# define YYERROR_VERBOSE ]b4_error_verbose[
207#endif
208
209/* Enabling the token table. */
210#ifndef YYTOKEN_TABLE
211# define YYTOKEN_TABLE ]b4_token_table[
212#endif
213
214#if 0
215/* Copy the second part of user declarations. */
216]b4_post_prologue[
217
218]/* Line __line__ of glr.cc. */
219
220b4_syncline([@oline@], [@ofile@])[
221#endif
222
223/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
224 If N is 0, then set CURRENT to the empty location which ends
225 the previous symbol: RHS[0] (always defined). */
226
227#ifndef YYLLOC_DEFAULT
228# define YYLLOC_DEFAULT(Current, Rhs, N) \
229 do \
230 if (N) \
231 { \
232 (Current).begin = YYRHSLOC (Rhs, 1).begin; \
233 (Current).end = YYRHSLOC (Rhs, N).end; \
234 } \
235 else \
236 { \
237 (Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \
238 } \
c4d497a0 239 while (/*CONSTCOND*/ 0)
42249483
AD
240#endif
241
242namespace yy
243{
244 /// A Bison parser.
245 class ]b4_parser_class_name[
246 {
247 public:
248 /// Symbol semantic values.
249#if ! defined (YYSTYPE)
250]m4_ifdef([b4_stype],
251[b4_syncline([b4_stype_line], [b4_file_name])
252 union semantic_type b4_stype;
253/* Line __line__ of lalr1.cc. */
254b4_syncline([@oline@], [@ofile@])],
255[ typedef int semantic_type;])[
256#else
257 typedef YYSTYPE semantic_type;
258#endif
259 /// Symbol locations.
260 typedef ]b4_location_type[ location_type;
261 /// Tokens.
262 struct token
263 {
264 ]b4_token_enums(b4_tokens)[
265 };
266
267 /// Build a parser object.
268 ]b4_parser_class_name[ (]b4_parse_param_decl[);
269 virtual ~]b4_parser_class_name[ ();
270
271 /// Parse.
272 /// \returns 0 iff parsing succeeded.
273 virtual int parse ();
274
275 /// The current debugging stream.
276 std::ostream& debug_stream () const;
277 /// Set the current debugging stream.
278 void set_debug_stream (std::ostream &);
279
280 /// Type for debugging levels.
281 typedef int debug_level_type;
282 /// The current debugging level.
283 debug_level_type debug_level () const;
284 /// Set the current debugging level.
285 void set_debug_level (debug_level_type l);
286
287 private:
288
289 public:
290 /// Report a syntax error.
291 /// \param loc where the syntax error is found.
292 /// \param msg a description of the syntax error.
293 virtual void error (const location_type& loc, const std::string& msg);
294 private:
295
296#if YYDEBUG
297 public:
c4d497a0
AD
298 /// \brief Report a symbol value on the debug stream.
299 /// \param yytype The token type.
300 /// \param yyvaluep Its semantic value.
301 /// \param yylocationp Its location.
302 virtual void yy_symbol_value_print_ (int yytype,
303 const semantic_type* yyvaluep,
304 const location_type* yylocationp);
42249483
AD
305 /// \brief Report a symbol on the debug stream.
306 /// \param yytype The token type.
307 /// \param yyvaluep Its semantic value.
308 /// \param yylocationp Its location.
c4d497a0
AD
309 virtual void yy_symbol_print_ (int yytype,
310 const semantic_type* yyvaluep,
311 const location_type* yylocationp);
42249483
AD
312 private:
313#endif /* ! YYDEBUG */
314
315
316 /// \brief Reclaim the memory associated to a symbol.
317 /// \param yymsg Why this token is reclaimed.
318 /// \param yytype The symbol type.
319 /// \param yyvaluep Its semantic value.
320 /// \param yylocationp Its location.
321 inline void yydestruct_ (const char* yymsg,
322 int yytype,
323 semantic_type* yyvaluep,
324 location_type* yylocationp);
325
326 /* Debugging. */
327 std::ostream* yycdebug_;
328]b4_parse_param_vars[
329 };
330
331]dnl Redirections for glr.c.
332[#define YYSTYPE yy::]b4_parser_class_name[::semantic_type
333#define YYLTYPE yy::]b4_parser_class_name[::location_type
334
335}
336
337#endif /* ! defined PARSER_HEADER_H */]