]>
Commit | Line | Data |
---|---|---|
aa321494 RA |
1 | /* Macro table manager for Bison, |
2 | Copyright 1984, 1989, 2000 Free Software Foundation, Inc. | |
3 | ||
4 | This file is part of Bison, the GNU Compiler Compiler. | |
5 | ||
6 | Bison is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 2, or (at your option) | |
9 | any later version. | |
10 | ||
11 | Bison is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with Bison; see the file COPYING. If not, write to | |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 | Boston, MA 02111-1307, USA. */ | |
20 | ||
21 | #include <string.h> | |
22 | ||
8f451ef7 | 23 | #include "xalloc.h" |
aa321494 RA |
24 | #include "system.h" |
25 | #include "hash.h" | |
26 | #include "files.h" | |
27 | #include "macrotab.h" | |
28 | ||
29 | struct hash_table macro_table; | |
30 | ||
31 | static unsigned long | |
32 | mhash1 (const void* item) | |
33 | { | |
34 | return_STRING_HASH_1 (((macro_entry_t*) item)->key); | |
35 | } | |
36 | ||
37 | static unsigned long | |
38 | mhash2 (const void* item) | |
39 | { | |
40 | return_STRING_HASH_2 (((macro_entry_t*) item)->key); | |
41 | } | |
42 | ||
43 | static int | |
44 | mcmp (const void* x, const void* y) | |
45 | { | |
46 | return strcmp (((macro_entry_t*) x)->key, ((macro_entry_t*) y)->key); | |
47 | } | |
48 | ||
49 | void | |
50 | macro_init (void) | |
51 | { | |
52 | hash_init (¯o_table, MTABSIZE, &mhash1, &mhash2, &mcmp); | |
53 | ||
54 | /* Version and input file. */ | |
55 | macro_insert ("version", VERSION); | |
56 | macro_insert ("filename", "a.y"); | |
57 | ||
58 | /* Types. */ | |
59 | macro_insert ("stype", "int"); | |
60 | macro_insert ("ltype", "yyltype"); | |
61 | ||
62 | /* Tokens. */ | |
63 | macro_insert ("tokendef", ""); | |
64 | ||
65 | /* Tables. */ | |
66 | macro_insert ("rhs", "0"); | |
67 | macro_insert ("pact", "0"); | |
68 | macro_insert ("prhs", "0"); | |
69 | macro_insert ("stos", "0"); | |
70 | macro_insert ("check", "0"); | |
71 | macro_insert ("pgoto", "0"); | |
72 | macro_insert ("table", "0"); | |
73 | macro_insert ("tname", "0"); | |
74 | macro_insert ("defact", "0"); | |
75 | macro_insert ("toknum", "0"); | |
76 | macro_insert ("defgoto", "0"); | |
77 | macro_insert ("translate", "0"); | |
78 | ||
79 | /* Various macros. */ | |
80 | macro_insert ("flag", "0"); | |
81 | macro_insert ("last", "0"); | |
82 | macro_insert ("pure", "0"); | |
83 | macro_insert ("nsym", "0"); | |
84 | macro_insert ("debug", "0"); | |
85 | macro_insert ("final", "0"); | |
86 | macro_insert ("maxtok", "0"); | |
87 | macro_insert ("ntbase", "0"); | |
88 | macro_insert ("verbose", "0"); | |
89 | ||
90 | /* Variable prefix names. */ | |
91 | macro_insert ("yyparse", "yyparse"); | |
92 | macro_insert ("yylex", "yylex"); | |
93 | macro_insert ("yyerror", "yyerror"); | |
94 | macro_insert ("yylval", "yylval"); | |
95 | macro_insert ("yychar", "yychar"); | |
96 | macro_insert ("yydebug", "yydebug"); | |
97 | macro_insert ("yynerrs", "yynerrs"); | |
98 | ||
99 | /* No parser macros. */ | |
100 | macro_insert ("nnts", "0"); | |
101 | macro_insert ("nrules", "0"); | |
102 | macro_insert ("nstates", "0"); | |
103 | macro_insert ("ntokens", "0"); | |
104 | ||
105 | /* Stack parameters. */ | |
106 | macro_insert ("maxdepth", "10000"); | |
107 | macro_insert ("initdepth", "200"); | |
108 | ||
109 | /* C++ macros. */ | |
110 | macro_insert ("name", "Parser"); | |
111 | } | |
112 | ||
113 | void | |
8f451ef7 | 114 | macro_insert (const char *key, const char *value) |
aa321494 | 115 | { |
8f451ef7 | 116 | macro_entry_t* pair = XMALLOC (macro_entry_t, 1); |
aa321494 RA |
117 | pair->key = key; |
118 | pair->value = value; | |
119 | hash_insert (¯o_table, pair); | |
120 | } | |
121 | ||
8f451ef7 PB |
122 | const char* |
123 | macro_find (const char *key) | |
aa321494 RA |
124 | { |
125 | macro_entry_t pair = { key, 0 }; | |
126 | macro_entry_t* result = hash_find_item (¯o_table, &pair); | |
127 | return result ? result->value : 0; | |
128 | } |