1 /* Output the generated parsing program for Bison.
3 Copyright (C) 1984, 1986, 1989, 1992, 2000, 2001, 2002, 2003, 2004
4 Free Software Foundation, Inc.
6 This file is part of Bison, the GNU Compiler Compiler.
8 Bison is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 Bison is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Bison; see the file COPYING. If not, write to the Free
20 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
30 #include "conflicts.h"
39 /* Several tables are indexed both by state and nonterminal numbers.
40 We call such an index a `vector'; i.e., a vector is either a state
41 or a nonterminal number.
43 Of course vector_number_t ought to be wide enough to contain
44 state_number and symbol_number. */
45 typedef int vector_number
;
47 static inline vector_number
48 state_number_to_vector_number (state_number s
)
53 static inline vector_number
54 symbol_number_to_vector_number (symbol_number sym
)
56 return state_number_as_int (nstates
) + sym
- ntokens
;
62 /* FROMS and TOS are indexed by vector_number.
64 If VECTOR is a nonterminal, (FROMS[VECTOR], TOS[VECTOR]) form an
65 array of state numbers of the non defaulted GOTO on VECTOR.
67 If VECTOR is a state, TOS[VECTOR] is the array of actions to do on
68 the (array of) symbols FROMS[VECTOR].
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 =
75 FROMS therefore contains symbol_number and action_number,
76 TOS state_number and action_number,
78 WIDTH differences of FROMS.
80 Let base_number be the type of FROMS, TOS, and WIDTH. */
81 #define BASE_MAXIMUM INT_MAX
82 #define BASE_MINIMUM INT_MIN
84 static base_number
**froms
;
85 static base_number
**tos
;
86 static unsigned int **conflict_tos
;
88 static base_number
*width
;
91 /* For a given state, N = ACTROW[SYMBOL]:
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
100 static action_number
*actrow
;
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
;
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
;
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
;
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
124 static int table_size
= 32768;
127 /* The value used in TABLE to denote explicit syntax errors
128 (%nonassoc), a negative infinite. First defaults to ACTION_NUMBER_MININUM,
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;
135 state_number
*yydefgoto
;
136 rule_number
*yydefact
;
138 /*----------------------------------------------------------------.
139 | If TABLE (and CHECK) appear to be small to be addressed at |
140 | DESIRED, grow them. Note that TABLE[DESIRED] is to be used, so |
141 | the desired size is at least DESIRED + 1. |
142 `----------------------------------------------------------------*/
145 table_grow (int desired
)
147 int old_size
= table_size
;
149 while (table_size
<= desired
)
152 if (trace_flag
& trace_resource
)
153 fprintf (stderr
, "growing table and check from: %d to %d\n",
154 old_size
, table_size
);
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
);
161 for (/* Nothing. */; old_size
< table_size
; ++old_size
)
164 conflict_table
[old_size
] = 0;
165 check
[old_size
] = -1;
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 `-------------------------------------------------------------------*/
183 conflict_row (state
*s
)
186 reductions
*reds
= s
->reductions
;
188 if (!nondeterministic_parser
)
191 for (j
= 0; j
< ntokens
; j
+= 1)
194 conflrow
[j
] = conflict_list_cnt
;
196 /* Find all reductions for token J, and record all that do not
198 for (i
= 0; i
< reds
->num
; i
+= 1)
199 if (bitset_test (reds
->look_ahead_tokens
[i
], j
)
201 != rule_number_as_item_number (reds
->rules
[i
]->number
)))
203 if (conflict_list_free
<= 0)
205 conflict_list
[conflict_list_cnt
] = reds
->rules
[i
]->number
+ 1;
206 conflict_list_cnt
+= 1;
207 conflict_list_free
-= 1;
210 /* Leave a 0 at the end. */
211 if (conflict_list_free
<= 0)
213 conflict_list
[conflict_list_cnt
] = 0;
214 conflict_list_cnt
+= 1;
215 conflict_list_free
-= 1;
220 /*------------------------------------------------------------------.
221 | Decide what to do for each type of token if seen as the |
222 | look-ahead in specified state. The value returned is used as the |
223 | default action (yydefact) for the state. In addition, ACTROW is |
224 | filled with what to do for each kind of token, index by symbol |
225 | number, with zero meaning do the default action. The value |
226 | ACTION_NUMBER_MINIMUM, a very negative number, means this |
227 | situation is an error. The parser recognizes this value |
230 | This is where conflicts are resolved. The loop over look-ahead |
231 | rules considered lower-numbered rules last, and the last rule |
232 | considered that likes a token gets to handle it. |
234 | For GLR parsers, also sets CONFLROW[SYM] to an index into |
235 | CONFLICT_LIST iff there is an unresolved conflict (s/r or r/r) |
236 | with symbol SYM. The default reduction is not used for a symbol |
237 | that has any such conflicts. |
238 `------------------------------------------------------------------*/
241 action_row (state
*s
)
244 rule
*default_rule
= NULL
;
245 reductions
*reds
= s
->reductions
;
246 transitions
*trans
= s
->transitions
;
247 errs
*errp
= s
->errs
;
248 /* Set to nonzero to inhibit having any default reduction. */
249 bool nodefault
= false;
250 bool conflicted
= false;
252 for (i
= 0; i
< ntokens
; i
++)
253 actrow
[i
] = conflrow
[i
] = 0;
255 if (reds
->look_ahead_tokens
)
258 bitset_iterator biter
;
259 /* loop over all the rules available here which require
260 look-ahead (in reverse order to give precedence to the first
262 for (i
= reds
->num
- 1; i
>= 0; --i
)
263 /* and find each token which the rule finds acceptable
265 BITSET_FOR_EACH (biter
, reds
->look_ahead_tokens
[i
], j
, 0)
267 /* and record this rule as the rule to use if that
274 actrow
[j
] = rule_number_as_item_number (reds
->rules
[i
]->number
);
278 /* Now see which tokens are allowed for shifts in this state. For
279 them, record the shift as the thing to do. So shift is preferred
281 FOR_EACH_SHIFT (trans
, i
)
283 symbol_number sym
= TRANSITION_SYMBOL (trans
, i
);
284 state
*shift_state
= trans
->states
[i
];
286 if (actrow
[sym
] != 0)
291 actrow
[sym
] = state_number_as_int (shift_state
->number
);
293 /* Do not use any default reduction if there is a shift for
295 if (sym
== errtoken
->number
)
299 /* See which tokens are an explicit error in this state (due to
300 %nonassoc). For them, record ACTION_NUMBER_MINIMUM as the
302 for (i
= 0; i
< errp
->num
; i
++)
304 symbol
*sym
= errp
->symbols
[i
];
305 actrow
[sym
->number
] = ACTION_NUMBER_MINIMUM
;
308 /* Now find the most common reduction and make it the default action
311 if (reds
->num
>= 1 && !nodefault
)
314 default_rule
= reds
->rules
[0];
318 for (i
= 0; i
< reds
->num
; i
++)
321 rule
*r
= reds
->rules
[i
];
324 for (j
= 0; j
< ntokens
; j
++)
325 if (actrow
[j
] == rule_number_as_item_number (r
->number
))
335 /* GLR parsers need space for conflict lists, so we can't
336 default conflicted entries. For non-conflicted entries
337 or as long as we are not building a GLR parser,
338 actions that match the default are replaced with zero,
339 which means "use the default". */
344 for (j
= 0; j
< ntokens
; j
++)
345 if (actrow
[j
] == rule_number_as_item_number (default_rule
->number
)
346 && ! (nondeterministic_parser
&& conflrow
[j
]))
352 /* If have no default rule, the default is an error.
353 So replace any action which says "error" with "use default". */
356 for (i
= 0; i
< ntokens
; i
++)
357 if (actrow
[i
] == ACTION_NUMBER_MINIMUM
)
367 /*----------------------------------------.
368 | Set FROMS, TOS, TALLY and WIDTH for S. |
369 `----------------------------------------*/
372 save_row (state_number s
)
381 /* Number of non default actions in S. */
383 for (i
= 0; i
< ntokens
; i
++)
390 /* Allocate non defaulted actions. */
391 froms
[s
] = sp
= sp1
= xnmalloc (count
, sizeof *sp1
);
392 tos
[s
] = sp2
= xnmalloc (count
, sizeof *sp2
);
393 conflict_tos
[s
] = sp3
=
394 nondeterministic_parser
? xnmalloc (count
, sizeof *sp3
) : NULL
;
396 /* Store non defaulted actions. */
397 for (i
= 0; i
< ntokens
; i
++)
402 if (nondeterministic_parser
)
403 *sp3
++ = conflrow
[i
];
407 width
[s
] = sp1
[-1] - sp
[0] + 1;
411 /*------------------------------------------------------------------.
412 | Figure out the actions for the specified state, indexed by |
413 | look-ahead token type. |
415 | The YYDEFACT table is output now. The detailed info is saved for |
416 | putting into YYTABLE later. |
417 `------------------------------------------------------------------*/
426 int nconflict
= nondeterministic_parser
? conflicts_total_count () : 0;
428 yydefact
= xnmalloc (nstates
, sizeof *yydefact
);
430 actrow
= xnmalloc (ntokens
, sizeof *actrow
);
431 conflrow
= xnmalloc (ntokens
, sizeof *conflrow
);
433 conflict_list
= xnmalloc (1 + 2 * nconflict
, sizeof *conflict_list
);
434 conflict_list_free
= 2 * nconflict
;
435 conflict_list_cnt
= 1;
437 /* Find the rules which are reduced. */
438 if (!nondeterministic_parser
)
439 for (r
= 0; r
< nrules
; ++r
)
440 rules
[r
].useful
= false;
442 for (i
= 0; i
< nstates
; ++i
)
444 rule
*default_rule
= action_row (states
[i
]);
445 yydefact
[i
] = default_rule
? default_rule
->number
+ 1 : 0;
448 /* Now that the parser was computed, we can find which rules are
449 really reduced, and which are not because of SR or RR
451 if (!nondeterministic_parser
)
453 for (j
= 0; j
< ntokens
; ++j
)
454 if (actrow
[j
] < 0 && actrow
[j
] != ACTION_NUMBER_MINIMUM
)
455 rules
[item_number_as_rule_number (actrow
[j
])].useful
= true;
457 rules
[yydefact
[i
] - 1].useful
= true;
466 /*------------------------------------------------------------------.
467 | Compute FROMS[VECTOR], TOS[VECTOR], TALLY[VECTOR], WIDTH[VECTOR], |
468 | i.e., the information related to non defaulted GOTO on the nterm |
471 | DEFAULT_STATE is the principal destination on SYM, i.e., the |
472 | default GOTO destination on SYM. |
473 `------------------------------------------------------------------*/
476 save_column (symbol_number sym
, state_number default_state
)
483 vector_number symno
= symbol_number_to_vector_number (sym
);
485 goto_number begin
= goto_map
[sym
- ntokens
];
486 goto_number end
= goto_map
[sym
- ntokens
+ 1];
488 /* Number of non default GOTO. */
490 for (i
= begin
; i
< end
; i
++)
491 if (to_state
[i
] != default_state
)
497 /* Allocate room for non defaulted gotos. */
498 froms
[symno
] = sp
= sp1
= xnmalloc (count
, sizeof *sp1
);
499 tos
[symno
] = sp2
= xnmalloc (count
, sizeof *sp2
);
501 /* Store the state numbers of the non defaulted gotos. */
502 for (i
= begin
; i
< end
; i
++)
503 if (to_state
[i
] != default_state
)
505 *sp1
++ = from_state
[i
];
506 *sp2
++ = to_state
[i
];
509 tally
[symno
] = count
;
510 width
[symno
] = sp1
[-1] - sp
[0] + 1;
514 /*-------------------------------------------------------------.
515 | Return `the' most common destination GOTO on SYM (a nterm). |
516 `-------------------------------------------------------------*/
519 default_goto (symbol_number sym
, size_t state_count
[])
523 goto_number m
= goto_map
[sym
- ntokens
];
524 goto_number n
= goto_map
[sym
- ntokens
+ 1];
525 state_number default_state
= -1;
531 for (s
= 0; s
< nstates
; s
++)
534 for (i
= m
; i
< n
; i
++)
535 state_count
[to_state
[i
]]++;
537 for (s
= 0; s
< nstates
; s
++)
538 if (state_count
[s
] > max
)
540 max
= state_count
[s
];
544 return default_state
;
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. |
553 | The YYDEFGOTO table is output now. The detailed info is saved for |
554 | putting into YYTABLE later. |
555 `-------------------------------------------------------------------*/
561 size_t *state_count
= xnmalloc (nstates
, sizeof *state_count
);
562 yydefgoto
= xnmalloc (nvars
, sizeof *yydefgoto
);
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
)
568 state_number default_state
= default_goto (i
, state_count
);
569 save_column (i
, default_state
);
570 yydefgoto
[i
- ntokens
] = default_state
;
576 /*------------------------------------------------------------------.
577 | Compute ORDER, a reordering of vectors, in order to decide how to |
578 | pack the actions and gotos information into yytable. |
579 `------------------------------------------------------------------*/
588 for (i
= 0; i
< nvectors
; i
++)
594 int j
= nentries
- 1;
596 while (j
>= 0 && (width
[order
[j
]] < w
))
599 while (j
>= 0 && (width
[order
[j
]] == w
) && (tally
[order
[j
]] < t
))
602 for (k
= nentries
- 1; k
> j
; k
--)
603 order
[k
+ 1] = order
[k
];
611 /* If VECTOR is a state which actions (reflected by FROMS, TOS, TALLY
612 and WIDTH of VECTOR) are common to a previous state, return this
615 In any other case, return -1. */
618 matching_state (vector_number vector
)
620 vector_number i
= order
[vector
];
625 /* If VECTOR is a nterm, return -1. */
632 /* If VECTOR has GLR conflicts, return -1 */
633 if (conflict_tos
[i
] != NULL
)
636 for (j
= 0; j
< t
; j
+= 1)
637 if (conflict_tos
[i
][j
] != 0)
641 for (prev
= vector
- 1; prev
>= 0; prev
--)
643 vector_number j
= order
[prev
];
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
)
652 for (k
= 0; match
&& k
< t
; k
++)
653 if (tos
[j
][k
] != tos
[i
][k
] || froms
[j
][k
] != froms
[i
][k
]
654 || (conflict_tos
[j
] != NULL
&& conflict_tos
[j
][k
] != 0))
666 pack_vector (vector_number vector
)
668 vector_number i
= order
[vector
];
672 base_number
*from
= froms
[i
];
673 base_number
*to
= tos
[i
];
674 unsigned int *conflict_to
= conflict_tos
[i
];
679 for (j
= lowzero
- from
[0]; ; j
++)
687 for (k
= 0; ok
&& k
< t
; k
++)
689 loc
= j
+ state_number_as_int (from
[k
]);
690 if (table_size
<= loc
)
697 for (k
= 0; ok
&& k
< vector
; k
++)
703 for (k
= 0; k
< t
; k
++)
707 if (nondeterministic_parser
&& conflict_to
!= NULL
)
708 conflict_table
[loc
] = conflict_to
[k
];
709 check
[loc
] = from
[k
];
712 while (table
[lowzero
] != 0)
718 if (! (BASE_MINIMUM
<= j
&& j
<= BASE_MAXIMUM
))
726 /*-------------------------------------------------------------.
727 | Remap the negative infinite in TAB from NINF to the greatest |
728 | possible smallest value. Return it. |
730 | In most case this allows us to use shorts instead of ints in |
732 `-------------------------------------------------------------*/
735 table_ninf_remap (base_number tab
[], int size
, base_number ninf
)
740 for (i
= 0; i
< size
; i
++)
741 if (tab
[i
] < res
&& tab
[i
] != ninf
)
746 for (i
= 0; i
< size
; i
++)
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
);
767 for (i
= 0; i
< nvectors
; i
++)
768 base
[i
] = BASE_MINIMUM
;
770 for (i
= 0; i
< table_size
; i
++)
773 for (i
= 0; i
< nentries
; i
++)
775 state_number s
= matching_state (i
);
779 /* A new set of state actions, or a nonterminal. */
780 place
= pack_vector (i
);
782 /* Action of I were already coded for S. */
786 base
[order
[i
]] = place
;
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
);
798 /*-----------------------------------------------------------------.
799 | Compute and output yydefact, yydefgoto, yypact, yypgoto, yytable |
801 `-----------------------------------------------------------------*/
804 tables_generate (void)
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 (sizes_are_properly_correlated
,
812 (sizeof nstates
<= sizeof nvectors
813 && sizeof nvars
<= sizeof nvectors
));
815 nvectors
= state_number_as_int (nstates
) + nvars
;
817 froms
= xcalloc (nvectors
, sizeof *froms
);
818 tos
= xcalloc (nvectors
, sizeof *tos
);
819 conflict_tos
= xcalloc (nvectors
, sizeof *conflict_tos
);
820 tally
= xcalloc (nvectors
, sizeof *tally
);
821 width
= xnmalloc (nvectors
, sizeof *width
);
830 order
= xcalloc (nvectors
, sizeof *order
);
838 for (i
= 0; i
< nvectors
; i
++)
842 free (conflict_tos
[i
]);
851 /*-------------------------.
852 | Free the parser tables. |
853 `-------------------------*/
859 free (conflict_table
);
860 free (conflict_list
);