author | wenzelm |
Wed, 10 Jul 2013 12:10:32 +0200 | |
changeset 52572 | 2fb1f9cf80d3 |
parent 52571 | 344527354323 |
child 52586 | 7a0935571a23 |
permissions | -rw-r--r-- |
47336 | 1 |
(* Title: Pure/PIDE/command.ML |
2 |
Author: Makarius |
|
3 |
||
52534 | 4 |
Prover command execution: read -- eval -- print. |
47336 | 5 |
*) |
6 |
||
7 |
signature COMMAND = |
|
8 |
sig |
|
52534 | 9 |
type eval_process |
10 |
type eval = {exec_id: Document_ID.exec, eval_process: eval_process} |
|
52536 | 11 |
val eval_result_state: eval -> Toplevel.state |
52534 | 12 |
type print_process |
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
13 |
type print = |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
14 |
{name: string, pri: int, persistent: bool, |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
15 |
exec_id: Document_ID.exec, print_process: print_process} |
52534 | 16 |
type exec = eval * print list |
52536 | 17 |
val no_exec: exec |
52566
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
wenzelm
parents:
52559
diff
changeset
|
18 |
val exec_ids: exec option -> Document_ID.exec list |
52571 | 19 |
val stable_eval: eval -> bool |
20 |
val stable_print: print -> bool |
|
52535
b7badd371e4d
tuned signature -- eliminated pointless type synonym;
wenzelm
parents:
52534
diff
changeset
|
21 |
val read: (unit -> theory) -> Token.T list -> Toplevel.transition |
b7badd371e4d
tuned signature -- eliminated pointless type synonym;
wenzelm
parents:
52534
diff
changeset
|
22 |
val eval: (unit -> theory) -> Token.T list -> eval -> eval |
52570 | 23 |
val print: bool -> string -> eval -> print list -> print list option |
52526 | 24 |
type print_fn = Toplevel.transition -> Toplevel.state -> unit |
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
25 |
val print_function: {name: string, pri: int, persistent: bool} -> |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
26 |
({command_name: string} -> print_fn option) -> unit |
52571 | 27 |
val no_print_function: string -> unit |
52536 | 28 |
val execute: exec -> unit |
47336 | 29 |
end; |
30 |
||
31 |
structure Command: COMMAND = |
|
32 |
struct |
|
33 |
||
52534 | 34 |
(** memo results -- including physical interrupts! **) |
47341
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
35 |
|
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
36 |
datatype 'a expr = |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
37 |
Expr of unit -> 'a | |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
38 |
Result of 'a Exn.result; |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
39 |
|
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
40 |
abstype 'a memo = Memo of 'a expr Synchronized.var |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
41 |
with |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
42 |
|
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
43 |
fun memo e = Memo (Synchronized.var "Command.memo" (Expr e)); |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
44 |
fun memo_value a = Memo (Synchronized.var "Command.memo" (Result (Exn.Res a))); |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
45 |
|
47342
7828c7b3c143
more explicit memo_eval vs. memo_result, to enforce bottom-up execution;
wenzelm
parents:
47341
diff
changeset
|
46 |
fun memo_eval (Memo v) = |
47341
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
47 |
(case Synchronized.value v of |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
48 |
Result res => res |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
49 |
| _ => |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
50 |
Synchronized.guarded_access v |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
51 |
(fn Result res => SOME (res, Result res) |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
52 |
| Expr e => |
52534 | 53 |
let val res = Exn.capture e (); (*sic!*) |
47342
7828c7b3c143
more explicit memo_eval vs. memo_result, to enforce bottom-up execution;
wenzelm
parents:
47341
diff
changeset
|
54 |
in SOME (res, Result res) end)) |
7828c7b3c143
more explicit memo_eval vs. memo_result, to enforce bottom-up execution;
wenzelm
parents:
47341
diff
changeset
|
55 |
|> Exn.release; |
7828c7b3c143
more explicit memo_eval vs. memo_result, to enforce bottom-up execution;
wenzelm
parents:
47341
diff
changeset
|
56 |
|
52526 | 57 |
fun memo_fork params (Memo v) = |
58 |
(case Synchronized.value v of |
|
59 |
Result _ => () |
|
60 |
| _ => ignore ((singleton o Future.forks) params (fn () => memo_eval (Memo v)))); |
|
61 |
||
47342
7828c7b3c143
more explicit memo_eval vs. memo_result, to enforce bottom-up execution;
wenzelm
parents:
47341
diff
changeset
|
62 |
fun memo_result (Memo v) = |
7828c7b3c143
more explicit memo_eval vs. memo_result, to enforce bottom-up execution;
wenzelm
parents:
47341
diff
changeset
|
63 |
(case Synchronized.value v of |
7828c7b3c143
more explicit memo_eval vs. memo_result, to enforce bottom-up execution;
wenzelm
parents:
47341
diff
changeset
|
64 |
Result res => Exn.release res |
7828c7b3c143
more explicit memo_eval vs. memo_result, to enforce bottom-up execution;
wenzelm
parents:
47341
diff
changeset
|
65 |
| _ => raise Fail "Unfinished memo result"); |
47341
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
66 |
|
52526 | 67 |
fun memo_stable (Memo v) = |
68 |
(case Synchronized.value v of |
|
69 |
Expr _ => true |
|
70 |
| Result res => not (Exn.is_interrupt_exn res)); |
|
71 |
||
47341
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
72 |
end; |
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
73 |
|
00f6279bb67a
Command.memo including physical interrupts (unlike Lazy.lazy);
wenzelm
parents:
47336
diff
changeset
|
74 |
|
52534 | 75 |
|
52536 | 76 |
(** main phases of execution **) |
77 |
||
78 |
(* basic type definitions *) |
|
52534 | 79 |
|
80 |
type eval_state = |
|
81 |
{failed: bool, malformed: bool, command: Toplevel.transition, state: Toplevel.state}; |
|
52536 | 82 |
val init_eval_state = |
83 |
{failed = false, malformed = false, command = Toplevel.empty, state = Toplevel.toplevel}; |
|
84 |
||
52534 | 85 |
type eval_process = eval_state memo; |
86 |
type eval = {exec_id: Document_ID.exec, eval_process: eval_process}; |
|
87 |
||
52536 | 88 |
fun eval_result ({eval_process, ...}: eval) = memo_result eval_process; |
89 |
val eval_result_state = #state o eval_result; |
|
90 |
||
52534 | 91 |
type print_process = unit memo; |
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
92 |
type print = |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
93 |
{name: string, pri: int, persistent: bool, |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
94 |
exec_id: Document_ID.exec, print_process: print_process}; |
52534 | 95 |
|
52536 | 96 |
type exec = eval * print list; |
97 |
val no_exec: exec = ({exec_id = Document_ID.none, eval_process = memo_value init_eval_state}, []); |
|
98 |
||
52566
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
wenzelm
parents:
52559
diff
changeset
|
99 |
fun exec_ids (NONE: exec option) = [] |
52a0eacf04d1
more formal type assign_update: avoid duplicate results and redundant update of global State.execs;
wenzelm
parents:
52559
diff
changeset
|
100 |
| exec_ids (SOME ({exec_id, ...}, prints)) = exec_id :: map #exec_id prints; |
52536 | 101 |
|
52532 | 102 |
|
52570 | 103 |
(* stable results *) |
104 |
||
105 |
fun stable_goals exec_id = |
|
106 |
not (Par_Exn.is_interrupted (Future.join_results (Goal.peek_futures exec_id))); |
|
107 |
||
108 |
fun stable_eval ({exec_id, eval_process}: eval) = |
|
109 |
stable_goals exec_id andalso memo_stable eval_process; |
|
110 |
||
111 |
fun stable_print ({exec_id, print_process, ...}: print) = |
|
112 |
stable_goals exec_id andalso memo_stable print_process; |
|
113 |
||
114 |
||
52510 | 115 |
(* read *) |
52509 | 116 |
|
52534 | 117 |
fun read init span = |
52510 | 118 |
let |
119 |
val outer_syntax = #2 (Outer_Syntax.get_syntax ()); |
|
120 |
val command_reports = Outer_Syntax.command_reports outer_syntax; |
|
52509 | 121 |
|
52534 | 122 |
val proper_range = |
123 |
Position.set_range (Token.position_range_of (#1 (take_suffix Token.is_improper span))); |
|
52510 | 124 |
val pos = |
125 |
(case find_first Token.is_command span of |
|
126 |
SOME tok => Token.position_of tok |
|
127 |
| NONE => proper_range); |
|
52509 | 128 |
|
52510 | 129 |
val (is_malformed, token_reports) = Thy_Syntax.reports_of_tokens span; |
130 |
val _ = Position.reports_text (token_reports @ maps command_reports span); |
|
131 |
in |
|
132 |
if is_malformed then Toplevel.malformed pos "Malformed command syntax" |
|
133 |
else |
|
134 |
(case Outer_Syntax.read_spans outer_syntax span of |
|
135 |
[tr] => |
|
136 |
if Keyword.is_control (Toplevel.name_of tr) then |
|
137 |
Toplevel.malformed pos "Illegal control command" |
|
52534 | 138 |
else Toplevel.modify_init init tr |
139 |
| [] => Toplevel.ignored (Position.set_range (Token.position_range_of span)) |
|
52510 | 140 |
| _ => Toplevel.malformed proper_range "Exactly one command expected") |
141 |
handle ERROR msg => Toplevel.malformed proper_range msg |
|
142 |
end; |
|
52509 | 143 |
|
144 |
||
145 |
(* eval *) |
|
47336 | 146 |
|
147 |
local |
|
148 |
||
149 |
fun run int tr st = |
|
51284
59a03019f3bf
fork diagnostic commands (theory loader and PIDE interaction);
wenzelm
parents:
51266
diff
changeset
|
150 |
if Goal.future_enabled () andalso Keyword.is_diag (Toplevel.name_of tr) then |
51605
eca8acb42e4a
more explicit Goal.fork_params -- avoid implicit arguments via thread data;
wenzelm
parents:
51603
diff
changeset
|
151 |
(Goal.fork_params {name = "Toplevel.diag", pos = Toplevel.pos_of tr, pri = ~1} |
eca8acb42e4a
more explicit Goal.fork_params -- avoid implicit arguments via thread data;
wenzelm
parents:
51603
diff
changeset
|
152 |
(fn () => Toplevel.command_exception int tr st); ([], SOME st)) |
51284
59a03019f3bf
fork diagnostic commands (theory loader and PIDE interaction);
wenzelm
parents:
51266
diff
changeset
|
153 |
else Toplevel.command_errors int tr st; |
47336 | 154 |
|
52510 | 155 |
fun check_cmts span tr st' = |
156 |
Toplevel.setmp_thread_position tr |
|
157 |
(fn () => |
|
158 |
Outer_Syntax.side_comments span |> maps (fn cmt => |
|
159 |
(Thy_Output.check_text (Token.source_position_of cmt) st'; []) |
|
160 |
handle exn => ML_Compiler.exn_messages_ids exn)) (); |
|
161 |
||
47336 | 162 |
fun proof_status tr st = |
163 |
(case try Toplevel.proof_of st of |
|
164 |
SOME prf => Toplevel.status tr (Proof.status_markup prf) |
|
165 |
| NONE => ()); |
|
166 |
||
52534 | 167 |
fun eval_state span tr ({malformed, state = st, ...}: eval_state) = |
52509 | 168 |
if malformed then |
52526 | 169 |
{failed = true, malformed = malformed, command = tr, state = Toplevel.toplevel} |
48772 | 170 |
else |
171 |
let |
|
172 |
val malformed' = Toplevel.is_malformed tr; |
|
173 |
val is_init = Toplevel.is_init tr; |
|
174 |
val is_proof = Keyword.is_proof (Toplevel.name_of tr); |
|
47336 | 175 |
|
48772 | 176 |
val _ = Multithreading.interrupted (); |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49866
diff
changeset
|
177 |
val _ = Toplevel.status tr Markup.running; |
48918
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents:
48772
diff
changeset
|
178 |
val (errs1, result) = run (is_init orelse is_proof) (Toplevel.set_print false tr) st; |
52509 | 179 |
val errs2 = (case result of NONE => [] | SOME st' => check_cmts span tr st'); |
48918
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents:
48772
diff
changeset
|
180 |
val errs = errs1 @ errs2; |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49866
diff
changeset
|
181 |
val _ = Toplevel.status tr Markup.finished; |
50914
fe4714886d92
identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents:
50911
diff
changeset
|
182 |
val _ = List.app (Future.error_msg (Toplevel.pos_of tr)) errs; |
48772 | 183 |
in |
184 |
(case result of |
|
185 |
NONE => |
|
186 |
let |
|
187 |
val _ = if null errs then Exn.interrupt () else (); |
|
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49866
diff
changeset
|
188 |
val _ = Toplevel.status tr Markup.failed; |
52526 | 189 |
in {failed = true, malformed = malformed', command = tr, state = st} end |
48772 | 190 |
| SOME st' => |
191 |
let |
|
192 |
val _ = proof_status tr st'; |
|
52526 | 193 |
in {failed = false, malformed = malformed', command = tr, state = st'} end) |
48772 | 194 |
end; |
47336 | 195 |
|
52534 | 196 |
in |
197 |
||
198 |
fun eval init span eval0 = |
|
199 |
let |
|
200 |
val exec_id = Document_ID.make (); |
|
201 |
fun process () = |
|
202 |
let |
|
203 |
val tr = |
|
204 |
Position.setmp_thread_data (Position.id_only (Document_ID.print exec_id)) |
|
52536 | 205 |
(fn () => read init span |> Toplevel.exec_id exec_id) (); |
52534 | 206 |
in eval_state span tr (eval_result eval0) end; |
207 |
in {exec_id = exec_id, eval_process = memo process} end; |
|
208 |
||
47336 | 209 |
end; |
210 |
||
52509 | 211 |
|
212 |
(* print *) |
|
213 |
||
52526 | 214 |
type print_fn = Toplevel.transition -> Toplevel.state -> unit; |
52515 | 215 |
|
52511 | 216 |
local |
217 |
||
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
218 |
type print_function = string * (int * bool * ({command_name: string} -> print_fn option)); |
52526 | 219 |
val print_functions = Synchronized.var "Command.print_functions" ([]: print_function list); |
52511 | 220 |
|
52570 | 221 |
fun print_error tr e = |
222 |
(Toplevel.setmp_thread_position tr o Runtime.controlled_execution) e () handle exn => |
|
223 |
List.app (Future.error_msg (Toplevel.pos_of tr)) (ML_Compiler.exn_messages_ids exn); |
|
52516
b5b3c888df9f
more exception handling -- make print functions total;
wenzelm
parents:
52515
diff
changeset
|
224 |
|
52511 | 225 |
in |
52509 | 226 |
|
52570 | 227 |
fun print command_visible command_name eval old_prints = |
228 |
let |
|
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
229 |
fun new_print (name, (pri, persistent, get_fn)) = |
52570 | 230 |
let |
231 |
fun make_print strict print_fn = |
|
232 |
let |
|
233 |
val exec_id = Document_ID.make (); |
|
234 |
fun process () = |
|
235 |
let |
|
236 |
val {failed, command, state = st', ...} = eval_result eval; |
|
237 |
val tr = Toplevel.exec_id exec_id command; |
|
238 |
in |
|
239 |
if failed andalso not strict then () |
|
240 |
else print_error tr (fn () => print_fn tr st') |
|
241 |
end; |
|
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
242 |
in |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
243 |
{name = name, pri = pri, persistent = persistent, |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
244 |
exec_id = exec_id, print_process = memo process} |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
245 |
end; |
52570 | 246 |
in |
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
247 |
(case Exn.capture (Runtime.controlled_execution get_fn) {command_name = command_name} of |
52570 | 248 |
Exn.Res NONE => NONE |
249 |
| Exn.Res (SOME print_fn) => SOME (make_print false print_fn) |
|
250 |
| Exn.Exn exn => SOME (make_print true (fn _ => fn _ => reraise exn))) |
|
251 |
end; |
|
252 |
||
253 |
val new_prints = |
|
254 |
if command_visible then |
|
255 |
rev (Synchronized.value print_functions) |> map_filter (fn pr => |
|
256 |
(case find_first (equal (fst pr) o #name) old_prints of |
|
257 |
SOME print => if stable_print print then SOME print else new_print pr |
|
258 |
| NONE => new_print pr)) |
|
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
259 |
else filter (fn print => #persistent print andalso stable_print print) old_prints; |
52570 | 260 |
in |
261 |
if eq_list (op = o pairself #exec_id) (old_prints, new_prints) then NONE |
|
262 |
else SOME new_prints |
|
263 |
end; |
|
52511 | 264 |
|
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
265 |
fun print_function {name, pri, persistent} f = |
52511 | 266 |
Synchronized.change print_functions (fn funs => |
267 |
(if not (AList.defined (op =) funs name) then () |
|
268 |
else warning ("Redefining command print function: " ^ quote name); |
|
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
269 |
AList.update (op =) (name, (pri, persistent, f)) funs)); |
52511 | 270 |
|
52571 | 271 |
fun no_print_function name = |
272 |
Synchronized.change print_functions (filter_out (equal name o #1)); |
|
273 |
||
52511 | 274 |
end; |
275 |
||
52526 | 276 |
val _ = |
52572
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
277 |
print_function {name = "print_state", pri = 0, persistent = true} |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
278 |
(fn {command_name} => SOME (fn tr => fn st' => |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
279 |
let |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
280 |
val is_init = Keyword.is_theory_begin command_name; |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
281 |
val is_proof = Keyword.is_proof command_name; |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
282 |
val do_print = |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
283 |
not is_init andalso |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
284 |
(Toplevel.print_of tr orelse (is_proof andalso Toplevel.is_proof st')); |
2fb1f9cf80d3
print "persistent" flag allows to adjust tradeoff of ML run-time vs. JVM heap-space;
wenzelm
parents:
52571
diff
changeset
|
285 |
in if do_print then Toplevel.print_state false st' else () end)); |
52509 | 286 |
|
52532 | 287 |
|
52536 | 288 |
(* overall execution process *) |
52532 | 289 |
|
52559
ddaf277e0d8c
more direct interleaving of eval/print and update/execution -- refrain from crude manipulation of max_threads;
wenzelm
parents:
52536
diff
changeset
|
290 |
fun run_print ({name, pri, print_process, ...}: print) = |
ddaf277e0d8c
more direct interleaving of eval/print and update/execution -- refrain from crude manipulation of max_threads;
wenzelm
parents:
52536
diff
changeset
|
291 |
(if Multithreading.enabled () then |
ddaf277e0d8c
more direct interleaving of eval/print and update/execution -- refrain from crude manipulation of max_threads;
wenzelm
parents:
52536
diff
changeset
|
292 |
memo_fork {name = name, group = NONE, deps = [], pri = pri, interrupts = true} |
ddaf277e0d8c
more direct interleaving of eval/print and update/execution -- refrain from crude manipulation of max_threads;
wenzelm
parents:
52536
diff
changeset
|
293 |
else memo_eval) print_process; |
ddaf277e0d8c
more direct interleaving of eval/print and update/execution -- refrain from crude manipulation of max_threads;
wenzelm
parents:
52536
diff
changeset
|
294 |
|
52536 | 295 |
fun execute (({eval_process, ...}, prints): exec) = |
52559
ddaf277e0d8c
more direct interleaving of eval/print and update/execution -- refrain from crude manipulation of max_threads;
wenzelm
parents:
52536
diff
changeset
|
296 |
(memo_eval eval_process; List.app run_print prints); |
52532 | 297 |
|
47336 | 298 |
end; |
299 |