1 /* Type definitions for nondeterministic finite state machine for Bison.
3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software
6 This file is part of Bison, the GNU Compiler Compiler.
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
31 /*-------------------.
33 `-------------------*/
36 /*-----------------------------------------.
37 | Create a new array of NUM shifts/gotos. |
38 `-----------------------------------------*/
41 transitions_new (int num
, state
**the_states
)
43 size_t states_size
= num
* sizeof *the_states
;
44 transitions
*res
= xmalloc (offsetof (transitions
, states
) + states_size
);
46 memcpy (res
->states
, the_states
, states_size
);
51 /*-------------------------------------------------------.
52 | Return the state such that SHIFTS contain a shift/goto |
53 | to it on SYM. Abort if none found. |
54 `-------------------------------------------------------*/
57 transitions_to (transitions
*shifts
, symbol_number sym
)
62 aver (j
< shifts
->num
);
63 if (TRANSITION_SYMBOL (shifts
, j
) == sym
)
64 return shifts
->states
[j
];
69 /*--------------------.
70 | Error transitions. |
71 `--------------------*/
74 /*---------------------------------.
75 | Create a new array of NUM errs. |
76 `---------------------------------*/
79 errs_new (int num
, symbol
**tokens
)
81 size_t symbols_size
= num
* sizeof *tokens
;
82 errs
*res
= xmalloc (offsetof (errs
, symbols
) + symbols_size
);
84 memcpy (res
->symbols
, tokens
, symbols_size
);
96 /*---------------------------------------.
97 | Create a new array of NUM reductions. |
98 `---------------------------------------*/
101 reductions_new (int num
, rule
**reds
)
103 size_t rules_size
= num
* sizeof *reds
;
104 reductions
*res
= xmalloc (offsetof (reductions
, rules
) + rules_size
);
106 res
->lookahead_tokens
= NULL
;
107 memcpy (res
->rules
, reds
, rules_size
);
118 state_number nstates
= 0;
119 /* FINAL_STATE is properly set by new_state when it recognizes its
120 accessing symbol: $end. */
121 state
*final_state
= NULL
;
124 /*------------------------------------------------------------------.
125 | Create a new state with ACCESSING_SYMBOL, for those items. Store |
126 | it in the state hash table. |
127 `------------------------------------------------------------------*/
130 state_new (symbol_number accessing_symbol
,
131 size_t nitems
, item_number
*core
)
134 size_t items_size
= nitems
* sizeof *core
;
136 aver (nstates
< STATE_NUMBER_MAXIMUM
);
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 aver (!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 aver (!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
)
214 s
->errs
= errs_new (num
, tokens
);
219 /*--------------------------------------------------.
220 | Print on OUT all the lookahead tokens such that S |
221 | wants to reduce R. |
222 `--------------------------------------------------*/
225 state_rule_lookahead_tokens_print (state
*s
, rule
*r
, FILE *out
)
227 /* Find the reduction we are handling. */
228 reductions
*reds
= s
->reductions
;
229 int red
= state_reduction_find (s
, r
);
231 /* Print them if there are. */
232 if (reds
->lookahead_tokens
&& red
!= -1)
234 bitset_iterator biter
;
236 char const *sep
= "";
238 BITSET_FOR_EACH (biter
, reds
->lookahead_tokens
[red
], k
, 0)
240 fprintf (out
, "%s%s", sep
, symbols
[k
]->tag
);
248 /*---------------------.
249 | A state hash table. |
250 `---------------------*/
252 /* Initial capacity of states hash table. */
253 #define HT_INITIAL_CAPACITY 257
255 static struct hash_table
*state_table
= NULL
;
257 /* Two states are equal if they have the same core items. */
259 state_compare (state
const *s1
, state
const *s2
)
263 if (s1
->nitems
!= s2
->nitems
)
266 for (i
= 0; i
< s1
->nitems
; ++i
)
267 if (s1
->items
[i
] != s2
->items
[i
])
274 state_comparator (void const *s1
, void const *s2
)
276 return state_compare (s1
, s2
);
280 state_hash (state
const *s
, size_t tablesize
)
282 /* Add up the state's item numbers to get a hash key. */
285 for (i
= 0; i
< s
->nitems
; ++i
)
287 return key
% tablesize
;
291 state_hasher (void const *s
, size_t tablesize
)
293 return state_hash (s
, tablesize
);
297 /*-------------------------------.
298 | Create the states hash table. |
299 `-------------------------------*/
302 state_hash_new (void)
304 state_table
= hash_initialize (HT_INITIAL_CAPACITY
,
312 /*---------------------------------------------.
313 | Free the states hash table, not the states. |
314 `---------------------------------------------*/
317 state_hash_free (void)
319 hash_free (state_table
);
323 /*-----------------------------------.
324 | Insert S in the state hash table. |
325 `-----------------------------------*/
328 state_hash_insert (state
*s
)
330 hash_insert (state_table
, s
);
334 /*------------------------------------------------------------------.
335 | Find the state associated to the CORE, and return it. If it does |
336 | not exist yet, return NULL. |
337 `------------------------------------------------------------------*/
340 state_hash_lookup (size_t nitems
, item_number
*core
)
342 size_t items_size
= nitems
* sizeof *core
;
343 state
*probe
= xmalloc (offsetof (state
, items
) + items_size
);
346 probe
->nitems
= nitems
;
347 memcpy (probe
->items
, core
, items_size
);
348 entry
= hash_lookup (state_table
, probe
);
354 /*--------------------------------------------------------.
355 | Record S and all states reachable from S in REACHABLE. |
356 `--------------------------------------------------------*/
359 state_record_reachable_states (state
*s
, bitset reachable
)
361 if (bitset_test (reachable
, s
->number
))
363 bitset_set (reachable
, s
->number
);
366 for (i
= 0; i
< s
->transitions
->num
; ++i
)
367 if (!TRANSITION_IS_DISABLED (s
->transitions
, i
))
368 state_record_reachable_states (s
->transitions
->states
[i
], reachable
);
373 state_remove_unreachable_states (state_number old_to_new
[])
375 state_number nstates_reachable
= 0;
376 bitset reachable
= bitset_create (nstates
, BITSET_FIXED
);
377 state_record_reachable_states (states
[0], reachable
);
380 for (i
= 0; i
< nstates
; ++i
)
382 if (bitset_test (reachable
, states
[i
]->number
))
384 states
[nstates_reachable
] = states
[i
];
385 states
[nstates_reachable
]->number
= nstates_reachable
;
386 old_to_new
[i
] = nstates_reachable
++;
390 state_free (states
[i
]);
391 old_to_new
[i
] = nstates
;
395 nstates
= nstates_reachable
;
396 bitset_free (reachable
);
399 /* All the decorated states, indexed by the state number. */
400 state
**states
= NULL
;
403 /*----------------------.
404 | Free all the states. |
405 `----------------------*/
411 for (i
= 0; i
< nstates
; ++i
)
412 state_free (states
[i
]);