]>
git.saurik.com Git - bison.git/blob - src/closure.c
1 /* Subroutines for bison
2 Copyright 1984, 1989, 2000, 2001 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 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)
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.
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
29 /* ITEMSETSIZE is the size of the array ITEMSET. */
33 static unsigned *ruleset
;
35 /* internal data. See comments before set_fderives and set_firsts. */
36 static unsigned *fderives
;
37 static unsigned *firsts
;
39 #define FDERIVES(Symbol) (fderives + (Symbol) * rulesetsize)
40 #define FIRSTS(Symbol) (firsts + (Symbol) * varsetsize)
42 /* number of words required to hold a bit for each rule */
43 static int rulesetsize
;
45 /* number of words required to hold a bit for each variable */
46 static int varsetsize
;
57 fprintf (stderr
, "n = %d\n", n
);
58 for (i
= 0; i
< itemsetsize
; ++i
)
59 fprintf (stderr
, " %d\n", itemset
[i
]);
60 fprintf (stderr
, "\n\n");
71 fprintf (stderr
, "FIRSTS\n");
73 for (i
= ntokens
; i
< nsyms
; i
++)
75 fprintf (stderr
, "\t%s firsts\n", tags
[i
]);
77 rowp
= FIRSTS (i
- ntokens
);
79 for (j
= 0; j
< nvars
; j
++)
80 if (BITISSET (rowp
, j
))
81 fprintf (stderr
, "\t\t%d (%s)\n", j
+ ntokens
, tags
[j
+ ntokens
]);
83 fprintf (stderr
, "\n\n");
94 fprintf (stderr
, "FDERIVES\n");
96 for (i
= ntokens
; i
< nsyms
; i
++)
98 fprintf (stderr
, "\t%s derives\n", tags
[i
]);
101 for (j
= 0; j
<= nrules
; j
++)
102 if (BITISSET (rp
, j
))
105 fprintf (stderr
, "\t\t%d:", j
);
106 for (rhsp
= ritem
+ rule_table
[j
].rhs
; *rhsp
> 0; ++rhsp
)
107 fprintf (stderr
, " %s", tags
[*rhsp
]);
108 fputc ('\n', stderr
);
111 fprintf (stderr
, "\n\n");
114 /*-------------------------------------------------------------------.
115 | Set FIRSTS to be an NVARS by NVARS bit matrix indicating which |
116 | items can represent the beginning of the input corresponding to |
117 | which other items. |
119 | For example, if some rule expands symbol 5 into the sequence of |
120 | symbols 8 3 20, the symbol 8 can be the beginning of the data for |
121 | symbol 5, so the bit [8 - ntokens, 5 - ntokens] in firsts is set. |
122 `-------------------------------------------------------------------*/
134 varsetsize
= rowsize
= WORDSIZE (nvars
);
136 firsts
= XCALLOC (unsigned, nvars
* rowsize
);
139 for (i
= ntokens
; i
< nsyms
; i
++)
144 symbol
= ritem
[rule_table
[*sp
++].rhs
];
148 SETBIT (row
, symbol
);
161 /*-------------------------------------------------------------------.
162 | Set FDERIVES to an NVARS by NRULES matrix of bits indicating which |
163 | rules can help derive the beginning of the data for each |
166 | For example, if symbol 5 can be derived as the sequence of symbols |
167 | 8 3 20, and one of the rules for deriving symbol 8 is rule 4, then |
168 | the [5 - NTOKENS, 4] bit in FDERIVES is set. |
169 `-------------------------------------------------------------------*/
184 fderives
= XCALLOC (unsigned, nvars
* rulesetsize
) - ntokens
* rulesetsize
;
188 rrow
= FDERIVES (ntokens
);
190 for (i
= ntokens
; i
< nsyms
; i
++)
192 vrow
= FIRSTS (i
- ntokens
);
195 for (j
= ntokens
; j
< nsyms
; j
++)
197 if (cword
& (1 << b
))
200 while ((ruleno
= *rp
++) > 0)
201 SETBIT (rrow
, ruleno
);
205 if (b
>= BITS_PER_WORD
&& j
+ 1 < nsyms
)
225 itemset
= XCALLOC (short, n
);
227 rulesetsize
= WORDSIZE (nrules
+ 1);
228 ruleset
= XCALLOC (unsigned, rulesetsize
);
236 closure (short *core
, int n
)
246 fprintf (stderr
, "Entering closure (items = {");
247 for (i
= 0; i
< n
; ++i
)
248 fprintf (stderr
, " %d ", core
[i
]);
249 fprintf (stderr
, "}, nitems = %d)\n", n
);
254 for (i
= 0; i
< rulesetsize
; ++i
)
255 ruleset
[i
] = FDERIVES (start_symbol
)[i
];
259 for (i
= 0; i
< rulesetsize
; ++i
)
262 for (i
= 0; i
< n
; ++i
)
264 int symbol
= ritem
[core
[i
]];
268 for (j
= 0; j
< rulesetsize
; ++j
)
269 ruleset
[j
] |= FDERIVES (symbol
)[j
];
277 for (i
= 0; i
< rulesetsize
; ++i
)
279 int word
= ruleset
[i
];
282 ruleno
+= BITS_PER_WORD
;
288 for (b
= 0; b
< BITS_PER_WORD
; b
++)
292 itemno
= rule_table
[ruleno
].rhs
;
293 while (csp
< (core
+ n
) && *csp
< itemno
)
294 itemset
[itemsetsize
++] = *csp
++;
295 itemset
[itemsetsize
++] = itemno
;
303 while (csp
< (core
+ n
))
304 itemset
[itemsetsize
++] = *csp
++;
316 XFREE (fderives
+ ntokens
* rulesetsize
);