]>
git.saurik.com Git - bison.git/blob - src/LR0.c
db42fe30a8c913961f45b7005de73abee8f87af1
1 /* Generate the nondeterministic finite state machine for bison,
2 Copyright 1984, 1986, 1989, 2000 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
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)
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.
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. */
22 /* See comments in state.h for the data structures that represent it.
23 The entry point is generate_states. */
35 core
*first_state
= NULL
;
36 shifts
*first_shift
= NULL
;
37 reductions
*first_reduction
= NULL
;
39 static core
*this_state
= NULL
;
40 static core
*last_state
= NULL
;
41 static shifts
*last_shift
= NULL
;
42 static reductions
*last_reduction
= NULL
;
45 static short *shift_symbol
= NULL
;
47 static short *redset
= NULL
;
48 static short *shiftset
= NULL
;
50 static short **kernel_base
= NULL
;
51 static short **kernel_end
= NULL
;
52 static short *kernel_items
= NULL
;
54 /* hash table for states, to recognize equivalent ones. */
56 #define STATE_TABLE_SIZE 1009
57 static core
**state_table
= NULL
;
61 allocate_itemsets (void)
67 short *symbol_count
= NULL
;
70 symbol_count
= XCALLOC (short, nsyms
);
79 symbol_count
[symbol
]++;
84 /* See comments before new_itemsets. All the vectors of items
85 live inside KERNEL_ITEMS. The number of active items after
86 some symbol cannot be more than the number of times that symbol
87 appears as an item, which is symbol_count[symbol].
88 We allocate that much space for each symbol. */
90 kernel_base
= XCALLOC (short *, nsyms
);
92 kernel_items
= XCALLOC (short, count
);
95 for (i
= 0; i
< nsyms
; i
++)
97 kernel_base
[i
] = kernel_items
+ count
;
98 count
+= symbol_count
[i
];
101 shift_symbol
= symbol_count
;
102 kernel_end
= XCALLOC (short *, nsyms
);
107 allocate_storage (void)
109 allocate_itemsets ();
111 shiftset
= XCALLOC (short, nsyms
);
112 redset
= XCALLOC (short, nrules
+ 1);
113 state_table
= XCALLOC (core
*, STATE_TABLE_SIZE
);
120 XFREE (shift_symbol
);
125 XFREE (kernel_items
);
132 /*----------------------------------------------------------------.
133 | Find which symbols can be shifted in the current state, and for |
134 | each one record which items would be active after that shift. |
135 | Uses the contents of itemset. |
137 | shift_symbol is set to a vector of the symbols that can be |
138 | shifted. For each symbol in the grammar, kernel_base[symbol] |
139 | points to a vector of item numbers activated if that symbol is |
140 | shifted, and kernel_end[symbol] points after the end of that |
142 `----------------------------------------------------------------*/
154 fprintf (stderr
, "Entering new_itemsets, state = %d\n",
158 for (i
= 0; i
< nsyms
; i
++)
159 kernel_end
[i
] = NULL
;
165 while (isp
< itemsetend
)
171 ksp
= kernel_end
[symbol
];
175 shift_symbol
[shiftcount
++] = symbol
;
176 ksp
= kernel_base
[symbol
];
180 kernel_end
[symbol
] = ksp
;
184 nshifts
= shiftcount
;
189 /*-----------------------------------------------------------------.
190 | Subroutine of get_state. Create a new state for those items, if |
192 `-----------------------------------------------------------------*/
195 new_state (int symbol
)
201 fprintf (stderr
, "Entering new_state, symbol = %d, state = %d\n",
205 if (nstates
>= MAXSHORT
)
206 fatal (_("too many states (max %d)"), MAXSHORT
);
208 n
= kernel_end
[symbol
] - kernel_base
[symbol
];
211 p
->accessing_symbol
= symbol
;
215 shortcpy (p
->items
, kernel_base
[symbol
], n
);
217 last_state
->next
= p
;
226 /*--------------------------------------------------------------.
227 | Find the state number for the state we would get to (from the |
228 | current state) by shifting symbol. Create a new state if no |
229 | equivalent one exists already. Used by append_states. |
230 `--------------------------------------------------------------*/
233 get_state (int symbol
)
245 fprintf (stderr
, "Entering get_state, symbol = %d\n", symbol
);
248 isp1
= kernel_base
[symbol
];
249 iend
= kernel_end
[symbol
];
252 /* add up the target state's active item numbers to get a hash key */
257 key
= key
% STATE_TABLE_SIZE
;
259 sp
= state_table
[key
];
269 isp1
= kernel_base
[symbol
];
272 while (found
&& isp1
< iend
)
274 if (*isp1
++ != *isp2
++)
285 else /* bucket exhausted and no match */
287 sp
= sp
->link
= new_state (symbol
);
293 else /* bucket is empty */
295 state_table
[key
] = sp
= new_state (symbol
);
301 /*------------------------------------------------------------------.
302 | Use the information computed by new_itemsets to find the state |
303 | numbers reached by each shift transition from the current state. |
305 | shiftset is set up as a vector of state numbers of those states. |
306 `------------------------------------------------------------------*/
316 fprintf (stderr
, "Entering append_states\n");
319 /* first sort shift_symbol into increasing order */
321 for (i
= 1; i
< nshifts
; i
++)
323 symbol
= shift_symbol
[i
];
325 while (j
> 0 && shift_symbol
[j
- 1] > symbol
)
327 shift_symbol
[j
] = shift_symbol
[j
- 1];
330 shift_symbol
[j
] = symbol
;
333 for (i
= 0; i
< nshifts
; i
++)
335 symbol
= shift_symbol
[i
];
336 shiftset
[i
] = get_state (symbol
);
347 first_state
= last_state
= this_state
= p
;
357 p
= SHIFTS_ALLOC (nshifts
);
359 p
->number
= this_state
->number
;
360 p
->nshifts
= nshifts
;
362 shortcpy (p
->shifts
, shiftset
, nshifts
);
366 last_shift
->next
= p
;
377 /*------------------------------------------------------------------.
378 | Subroutine of augment_automaton. Create the next-to-final state, |
379 | to which a shift has already been made in the initial state. |
380 `------------------------------------------------------------------*/
383 insert_start_shift (void)
388 statep
= CORE_ALLOC (0);
389 statep
->number
= nstates
;
390 statep
->accessing_symbol
= start_symbol
;
392 last_state
->next
= statep
;
395 /* Make a shift from this state to (what will be) the final state. */
396 sp
= SHIFTS_ALLOC (1);
397 sp
->number
= nstates
++;
399 sp
->shifts
[0] = nstates
;
401 last_shift
->next
= sp
;
406 /*------------------------------------------------------------------.
407 | Make sure that the initial state has a shift that accepts the |
408 | grammar's start symbol and goes to the next-to-final state, which |
409 | has a shift going to the final state, which has a shift to the |
410 | termination state. Create such states and shifts if they don't |
411 | happen to exist already. |
412 `------------------------------------------------------------------*/
415 augment_automaton (void)
431 statep
= first_state
->next
;
433 /* The states reached by shifts from first_state are numbered 1...K.
434 Look for one reached by start_symbol. */
435 while (statep
->accessing_symbol
< start_symbol
436 && statep
->number
< k
)
437 statep
= statep
->next
;
439 if (statep
->accessing_symbol
== start_symbol
)
441 /* We already have a next-to-final state.
442 Make sure it has a shift to what will be the final state. */
445 while (sp
&& sp
->number
< k
)
451 if (sp
&& sp
->number
== k
)
453 sp2
= SHIFTS_ALLOC (sp
->nshifts
+ 1);
455 sp2
->nshifts
= sp
->nshifts
+ 1;
456 sp2
->shifts
[0] = nstates
;
457 for (i
= sp
->nshifts
; i
> 0; i
--)
458 sp2
->shifts
[i
] = sp
->shifts
[i
- 1];
460 /* Patch sp2 into the chain of shifts in place of sp,
462 sp2
->next
= sp
->next
;
464 if (sp
== last_shift
)
470 sp2
= SHIFTS_ALLOC (1);
473 sp2
->shifts
[0] = nstates
;
475 /* Patch sp2 into the chain of shifts between sp1 and sp. */
484 /* There is no next-to-final state as yet. */
485 /* Add one more shift in first_shift,
486 going to the next-to-final state (yet to be made). */
489 sp2
= SHIFTS_ALLOC (sp
->nshifts
+ 1);
490 sp2
->nshifts
= sp
->nshifts
+ 1;
492 /* Stick this shift into the vector at the proper place. */
493 statep
= first_state
->next
;
494 for (k
= 0, i
= 0; i
< sp
->nshifts
; k
++, i
++)
496 if (statep
->accessing_symbol
> start_symbol
&& i
== k
)
497 sp2
->shifts
[k
++] = nstates
;
498 sp2
->shifts
[k
] = sp
->shifts
[i
];
499 statep
= statep
->next
;
502 sp2
->shifts
[k
++] = nstates
;
504 /* Patch sp2 into the chain of shifts
505 in place of sp, at the beginning. */
506 sp2
->next
= sp
->next
;
508 if (last_shift
== sp
)
513 /* Create the next-to-final state, with shift to
514 what will be the final state. */
515 insert_start_shift ();
520 /* The initial state didn't even have any shifts.
521 Give it one shift, to the next-to-final state. */
522 sp
= SHIFTS_ALLOC (1);
524 sp
->shifts
[0] = nstates
;
526 /* Patch sp into the chain of shifts at the beginning. */
527 sp
->next
= first_shift
;
530 /* Create the next-to-final state, with shift to
531 what will be the final state. */
532 insert_start_shift ();
537 /* There are no shifts for any state.
538 Make one shift, from the initial state to the next-to-final state. */
540 sp
= SHIFTS_ALLOC (1);
542 sp
->shifts
[0] = nstates
;
544 /* Initialize the chain of shifts with sp. */
548 /* Create the next-to-final state, with shift to
549 what will be the final state. */
550 insert_start_shift ();
553 /* Make the final state--the one that follows a shift from the
555 The symbol for that shift is 0 (end-of-file). */
556 statep
= CORE_ALLOC (0);
557 statep
->number
= nstates
;
558 last_state
->next
= statep
;
561 /* Make the shift from the final state to the termination state. */
562 sp
= SHIFTS_ALLOC (1);
563 sp
->number
= nstates
++;
565 sp
->shifts
[0] = nstates
;
566 last_shift
->next
= sp
;
569 /* Note that the variable `final_state' refers to what we sometimes call
570 the termination state. */
571 final_state
= nstates
;
573 /* Make the termination state. */
574 statep
= CORE_ALLOC (0);
575 statep
->number
= nstates
++;
576 last_state
->next
= statep
;
581 /*----------------------------------------------------------------.
582 | Find which rules can be used for reduction transitions from the |
583 | current state and make a reductions structure for the state to |
584 | record their rule numbers. |
585 `----------------------------------------------------------------*/
588 save_reductions (void)
597 /* Find and count the active items that represent ends of rules. */
600 for (isp
= itemset
; isp
< itemsetend
; isp
++)
604 redset
[count
++] = -item
;
607 /* Make a reductions structure and copy the data into it. */
611 p
= REDUCTIONS_ALLOC (count
);
613 p
->number
= this_state
->number
;
616 shortcpy (p
->rules
, redset
, count
);
620 last_reduction
->next
= p
;
632 /*-------------------------------------------------------------------.
633 | Compute the nondeterministic finite state machine (see state.h for |
634 | details) from the grammar. |
635 `-------------------------------------------------------------------*/
638 generate_states (void)
641 new_closure (nitems
);
646 /* Set up ruleset and itemset for the transitions out of this
647 state. ruleset gets a 1 bit for each rule that could reduce
648 now. itemset gets a vector of all the items that could be
650 closure (this_state
->items
, this_state
->nitems
);
651 /* record the reductions allowed out of this state */
653 /* find the itemsets of the states that shifts can reach */
655 /* find or create the core structures for those states */
658 /* create the shifts structures for the shifts to those states,
659 now that the state numbers transitioning to are known */
663 /* states are queued when they are created; process them all */
664 this_state
= this_state
->next
;
667 /* discard various storage */
671 /* set up initial and final states as parser wants them */
672 augment_automaton ();