]> git.saurik.com Git - bison.git/blame - TODO
Merge branch 'maint'
[bison.git] / TODO
CommitLineData
ff1b7a13 1* Short term
4323e0da
AD
2** scan-code.l
3Avoid variables for format strings, as then GCC cannot check them.
4show_sub_messages should call show_sub_message.
5
d27c5e65
AD
6** m4 names
7b4_shared_declarations is no longer what it is. Make it
8b4_parser_declaration for instance.
9
93549bcd
AD
10** glr.cc: %defines
11it should not be mandatory.
12
5de5b987
AD
13** stack.hh
14Get rid of it. The original idea is nice, but actually it makes
15the code harder to follow, and uselessly different from the other
16skeletons.
17
ff1b7a13
AD
18** Variable names.
19What should we name `variant' and `lex_symbol'?
20
ff1b7a13
AD
21** Get rid of fake #lines [Bison: ...]
22Possibly as simple as checking whether the column number is nonnegative.
23
24I have seen messages like the following from GCC.
25
26<built-in>:0: fatal error: opening dependency file .deps/libltdl/argz.Tpo: No such file or directory
27
28
29** Discuss about %printer/%destroy in the case of C++.
30It would be very nice to provide the symbol classes with an operator<<
31and a destructor. Unfortunately the syntax we have chosen for
32%destroy and %printer make them hard to reuse. For instance, the user
33is invited to write something like
34
35 %printer { debug_stream() << $$; } <my_type>;
36
37which is hard to reuse elsewhere since it wants to use
38"debug_stream()" to find the stream to use. The same applies to
39%destroy: we told the user she could use the members of the Parser
40class in the printers/destructors, which is not good for an operator<<
41since it is no longer bound to a particular parser, it's just a
42(standalone symbol).
43
44** Rename LR0.cc
45as lr0.cc, why upper case?
46
47** bench several bisons.
48Enhance bench.pl with %b to run different bisons.
49
50* Various
ff1b7a13
AD
51** YYERRCODE
52Defined to 256, but not used, not documented. Probably the token
53number for the error token, which POSIX wants to be 256, but which
54Bison might renumber if the user used number 256. Keep fix and doc?
55Throw away?
56
57Also, why don't we output the token name of the error token in the
58output? It is explicitly skipped:
59
60 /* Skip error token and tokens without identifier. */
61 if (sym != errtoken && id)
62
63Of course there are issues with name spaces, but if we disable we have
64something which seems to be more simpler and more consistent instead
65of the special case YYERRCODE.
66
67 enum yytokentype {
68 error = 256,
69 // ...
70 };
71
72
73We could (should?) also treat the case of the undef_token, which is
74numbered 257 for yylex, and 2 internal. Both appear for instance in
75toknum:
76
77 const unsigned short int
78 parser::yytoken_number_[] =
79 {
80 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
81
82while here
83
84 enum yytokentype {
85 TOK_EOF = 0,
86 TOK_EQ = 258,
87
88so both 256 and 257 are "mysterious".
89
90 const char*
91 const parser::yytname_[] =
92 {
93 "\"end of command\"", "error", "$undefined", "\"=\"", "\"break\"",
94
95
ff1b7a13
AD
96** yychar == yyempty_
97The code in yyerrlab reads:
98
99 if (yychar <= YYEOF)
100 {
101 /* Return failure if at end of input. */
102 if (yychar == YYEOF)
103 YYABORT;
104 }
105
106There are only two yychar that can be <= YYEOF: YYEMPTY and YYEOF.
107But I can't produce the situation where yychar is YYEMPTY here, is it
108really possible? The test suite does not exercise this case.
109
110This shows that it would be interesting to manage to install skeleton
111coverage analysis to the test suite.
112
113** Table definitions
114It should be very easy to factor the definition of the various tables,
115including the separation bw declaration and definition. See for
116instance b4_table_define in lalr1.cc. This way, we could even factor
117C vs. C++ definitions.
118
119* From lalr1.cc to yacc.c
120** Single stack
121Merging the three stacks in lalr1.cc simplified the code, prompted for
122other improvements and also made it faster (probably because memory
123management is performed once instead of three times). I suggest that
124we do the same in yacc.c.
125
126** yysyntax_error
127The code bw glr.c and yacc.c is really alike, we can certainly factor
128some parts.
416bd7a9 129
3c146b5e 130
2ab9a04f 131* Report
ec3bc396 132
ff1b7a13
AD
133** Figures
134Some statistics about the grammar and the parser would be useful,
135especially when asking the user to send some information about the
136grammars she is working on. We should probably also include some
137information about the variables (I'm not sure for instance we even
138specify what LR variant was used).
139
2ab9a04f
AD
140** GLR
141How would Paul like to display the conflicted actions? In particular,
742e4900 142what when two reductions are possible on a given lookahead token, but one is
2ab9a04f
AD
143part of $default. Should we make the two reductions explicit, or just
144keep $default? See the following point.
d7215705 145
2ab9a04f
AD
146** Disabled Reductions
147See `tests/conflicts.at (Defaulted Conflicted Reduction)', and decide
148what we want to do.
d7215705 149
2ab9a04f 150** Documentation
bc933ef1
AD
151Extend with error productions. The hard part will probably be finding
152the right rule so that a single state does not exhibit too many yet
153undocumented ``features''. Maybe an empty action ought to be
154presented too. Shall we try to make a single grammar with all these
155features, or should we have several very small grammars?
ec3bc396 156
2ab9a04f
AD
157** --report=conflict-path
158Provide better assistance for understanding the conflicts by providing
159a sample text exhibiting the (LALR) ambiguity. See the paper from
160DeRemer and Penello: they already provide the algorithm.
161
38eb7751
PE
162** Statically check for potential ambiguities in GLR grammars. See
163<http://www.i3s.unice.fr/~schmitz/papers.html#expamb> for an approach.
164
ec3bc396 165
948be909 166* Extensions
2ab9a04f 167
959e5f51
AD
168** $-1
169We should find a means to provide an access to values deep in the
170stack. For instance, instead of
171
ff1b7a13 172 baz: qux { $$ = $<foo>-1 + $<bar>0 + $1; }
959e5f51
AD
173
174we should be able to have:
175
176 foo($foo) bar($bar) baz($bar): qux($qux) { $baz = $foo + $bar + $qux; }
177
178Or something like this.
179
f0e48240
AD
180** %if and the like
181It should be possible to have %if/%else/%endif. The implementation is
182not clear: should it be lexical or syntactic. Vadim Maslow thinks it
183must be in the scanner: we must not parse what is in a switched off
184part of %if. Akim Demaille thinks it should be in the parser, so as
185to avoid falling into another CPP mistake.
186
ca752c34
AD
187** XML Output
188There are couple of available extensions of Bison targeting some XML
189output. Some day we should consider including them. One issue is
190that they seem to be quite orthogonal to the parsing technique, and
191seem to depend mostly on the possibility to have some code triggered
192for each reduction. As a matter of fact, such hooks could also be
193used to generate the yydebug traces. Some generic scheme probably
194exists in there.
195
196XML output for GNU Bison and gcc
197 http://www.cs.may.ie/~jpower/Research/bisonXML/
198
199XML output for GNU Bison
200 http://yaxx.sourceforge.net/
f0e48240 201
fa770c86
AD
202* Unit rules
203Maybe we could expand unit rules, i.e., transform
204
ff1b7a13
AD
205 exp: arith | bool;
206 arith: exp '+' exp;
207 bool: exp '&' exp;
fa770c86
AD
208
209into
210
ff1b7a13 211 exp: exp '+' exp | exp '&' exp;
fa770c86
AD
212
213when there are no actions. This can significantly speed up some
d7215705
AD
214grammars. I can't find the papers. In particular the book `LR
215parsing: Theory and Practice' is impossible to find, but according to
216`Parsing Techniques: a Practical Guide', it includes information about
217this issue. Does anybody have it?
fa770c86 218
51dec47b 219
51dec47b 220
2ab9a04f 221* Documentation
51dec47b 222
2ab9a04f
AD
223** History/Bibliography
224Some history of Bison and some bibliography would be most welcome.
225Are there any Texinfo standards for bibliography?
226
2ab9a04f
AD
227* Coding system independence
228Paul notes:
229
ff1b7a13
AD
230 Currently Bison assumes 8-bit bytes (i.e. that UCHAR_MAX is
231 255). It also assumes that the 8-bit character encoding is
232 the same for the invocation of 'bison' as it is for the
233 invocation of 'cc', but this is not necessarily true when
234 people run bison on an ASCII host and then use cc on an EBCDIC
235 host. I don't think these topics are worth our time
236 addressing (unless we find a gung-ho volunteer for EBCDIC or
237 PDP-10 ports :-) but they should probably be documented
238 somewhere.
fa770c86 239
ff1b7a13
AD
240 More importantly, Bison does not currently allow NUL bytes in
241 tokens, either via escapes (e.g., "x\0y") or via a NUL byte in
242 the source code. This should get fixed.
aef1ffd5 243
bcb05e75 244* --graph
45567173 245Show reductions.
bcb05e75 246
704a47c4 247* Broken options ?
45567173
AD
248** %token-table
249** Skeleton strategy
728c4be2 250Must we keep %token-table?
416bd7a9 251
0e95c1dd 252* Precedence
2ab9a04f
AD
253
254** Partial order
0e95c1dd
AD
255It is unfortunate that there is a total order for precedence. It
256makes it impossible to have modular precedence information. We should
2ab9a04f 257move to partial orders (sounds like series/parallel orders to me).
0e95c1dd 258
2ab9a04f
AD
259** RR conflicts
260See if we can use precedence between rules to solve RR conflicts. See
261what POSIX says.
262
263
69991a58
AD
264* $undefined
265From Hans:
266- If the Bison generated parser experiences an undefined number in the
267character range, that character is written out in diagnostic messages, an
268addition to the $undefined value.
269
270Suggest: Change the name $undefined to undefined; looks better in outputs.
271
2ab9a04f 272
69991a58
AD
273* Default Action
274From Hans:
275- For use with my C++ parser, I transported the "switch (yyn)" statement
276that Bison writes to the bison.simple skeleton file. This way, I can remove
277the current default rule $$ = $1 implementation, which causes a double
278assignment to $$ which may not be OK under C++, replacing it with a
279"default:" part within the switch statement.
280
281Note that the default rule $$ = $1, when typed, is perfectly OK under C,
282but in the C++ implementation I made, this rule is different from
283$<type_name>$ = $<type_name>1. I therefore think that one should implement
284a Bison option where every typed default rule is explicitly written out
285(same typed ruled can of course be grouped together).
286
287* Pre and post actions.
288From: Florian Krohm <florian@edamail.fishkill.ibm.com>
289Subject: YYACT_EPILOGUE
290To: bug-bison@gnu.org
291X-Sent: 1 week, 4 days, 14 hours, 38 minutes, 11 seconds ago
292
293The other day I had the need for explicitly building the parse tree. I
294used %locations for that and defined YYLLOC_DEFAULT to call a function
295that returns the tree node for the production. Easy. But I also needed
296to assign the S-attribute to the tree node. That cannot be done in
297YYLLOC_DEFAULT, because it is invoked before the action is executed.
298The way I solved this was to define a macro YYACT_EPILOGUE that would
299be invoked after the action. For reasons of symmetry I also added
300YYACT_PROLOGUE. Although I had no use for that I can envision how it
301might come in handy for debugging purposes.
76551463 302All is needed is to add
69991a58
AD
303
304#if YYLSP_NEEDED
305 YYACT_EPILOGUE (yyval, (yyvsp - yylen), yylen, yyloc, (yylsp - yylen));
306#else
307 YYACT_EPILOGUE (yyval, (yyvsp - yylen), yylen);
308#endif
309
310at the proper place to bison.simple. Ditto for YYACT_PROLOGUE.
311
312I was wondering what you think about adding YYACT_PROLOGUE/EPILOGUE
313to bison. If you're interested, I'll work on a patch.
314
35fe0834
PE
315* Better graphics
316Equip the parser with a means to create the (visual) parse tree.
d7215705 317
ff1b7a13
AD
318* Complaint submessage indentation.
319We already have an implementation that works fairly well for named
320reference messages, but it would be nice to use it consistently for all
321submessages from Bison. For example, the "previous definition"
322submessage or the list of correct values for a %define variable might
323look better with indentation.
324
325However, the current implementation makes the assumption that the
326location printed on the first line is not usually much shorter than the
327locations printed on the submessage lines that follow. That assumption
328may not hold true as often for some kinds of submessages especially if
329we ever support multiple grammar files.
330
331Here's a proposal for how a new implementation might look:
332
333 http://lists.gnu.org/archive/html/bison-patches/2009-09/msg00086.html
334
335
336Local Variables:
337mode: outline
338coding: utf-8
339End:
340
f294a2c2
AD
341-----
342
c932d613 343Copyright (C) 2001-2004, 2006, 2008-2012 Free Software Foundation, Inc.
f294a2c2 344
51cbef6f 345This file is part of Bison, the GNU Compiler Compiler.
f294a2c2 346
f16b0819 347This program is free software: you can redistribute it and/or modify
f294a2c2 348it under the terms of the GNU General Public License as published by
f16b0819
PE
349the Free Software Foundation, either version 3 of the License, or
350(at your option) any later version.
f294a2c2 351
f16b0819 352This program is distributed in the hope that it will be useful,
f294a2c2
AD
353but WITHOUT ANY WARRANTY; without even the implied warranty of
354MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
355GNU General Public License for more details.
356
357You should have received a copy of the GNU General Public License
f16b0819 358along with this program. If not, see <http://www.gnu.org/licenses/>.