]>
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 `-------------------------------------------------------------------*/
131 varsetsize
= rowsize
= WORDSIZE (nvars
);
133 firsts
= XCALLOC (unsigned, nvars
* rowsize
);
135 for (i
= ntokens
; i
< nsyms
; i
++)
136 for (j
= 0; derives
[i
][j
] >= 0; ++j
)
138 int symbol
= ritem
[rule_table
[derives
[i
][j
]].rhs
];
142 SETBIT (FIRSTS (i
- ntokens
), symbol
);
152 /*-------------------------------------------------------------------.
153 | Set FDERIVES to an NVARS by NRULES matrix of bits indicating which |
154 | rules can help derive the beginning of the data for each |
157 | For example, if symbol 5 can be derived as the sequence of symbols |
158 | 8 3 20, and one of the rules for deriving symbol 8 is rule 4, then |
159 | the [5 - NTOKENS, 4] bit in FDERIVES is set. |
160 `-------------------------------------------------------------------*/
175 fderives
= XCALLOC (unsigned, nvars
* rulesetsize
) - ntokens
* rulesetsize
;
179 rrow
= FDERIVES (ntokens
);
181 for (i
= ntokens
; i
< nsyms
; i
++)
183 vrow
= FIRSTS (i
- ntokens
);
186 for (j
= ntokens
; j
< nsyms
; j
++)
188 if (cword
& (1 << b
))
191 while ((ruleno
= *rp
++) > 0)
192 SETBIT (rrow
, ruleno
);
196 if (b
>= BITS_PER_WORD
&& j
+ 1 < nsyms
)
216 itemset
= XCALLOC (short, n
);
218 rulesetsize
= WORDSIZE (nrules
+ 1);
219 ruleset
= XCALLOC (unsigned, rulesetsize
);
227 closure (short *core
, int n
)
229 /* Index over CORE. */
232 /* Index over RULESET. */
235 /* A bit index over RULESET. */
240 fprintf (stderr
, "Entering closure (items = {");
241 for (c
= 0; c
< n
; ++c
)
242 fprintf (stderr
, " %d ", core
[c
]);
243 fprintf (stderr
, "})\n");
248 for (r
= 0; r
< rulesetsize
; ++r
)
249 ruleset
[r
] = FDERIVES (start_symbol
)[r
];
253 for (r
= 0; r
< rulesetsize
; ++r
)
256 for (c
= 0; c
< n
; ++c
)
257 if (ISVAR (ritem
[core
[c
]]))
258 for (r
= 0; r
< rulesetsize
; ++r
)
259 ruleset
[r
] |= FDERIVES (ritem
[core
[c
]])[r
];
264 for (ruleno
= 0; ruleno
< rulesetsize
* BITS_PER_WORD
; ++ruleno
)
265 if (BITISSET (ruleset
, ruleno
))
267 int itemno
= rule_table
[ruleno
].rhs
;
268 while (c
< n
&& core
[c
] < itemno
)
270 itemset
[itemsetsize
] = core
[c
];
274 itemset
[itemsetsize
] = itemno
;
280 itemset
[itemsetsize
] = core
[c
];
295 XFREE (fderives
+ ntokens
* rulesetsize
);