1 /* Type definitions for nondeterministic finite state machine for Bison.
3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free
4 Software Foundation, Inc.
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/>. */
29 #include "print-xml.h"
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
)
63 aver (j
< shifts
->num
);
64 if (TRANSITION_SYMBOL (shifts
, j
) == sym
)
65 return shifts
->states
[j
];
70 /*--------------------.
71 | Error transitions. |
72 `--------------------*/
75 /*---------------------------------.
76 | Create a new array of NUM errs. |
77 `---------------------------------*/
80 errs_new (int num
, symbol
**tokens
)
82 size_t symbols_size
= num
* sizeof *tokens
;
83 errs
*res
= xmalloc (offsetof (errs
, symbols
) + symbols_size
);
85 memcpy (res
->symbols
, tokens
, symbols_size
);
97 /*---------------------------------------.
98 | Create a new array of NUM reductions. |
99 `---------------------------------------*/
102 reductions_new (int num
, rule
**reds
)
104 size_t rules_size
= num
* sizeof *reds
;
105 reductions
*res
= xmalloc (offsetof (reductions
, rules
) + rules_size
);
107 res
->lookahead_tokens
= NULL
;
108 memcpy (res
->rules
, reds
, rules_size
);
119 state_number nstates
= 0;
120 /* FINAL_STATE is properly set by new_state when it recognizes its
121 accessing symbol: $end. */
122 state
*final_state
= NULL
;
125 /*------------------------------------------------------------------.
126 | Create a new state with ACCESSING_SYMBOL, for those items. Store |
127 | it in the state hash table. |
128 `------------------------------------------------------------------*/
131 state_new (symbol_number accessing_symbol
,
132 size_t nitems
, item_number
*core
)
135 size_t items_size
= nitems
* sizeof *core
;
137 aver (nstates
< STATE_NUMBER_MAXIMUM
);
139 res
= xmalloc (offsetof (state
, items
) + items_size
);
140 res
->number
= nstates
++;
141 res
->accessing_symbol
= accessing_symbol
;
142 res
->transitions
= NULL
;
143 res
->reductions
= NULL
;
145 res
->state_list
= NULL
;
147 res
->solved_conflicts
= NULL
;
148 res
->solved_conflicts_xml
= NULL
;
150 res
->nitems
= nitems
;
151 memcpy (res
->items
, core
, items_size
);
153 state_hash_insert (res
);
159 state_new_isocore (state
const *s
)
162 size_t items_size
= s
->nitems
* sizeof *s
->items
;
164 aver (nstates
< STATE_NUMBER_MAXIMUM
);
166 res
= xmalloc (offsetof (state
, items
) + items_size
);
167 res
->number
= nstates
++;
168 res
->accessing_symbol
= s
->accessing_symbol
;
170 transitions_new (s
->transitions
->num
, s
->transitions
->states
);
171 res
->reductions
= reductions_new (s
->reductions
->num
, s
->reductions
->rules
);
173 res
->state_list
= NULL
;
174 res
->consistent
= s
->consistent
;
175 res
->solved_conflicts
= NULL
;
176 res
->solved_conflicts_xml
= NULL
;
178 res
->nitems
= s
->nitems
;
179 memcpy (res
->items
, s
->items
, items_size
);
190 state_free (state
*s
)
192 free (s
->transitions
);
193 free (s
->reductions
);
199 /*---------------------------.
200 | Set the transitions of S. |
201 `---------------------------*/
204 state_transitions_set (state
*s
, int num
, state
**trans
)
206 aver (!s
->transitions
);
207 s
->transitions
= transitions_new (num
, trans
);
211 /*--------------------------.
212 | Set the reductions of S. |
213 `--------------------------*/
216 state_reductions_set (state
*s
, int num
, rule
**reds
)
218 aver (!s
->reductions
);
219 s
->reductions
= reductions_new (num
, reds
);
224 state_reduction_find (state
*s
, rule
*r
)
227 reductions
*reds
= s
->reductions
;
228 for (i
= 0; i
< reds
->num
; ++i
)
229 if (reds
->rules
[i
] == r
)
235 /*--------------------.
236 | Set the errs of S. |
237 `--------------------*/
240 state_errs_set (state
*s
, int num
, symbol
**tokens
)
243 s
->errs
= errs_new (num
, tokens
);
248 /*--------------------------------------------------.
249 | Print on OUT all the lookahead tokens such that S |
250 | wants to reduce R. |
251 `--------------------------------------------------*/
254 state_rule_lookahead_tokens_print (state
*s
, rule
*r
, FILE *out
)
256 /* Find the reduction we are handling. */
257 reductions
*reds
= s
->reductions
;
258 int red
= state_reduction_find (s
, r
);
260 /* Print them if there are. */
261 if (reds
->lookahead_tokens
&& red
!= -1)
263 bitset_iterator biter
;
265 char const *sep
= "";
267 BITSET_FOR_EACH (biter
, reds
->lookahead_tokens
[red
], k
, 0)
269 fprintf (out
, "%s%s", sep
, symbols
[k
]->tag
);
277 state_rule_lookahead_tokens_print_xml (state
*s
, rule
*r
,
278 FILE *out
, int level
)
280 /* Find the reduction we are handling. */
281 reductions
*reds
= s
->reductions
;
282 int red
= state_reduction_find (s
, r
);
284 /* Print them if there are. */
285 if (reds
->lookahead_tokens
&& red
!= -1)
287 bitset_iterator biter
;
289 xml_puts (out
, level
, "<lookaheads>");
290 BITSET_FOR_EACH (biter
, reds
->lookahead_tokens
[red
], k
, 0)
292 xml_printf (out
, level
+ 1, "<symbol>%s</symbol>",
293 xml_escape (symbols
[k
]->tag
));
295 xml_puts (out
, level
, "</lookaheads>");
300 /*---------------------.
301 | A state hash table. |
302 `---------------------*/
304 /* Initial capacity of states hash table. */
305 #define HT_INITIAL_CAPACITY 257
307 static struct hash_table
*state_table
= NULL
;
309 /* Two states are equal if they have the same core items. */
311 state_compare (state
const *s1
, state
const *s2
)
315 if (s1
->nitems
!= s2
->nitems
)
318 for (i
= 0; i
< s1
->nitems
; ++i
)
319 if (s1
->items
[i
] != s2
->items
[i
])
326 state_comparator (void const *s1
, void const *s2
)
328 return state_compare (s1
, s2
);
332 state_hash (state
const *s
, size_t tablesize
)
334 /* Add up the state's item numbers to get a hash key. */
337 for (i
= 0; i
< s
->nitems
; ++i
)
339 return key
% tablesize
;
343 state_hasher (void const *s
, size_t tablesize
)
345 return state_hash (s
, tablesize
);
349 /*-------------------------------.
350 | Create the states hash table. |
351 `-------------------------------*/
354 state_hash_new (void)
356 state_table
= hash_initialize (HT_INITIAL_CAPACITY
,
364 /*---------------------------------------------.
365 | Free the states hash table, not the states. |
366 `---------------------------------------------*/
369 state_hash_free (void)
371 hash_free (state_table
);
375 /*-----------------------------------.
376 | Insert S in the state hash table. |
377 `-----------------------------------*/
380 state_hash_insert (state
*s
)
382 hash_insert (state_table
, s
);
386 /*------------------------------------------------------------------.
387 | Find the state associated to the CORE, and return it. If it does |
388 | not exist yet, return NULL. |
389 `------------------------------------------------------------------*/
392 state_hash_lookup (size_t nitems
, item_number
*core
)
394 size_t items_size
= nitems
* sizeof *core
;
395 state
*probe
= xmalloc (offsetof (state
, items
) + items_size
);
398 probe
->nitems
= nitems
;
399 memcpy (probe
->items
, core
, items_size
);
400 entry
= hash_lookup (state_table
, probe
);
406 /*--------------------------------------------------------.
407 | Record S and all states reachable from S in REACHABLE. |
408 `--------------------------------------------------------*/
411 state_record_reachable_states (state
*s
, bitset reachable
)
413 if (bitset_test (reachable
, s
->number
))
415 bitset_set (reachable
, s
->number
);
418 for (i
= 0; i
< s
->transitions
->num
; ++i
)
419 if (!TRANSITION_IS_DISABLED (s
->transitions
, i
))
420 state_record_reachable_states (s
->transitions
->states
[i
], reachable
);
425 state_remove_unreachable_states (state_number old_to_new
[])
427 state_number nstates_reachable
= 0;
428 bitset reachable
= bitset_create (nstates
, BITSET_FIXED
);
429 state_record_reachable_states (states
[0], reachable
);
432 for (i
= 0; i
< nstates
; ++i
)
434 if (bitset_test (reachable
, states
[i
]->number
))
436 states
[nstates_reachable
] = states
[i
];
437 states
[nstates_reachable
]->number
= nstates_reachable
;
438 old_to_new
[i
] = nstates_reachable
++;
442 state_free (states
[i
]);
443 old_to_new
[i
] = nstates
;
447 nstates
= nstates_reachable
;
448 bitset_free (reachable
);
451 /* All the decorated states, indexed by the state number. */
452 state
**states
= NULL
;
455 /*----------------------.
456 | Free all the states. |
457 `----------------------*/
463 for (i
= 0; i
< nstates
; ++i
)
464 state_free (states
[i
]);