mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-19 09:13:04 +00:00
Regen.
* src/parse-gram.h, src/parse-gram.c: Regen.
This commit is contained in:
33
ChangeLog
33
ChangeLog
@@ -1,3 +1,8 @@
|
|||||||
|
2008-11-15 Akim Demaille <demaille@gostai.com>
|
||||||
|
|
||||||
|
Regen.
|
||||||
|
* src/parse-gram.h, src/parse-gram.h: Regen.
|
||||||
|
|
||||||
2008-11-15 Akim Demaille <demaille@gostai.com>
|
2008-11-15 Akim Demaille <demaille@gostai.com>
|
||||||
|
|
||||||
Remove src/Makefile.am.
|
Remove src/Makefile.am.
|
||||||
@@ -47,7 +52,7 @@
|
|||||||
Remove examples/local.mk.
|
Remove examples/local.mk.
|
||||||
examples/calc++/Makefile.am might be interesting to keep as is, since
|
examples/calc++/Makefile.am might be interesting to keep as is, since
|
||||||
it is an example in itself.
|
it is an example in itself.
|
||||||
|
|
||||||
* examples/Makefile.am: Rename as...
|
* examples/Makefile.am: Rename as...
|
||||||
* examples/local.mk: this.
|
* examples/local.mk: this.
|
||||||
Adjust.
|
Adjust.
|
||||||
@@ -58,7 +63,7 @@
|
|||||||
Remove build-aux/Makefile.am.
|
Remove build-aux/Makefile.am.
|
||||||
Recursive Makefiles are really way too slow, let's get rid of some of
|
Recursive Makefiles are really way too slow, let's get rid of some of
|
||||||
them.
|
them.
|
||||||
|
|
||||||
* build-aux/Makefile.am: Rename as...
|
* build-aux/Makefile.am: Rename as...
|
||||||
* build-aux/local.mk: this.
|
* build-aux/local.mk: this.
|
||||||
Adjust paths.
|
Adjust paths.
|
||||||
@@ -78,7 +83,7 @@
|
|||||||
Using template buys us nothing, and makes it uselessly complex to
|
Using template buys us nothing, and makes it uselessly complex to
|
||||||
construct a symbol. Besides, it could not be generalized to other
|
construct a symbol. Besides, it could not be generalized to other
|
||||||
languages, while make_FOO would work in C/Java etc.
|
languages, while make_FOO would work in C/Java etc.
|
||||||
|
|
||||||
* data/lalr1.cc (b4_symbol_): New.
|
* data/lalr1.cc (b4_symbol_): New.
|
||||||
(b4_symbol): Use it.
|
(b4_symbol): Use it.
|
||||||
(b4_symbol_constructor_declaration_)
|
(b4_symbol_constructor_declaration_)
|
||||||
@@ -101,7 +106,7 @@
|
|||||||
generated files. Because of name clashes, it is good to have such a
|
generated files. Because of name clashes, it is good to have such a
|
||||||
prefix such as TOK_ that protects from names such as EOF, FILE etc.
|
prefix such as TOK_ that protects from names such as EOF, FILE etc.
|
||||||
But it clutters the grammar itself.
|
But it clutters the grammar itself.
|
||||||
|
|
||||||
* data/bison.m4 (token.prefix): Empty by default.
|
* data/bison.m4 (token.prefix): Empty by default.
|
||||||
* data/c.m4 (b4_token_enum, b4_token_define): Use it.
|
* data/c.m4 (b4_token_enum, b4_token_define): Use it.
|
||||||
* data/lalr1.cc (b4_symbol): Ditto.
|
* data/lalr1.cc (b4_symbol): Ditto.
|
||||||
@@ -117,7 +122,7 @@
|
|||||||
symbol::token.
|
symbol::token.
|
||||||
This is allows the user to get the type of a token return by
|
This is allows the user to get the type of a token return by
|
||||||
yylex.
|
yylex.
|
||||||
|
|
||||||
* data/lalr1.cc (symbol::token): New.
|
* data/lalr1.cc (symbol::token): New.
|
||||||
(yytoknum_): Define when %define lex_symbol, independently of
|
(yytoknum_): Define when %define lex_symbol, independently of
|
||||||
%debug.
|
%debug.
|
||||||
@@ -148,7 +153,7 @@
|
|||||||
Define make_symbol in the header.
|
Define make_symbol in the header.
|
||||||
To reach good performances these functions should be inlined (yet this is
|
To reach good performances these functions should be inlined (yet this is
|
||||||
to measure precisely). To this end they must be available to the caller.
|
to measure precisely). To this end they must be available to the caller.
|
||||||
|
|
||||||
* data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
|
* data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
|
||||||
location_type with the class name.
|
location_type with the class name.
|
||||||
Since will now be output in the header, declare "inline".
|
Since will now be output in the header, declare "inline".
|
||||||
@@ -169,10 +174,10 @@
|
|||||||
The constructors are called by the make_symbol functions, which a
|
The constructors are called by the make_symbol functions, which a
|
||||||
forthcoming patch will move elsewhere. Hence the interest of putting them
|
forthcoming patch will move elsewhere. Hence the interest of putting them
|
||||||
together.
|
together.
|
||||||
|
|
||||||
The stack_symbol_type does not need to be moved, it is used only by the
|
The stack_symbol_type does not need to be moved, it is used only by the
|
||||||
parser.
|
parser.
|
||||||
|
|
||||||
* data/lalr1.cc: Move symbol_type and symbol_base_type
|
* data/lalr1.cc: Move symbol_type and symbol_base_type
|
||||||
constructors into...
|
constructors into...
|
||||||
(b4_symbol_constructor_definitions): here.
|
(b4_symbol_constructor_definitions): here.
|
||||||
@@ -183,7 +188,7 @@
|
|||||||
Make it easier to move the definition of yytranslate_.
|
Make it easier to move the definition of yytranslate_.
|
||||||
Forthcoming changes will make it possible to use yytranslate_
|
Forthcoming changes will make it possible to use yytranslate_
|
||||||
from outside the parser implementation file.
|
from outside the parser implementation file.
|
||||||
|
|
||||||
* data/lalr1.cc (b4_yytranslate_definition): New.
|
* data/lalr1.cc (b4_yytranslate_definition): New.
|
||||||
Use it.
|
Use it.
|
||||||
|
|
||||||
@@ -203,7 +208,7 @@
|
|||||||
goes against the stronger typing I am trying to have with the new
|
goes against the stronger typing I am trying to have with the new
|
||||||
lex interface which return a symbol_type. So in this case, feed
|
lex interface which return a symbol_type. So in this case, feed
|
||||||
yytranslate_ with a token_type.
|
yytranslate_ with a token_type.
|
||||||
|
|
||||||
* data/lalr1.cc (yytranslate_): When in %define lex-symbol,
|
* data/lalr1.cc (yytranslate_): When in %define lex-symbol,
|
||||||
expect a token_type.
|
expect a token_type.
|
||||||
|
|
||||||
@@ -225,7 +230,7 @@
|
|||||||
The union used to compute the size of the variant used to iterate over the
|
The union used to compute the size of the variant used to iterate over the
|
||||||
type of all the symbols, with a lot of redundancy. Now iterate over the
|
type of all the symbols, with a lot of redundancy. Now iterate over the
|
||||||
lists of symbols having the same type-name.
|
lists of symbols having the same type-name.
|
||||||
|
|
||||||
* data/lalr1.cc (b4_char_sizeof_): New.
|
* data/lalr1.cc (b4_char_sizeof_): New.
|
||||||
(b4_char_sizeof): Use it.
|
(b4_char_sizeof): Use it.
|
||||||
Adjust to be called with a list of numbers instead of a single
|
Adjust to be called with a list of numbers instead of a single
|
||||||
@@ -238,10 +243,10 @@
|
|||||||
Symbols may have several string representations, for instance if they
|
Symbols may have several string representations, for instance if they
|
||||||
have an alias. What I call its "id" is a string that can be used as
|
have an alias. What I call its "id" is a string that can be used as
|
||||||
an identifier. May not exist.
|
an identifier. May not exist.
|
||||||
|
|
||||||
Currently the symbols which have the "tag_is_id" flag set are those that
|
Currently the symbols which have the "tag_is_id" flag set are those that
|
||||||
don't have an alias. Look harder for the id.
|
don't have an alias. Look harder for the id.
|
||||||
|
|
||||||
* src/output.c (is_identifier): Move to...
|
* src/output.c (is_identifier): Move to...
|
||||||
* src/symtab.c (is_identifier): here.
|
* src/symtab.c (is_identifier): here.
|
||||||
* src/symtab.h, src/symtab.c (symbol_id_get): New.
|
* src/symtab.h, src/symtab.c (symbol_id_get): New.
|
||||||
@@ -387,7 +392,7 @@
|
|||||||
not work well in C++ (unless the parameter also appears as an argument,
|
not work well in C++ (unless the parameter also appears as an argument,
|
||||||
which is not acceptable), hence the use of a function instead of a
|
which is not acceptable), hence the use of a function instead of a
|
||||||
constructor.
|
constructor.
|
||||||
|
|
||||||
* data/lalr1.cc (b4_symbol_constructor_declaration_)
|
* data/lalr1.cc (b4_symbol_constructor_declaration_)
|
||||||
(b4_symbol_constructor_declarations)
|
(b4_symbol_constructor_declarations)
|
||||||
(b4_symbol_constructor_specialization_)
|
(b4_symbol_constructor_specialization_)
|
||||||
|
|||||||
638
src/parse-gram.c
638
src/parse-gram.c
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
|||||||
/* A Bison parser, made by GNU Bison 2.4.149-dcb5-dirty. */
|
/* A Bison parser, made by GNU Bison 2.4.150-0305. */
|
||||||
|
|
||||||
/* Interface for Bison's Yacc-like parsers in C
|
/* Interface for Bison's Yacc-like parsers in C
|
||||||
|
|
||||||
@@ -160,7 +160,7 @@
|
|||||||
typedef union YYSTYPE
|
typedef union YYSTYPE
|
||||||
{
|
{
|
||||||
|
|
||||||
/* Line 1678 of yacc.c */
|
/* Line 1680 of yacc.c */
|
||||||
#line 92 "parse-gram.y"
|
#line 92 "parse-gram.y"
|
||||||
|
|
||||||
symbol *symbol;
|
symbol *symbol;
|
||||||
@@ -174,8 +174,8 @@ typedef union YYSTYPE
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Line 1678 of yacc.c */
|
/* Line 1680 of yacc.c */
|
||||||
#line 179 "../../../src/parse-gram.h"
|
#line 179 "../../src/parse-gram.h"
|
||||||
} YYSTYPE;
|
} YYSTYPE;
|
||||||
# define YYSTYPE_IS_TRIVIAL 1
|
# define YYSTYPE_IS_TRIVIAL 1
|
||||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||||||
|
|||||||
Reference in New Issue
Block a user