1 # C++ skeleton for Bison
3 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
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 3 of the License, or
8 # (at your option) any later version.
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.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
23 # b4_symbol_variant(YYTYPE, YYVAL, ACTION, [ARGS])
24 # ------------------------------------------------
25 # Run some ACTION ("build", or "destroy") on YYVAL of symbol type
27 m4_define([b4_symbol_variant],
28 [m4_pushdef([b4_dollar_dollar],
29 [$2.$3< $][3 >(m4_shift3($@))])dnl
32 b4_type_foreach([b4_type_action_])[]dnl
36 m4_popdef([b4_dollar_dollar])dnl
40 # _b4_char_sizeof_counter
41 # -----------------------
42 # A counter used by _b4_char_sizeof_dummy to create fresh symbols.
43 m4_define([_b4_char_sizeof_counter],
46 # _b4_char_sizeof_dummy
47 # ---------------------
48 # At each call return a new C++ identifier.
49 m4_define([_b4_char_sizeof_dummy],
50 [m4_define([_b4_char_sizeof_counter], m4_incr(_b4_char_sizeof_counter))dnl
51 dummy[]_b4_char_sizeof_counter])
54 # b4_char_sizeof(SYMBOL-NUMS)
55 # ---------------------------
56 # To be mapped on the list of type names to produce:
58 # char dummy1[sizeof(type_name_1)];
59 # char dummy2[sizeof(type_name_2)];
61 # for defined type names.
62 m4_define([b4_char_sizeof],
63 [b4_symbol_if([$1], [has_type],
65 m4_map([ b4_symbol_tag_comment], [$@])dnl
66 char _b4_char_sizeof_dummy@{sizeof([b4_symbol([$1], [type])])@};
72 # The needed includes for variants support.
73 m4_define([b4_variant_includes],
74 [b4_parse_assert_if([[#include <typeinfo>]])[
77 # define YYASSERT assert
84 m4_define([b4_variant_define],
85 [[ /// A char[S] buffer to store and retrieve objects.
87 /// Sort of a variant, but does not keep track of the nature
88 /// of the stored data, since that knowledge is available
89 /// via the current state.
94 typedef variant<S> self_type;
96 /// Empty construction.
97 variant ()]b4_parse_assert_if([
101 /// Construct and fill.
102 template <typename T>
103 variant (const T& t)]b4_parse_assert_if([
104 : tname (typeid (T).name ())])[
106 YYASSERT (sizeof (T) <= S);
107 new (buffer.raw) T (t);
110 /// Destruction, allowed only if empty.
112 {]b4_parse_assert_if([
116 /// Instantiate an empty \a T in here.
117 template <typename T>
120 {]b4_parse_assert_if([
122 YYASSERT (sizeof (T) <= S);
123 tname = typeid (T).name ();])[
124 return *new (buffer.raw) T;
127 /// Instantiate a \a T in here from \a t.
128 template <typename T>
131 {]b4_parse_assert_if([
133 YYASSERT (sizeof (T) <= S);
134 tname = typeid (T).name ();])[
135 return *new (buffer.raw) T (t);
138 /// Accessor to a built \a T.
139 template <typename T>
142 {]b4_parse_assert_if([
143 YYASSERT (tname == typeid (T).name ());
144 YYASSERT (sizeof (T) <= S);])[
145 return reinterpret_cast<T&> (buffer.raw);
148 /// Const accessor to a built \a T (for %printer).
149 template <typename T>
152 {]b4_parse_assert_if([
153 YYASSERT (tname == typeid (T).name ());
154 YYASSERT (sizeof (T) <= S);])[
155 return reinterpret_cast<const T&> (buffer.raw);
158 /// Swap the content with \a other, of same type.
160 /// Both variants must be built beforehand, because swapping the actual
161 /// data requires reading it (with as()), and this is not possible on
162 /// unconstructed variants: it would require some dynamic testing, which
163 /// should not be the variant's responsability.
164 /// Swapping between built and (possibly) non-built is done with
165 /// variant::move ().
166 template <typename T>
168 swap (self_type& other)
169 {]b4_parse_assert_if([
171 YYASSERT (tname == other.tname);])[
172 std::swap (as<T>(), other.as<T>());
175 /// Move the content of \a other to this.
177 /// Destroys \a other.
178 template <typename T>
180 move (self_type& other)
181 {]b4_parse_assert_if([
182 YYASSERT (!tname);])[
188 /// Copy the content of \a other to this.
189 template <typename T>
191 copy (const self_type& other)
193 build<T> (other.as<T> ());
196 /// Destroy the stored \a T.
197 template <typename T>
201 as<T> ().~T ();]b4_parse_assert_if([
206 /// Prohibit blind copies.
207 self_type& operator=(const self_type&);
208 variant (const self_type&);
210 /// A buffer large enough to store any of the semantic values.
211 /// Long double is chosen as it has the strongest alignment
215 long double align_me;
217 } buffer;]b4_parse_assert_if([
219 /// Whether the content is built: if defined, the name of the stored type.
220 const char* tname;])[
225 ## -------------------------- ##
226 ## Adjustments for variants. ##
227 ## -------------------------- ##
230 # b4_semantic_type_declare
231 # ------------------------
232 # Declare semantic_type.
233 m4_define([b4_semantic_type_declare],
234 [ /// An auxiliary type to compute the largest semantic type.
236 {]b4_type_foreach([b4_char_sizeof])[};
238 /// Symbol semantic values.
239 typedef variant<sizeof(union_type)> semantic_type;dnl
243 # How the semantic value is extracted when using variants.
245 # b4_symbol_value(VAL, [TYPE])
246 # ----------------------------
247 m4_define([b4_symbol_value],
252 # b4_symbol_value_template(VAL, [TYPE])
253 # -------------------------------------
254 # Same as b4_symbol_value, but used in a template method.
255 m4_define([b4_symbol_value_template],
257 [$1.template as< $2 >()],
267 # b4_symbol_constructor_declare_(SYMBOL-NUMBER)
268 # ---------------------------------------------
269 # Declare the overloaded version of make_symbol for the (common) type of
270 # these SYMBOL-NUMBERS. Use at class-level.
271 m4_define([b4_symbol_constructor_declare_],
272 [b4_symbol_if([$1], [is_token], [b4_symbol_if([$1], [has_id],
275 make_[]b4_symbol_([$1], [id]) (dnl
276 b4_join(b4_symbol_if([$1], [has_type],
277 [const b4_symbol([$1], [type])& v]),
278 b4_locations_if([const location_type& l])));
283 # b4_symbol_constructor_declare
284 # -----------------------------
285 # Declare symbol constructors for all the value types.
286 # Use at class-level.
287 m4_define([b4_symbol_constructor_declare],
288 [ // Symbol constructors declarations.
289 b4_symbol_foreach([b4_symbol_constructor_declare_])])
293 # b4_symbol_constructor_define_(SYMBOL-NUMBER)
294 # --------------------------------------------
295 # Define symbol constructor for this SYMBOL-NUMBER.
296 m4_define([b4_symbol_constructor_define_],
297 [b4_symbol_if([$1], [is_token], [b4_symbol_if([$1], [has_id],
298 [ b4_parser_class_name::symbol_type
299 b4_parser_class_name::make_[]b4_symbol_([$1], [id]) (dnl
300 b4_join(b4_symbol_if([$1], [has_type],
301 [const b4_symbol([$1], [type])& v]),
302 b4_locations_if([const location_type& l])))
304 return symbol_type (b4_join([token::b4_symbol([$1], [id])],
305 b4_symbol_if([$1], [has_type], [v]),
306 b4_locations_if([l])));
313 # b4_basic_symbol_constructor_declare
314 # ----------------------------------
315 # Generate a constructor declaration for basic_symbol from given type.
316 m4_define([b4_basic_symbol_constructor_declare],
318 basic_symbol (]b4_join(
319 [typename Base::kind_type t],
320 b4_symbol_if([$1], [has_type], const b4_symbol([$1], [type])[ v]),
321 b4_locations_if([const location_type& l]))[);
324 # b4_basic_symbol_constructor_define
325 # ----------------------------------
326 # Generate a constructor implementation for basic_symbol from given type.
327 m4_define([b4_basic_symbol_constructor_define],
329 template <typename Base>
330 ]b4_parser_class_name[::basic_symbol<Base>::basic_symbol (]b4_join(
331 [typename Base::kind_type t],
332 b4_symbol_if([$1], [has_type], const b4_symbol([$1], [type])[ v]),
333 b4_locations_if([const location_type& l]))[)
335 , value (]b4_symbol_if([$1], [has_type], [v])[)]b4_locations_if([
340 # b4_symbol_constructor_define
341 # ----------------------------
342 # Define the overloaded versions of make_symbol for all the value types.
343 m4_define([b4_symbol_constructor_define],
344 [ // Implementation of make_symbol for each symbol type.
345 b4_symbol_foreach([b4_symbol_constructor_define_])])