]> git.saurik.com Git - bison.git/blame - TODO
* src/output.c (output_skeleton): Be sure to allocate enough room
[bison.git] / TODO
CommitLineData
416bd7a9
MA
1-*- outline -*-
2
ec3bc396
AD
3* documentation
4Explain $axiom (and maybe change its name: BTYacc names it goal).
5Complete the glossary (item, axiom, ?).
6
7* report documentation
8Extend with error. The hard part will probably be finding the right
9rule so that a single state does not exhibit to many yet undocumented
10``features''. Maybe an empty action ought to be presented too. Shall
11we try to make a single grammar with all these features, or should we
12have several very small grammars?
13
14* documentation
15Some history of Bison and some bibliography would be most welcome.
16Are there any Texinfo standards for bibliography?
17
6cbfbcc5
AD
18* Several %unions
19I think this is a pleasant (but useless currently) feature, but in the
20future, I want a means to %include other bits of grammars, and _then_
21it will be important for the various bits to define their needs in
22%union.
76551463 23
5c0a0514
AD
24When implementing multiple-%union support, bare the following in mind:
25
26- when --yacc, this must be flagged as an error. Don't make it fatal
27 though.
28
29- The #line must now appear *inside* the definition of yystype.
30 Something like
31
32 {
33 #line 12 "foo.y"
34 int ival;
35 #line 23 "foo.y"
36 char *sval;
37 }
38
ec3bc396
AD
39* --report=conflict-path
40Provide better assistance for understanding the conflicts by providing
41a sample text exhibiting the (LALR) ambiguity.
308a2f76 42
eaff5ee3 43* Coding system independence
4358321a 44Paul notes:
eaff5ee3
AD
45
46 Currently Bison assumes 8-bit bytes (i.e. that UCHAR_MAX is
47 255). It also assumes that the 8-bit character encoding is
48 the same for the invocation of 'bison' as it is for the
49 invocation of 'cc', but this is not necessarily true when
50 people run bison on an ASCII host and then use cc on an EBCDIC
51 host. I don't think these topics are worth our time
52 addressing (unless we find a gung-ho volunteer for EBCDIC or
53 PDP-10 ports :-) but they should probably be documented
54 somewhere.
55
8b3ba7ff
AD
56* Output directory
57Akim:
58
59| I consider this to be a bug in bison:
60|
61| /tmp % mkdir src
62| /tmp % cp ~/src/bison/tests/calc.y src
63| /tmp % mkdir build && cd build
64| /tmp/build % bison ../src/calc.y
65| /tmp/build % cd ..
66| /tmp % ls -l build src
67| build:
68| total 0
69|
70| src:
71| total 32
72| -rw-r--r-- 1 akim lrde 27553 oct 2 16:31 calc.tab.c
73| -rw-r--r-- 1 akim lrde 3335 oct 2 16:31 calc.y
74|
75|
76| Would it be safe to change this behavior to something more reasonable?
77| Do you think some people depend upon this?
78
79Jim:
80
81Is it that behavior documented?
82If so, then it's probably not reasonable to change it.
83I've Cc'd the automake list, because some of automake's
84rules use bison through $(YACC) -- though I'll bet they
85all use it in yacc-compatible mode.
86
87Pavel:
88
89Hello, Jim and others!
90
91> Is it that behavior documented?
92> If so, then it's probably not reasonable to change it.
93> I've Cc'd the automake list, because some of automake's
94> rules use bison through $(YACC) -- though I'll bet they
95> all use it in yacc-compatible mode.
96
97Yes, Automake currently used bison in Automake-compatible mode, but it
98would be fair for Automake to switch to the native mode as long as the
99processed files are distributed and "missing" emulates bison.
100
101In any case, the makefiles should specify the output file explicitly
102instead of relying on weird defaults.
103
104> | src:
105> | total 32
106> | -rw-r--r-- 1 akim lrde 27553 oct 2 16:31 calc.tab.c
107> | -rw-r--r-- 1 akim lrde 3335 oct 2 16:31 calc.y
108
109This is not _that_ ugly as it seems - with Automake you want to put
110sources where they belong - to the source directory.
111
112> | This is not _that_ ugly as it seems - with Automake you want to put
113> | sources where they belong - to the source directory.
114>
115> The difference source/build you are referring to is based on Automake
116> concepts. They have no sense at all for tools such as bison or gcc
117> etc. They have input and output. I do not want them to try to grasp
118> source/build. I want them to behave uniformly: output *here*.
119
120I realize that.
121
122It's unfortunate that the native mode of Bison behaves in a less uniform
123way than the yacc mode. I agree with your point. Bison maintainters may
124want to fix it along with the documentation.
125
126
fa770c86
AD
127* Unit rules
128Maybe we could expand unit rules, i.e., transform
129
130 exp: arith | bool;
131 arith: exp '+' exp;
132 bool: exp '&' exp;
133
134into
135
136 exp: exp '+' exp | exp '&' exp;
137
138when there are no actions. This can significantly speed up some
139grammars.
140
51dec47b
AD
141* Stupid error messages
142An example shows it easily:
143
144src/bison/tests % ./testsuite -k calc,location,error-verbose -l
145GNU Bison 1.49a test suite test groups:
146
147 NUM: FILENAME:LINE TEST-GROUP-NAME
148 KEYWORDS
149
150 51: calc.at:440 Calculator --locations --yyerror-verbose
151 52: calc.at:442 Calculator --defines --locations --name-prefix=calc --verbose --yacc --yyerror-verbose
152 54: calc.at:445 Calculator --debug --defines --locations --name-prefix=calc --verbose --yacc --yyerror-verbose
153src/bison/tests % ./testsuite 51 -d
154## --------------------------- ##
155## GNU Bison 1.49a test suite. ##
156## --------------------------- ##
157 51: calc.at:440 ok
158## ---------------------------- ##
159## All 1 tests were successful. ##
160## ---------------------------- ##
161src/bison/tests % cd ./testsuite.dir/51
162tests/testsuite.dir/51 % echo "()" | ./calc
1631.2-1.3: parse error, unexpected ')', expecting error or "number" or '-' or '('
fa770c86 164
01c56de4
AD
165* yyerror, yyprint interface
166It should be improved, in particular when using Bison features such as
167locations, and YYPARSE_PARAMS. For the time being, it is recommended
168to #define yyerror and yyprint to steal internal variables...
169
fa770c86
AD
170* read_pipe.c
171This is not portable to DOS for instance. Implement a more portable
172scheme. Sources of inspiration include GNU diff, and Free Recode.
173
aef1ffd5
AD
174* Memory leaks in the generator
175A round of memory leak clean ups would be most welcome. Dmalloc,
176Checker GCC, Electric Fence, or Valgrind: you chose your tool.
177
178* Memory leaks in the parser
179The same applies to the generated parsers. In particular, this is
180critical for user data: when aborting a parsing, when handling the
181error token etc., we often throw away yylval without giving a chance
182of cleaning it up to the user.
183
bcb05e75
MA
184* --graph
185Show reductions. []
186
704a47c4 187* Broken options ?
c3995d99 188** %no-lines [ok]
04a76783 189** %no-parser []
fbbf9b3b 190** %pure-parser []
04a76783
MA
191** %token-table []
192** Options which could use parse_dquoted_param ().
193Maybe transfered in lex.c.
194*** %skeleton [ok]
195*** %output []
196*** %file-prefix []
197*** %name-prefix []
ec93a213 198
fbbf9b3b 199** Skeleton strategy. []
c3a8cbaa
MA
200Must we keep %no-parser?
201 %token-table?
fbbf9b3b 202*** New skeletons. []
416bd7a9 203
c111e171 204* src/print_graph.c
31b53af2 205Find the best graph parameters. []
63c2d5de
MA
206
207* doc/bison.texinfo
1a4648ff 208** Update
c3a8cbaa 209informations about ERROR_VERBOSE. []
1a4648ff 210** Add explainations about
c3a8cbaa
MA
211skeleton muscles. []
212%skeleton. []
eeeb962b 213
704a47c4 214* testsuite
c3a8cbaa
MA
215** tests/pure-parser.at []
216New tests.
0f8d586a
AD
217
218* Debugging parsers
219
220From Greg McGary:
221
222akim demaille <akim.demaille@epita.fr> writes:
223
224> With great pleasure! Nonetheless, things which are debatable
225> (or not, but just `big') should be discuss in `public': something
226> like help- or bug-bison@gnu.org is just fine. Jesse and I are there,
227> but there is also Jim and some other people.
228
229I have no idea whether it qualifies as big or controversial, so I'll
230just summarize for you. I proposed this change years ago and was
231surprised that it was met with utter indifference!
232
233This debug feature is for the programs/grammars one develops with
234bison, not for debugging bison itself. I find that the YYDEBUG
235output comes in a very inconvenient format for my purposes.
236When debugging gcc, for instance, what I want is to see a trace of
237the sequence of reductions and the line#s for the semantic actions
238so I can follow what's happening. Single-step in gdb doesn't cut it
239because to move from one semantic action to the next takes you through
240lots of internal machinery of the parser, which is uninteresting.
241
242The change I made was to the format of the debug output, so that it
243comes out in the format of C error messages, digestible by emacs
244compile mode, like so:
245
246grammar.y:1234: foo: bar(0x123456) baz(0x345678)
247
248where "foo: bar baz" is the reduction rule, whose semantic action
249appears on line 1234 of the bison grammar file grammar.y. The hex
250numbers on the rhs tokens are the parse-stack values associated with
251those tokens. Of course, yytype might be something totally
252incompatible with that representation, but for the most part, yytype
253values are single words (scalars or pointers). In the case of gcc,
254they're most often pointers to tree nodes. Come to think of it, the
255right thing to do is to make the printing of stack values be
256user-definable. It would also be useful to include the filename &
257line# of the file being parsed, but the main filename & line# should
258continue to be that of grammar.y
259
260Anyway, this feature has saved my life on numerous occasions. The way
261I customarily use it is to first run bison with the traces on, isolate
262the sequence of reductions that interests me, put those traces in a
263buffer and force it into compile-mode, then visit each of those lines
264in the grammar and set breakpoints with C-x SPACE. Then, I can run
265again under the control of gdb and stop at each semantic action.
266With the hex addresses of tree nodes, I can inspect the values
267associated with any rhs token.
268
269You like?
cd6a695e
AD
270
271* input synclines
272Some users create their foo.y files, and equip them with #line. Bison
273should recognize these, and preserve them.
0e95c1dd
AD
274
275* BTYacc
276See if we can integrate backtracking in Bison. Contact the BTYacc
277maintainers.
278
279* Automaton report
280Display more clearly the lookaheads for each item.
281
282* RR conflicts
283See if we can use precedence between rules to solve RR conflicts. See
284what POSIX says.
285
286* Precedence
287It is unfortunate that there is a total order for precedence. It
288makes it impossible to have modular precedence information. We should
289move to partial orders.
290
3c9160d9
AD
291This will be possible with a Bison parser for the grammar, as it will
292make it much easier to extend the grammar.
293
0e95c1dd 294* Parsing grammars
3c9160d9 295Rewrite the reader in Flex/Bison. There will be delicate parts, in
9306c70c
AD
296particular, expect the scanner to be hard to write. Many interesting
297features cannot be implemented without such a new reader.
f294a2c2 298
20c37f21
AD
299* Presentation of the report file
300From: "Baum, Nathan I" <s0009525@chelt.ac.uk>
301Subject: Token Alias Bug
302To: "'bug-bison@gnu.org'" <bug-bison@gnu.org>
303
304I've also noticed something, that whilst not *wrong*, is inconvienient: I
305use the verbose mode to help find the causes of unresolved shift/reduce
306conflicts. However, this mode insists on starting the .output file with a
307list of *resolved* conflicts, something I find quite useless. Might it be
308possible to define a -v mode, and a -vv mode -- Where the -vv mode shows
309everything, but the -v mode only tells you what you need for examining
310conflicts? (Or, perhaps, a "*** This state has N conflicts ***" marker above
311each state with conflicts.)
312
69991a58
AD
313* $undefined
314From Hans:
315- If the Bison generated parser experiences an undefined number in the
316character range, that character is written out in diagnostic messages, an
317addition to the $undefined value.
318
319Suggest: Change the name $undefined to undefined; looks better in outputs.
320
321* Default Action
322From Hans:
323- For use with my C++ parser, I transported the "switch (yyn)" statement
324that Bison writes to the bison.simple skeleton file. This way, I can remove
325the current default rule $$ = $1 implementation, which causes a double
326assignment to $$ which may not be OK under C++, replacing it with a
327"default:" part within the switch statement.
328
329Note that the default rule $$ = $1, when typed, is perfectly OK under C,
330but in the C++ implementation I made, this rule is different from
331$<type_name>$ = $<type_name>1. I therefore think that one should implement
332a Bison option where every typed default rule is explicitly written out
333(same typed ruled can of course be grouped together).
334
3c9160d9
AD
335Note: Robert Anisko handles this. He knows how to do it.
336
337* Documenting C++ output
338Write a first documentation for C++ output.
339
0164db68
AD
340* Warnings
341It would be nice to have warning support. See how Autoconf handles
342them, it is fairly well described there. It would be very nice to
343implement this in such a way that other programs could use
344lib/warnings.[ch].
345
9306c70c
AD
346Don't work on this without first announcing you do, as I already have
347thought about it, and know many of the components that can be used to
348implement it.
349
69991a58
AD
350* Pre and post actions.
351From: Florian Krohm <florian@edamail.fishkill.ibm.com>
352Subject: YYACT_EPILOGUE
353To: bug-bison@gnu.org
354X-Sent: 1 week, 4 days, 14 hours, 38 minutes, 11 seconds ago
355
356The other day I had the need for explicitly building the parse tree. I
357used %locations for that and defined YYLLOC_DEFAULT to call a function
358that returns the tree node for the production. Easy. But I also needed
359to assign the S-attribute to the tree node. That cannot be done in
360YYLLOC_DEFAULT, because it is invoked before the action is executed.
361The way I solved this was to define a macro YYACT_EPILOGUE that would
362be invoked after the action. For reasons of symmetry I also added
363YYACT_PROLOGUE. Although I had no use for that I can envision how it
364might come in handy for debugging purposes.
76551463 365All is needed is to add
69991a58
AD
366
367#if YYLSP_NEEDED
368 YYACT_EPILOGUE (yyval, (yyvsp - yylen), yylen, yyloc, (yylsp - yylen));
369#else
370 YYACT_EPILOGUE (yyval, (yyvsp - yylen), yylen);
371#endif
372
373at the proper place to bison.simple. Ditto for YYACT_PROLOGUE.
374
375I was wondering what you think about adding YYACT_PROLOGUE/EPILOGUE
376to bison. If you're interested, I'll work on a patch.
377
f294a2c2
AD
378-----
379
380Copyright (C) 2001, 2002 Free Software Foundation, Inc.
381
382This file is part of GNU Autoconf.
383
384GNU Autoconf is free software; you can redistribute it and/or modify
385it under the terms of the GNU General Public License as published by
386the Free Software Foundation; either version 2, or (at your option)
387any later version.
388
389GNU Autoconf is distributed in the hope that it will be useful,
390but WITHOUT ANY WARRANTY; without even the implied warranty of
391MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
392GNU General Public License for more details.
393
394You should have received a copy of the GNU General Public License
395along with autoconf; see the file COPYING. If not, write to
396the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
397Boston, MA 02111-1307, USA.