3 # C++ skeleton for Bison
5 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation,
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 m4_include(b4_pkgdatadir/[c.m4])
25 ## ---------------- ##
27 ## ---------------- ##
29 # Default parser class name.
30 b4_percent_define_default([[parser_class_name]], [[parser]])
31 b4_percent_define_default([[location_type]], [[location]])
32 b4_percent_define_default([[filename_type]], [[std::string]])
33 b4_percent_define_default([[namespace]], m4_defn([b4_prefix]))
34 b4_percent_define_default([[global_tokens_and_yystype]], [[false]])
35 b4_percent_define_default([[define_location_comparison]],
36 [m4_if(b4_percent_define_get([[filename_type]]),
37 [std::string], [[true]], [[false]])])
40 # b4_token_enums(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
41 # -----------------------------------------------------
42 # Output the definition of the tokens as enums.
43 m4_define([b4_token_enums],
46 m4_map_sep([ b4_token_enum], [,
53 ## ----------------- ##
54 ## Semantic Values. ##
55 ## ----------------- ##
58 # b4_lhs_value([TYPE])
59 # --------------------
60 # Expansion of $<TYPE>$.
61 m4_define([b4_lhs_value],
62 [(yyval[]m4_ifval([$1], [.$1]))])
65 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
66 # --------------------------------------
67 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
69 m4_define([b4_rhs_value],
70 [(yysemantic_stack_@{($1) - ($2)@}m4_ifval([$3], [.$3]))])
75 m4_define([b4_lhs_location],
79 # b4_rhs_location(RULE-LENGTH, NUM)
80 # ---------------------------------
81 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
83 m4_define([b4_rhs_location],
84 [(yylocation_stack_@{($1) - ($2)@})])
89 # Extra formal arguments of the constructor.
90 # Change the parameter names from "foo" into "foo_yyarg", so that
91 # there is no collision bw the user chosen attribute name, and the
92 # argument name in the constructor.
93 m4_define([b4_parse_param_decl],
94 [m4_ifset([b4_parse_param],
95 [m4_map_sep([b4_parse_param_decl_1], [, ], [b4_parse_param])])])
97 m4_define([b4_parse_param_decl_1],
102 # b4_parse_param_cons
103 # -------------------
104 # Extra initialisations of the constructor.
105 m4_define([b4_parse_param_cons],
106 [m4_ifset([b4_parse_param],
108 b4_cc_constructor_calls(b4_parse_param)])])
109 m4_define([b4_cc_constructor_calls],
110 [m4_map_sep([b4_cc_constructor_call], [,
112 m4_define([b4_cc_constructor_call],
115 # b4_parse_param_vars
116 # -------------------
117 # Extra instance variables.
118 m4_define([b4_parse_param_vars],
119 [m4_ifset([b4_parse_param],
121 /* User arguments. */
122 b4_cc_var_decls(b4_parse_param)])])
123 m4_define([b4_cc_var_decls],
124 [m4_map_sep([b4_cc_var_decl], [
126 m4_define([b4_cc_var_decl],