1 /* $NetBSD: closure.c,v 1.7 2003/08/07 11:17:52 agc Exp $ */
4 * Copyright (c) 1989 The Regents of the University of California.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include <sys/cdefs.h>
36 #if defined(__RCSID) && !defined(lint)
38 static char sccsid
[] = "@(#)closure.c 5.3 (Berkeley) 5/24/93";
40 __RCSID("$NetBSD: closure.c,v 1.7 2003/08/07 11:17:52 agc Exp $");
50 static unsigned *first_derives
;
53 static void set_EFF(void);
65 rowsize
= WORDSIZE(nvars
);
66 EFF
= NEW2(nvars
* rowsize
, unsigned);
69 for (i
= start_symbol
; i
< nsyms
; i
++)
72 for (rule
= *sp
; rule
> 0; rule
= *++sp
)
74 symbol
= ritem
[rrhs
[rule
]];
77 symbol
-= start_symbol
;
84 reflexive_transitive_closure(EFF
, nvars
);
93 set_first_derives(void)
109 rulesetsize
= WORDSIZE(nrules
);
110 varsetsize
= WORDSIZE(nvars
);
111 first_derives
= NEW2(nvars
* rulesetsize
, unsigned) - ntokens
* rulesetsize
;
115 rrow
= first_derives
+ ntokens
* rulesetsize
;
116 for (i
= start_symbol
; i
< nsyms
; i
++)
118 vrow
= EFF
+ ((i
- ntokens
) * varsetsize
);
120 for (j
= start_symbol
; j
< nsyms
; k
++, j
++)
122 if (k
>= BITS_PER_WORD
)
128 if (cword
& (1 << k
))
131 while ((rule
= *rp
++) >= 0)
143 print_first_derives();
151 closure(short *nucleus
, int n
)
166 rulesetsize
= WORDSIZE(nrules
);
168 rsend
= ruleset
+ rulesetsize
;
169 for (rsp
= ruleset
; rsp
< rsend
; rsp
++)
173 for (csp
= nucleus
; csp
< csend
; ++csp
)
175 symbol
= ritem
[*csp
];
178 dsp
= first_derives
+ symbol
* rulesetsize
;
186 itemsetend
= itemset
;
188 for (rsp
= ruleset
; rsp
< rsend
; ++rsp
)
193 for (i
= 0; i
< BITS_PER_WORD
; ++i
)
197 itemno
= rrhs
[ruleno
+i
];
198 while (csp
< csend
&& *csp
< itemno
)
199 *itemsetend
++ = *csp
++;
200 *itemsetend
++ = itemno
;
201 while (csp
< csend
&& *csp
== itemno
)
206 ruleno
+= BITS_PER_WORD
;
210 *itemsetend
++ = *csp
++;
219 finalize_closure(void)
223 FREE(first_derives
+ ntokens
* WORDSIZE(nrules
));
234 printf("\n\nn = %d\n\n", n
);
235 for (isp
= itemset
; isp
< itemsetend
; isp
++)
236 printf(" %d\n", *isp
);
248 printf("\n\nEpsilon Free Firsts\n");
250 for (i
= start_symbol
; i
< nsyms
; i
++)
252 printf("\n%s", symbol_name
[i
]);
253 rowp
= EFF
+ ((i
- start_symbol
) * WORDSIZE(nvars
));
257 for (j
= 0; j
< nvars
; k
++, j
++)
259 if (k
>= BITS_PER_WORD
)
266 printf(" %s", symbol_name
[start_symbol
+ j
]);
273 print_first_derives(void)
281 printf("\n\n\nFirst Derives\n");
283 for (i
= start_symbol
; i
< nsyms
; i
++)
285 printf("\n%s derives\n", symbol_name
[i
]);
286 rp
= first_derives
+ i
* WORDSIZE(nrules
);
288 for (j
= 0; j
<= nrules
; k
++, j
++)
290 if (k
>= BITS_PER_WORD
)
296 if (cword
& (1 << k
))