]> git.saurik.com Git - bison.git/blame_incremental - data/bison.m4
tests: c++: fix symbol lookup issue
[bison.git] / data / bison.m4
... / ...
CommitLineData
1 -*- Autoconf -*-
2
3# Language-independent M4 Macros for Bison.
4
5# Copyright (C) 2002, 2004-2015 Free Software Foundation, Inc.
6
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20
21## ---------------- ##
22## Identification. ##
23## ---------------- ##
24
25# b4_copyright(TITLE, [YEARS])
26# ----------------------------
27# If YEARS are not defined, use b4_copyright_years.
28m4_define([b4_copyright],
29[b4_comment([A Bison parser, made by GNU Bison b4_version.])
30
31b4_comment([$1
32
33]m4_dquote(m4_text_wrap([Copyright (C)
34]m4_ifval([$2], [[$2]], [m4_defn([b4_copyright_years])])[
35Free Software Foundation, Inc.]))[
36
37This program is free software: you can redistribute it and/or modify
38it under the terms of the GNU General Public License as published by
39the Free Software Foundation, either version 3 of the License, or
40(at your option) any later version.
41
42This program is distributed in the hope that it will be useful,
43but WITHOUT ANY WARRANTY; without even the implied warranty of
44MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
45GNU General Public License for more details.
46
47You should have received a copy of the GNU General Public License
48along with this program. If not, see <http://www.gnu.org/licenses/>.])
49
50b4_comment([As a special exception, you may create a larger work that contains
51part or all of the Bison parser skeleton and distribute that work
52under terms of your choice, so long as that work isn't itself a
53parser generator using the skeleton or a modified version thereof
54as a parser skeleton. Alternatively, if you modify or redistribute
55the parser skeleton itself, you may (at your option) remove this
56special exception, which will cause the skeleton and the resulting
57Bison output files to be licensed under the GNU General Public
58License without this special exception.
59
60This special exception was added by the Free Software Foundation in
61version 2.2 of Bison.])])
62
63
64## -------- ##
65## Output. ##
66## -------- ##
67
68# b4_output_begin(FILE)
69# ---------------------
70# Enable output, i.e., send to diversion 0, expand after "#", and
71# generate the tag to output into FILE. Must be followed by EOL.
72m4_define([b4_output_begin],
73[m4_changecom()
74m4_divert_push(0)dnl
75@output(m4_unquote([$1])@)@dnl
76])
77
78
79# b4_output_end()
80# ---------------
81# Output nothing, restore # as comment character (no expansions after #).
82m4_define([b4_output_end],
83[m4_divert_pop(0)
84m4_changecom([#])
85])
86
87
88# b4_divert_kill(CODE)
89# --------------------
90# Expand CODE for its side effects, discard its output.
91m4_define([b4_divert_kill],
92[m4_divert_text([KILL], [$1])])
93
94
95# b4_define_silent(MACRO, CODE)
96# -----------------------------
97# Same as m4_define, but throw away the expansion of CODE.
98m4_define([b4_define_silent],
99[m4_define([$1], [b4_divert_kill([$2])])])
100
101
102## ---------------- ##
103## Error handling. ##
104## ---------------- ##
105
106# The following error handling macros print error directives that should not
107# become arguments of other macro invocations since they would likely then be
108# mangled. Thus, they print to stdout directly.
109
110# b4_cat(TEXT)
111# ------------
112# Write TEXT to stdout. Precede the final newline with an @ so that it's
113# escaped. For example:
114#
115# b4_cat([[@complain(invalid input@)]])
116m4_define([b4_cat],
117[m4_syscmd([cat <<'_m4eof'
118]m4_bpatsubst(m4_dquote($1), [_m4eof], [_m4@`eof])[@
119_m4eof
120])dnl
121m4_if(m4_sysval, [0], [], [m4_fatal([$0: cannot write to stdout])])])
122
123# b4_error(KIND, START, END, FORMAT, [ARG1], [ARG2], ...)
124# -------------------------------------------------------
125# Write @KIND(START@,END@,FORMAT@,ARG1@,ARG2@,...@) to stdout.
126#
127# For example:
128#
129# b4_error([[complain]], [[input.y:2.3]], [[input.y:5.4]],
130# [[invalid %s]], [[foo]])
131m4_define([b4_error],
132[b4_cat([[@complain][(]$1[@,]$2[@,]$3[@,]$4[]]dnl
133[m4_if([$#], [4], [],
134 [m4_foreach([b4_arg],
135 m4_dquote(m4_shift(m4_shift(m4_shift(m4_shift($@))))),
136 [[@,]b4_arg])])[@)]])])
137
138# b4_warn(FORMAT, [ARG1], [ARG2], ...)
139# ------------------------------------
140# Write @warn(FORMAT@,ARG1@,ARG2@,...@) to stdout.
141#
142# For example:
143#
144# b4_warn([[invalid value for '%s': %s]], [[foo]], [[3]])
145#
146# As a simple test suite, this:
147#
148# m4_divert(-1)
149# m4_define([asdf], [ASDF])
150# m4_define([fsa], [FSA])
151# m4_define([fdsa], [FDSA])
152# b4_warn_at([[[asdf), asdf]]], [[[fsa), fsa]]], [[[fdsa), fdsa]]])
153# b4_warn_at([[asdf), asdf]], [[fsa), fsa]], [[fdsa), fdsa]])
154# b4_warn_at()
155# b4_warn_at(1)
156# b4_warn_at(1, 2)
157#
158# Should produce this without newlines:
159#
160# @warn_at([asdf), asdf]@,@,@,[fsa), fsa]@,[fdsa), fdsa]@)
161# @warn(asdf), asdf@,@,@,fsa), fsa@,fdsa), fdsa@)
162# @warn(@)
163# @warn(1@)
164# @warn(1@,2@)
165m4_define([b4_warn],
166[b4_error([[warn]], [], [], $@)])
167
168# b4_warn_at(START, END, FORMAT, [ARG1], [ARG2], ...)
169# ---------------------------------------------------
170# Write @warn(START@,END@,FORMAT@,ARG1@,ARG2@,...@) to stdout.
171#
172# For example:
173#
174# b4_warn_at([[input.y:2.3]], [[input.y:5.4]], [[invalid %s]], [[foo]])
175m4_define([b4_warn_at],
176[b4_error([[warn]], $@)])
177
178# b4_complain(FORMAT, [ARG1], [ARG2], ...)
179# ----------------------------------------
180# Bounce to b4_complain_at.
181#
182# See b4_warn example.
183m4_define([b4_complain],
184[b4_error([[complain]], [], [], $@)])
185
186# b4_complain_at(START, END, FORMAT, [ARG1], [ARG2], ...)
187# -------------------------------------------------------
188# Write @complain(START@,END@,FORMAT@,ARG1@,ARG2@,...@) to stdout.
189#
190# See b4_warn_at example.
191m4_define([b4_complain_at],
192[b4_error([[complain]], $@)])
193
194# b4_fatal(FORMAT, [ARG1], [ARG2], ...)
195# -------------------------------------
196# Bounce to b4_fatal_at.
197#
198# See b4_warn example.
199m4_define([b4_fatal],
200[b4_error([[fatal]], [], [], $@)dnl
201m4_exit(1)])
202
203# b4_fatal_at(START, END, FORMAT, [ARG1], [ARG2], ...)
204# ----------------------------------------------------
205# Write @fatal(START@,END@,FORMAT@,ARG1@,ARG2@,...@) to stdout and exit.
206#
207# See b4_warn_at example.
208m4_define([b4_fatal_at],
209[b4_error([[fatal]], $@)dnl
210m4_exit(1)])
211
212
213## ------------ ##
214## Data Types. ##
215## ------------ ##
216
217# b4_ints_in(INT1, INT2, LOW, HIGH)
218# ---------------------------------
219# Return 1 iff both INT1 and INT2 are in [LOW, HIGH], 0 otherwise.
220m4_define([b4_ints_in],
221[m4_eval([$3 <= $1 && $1 <= $4 && $3 <= $2 && $2 <= $4])])
222
223
224# b4_subtract(LHS, RHS)
225# ---------------------
226# Evaluate LHS - RHS if they are integer literals, otherwise expand
227# to (LHS) - (RHS).
228m4_define([b4_subtract],
229[m4_bmatch([$1$2], [^[0123456789]*$],
230 [m4_eval([$1 - $2])],
231 [($1) - ($2)])])
232
233# b4_join(ARG1, ...)
234# _b4_join(ARG1, ...)
235# -------------------
236# Join with comma, skipping empty arguments.
237# b4_join calls itself recursively until it sees the first non-empty
238# argument, then calls _b4_join which prepends each non-empty argument
239# with a comma.
240m4_define([b4_join],
241[m4_if([$#$1],
242 [1], [],
243 [m4_ifval([$1],
244 [$1[]_$0(m4_shift($@))],
245 [$0(m4_shift($@))])])])
246
247# _b4_join(ARGS1, ...)
248# --------------------
249m4_define([_b4_join],
250[m4_if([$#$1],
251 [1], [],
252 [m4_ifval([$1], [, $1])[]$0(m4_shift($@))])])
253
254
255
256
257# b4_integral_parser_tables_map(MACRO)
258# -------------------------------------
259# Map MACRO on all the integral tables. MACRO is expected to have
260# the signature MACRO(TABLE-NAME, CONTENT, COMMENT).
261m4_define([b4_integral_parser_tables_map],
262[$1([pact], [b4_pact],
263 [[YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
264STATE-NUM.]])
265
266$1([defact], [b4_defact],
267 [[YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
268Performed when YYTABLE does not specify something else to do. Zero
269means the default is an error.]])
270
271$1([pgoto], [b4_pgoto], [[YYPGOTO[NTERM-NUM].]])
272
273$1([defgoto], [b4_defgoto], [[YYDEFGOTO[NTERM-NUM].]])
274
275$1([table], [b4_table],
276 [[YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
277positive, shift that token. If negative, reduce the rule whose
278number is the opposite. If YYTABLE_NINF, syntax error.]])
279
280$1([check], [b4_check])
281
282$1([stos], [b4_stos],
283 [[YYSTOS[STATE-NUM] -- The (internal number of the) accessing
284symbol of state STATE-NUM.]])
285
286$1([r1], [b4_r1],
287 [[YYR1[YYN] -- Symbol number of symbol that rule YYN derives.]])
288
289$1([r2], [b4_r2],
290 [[YYR2[YYN] -- Number of symbols on the right hand side of rule YYN.]])
291])
292
293
294# b4_parser_tables_declare
295# b4_parser_tables_define
296# ------------------------
297# Define/declare the (deterministic) parser tables.
298m4_define([b4_parser_tables_declare],
299[b4_integral_parser_tables_map([b4_integral_parser_table_declare])])
300
301m4_define([b4_parser_tables_define],
302[b4_integral_parser_tables_map([b4_integral_parser_table_define])])
303
304
305
306## ------------------ ##
307## Decoding options. ##
308## ------------------ ##
309
310# b4_flag_if(FLAG, IF-TRUE, IF-FALSE)
311# -----------------------------------
312# Run IF-TRUE if b4_FLAG_flag is 1, IF-FALSE if FLAG is 0, otherwise fail.
313m4_define([b4_flag_if],
314[m4_case(b4_$1_flag,
315 [0], [$3],
316 [1], [$2],
317 [m4_fatal([invalid $1 value: ]b4_$1_flag)])])
318
319
320# b4_define_flag_if(FLAG)
321# -----------------------
322# Define "b4_FLAG_if(IF-TRUE, IF-FALSE)" that depends on the
323# value of the Boolean FLAG.
324m4_define([b4_define_flag_if],
325[_b4_define_flag_if($[1], $[2], [$1])])
326
327# _b4_define_flag_if($1, $2, FLAG)
328# --------------------------------
329# Work around the impossibility to define macros inside macros,
330# because issuing '[$1]' is not possible in M4. GNU M4 should provide
331# $$1 a la M5/TeX.
332m4_define([_b4_define_flag_if],
333[m4_if([$1$2], $[1]$[2], [],
334 [m4_fatal([$0: Invalid arguments: $@])])dnl
335m4_define([b4_$3_if],
336 [b4_flag_if([$3], [$1], [$2])])])
337
338
339# b4_FLAG_if(IF-TRUE, IF-FALSE)
340# -----------------------------
341# Expand IF-TRUE, if FLAG is true, IF-FALSE otherwise.
342b4_define_flag_if([defines]) # Whether headers are requested.
343b4_define_flag_if([glr]) # Whether a GLR parser is requested.
344b4_define_flag_if([nondeterministic]) # Whether conflicts should be handled.
345b4_define_flag_if([token_table]) # Whether yytoken_table is demanded.
346b4_define_flag_if([yacc]) # Whether POSIX Yacc is emulated.
347
348
349## --------- ##
350## Symbols. ##
351## --------- ##
352
353# In order to unify the handling of the various aspects of symbols
354# (tag, type_name, whether terminal, etc.), bison.exe defines one
355# macro per (token, field), where field can has_id, id, etc.: see
356# src/output.c:prepare_symbols_definitions().
357#
358# The various FIELDS are:
359#
360# - has_id: 0 or 1.
361# Whether the symbol has an id.
362# - id: string
363# If has_id, the id. Guaranteed to be usable as a C identifier.
364# Prefixed by api.token.prefix if defined.
365# - tag: string.
366# A representat of the symbol. Can be 'foo', 'foo.id', '"foo"' etc.
367# - user_number: integer
368# The assigned (external) number as used by yylex.
369# - is_token: 0 or 1
370# Whether this is a terminal symbol.
371# - number: integer
372# The internalized number (used after yytranslate).
373# - has_type: 0, 1
374# Whether has a semantic value.
375# - type_tag: string
376# When api.value.type=union, the generated name for the union member.
377# yytype_INT etc. for symbols that has_id, otherwise yytype_1 etc.
378# - type
379# If it has a semantic value, its type tag, or, if variant are used,
380# its type.
381# In the case of api.value.type=union, type is the real type (e.g. int).
382# - has_printer: 0, 1
383# - printer: string
384# - printer_file: string
385# - printer_line: integer
386# If the symbol has a printer, everything about it.
387# - has_destructor, destructor, destructor_file, destructor_line
388# Likewise.
389#
390# The following macros provide access to these values.
391
392# b4_symbol_(NUM, FIELD)
393# ----------------------
394# Recover a FIELD about symbol #NUM. Thanks to m4_indir, fails if
395# undefined.
396m4_define([b4_symbol_],
397[m4_indir([b4_symbol($1, $2)])])
398
399
400# b4_symbol(NUM, FIELD)
401# ---------------------
402# Recover a FIELD about symbol #NUM. Thanks to m4_indir, fails if
403# undefined. If FIELD = id, prepend the token prefix.
404m4_define([b4_symbol],
405[m4_case([$2],
406 [id], [m4_do([b4_percent_define_get([api.token.prefix])],
407 [b4_symbol_([$1], [id])])],
408 [b4_symbol_($@)])])
409
410
411# b4_symbol_if(NUM, FIELD, IF-TRUE, IF-FALSE)
412# -------------------------------------------
413# If FIELD about symbol #NUM is 1 expand IF-TRUE, if is 0, expand IF-FALSE.
414# Otherwise an error.
415m4_define([b4_symbol_if],
416[m4_case(b4_symbol([$1], [$2]),
417 [1], [$3],
418 [0], [$4],
419 [m4_fatal([$0: field $2 of $1 is not a Boolean:] b4_symbol([$1], [$2]))])])
420
421
422# b4_symbol_tag_comment(SYMBOL-NUM)
423# ---------------------------------
424# Issue a comment giving the tag of symbol NUM.
425m4_define([b4_symbol_tag_comment],
426[b4_comment([b4_symbol([$1], [tag])])
427])
428
429
430# b4_symbol_action_location(SYMBOL-NUM, KIND)
431# -------------------------------------------
432# Report the location of the KIND action as FILE:LINE.
433m4_define([b4_symbol_action_location],
434[b4_symbol([$1], [$2_file]):b4_syncline([b4_symbol([$1], [$2_line])])])
435
436
437# b4_symbol_action(SYMBOL-NUM, KIND)
438# ----------------------------------
439# Run the action KIND (destructor or printer) for SYMBOL-NUM.
440m4_define([b4_symbol_action],
441[b4_symbol_if([$1], [has_$2],
442[b4_dollar_pushdef([(*yyvaluep)],
443 b4_symbol_if([$1], [has_type],
444 [m4_dquote(b4_symbol([$1], [type]))]),
445 [(*yylocationp)])dnl
446 b4_symbol_case_([$1])[]dnl
447b4_syncline([b4_symbol([$1], [$2_line])], ["b4_symbol([$1], [$2_file])"])
448 b4_symbol([$1], [$2])
449b4_syncline([@oline@], [@ofile@])
450 break;
451
452b4_dollar_popdef[]dnl
453])])
454
455
456# b4_symbol_destructor(SYMBOL-NUM)
457# b4_symbol_printer(SYMBOL-NUM)
458# --------------------------------
459m4_define([b4_symbol_destructor], [b4_symbol_action([$1], [destructor])])
460m4_define([b4_symbol_printer], [b4_symbol_action([$1], [printer])])
461
462
463# b4_symbol_actions(KIND, [TYPE = yytype])
464# ----------------------------------------
465# Emit the symbol actions for KIND ("printer" or "destructor").
466# Dispatch on TYPE.
467m4_define([b4_symbol_actions],
468[m4_pushdef([b4_actions_], m4_expand([b4_symbol_foreach([b4_symbol_$1])]))dnl
469m4_ifval(m4_defn([b4_actions_]),
470[switch (m4_default([$2], [yytype]))
471 {
472 m4_defn([b4_actions_])
473 default:
474 break;
475 }dnl
476],
477[YYUSE (m4_default([$2], [yytype]));])dnl
478m4_popdef([b4_actions_])dnl
479])
480
481# b4_symbol_case_(SYMBOL-NUM)
482# ---------------------------
483# Issue a "case NUM" for SYMBOL-NUM.
484m4_define([b4_symbol_case_],
485[case b4_symbol([$1], [number]): b4_symbol_tag_comment([$1])])
486])
487
488
489# b4_symbol_foreach(MACRO)
490# ------------------------
491# Invoke MACRO(SYMBOL-NUM) for each SYMBOL-NUM.
492m4_define([b4_symbol_foreach],
493 [m4_map([$1], m4_defn([b4_symbol_numbers]))])
494
495# b4_symbol_map(MACRO)
496# --------------------
497# Return a list (possibly empty elements) of MACRO invoked for each
498# SYMBOL-NUM.
499m4_define([b4_symbol_map],
500[m4_map_args_sep([$1(], [)], [,], b4_symbol_numbers)])
501
502
503# b4_token_visible_if(NUM, IF-TRUE, IF-FALSE)
504# -------------------------------------------
505# Whether NUM denotes a token that has an exported definition (i.e.,
506# shows in enum yytokentype).
507m4_define([b4_token_visible_if],
508[b4_symbol_if([$1], [is_token],
509 [b4_symbol_if([$1], [has_id], [$2], [$3])],
510 [$3])])
511
512# b4_token_has_definition(NUM)
513# ----------------------------
514# 1 if NUM is visible, nothing otherwise.
515m4_define([b4_token_has_definition],
516[b4_token_visible_if([$1], [1])])
517
518# b4_any_token_visible_if([IF-TRUE], [IF-FALSE])
519# ----------------------------------------------
520# Whether there is a token that needs to be defined.
521m4_define([b4_any_token_visible_if],
522[m4_ifval(b4_symbol_foreach([b4_token_has_definition]),
523 [$1], [$2])])
524
525
526# b4_token_format(FORMAT, NUM)
527# ----------------------------
528m4_define([b4_token_format],
529[b4_token_visible_if([$2],
530[m4_quote(m4_format([$1],
531 [b4_symbol([$2], [id])],
532 [b4_symbol([$2], [user_number])]))])])
533
534
535## ------- ##
536## Types. ##
537## ------- ##
538
539# b4_type_action_(NUMS)
540# ---------------------
541# Run actions for the symbol NUMS that all have the same type-name.
542# Skip NUMS that have no type-name.
543#
544# To specify the action to run, define b4_dollar_dollar(NUMBER,
545# TAG, TYPE).
546m4_define([b4_type_action_],
547[b4_symbol_if([$1], [has_type],
548[m4_map([ b4_symbol_case_], [$@])[]dnl
549 b4_dollar_dollar([b4_symbol([$1], [number])],
550 [b4_symbol([$1], [tag])],
551 [b4_symbol([$1], [type])]);
552 break;
553
554])])
555
556# b4_type_foreach(MACRO)
557# ----------------------
558# Invoke MACRO(SYMBOL-NUMS) for each set of SYMBOL-NUMS for each type set.
559m4_define([b4_type_foreach],
560 [m4_map([$1], m4_defn([b4_type_names]))])
561
562
563
564## ----------- ##
565## Synclines. ##
566## ----------- ##
567
568# b4_basename(NAME)
569# -----------------
570# Similar to POSIX basename; the differences don't matter here.
571# Beware that NAME is not evaluated.
572m4_define([b4_basename],
573[m4_bpatsubst([$1], [^.*/\([^/]+\)/*$], [\1])])
574
575
576# b4_syncline(LINE, FILE)
577# -----------------------
578m4_define([b4_syncline],
579[b4_flag_if([synclines],
580[b4_sync_start([$1], [$2]) b4_sync_end([__line__],
581 [b4_basename(m4_quote(__file__))])[]dnl
582])])
583
584# b4_sync_start(LINE, FILE)
585# -----------------------
586# Syncline for the new place. Typically a directive for the compiler.
587m4_define([b4_sync_start], [b4_comment([$2:$1])])
588
589# b4_sync_end(LINE, FILE)
590# -----------------------
591# Syncline for the current place, which ends. Typically a comment
592# left for the reader.
593m4_define([b4_sync_end], [b4_comment([$2:$1])])
594
595
596# b4_user_code(USER-CODE)
597# -----------------------
598# Emit code from the user, ending it with synclines.
599m4_define([b4_user_code],
600[$1
601b4_syncline([@oline@], [@ofile@])])
602
603
604# b4_define_user_code(MACRO)
605# --------------------------
606# From b4_MACRO, build b4_user_MACRO that includes the synclines.
607m4_define([b4_define_user_code],
608[m4_define([b4_user_$1],
609[b4_user_code([b4_$1])])])
610
611
612# b4_user_actions
613# b4_user_initial_action
614# b4_user_post_prologue
615# b4_user_pre_prologue
616# b4_user_union_members
617# ----------------------
618# Macros that issue user code, ending with synclines.
619b4_define_user_code([actions])
620b4_define_user_code([initial_action])
621b4_define_user_code([post_prologue])
622b4_define_user_code([pre_prologue])
623b4_define_user_code([union_members])
624
625
626# b4_check_user_names(WHAT, USER-LIST, BISON-NAMESPACE)
627# -----------------------------------------------------
628# Complain if any name of type WHAT is used by the user (as recorded in
629# USER-LIST) but is not used by Bison (as recorded by macros in the
630# namespace BISON-NAMESPACE).
631#
632# USER-LIST must expand to a list specifying all user occurrences of all names
633# of type WHAT. Each item in the list must be a triplet specifying one
634# occurrence: name, start boundary, and end boundary. Empty string names are
635# fine. An empty list is fine.
636#
637# For example, to define b4_foo_user_names to be used for USER-LIST with three
638# name occurrences and with correct quoting:
639#
640# m4_define([b4_foo_user_names],
641# [[[[[[bar]], [[parser.y:1.7]], [[parser.y:1.16]]]],
642# [[[[bar]], [[parser.y:5.7]], [[parser.y:5.16]]]],
643# [[[[baz]], [[parser.y:8.7]], [[parser.y:8.16]]]]]])
644#
645# The macro BISON-NAMESPACE(bar) must be defined iff the name bar of type WHAT
646# is used by Bison (in the front-end or in the skeleton). Empty string names
647# are fine, but it would be ugly for Bison to actually use one.
648#
649# For example, to use b4_foo_bison_names for BISON-NAMESPACE and define that
650# the names bar and baz are used by Bison:
651#
652# m4_define([b4_foo_bison_names(bar)])
653# m4_define([b4_foo_bison_names(baz)])
654#
655# To invoke b4_check_user_names with TYPE foo, with USER-LIST
656# b4_foo_user_names, with BISON-NAMESPACE b4_foo_bison_names, and with correct
657# quoting:
658#
659# b4_check_user_names([[foo]], [b4_foo_user_names],
660# [[b4_foo_bison_names]])
661m4_define([b4_check_user_names],
662[m4_foreach([b4_occurrence], $2,
663[m4_pushdef([b4_occurrence], b4_occurrence)dnl
664m4_pushdef([b4_user_name], m4_car(b4_occurrence))dnl
665m4_pushdef([b4_start], m4_car(m4_shift(b4_occurrence)))dnl
666m4_pushdef([b4_end], m4_shift(m4_shift(b4_occurrence)))dnl
667m4_ifndef($3[(]m4_quote(b4_user_name)[)],
668 [b4_complain_at([b4_start], [b4_end],
669 [[%s '%s' is not used]],
670 [$1], [b4_user_name])])[]dnl
671m4_popdef([b4_occurrence])dnl
672m4_popdef([b4_user_name])dnl
673m4_popdef([b4_start])dnl
674m4_popdef([b4_end])dnl
675])])
676
677
678
679## --------------------- ##
680## b4_percent_define_*. ##
681## --------------------- ##
682
683
684# b4_percent_define_use(VARIABLE)
685# -------------------------------
686# Declare that VARIABLE was used.
687m4_define([b4_percent_define_use],
688[m4_define([b4_percent_define_bison_variables(]$1[)])dnl
689])
690
691# b4_percent_define_get(VARIABLE, [DEFAULT])
692# ------------------------------------------
693# Mimic muscle_percent_define_get in ../src/muscle-tab.h. That is, if
694# the %define variable VARIABLE is defined, emit its value. Contrary
695# to its C counterpart, return DEFAULT otherwise. Also, record
696# Bison's usage of VARIABLE by defining
697# b4_percent_define_bison_variables(VARIABLE).
698#
699# For example:
700#
701# b4_percent_define_get([[foo]])
702m4_define([b4_percent_define_get],
703[b4_percent_define_use([$1])dnl
704b4_percent_define_ifdef_([$1],
705 [m4_indir([b4_percent_define(]$1[)])],
706 [$2])])
707
708# b4_percent_define_get_loc(VARIABLE)
709# -----------------------------------
710# Mimic muscle_percent_define_get_loc in ../src/muscle-tab.h exactly. That is,
711# if the %define variable VARIABLE is undefined, complain fatally since that's
712# a Bison or skeleton error. Otherwise, return its definition location in a
713# form approriate for the first two arguments of b4_warn_at, b4_complain_at, or
714# b4_fatal_at. Don't record this as a Bison usage of VARIABLE as there's no
715# reason to suspect that the user-supplied value has yet influenced the output.
716#
717# For example:
718#
719# b4_complain_at(b4_percent_define_get_loc([[foo]]), [[invalid foo]])
720m4_define([b4_percent_define_get_loc],
721[m4_ifdef([b4_percent_define_loc(]$1[)],
722 [m4_pushdef([b4_loc], m4_indir([b4_percent_define_loc(]$1[)]))dnl
723b4_loc[]dnl
724m4_popdef([b4_loc])],
725 [b4_fatal([[$0: undefined %%define variable '%s']], [$1])])])
726
727# b4_percent_define_get_kind(VARIABLE)
728# ------------------------------------
729# Get the kind (code, keyword, string) of VARIABLE, i.e., how its
730# value was defined (braces, not delimiters, quotes).
731#
732# If the %define variable VARIABLE is undefined, complain fatally
733# since that's a Bison or skeleton error. Don't record this as a
734# Bison usage of VARIABLE as there's no reason to suspect that the
735# user-supplied value has yet influenced the output.
736m4_define([b4_percent_define_get_kind],
737[m4_ifdef([b4_percent_define_kind(]$1[)],
738 [m4_indir([b4_percent_define_kind(]$1[)])],
739 [b4_fatal([[$0: undefined %%define variable '%s']], [$1])])])
740
741# b4_percent_define_get_syncline(VARIABLE)
742# ----------------------------------------
743# Mimic muscle_percent_define_get_syncline in ../src/muscle-tab.h exactly.
744# That is, if the %define variable VARIABLE is undefined, complain fatally
745# since that's a Bison or skeleton error. Otherwise, return its definition
746# location as a b4_syncline invocation. Don't record this as a Bison usage of
747# VARIABLE as there's no reason to suspect that the user-supplied value has yet
748# influenced the output.
749#
750# For example:
751#
752# b4_percent_define_get_syncline([[foo]])
753m4_define([b4_percent_define_get_syncline],
754[m4_ifdef([b4_percent_define_syncline(]$1[)],
755 [m4_indir([b4_percent_define_syncline(]$1[)])],
756 [b4_fatal([[$0: undefined %%define variable '%s']], [$1])])])
757
758# b4_percent_define_ifdef_(VARIABLE, IF-TRUE, [IF-FALSE])
759# ------------------------------------------------------
760# If the %define variable VARIABLE is defined, expand IF-TRUE, else expand
761# IF-FALSE. Don't record usage of VARIABLE.
762#
763# For example:
764#
765# b4_percent_define_ifdef_([[foo]], [[it's defined]], [[it's undefined]])
766m4_define([b4_percent_define_ifdef_],
767[m4_ifdef([b4_percent_define(]$1[)],
768 [$2],
769 [$3])])
770
771# b4_percent_define_ifdef(VARIABLE, IF-TRUE, [IF-FALSE])
772# ------------------------------------------------------
773# Mimic muscle_percent_define_ifdef in ../src/muscle-tab.h exactly. That is,
774# if the %define variable VARIABLE is defined, expand IF-TRUE, else expand
775# IF-FALSE. Also, record Bison's usage of VARIABLE by defining
776# b4_percent_define_bison_variables(VARIABLE).
777#
778# For example:
779#
780# b4_percent_define_ifdef([[foo]], [[it's defined]], [[it's undefined]])
781m4_define([b4_percent_define_ifdef],
782[b4_percent_define_ifdef_([$1],
783 [b4_percent_define_use([$1])$2],
784 [$3])])
785
786
787## --------- ##
788## Options. ##
789## --------- ##
790
791
792# b4_percent_define_flag_if(VARIABLE, IF-TRUE, [IF-FALSE])
793# --------------------------------------------------------
794# Mimic muscle_percent_define_flag_if in ../src/muscle-tab.h exactly. That is,
795# if the %define variable VARIABLE is defined to "" or "true", expand IF-TRUE.
796# If it is defined to "false", expand IF-FALSE. Complain if it is undefined
797# (a Bison or skeleton error since the default value should have been set
798# already) or defined to any other value (possibly a user error). Also, record
799# Bison's usage of VARIABLE by defining
800# b4_percent_define_bison_variables(VARIABLE).
801#
802# For example:
803#
804# b4_percent_define_flag_if([[foo]], [[it's true]], [[it's false]])
805m4_define([b4_percent_define_flag_if],
806[b4_percent_define_ifdef([$1],
807 [m4_case(b4_percent_define_get([$1]),
808 [], [$2], [true], [$2], [false], [$3],
809 [m4_expand_once([b4_complain_at(b4_percent_define_get_loc([$1]),
810 [[invalid value for %%define Boolean variable '%s']],
811 [$1])],
812 [[b4_percent_define_flag_if($1)]])])],
813 [b4_fatal([[$0: undefined %%define variable '%s']], [$1])])])
814
815
816# b4_percent_define_default(VARIABLE, DEFAULT, [KIND = keyword])
817# --------------------------------------------------------------
818# Mimic muscle_percent_define_default in ../src/muscle-tab.h exactly. That is,
819# if the %define variable VARIABLE is undefined, set its value to DEFAULT.
820# Don't record this as a Bison usage of VARIABLE as there's no reason to
821# suspect that the value has yet influenced the output.
822#
823# For example:
824#
825# b4_percent_define_default([[foo]], [[default value]])
826m4_define([b4_percent_define_default],
827[b4_percent_define_ifdef_([$1], [],
828 [m4_define([b4_percent_define(]$1[)], [$2])dnl
829 m4_define([b4_percent_define_kind(]$1[)],
830 [m4_default([$3], [keyword])])dnl
831 m4_define([b4_percent_define_loc(]$1[)],
832 [[[[<skeleton default value>:-1.-1]],
833 [[<skeleton default value>:-1.-1]]]])dnl
834 m4_define([b4_percent_define_syncline(]$1[)], [[]])])])
835
836
837# b4_percent_define_if_define(NAME, [VARIABLE = NAME])
838# ----------------------------------------------------
839# Define b4_NAME_if that executes its $1 or $2 depending whether
840# VARIABLE was %defined. The characters '.' and `-' in VARIABLE are mapped
841# to '_'.
842m4_define([b4_percent_define_if_define_],
843[m4_define(m4_bpatsubst([b4_$1_if], [[-.]], [_]),
844 [b4_percent_define_flag_if(m4_default([$2], [$1]),
845 [$3], [$4])])])
846m4_define([b4_percent_define_if_define],
847[b4_percent_define_default([m4_default([$2], [$1])], [[false]])
848b4_percent_define_if_define_([$1], [$2], $[1], $[2])])
849
850
851# b4_percent_define_check_kind(VARIABLE, KIND, [DIAGNOSTIC = complain])
852# ---------------------------------------------------------------------
853m4_define([b4_percent_define_check_kind],
854[b4_percent_define_ifdef_([$1],
855 [m4_if(b4_percent_define_get_kind([$1]), [$2], [],
856 [b4_error([m4_default([$3], [complain])],
857 b4_percent_define_get_loc([$1]),
858 [m4_case([$2],
859 [code], [[%%define variable '%s' requires '{...}' values]],
860 [keyword], [[%%define variable '%s' requires keyword values]],
861 [string], [[%%define variable '%s' requires '"..."' values]])],
862 [$1])])])dnl
863])
864
865
866# b4_percent_define_check_values(VALUES)
867# --------------------------------------
868# Mimic muscle_percent_define_check_values in ../src/muscle-tab.h exactly
869# except that the VALUES structure is more appropriate for M4. That is, VALUES
870# is a list of sublists of strings. For each sublist, the first string is the
871# name of a %define variable, and all remaining strings in that sublist are the
872# valid values for that variable. Complain if such a variable is undefined (a
873# Bison error since the default value should have been set already) or defined
874# to any other value (possibly a user error). Don't record this as a Bison
875# usage of the variable as there's no reason to suspect that the value has yet
876# influenced the output.
877#
878# For example:
879#
880# b4_percent_define_check_values([[[[foo]], [[foo-value1]], [[foo-value2]]]],
881# [[[[bar]], [[bar-value1]]]])
882m4_define([b4_percent_define_check_values],
883[m4_foreach([b4_sublist], m4_quote($@),
884 [_b4_percent_define_check_values(b4_sublist)])])
885
886m4_define([_b4_percent_define_check_values],
887[b4_percent_define_ifdef_([$1],
888 [b4_percent_define_check_kind(]$1[, [keyword], [deprecated])dnl
889 m4_pushdef([b4_good_value], [0])dnl
890 m4_if($#, 1, [],
891 [m4_foreach([b4_value], m4_dquote(m4_shift($@)),
892 [m4_if(m4_indir([b4_percent_define(]$1[)]), b4_value,
893 [m4_define([b4_good_value], [1])])])])dnl
894 m4_if(b4_good_value, [0],
895 [b4_complain_at(b4_percent_define_get_loc([$1]),
896 [[invalid value for %%define variable '%s': '%s']],
897 [$1],
898 m4_dquote(m4_indir([b4_percent_define(]$1[)])))
899 m4_foreach([b4_value], m4_dquote(m4_shift($@)),
900 [b4_error([[note]], b4_percent_define_get_loc([$1]), []
901 [[accepted value: '%s']],
902 m4_dquote(b4_value))])])dnl
903 m4_popdef([b4_good_value])],
904 [b4_fatal([[$0: undefined %%define variable '%s']], [$1])])])
905
906# b4_percent_code_get([QUALIFIER])
907# --------------------------------
908# If any %code blocks for QUALIFIER are defined, emit them beginning with a
909# comment and ending with synclines and a newline. If QUALIFIER is not
910# specified or empty, do this for the unqualified %code blocks. Also, record
911# Bison's usage of QUALIFIER (if specified) by defining
912# b4_percent_code_bison_qualifiers(QUALIFIER).
913#
914# For example, to emit any unqualified %code blocks followed by any %code
915# blocks for the qualifier foo:
916#
917# b4_percent_code_get
918# b4_percent_code_get([[foo]])
919m4_define([b4_percent_code_get],
920[m4_pushdef([b4_macro_name], [[b4_percent_code(]$1[)]])dnl
921m4_ifval([$1], [m4_define([b4_percent_code_bison_qualifiers(]$1[)])])dnl
922m4_ifdef(b4_macro_name,
923[b4_comment([m4_if([$#], [0], [[Unqualified %code]],
924 [["%code ]$1["]])[ blocks.]])
925b4_user_code([m4_indir(b4_macro_name)])
926])dnl
927m4_popdef([b4_macro_name])])
928
929# b4_percent_code_ifdef(QUALIFIER, IF-TRUE, [IF-FALSE])
930# -----------------------------------------------------
931# If any %code blocks for QUALIFIER (or unqualified %code blocks if
932# QUALIFIER is empty) are defined, expand IF-TRUE, else expand IF-FALSE.
933# Also, record Bison's usage of QUALIFIER (if specified) by defining
934# b4_percent_code_bison_qualifiers(QUALIFIER).
935m4_define([b4_percent_code_ifdef],
936[m4_ifdef([b4_percent_code(]$1[)],
937 [m4_ifval([$1], [m4_define([b4_percent_code_bison_qualifiers(]$1[)])])$2],
938 [$3])])
939
940
941## ------------------ ##
942## Common variables. ##
943## ------------------ ##
944
945
946# b4_parse_assert_if([IF-ASSERTIONS-ARE-USED], [IF-NOT])
947# b4_parse_trace_if([IF-DEBUG-TRACES-ARE-ENABLED], [IF-NOT])
948# b4_token_ctor_if([IF-YYLEX-RETURNS-A-TOKEN], [IF-NOT])
949# ----------------------------------------------
950b4_percent_define_if_define([token_ctor], [api.token.constructor])
951b4_percent_define_if_define([locations]) # Whether locations are tracked.
952b4_percent_define_if_define([parse.assert])
953b4_percent_define_if_define([parse.trace])
954
955
956# b4_bison_locations_if([IF-TRUE])
957# --------------------------------
958# Expand IF-TRUE if using locations, and using the default location
959# type.
960m4_define([b4_bison_locations_if],
961[b4_locations_if([b4_percent_define_ifdef([[api.location.type]], [], [$1])])])
962
963
964# b4_error_verbose_if([IF-ERRORS-ARE-VERBOSE], [IF-NOT])
965# ------------------------------------------------------
966# Map %define parse.error "(simple|verbose)" to b4_error_verbose_if and
967# b4_error_verbose_flag.
968b4_percent_define_default([[parse.error]], [[simple]])
969b4_percent_define_check_values([[[[parse.error]],
970 [[simple]], [[verbose]]]])
971m4_define([b4_error_verbose_flag],
972 [m4_case(b4_percent_define_get([[parse.error]]),
973 [simple], [[0]],
974 [verbose], [[1]])])
975b4_define_flag_if([error_verbose])
976
977# yytoken_table is needed to support verbose errors.
978b4_error_verbose_if([m4_define([b4_token_table_flag], [1])])
979
980
981# b4_variant_if([IF-VARIANT-ARE-USED], [IF-NOT])
982# ----------------------------------------------
983b4_percent_define_if_define([variant])
984m4_define([b4_variant_flag], [[0]])
985b4_percent_define_ifdef([[api.value.type]],
986 [m4_case(b4_percent_define_get_kind([[api.value.type]]), [keyword],
987 [m4_case(b4_percent_define_get([[api.value.type]]), [variant],
988 [m4_define([b4_variant_flag], [[1]])])])])
989b4_define_flag_if([variant])
990
991
992## ----------------------------------------------------------- ##
993## After processing the skeletons, check that all the user's ##
994## %define variables and %code qualifiers were used by Bison. ##
995## ----------------------------------------------------------- ##
996
997m4_define([b4_check_user_names_wrap],
998[m4_ifdef([b4_percent_]$1[_user_]$2[s],
999 [b4_check_user_names([[%]$1 $2],
1000 [b4_percent_]$1[_user_]$2[s],
1001 [[b4_percent_]$1[_bison_]$2[s]])])])
1002
1003m4_wrap_lifo([
1004b4_check_user_names_wrap([[define]], [[variable]])
1005b4_check_user_names_wrap([[code]], [[qualifier]])
1006])
1007
1008
1009## ---------------- ##
1010## Default values. ##
1011## ---------------- ##
1012
1013# m4_define_default([b4_lex_param], []) dnl breaks other skeletons
1014m4_define_default([b4_pre_prologue], [])
1015m4_define_default([b4_post_prologue], [])
1016m4_define_default([b4_epilogue], [])
1017m4_define_default([b4_parse_param], [])
1018
1019# The initial column and line.
1020m4_define_default([b4_location_initial_column], [1])
1021m4_define_default([b4_location_initial_line], [1])
1022
1023
1024## --------------- ##
1025## Sanity checks. ##
1026## --------------- ##
1027
1028# api.location.prefix={...} (Java and C++).
1029b4_percent_define_check_kind([api.location.type], [code], [deprecated])
1030
1031# api.position.prefix={...} (Java).
1032b4_percent_define_check_kind([api.position.type], [code], [deprecated])
1033
1034# api.prefix >< %name-prefix.
1035b4_percent_define_check_kind([api.prefix], [code], [deprecated])
1036b4_percent_define_ifdef([api.prefix],
1037[m4_ifdef([b4_prefix],
1038[b4_complain_at(b4_percent_define_get_loc([api.prefix]),
1039 [['%s' and '%s' cannot be used together]],
1040 [%name-prefix],
1041 [%define api.prefix])])])
1042
1043# api.token.prefix={...}
1044# Make it a warning for those who used betas of Bison 3.0.
1045b4_percent_define_check_kind([api.token.prefix], [code], [deprecated])
1046
1047# api.value.type >< %union.
1048b4_percent_define_ifdef([api.value.type],
1049[m4_ifdef([b4_union_members],
1050[b4_complain_at(b4_percent_define_get_loc([api.value.type]),
1051 [['%s' and '%s' cannot be used together]],
1052 [%union],
1053 [%define api.value.type])])])
1054
1055# api.value.type=union >< %yacc.
1056b4_percent_define_ifdef([api.value.type],
1057[m4_if(b4_percent_define_get([api.value.type]), [union],
1058[b4_yacc_if(dnl
1059[b4_complain_at(b4_percent_define_get_loc([api.value.type]),
1060 [['%s' and '%s' cannot be used together]],
1061 [%yacc],
1062 [%define api.value.type "union"])])])])
1063
1064# api.value.union.name.
1065b4_percent_define_check_kind([api.value.union.name], [keyword])