mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 20:33:03 +00:00
* src/output.c (prepare): Add prefixed names. (output_parser): Output semantic actions. (output_parser): Fix bug on '%%line' directives. 2001-08-19 Robert Anisko <robert.anisko@epita.fr> * src/output.c (output_rule_data): Do not output tables to the table obstack. * src/reader.c (reader): Remove calls to 'output_headers' and 'output_trailers'. Remove some C output. (readgram): Disable a piece of code that was writing a default definition for 'YYSTYPE'. (reader_output_yylsp): Remove. (packsymbols): Output token defintions to a macro. (copy_definition): Disable C output. * src/output.c (output_headers): Remove. The C code printed by this function should now be in the skeletons. (output_trailers): Remove. (output): Disable call to 'reader_output_yylsp'. 2001-08-18 Robert Anisko <robert.anisko@epita.fr> * src/output.c: Remove some C dedicated output. 2001-08-18 Robert Anisko <robert.anisko@epita.fr> * src/output.c (output_defines): Remove. 2001-08-18 Robert Anisko <robert.anisko@epita.fr> * src/output.c: Improve the use of macro and output obstacks. 2001-08-18 Robert Anisko <robert.anisko@epita.fr> * src/output.c (output_token_translations): Associate 'translate' table with a macro. No output to the table obstack. (output_gram): Same for 'rhs' and 'prhs'. (output_stos): Same for 'stos'. (output_rule_data): Same for 'r1' and 'r2'. (token_actions): Same for 'defact'. (goto_actions): Same for 'defgoto'. (output_base): Same for 'pact' and 'pgoto'. (output_table): Same for 'table'. (output_check): Same for 'check'. 2001-08-18 Robert Anisko <robert.anisko@epita.fr> * src/output.c (output_table_data): New function. (output_short_table): Remove. (output_short_or_char_table): Remove. 2001-08-17 Robert Anisko <robert.anisko@epita.fr> * src/main.c (main): Initialize the macro table. 2001-08-17 Robert Anisko <robert.anisko@epita.fr> * src/output.c (output_parser): Use the macro table. * src/macrotab.c: New file. * src/macrotab.h: New file. 2001-08-17 Robert Anisko <robert.anisko@epita.fr> * lib/xalloc.h (CALLOC, MALLOC, REALLOC): New macros. 2001-08-17 Robert Anisko <robert.anisko@epita.fr> * lib/hash.c: New file. * lib/hash.h: New file. 2001-08-16 Robert Anisko <robert.anisko@epita.fr> * src/reader.c (parse_macro_decl): Read macro identifiers using copy_identifier rather than lex. 2001-08-16 Robert Anisko <robert.anisko@epita.fr> * src/reader.c (copy_identifier): New. 2001-08-16 Robert Anisko <robert.anisko@epita.fr> * src/reader.c (read_declarations): Add case for macro definition. * src/lex.c (percent_table): Add tok_define. * src/lex.h: Add tok_define. 2001-08-16 Robert Anisko <robert.anisko@epita.fr> * src/reader.c (parse_macro_decl): New function used to parse macro declarations. (copy_string2): Put the body of copy_string into this new function. Add a parameter to let the caller choose whether he wants to copy the string delimiters or not. (copy_string): Be a simple call to copy_string2 with the last argument bound to true. 2001-08-15 Robert Anisko <robert.anisko@epita.fr> * src/output.c (output_parser): Replace most of the skeleton copy code with something new. Skeletons are now processed character by character rather than line by line, and Bison looks for '%%' macros. This is the first step in making Bison's output process (a lot) more flexible.
128 lines
3.3 KiB
C
128 lines
3.3 KiB
C
/* Macro table manager for Bison,
|
|
Copyright 1984, 1989, 2000 Free Software Foundation, Inc.
|
|
|
|
This file is part of Bison, the GNU Compiler Compiler.
|
|
|
|
Bison is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
Bison is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Bison; see the file COPYING. If not, write to
|
|
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
#include <string.h>
|
|
|
|
#include "system.h"
|
|
#include "hash.h"
|
|
#include "files.h"
|
|
#include "macrotab.h"
|
|
|
|
struct hash_table macro_table;
|
|
|
|
static unsigned long
|
|
mhash1 (const void* item)
|
|
{
|
|
return_STRING_HASH_1 (((macro_entry_t*) item)->key);
|
|
}
|
|
|
|
static unsigned long
|
|
mhash2 (const void* item)
|
|
{
|
|
return_STRING_HASH_2 (((macro_entry_t*) item)->key);
|
|
}
|
|
|
|
static int
|
|
mcmp (const void* x, const void* y)
|
|
{
|
|
return strcmp (((macro_entry_t*) x)->key, ((macro_entry_t*) y)->key);
|
|
}
|
|
|
|
void
|
|
macro_init (void)
|
|
{
|
|
hash_init (¯o_table, MTABSIZE, &mhash1, &mhash2, &mcmp);
|
|
|
|
/* Version and input file. */
|
|
macro_insert ("version", VERSION);
|
|
macro_insert ("filename", "a.y");
|
|
|
|
/* Types. */
|
|
macro_insert ("stype", "int");
|
|
macro_insert ("ltype", "yyltype");
|
|
|
|
/* Tokens. */
|
|
macro_insert ("tokendef", "");
|
|
|
|
/* Tables. */
|
|
macro_insert ("rhs", "0");
|
|
macro_insert ("pact", "0");
|
|
macro_insert ("prhs", "0");
|
|
macro_insert ("stos", "0");
|
|
macro_insert ("check", "0");
|
|
macro_insert ("pgoto", "0");
|
|
macro_insert ("table", "0");
|
|
macro_insert ("tname", "0");
|
|
macro_insert ("defact", "0");
|
|
macro_insert ("toknum", "0");
|
|
macro_insert ("defgoto", "0");
|
|
macro_insert ("translate", "0");
|
|
|
|
/* Various macros. */
|
|
macro_insert ("flag", "0");
|
|
macro_insert ("last", "0");
|
|
macro_insert ("pure", "0");
|
|
macro_insert ("nsym", "0");
|
|
macro_insert ("debug", "0");
|
|
macro_insert ("final", "0");
|
|
macro_insert ("maxtok", "0");
|
|
macro_insert ("ntbase", "0");
|
|
macro_insert ("verbose", "0");
|
|
|
|
/* Variable prefix names. */
|
|
macro_insert ("yyparse", "yyparse");
|
|
macro_insert ("yylex", "yylex");
|
|
macro_insert ("yyerror", "yyerror");
|
|
macro_insert ("yylval", "yylval");
|
|
macro_insert ("yychar", "yychar");
|
|
macro_insert ("yydebug", "yydebug");
|
|
macro_insert ("yynerrs", "yynerrs");
|
|
|
|
/* No parser macros. */
|
|
macro_insert ("nnts", "0");
|
|
macro_insert ("nrules", "0");
|
|
macro_insert ("nstates", "0");
|
|
macro_insert ("ntokens", "0");
|
|
|
|
/* Stack parameters. */
|
|
macro_insert ("maxdepth", "10000");
|
|
macro_insert ("initdepth", "200");
|
|
|
|
/* C++ macros. */
|
|
macro_insert ("name", "Parser");
|
|
}
|
|
|
|
void
|
|
macro_insert (char* key, char* value)
|
|
{
|
|
macro_entry_t* pair = (macro_entry_t*) xmalloc (sizeof (macro_entry_t));
|
|
pair->key = key;
|
|
pair->value = value;
|
|
hash_insert (¯o_table, pair);
|
|
}
|
|
|
|
char*
|
|
macro_find (char* key)
|
|
{
|
|
macro_entry_t pair = { key, 0 };
|
|
macro_entry_t* result = hash_find_item (¯o_table, &pair);
|
|
return result ? result->value : 0;
|
|
}
|