author | wenzelm |
Fri, 27 Sep 2024 20:12:48 +0200 | |
changeset 80975 | dfbe65315fc9 |
parent 80974 | d76230f575f2 |
child 80976 | a5ce1be6c465 |
permissions | -rw-r--r-- |
18 | 1 |
(* Title: Pure/Syntax/parser.ML |
67545 | 2 |
Author: Carsten Clasohm, Sonia Mahjoub |
3 |
Author: Makarius |
|
18 | 4 |
|
67545 | 5 |
General context-free parser for the inner syntax of terms and types. |
18 | 6 |
*) |
7 |
||
8 |
signature PARSER = |
|
15752 | 9 |
sig |
1507 | 10 |
type gram |
11 |
val empty_gram: gram |
|
78009
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
12 |
val make_gram: Syntax_Ext.xprod list -> Syntax_Ext.xprod list -> gram option -> gram |
1507 | 13 |
val pretty_gram: gram -> Pretty.T list |
14 |
datatype parsetree = |
|
15 |
Node of string * parsetree list | |
|
16 |
Tip of Lexicon.token |
|
80950 | 17 |
val pretty_parsetree: parsetree -> Pretty.T list |
45641 | 18 |
val parse: gram -> string -> Lexicon.token list -> parsetree list |
41378 | 19 |
val branching_level: int Config.T |
15752 | 20 |
end; |
1507 | 21 |
|
15752 | 22 |
structure Parser: PARSER = |
18 | 23 |
struct |
15752 | 24 |
|
18 | 25 |
(** datatype gram **) |
26 |
||
67541 | 27 |
(* nonterminals *) |
28 |
||
67545 | 29 |
(*production for the NTs are stored in a vector, indexed by the NT tag*) |
67541 | 30 |
type nt = int; |
31 |
||
67545 | 32 |
type tags = nt Symtab.table; |
33 |
val tags_empty: tags = Symtab.empty; |
|
80959
4749c9b0ba73
eliminated redundant nt_count: rely on Symtab.size;
wenzelm
parents:
80958
diff
changeset
|
34 |
fun tags_size (tags: tags) = Symtab.size tags; |
67545 | 35 |
fun tags_content (tags: tags) = sort_by #1 (Symtab.dest tags); |
36 |
fun tags_lookup (tags: tags) = Symtab.lookup tags; |
|
37 |
fun tags_insert tag (tags: tags) = Symtab.update_new tag tags; |
|
78006 | 38 |
fun tags_name (tags: tags) = |
39 |
the o Inttab.lookup (Inttab.build (Symtab.fold (Inttab.update_new o swap) tags)); |
|
67545 | 40 |
|
79079 | 41 |
type nts = Bitset.T; |
42 |
val nts_empty: nts = Bitset.empty; |
|
43 |
val nts_merge: nts * nts -> nts = Bitset.merge; |
|
44 |
fun nts_insert nt : nts -> nts = Bitset.insert nt; |
|
45 |
fun nts_member (nts: nts) = Bitset.member nts; |
|
46 |
fun nts_fold f (nts: nts) = Bitset.fold f nts; |
|
47 |
fun nts_subset (nts1: nts, nts2: nts) = Bitset.forall (nts_member nts2) nts1; |
|
48 |
fun nts_is_empty (nts: nts) = Bitset.is_empty nts; |
|
49 |
fun nts_is_unique (nts: nts) = Bitset.is_unique nts; |
|
67541 | 50 |
|
51 |
||
67539 | 52 |
(* tokens *) |
53 |
||
77823 | 54 |
structure Tokens = Set(type key = Lexicon.token val ord = Lexicon.tokens_match_ord); |
67539 | 55 |
|
77823 | 56 |
fun tokens_find P tokens = Tokens.get_first (fn tok => if P tok then SOME tok else NONE) tokens; |
57 |
fun tokens_add (nt: nt, tokens) = if Tokens.is_empty tokens then I else cons (nt, tokens); |
|
67533
f253e5eaf995
clarified types and operations: potentially more efficient add_prods;
wenzelm
parents:
67532
diff
changeset
|
58 |
|
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
59 |
|
67545 | 60 |
(* productions *) |
61 |
||
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
62 |
datatype symb = |
67545 | 63 |
Terminal of Lexicon.token | |
80972 | 64 |
Nonterminal of nt * int | (*(tag, precedence)*) |
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
65 |
Markup of Markup.T list * symb list; |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
66 |
|
80972 | 67 |
type prod = symb list * string * int; (*rhs, name, precedence*) |
80970 | 68 |
|
69 |
fun make_chain_prod from : prod = ([Nonterminal (from, ~1)], "", ~1); |
|
70 |
||
71 |
fun dest_chain_prod (([Nonterminal (from, ~1)], _, ~1): prod) = SOME from |
|
72 |
| dest_chain_prod _ = NONE; |
|
73 |
||
80972 | 74 |
val no_prec = ~1; |
75 |
||
76 |
fun until_prec min max ((_, _, p): prod) = |
|
77 |
(min = no_prec orelse p >= min) andalso (max = no_prec orelse p < max); |
|
78 |
||
79 |
||
77823 | 80 |
structure Prods = Table(Tokens.Key); |
80970 | 81 |
type prods = prod list Prods.table; |
67540 | 82 |
|
77823 | 83 |
val prods_empty: prods = Prods.empty; |
84 |
fun prods_lookup (prods: prods) = Prods.lookup_list prods; |
|
85 |
fun prods_update entry : prods -> prods = Prods.update entry; |
|
86 |
fun prods_content (prods: prods) = distinct (op =) (maps #2 (Prods.dest prods)); |
|
67540 | 87 |
|
77823 | 88 |
type nt_gram = (nts * Tokens.T) * prods; (*dependent_nts, start_tokens, prods*) |
67545 | 89 |
(*depent_nts is a set of all NTs whose lookahead depends on this NT's lookahead*) |
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
90 |
|
77823 | 91 |
val nt_gram_empty: nt_gram = ((nts_empty, Tokens.empty), prods_empty); |
67533
f253e5eaf995
clarified types and operations: potentially more efficient add_prods;
wenzelm
parents:
67532
diff
changeset
|
92 |
|
67531 | 93 |
type chains = unit Int_Graph.T; |
94 |
fun chains_preds (chains: chains) = Int_Graph.immediate_preds chains; |
|
95 |
fun chains_all_preds (chains: chains) = Int_Graph.all_preds chains; |
|
96 |
fun chains_all_succs (chains: chains) = Int_Graph.all_succs chains; |
|
97 |
val chains_empty: chains = Int_Graph.empty; |
|
98 |
fun chains_member (chains: chains) = Int_Graph.is_edge chains; |
|
99 |
fun chains_declare nt : chains -> chains = Int_Graph.default_node (nt, ()); |
|
80968 | 100 |
|
101 |
fun chains_declares (Terminal _) = I |
|
102 |
| chains_declares (Nonterminal (nt, _)) = chains_declare nt |
|
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
103 |
| chains_declares (Markup (_, body)) = fold chains_declares body; |
80968 | 104 |
|
67531 | 105 |
fun chains_insert (from, to) = |
106 |
chains_declare from #> chains_declare to #> Int_Graph.add_edge (from, to); |
|
107 |
||
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
108 |
datatype gram = |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
109 |
Gram of |
80959
4749c9b0ba73
eliminated redundant nt_count: rely on Symtab.size;
wenzelm
parents:
80958
diff
changeset
|
110 |
{tags: tags, |
67531 | 111 |
chains: chains, |
67533
f253e5eaf995
clarified types and operations: potentially more efficient add_prods;
wenzelm
parents:
67532
diff
changeset
|
112 |
lambdas: nts, |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
113 |
prods: nt_gram Vector.vector}; |
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
114 |
(*"tags" is used to map NT names (i.e. strings) to tags; |
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
115 |
chain productions are not stored as normal productions |
67517
add9a9f6a290
explicit graph for chains, which contains all nts as nodes;
wenzelm
parents:
67516
diff
changeset
|
116 |
but instead as an entry in "chains": from -> to; |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
117 |
lambda productions are stored as normal productions |
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
118 |
and also as an entry in "lambdas"*) |
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
119 |
|
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
120 |
(*productions for which no starting token is |
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
121 |
known yet are associated with this token*) |
38713 | 122 |
val unknown_start = Lexicon.eof; |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
123 |
|
67539 | 124 |
fun get_start tks = |
77823 | 125 |
(case Tokens.min tks of |
77818 | 126 |
SOME tk => tk |
67539 | 127 |
| NONE => unknown_start); |
67516 | 128 |
|
80970 | 129 |
fun add_production array_prods (lhs, new_prod as (rhs, _, _) : prod) (chains, lambdas) = |
67543 | 130 |
let |
80970 | 131 |
val chain = dest_chain_prod new_prod; |
132 |
val (new_chain, chains') = |
|
133 |
(case chain of |
|
134 |
SOME from => |
|
67543 | 135 |
if chains_member chains (from, lhs) |
80970 | 136 |
then (false, chains) |
137 |
else (true, chains_insert (from, lhs) chains) |
|
138 |
| NONE => (false, chains |> chains_declare lhs |> fold chains_declares rhs)); |
|
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
139 |
|
67543 | 140 |
(*propagate new chain in lookahead and lambdas; |
141 |
added_starts is used later to associate existing |
|
142 |
productions with new starting tokens*) |
|
143 |
val (added_starts, lambdas') = |
|
144 |
if not new_chain then ([], lambdas) |
|
145 |
else |
|
146 |
let (*lookahead of chain's source*) |
|
78007 | 147 |
val ((_, from_tks), _) = Array.nth array_prods (the chain); |
1175
1b15a4b1a4f7
added comments; fixed a bug; reduced memory usage slightly
clasohm
parents:
1147
diff
changeset
|
148 |
|
67543 | 149 |
(*copy from's lookahead to chain's destinations*) |
150 |
fun copy_lookahead to = |
|
151 |
let |
|
78007 | 152 |
val ((to_nts, to_tks), ps) = Array.nth array_prods to; |
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
153 |
|
77823 | 154 |
val new_tks = Tokens.subtract to_tks from_tks; (*added lookahead tokens*) |
155 |
val to_tks' = Tokens.merge (to_tks, new_tks); |
|
78007 | 156 |
val _ = Array.upd array_prods to ((to_nts, to_tks'), ps); |
67543 | 157 |
in tokens_add (to, new_tks) end; |
1175
1b15a4b1a4f7
added comments; fixed a bug; reduced memory usage slightly
clasohm
parents:
1147
diff
changeset
|
158 |
|
67543 | 159 |
val tos = chains_all_succs chains' [lhs]; |
160 |
in |
|
161 |
(fold copy_lookahead tos [], |
|
162 |
lambdas |> nts_member lambdas lhs ? fold nts_insert tos) |
|
163 |
end; |
|
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
164 |
|
67543 | 165 |
(*test if new production can produce lambda |
166 |
(rhs must either be empty or only consist of lambda NTs)*) |
|
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
167 |
fun lambda_symb (Nonterminal (id, _)) = nts_member lambdas' id |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
168 |
| lambda_symb (Terminal _) = false |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
169 |
| lambda_symb (Markup (_, body)) = forall lambda_symb body; |
67543 | 170 |
val new_lambdas = |
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
171 |
if forall lambda_symb rhs |
67543 | 172 |
then SOME (filter_out (nts_member lambdas') (chains_all_succs chains' [lhs])) |
173 |
else NONE; |
|
174 |
val lambdas'' = fold nts_insert (these new_lambdas) lambdas'; |
|
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
175 |
|
67543 | 176 |
(*list optional terminal and all nonterminals on which the lookahead |
177 |
of a production depends*) |
|
178 |
fun lookahead_dependency _ [] nts = (NONE, nts) |
|
179 |
| lookahead_dependency _ (Terminal tk :: _) nts = (SOME tk, nts) |
|
180 |
| lookahead_dependency lambdas (Nonterminal (nt, _) :: symbs) nts = |
|
181 |
if nts_member lambdas nt then |
|
182 |
lookahead_dependency lambdas symbs (nts_insert nt nts) |
|
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
183 |
else (NONE, nts_insert nt nts) |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
184 |
| lookahead_dependency lambdas (Markup (_, body) :: symbs) nts = |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
185 |
lookahead_dependency lambdas (body @ symbs) nts; |
330
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
186 |
|
67543 | 187 |
(*get all known starting tokens for a nonterminal*) |
78007 | 188 |
fun starts_for_nt nt = snd (fst (Array.nth array_prods nt)); |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
189 |
|
67543 | 190 |
(*update prods, lookaheads, and lambdas according to new lambda NTs*) |
191 |
val (added_starts', lambdas') = |
|
192 |
let |
|
193 |
(*propagate added lambda NT*) |
|
194 |
fun propagate_lambda [] added_starts lambdas = (added_starts, lambdas) |
|
195 |
| propagate_lambda (l :: ls) added_starts lambdas = |
|
196 |
let |
|
197 |
(*get lookahead for lambda NT*) |
|
78007 | 198 |
val ((dependent, l_starts), _) = Array.nth array_prods l; |
1175
1b15a4b1a4f7
added comments; fixed a bug; reduced memory usage slightly
clasohm
parents:
1147
diff
changeset
|
199 |
|
67543 | 200 |
(*check productions whose lookahead may depend on lambda NT*) |
201 |
fun examine_prods [] add_lambda nt_dependencies added_tks nt_prods = |
|
202 |
(add_lambda, nt_dependencies, added_tks, nt_prods) |
|
203 |
| examine_prods ((p as (rhs, _, _)) :: ps) add_lambda |
|
204 |
nt_dependencies added_tks nt_prods = |
|
205 |
let val (tk, nts) = lookahead_dependency lambdas rhs nts_empty in |
|
206 |
if nts_member nts l then (*update production's lookahead*) |
|
207 |
let |
|
208 |
val new_lambda = |
|
209 |
is_none tk andalso nts_subset (nts, lambdas); |
|
18 | 210 |
|
67543 | 211 |
val new_tks = |
77823 | 212 |
Tokens.empty |
213 |
|> fold Tokens.insert (the_list tk) |
|
214 |
|> nts_fold (curry Tokens.merge o starts_for_nt) nts |
|
215 |
|> Tokens.subtract l_starts; |
|
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
216 |
|
77823 | 217 |
val added_tks' = Tokens.merge (added_tks, new_tks); |
330
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
218 |
|
67543 | 219 |
val nt_dependencies' = nts_merge (nt_dependencies, nts); |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
220 |
|
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
221 |
(*associate production with new starting tokens*) |
67539 | 222 |
fun copy tk nt_prods = |
67543 | 223 |
prods_update (tk, p :: prods_lookup nt_prods tk) nt_prods; |
224 |
||
225 |
val nt_prods' = nt_prods |
|
77823 | 226 |
|> Tokens.fold copy new_tks |
67550 | 227 |
|> new_lambda ? copy Lexicon.dummy; |
67543 | 228 |
in |
229 |
examine_prods ps (add_lambda orelse new_lambda) |
|
230 |
nt_dependencies' added_tks' nt_prods' |
|
231 |
end |
|
232 |
else (*skip production*) |
|
233 |
examine_prods ps add_lambda nt_dependencies added_tks nt_prods |
|
234 |
end; |
|
235 |
||
236 |
(*check each NT whose lookahead depends on new lambda NT*) |
|
237 |
fun process_nts nt (added_lambdas, added_starts) = |
|
238 |
let |
|
78007 | 239 |
val ((old_nts, old_tks), nt_prods) = Array.nth array_prods nt; |
67543 | 240 |
|
241 |
(*existing productions whose lookahead may depend on l*) |
|
242 |
val tk_prods = prods_lookup nt_prods (get_start l_starts); |
|
243 |
||
244 |
(*add_lambda is true if an existing production of the nt |
|
245 |
produces lambda due to the new lambda NT l*) |
|
246 |
val (add_lambda, nt_dependencies, added_tks, nt_prods') = |
|
77823 | 247 |
examine_prods tk_prods false nts_empty Tokens.empty nt_prods; |
67543 | 248 |
|
249 |
val new_nts = nts_merge (old_nts, nt_dependencies); |
|
77823 | 250 |
val new_tks = Tokens.merge (old_tks, added_tks); |
67543 | 251 |
|
252 |
val added_lambdas' = added_lambdas |> add_lambda ? cons nt; |
|
78007 | 253 |
val _ = Array.upd array_prods nt ((new_nts, new_tks), nt_prods'); |
67543 | 254 |
(*N.B. that because the tks component |
255 |
is used to access existing |
|
256 |
productions we have to add new |
|
257 |
tokens at the _end_ of the list*) |
|
258 |
val added_starts' = tokens_add (nt, added_tks) added_starts; |
|
259 |
in (added_lambdas', added_starts') end; |
|
377
ab8917806779
lookaheads are now computed faster (during the grammar is built)
clasohm
parents:
373
diff
changeset
|
260 |
|
67543 | 261 |
val (added_lambdas, added_starts') = |
262 |
nts_fold process_nts dependent ([], added_starts); |
|
263 |
val added_lambdas' = filter_out (nts_member lambdas) added_lambdas; |
|
264 |
in |
|
265 |
propagate_lambda (ls @ added_lambdas') added_starts' |
|
266 |
(fold nts_insert added_lambdas' lambdas) |
|
267 |
end; |
|
268 |
in |
|
269 |
propagate_lambda |
|
270 |
(nts_fold (fn l => not (nts_member lambdas l) ? cons l) lambdas'' []) |
|
271 |
added_starts lambdas'' |
|
272 |
end; |
|
273 |
||
274 |
(*insert production into grammar*) |
|
275 |
val added_starts' = |
|
276 |
if is_some chain then added_starts' (*don't store chain production*) |
|
277 |
else |
|
278 |
let |
|
279 |
(*lookahead tokens of new production and on which |
|
280 |
NTs lookahead depends*) |
|
281 |
val (start_tk, start_nts) = lookahead_dependency lambdas' rhs nts_empty; |
|
282 |
||
283 |
val start_tks = |
|
77823 | 284 |
Tokens.empty |
285 |
|> fold Tokens.insert (the_list start_tk) |
|
286 |
|> nts_fold (curry Tokens.merge o starts_for_nt) start_nts; |
|
67543 | 287 |
|
288 |
val start_tks' = |
|
289 |
start_tks |
|
77823 | 290 |
|> (if is_some new_lambdas then Tokens.insert Lexicon.dummy |
291 |
else if Tokens.is_empty start_tks then Tokens.insert unknown_start |
|
67543 | 292 |
else I); |
293 |
||
294 |
(*add lhs NT to list of dependent NTs in lookahead*) |
|
295 |
fun add_nts nt initial = |
|
296 |
(if initial then |
|
78007 | 297 |
let val ((old_nts, old_tks), ps) = Array.nth array_prods nt in |
67543 | 298 |
if nts_member old_nts lhs then () |
78007 | 299 |
else Array.upd array_prods nt ((nts_insert lhs old_nts, old_tks), ps) |
67543 | 300 |
end |
301 |
else (); false); |
|
302 |
||
303 |
(*add new start tokens to chained NTs' lookahead list; |
|
304 |
also store new production for lhs NT*) |
|
305 |
fun add_tks [] added = added |
|
306 |
| add_tks (nt :: nts) added = |
|
307 |
let |
|
78007 | 308 |
val ((old_nts, old_tks), nt_prods) = Array.nth array_prods nt; |
67543 | 309 |
|
77823 | 310 |
val new_tks = Tokens.subtract old_tks start_tks; |
330
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
311 |
|
67543 | 312 |
(*store new production*) |
313 |
fun store tk (prods, _) = |
|
314 |
let |
|
315 |
val tk_prods = prods_lookup prods tk; |
|
316 |
val tk_prods' = new_prod :: tk_prods; |
|
317 |
val prods' = prods_update (tk, tk_prods') prods; |
|
318 |
in (prods', true) end; |
|
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
319 |
|
67543 | 320 |
val (nt_prods', changed) = (nt_prods, false) |
77823 | 321 |
|> nt = lhs ? Tokens.fold store start_tks'; |
67543 | 322 |
val _ = |
77823 | 323 |
if not changed andalso Tokens.is_empty new_tks then () |
78007 | 324 |
else Array.upd array_prods nt ((old_nts, Tokens.merge (old_tks, new_tks)), nt_prods'); |
67543 | 325 |
in add_tks nts (tokens_add (nt, new_tks) added) end; |
326 |
val _ = nts_fold add_nts start_nts true; |
|
327 |
in add_tks (chains_all_succs chains' [lhs]) [] end; |
|
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
328 |
|
67543 | 329 |
(*associate productions with new lookaheads*) |
330 |
val _ = |
|
331 |
let |
|
332 |
(*propagate added start tokens*) |
|
333 |
fun add_starts [] = () |
|
334 |
| add_starts ((changed_nt, new_tks) :: starts) = |
|
335 |
let |
|
336 |
(*token under which old productions which |
|
337 |
depend on changed_nt could be stored*) |
|
338 |
val key = |
|
77823 | 339 |
tokens_find (not o Tokens.member new_tks) (starts_for_nt changed_nt) |
67543 | 340 |
|> the_default unknown_start; |
341 |
||
342 |
(*copy productions whose lookahead depends on changed_nt; |
|
343 |
if key = SOME unknown_start then tk_prods is used to hold |
|
344 |
the productions not copied*) |
|
345 |
fun update_prods [] result = result |
|
346 |
| update_prods ((p as (rhs, _: string, _: nt)) :: ps) |
|
347 |
(tk_prods, nt_prods) = |
|
348 |
let |
|
349 |
(*lookahead dependency for production*) |
|
350 |
val (tk, depends) = lookahead_dependency lambdas' rhs nts_empty; |
|
351 |
||
352 |
(*test if this production has to be copied*) |
|
353 |
val update = nts_member depends changed_nt; |
|
18 | 354 |
|
67543 | 355 |
(*test if production could already be associated with |
356 |
a member of new_tks*) |
|
357 |
val lambda = |
|
358 |
not (nts_is_unique depends) orelse |
|
359 |
not (nts_is_empty depends) andalso is_some tk |
|
77823 | 360 |
andalso Tokens.member new_tks (the tk); |
67543 | 361 |
|
362 |
(*associate production with new starting tokens*) |
|
363 |
fun copy tk nt_prods = |
|
364 |
let |
|
365 |
val tk_prods = prods_lookup nt_prods tk; |
|
366 |
val tk_prods' = |
|
367 |
if not lambda then p :: tk_prods |
|
368 |
else insert (op =) p tk_prods; |
|
369 |
(*if production depends on lambda NT we |
|
370 |
have to look for duplicates*) |
|
371 |
in prods_update (tk, tk_prods') nt_prods end; |
|
372 |
val result = |
|
77823 | 373 |
if update then (tk_prods, Tokens.fold copy new_tks nt_prods) |
67543 | 374 |
else if key = unknown_start then (p :: tk_prods, nt_prods) |
375 |
else (tk_prods, nt_prods); |
|
376 |
in update_prods ps result end; |
|
18 | 377 |
|
67543 | 378 |
(*copy existing productions for new starting tokens*) |
379 |
fun process_nts nt = |
|
380 |
let |
|
78007 | 381 |
val ((nts, tks), nt_prods) = Array.nth array_prods nt; |
67543 | 382 |
|
383 |
val tk_prods = prods_lookup nt_prods key; |
|
384 |
||
385 |
(*associate productions with new lookahead tokens*) |
|
386 |
val (tk_prods', nt_prods') = update_prods tk_prods ([], nt_prods); |
|
387 |
||
388 |
val nt_prods'' = |
|
389 |
if key = unknown_start then |
|
390 |
prods_update (key, tk_prods') nt_prods' |
|
391 |
else nt_prods'; |
|
392 |
||
77823 | 393 |
val added_tks = Tokens.subtract tks new_tks; |
394 |
val tks' = Tokens.merge (tks, added_tks); |
|
78007 | 395 |
val _ = Array.upd array_prods nt ((nts, tks'), nt_prods''); |
67543 | 396 |
in tokens_add (nt, added_tks) end; |
397 |
||
78007 | 398 |
val ((dependent, _), _) = Array.nth array_prods changed_nt; |
67543 | 399 |
in add_starts (starts @ nts_fold process_nts dependent []) end; |
400 |
in add_starts added_starts' end; |
|
401 |
in (chains', lambdas') end; |
|
237
a7d3e712767a
MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents:
46
diff
changeset
|
402 |
|
18 | 403 |
|
237
a7d3e712767a
MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents:
46
diff
changeset
|
404 |
(* pretty_gram *) |
18 | 405 |
|
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
406 |
fun pretty_gram (Gram {tags, prods, chains, ...}) = |
237
a7d3e712767a
MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents:
46
diff
changeset
|
407 |
let |
67531 | 408 |
val print_nt = tags_name tags; |
67518 | 409 |
fun print_pri p = if p < 0 then "" else Symbol.make_sup ("(" ^ string_of_int p ^ ")"); |
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
410 |
|
67552 | 411 |
fun pretty_symb (Terminal tok) = |
412 |
if Lexicon.is_literal tok |
|
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
413 |
then [Pretty.quote (Pretty.keyword1 (Lexicon.str_of_token tok))] |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
414 |
else [Pretty.str (Lexicon.str_of_token tok)] |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
415 |
| pretty_symb (Nonterminal (tag, p)) = [Pretty.str (print_nt tag ^ print_pri p)] |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
416 |
| pretty_symb (Markup (_, body)) = maps pretty_symb body; |
18 | 417 |
|
237
a7d3e712767a
MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents:
46
diff
changeset
|
418 |
fun pretty_const "" = [] |
67513 | 419 |
| pretty_const c = [Pretty.str ("\<^bold>\<Rightarrow> " ^ quote c)]; |
237
a7d3e712767a
MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents:
46
diff
changeset
|
420 |
|
67513 | 421 |
fun pretty_prod (name, tag) = |
80970 | 422 |
(prods_content (#2 (Vector.nth prods tag)) @ map make_chain_prod (chains_preds chains tag)) |
67513 | 423 |
|> map (fn (symbs, const, p) => |
424 |
Pretty.block (Pretty.breaks |
|
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
425 |
(Pretty.str (name ^ print_pri p ^ " =") :: maps pretty_symb symbs @ pretty_const const))); |
67531 | 426 |
in maps pretty_prod (tags_content tags) end; |
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
427 |
|
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
428 |
|
42217 | 429 |
|
67545 | 430 |
(** operations on grammars **) |
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
431 |
|
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
432 |
val empty_gram = |
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
433 |
Gram |
80959
4749c9b0ba73
eliminated redundant nt_count: rely on Symtab.size;
wenzelm
parents:
80958
diff
changeset
|
434 |
{tags = tags_empty, |
67531 | 435 |
chains = chains_empty, |
67533
f253e5eaf995
clarified types and operations: potentially more efficient add_prods;
wenzelm
parents:
67532
diff
changeset
|
436 |
lambdas = nts_empty, |
f253e5eaf995
clarified types and operations: potentially more efficient add_prods;
wenzelm
parents:
67532
diff
changeset
|
437 |
prods = Vector.fromList [nt_gram_empty]}; |
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
438 |
|
80960 | 439 |
local |
440 |
||
441 |
fun make_tag s tags = |
|
442 |
(case tags_lookup tags s of |
|
443 |
SOME tag => (tag, tags) |
|
444 |
| NONE => |
|
445 |
let val tag = tags_size tags |
|
446 |
in (tag, tags_insert (s, tag) tags) end); |
|
447 |
||
448 |
fun make_arg (s, p) tags = |
|
449 |
(case Lexicon.get_terminal s of |
|
450 |
NONE => |
|
451 |
let val (tag, tags') = make_tag s tags; |
|
452 |
in (Nonterminal (tag, p), tags') end |
|
453 |
| SOME tok => (Terminal tok, tags)); |
|
454 |
||
80959
4749c9b0ba73
eliminated redundant nt_count: rely on Symtab.size;
wenzelm
parents:
80958
diff
changeset
|
455 |
fun extend_gram xprods gram = |
78009
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
456 |
let |
80965
f74aecc6ef9c
tuned, following make_symbs in src/Pure/Syntax/printer.ML;
wenzelm
parents:
80964
diff
changeset
|
457 |
fun make_symbs (Syntax_Ext.Delim s :: xsyms) tags = |
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
458 |
let val (syms, xsyms', tags') = make_symbs xsyms tags |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
459 |
in (Terminal (Lexicon.literal s) :: syms, xsyms', tags') end |
80965
f74aecc6ef9c
tuned, following make_symbs in src/Pure/Syntax/printer.ML;
wenzelm
parents:
80964
diff
changeset
|
460 |
| make_symbs (Syntax_Ext.Argument a :: xsyms) tags = |
f74aecc6ef9c
tuned, following make_symbs in src/Pure/Syntax/printer.ML;
wenzelm
parents:
80964
diff
changeset
|
461 |
let |
f74aecc6ef9c
tuned, following make_symbs in src/Pure/Syntax/printer.ML;
wenzelm
parents:
80964
diff
changeset
|
462 |
val (arg, tags') = make_arg a tags; |
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
463 |
val (syms, xsyms', tags'') = make_symbs xsyms tags'; |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
464 |
in (arg :: syms, xsyms', tags'') end |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
465 |
| make_symbs (Syntax_Ext.Bg {markup, ...} :: xsyms) tags = |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
466 |
let |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
467 |
val (bsyms, xsyms', tags') = make_symbs xsyms tags; |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
468 |
val (syms, xsyms'', tags'') = make_symbs xsyms' tags'; |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
469 |
val syms' = if null markup then bsyms @ syms else Markup (markup, bsyms) :: syms; |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
470 |
in (syms', xsyms'', tags'') end |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
471 |
| make_symbs (Syntax_Ext.En :: xsyms) tags = ([], xsyms, tags) |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
472 |
| make_symbs (Syntax_Ext.Space _ :: xsyms) tags = make_symbs xsyms tags |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
473 |
| make_symbs (Syntax_Ext.Brk _ :: xsyms) tags = make_symbs xsyms tags |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
474 |
| make_symbs [] tags = ([], [], tags); |
1438 | 475 |
|
80960 | 476 |
fun make_prod (Syntax_Ext.XProd (lhs, xsymbs, const, pri)) (result, tags) = |
477 |
let |
|
478 |
val (tag, tags') = make_tag lhs tags; |
|
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
479 |
val (symbs, xsymbs', tags'') = make_symbs xsymbs tags'; |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
480 |
val _ = if null xsymbs' then () else raise Fail "Unbalanced blocks in grammar production"; |
80960 | 481 |
in ((tag, (symbs, const, pri)) :: result, tags'') end; |
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
482 |
|
80959
4749c9b0ba73
eliminated redundant nt_count: rely on Symtab.size;
wenzelm
parents:
80958
diff
changeset
|
483 |
|
4749c9b0ba73
eliminated redundant nt_count: rely on Symtab.size;
wenzelm
parents:
80958
diff
changeset
|
484 |
val Gram {tags, chains, lambdas, prods} = gram; |
4749c9b0ba73
eliminated redundant nt_count: rely on Symtab.size;
wenzelm
parents:
80958
diff
changeset
|
485 |
|
80960 | 486 |
val (new_prods, tags') = fold make_prod xprods ([], tags); |
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
487 |
|
78009
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
488 |
val array_prods' = |
80959
4749c9b0ba73
eliminated redundant nt_count: rely on Symtab.size;
wenzelm
parents:
80958
diff
changeset
|
489 |
Array.tabulate (tags_size tags', fn i => |
4749c9b0ba73
eliminated redundant nt_count: rely on Symtab.size;
wenzelm
parents:
80958
diff
changeset
|
490 |
if i < Vector.length prods then Vector.nth prods i |
78009
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
491 |
else nt_gram_empty); |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
492 |
|
78009
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
493 |
val (chains', lambdas') = |
80957 | 494 |
(chains, lambdas) |> fold (add_production array_prods') new_prods; |
78009
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
495 |
in |
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
496 |
Gram |
80959
4749c9b0ba73
eliminated redundant nt_count: rely on Symtab.size;
wenzelm
parents:
80958
diff
changeset
|
497 |
{tags = tags', |
78009
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
498 |
chains = chains', |
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
499 |
lambdas = lambdas', |
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
500 |
prods = Array.vector array_prods'} |
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
501 |
end; |
18 | 502 |
|
80960 | 503 |
in |
504 |
||
78009
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
505 |
fun make_gram [] _ (SOME gram) = gram |
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
506 |
| make_gram new_xprods _ (SOME gram) = extend_gram new_xprods gram |
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
507 |
| make_gram [] [] NONE = empty_gram |
f906f7f83dae
performance tuning: cached non-persistent Parser.gram reduces heap size by approx. 1-4%;
wenzelm
parents:
78007
diff
changeset
|
508 |
| make_gram new_xprods old_xprods NONE = extend_gram (new_xprods @ old_xprods) empty_gram; |
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
509 |
|
80960 | 510 |
end; |
511 |
||
18 | 512 |
|
42217 | 513 |
|
42374
b9a6b465da25
clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents:
42288
diff
changeset
|
514 |
(** parser **) |
b9a6b465da25
clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents:
42288
diff
changeset
|
515 |
|
b9a6b465da25
clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents:
42288
diff
changeset
|
516 |
(* parsetree *) |
18 | 517 |
|
237
a7d3e712767a
MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents:
46
diff
changeset
|
518 |
datatype parsetree = |
a7d3e712767a
MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents:
46
diff
changeset
|
519 |
Node of string * parsetree list | |
37683 | 520 |
Tip of Lexicon.token; |
237
a7d3e712767a
MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents:
46
diff
changeset
|
521 |
|
80950 | 522 |
fun pretty_parsetree (Node (c, pts)) = |
523 |
[Pretty.enclose "(" ")" |
|
524 |
(Pretty.breaks (Pretty.quote (Pretty.str c) :: maps pretty_parsetree pts))] |
|
525 |
| pretty_parsetree (Tip tok) = |
|
526 |
if Lexicon.valued_token tok then [Pretty.str (Lexicon.str_of_token tok)] else []; |
|
42374
b9a6b465da25
clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents:
42288
diff
changeset
|
527 |
|
b9a6b465da25
clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents:
42288
diff
changeset
|
528 |
|
b9a6b465da25
clarified pretty_parsetree: suppress literal tokens;
wenzelm
parents:
42288
diff
changeset
|
529 |
(* parser state *) |
42205
22f5cc06c419
direct pretty printing of parsetrees -- prevent diagnostic output from crashing due to undeclared entities;
wenzelm
parents:
41378
diff
changeset
|
530 |
|
18 | 531 |
type state = |
80930 | 532 |
(nt * int * (*identification and production precedence*) |
533 |
string * (*name of production*) |
|
534 |
int) * (*index for previous state list*) |
|
80943 | 535 |
symb list * (*input: rest of rhs*) |
536 |
parsetree list; (*output (reversed): already parsed nonterminals on rhs*) |
|
18 | 537 |
|
538 |
||
15752 | 539 |
(*Add parse tree to list and eliminate duplicates |
330
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
540 |
saving the maximum precedence*) |
42217 | 541 |
fun conc (t: parsetree list, prec: int) [] = (NONE, [(t, prec)]) |
330
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
542 |
| conc (t, prec) ((t', prec') :: ts) = |
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
543 |
if t = t' then |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
544 |
(SOME prec', |
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
545 |
if prec' >= prec then (t', prec') :: ts |
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
546 |
else (t, prec) :: ts) |
330
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
547 |
else |
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
548 |
let val (n, ts') = conc (t, prec) ts |
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
549 |
in (n, (t', prec') :: ts') end; |
18 | 550 |
|
330
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
551 |
(*Update entry in used*) |
42226
cb650789f2f0
use standard tables with standard argument order;
wenzelm
parents:
42222
diff
changeset
|
552 |
fun update_trees (A, t) used = |
cb650789f2f0
use standard tables with standard argument order;
wenzelm
parents:
42222
diff
changeset
|
553 |
let |
cb650789f2f0
use standard tables with standard argument order;
wenzelm
parents:
42222
diff
changeset
|
554 |
val (i, ts) = the (Inttab.lookup used A); |
cb650789f2f0
use standard tables with standard argument order;
wenzelm
parents:
42222
diff
changeset
|
555 |
val (n, ts') = conc t ts; |
cb650789f2f0
use standard tables with standard argument order;
wenzelm
parents:
42222
diff
changeset
|
556 |
in (n, Inttab.update (A, (i, ts')) used) end; |
18 | 557 |
|
330
2fda15dd1e0f
changed the way a grammar is generated to allow the new parser to work;
clasohm
parents:
258
diff
changeset
|
558 |
(*Replace entry in used*) |
42226
cb650789f2f0
use standard tables with standard argument order;
wenzelm
parents:
42222
diff
changeset
|
559 |
fun update_prec (A, prec) = |
cb650789f2f0
use standard tables with standard argument order;
wenzelm
parents:
42222
diff
changeset
|
560 |
Inttab.map_entry A (fn (_, ts) => (prec, ts)); |
18 | 561 |
|
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
562 |
fun head_nonterm pred : state -> bool = |
80933 | 563 |
let |
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
564 |
fun check (Nonterminal a :: _) = pred a |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
565 |
| check (Markup (_, []) :: rest) = check rest |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
566 |
| check (Markup (_, body) :: _) = check body |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
567 |
| check _ = false; |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
568 |
in check o #2 end; |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
569 |
|
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
570 |
fun get_states_lambda A max opt_min = |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
571 |
let |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
572 |
val pred = |
80933 | 573 |
(case opt_min of |
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
574 |
NONE => (fn (B, p) => A = B andalso p <= max) |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
575 |
| SOME min => (fn (B, p) => A = B andalso p <= max andalso p > min)); |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
576 |
in filter (head_nonterm pred) end; |
18 | 577 |
|
80944 | 578 |
fun get_states A max_prec = |
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
579 |
filter (head_nonterm (fn (B, p) => A = B andalso p <= max_prec)); |
18 | 580 |
|
581 |
||
80943 | 582 |
fun movedot_nonterm tt (info, Nonterminal _ :: sa, ts) : state = (info, sa, tt @ ts); |
18 | 583 |
|
584 |
||
41378 | 585 |
(*trigger value for warnings*) |
69575 | 586 |
val branching_level = Config.declare_int ("syntax_branching_level", \<^here>) (K 600); |
18 | 587 |
|
1147
57b5f55bf879
removed 'raw' productions from gram datatype; replaced mk_gram by add_prods;
clasohm
parents:
890
diff
changeset
|
588 |
|
80933 | 589 |
local |
590 |
||
80947 | 591 |
fun process_states (Gram {prods = gram_prods, chains = gram_chains, ...}) stateset i c states = |
37683 | 592 |
let |
80947 | 593 |
(*get all productions of a NT and NTs chained to it which can |
594 |
be started by specified token*) |
|
80974
d76230f575f2
minor performance tuning (NB: order of prods / states does not matter);
wenzelm
parents:
80973
diff
changeset
|
595 |
fun add_prods i tok nt ok = |
80947 | 596 |
let |
80974
d76230f575f2
minor performance tuning (NB: order of prods / states does not matter);
wenzelm
parents:
80973
diff
changeset
|
597 |
fun add (prod as (rhs, id, prod_prec)) = |
d76230f575f2
minor performance tuning (NB: order of prods / states does not matter);
wenzelm
parents:
80973
diff
changeset
|
598 |
if ok prod then cons ((nt, prod_prec, id, i), rhs, []) else I; |
80947 | 599 |
fun token_prods prods = |
80972 | 600 |
fold add (prods_lookup prods tok) #> |
601 |
fold add (prods_lookup prods Lexicon.dummy); |
|
80947 | 602 |
val nt_prods = #2 o Vector.nth gram_prods; |
80974
d76230f575f2
minor performance tuning (NB: order of prods / states does not matter);
wenzelm
parents:
80973
diff
changeset
|
603 |
in fold (token_prods o nt_prods) (chains_all_preds gram_chains [nt]) end; |
80947 | 604 |
|
80933 | 605 |
fun process _ [] (Si, Sii) = (Si, Sii) |
80946 | 606 |
| process used ((S as (info, symbs, ts)) :: States) (Si, Sii) = |
607 |
(case symbs of |
|
80969
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
608 |
Markup (_, body) :: sa => process used ((info, body @ sa, ts) :: States) (Si, Sii) |
667f5072ed2d
pro-forma support for markup blocks, without any change of result yet;
wenzelm
parents:
80968
diff
changeset
|
609 |
| Nonterminal (nt, min_prec) :: sa => |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
610 |
let (*predictor operation*) |
80973 | 611 |
fun movedot_lambda (t, k) = min_prec <= k ? cons (info, sa, t @ ts) |
612 |
val (used', States') = |
|
42226
cb650789f2f0
use standard tables with standard argument order;
wenzelm
parents:
42222
diff
changeset
|
613 |
(case Inttab.lookup used nt of |
38713 | 614 |
SOME (used_prec, l) => (*nonterminal has been processed*) |
615 |
if used_prec <= min_prec then |
|
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
616 |
(*wanted precedence has been processed*) |
80973 | 617 |
(used, fold_rev movedot_lambda l States) |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
618 |
else (*wanted precedence hasn't been parsed yet*) |
37683 | 619 |
let |
80974
d76230f575f2
minor performance tuning (NB: order of prods / states does not matter);
wenzelm
parents:
80973
diff
changeset
|
620 |
val States' = States |> add_prods i c nt (until_prec min_prec used_prec) |
d76230f575f2
minor performance tuning (NB: order of prods / states does not matter);
wenzelm
parents:
80973
diff
changeset
|
621 |
|> fold movedot_lambda l; |
80973 | 622 |
in (update_prec (nt, min_prec) used, States') end |
38712
f7688fd819a8
some attempts to recover Isabelle/ML style from the depths of time;
wenzelm
parents:
38711
diff
changeset
|
623 |
| NONE => (*nonterminal is parsed for the first time*) |
80974
d76230f575f2
minor performance tuning (NB: order of prods / states does not matter);
wenzelm
parents:
80973
diff
changeset
|
624 |
let val States' = States |> add_prods i c nt (until_prec min_prec no_prec); |
42226
cb650789f2f0
use standard tables with standard argument order;
wenzelm
parents:
42222
diff
changeset
|
625 |
in (Inttab.update (nt, (min_prec, [])) used, States') end); |
80973 | 626 |
in process used' States' (S :: Si, Sii) end |
80946 | 627 |
| Terminal a :: sa => (*scanner operation*) |
80929 | 628 |
let |
80946 | 629 |
val (_, _, id, _) = info; |
80929 | 630 |
val Sii' = |
631 |
if Lexicon.tokens_match_ord (a, c) <> EQUAL then Sii |
|
632 |
else (*move dot*) |
|
633 |
let val ts' = if Lexicon.valued_token c orelse id <> "" then Tip c :: ts else ts |
|
80943 | 634 |
in (info, sa, ts') :: Sii end; |
80933 | 635 |
in process used States (S :: Si, Sii') end |
80946 | 636 |
| [] => (*completer operation*) |
80928 | 637 |
let |
80946 | 638 |
val (A, prec, id, j) = info; |
80928 | 639 |
val tt = if id = "" then ts else [Node (id, rev ts)]; |
640 |
val (used', Slist) = |
|
641 |
if j = i then (*lambda production?*) |
|
642 |
let val (prec', used') = update_trees (A, (tt, prec)) used |
|
80933 | 643 |
in (used', get_states_lambda A prec prec' Si) end |
80944 | 644 |
else (used, get_states A prec (Array.nth stateset j)); |
80928 | 645 |
val States' = map (movedot_nonterm tt) Slist; |
80933 | 646 |
in process used' (States' @ States) (S :: Si, Sii) end) |
80961 | 647 |
|
648 |
val (Si, Sii) = process Inttab.empty states ([], []); |
|
649 |
in |
|
650 |
Array.upd stateset i Si; |
|
651 |
Array.upd stateset (i + 1) Sii |
|
652 |
end; |
|
18 | 653 |
|
80964 | 654 |
fun produce gram stateset i prev rest = |
77888 | 655 |
(case Array.nth stateset i of |
25986
26f1e4c172c3
syntax error: reduced spam -- print expected nonterminals instead of terminals;
wenzelm
parents:
24245
diff
changeset
|
656 |
[] => |
26f1e4c172c3
syntax error: reduced spam -- print expected nonterminals instead of terminals;
wenzelm
parents:
24245
diff
changeset
|
657 |
let |
80964 | 658 |
val inp = if Lexicon.is_dummy prev then rest else prev :: rest; |
659 |
val pos = Position.here (Lexicon.pos_of_token prev); |
|
27801
0d0adaf0228d
datatype token: maintain range, tuned representation;
wenzelm
parents:
26678
diff
changeset
|
660 |
in |
80964 | 661 |
if null inp then |
55624 | 662 |
error ("Inner syntax error: unexpected end of input" ^ pos) |
663 |
else |
|
664 |
error ("Inner syntax error" ^ pos ^ |
|
665 |
Markup.markup Markup.no_report |
|
666 |
("\n" ^ Pretty.string_of |
|
667 |
(Pretty.block [ |
|
668 |
Pretty.str "at", Pretty.brk 1, |
|
669 |
Pretty.block |
|
670 |
(Pretty.str "\"" :: |
|
80964 | 671 |
Pretty.breaks (map (Pretty.str o Lexicon.str_of_token) (#1 (split_last inp))) @ |
55624 | 672 |
[Pretty.str "\""])]))) |
27801
0d0adaf0228d
datatype token: maintain range, tuned representation;
wenzelm
parents:
26678
diff
changeset
|
673 |
end |
80931 | 674 |
| states => |
80964 | 675 |
(case rest of |
80931 | 676 |
[] => states |
80964 | 677 |
| c :: cs => (process_states gram stateset i c states; produce gram stateset (i + 1) c cs))); |
18 | 678 |
|
80933 | 679 |
in |
18 | 680 |
|
80933 | 681 |
fun parse (gram as Gram {tags, ...}) start toks = |
237
a7d3e712767a
MAJOR INTERNAL CHANGE: extend and merge operations of syntax tables
wenzelm
parents:
46
diff
changeset
|
682 |
let |
37683 | 683 |
val start_tag = |
80933 | 684 |
(case tags_lookup tags start of |
37683 | 685 |
SOME tag => tag |
80933 | 686 |
| NONE => error ("Inner syntax: bad grammar root symbol " ^ quote start)); |
18 | 687 |
|
27801
0d0adaf0228d
datatype token: maintain range, tuned representation;
wenzelm
parents:
26678
diff
changeset
|
688 |
val end_pos = |
0d0adaf0228d
datatype token: maintain range, tuned representation;
wenzelm
parents:
26678
diff
changeset
|
689 |
(case try List.last toks of |
0d0adaf0228d
datatype token: maintain range, tuned representation;
wenzelm
parents:
26678
diff
changeset
|
690 |
NONE => Position.none |
67551 | 691 |
| SOME tok => Lexicon.end_pos_of_token tok); |
80933 | 692 |
val input = toks @ [Lexicon.mk_eof end_pos]; |
693 |
||
80943 | 694 |
val S0: state = ((~1, 0, "", 0), [Nonterminal (start_tag, 0), Terminal Lexicon.eof], []); |
80933 | 695 |
val stateset = Array.array (length input + 1, []); |
696 |
val _ = Array.upd stateset 0 [S0]; |
|
697 |
||
698 |
val pts = |
|
80964 | 699 |
produce gram stateset 0 Lexicon.dummy input |
80943 | 700 |
|> map_filter (fn (_, _, [pt]) => SOME pt | _ => NONE); |
80933 | 701 |
in if null pts then raise Fail "Inner syntax: no parse trees" else pts end; |
26678 | 702 |
|
18 | 703 |
end; |
80933 | 704 |
|
705 |
end; |