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