]> git.saurik.com Git - bison.git/blame - src/closure.c
(assoc): Renamed from assoc_t.
[bison.git] / src / closure.c
CommitLineData
d0fb370f 1/* Subroutines for bison
914feea9 2 Copyright (C) 1984, 1989, 2000, 2001, 2002 Free Software Foundation, Inc.
d0fb370f 3
8dc26b76 4 This file is part of Bison, the GNU Compiler Compiler.
d0fb370f 5
8dc26b76
AD
6 Bison is free software; you can redistribute it and/or modify it
7 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.
d0fb370f 10
8dc26b76
AD
11 Bison is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
d0fb370f 15
8dc26b76
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 the Free
18 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
d0fb370f 20
d0fb370f 21#include "system.h"
8b3df748 22#include "quotearg.h"
914feea9
AD
23#include "bitset.h"
24#include "bitsetv.h"
1565b720 25#include "bitsetv-print.h"
9bfe901c 26#include "getargs.h"
ad949da9 27#include "symtab.h"
d0fb370f 28#include "gram.h"
2c5f66ed 29#include "reader.h"
2fa6973e 30#include "closure.h"
340ef489 31#include "derives.h"
d0fb370f 32
b2872512 33/* NITEMSET is the size of the array ITEMSET. */
62a3e4f0 34item_number_t *itemset;
5123689b 35int nritemset;
fb908786 36
dfdb1797 37static bitset ruleset;
d0fb370f
RS
38
39/* internal data. See comments before set_fderives and set_firsts. */
914feea9
AD
40static bitsetv fderives = NULL;
41static bitsetv firsts = NULL;
d0fb370f 42
03ec521c 43/* Retrieve the FDERIVES/FIRSTS sets of the nonterminals numbered Var. */
7086e707 44#define FDERIVES(Var) fderives[(Var) - ntokens]
d8a0245c 45#define FIRSTS(Var) firsts[(Var) - ntokens]
2fa6973e 46\f
d0fb370f 47
2fa6973e
AD
48/*-----------------.
49| Debugging code. |
50`-----------------*/
d0fb370f 51
2fa6973e 52static void
62a3e4f0 53print_closure (const char *title, item_number_t *array, size_t size)
2fa6973e 54{
23cbcc6c 55 size_t i;
427c0dda 56 fprintf (stderr, "Closure: %s\n", title);
23cbcc6c
AD
57 for (i = 0; i < size; ++i)
58 {
62a3e4f0 59 item_number_t *rp;
23cbcc6c 60 fprintf (stderr, " %2d: .", array[i]);
75142d45 61 for (rp = &ritem[array[i]]; *rp >= 0; ++rp)
97650f4e 62 fprintf (stderr, " %s", symbols[*rp]->tag);
427c0dda 63 fprintf (stderr, " (rule %d)\n", -*rp - 1);
23cbcc6c
AD
64 }
65 fputs ("\n\n", stderr);
2fa6973e
AD
66}
67
68
69static void
70print_firsts (void)
d0fb370f 71{
574fb2d5 72 symbol_number_t i, j;
2fa6973e 73
c87d4863 74 fprintf (stderr, "FIRSTS\n");
2fa6973e
AD
75 for (i = ntokens; i < nsyms; i++)
76 {
613f5e1a 77 bitset_iterator iter;
97650f4e 78 fprintf (stderr, "\t%s firsts\n", symbols[i]->tag);
613f5e1a
AD
79 BITSET_FOR_EACH (iter, FIRSTS (i), j, 0)
80 {
81 fprintf (stderr, "\t\t%s\n",
82 symbols[j + ntokens]->tag);
83 }
2fa6973e 84 }
c87d4863 85 fprintf (stderr, "\n\n");
d0fb370f
RS
86}
87
88
2fa6973e
AD
89static void
90print_fderives (void)
91{
9222837b
AD
92 int i;
93 rule_number_t r;
2fa6973e 94
c87d4863 95 fprintf (stderr, "FDERIVES\n");
2fa6973e
AD
96 for (i = ntokens; i < nsyms; i++)
97 {
613f5e1a 98 bitset_iterator iter;
97650f4e 99 fprintf (stderr, "\t%s derives\n", symbols[i]->tag);
613f5e1a
AD
100 BITSET_FOR_EACH (iter, FDERIVES (i), r, 0)
101 {
e1a4f3a4
AD
102 fprintf (stderr, "\t\t%3d ", r);
103 rule_rhs_print (&rules[r], stderr);
613f5e1a 104 }
2fa6973e 105 }
c87d4863 106 fprintf (stderr, "\n\n");
2fa6973e 107}
2fa6973e 108\f
d8a0245c
AD
109/*------------------------------------------------------------------.
110| Set FIRSTS to be an NVARS array of NVARS bitsets indicating which |
111| items can represent the beginning of the input corresponding to |
112| which other items. |
113| |
114| For example, if some rule expands symbol 5 into the sequence of |
115| symbols 8 3 20, the symbol 8 can be the beginning of the data for |
116| symbol 5, so the bit [8 - ntokens] in first[5 - ntokens] (= FIRST |
117| (5)) is set. |
118`------------------------------------------------------------------*/
2fa6973e
AD
119
120static void
121set_firsts (void)
122{
9222837b 123 symbol_number_t i, j;
2fa6973e 124
914feea9
AD
125 firsts = bitsetv_create (nvars, nvars, BITSET_FIXED);
126
2fa6973e 127 for (i = ntokens; i < nsyms; i++)
bb0027a9 128 for (j = 0; derives[i][j]; ++j)
914feea9 129 {
bb0027a9 130 int symbol = derives[i][j]->rhs[0];
914feea9
AD
131 if (ISVAR (symbol))
132 bitset_set (FIRSTS (i), symbol - ntokens);
133 }
2fa6973e 134
273a74fa 135 if (trace_flag & trace_sets)
427c0dda 136 bitsetv_matrix_dump (stderr, "RTC: Firsts Input", firsts);
65ccf9fc 137 bitsetv_reflexive_transitive_closure (firsts);
273a74fa 138 if (trace_flag & trace_sets)
427c0dda 139 bitsetv_matrix_dump (stderr, "RTC: Firsts Output", firsts);
2fa6973e 140
273a74fa 141 if (trace_flag & trace_sets)
9bfe901c 142 print_firsts ();
2fa6973e
AD
143}
144
145/*-------------------------------------------------------------------.
146| Set FDERIVES to an NVARS by NRULES matrix of bits indicating which |
147| rules can help derive the beginning of the data for each |
148| nonterminal. |
149| |
150| For example, if symbol 5 can be derived as the sequence of symbols |
151| 8 3 20, and one of the rules for deriving symbol 8 is rule 4, then |
152| the [5 - NTOKENS, 4] bit in FDERIVES is set. |
153`-------------------------------------------------------------------*/
d0fb370f 154
4a120d45 155static void
d2729d44 156set_fderives (void)
d0fb370f 157{
9222837b
AD
158 symbol_number_t i, j;
159 rule_number_t k;
d0fb370f 160
4b3d3a8e 161 fderives = bitsetv_create (nvars, nrules, BITSET_FIXED);
d0fb370f 162
2fa6973e 163 set_firsts ();
d0fb370f 164
1cbcf2e7
AD
165 for (i = ntokens; i < nsyms; ++i)
166 for (j = ntokens; j < nsyms; ++j)
d8a0245c 167 if (bitset_test (FIRSTS (i), j - ntokens))
bb0027a9
AD
168 for (k = 0; derives[j][k]; ++k)
169 bitset_set (FDERIVES (i), derives[j][k]->number);
d0fb370f 170
273a74fa 171 if (trace_flag & trace_sets)
9bfe901c 172 print_fderives ();
d0fb370f 173
914feea9 174 bitsetv_free (firsts);
d0fb370f 175}
1565b720 176
2fa6973e 177\f
d0fb370f 178
2fa6973e
AD
179void
180new_closure (int n)
d0fb370f 181{
62a3e4f0 182 itemset = XCALLOC (item_number_t, n);
d0fb370f 183
4b3d3a8e 184 ruleset = bitset_create (nrules, BITSET_FIXED);
d0fb370f 185
2fa6973e 186 set_fderives ();
d0fb370f
RS
187}
188
189
2fa6973e 190
d0fb370f 191void
62a3e4f0 192closure (item_number_t *core, int n)
d0fb370f 193{
576890b7
AD
194 /* Index over CORE. */
195 int c;
196
d2b04478 197 /* A bit index over RULESET. */
9222837b 198 rule_number_t ruleno;
d0fb370f 199
613f5e1a
AD
200 bitset_iterator iter;
201
273a74fa 202 if (trace_flag & trace_sets)
427c0dda 203 print_closure ("input", core, n);
c87d4863 204
643a5994 205 bitset_zero (ruleset);
d0fb370f 206
643a5994
AD
207 for (c = 0; c < n; ++c)
208 if (ISVAR (ritem[core[c]]))
209 bitset_or (ruleset, ruleset, FDERIVES (ritem[core[c]]));
d0fb370f 210
5123689b 211 nritemset = 0;
576890b7 212 c = 0;
613f5e1a
AD
213 BITSET_FOR_EACH (iter, ruleset, ruleno, 0)
214 {
215 item_number_t itemno = rules[ruleno].rhs - ritem;
216 while (c < n && core[c] < itemno)
217 {
218 itemset[nritemset] = core[c];
219 nritemset++;
220 c++;
221 }
222 itemset[nritemset] = itemno;
223 nritemset++;
224 };
d0fb370f 225
576890b7
AD
226 while (c < n)
227 {
5123689b
AD
228 itemset[nritemset] = core[c];
229 nritemset++;
576890b7
AD
230 c++;
231 }
d0fb370f 232
273a74fa 233 if (trace_flag & trace_sets)
427c0dda 234 print_closure ("output", itemset, nritemset);
d0fb370f
RS
235}
236
237
238void
2fa6973e 239free_closure (void)
d0fb370f 240{
d7913476 241 XFREE (itemset);
dfdb1797 242 bitset_free (ruleset);
914feea9 243 bitsetv_free (fderives);
d0fb370f 244}