]>
Commit | Line | Data |
---|---|---|
ec14f0c8 | 1 | /* Type definitions for nondeterministic finite state machine for Bison. |
03b9e273 | 2 | |
233a88ad | 3 | Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. |
5e893e1c AD |
4 | |
5 | This file is part of Bison, the GNU Compiler Compiler. | |
6 | ||
7 | Bison is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
9 | the Free Software Foundation; either version 2, or (at your option) | |
10 | any later version. | |
11 | ||
12 | Bison is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with Bison; see the file COPYING. If not, write to | |
19 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 | Boston, MA 02111-1307, USA. */ | |
21 | ||
22 | ||
23 | #include "system.h" | |
17ee7397 PE |
24 | |
25 | #include <hash.h> | |
26 | ||
df0e7316 | 27 | #include "complain.h" |
62a3e4f0 | 28 | #include "gram.h" |
5e893e1c AD |
29 | #include "state.h" |
30 | ||
df0e7316 AD |
31 | |
32 | /*-------------------. | |
33 | | Shifts and Gotos. | | |
34 | `-------------------*/ | |
35 | ||
36 | ||
03b9e273 PE |
37 | /*-----------------------------------------. |
38 | | Create a new array of NUM shifts/gotos. | | |
39 | `-----------------------------------------*/ | |
2cec70b9 | 40 | |
17ee7397 PE |
41 | static transitions * |
42 | transitions_new (int num, state **the_states) | |
5e893e1c | 43 | { |
03b9e273 PE |
44 | size_t states_size = num * sizeof *the_states; |
45 | transitions *res = xmalloc (offsetof (transitions, states) + states_size); | |
ccaf65bc | 46 | res->num = num; |
03b9e273 | 47 | memcpy (res->states, the_states, states_size); |
5e893e1c AD |
48 | return res; |
49 | } | |
2cec70b9 AD |
50 | |
51 | ||
a737b216 PE |
52 | /*-------------------------------------------------------. |
53 | | Return the state such that SHIFTS contain a shift/goto | | |
54 | | to it on SYM. Abort if none found. | | |
55 | `-------------------------------------------------------*/ | |
24c7d800 | 56 | |
17ee7397 | 57 | state * |
a737b216 | 58 | transitions_to (transitions *shifts, symbol_number sym) |
24c7d800 AD |
59 | { |
60 | int j; | |
ccaf65bc | 61 | for (j = 0; j < shifts->num; j++) |
a737b216 | 62 | if (TRANSITION_SYMBOL (shifts, j) == sym) |
640748ee | 63 | return shifts->states[j]; |
24c7d800 AD |
64 | abort (); |
65 | } | |
df0e7316 AD |
66 | |
67 | ||
68 | /*--------------------. | |
69 | | Error transitions. | | |
70 | `--------------------*/ | |
71 | ||
72 | ||
03b9e273 PE |
73 | /*---------------------------------. |
74 | | Create a new array of NUM errs. | | |
75 | `---------------------------------*/ | |
2cec70b9 | 76 | |
17ee7397 PE |
77 | errs * |
78 | errs_new (int num, symbol **tokens) | |
2cec70b9 | 79 | { |
03b9e273 PE |
80 | size_t symbols_size = num * sizeof *tokens; |
81 | errs *res = xmalloc (offsetof (errs, symbols) + symbols_size); | |
8b752b00 | 82 | res->num = num; |
03b9e273 | 83 | memcpy (res->symbols, tokens, symbols_size); |
2cec70b9 AD |
84 | return res; |
85 | } | |
80dac38c | 86 | |
df0e7316 AD |
87 | |
88 | ||
89 | ||
90 | /*-------------. | |
91 | | Reductions. | | |
92 | `-------------*/ | |
93 | ||
94 | ||
03b9e273 PE |
95 | /*---------------------------------------. |
96 | | Create a new array of NUM reductions. | | |
97 | `---------------------------------------*/ | |
80dac38c | 98 | |
17ee7397 PE |
99 | static reductions * |
100 | reductions_new (int num, rule **reds) | |
80dac38c | 101 | { |
03b9e273 PE |
102 | size_t rules_size = num * sizeof *reds; |
103 | reductions *res = xmalloc (offsetof (reductions, rules) + rules_size); | |
8b752b00 | 104 | res->num = num; |
8dd162d3 | 105 | res->look_ahead_tokens = NULL; |
03b9e273 | 106 | memcpy (res->rules, reds, rules_size); |
80dac38c AD |
107 | return res; |
108 | } | |
10e5b8bd AD |
109 | |
110 | ||
df0e7316 AD |
111 | |
112 | /*---------. | |
113 | | States. | | |
114 | `---------*/ | |
115 | ||
116 | ||
17ee7397 | 117 | state_number nstates = 0; |
df0e7316 | 118 | /* FINAL_STATE is properly set by new_state when it recognizes its |
88bce5a2 | 119 | accessing symbol: $end. */ |
17ee7397 | 120 | state *final_state = NULL; |
df0e7316 | 121 | |
c7ca99d4 | 122 | |
8b752b00 AD |
123 | /*------------------------------------------------------------------. |
124 | | Create a new state with ACCESSING_SYMBOL, for those items. Store | | |
125 | | it in the state hash table. | | |
126 | `------------------------------------------------------------------*/ | |
df0e7316 | 127 | |
17ee7397 PE |
128 | state * |
129 | state_new (symbol_number accessing_symbol, | |
03b9e273 | 130 | size_t nitems, item_number *core) |
df0e7316 | 131 | { |
17ee7397 | 132 | state *res; |
03b9e273 | 133 | size_t items_size = nitems * sizeof *core; |
df0e7316 | 134 | |
17ee7397 | 135 | if (STATE_NUMBER_MAXIMUM <= nstates) |
ec14f0c8 | 136 | abort (); |
df0e7316 | 137 | |
03b9e273 PE |
138 | res = xmalloc (offsetof (state, items) + items_size); |
139 | res->number = nstates++; | |
df0e7316 | 140 | res->accessing_symbol = accessing_symbol; |
03b9e273 PE |
141 | res->transitions = NULL; |
142 | res->reductions = NULL; | |
143 | res->errs = NULL; | |
144 | res->consistent = 0; | |
df0e7316 AD |
145 | res->solved_conflicts = NULL; |
146 | ||
03b9e273 PE |
147 | res->nitems = nitems; |
148 | memcpy (res->items, core, items_size); | |
df0e7316 | 149 | |
8b752b00 AD |
150 | state_hash_insert (res); |
151 | ||
df0e7316 AD |
152 | return res; |
153 | } | |
154 | ||
155 | ||
17ee7397 PE |
156 | /*---------. |
157 | | Free S. | | |
158 | `---------*/ | |
8b752b00 AD |
159 | |
160 | static void | |
17ee7397 | 161 | state_free (state *s) |
8b752b00 | 162 | { |
17ee7397 PE |
163 | free (s->transitions); |
164 | free (s->reductions); | |
165 | free (s->errs); | |
166 | free (s); | |
8b752b00 AD |
167 | } |
168 | ||
169 | ||
17ee7397 PE |
170 | /*---------------------------. |
171 | | Set the transitions of S. | | |
172 | `---------------------------*/ | |
32e1e0a4 AD |
173 | |
174 | void | |
17ee7397 | 175 | state_transitions_set (state *s, int num, state **trans) |
32e1e0a4 | 176 | { |
17ee7397 | 177 | if (s->transitions) |
ec14f0c8 | 178 | abort (); |
17ee7397 | 179 | s->transitions = transitions_new (num, trans); |
32e1e0a4 AD |
180 | } |
181 | ||
182 | ||
17ee7397 PE |
183 | /*--------------------------. |
184 | | Set the reductions of S. | | |
185 | `--------------------------*/ | |
8a731ca8 AD |
186 | |
187 | void | |
17ee7397 | 188 | state_reductions_set (state *s, int num, rule **reds) |
8a731ca8 | 189 | { |
17ee7397 | 190 | if (s->reductions) |
ec14f0c8 | 191 | abort (); |
17ee7397 | 192 | s->reductions = reductions_new (num, reds); |
8b752b00 AD |
193 | } |
194 | ||
195 | ||
cd08e51e | 196 | int |
17ee7397 | 197 | state_reduction_find (state *s, rule *r) |
cd08e51e AD |
198 | { |
199 | int i; | |
17ee7397 | 200 | reductions *reds = s->reductions; |
cd08e51e | 201 | for (i = 0; i < reds->num; ++i) |
17ee7397 | 202 | if (reds->rules[i] == r) |
cd08e51e AD |
203 | return i; |
204 | return -1; | |
205 | } | |
206 | ||
207 | ||
17ee7397 PE |
208 | /*--------------------. |
209 | | Set the errs of S. | | |
210 | `--------------------*/ | |
8b752b00 AD |
211 | |
212 | void | |
17ee7397 | 213 | state_errs_set (state *s, int num, symbol **tokens) |
8b752b00 | 214 | { |
17ee7397 | 215 | if (s->errs) |
ec14f0c8 | 216 | abort (); |
17ee7397 | 217 | s->errs = errs_new (num, tokens); |
8a731ca8 AD |
218 | } |
219 | ||
220 | ||
32e1e0a4 | 221 | |
8dd162d3 PE |
222 | /*---------------------------------------------------. |
223 | | Print on OUT all the look-ahead tokens such that S | | |
224 | | wants to reduce R. | | |
225 | `---------------------------------------------------*/ | |
10e5b8bd AD |
226 | |
227 | void | |
8dd162d3 | 228 | state_rule_look_ahead_tokens_print (state *s, rule *r, FILE *out) |
10e5b8bd | 229 | { |
cd08e51e | 230 | /* Find the reduction we are handling. */ |
17ee7397 PE |
231 | reductions *reds = s->reductions; |
232 | int red = state_reduction_find (s, r); | |
10e5b8bd AD |
233 | |
234 | /* Print them if there are. */ | |
8dd162d3 | 235 | if (reds->look_ahead_tokens && red != -1) |
10e5b8bd | 236 | { |
cd08e51e AD |
237 | bitset_iterator biter; |
238 | int k; | |
d0829076 | 239 | char const *sep = ""; |
10e5b8bd | 240 | fprintf (out, " ["); |
8dd162d3 | 241 | BITSET_FOR_EACH (biter, reds->look_ahead_tokens[red], k, 0) |
d0829076 PE |
242 | { |
243 | fprintf (out, "%s%s", sep, symbols[k]->tag); | |
244 | sep = ", "; | |
245 | } | |
10e5b8bd AD |
246 | fprintf (out, "]"); |
247 | } | |
248 | } | |
c7ca99d4 AD |
249 | |
250 | ||
251 | /*----------------------. | |
252 | | A state hash table. | | |
253 | `----------------------*/ | |
254 | ||
255 | /* Initial capacity of states hash table. */ | |
256 | #define HT_INITIAL_CAPACITY 257 | |
257 | ||
258 | static struct hash_table *state_table = NULL; | |
259 | ||
260 | /* Two states are equal if they have the same core items. */ | |
03b9e273 | 261 | static inline bool |
17ee7397 | 262 | state_compare (state const *s1, state const *s2) |
c7ca99d4 | 263 | { |
f6fbd3da | 264 | size_t i; |
c7ca99d4 AD |
265 | |
266 | if (s1->nitems != s2->nitems) | |
8307162d | 267 | return false; |
c7ca99d4 AD |
268 | |
269 | for (i = 0; i < s1->nitems; ++i) | |
270 | if (s1->items[i] != s2->items[i]) | |
8307162d | 271 | return false; |
c7ca99d4 | 272 | |
8307162d | 273 | return true; |
c7ca99d4 AD |
274 | } |
275 | ||
03b9e273 PE |
276 | static bool |
277 | state_comparator (void const *s1, void const *s2) | |
278 | { | |
279 | return state_compare (s1, s2); | |
280 | } | |
281 | ||
233a88ad PE |
282 | static inline size_t |
283 | state_hash (state const *s, size_t tablesize) | |
c7ca99d4 AD |
284 | { |
285 | /* Add up the state's item numbers to get a hash key. */ | |
233a88ad | 286 | size_t key = 0; |
f6fbd3da | 287 | size_t i; |
17ee7397 PE |
288 | for (i = 0; i < s->nitems; ++i) |
289 | key += s->items[i]; | |
c7ca99d4 AD |
290 | return key % tablesize; |
291 | } | |
292 | ||
233a88ad PE |
293 | static size_t |
294 | state_hasher (void const *s, size_t tablesize) | |
03b9e273 PE |
295 | { |
296 | return state_hash (s, tablesize); | |
297 | } | |
298 | ||
c7ca99d4 AD |
299 | |
300 | /*-------------------------------. | |
301 | | Create the states hash table. | | |
302 | `-------------------------------*/ | |
303 | ||
304 | void | |
305 | state_hash_new (void) | |
306 | { | |
307 | state_table = hash_initialize (HT_INITIAL_CAPACITY, | |
308 | NULL, | |
03b9e273 PE |
309 | state_hasher, |
310 | state_comparator, | |
311 | NULL); | |
c7ca99d4 AD |
312 | } |
313 | ||
314 | ||
315 | /*---------------------------------------------. | |
316 | | Free the states hash table, not the states. | | |
317 | `---------------------------------------------*/ | |
318 | ||
319 | void | |
320 | state_hash_free (void) | |
321 | { | |
322 | hash_free (state_table); | |
323 | } | |
324 | ||
325 | ||
17ee7397 PE |
326 | /*-----------------------------------. |
327 | | Insert S in the state hash table. | | |
328 | `-----------------------------------*/ | |
c7ca99d4 AD |
329 | |
330 | void | |
17ee7397 | 331 | state_hash_insert (state *s) |
c7ca99d4 | 332 | { |
17ee7397 | 333 | hash_insert (state_table, s); |
c7ca99d4 AD |
334 | } |
335 | ||
336 | ||
337 | /*------------------------------------------------------------------. | |
338 | | Find the state associated to the CORE, and return it. If it does | | |
339 | | not exist yet, return NULL. | | |
340 | `------------------------------------------------------------------*/ | |
341 | ||
17ee7397 | 342 | state * |
03b9e273 | 343 | state_hash_lookup (size_t nitems, item_number *core) |
c7ca99d4 | 344 | { |
03b9e273 PE |
345 | size_t items_size = nitems * sizeof *core; |
346 | state *probe = xmalloc (offsetof (state, items) + items_size); | |
17ee7397 | 347 | state *entry; |
c7ca99d4 | 348 | |
03b9e273 PE |
349 | probe->nitems = nitems; |
350 | memcpy (probe->items, core, items_size); | |
c7ca99d4 AD |
351 | entry = hash_lookup (state_table, probe); |
352 | free (probe); | |
353 | return entry; | |
354 | } | |
355 | ||
356 | /* All the decorated states, indexed by the state number. */ | |
17ee7397 | 357 | state **states = NULL; |
c7ca99d4 AD |
358 | |
359 | ||
360 | /*----------------------. | |
361 | | Free all the states. | | |
362 | `----------------------*/ | |
363 | ||
364 | void | |
365 | states_free (void) | |
366 | { | |
17ee7397 | 367 | state_number i; |
c7ca99d4 | 368 | for (i = 0; i < nstates; ++i) |
8b752b00 AD |
369 | state_free (states[i]); |
370 | free (states); | |
c7ca99d4 | 371 | } |