]> git.saurik.com Git - bison.git/blame - TODO
(MUSCLE_TAB_H_): Was misspelled as MUSCLE_TAB_H_.
[bison.git] / TODO
CommitLineData
416bd7a9
MA
1-*- outline -*-
2
3c146b5e
AD
3* Header guards
4
32f0598d 5From Franc,ois: should we keep the directory part in the CPP guard?
3c146b5e
AD
6
7
efea6231
AD
8* URGENT: Documenting C++ output
9Write a first documentation for C++ output.
10
bc933ef1 11
88bce5a2
AD
12* Documentation
13Before releasing, make sure the documentation refers to the current
14`output' format.
15
16
2ab9a04f
AD
17* Error messages
18Some are really funky. For instance
19
20 type clash (`%s' `%s') on default action
21
22is really weird. Revisit them all.
23
2ab9a04f
AD
24
25* read_pipe.c
26This is not portable to DOS for instance. Implement a more portable
27scheme. Sources of inspiration include GNU diff, and Free Recode.
28
bc933ef1 29
3ae2b51f
AD
30* value_components_used
31Was defined but not used: where was it coming from? It can't be to
32check if %union is used, since the user is free to $<foo>n on her
33union, doesn't she?
34
efea6231 35
d43baf71
AD
36* GLR & C++
37Currently, the GLR parser cannot compile with a C++ compiler.
38
39
2ab9a04f 40* Report
ec3bc396 41
2ab9a04f
AD
42** GLR
43How would Paul like to display the conflicted actions? In particular,
44what when two reductions are possible on a given lookahead, but one is
45part of $default. Should we make the two reductions explicit, or just
46keep $default? See the following point.
d7215705 47
2ab9a04f
AD
48** Disabled Reductions
49See `tests/conflicts.at (Defaulted Conflicted Reduction)', and decide
50what we want to do.
d7215705 51
2ab9a04f 52** Documentation
bc933ef1
AD
53Extend with error productions. The hard part will probably be finding
54the right rule so that a single state does not exhibit too many yet
55undocumented ``features''. Maybe an empty action ought to be
56presented too. Shall we try to make a single grammar with all these
57features, or should we have several very small grammars?
ec3bc396 58
2ab9a04f
AD
59** --report=conflict-path
60Provide better assistance for understanding the conflicts by providing
61a sample text exhibiting the (LALR) ambiguity. See the paper from
62DeRemer and Penello: they already provide the algorithm.
63
ec3bc396 64
948be909 65* Extensions
2ab9a04f
AD
66
67** yyerror, yysymprint interface
68It should be improved, in particular when using Bison features such as
69locations, and YYPARSE_PARAMS. For the time being, it is recommended
70to #define yyerror and yyprint to steal internal variables...
71
72** Several %unions
6cbfbcc5
AD
73I think this is a pleasant (but useless currently) feature, but in the
74future, I want a means to %include other bits of grammars, and _then_
75it will be important for the various bits to define their needs in
76%union.
76551463 77
5c0a0514
AD
78When implementing multiple-%union support, bare the following in mind:
79
80- when --yacc, this must be flagged as an error. Don't make it fatal
81 though.
82
83- The #line must now appear *inside* the definition of yystype.
84 Something like
85
86 {
87 #line 12 "foo.y"
88 int ival;
89 #line 23 "foo.y"
90 char *sval;
91 }
92
fa770c86
AD
93* Unit rules
94Maybe we could expand unit rules, i.e., transform
95
96 exp: arith | bool;
97 arith: exp '+' exp;
98 bool: exp '&' exp;
99
100into
101
102 exp: exp '+' exp | exp '&' exp;
103
104when there are no actions. This can significantly speed up some
d7215705
AD
105grammars. I can't find the papers. In particular the book `LR
106parsing: Theory and Practice' is impossible to find, but according to
107`Parsing Techniques: a Practical Guide', it includes information about
108this issue. Does anybody have it?
fa770c86 109
51dec47b 110
51dec47b 111
2ab9a04f 112* Documentation
51dec47b 113
2ab9a04f
AD
114** History/Bibliography
115Some history of Bison and some bibliography would be most welcome.
116Are there any Texinfo standards for bibliography?
117
118
119
948be909
PE
120* Java, Fortran, etc.
121
948be909 122
f414d77d
AD
123** Java
124
125There are a couple of proposed outputs:
126
127- BYACC/J
128 which is based on Byacc.
129 <http://troi.lincom-asg.com/~rjamison/byacc/>
130
131- Bison Java
132 which is based on Bison.
948be909
PE
133 <http://www.goice.co.jp/member/mo/hack-progs/bison-java.html>
134
f414d77d
AD
135