]> git.saurik.com Git - bison.git/blob - src/tables.c
ad850f4d6ee508ff0d12b15975e8d76c5ca04ebc
[bison.git] / src / tables.c
1 /* Output the generated parsing program for Bison.
2
3 Copyright (C) 1984, 1986, 1989, 1992, 2000-2006, 2009-2012 Free
4 Software Foundation, Inc.
5
6 This file is part of Bison, the GNU Compiler Compiler.
7
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.
12
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.
17
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/>. */
20
21 #include <config.h>
22 #include "system.h"
23
24 #include <bitsetv.h>
25
26 #include "complain.h"
27 #include "conflicts.h"
28 #include "files.h"
29 #include "getargs.h"
30 #include "gram.h"
31 #include "lalr.h"
32 #include "muscle-tab.h"
33 #include "reader.h"
34 #include "symtab.h"
35 #include "tables.h"
36
37 /* Several tables are indexed both by state and nonterminal numbers.
38 We call such an index a `vector'; i.e., a vector is either a state
39 or a nonterminal number.
40
41 Of course vector_number_t ought to be wide enough to contain
42 state_number and symbol_number. */
43 typedef int vector_number;
44
45 #if 0 /* Not currently used. */
46 static inline vector_number
47 state_number_to_vector_number (state_number s)
48 {
49 return s;
50 }
51 #endif
52
53 static inline vector_number
54 symbol_number_to_vector_number (symbol_number sym)
55 {
56 return state_number_as_int (nstates) + sym - ntokens;
57 }
58
59 int nvectors;
60
61
62 /* FROMS and TOS are indexed by vector_number.
63
64 If VECTOR is a nonterminal, (FROMS[VECTOR], TOS[VECTOR]) form an
65 array of state numbers of the non defaulted GOTO on VECTOR.
66
67 If VECTOR is a state, TOS[VECTOR] is the array of actions to do on
68 the (array of) symbols FROMS[VECTOR].
69
70 In both cases, TALLY[VECTOR] is the size of the arrays
71 FROMS[VECTOR], TOS[VECTOR]; and WIDTH[VECTOR] =
72 (FROMS[VECTOR][SIZE] - FROMS[VECTOR][0] + 1) where SIZE =
73 TALLY[VECTOR].
74
75 FROMS therefore contains symbol_number and action_number,
76 TOS state_number and action_number,
77 TALLY sizes,
78 WIDTH differences of FROMS.
79
80 Let base_number be the type of FROMS, TOS, and WIDTH. */
81 #define BASE_MAXIMUM INT_MAX
82 #define BASE_MINIMUM INT_MIN
83
84 static base_number **froms;
85 static base_number **tos;
86 static unsigned int **conflict_tos;
87 static size_t *tally;
88 static base_number *width;
89
90
91 /* For a given state, N = ACTROW[SYMBOL]:
92
93 If N = 0, stands for `run the default action'.
94 If N = MIN, stands for `raise a syntax error'.
95 If N > 0, stands for `shift SYMBOL and go to n'.
96 If N < 0, stands for `reduce -N'. */
97 typedef int action_number;
98 #define ACTION_NUMBER_MINIMUM INT_MIN
99
100 static action_number *actrow;
101
102 /* FROMS and TOS are reordered to be compressed. ORDER[VECTOR] is the
103 new vector number of VECTOR. We skip `empty' vectors (i.e.,
104 TALLY[VECTOR] = 0), and call these `entries'. */
105 static vector_number *order;
106 static int nentries;
107
108 base_number *base = NULL;
109 /* A distinguished value of BASE, negative infinite. During the
110 computation equals to BASE_MINIMUM, later mapped to BASE_NINF to
111 keep parser tables small. */
112 base_number base_ninf = 0;
113 static base_number *pos = NULL;
114
115 static unsigned int *conflrow;
116 unsigned int *conflict_table;
117 unsigned int *conflict_list;
118 int conflict_list_cnt;
119 static int conflict_list_free;
120
121 /* TABLE_SIZE is the allocated size of both TABLE and CHECK. We start
122 with more or less the original hard-coded value (which was
123 SHRT_MAX). */
124 static int table_size = 32768;
125 base_number *table;
126 base_number *check;
127 /* The value used in TABLE to denote explicit syntax errors
128 (%nonassoc), a negative infinite. First defaults to ACTION_NUMBER_MINIMUM,
129 but in order to keep small tables, renumbered as TABLE_ERROR, which
130 is the smallest (non error) value minus 1. */
131 base_number table_ninf = 0;
132 static int lowzero;
133 int high;
134
135 state_number *yydefgoto;
136 rule_number *yydefact;
137
138 /*-------------------------------------------------------------------.
139 | If TABLE, CONFLICT_TABLE, and CHECK are too small to be addressed |
140 | at DESIRED, grow them. TABLE[DESIRED] can be used, so the desired |
141 | size is at least DESIRED + 1. |
142 `-------------------------------------------------------------------*/
143
144 static void
145 table_grow (int desired)
146 {
147 int old_size = table_size;
148
149 while (table_size <= desired)
150 table_size *= 2;
151
152 if (trace_flag & trace_resource)
153 fprintf (stderr, "growing table and check from: %d to %d\n",
154 old_size, table_size);
155
156 table = xnrealloc (table, table_size, sizeof *table);
157 conflict_table = xnrealloc (conflict_table, table_size,
158 sizeof *conflict_table);
159 check = xnrealloc (check, table_size, sizeof *check);
160
161 for (/* Nothing. */; old_size < table_size; ++old_size)
162 {
163 table[old_size] = 0;
164 conflict_table[old_size] = 0;
165 check[old_size] = -1;
166 }
167 }
168
169
170
171
172 /*-------------------------------------------------------------------.
173 | For GLR parsers, for each conflicted token in S, as indicated |
174 | by non-zero entries in CONFLROW, create a list of possible |
175 | reductions that are alternatives to the shift or reduction |
176 | currently recorded for that token in S. Store the alternative |
177 | reductions followed by a 0 in CONFLICT_LIST, updating |
178 | CONFLICT_LIST_CNT, and storing an index to the start of the list |
179 | back into CONFLROW. |
180 `-------------------------------------------------------------------*/
181
182 static void
183 conflict_row (state *s)
184 {
185 int i, j;
186 reductions *reds = s->reductions;
187
188 if (!nondeterministic_parser)
189 return;
190
191 for (j = 0; j < ntokens; j += 1)
192 if (conflrow[j])
193 {
194 conflrow[j] = conflict_list_cnt;
195
196 /* Find all reductions for token J, and record all that do not
197 match ACTROW[J]. */
198 for (i = 0; i < reds->num; i += 1)
199 if (bitset_test (reds->lookahead_tokens[i], j)
200 && (actrow[j]
201 != rule_number_as_item_number (reds->rules[i]->number)))
202 {
203 aver (0 < conflict_list_free);
204 conflict_list[conflict_list_cnt] = reds->rules[i]->number + 1;
205 conflict_list_cnt += 1;
206 conflict_list_free -= 1;
207 }
208
209 /* Leave a 0 at the end. */
210 aver (0 < conflict_list_free);
211 conflict_list[conflict_list_cnt] = 0;
212 conflict_list_cnt += 1;
213 conflict_list_free -= 1;
214 }
215 }
216
217
218 /*------------------------------------------------------------------.
219 | Decide what to do for each type of token if seen as the |
220 | lookahead in specified state. The value returned is used as the |
221 | default action (yydefact) for the state. In addition, ACTROW is |
222 | filled with what to do for each kind of token, index by symbol |
223 | number, with zero meaning do the default action. The value |
224 | ACTION_NUMBER_MINIMUM, a very negative number, means this |
225 | situation is an error. The parser recognizes this value |
226 | specially. |
227 | |
228 | This is where conflicts are resolved. The loop over lookahead |
229 | rules considered lower-numbered rules last, and the last rule |
230 | considered that likes a token gets to handle it. |
231 | |
232 | For GLR parsers, also sets CONFLROW[SYM] to an index into |
233 | CONFLICT_LIST iff there is an unresolved conflict (s/r or r/r) |
234 | with symbol SYM. The default reduction is not used for a symbol |
235 | that has any such conflicts. |
236 `------------------------------------------------------------------*/
237
238 static rule *
239 action_row (state *s)
240 {
241 int i;
242 rule *default_reduction = NULL;
243 reductions *reds = s->reductions;
244 transitions *trans = s->transitions;
245 errs *errp = s->errs;
246 /* Set to nonzero to inhibit having any default reduction. */
247 bool nodefault = false;
248 bool conflicted = false;
249
250 for (i = 0; i < ntokens; i++)
251 actrow[i] = conflrow[i] = 0;
252
253 if (reds->lookahead_tokens)
254 {
255 int j;
256 bitset_iterator biter;
257 /* loop over all the rules available here which require
258 lookahead (in reverse order to give precedence to the first
259 rule) */
260 for (i = reds->num - 1; i >= 0; --i)
261 /* and find each token which the rule finds acceptable
262 to come next */
263 BITSET_FOR_EACH (biter, reds->lookahead_tokens[i], j, 0)
264 {
265 /* and record this rule as the rule to use if that
266 token follows. */
267 if (actrow[j] != 0)
268 {
269 conflicted = true;
270 conflrow[j] = 1;
271 }
272 actrow[j] = rule_number_as_item_number (reds->rules[i]->number);
273 }
274 }
275
276 /* Now see which tokens are allowed for shifts in this state. For
277 them, record the shift as the thing to do. So shift is preferred
278 to reduce. */
279 FOR_EACH_SHIFT (trans, i)
280 {
281 symbol_number sym = TRANSITION_SYMBOL (trans, i);
282 state *shift_state = trans->states[i];
283
284 if (actrow[sym] != 0)
285 {
286 conflicted = true;
287 conflrow[sym] = 1;
288 }
289 actrow[sym] = state_number_as_int (shift_state->number);
290
291 /* Do not use any default reduction if there is a shift for
292 error */
293 if (sym == errtoken->number)
294 nodefault = true;
295 }
296
297 /* See which tokens are an explicit error in this state (due to
298 %nonassoc). For them, record ACTION_NUMBER_MINIMUM as the
299 action. */
300 for (i = 0; i < errp->num; i++)
301 {
302 symbol *sym = errp->symbols[i];
303 actrow[sym->number] = ACTION_NUMBER_MINIMUM;
304 }
305
306 /* Turn off default reductions where requested by the user. See
307 state_lookahead_tokens_count in lalr.c to understand when states are
308 labeled as consistent. */
309 {
310 char *default_reductions =
311 muscle_percent_define_get ("lr.default-reduction");
312 if (STRNEQ (default_reductions, "most") && !s->consistent)
313 nodefault = true;
314 free (default_reductions);
315 }
316
317 /* Now find the most common reduction and make it the default action
318 for this state. */
319
320 if (reds->num >= 1 && !nodefault)
321 {
322 if (s->consistent)
323 default_reduction = reds->rules[0];
324 else
325 {
326 int max = 0;
327 for (i = 0; i < reds->num; i++)
328 {
329 int count = 0;
330 rule *r = reds->rules[i];
331 symbol_number j;
332
333 for (j = 0; j < ntokens; j++)
334 if (actrow[j] == rule_number_as_item_number (r->number))
335 count++;
336
337 if (count > max)
338 {
339 max = count;
340 default_reduction = r;
341 }
342 }
343
344 /* GLR parsers need space for conflict lists, so we can't
345 default conflicted entries. For non-conflicted entries
346 or as long as we are not building a GLR parser,
347 actions that match the default are replaced with zero,
348 which means "use the default". */
349
350 if (max > 0)
351 {
352 int j;
353 for (j = 0; j < ntokens; j++)
354 if (actrow[j]
355 == rule_number_as_item_number (default_reduction->number)
356 && ! (nondeterministic_parser && conflrow[j]))
357 actrow[j] = 0;
358 }
359 }
360 }
361
362 /* If have no default reduction, the default is an error.
363 So replace any action which says "error" with "use default". */
364
365 if (!default_reduction)
366 for (i = 0; i < ntokens; i++)
367 if (actrow[i] == ACTION_NUMBER_MINIMUM)
368 actrow[i] = 0;
369
370 if (conflicted)
371 conflict_row (s);
372
373 return default_reduction;
374 }
375
376
377 /*----------------------------------------.
378 | Set FROMS, TOS, TALLY and WIDTH for S. |
379 `----------------------------------------*/
380
381 static void
382 save_row (state_number s)
383 {
384 symbol_number i;
385
386 /* Number of non default actions in S. */
387 size_t count = 0;
388 for (i = 0; i < ntokens; i++)
389 if (actrow[i] != 0)
390 count++;
391
392 if (count)
393 {
394 /* Allocate non defaulted actions. */
395 base_number *sp1 = froms[s] = xnmalloc (count, sizeof *sp1);
396 base_number *sp2 = tos[s] = xnmalloc (count, sizeof *sp2);
397 unsigned int *sp3 = conflict_tos[s] =
398 nondeterministic_parser ? xnmalloc (count, sizeof *sp3) : NULL;;
399
400 /* Store non defaulted actions. */
401 for (i = 0; i < ntokens; i++)
402 if (actrow[i] != 0)
403 {
404 *sp1++ = i;
405 *sp2++ = actrow[i];
406 if (nondeterministic_parser)
407 *sp3++ = conflrow[i];
408 }
409
410 tally[s] = count;
411 width[s] = sp1[-1] - froms[s][0] + 1;
412 }
413 }
414
415
416 /*------------------------------------------------------------------.
417 | Figure out the actions for the specified state, indexed by |
418 | lookahead token type. |
419 | |
420 | The YYDEFACT table is output now. The detailed info is saved for |
421 | putting into YYTABLE later. |
422 `------------------------------------------------------------------*/
423
424 static void
425 token_actions (void)
426 {
427 state_number i;
428 symbol_number j;
429 rule_number r;
430
431 int nconflict = nondeterministic_parser ? conflicts_total_count () : 0;
432
433 yydefact = xnmalloc (nstates, sizeof *yydefact);
434
435 actrow = xnmalloc (ntokens, sizeof *actrow);
436 conflrow = xnmalloc (ntokens, sizeof *conflrow);
437
438 conflict_list = xnmalloc (1 + 2 * nconflict, sizeof *conflict_list);
439 conflict_list_free = 2 * nconflict;
440 conflict_list_cnt = 1;
441
442 /* Find the rules which are reduced. */
443 if (!nondeterministic_parser)
444 for (r = 0; r < nrules; ++r)
445 rules[r].useful = false;
446
447 for (i = 0; i < nstates; ++i)
448 {
449 rule *default_reduction = action_row (states[i]);
450 yydefact[i] = default_reduction ? default_reduction->number + 1 : 0;
451 save_row (i);
452
453 /* Now that the parser was computed, we can find which rules are
454 really reduced, and which are not because of SR or RR
455 conflicts. */
456 if (!nondeterministic_parser)
457 {
458 for (j = 0; j < ntokens; ++j)
459 if (actrow[j] < 0 && actrow[j] != ACTION_NUMBER_MINIMUM)
460 rules[item_number_as_rule_number (actrow[j])].useful = true;
461 if (yydefact[i])
462 rules[yydefact[i] - 1].useful = true;
463 }
464 }
465
466 free (actrow);
467 free (conflrow);
468 }
469
470
471 /*------------------------------------------------------------------.
472 | Compute FROMS[VECTOR], TOS[VECTOR], TALLY[VECTOR], WIDTH[VECTOR], |
473 | i.e., the information related to non defaulted GOTO on the nterm |
474 | SYM. |
475 | |
476 | DEFAULT_STATE is the principal destination on SYM, i.e., the |
477 | default GOTO destination on SYM. |
478 `------------------------------------------------------------------*/
479
480 static void
481 save_column (symbol_number sym, state_number default_state)
482 {
483 goto_number i;
484 goto_number begin = goto_map[sym - ntokens];
485 goto_number end = goto_map[sym - ntokens + 1];
486
487 /* Number of non default GOTO. */
488 size_t count = 0;
489 for (i = begin; i < end; i++)
490 if (to_state[i] != default_state)
491 count++;
492
493 if (count)
494 {
495 /* Allocate room for non defaulted gotos. */
496 vector_number symno = symbol_number_to_vector_number (sym);
497 base_number *sp1 = froms[symno] = xnmalloc (count, sizeof *sp1);
498 base_number *sp2 = tos[symno] = xnmalloc (count, sizeof *sp2);
499
500 /* Store the state numbers of the non defaulted gotos. */
501 for (i = begin; i < end; i++)
502 if (to_state[i] != default_state)
503 {
504 *sp1++ = from_state[i];
505 *sp2++ = to_state[i];
506 }
507
508 tally[symno] = count;
509 width[symno] = sp1[-1] - froms[symno][0] + 1;
510 }
511 }
512
513
514 /*-------------------------------------------------------------.
515 | Return `the' most common destination GOTO on SYM (a nterm). |
516 `-------------------------------------------------------------*/
517
518 static state_number
519 default_goto (symbol_number sym, size_t state_count[])
520 {
521 state_number s;
522 goto_number i;
523 goto_number m = goto_map[sym - ntokens];
524 goto_number n = goto_map[sym - ntokens + 1];
525 state_number default_state = -1;
526 size_t max = 0;
527
528 if (m == n)
529 return -1;
530
531 for (s = 0; s < nstates; s++)
532 state_count[s] = 0;
533
534 for (i = m; i < n; i++)
535 state_count[to_state[i]]++;
536
537 for (s = 0; s < nstates; s++)
538 if (state_count[s] > max)
539 {
540 max = state_count[s];
541 default_state = s;
542 }
543
544 return default_state;
545 }
546
547
548 /*-------------------------------------------------------------------.
549 | Figure out what to do after reducing with each rule, depending on |
550 | the saved state from before the beginning of parsing the data that |
551 | matched this rule. |
552 | |
553 | The YYDEFGOTO table is output now. The detailed info is saved for |
554 | putting into YYTABLE later. |
555 `-------------------------------------------------------------------*/
556
557 static void
558 goto_actions (void)
559 {
560 symbol_number i;
561 size_t *state_count = xnmalloc (nstates, sizeof *state_count);
562 yydefgoto = xnmalloc (nvars, sizeof *yydefgoto);
563
564 /* For a given nterm I, STATE_COUNT[S] is the number of times there
565 is a GOTO to S on I. */
566 for (i = ntokens; i < nsyms; ++i)
567 {
568 state_number default_state = default_goto (i, state_count);
569 save_column (i, default_state);
570 yydefgoto[i - ntokens] = default_state;
571 }
572 free (state_count);
573 }
574
575
576 /*------------------------------------------------------------------.
577 | Compute ORDER, a reordering of vectors, in order to decide how to |
578 | pack the actions and gotos information into yytable. |
579 `------------------------------------------------------------------*/
580
581 static void
582 sort_actions (void)
583 {
584 int i;
585
586 nentries = 0;
587
588 for (i = 0; i < nvectors; i++)
589 if (0 < tally[i])
590 {
591 int k;
592 size_t t = tally[i];
593 int w = width[i];
594 int j = nentries - 1;
595
596 while (0 <= j && width[order[j]] < w)
597 j--;
598
599 while (0 <= j && width[order[j]] == w && tally[order[j]] < t)
600 j--;
601
602 for (k = nentries - 1; k > j; k--)
603 order[k + 1] = order[k];
604
605 order[j + 1] = i;
606 nentries++;
607 }
608 }
609
610
611 /* If VECTOR is a state whose actions (reflected by FROMS, TOS, TALLY
612 and WIDTH of VECTOR) are common to a previous state, return this
613 state number.
614
615 In any other case, return -1. */
616
617 static state_number
618 matching_state (vector_number vector)
619 {
620 vector_number i = order[vector];
621 size_t t;
622 int w;
623 int prev;
624
625 /* If VECTOR is a nterm, return -1. */
626 if (nstates <= i)
627 return -1;
628
629 t = tally[i];
630 w = width[i];
631
632 /* If VECTOR has GLR conflicts, return -1 */
633 if (conflict_tos[i] != NULL)
634 {
635 int j;
636 for (j = 0; j < t; j += 1)
637 if (conflict_tos[i][j] != 0)
638 return -1;
639 }
640
641 for (prev = vector - 1; prev >= 0; prev--)
642 {
643 vector_number j = order[prev];
644 int k;
645 int match = 1;
646
647 /* Given how ORDER was computed, if the WIDTH or TALLY is
648 different, there cannot be a matching state. */
649 if (width[j] != w || tally[j] != t)
650 return -1;
651
652 for (k = 0; match && k < t; k++)
653 if (tos[j][k] != tos[i][k]
654 || froms[j][k] != froms[i][k]
655 || (conflict_tos[j] != NULL && conflict_tos[j][k] != 0))
656 match = 0;
657
658 if (match)
659 return j;
660 }
661
662 return -1;
663 }
664
665
666 static base_number
667 pack_vector (vector_number vector)
668 {
669 base_number res;
670 vector_number i = order[vector];
671 size_t t = tally[i];
672 base_number *from = froms[i];
673 base_number *to = tos[i];
674 unsigned int *conflict_to = conflict_tos[i];
675
676 aver (t != 0);
677
678 for (res = lowzero - from[0]; ; res++)
679 {
680 bool ok = true;
681 aver (res < table_size);
682 {
683 int k;
684 for (k = 0; ok && k < t; k++)
685 {
686 int loc = res + state_number_as_int (from[k]);
687 if (table_size <= loc)
688 table_grow (loc);
689
690 if (table[loc] != 0)
691 ok = false;
692 }
693
694 if (ok)
695 for (k = 0; k < vector; k++)
696 if (pos[k] == res)
697 ok = false;
698 }
699
700 if (ok)
701 {
702 int loc;
703 int k;
704 for (k = 0; k < t; k++)
705 {
706 loc = res + state_number_as_int (from[k]);
707 table[loc] = to[k];
708 if (nondeterministic_parser && conflict_to != NULL)
709 conflict_table[loc] = conflict_to[k];
710 check[loc] = from[k];
711 }
712
713 while (table[lowzero] != 0)
714 lowzero++;
715
716 if (high < loc)
717 high = loc;
718
719 aver (BASE_MINIMUM <= res && res <= BASE_MAXIMUM);
720 return res;
721 }
722 }
723 }
724
725
726 /*-------------------------------------------------------------.
727 | Remap the negative infinite in TAB from NINF to the greatest |
728 | possible smallest value. Return it. |
729 | |
730 | In most case this allows us to use shorts instead of ints in |
731 | parsers. |
732 `-------------------------------------------------------------*/
733
734 static base_number
735 table_ninf_remap (base_number tab[], int size, base_number ninf)
736 {
737 base_number res = 0;
738 int i;
739
740 for (i = 0; i < size; i++)
741 if (tab[i] < res && tab[i] != ninf)
742 res = tab[i];
743
744 --res;
745
746 for (i = 0; i < size; i++)
747 if (tab[i] == ninf)
748 tab[i] = res;
749
750 return res;
751 }
752
753 static void
754 pack_table (void)
755 {
756 int i;
757
758 base = xnmalloc (nvectors, sizeof *base);
759 pos = xnmalloc (nentries, sizeof *pos);
760 table = xcalloc (table_size, sizeof *table);
761 conflict_table = xcalloc (table_size, sizeof *conflict_table);
762 check = xnmalloc (table_size, sizeof *check);
763
764 lowzero = 0;
765 high = 0;
766
767 for (i = 0; i < nvectors; i++)
768 base[i] = BASE_MINIMUM;
769
770 for (i = 0; i < table_size; i++)
771 check[i] = -1;
772
773 for (i = 0; i < nentries; i++)
774 {
775 state_number s = matching_state (i);
776 base_number place;
777
778 if (s < 0)
779 /* A new set of state actions, or a nonterminal. */
780 place = pack_vector (i);
781 else
782 /* Action of I were already coded for S. */
783 place = base[s];
784
785 pos[i] = place;
786 base[order[i]] = place;
787 }
788
789 /* Use the greatest possible negative infinites. */
790 base_ninf = table_ninf_remap (base, nvectors, BASE_MINIMUM);
791 table_ninf = table_ninf_remap (table, high + 1, ACTION_NUMBER_MINIMUM);
792
793 free (pos);
794 }
795
796 \f
797
798 /*-----------------------------------------------------------------.
799 | Compute and output yydefact, yydefgoto, yypact, yypgoto, yytable |
800 | and yycheck. |
801 `-----------------------------------------------------------------*/
802
803 void
804 tables_generate (void)
805 {
806 int i;
807
808 /* This is a poor way to make sure the sizes are properly
809 correlated. In particular the signedness is not taken into
810 account. But it's not useless. */
811 verify (sizeof nstates <= sizeof nvectors
812 && sizeof nvars <= sizeof nvectors);
813
814 nvectors = state_number_as_int (nstates) + nvars;
815
816 froms = xcalloc (nvectors, sizeof *froms);
817 tos = xcalloc (nvectors, sizeof *tos);
818 conflict_tos = xcalloc (nvectors, sizeof *conflict_tos);
819 tally = xcalloc (nvectors, sizeof *tally);
820 width = xnmalloc (nvectors, sizeof *width);
821
822 token_actions ();
823
824 goto_actions ();
825 free (goto_map);
826 free (from_state);
827 free (to_state);
828
829 order = xcalloc (nvectors, sizeof *order);
830 sort_actions ();
831 pack_table ();
832 free (order);
833
834 free (tally);
835 free (width);
836
837 for (i = 0; i < nvectors; i++)
838 {
839 free (froms[i]);
840 free (tos[i]);
841 free (conflict_tos[i]);
842 }
843
844 free (froms);
845 free (tos);
846 free (conflict_tos);
847 }
848
849
850 /*-------------------------.
851 | Free the parser tables. |
852 `-------------------------*/
853
854 void
855 tables_free (void)
856 {
857 free (base);
858 free (conflict_table);
859 free (conflict_list);
860 free (table);
861 free (check);
862 free (yydefgoto);
863 free (yydefact);
864 }