]> git.saurik.com Git - bison.git/blame - src/LR0.c
* src/nullable.c (set_nullable): Use a for loop to de-obfuscate
[bison.git] / src / LR0.c
CommitLineData
40675e7c 1/* Generate the nondeterministic finite state machine for bison,
97db7bd4 2 Copyright 1984, 1986, 1989, 2000, 2001 Free Software Foundation, Inc.
40675e7c 3
2fa6973e 4 This file is part of Bison, the GNU Compiler Compiler.
40675e7c 5
2fa6973e
AD
6 Bison is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
40675e7c 10
2fa6973e
AD
11 Bison is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
40675e7c 15
2fa6973e
AD
16 You should have received a copy of the GNU General Public License
17 along with Bison; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
40675e7c
DM
20
21
22/* See comments in state.h for the data structures that represent it.
23 The entry point is generate_states. */
24
40675e7c 25#include "system.h"
9bfe901c 26#include "getargs.h"
c87d4863 27#include "reader.h"
40675e7c
DM
28#include "gram.h"
29#include "state.h"
a0f6b076 30#include "complain.h"
2fa6973e 31#include "closure.h"
403b315b 32#include "LR0.h"
630e182b 33#include "reduce.h"
40675e7c 34
40675e7c
DM
35int nstates;
36int final_state;
342b8b6e
AD
37core *first_state = NULL;
38shifts *first_shift = NULL;
39reductions *first_reduction = NULL;
40675e7c 40
342b8b6e
AD
41static core *this_state = NULL;
42static core *last_state = NULL;
43static shifts *last_shift = NULL;
44static reductions *last_reduction = NULL;
40675e7c
DM
45
46static int nshifts;
342b8b6e 47static short *shift_symbol = NULL;
40675e7c 48
342b8b6e
AD
49static short *redset = NULL;
50static short *shiftset = NULL;
40675e7c 51
342b8b6e 52static short **kernel_base = NULL;
6255b435 53static int *kernel_size = NULL;
342b8b6e 54static short *kernel_items = NULL;
40675e7c
DM
55
56/* hash table for states, to recognize equivalent ones. */
57
58#define STATE_TABLE_SIZE 1009
342b8b6e 59static core **state_table = NULL;
40675e7c 60
2fa6973e 61\f
4a120d45 62static void
d2729d44 63allocate_itemsets (void)
40675e7c 64{
2fa6973e 65 int i;
40675e7c 66
630e182b
AD
67 /* Count the number of occurrences of all the symbols in RITEMS.
68 Note that useless productions (hence useless nonterminals) are
69 browsed too, hence we need to allocate room for _all_ the
70 symbols. */
71 int count = 0;
72 short *symbol_count = XCALLOC (short, nsyms + nuseless_nonterminals);
40675e7c 73
c87d4863
AD
74 for (i = 0; ritem[i]; ++i)
75 if (ritem[i] > 0)
76 {
77 count++;
78 symbol_count[ritem[i]]++;
79 }
40675e7c 80
2fa6973e
AD
81 /* See comments before new_itemsets. All the vectors of items
82 live inside KERNEL_ITEMS. The number of active items after
40675e7c
DM
83 some symbol cannot be more than the number of times that symbol
84 appears as an item, which is symbol_count[symbol].
85 We allocate that much space for each symbol. */
86
d7913476 87 kernel_base = XCALLOC (short *, nsyms);
342b8b6e
AD
88 if (count)
89 kernel_items = XCALLOC (short, count);
40675e7c
DM
90
91 count = 0;
92 for (i = 0; i < nsyms; i++)
93 {
94 kernel_base[i] = kernel_items + count;
95 count += symbol_count[i];
96 }
97
630e182b 98 free (symbol_count);
0e41b407 99 kernel_size = XCALLOC (int, nsyms);
40675e7c
DM
100}
101
102
4a120d45 103static void
d2729d44 104allocate_storage (void)
40675e7c 105{
2fa6973e 106 allocate_itemsets ();
40675e7c 107
d7913476
AD
108 shiftset = XCALLOC (short, nsyms);
109 redset = XCALLOC (short, nrules + 1);
110 state_table = XCALLOC (core *, STATE_TABLE_SIZE);
40675e7c
DM
111}
112
113
4a120d45 114static void
d2729d44 115free_storage (void)
40675e7c 116{
630e182b
AD
117 free (shift_symbol);
118 free (redset);
119 free (shiftset);
120 free (kernel_base);
121 free (kernel_size);
d7913476 122 XFREE (kernel_items);
630e182b 123 free (state_table);
40675e7c
DM
124}
125
126
127
40675e7c 128
2fa6973e
AD
129/*----------------------------------------------------------------.
130| Find which symbols can be shifted in the current state, and for |
131| each one record which items would be active after that shift. |
132| Uses the contents of itemset. |
133| |
134| shift_symbol is set to a vector of the symbols that can be |
135| shifted. For each symbol in the grammar, kernel_base[symbol] |
136| points to a vector of item numbers activated if that symbol is |
125ecb56 137| shifted, and kernel_size[symbol] is their numbers. |
2fa6973e 138`----------------------------------------------------------------*/
40675e7c 139
4a120d45 140static void
d2729d44 141new_itemsets (void)
40675e7c 142{
2fa6973e
AD
143 int i;
144 int shiftcount;
2fa6973e 145
9bfe901c 146 if (trace_flag)
c87d4863
AD
147 fprintf (stderr, "Entering new_itemsets, state = %d\n",
148 this_state->number);
40675e7c
DM
149
150 for (i = 0; i < nsyms; i++)
125ecb56 151 kernel_size[i] = 0;
40675e7c 152
630e182b 153 shift_symbol = XCALLOC (short, nsyms);
40675e7c
DM
154 shiftcount = 0;
155
fb908786 156 for (i = 0; i < itemsetsize; ++i)
40675e7c 157 {
97db7bd4 158 int symbol = ritem[itemset[i]];
40675e7c
DM
159 if (symbol > 0)
160 {
125ecb56 161 if (!kernel_size[symbol])
40675e7c 162 {
97db7bd4 163 shift_symbol[shiftcount] = symbol;
97db7bd4 164 shiftcount++;
40675e7c
DM
165 }
166
125ecb56
AD
167 kernel_base[symbol][kernel_size[symbol]] = itemset[i] + 1;
168 kernel_size[symbol]++;
40675e7c
DM
169 }
170 }
171
172 nshifts = shiftcount;
173}
174
175
176
2fa6973e
AD
177/*-----------------------------------------------------------------.
178| Subroutine of get_state. Create a new state for those items, if |
179| necessary. |
180`-----------------------------------------------------------------*/
40675e7c 181
2fa6973e
AD
182static core *
183new_state (int symbol)
40675e7c 184{
2fa6973e 185 core *p;
40675e7c 186
9bfe901c 187 if (trace_flag)
c87d4863
AD
188 fprintf (stderr, "Entering new_state, state = %d, symbol = %d (%s)\n",
189 this_state->number, symbol, tags[symbol]);
40675e7c 190
2fa6973e
AD
191 if (nstates >= MAXSHORT)
192 fatal (_("too many states (max %d)"), MAXSHORT);
40675e7c 193
125ecb56 194 p = CORE_ALLOC (kernel_size[symbol]);
2fa6973e
AD
195 p->accessing_symbol = symbol;
196 p->number = nstates;
125ecb56 197 p->nitems = kernel_size[symbol];
2fa6973e 198
125ecb56 199 shortcpy (p->items, kernel_base[symbol], kernel_size[symbol]);
2fa6973e
AD
200
201 last_state->next = p;
202 last_state = p;
2fa6973e 203 nstates++;
40675e7c 204
2fa6973e
AD
205 return p;
206}
40675e7c 207
2fa6973e
AD
208
209/*--------------------------------------------------------------.
210| Find the state number for the state we would get to (from the |
211| current state) by shifting symbol. Create a new state if no |
97db7bd4 212| equivalent one exists already. Used by append_states. |
2fa6973e 213`--------------------------------------------------------------*/
40675e7c 214
4a120d45 215static int
d2729d44 216get_state (int symbol)
40675e7c 217{
2fa6973e 218 int key;
97db7bd4 219 int i;
2fa6973e 220 core *sp;
40675e7c 221
9bfe901c 222 if (trace_flag)
c87d4863
AD
223 fprintf (stderr, "Entering get_state, state = %d, symbol = %d (%s)\n",
224 this_state->number, symbol, tags[symbol]);
40675e7c 225
97db7bd4
AD
226 /* Add up the target state's active item numbers to get a hash key.
227 */
40675e7c 228 key = 0;
125ecb56 229 for (i = 0; i < kernel_size[symbol]; ++i)
97db7bd4 230 key += kernel_base[symbol][i];
40675e7c 231 key = key % STATE_TABLE_SIZE;
40675e7c
DM
232 sp = state_table[key];
233
234 if (sp)
235 {
97db7bd4 236 int found = 0;
40675e7c
DM
237 while (!found)
238 {
125ecb56 239 if (sp->nitems == kernel_size[symbol])
40675e7c
DM
240 {
241 found = 1;
125ecb56 242 for (i = 0; i < kernel_size[symbol]; ++i)
97db7bd4
AD
243 if (kernel_base[symbol][i] != sp->items[i])
244 found = 0;
40675e7c
DM
245 }
246
247 if (!found)
248 {
249 if (sp->link)
250 {
251 sp = sp->link;
252 }
2fa6973e 253 else /* bucket exhausted and no match */
40675e7c 254 {
2fa6973e 255 sp = sp->link = new_state (symbol);
40675e7c
DM
256 found = 1;
257 }
258 }
259 }
260 }
2fa6973e 261 else /* bucket is empty */
40675e7c 262 {
2fa6973e 263 state_table[key] = sp = new_state (symbol);
40675e7c
DM
264 }
265
c87d4863
AD
266 if (trace_flag)
267 fprintf (stderr, "Exiting get_state => %d\n", sp->number);
268
36281465 269 return sp->number;
40675e7c
DM
270}
271
2fa6973e
AD
272/*------------------------------------------------------------------.
273| Use the information computed by new_itemsets to find the state |
274| numbers reached by each shift transition from the current state. |
275| |
276| shiftset is set up as a vector of state numbers of those states. |
277`------------------------------------------------------------------*/
40675e7c 278
2fa6973e
AD
279static void
280append_states (void)
40675e7c 281{
2fa6973e
AD
282 int i;
283 int j;
284 int symbol;
40675e7c 285
9bfe901c 286 if (trace_flag)
c87d4863
AD
287 fprintf (stderr, "Entering append_states, state = %d\n",
288 this_state->number);
40675e7c 289
2fa6973e 290 /* first sort shift_symbol into increasing order */
40675e7c 291
2fa6973e
AD
292 for (i = 1; i < nshifts; i++)
293 {
294 symbol = shift_symbol[i];
295 j = i;
296 while (j > 0 && shift_symbol[j - 1] > symbol)
297 {
298 shift_symbol[j] = shift_symbol[j - 1];
299 j--;
300 }
301 shift_symbol[j] = symbol;
302 }
40675e7c 303
2fa6973e 304 for (i = 0; i < nshifts; i++)
97db7bd4 305 shiftset[i] = get_state (shift_symbol[i]);
40675e7c
DM
306}
307
308
4a120d45 309static void
2fa6973e 310new_states (void)
40675e7c 311{
97db7bd4 312 first_state = last_state = this_state = CORE_ALLOC (0);
40675e7c
DM
313 nstates = 1;
314}
315
316
4a38e613
AD
317/*---------------------------------.
318| Create a new array of N shitfs. |
319`---------------------------------*/
320
321static shifts *
322shifts_new (int n)
323{
324 shifts *res = SHIFTS_ALLOC (n);
325 res->nshifts = n;
326 return res;
327}
328
329
330/*------------------------------------------------------------.
331| Save the NSHIFTS of SHIFTSET into the current linked list. |
332`------------------------------------------------------------*/
333
4a120d45 334static void
d2729d44 335save_shifts (void)
40675e7c 336{
4a38e613 337 shifts *p = shifts_new (nshifts);
40675e7c
DM
338
339 p->number = this_state->number;
40675e7c 340
300f275f 341 shortcpy (p->shifts, shiftset, nshifts);
40675e7c
DM
342
343 if (last_shift)
97db7bd4 344 last_shift->next = p;
40675e7c 345 else
97db7bd4
AD
346 first_shift = p;
347 last_shift = p;
40675e7c
DM
348}
349
350
2fa6973e
AD
351/*------------------------------------------------------------------.
352| Subroutine of augment_automaton. Create the next-to-final state, |
353| to which a shift has already been made in the initial state. |
354`------------------------------------------------------------------*/
40675e7c 355
4a120d45 356static void
2fa6973e 357insert_start_shift (void)
40675e7c 358{
2fa6973e
AD
359 core *statep;
360 shifts *sp;
40675e7c 361
f59c437a 362 statep = CORE_ALLOC (0);
2fa6973e
AD
363 statep->number = nstates;
364 statep->accessing_symbol = start_symbol;
40675e7c 365
2fa6973e
AD
366 last_state->next = statep;
367 last_state = statep;
40675e7c 368
2fa6973e 369 /* Make a shift from this state to (what will be) the final state. */
4a38e613 370 sp = shifts_new (1);
2fa6973e 371 sp->number = nstates++;
2fa6973e 372 sp->shifts[0] = nstates;
40675e7c 373
2fa6973e
AD
374 last_shift->next = sp;
375 last_shift = sp;
40675e7c
DM
376}
377
378
2fa6973e
AD
379/*------------------------------------------------------------------.
380| Make sure that the initial state has a shift that accepts the |
381| grammar's start symbol and goes to the next-to-final state, which |
382| has a shift going to the final state, which has a shift to the |
383| termination state. Create such states and shifts if they don't |
384| happen to exist already. |
385`------------------------------------------------------------------*/
40675e7c 386
4a120d45 387static void
d2729d44 388augment_automaton (void)
40675e7c 389{
2fa6973e
AD
390 int i;
391 int k;
392 core *statep;
393 shifts *sp;
394 shifts *sp2;
395 shifts *sp1 = NULL;
40675e7c
DM
396
397 sp = first_shift;
398
399 if (sp)
400 {
401 if (sp->number == 0)
402 {
403 k = sp->nshifts;
404 statep = first_state->next;
405
406 /* The states reached by shifts from first_state are numbered 1...K.
407 Look for one reached by start_symbol. */
408 while (statep->accessing_symbol < start_symbol
2fa6973e 409 && statep->number < k)
40675e7c
DM
410 statep = statep->next;
411
412 if (statep->accessing_symbol == start_symbol)
413 {
414 /* We already have a next-to-final state.
2fa6973e 415 Make sure it has a shift to what will be the final state. */
40675e7c
DM
416 k = statep->number;
417
418 while (sp && sp->number < k)
419 {
420 sp1 = sp;
421 sp = sp->next;
422 }
423
424 if (sp && sp->number == k)
425 {
4a38e613 426 sp2 = shifts_new (sp->nshifts + 1);
40675e7c 427 sp2->number = k;
40675e7c
DM
428 sp2->shifts[0] = nstates;
429 for (i = sp->nshifts; i > 0; i--)
430 sp2->shifts[i] = sp->shifts[i - 1];
431
432 /* Patch sp2 into the chain of shifts in place of sp,
433 following sp1. */
434 sp2->next = sp->next;
435 sp1->next = sp2;
436 if (sp == last_shift)
437 last_shift = sp2;
d7913476 438 XFREE (sp);
40675e7c
DM
439 }
440 else
441 {
4a38e613 442 sp2 = shifts_new (1);
40675e7c 443 sp2->number = k;
40675e7c
DM
444 sp2->shifts[0] = nstates;
445
446 /* Patch sp2 into the chain of shifts between sp1 and sp. */
447 sp2->next = sp;
448 sp1->next = sp2;
449 if (sp == 0)
450 last_shift = sp2;
451 }
452 }
453 else
454 {
455 /* There is no next-to-final state as yet. */
456 /* Add one more shift in first_shift,
2fa6973e 457 going to the next-to-final state (yet to be made). */
40675e7c
DM
458 sp = first_shift;
459
4a38e613 460 sp2 = shifts_new (sp->nshifts + 1);
40675e7c
DM
461
462 /* Stick this shift into the vector at the proper place. */
463 statep = first_state->next;
464 for (k = 0, i = 0; i < sp->nshifts; k++, i++)
465 {
466 if (statep->accessing_symbol > start_symbol && i == k)
467 sp2->shifts[k++] = nstates;
468 sp2->shifts[k] = sp->shifts[i];
469 statep = statep->next;
470 }
471 if (i == k)
472 sp2->shifts[k++] = nstates;
473
474 /* Patch sp2 into the chain of shifts
2fa6973e 475 in place of sp, at the beginning. */
40675e7c
DM
476 sp2->next = sp->next;
477 first_shift = sp2;
478 if (last_shift == sp)
479 last_shift = sp2;
480
d7913476 481 XFREE (sp);
40675e7c
DM
482
483 /* Create the next-to-final state, with shift to
2fa6973e
AD
484 what will be the final state. */
485 insert_start_shift ();
40675e7c
DM
486 }
487 }
488 else
489 {
490 /* The initial state didn't even have any shifts.
491 Give it one shift, to the next-to-final state. */
4a38e613 492 sp = shifts_new (1);
40675e7c
DM
493 sp->shifts[0] = nstates;
494
495 /* Patch sp into the chain of shifts at the beginning. */
496 sp->next = first_shift;
497 first_shift = sp;
498
499 /* Create the next-to-final state, with shift to
500 what will be the final state. */
2fa6973e 501 insert_start_shift ();
40675e7c
DM
502 }
503 }
504 else
505 {
506 /* There are no shifts for any state.
2fa6973e 507 Make one shift, from the initial state to the next-to-final state. */
40675e7c 508
4a38e613 509 sp = shifts_new (1);
40675e7c
DM
510 sp->shifts[0] = nstates;
511
512 /* Initialize the chain of shifts with sp. */
513 first_shift = sp;
514 last_shift = sp;
515
516 /* Create the next-to-final state, with shift to
2fa6973e
AD
517 what will be the final state. */
518 insert_start_shift ();
40675e7c
DM
519 }
520
521 /* Make the final state--the one that follows a shift from the
522 next-to-final state.
523 The symbol for that shift is 0 (end-of-file). */
f59c437a 524 statep = CORE_ALLOC (0);
40675e7c
DM
525 statep->number = nstates;
526 last_state->next = statep;
527 last_state = statep;
528
529 /* Make the shift from the final state to the termination state. */
4a38e613 530 sp = shifts_new (1);
40675e7c 531 sp->number = nstates++;
40675e7c
DM
532 sp->shifts[0] = nstates;
533 last_shift->next = sp;
534 last_shift = sp;
535
536 /* Note that the variable `final_state' refers to what we sometimes call
537 the termination state. */
538 final_state = nstates;
539
540 /* Make the termination state. */
f59c437a 541 statep = CORE_ALLOC (0);
40675e7c
DM
542 statep->number = nstates++;
543 last_state->next = statep;
544 last_state = statep;
545}
546
547
2fa6973e
AD
548/*----------------------------------------------------------------.
549| Find which rules can be used for reduction transitions from the |
550| current state and make a reductions structure for the state to |
551| record their rule numbers. |
552`----------------------------------------------------------------*/
553
4a120d45 554static void
2fa6973e 555save_reductions (void)
40675e7c 556{
2fa6973e 557 int count;
fb908786 558 int i;
40675e7c 559
2fa6973e 560 /* Find and count the active items that represent ends of rules. */
40675e7c 561
2fa6973e 562 count = 0;
fb908786 563 for (i = 0; i < itemsetsize; ++i)
2fa6973e 564 {
fb908786 565 int item = ritem[itemset[i]];
2fa6973e
AD
566 if (item < 0)
567 redset[count++] = -item;
568 }
40675e7c 569
2fa6973e
AD
570 /* Make a reductions structure and copy the data into it. */
571
572 if (count)
573 {
fb908786 574 reductions *p = REDUCTIONS_ALLOC (count);
2fa6973e
AD
575
576 p->number = this_state->number;
577 p->nreds = count;
578
300f275f 579 shortcpy (p->rules, redset, count);
2fa6973e
AD
580
581 if (last_reduction)
97db7bd4 582 last_reduction->next = p;
2fa6973e 583 else
97db7bd4
AD
584 first_reduction = p;
585 last_reduction = p;
2fa6973e
AD
586 }
587}
588
589\f
590/*-------------------------------------------------------------------.
591| Compute the nondeterministic finite state machine (see state.h for |
592| details) from the grammar. |
593`-------------------------------------------------------------------*/
594
595void
596generate_states (void)
597{
598 allocate_storage ();
599 new_closure (nitems);
600 new_states ();
601
602 while (this_state)
603 {
604 /* Set up ruleset and itemset for the transitions out of this
605 state. ruleset gets a 1 bit for each rule that could reduce
606 now. itemset gets a vector of all the items that could be
607 accepted next. */
608 closure (this_state->items, this_state->nitems);
609 /* record the reductions allowed out of this state */
610 save_reductions ();
611 /* find the itemsets of the states that shifts can reach */
612 new_itemsets ();
613 /* find or create the core structures for those states */
614 append_states ();
615
616 /* create the shifts structures for the shifts to those states,
617 now that the state numbers transitioning to are known */
618 if (nshifts > 0)
619 save_shifts ();
620
621 /* states are queued when they are created; process them all */
622 this_state = this_state->next;
623 }
624
625 /* discard various storage */
626 free_closure ();
627 free_storage ();
628
629 /* set up initial and final states as parser wants them */
630 augment_automaton ();
40675e7c 631}