]>
git.saurik.com Git - bison.git/blob - src/closure.c
3 Copyright (C) 1984, 1989, 2000-2002, 2004-2005, 2007, 2009-2012 Free
4 Software Foundation, Inc.
6 This file is part of Bison, the GNU Compiler Compiler.
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 #include <bitsetv-print.h>
35 /* NITEMSET is the size of the array ITEMSET. */
39 static bitset ruleset
;
41 /* internal data. See comments before set_fderives and set_firsts. */
42 static bitsetv fderives
= NULL
;
43 static bitsetv firsts
= NULL
;
45 /* Retrieve the FDERIVES/FIRSTS sets of the nonterminals numbered Var. */
46 #define FDERIVES(Var) fderives[(Var) - ntokens]
47 #define FIRSTS(Var) firsts[(Var) - ntokens]
55 print_closure (char const *title
, item_number
*array
, size_t size
)
58 fprintf (stderr
, "Closure: %s\n", title
);
59 for (i
= 0; i
< size
; ++i
)
62 fprintf (stderr
, " %2d: .", array
[i
]);
63 for (rp
= &ritem
[array
[i
]]; *rp
>= 0; ++rp
)
64 fprintf (stderr
, " %s", symbols
[*rp
]->tag
);
65 fprintf (stderr
, " (rule %d)\n", -*rp
- 1);
67 fputs ("\n\n", stderr
);
76 fprintf (stderr
, "FIRSTS\n");
77 for (i
= ntokens
; i
< nsyms
; i
++)
80 fprintf (stderr
, "\t%s firsts\n", symbols
[i
]->tag
);
81 BITSET_FOR_EACH (iter
, FIRSTS (i
), j
, 0)
83 fprintf (stderr
, "\t\t%s\n",
84 symbols
[j
+ ntokens
]->tag
);
87 fprintf (stderr
, "\n\n");
97 fprintf (stderr
, "FDERIVES\n");
98 for (i
= ntokens
; i
< nsyms
; i
++)
100 bitset_iterator iter
;
101 fprintf (stderr
, "\t%s derives\n", symbols
[i
]->tag
);
102 BITSET_FOR_EACH (iter
, FDERIVES (i
), r
, 0)
104 fprintf (stderr
, "\t\t%3d ", r
);
105 rule_rhs_print (&rules
[r
], stderr
);
108 fprintf (stderr
, "\n\n");
111 /*------------------------------------------------------------------.
112 | Set FIRSTS to be an NVARS array of NVARS bitsets indicating which |
113 | items can represent the beginning of the input corresponding to |
114 | which other items. |
116 | For example, if some rule expands symbol 5 into the sequence of |
117 | symbols 8 3 20, the symbol 8 can be the beginning of the data for |
118 | symbol 5, so the bit [8 - ntokens] in first[5 - ntokens] (= FIRST |
120 `------------------------------------------------------------------*/
127 firsts
= bitsetv_create (nvars
, nvars
, BITSET_FIXED
);
129 for (i
= ntokens
; i
< nsyms
; i
++)
130 for (j
= 0; derives
[i
- ntokens
][j
]; ++j
)
132 item_number sym
= derives
[i
- ntokens
][j
]->rhs
[0];
134 bitset_set (FIRSTS (i
), sym
- ntokens
);
137 if (trace_flag
& trace_sets
)
138 bitsetv_matrix_dump (stderr
, "RTC: Firsts Input", firsts
);
139 bitsetv_reflexive_transitive_closure (firsts
);
140 if (trace_flag
& trace_sets
)
141 bitsetv_matrix_dump (stderr
, "RTC: Firsts Output", firsts
);
143 if (trace_flag
& trace_sets
)
147 /*-------------------------------------------------------------------.
148 | Set FDERIVES to an NVARS by NRULES matrix of bits indicating which |
149 | rules can help derive the beginning of the data for each |
152 | For example, if symbol 5 can be derived as the sequence of symbols |
153 | 8 3 20, and one of the rules for deriving symbol 8 is rule 4, then |
154 | the [5 - NTOKENS, 4] bit in FDERIVES is set. |
155 `-------------------------------------------------------------------*/
163 fderives
= bitsetv_create (nvars
, nrules
, BITSET_FIXED
);
167 for (i
= ntokens
; i
< nsyms
; ++i
)
168 for (j
= ntokens
; j
< nsyms
; ++j
)
169 if (bitset_test (FIRSTS (i
), j
- ntokens
))
170 for (k
= 0; derives
[j
- ntokens
][k
]; ++k
)
171 bitset_set (FDERIVES (i
), derives
[j
- ntokens
][k
]->number
);
173 if (trace_flag
& trace_sets
)
176 bitsetv_free (firsts
);
182 new_closure (unsigned int n
)
184 itemset
= xnmalloc (n
, sizeof *itemset
);
186 ruleset
= bitset_create (nrules
, BITSET_FIXED
);
194 closure (item_number
*core
, size_t n
)
196 /* Index over CORE. */
199 /* A bit index over RULESET. */
202 bitset_iterator iter
;
204 if (trace_flag
& trace_sets
)
205 print_closure ("input", core
, n
);
207 bitset_zero (ruleset
);
209 for (c
= 0; c
< n
; ++c
)
210 if (ISVAR (ritem
[core
[c
]]))
211 bitset_or (ruleset
, ruleset
, FDERIVES (ritem
[core
[c
]]));
213 /* core is sorted on item index in ritem, which is sorted on rule number.
214 Compute itemset with the same sort. */
217 BITSET_FOR_EACH (iter
, ruleset
, ruleno
, 0)
219 item_number itemno
= rules
[ruleno
].rhs
- ritem
;
220 while (c
< n
&& core
[c
] < itemno
)
222 itemset
[nitemset
] = core
[c
];
226 itemset
[nitemset
] = itemno
;
232 itemset
[nitemset
] = core
[c
];
237 if (trace_flag
& trace_sets
)
238 print_closure ("output", itemset
, nitemset
);
246 bitset_free (ruleset
);
247 bitsetv_free (fderives
);