]>
git.saurik.com Git - bison.git/blob - src/closure.c
06c50364b3399b530684a163910604354ea44c4d
1 /* Subroutines for bison
2 Copyright (C) 1984, 1989, 2000, 2001, 2002 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
31 /* NITEMSET is the size of the array ITEMSET. */
35 static bitset ruleset
;
37 /* internal data. See comments before set_fderives and set_firsts. */
38 static bitsetv fderives
= NULL
;
39 static bitsetv firsts
= NULL
;
41 /* Retrieve the FDERIVES/FIRSTS sets of the nonterminals numbered Var. */
42 #define FDERIVES(Var) fderives[(Var) - ntokens]
43 #define FIRSTS(Var) firsts[(Var) - ntokens]
51 print_closure (const char *title
, short *array
, size_t size
)
54 fprintf (stderr
, "Closure: %s\n", title
);
55 for (i
= 0; i
< size
; ++i
)
58 fprintf (stderr
, " %2d: .", array
[i
]);
59 for (rp
= &ritem
[array
[i
]]; *rp
>= 0; ++rp
)
60 fprintf (stderr
, " %s", symbols
[*rp
]->tag
);
61 fprintf (stderr
, " (rule %d)\n", -*rp
- 1);
63 fputs ("\n\n", stderr
);
72 fprintf (stderr
, "FIRSTS\n");
73 for (i
= ntokens
; i
< nsyms
; i
++)
75 fprintf (stderr
, "\t%s firsts\n", symbols
[i
]->tag
);
76 for (j
= 0; j
< nvars
; j
++)
77 if (bitset_test (FIRSTS (i
), j
))
78 fprintf (stderr
, "\t\t%d (%s)\n",
79 j
+ ntokens
, symbols
[j
+ ntokens
]->tag
);
81 fprintf (stderr
, "\n\n");
90 fprintf (stderr
, "FDERIVES\n");
91 for (i
= ntokens
; i
< nsyms
; i
++)
93 fprintf (stderr
, "\t%s derives\n", symbols
[i
]->tag
);
94 for (j
= 0; j
<= nrules
; j
++)
95 if (bitset_test (FDERIVES (i
), j
))
98 fprintf (stderr
, "\t\t%d:", j
- 1);
99 for (rhsp
= &ritem
[rules
[j
].rhs
]; *rhsp
>= 0; ++rhsp
)
100 fprintf (stderr
, " %s", symbols
[*rhsp
]->tag
);
101 fputc ('\n', stderr
);
104 fprintf (stderr
, "\n\n");
107 /*--------------------------------------------------------.
108 | Display the MATRIX array of SIZE bitsets of size SIZE. |
109 `--------------------------------------------------------*/
112 bitmatrix_print (const char *title
, bitsetv matrix
)
115 size_t size
= bitset_size (matrix
[0]);
118 fprintf (stderr
, "%s BEGIN\n", title
);
120 /* Column numbers. */
122 for (i
= 0; i
< size
; ++i
)
123 putc (i
/ 10 ? '0' + i
/ 10 : ' ', stderr
);
126 for (i
= 0; i
< size
; ++i
)
127 fprintf (stderr
, "%d", i
% 10);
131 fputs (" .", stderr
);
132 for (i
= 0; i
< size
; ++i
)
134 fputs (".\n", stderr
);
137 for (i
= 0; i
< size
; ++i
)
139 fprintf (stderr
, "%2d|", i
);
140 for (j
= 0; j
< size
; ++j
)
141 fputs (bitset_test (matrix
[i
], j
) ? "1" : " ", stderr
);
142 fputs ("|\n", stderr
);
146 fputs (" `", stderr
);
147 for (i
= 0; i
< size
; ++i
)
149 fputs ("'\n", stderr
);
152 fprintf (stderr
, "%s END\n\n", title
);
155 /*------------------------------------------------------------------.
156 | Set FIRSTS to be an NVARS array of NVARS bitsets indicating which |
157 | items can represent the beginning of the input corresponding to |
158 | which other items. |
160 | For example, if some rule expands symbol 5 into the sequence of |
161 | symbols 8 3 20, the symbol 8 can be the beginning of the data for |
162 | symbol 5, so the bit [8 - ntokens] in first[5 - ntokens] (= FIRST |
164 `------------------------------------------------------------------*/
171 firsts
= bitsetv_create (nvars
, nvars
, BITSET_FIXED
);
173 for (i
= ntokens
; i
< nsyms
; i
++)
174 for (j
= 0; derives
[i
][j
] >= 0; ++j
)
176 int symbol
= ritem
[rules
[derives
[i
][j
]].rhs
];
178 bitset_set (FIRSTS (i
), symbol
- ntokens
);
182 bitmatrix_print ("RTC: Input", firsts
);
183 bitsetv_reflexive_transitive_closure (firsts
);
185 bitmatrix_print ("RTC: Output", firsts
);
191 /*-------------------------------------------------------------------.
192 | Set FDERIVES to an NVARS by NRULES matrix of bits indicating which |
193 | rules can help derive the beginning of the data for each |
196 | For example, if symbol 5 can be derived as the sequence of symbols |
197 | 8 3 20, and one of the rules for deriving symbol 8 is rule 4, then |
198 | the [5 - NTOKENS, 4] bit in FDERIVES is set. |
199 `-------------------------------------------------------------------*/
206 fderives
= bitsetv_create (nvars
, nrules
+ 1, BITSET_FIXED
);
210 for (i
= ntokens
; i
< nsyms
; ++i
)
211 for (j
= ntokens
; j
< nsyms
; ++j
)
212 if (bitset_test (FIRSTS (i
), j
- ntokens
))
213 for (k
= 0; derives
[j
][k
] > 0; ++k
)
214 bitset_set (FDERIVES (i
), derives
[j
][k
]);
219 bitsetv_free (firsts
);
226 itemset
= XCALLOC (short, n
);
228 ruleset
= bitset_create (nrules
+ 1, BITSET_FIXED
);
236 closure (short *core
, int n
)
238 /* Index over CORE. */
241 /* A bit index over RULESET. */
245 print_closure ("input", core
, n
);
249 bitset_copy (ruleset
, FDERIVES (start_symbol
));
253 bitset_zero (ruleset
);
255 for (c
= 0; c
< n
; ++c
)
256 if (ISVAR (ritem
[core
[c
]]))
257 bitset_or (ruleset
, ruleset
, FDERIVES (ritem
[core
[c
]]));
262 for (ruleno
= 0; ruleno
< nrules
+ 1; ++ruleno
)
263 if (bitset_test (ruleset
, ruleno
))
265 int itemno
= rules
[ruleno
].rhs
;
266 while (c
< n
&& core
[c
] < itemno
)
268 itemset
[nitemset
] = core
[c
];
272 itemset
[nitemset
] = itemno
;
278 itemset
[nitemset
] = core
[c
];
284 print_closure ("output", itemset
, nitemset
);
292 bitset_free (ruleset
);
293 bitsetv_free (fderives
);