]>
Commit | Line | Data |
---|---|---|
40675e7c | 1 | /* Symbol table manager for Bison, |
72a23c97 | 2 | Copyright (C) 1984, 1989, 2000, 2001, 2002 Free Software Foundation, Inc. |
40675e7c | 3 | |
95e36146 | 4 | This file is part of Bison, the GNU Compiler Compiler. |
40675e7c | 5 | |
95e36146 AD |
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. | |
40675e7c | 10 | |
95e36146 AD |
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. | |
40675e7c | 15 | |
95e36146 AD |
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. */ | |
40675e7c DM |
20 | |
21 | ||
40675e7c | 22 | #include "system.h" |
72a23c97 | 23 | #include "hash.h" |
40675e7c DM |
24 | #include "symtab.h" |
25 | #include "gram.h" | |
26 | ||
72a23c97 AD |
27 | /*---------------------------------. |
28 | | Create a new symbol, named TAG. | | |
29 | `---------------------------------*/ | |
1e9798d5 AD |
30 | |
31 | static bucket * | |
72a23c97 | 32 | bucket_new (const char *tag) |
1e9798d5 AD |
33 | { |
34 | bucket *res = XMALLOC (bucket, 1); | |
35 | ||
1e9798d5 AD |
36 | res->tag = xstrdup (tag); |
37 | res->type_name = NULL; | |
d9b739c3 | 38 | res->number = -1; |
1e9798d5 AD |
39 | res->prec = 0; |
40 | res->assoc = right_assoc; | |
6b7e85b9 | 41 | res->user_token_number = SUNDEF; |
1e9798d5 AD |
42 | res->alias = NULL; |
43 | res->class = unknown_sym; | |
44 | ||
72a23c97 AD |
45 | if (getenv ("DEBUG")) |
46 | fprintf (stderr, "Creating: nsyms = %d, ntokens = %d: %s\n", | |
47 | nsyms, ntokens, tag); | |
1e9798d5 AD |
48 | nsyms++; |
49 | ||
50 | return res; | |
51 | } | |
52 | ||
40675e7c | 53 | |
72a23c97 AD |
54 | /*------------. |
55 | | Free THIS. | | |
56 | `------------*/ | |
57 | ||
58 | static void | |
59 | bucket_free (bucket *this) | |
40675e7c | 60 | { |
72a23c97 AD |
61 | #if 0 |
62 | /* This causes crashes because one string can appear more | |
63 | than once. */ | |
64 | XFREE (this->type_name); | |
65 | #endif | |
66 | XFREE (this->tag); | |
67 | XFREE (this); | |
68 | } | |
69 | ||
70 | ||
71 | ||
72 | /*----------------------. | |
73 | | A bucket hash table. | | |
74 | `----------------------*/ | |
40675e7c | 75 | |
72a23c97 AD |
76 | /* Initial capacity of buckets hash table. */ |
77 | #define HT_INITIAL_CAPACITY 257 | |
78 | ||
79 | static struct hash_table *bucket_table = NULL; | |
80 | ||
81 | static bool | |
82 | hash_compare_bucket (const bucket *m1, const bucket *m2) | |
83 | { | |
84 | return strcmp (m1->tag, m2->tag) ? FALSE : TRUE; | |
85 | } | |
86 | ||
87 | static unsigned int | |
88 | hash_bucket (const bucket *m, unsigned int tablesize) | |
89 | { | |
90 | return hash_string (m->tag, tablesize); | |
91 | } | |
92 | ||
93 | ||
94 | /*-------------------------------. | |
95 | | Create the bucket hash table. | | |
96 | `-------------------------------*/ | |
97 | ||
98 | void | |
99 | buckets_new (void) | |
100 | { | |
101 | bucket_table = hash_initialize (HT_INITIAL_CAPACITY, | |
102 | NULL, | |
103 | (Hash_hasher) hash_bucket, | |
104 | (Hash_comparator) hash_compare_bucket, | |
105 | (Hash_data_freer) bucket_free); | |
40675e7c DM |
106 | } |
107 | ||
108 | ||
1e9798d5 AD |
109 | /*----------------------------------------------------------------. |
110 | | Find the symbol named KEY, and return it. If it does not exist | | |
111 | | yet, create it. | | |
112 | `----------------------------------------------------------------*/ | |
113 | ||
40675e7c | 114 | bucket * |
4a120d45 | 115 | getsym (const char *key) |
40675e7c | 116 | { |
72a23c97 AD |
117 | bucket probe; |
118 | bucket *entry; | |
40675e7c | 119 | |
72a23c97 AD |
120 | (const char *) probe.tag = key; |
121 | entry = hash_lookup (bucket_table, &probe); | |
40675e7c | 122 | |
72a23c97 | 123 | if (!entry) |
40675e7c | 124 | { |
72a23c97 AD |
125 | /* First insertion in the hash. */ |
126 | entry = bucket_new (key); | |
127 | hash_insert (bucket_table, entry); | |
40675e7c | 128 | } |
72a23c97 AD |
129 | return entry; |
130 | } | |
40675e7c | 131 | |
40675e7c | 132 | |
72a23c97 AD |
133 | /*-------------------. |
134 | | Free the buckets. | | |
135 | `-------------------*/ | |
136 | ||
137 | void | |
138 | buckets_free (void) | |
139 | { | |
140 | hash_free (bucket_table); | |
40675e7c DM |
141 | } |
142 | ||
143 | ||
72a23c97 AD |
144 | /*---------------------------------------------------------------. |
145 | | Look for undefined buckets, report an error, and consider them | | |
146 | | terminals. | | |
147 | `---------------------------------------------------------------*/ | |
148 | ||
40675e7c | 149 | void |
72a23c97 | 150 | buckets_do (bucket_processor processor, void *processor_data) |
40675e7c | 151 | { |
72a23c97 AD |
152 | hash_do_for_each (bucket_table, |
153 | (Hash_processor) processor, | |
154 | processor_data); | |
40675e7c | 155 | } |