]> git.saurik.com Git - bison.git/blob - TODO
Prototype support of %lex-param and %parse-param.
[bison.git] / TODO
1 -*- outline -*-
2
3 * Header guards
4
5 From Franc,ois: should we keep the directory part in the CPP guard?
6
7
8 * readpipe
9
10 It should be replaced to avoid tmp files and to improve portability.
11 Also, as it is it does not call error () when execve fails, and
12 therefore, running M4='m4 --version' bison will silently fail instead
13 of:
14
15 bison: cannot run m4 --version: No such file or directory
16
17 BTW: I would really like to be able to pass arguments to m4...
18
19
20 * URGENT: Documenting C++ output
21 Write a first documentation for C++ output.
22
23
24 * Documentation
25 Before releasing, make sure the documentation refers to the current
26 `output' format.
27
28
29 * Error messages
30 Some are really funky. For instance
31
32 type clash (`%s' `%s') on default action
33
34 is really weird. Revisit them all.
35
36
37 * read_pipe.c
38 This is not portable to DOS for instance. Implement a more portable
39 scheme. Sources of inspiration include GNU diff, and Free Recode.
40
41
42 * value_components_used
43 Was defined but not used: where was it coming from? It can't be to
44 check if %union is used, since the user is free to $<foo>n on her
45 union, doesn't she?
46
47
48 * GLR & C++
49 Currently, the GLR parser cannot compile with a C++ compiler.
50
51
52 * Report
53
54 ** GLR
55 How would Paul like to display the conflicted actions? In particular,
56 what when two reductions are possible on a given lookahead, but one is
57 part of $default. Should we make the two reductions explicit, or just
58 keep $default? See the following point.
59
60 ** Disabled Reductions
61 See `tests/conflicts.at (Defaulted Conflicted Reduction)', and decide
62 what we want to do.
63
64 ** Documentation
65 Extend with error productions. The hard part will probably be finding
66 the right rule so that a single state does not exhibit too many yet
67 undocumented ``features''. Maybe an empty action ought to be
68 presented too. Shall we try to make a single grammar with all these
69 features, or should we have several very small grammars?
70
71 ** --report=conflict-path
72 Provide better assistance for understanding the conflicts by providing
73 a sample text exhibiting the (LALR) ambiguity. See the paper from
74 DeRemer and Penello: they already provide the algorithm.
75
76
77 * Extensions
78
79 ** yyerror, yysymprint interface
80 It should be improved, in particular when using Bison features such as
81 locations, and YYPARSE_PARAMS. For the time being, it is recommended
82 to #define yyerror and yyprint to steal internal variables...
83
84 ** Several %unions
85 I think this is a pleasant (but useless currently) feature, but in the
86 future, I want a means to %include other bits of grammars, and _then_
87 it will be important for the various bits to define their needs in
88 %union.
89
90 When implementing multiple-%union support, bare the following in mind:
91
92 - when --yacc, this must be flagged as an error. Don't make it fatal
93 though.
94
95 - The #line must now appear *inside* the definition of yystype.
96 Something like
97
98 {
99 #line 12 "foo.y"
100 int ival;
101 #line 23 "foo.y"
102 char *sval;
103 }
104
105 * Unit rules
106 Maybe we could expand unit rules, i.e., transform
107
108 exp: arith | bool;
109 arith: exp '+' exp;
110 bool: exp '&' exp;
111
112 into
113
114 exp: exp '+' exp | exp '&' exp;
115
116 when there are no actions. This can significantly speed up some
117 grammars. I can't find the papers. In particular the book `LR
118 parsing: Theory and Practice' is impossible to find, but according to
119 `Parsing Techniques: a Practical Guide', it includes information about
120 this issue. Does anybody have it?
121
122
123
124 * Documentation
125
126 ** History/Bibliography
127 Some history of Bison and some bibliography would be most welcome.
128 Are there any Texinfo standards for bibliography?
129
130
131
132 * Java, Fortran, etc.
133
134
135 ** Java
136
137 There are a couple of proposed outputs:
138
139 - BYACC/J
140 which is based on Byacc.
141 <http://troi.lincom-asg.com/~rjamison/byacc/>
142
143 - Bison Java
144 which is based on Bison.
145 <http://www.goice.co.jp/member/mo/hack-progs/bison-java.html>
146
147 Sébastien Serrurier (serrur_s@epita.fr) is working on this: he is
148 expected to contact the authors, design the output, and implement it
149 into Bison.
150
151
152 * Coding system independence
153 Paul notes:
154
155 Currently Bison assumes 8-bit bytes (i.e. that UCHAR_MAX is
156 255). It also assumes that the 8-bit character encoding is
157 the same for the invocation of 'bison' as it is for the
158 invocation of 'cc', but this is not necessarily true when
159 people run bison on an ASCII host and then use cc on an EBCDIC
160 host. I don't think these topics are worth our time
161 addressing (unless we find a gung-ho volunteer for EBCDIC or
162 PDP-10 ports :-) but they should probably be documented
163 somewhere.
164
165
166
167 * --graph
168 Show reductions. []
169
170 * Broken options ?
171 ** %no-lines [ok]
172 ** %no-parser []
173 ** %pure-parser []
174 ** %token-table []
175 ** Options which could use parse_dquoted_param ().
176 Maybe transferred in lex.c.
177 *** %skeleton [ok]
178 *** %output []
179 *** %file-prefix []
180 *** %name-prefix []
181
182 ** Skeleton strategy. []
183 Must we keep %no-parser?
184 %token-table?
185 *** New skeletons. []
186
187 * src/print_graph.c
188 Find the best graph parameters. []
189
190 * doc/bison.texinfo
191 ** Update
192 informations about ERROR_VERBOSE. []
193 ** Add explanations about
194 skeleton muscles. []
195 %skeleton. []
196
197 * testsuite
198 ** tests/pure-parser.at []
199 New tests.
200
201 * input synclines
202 Some users create their foo.y files, and equip them with #line. Bison
203 should recognize these, and preserve them.
204
205 * BTYacc
206 See if we can integrate backtracking in Bison. Contact the BTYacc
207 maintainers.
208
209 ** Keeping the conflicted actions
210 First, analyze the differences between byacc and btyacc (I'm referring
211 to the executables). Find where the conflicts are preserved.
212
213 ** Compare with the GLR tables
214 See how isomorphic the way BTYacc and the way the GLR adjustments in
215 Bison are compatible. *As much as possible* one should try to use the
216 same implementation in the Bison executables. I insist: it should be
217 very feasible to use the very same conflict tables.
218
219 ** Adjust the skeletons
220 Import the skeletons for C and C++.
221
222 ** Improve the skeletons
223 Have them support yysymprint, yydestruct and so forth.
224
225
226 * Precedence
227
228 ** Partial order
229 It is unfortunate that there is a total order for precedence. It
230 makes it impossible to have modular precedence information. We should
231 move to partial orders (sounds like series/parallel orders to me).
232
233 This will be possible with a Bison parser for the grammar, as it will
234 make it much easier to extend the grammar.
235
236 ** Correlation b/w precedence and associativity
237 Also, I fail to understand why we have to assign the same
238 associativity to operators with the same precedence. For instance,
239 why can't I decide that the precedence of * and / is the same, but the
240 latter is nonassoc?
241
242 If there is really no profound motivation, we should find a new syntax
243 to allow specifying this.
244
245 ** RR conflicts
246 See if we can use precedence between rules to solve RR conflicts. See
247 what POSIX says.
248
249
250 * $undefined
251 From Hans:
252 - If the Bison generated parser experiences an undefined number in the
253 character range, that character is written out in diagnostic messages, an
254 addition to the $undefined value.
255
256 Suggest: Change the name $undefined to undefined; looks better in outputs.
257
258
259 * Default Action
260 From Hans:
261 - For use with my C++ parser, I transported the "switch (yyn)" statement
262 that Bison writes to the bison.simple skeleton file. This way, I can remove
263 the current default rule $$ = $1 implementation, which causes a double
264 assignment to $$ which may not be OK under C++, replacing it with a
265 "default:" part within the switch statement.
266
267 Note that the default rule $$ = $1, when typed, is perfectly OK under C,
268 but in the C++ implementation I made, this rule is different from
269 $<type_name>$ = $<type_name>1. I therefore think that one should implement
270 a Bison option where every typed default rule is explicitly written out
271 (same typed ruled can of course be grouped together).
272
273 Note: Robert Anisko handles this. He knows how to do it.
274
275
276 * Warnings
277 It would be nice to have warning support. See how Autoconf handles
278 them, it is fairly well described there. It would be very nice to
279 implement this in such a way that other programs could use
280 lib/warnings.[ch].
281
282 Don't work on this without first announcing you do, as I already have
283 thought about it, and know many of the components that can be used to
284 implement it.
285
286
287 * Pre and post actions.
288 From: Florian Krohm <florian@edamail.fishkill.ibm.com>
289 Subject: YYACT_EPILOGUE
290 To: bug-bison@gnu.org
291 X-Sent: 1 week, 4 days, 14 hours, 38 minutes, 11 seconds ago
292
293 The other day I had the need for explicitly building the parse tree. I
294 used %locations for that and defined YYLLOC_DEFAULT to call a function
295 that returns the tree node for the production. Easy. But I also needed
296 to assign the S-attribute to the tree node. That cannot be done in
297 YYLLOC_DEFAULT, because it is invoked before the action is executed.
298 The way I solved this was to define a macro YYACT_EPILOGUE that would
299 be invoked after the action. For reasons of symmetry I also added
300 YYACT_PROLOGUE. Although I had no use for that I can envision how it
301 might come in handy for debugging purposes.
302 All is needed is to add
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
310 at the proper place to bison.simple. Ditto for YYACT_PROLOGUE.
311
312 I was wondering what you think about adding YYACT_PROLOGUE/EPILOGUE
313 to bison. If you're interested, I'll work on a patch.
314
315 * Move to Graphviz
316 Well, VCG seems really dead. Move to Graphviz instead. Also, equip
317 the parser with a means to create the (visual) parse tree.
318
319 -----
320
321 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
322
323 This file is part of GNU Bison.
324
325 GNU Bison is free software; you can redistribute it and/or modify
326 it under the terms of the GNU General Public License as published by
327 the Free Software Foundation; either version 2, or (at your option)
328 any later version.
329
330 GNU Bison is distributed in the hope that it will be useful,
331 but WITHOUT ANY WARRANTY; without even the implied warranty of
332 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
333 GNU General Public License for more details.
334
335 You should have received a copy of the GNU General Public License
336 along with Bison; see the file COPYING. If not, write to
337 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
338 Boston, MA 02111-1307, USA.