]> git.saurik.com Git - bison.git/blob - src/tables.c
f99f07b234f0fd487245403fc337f9fe9e8b5f87
[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 int nconflict = nondeterministic_parser ? conflicts_total_count () : 0;
428
429 yydefact = xnmalloc (nstates, sizeof *yydefact);
430
431 actrow = xnmalloc (ntokens, sizeof *actrow);
432 conflrow = xnmalloc (ntokens, sizeof *conflrow);
433
434 conflict_list = xnmalloc (1 + 2 * nconflict, sizeof *conflict_list);
435 conflict_list_free = 2 * nconflict;
436 conflict_list_cnt = 1;
437
438 /* Find the rules which are reduced. */
439 if (!nondeterministic_parser)
440 {
441 rule_number r;
442 for (r = 0; r < nrules; ++r)
443 rules[r].useful = false;
444 }
445
446 {
447 state_number i;
448 for (i = 0; i < nstates; ++i)
449 {
450 rule *default_reduction = action_row (states[i]);
451 yydefact[i] = default_reduction ? default_reduction->number + 1 : 0;
452 save_row (i);
453
454 /* Now that the parser was computed, we can find which rules are
455 really reduced, and which are not because of SR or RR
456 conflicts. */
457 if (!nondeterministic_parser)
458 {
459 symbol_number j;
460 for (j = 0; j < ntokens; ++j)
461 if (actrow[j] < 0 && actrow[j] != ACTION_NUMBER_MINIMUM)
462 rules[item_number_as_rule_number (actrow[j])].useful = true;
463 if (yydefact[i])
464 rules[yydefact[i] - 1].useful = true;
465 }
466 }
467 }
468 free (actrow);
469 free (conflrow);
470 }
471
472
473 /*------------------------------------------------------------------.
474 | Compute FROMS[VECTOR], TOS[VECTOR], TALLY[VECTOR], WIDTH[VECTOR], |
475 | i.e., the information related to non defaulted GOTO on the nterm |
476 | SYM. |
477 | |
478 | DEFAULT_STATE is the principal destination on SYM, i.e., the |
479 | default GOTO destination on SYM. |
480 `------------------------------------------------------------------*/
481
482 static void
483 save_column (symbol_number sym, state_number default_state)
484 {
485 goto_number i;
486 goto_number begin = goto_map[sym - ntokens];
487 goto_number end = goto_map[sym - ntokens + 1];
488
489 /* Number of non default GOTO. */
490 size_t count = 0;
491 for (i = begin; i < end; i++)
492 if (to_state[i] != default_state)
493 count++;
494
495 if (count)
496 {
497 /* Allocate room for non defaulted gotos. */
498 vector_number symno = symbol_number_to_vector_number (sym);
499 base_number *sp1 = froms[symno] = xnmalloc (count, sizeof *sp1);
500 base_number *sp2 = tos[symno] = xnmalloc (count, sizeof *sp2);
501
502 /* Store the state numbers of the non defaulted gotos. */
503 for (i = begin; i < end; i++)
504 if (to_state[i] != default_state)
505 {
506 *sp1++ = from_state[i];
507 *sp2++ = to_state[i];
508 }
509
510 tally[symno] = count;
511 width[symno] = sp1[-1] - froms[symno][0] + 1;
512 }
513 }
514
515
516 /*-------------------------------------------------------------.
517 | Return `the' most common destination GOTO on SYM (a nterm). |
518 `-------------------------------------------------------------*/
519
520 static state_number
521 default_goto (symbol_number sym, size_t state_count[])
522 {
523 state_number s;
524 goto_number i;
525 goto_number m = goto_map[sym - ntokens];
526 goto_number n = goto_map[sym - ntokens + 1];
527 state_number default_state = -1;
528 size_t max = 0;
529
530 if (m == n)
531 return -1;
532
533 for (s = 0; s < nstates; s++)
534 state_count[s] = 0;
535
536 for (i = m; i < n; i++)
537 state_count[to_state[i]]++;
538
539 for (s = 0; s < nstates; s++)
540 if (state_count[s] > max)
541 {
542 max = state_count[s];
543 default_state = s;
544 }
545
546 return default_state;
547 }
548
549
550 /*-------------------------------------------------------------------.
551 | Figure out what to do after reducing with each rule, depending on |
552 | the saved state from before the beginning of parsing the data that |
553 | matched this rule. |
554 | |
555 | The YYDEFGOTO table is output now. The detailed info is saved for |
556 | putting into YYTABLE later. |
557 `-------------------------------------------------------------------*/
558
559 static void
560 goto_actions (void)
561 {
562 symbol_number i;
563 size_t *state_count = xnmalloc (nstates, sizeof *state_count);
564 yydefgoto = xnmalloc (nvars, sizeof *yydefgoto);
565
566 /* For a given nterm I, STATE_COUNT[S] is the number of times there
567 is a GOTO to S on I. */
568 for (i = ntokens; i < nsyms; ++i)
569 {
570 state_number default_state = default_goto (i, state_count);
571 save_column (i, default_state);
572 yydefgoto[i - ntokens] = default_state;
573 }
574 free (state_count);
575 }
576
577
578 /*------------------------------------------------------------------.
579 | Compute ORDER, a reordering of vectors, in order to decide how to |
580 | pack the actions and gotos information into yytable. |
581 `------------------------------------------------------------------*/
582
583 static void
584 sort_actions (void)
585 {
586 int i;
587
588 nentries = 0;
589
590 for (i = 0; i < nvectors; i++)
591 if (0 < tally[i])
592 {
593 int k;
594 size_t t = tally[i];
595 int w = width[i];
596 int j = nentries - 1;
597
598 while (0 <= j && width[order[j]] < w)
599 j--;
600
601 while (0 <= j && width[order[j]] == w && tally[order[j]] < t)
602 j--;
603
604 for (k = nentries - 1; k > j; k--)
605 order[k + 1] = order[k];
606
607 order[j + 1] = i;
608 nentries++;
609 }
610 }
611
612
613 /* If VECTOR is a state whose actions (reflected by FROMS, TOS, TALLY
614 and WIDTH of VECTOR) are common to a previous state, return this
615 state number.
616
617 In any other case, return -1. */
618
619 static state_number
620 matching_state (vector_number vector)
621 {
622 vector_number i = order[vector];
623 size_t t;
624 int w;
625 int prev;
626
627 /* If VECTOR is a nterm, return -1. */
628 if (nstates <= i)
629 return -1;
630
631 t = tally[i];
632 w = width[i];
633
634 /* If VECTOR has GLR conflicts, return -1 */
635 if (conflict_tos[i] != NULL)
636 {
637 int j;
638 for (j = 0; j < t; j += 1)
639 if (conflict_tos[i][j] != 0)
640 return -1;
641 }
642
643 for (prev = vector - 1; prev >= 0; prev--)
644 {
645 vector_number j = order[prev];
646 int k;
647 int match = 1;
648
649 /* Given how ORDER was computed, if the WIDTH or TALLY is
650 different, there cannot be a matching state. */
651 if (width[j] != w || tally[j] != t)
652 return -1;
653
654 for (k = 0; match && k < t; k++)
655 if (tos[j][k] != tos[i][k]
656 || froms[j][k] != froms[i][k]
657 || (conflict_tos[j] != NULL && conflict_tos[j][k] != 0))
658 match = 0;
659
660 if (match)
661 return j;
662 }
663
664 return -1;
665 }
666
667
668 static base_number
669 pack_vector (vector_number vector)
670 {
671 base_number res;
672 vector_number i = order[vector];
673 size_t t = tally[i];
674 base_number *from = froms[i];
675 base_number *to = tos[i];
676 unsigned int *conflict_to = conflict_tos[i];
677
678 aver (t != 0);
679
680 for (res = lowzero - from[0]; ; res++)
681 {
682 bool ok = true;
683 aver (res < table_size);
684 {
685 int k;
686 for (k = 0; ok && k < t; k++)
687 {
688 int loc = res + state_number_as_int (from[k]);
689 if (table_size <= loc)
690 table_grow (loc);
691
692 if (table[loc] != 0)
693 ok = false;
694 }
695
696 if (ok)
697 for (k = 0; k < vector; k++)
698 if (pos[k] == res)
699 ok = false;
700 }
701
702 if (ok)
703 {
704 int loc;
705 int k;
706 for (k = 0; k < t; k++)
707 {
708 loc = res + state_number_as_int (from[k]);
709 table[loc] = to[k];
710 if (nondeterministic_parser && conflict_to != NULL)
711 conflict_table[loc] = conflict_to[k];
712 check[loc] = from[k];
713 }
714
715 while (table[lowzero] != 0)
716 lowzero++;
717
718 if (high < loc)
719 high = loc;
720
721 aver (BASE_MINIMUM <= res && res <= BASE_MAXIMUM);
722 return res;
723 }
724 }
725 }
726
727
728 /*-------------------------------------------------------------.
729 | Remap the negative infinite in TAB from NINF to the greatest |
730 | possible smallest value. Return it. |
731 | |
732 | In most case this allows us to use shorts instead of ints in |
733 | parsers. |
734 `-------------------------------------------------------------*/
735
736 static base_number
737 table_ninf_remap (base_number tab[], int size, base_number ninf)
738 {
739 base_number res = 0;
740 int i;
741
742 for (i = 0; i < size; i++)
743 if (tab[i] < res && tab[i] != ninf)
744 res = tab[i];
745
746 --res;
747
748 for (i = 0; i < size; i++)
749 if (tab[i] == ninf)
750 tab[i] = res;
751
752 return res;
753 }
754
755 static void
756 pack_table (void)
757 {
758 int i;
759
760 base = xnmalloc (nvectors, sizeof *base);
761 pos = xnmalloc (nentries, sizeof *pos);
762 table = xcalloc (table_size, sizeof *table);
763 conflict_table = xcalloc (table_size, sizeof *conflict_table);
764 check = xnmalloc (table_size, sizeof *check);
765
766 lowzero = 0;
767 high = 0;
768
769 for (i = 0; i < nvectors; i++)
770 base[i] = BASE_MINIMUM;
771
772 for (i = 0; i < table_size; i++)
773 check[i] = -1;
774
775 for (i = 0; i < nentries; i++)
776 {
777 state_number s = matching_state (i);
778 base_number place;
779
780 if (s < 0)
781 /* A new set of state actions, or a nonterminal. */
782 place = pack_vector (i);
783 else
784 /* Action of I were already coded for S. */
785 place = base[s];
786
787 pos[i] = place;
788 base[order[i]] = place;
789 }
790
791 /* Use the greatest possible negative infinites. */
792 base_ninf = table_ninf_remap (base, nvectors, BASE_MINIMUM);
793 table_ninf = table_ninf_remap (table, high + 1, ACTION_NUMBER_MINIMUM);
794
795 free (pos);
796 }
797
798 \f
799
800 /*-----------------------------------------------------------------.
801 | Compute and output yydefact, yydefgoto, yypact, yypgoto, yytable |
802 | and yycheck. |
803 `-----------------------------------------------------------------*/
804
805 void
806 tables_generate (void)
807 {
808 int i;
809
810 /* This is a poor way to make sure the sizes are properly
811 correlated. In particular the signedness is not taken into
812 account. But it's not useless. */
813 verify (sizeof nstates <= sizeof nvectors
814 && sizeof nvars <= sizeof nvectors);
815
816 nvectors = state_number_as_int (nstates) + nvars;
817
818 froms = xcalloc (nvectors, sizeof *froms);
819 tos = xcalloc (nvectors, sizeof *tos);
820 conflict_tos = xcalloc (nvectors, sizeof *conflict_tos);
821 tally = xcalloc (nvectors, sizeof *tally);
822 width = xnmalloc (nvectors, sizeof *width);
823
824 token_actions ();
825
826 goto_actions ();
827 free (goto_map);
828 free (from_state);
829 free (to_state);
830
831 order = xcalloc (nvectors, sizeof *order);
832 sort_actions ();
833 pack_table ();
834 free (order);
835
836 free (tally);
837 free (width);
838
839 for (i = 0; i < nvectors; i++)
840 {
841 free (froms[i]);
842 free (tos[i]);
843 free (conflict_tos[i]);
844 }
845
846 free (froms);
847 free (tos);
848 free (conflict_tos);
849 }
850
851
852 /*-------------------------.
853 | Free the parser tables. |
854 `-------------------------*/
855
856 void
857 tables_free (void)
858 {
859 free (base);
860 free (conflict_table);
861 free (conflict_list);
862 free (table);
863 free (check);
864 free (yydefgoto);
865 free (yydefact);
866 }