1 /* Type definitions for nondeterministic finite state machine for Bison.
3 Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
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)
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.
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., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
32 /*-------------------.
34 `-------------------*/
37 /*-----------------------------------------.
38 | Create a new array of NUM shifts/gotos. |
39 `-----------------------------------------*/
42 transitions_new (int num
, state
**the_states
)
44 size_t states_size
= num
* sizeof *the_states
;
45 transitions
*res
= xmalloc (offsetof (transitions
, states
) + states_size
);
47 memcpy (res
->states
, the_states
, states_size
);
52 /*-------------------------------------------------------.
53 | Return the state such that SHIFTS contain a shift/goto |
54 | to it on SYM. Abort if none found. |
55 `-------------------------------------------------------*/
58 transitions_to (transitions
*shifts
, symbol_number sym
)
61 for (j
= 0; j
< shifts
->num
; j
++)
62 if (TRANSITION_SYMBOL (shifts
, j
) == sym
)
63 return shifts
->states
[j
];
68 /*--------------------.
69 | Error transitions. |
70 `--------------------*/
73 /*---------------------------------.
74 | Create a new array of NUM errs. |
75 `---------------------------------*/
78 errs_new (int num
, symbol
**tokens
)
80 size_t symbols_size
= num
* sizeof *tokens
;
81 errs
*res
= xmalloc (offsetof (errs
, symbols
) + symbols_size
);
83 memcpy (res
->symbols
, tokens
, symbols_size
);
95 /*---------------------------------------.
96 | Create a new array of NUM reductions. |
97 `---------------------------------------*/
100 reductions_new (int num
, rule
**reds
)
102 size_t rules_size
= num
* sizeof *reds
;
103 reductions
*res
= xmalloc (offsetof (reductions
, rules
) + rules_size
);
105 res
->look_ahead_tokens
= NULL
;
106 memcpy (res
->rules
, reds
, rules_size
);
117 state_number nstates
= 0;
118 /* FINAL_STATE is properly set by new_state when it recognizes its
119 accessing symbol: $end. */
120 state
*final_state
= NULL
;
123 /*------------------------------------------------------------------.
124 | Create a new state with ACCESSING_SYMBOL, for those items. Store |
125 | it in the state hash table. |
126 `------------------------------------------------------------------*/
129 state_new (symbol_number accessing_symbol
,
130 size_t nitems
, item_number
*core
)
133 size_t items_size
= nitems
* sizeof *core
;
135 if (STATE_NUMBER_MAXIMUM
<= nstates
)
138 res
= xmalloc (offsetof (state
, items
) + items_size
);
139 res
->number
= nstates
++;
140 res
->accessing_symbol
= accessing_symbol
;
141 res
->transitions
= NULL
;
142 res
->reductions
= NULL
;
145 res
->solved_conflicts
= NULL
;
147 res
->nitems
= nitems
;
148 memcpy (res
->items
, core
, items_size
);
150 state_hash_insert (res
);
161 state_free (state
*s
)
163 free (s
->transitions
);
164 free (s
->reductions
);
170 /*---------------------------.
171 | Set the transitions of S. |
172 `---------------------------*/
175 state_transitions_set (state
*s
, int num
, state
**trans
)
177 assert (!s
->transitions
);
178 s
->transitions
= transitions_new (num
, trans
);
182 /*--------------------------.
183 | Set the reductions of S. |
184 `--------------------------*/
187 state_reductions_set (state
*s
, int num
, rule
**reds
)
189 assert (!s
->reductions
);
190 s
->reductions
= reductions_new (num
, reds
);
195 state_reduction_find (state
*s
, rule
*r
)
198 reductions
*reds
= s
->reductions
;
199 for (i
= 0; i
< reds
->num
; ++i
)
200 if (reds
->rules
[i
] == r
)
206 /*--------------------.
207 | Set the errs of S. |
208 `--------------------*/
211 state_errs_set (state
*s
, int num
, symbol
**tokens
)
215 s
->errs
= errs_new (num
, tokens
);
220 /*---------------------------------------------------.
221 | Print on OUT all the look-ahead tokens such that S |
222 | wants to reduce R. |
223 `---------------------------------------------------*/
226 state_rule_look_ahead_tokens_print (state
*s
, rule
*r
, FILE *out
)
228 /* Find the reduction we are handling. */
229 reductions
*reds
= s
->reductions
;
230 int red
= state_reduction_find (s
, r
);
232 /* Print them if there are. */
233 if (reds
->look_ahead_tokens
&& red
!= -1)
235 bitset_iterator biter
;
237 char const *sep
= "";
239 BITSET_FOR_EACH (biter
, reds
->look_ahead_tokens
[red
], k
, 0)
241 fprintf (out
, "%s%s", sep
, symbols
[k
]->tag
);
249 /*---------------------.
250 | A state hash table. |
251 `---------------------*/
253 /* Initial capacity of states hash table. */
254 #define HT_INITIAL_CAPACITY 257
256 static struct hash_table
*state_table
= NULL
;
258 /* Two states are equal if they have the same core items. */
260 state_compare (state
const *s1
, state
const *s2
)
264 if (s1
->nitems
!= s2
->nitems
)
267 for (i
= 0; i
< s1
->nitems
; ++i
)
268 if (s1
->items
[i
] != s2
->items
[i
])
275 state_comparator (void const *s1
, void const *s2
)
277 return state_compare (s1
, s2
);
281 state_hash (state
const *s
, size_t tablesize
)
283 /* Add up the state's item numbers to get a hash key. */
286 for (i
= 0; i
< s
->nitems
; ++i
)
288 return key
% tablesize
;
292 state_hasher (void const *s
, size_t tablesize
)
294 return state_hash (s
, tablesize
);
298 /*-------------------------------.
299 | Create the states hash table. |
300 `-------------------------------*/
303 state_hash_new (void)
305 state_table
= hash_initialize (HT_INITIAL_CAPACITY
,
313 /*---------------------------------------------.
314 | Free the states hash table, not the states. |
315 `---------------------------------------------*/
318 state_hash_free (void)
320 hash_free (state_table
);
324 /*-----------------------------------.
325 | Insert S in the state hash table. |
326 `-----------------------------------*/
329 state_hash_insert (state
*s
)
331 hash_insert (state_table
, s
);
335 /*------------------------------------------------------------------.
336 | Find the state associated to the CORE, and return it. If it does |
337 | not exist yet, return NULL. |
338 `------------------------------------------------------------------*/
341 state_hash_lookup (size_t nitems
, item_number
*core
)
343 size_t items_size
= nitems
* sizeof *core
;
344 state
*probe
= xmalloc (offsetof (state
, items
) + items_size
);
347 probe
->nitems
= nitems
;
348 memcpy (probe
->items
, core
, items_size
);
349 entry
= hash_lookup (state_table
, probe
);
354 /* All the decorated states, indexed by the state number. */
355 state
**states
= NULL
;
358 /*----------------------.
359 | Free all the states. |
360 `----------------------*/
366 for (i
= 0; i
< nstates
; ++i
)
367 state_free (states
[i
]);