-
Notifications
You must be signed in to change notification settings - Fork 85
/
replProgScript.sml
287 lines (248 loc) · 8.59 KB
/
replProgScript.sml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
(*
The CakeML REPL
*)
open preamble basis
(*
TODO: add this to INCLUDES as necessary, depending where this file ends up
val () = loadPath := "../compiler/inference/" :: !loadPath;
val () = loadPath := "../compiler/parsing/" :: !loadPath;
local open lexer_funTheory cmlParseTheory
infer_tTheory inferTheory
in end
*)
val _ = new_theory"replProg";
(*
val _ = set_grammar_ancestry[
"infer_t","infer",
"tokenUtils","cmlPtreeConversion","cmlParse",
"lexer_fun",
"ml_translator", "std_prelude"];
val _ = temp_tight_equality();
val () = ml_translatorLib.translation_extends"basisProg";
Definition welcome_message_def:
welcome_message = strlit"Welcome to CakeML\n"
End
Definition prompt_def:
prompt = strlit"> "
End
val res = translate welcome_message_def;
val res = translate prompt_def;
val magic_eval_exp =
``Fun "exp" (App Eval [Var(Short"env"); Var(Short"exp")])``;
val add_magic_eval =
ml_progLib.add_Dlet_Fun
``unknown_loc`` ``"magic_eval"``
``"env"`` magic_eval_exp "magic_eval_v";
val envlookup_exp =
``Fun "id" (App EnvLookup [Var(Short"env"); Var(Short"id")])``;
val add_envlookup =
ml_progLib.add_Dlet_Fun
``unknown_loc`` ``"envlookup"``
``"env"`` envlookup_exp "envlookup_v";
val () = ml_translatorLib.ml_prog_update add_magic_eval;
val () = ml_translatorLib.ml_prog_update add_envlookup;
Definition SEM_ENV_def:
SEM_ENV env ⇔ (λv. v = Env env)
End
val () = ml_translatorLib.register_type ``:('a,'b) id``;
Definition envlookup_def:
envlookup (env:v sem_env) id = nsLookup env.v id
End
val envlookup_v_def = definition"envlookup_v_def";
open semanticPrimitivesTheory
Theorem NAMESPACE_ID_TYPE_v_to_id:
∀v x.
NAMESPACE_ID_TYPE HOL_STRING_TYPE HOL_STRING_TYPE x v
⇔ v_to_id v = SOME x
Proof
recInduct v_to_id_ind
\\ rw[v_to_id_def, CaseEq"option", decProgTheory.NAMESPACE_ID_TYPE_def]
\\ Cases_on`x` \\ fs[decProgTheory.NAMESPACE_ID_TYPE_def, id_type_num_def]
\\ fs[HOL_STRING_TYPE_def, implode_def, STRING_TYPE_def]
\\ qmatch_goalsub_abbrev_tac`stamp = ts`
\\ Cases_on`stamp = ts` \\ fs[]
\\ metis_tac[]
QED
Theorem envlookup_cert:
(SEM_ENV
--> NAMESPACE_ID_TYPE HOL_STRING_TYPE HOL_STRING_TYPE
--> OPTION_TYPE (=)) envlookup envlookup_v
Proof
rw[PRECONDITION_def, IS_SOME_EXISTS, Arrow_def, AppReturns_def,
envlookup_v_def, do_opapp_def, ml_progTheory.eval_rel_def]
\\ rw[Once evaluate_def]
\\ qexists_tac`[]`
\\ rw[PULL_EXISTS]
\\ rpt (qexists_tac `ARB`)
\\ rw[]
\\ rw[Once evaluate_def]
\\ rw[Once evaluate_def]
\\ rw[Once evaluate_def]
\\ rw[Once evaluate_def]
\\ rw[do_app_def]
\\ fs[SEM_ENV_def]
\\ fs[NAMESPACE_ID_TYPE_v_to_id]
\\ simp[state_component_equality]
\\ simp[envlookup_def]
\\ qmatch_goalsub_rename_tac`nsLookup env.v v`
\\ Cases_on`nsLookup env.v v` \\ fs[OPTION_TYPE_def, maybe_to_v_def]
\\ EVAL_TAC
QED
Definition exn_infer_t_def:
exn_infer_t = Infer_Tapp [] Texn_num
End
Datatype:
top_level = REPLCommand mlstring exp | TopLevelDecs (dec list)
End
Definition ptree_REPLCommand_def:
ptree_REPLCommand (Lf _) = NONE ∧
ptree_REPLCommand (Nd nont args) =
if FST nont <> mkNT nREPLCommand then NONE
else
case args of
| [pt1; pt2] =>
OPTION_BIND (destLf pt1)
(λsym. OPTION_BIND (destTOK sym)
(λtok. OPTION_BIND (destREPLIDT tok)
(λrid. OPTION_BIND (ptree_Expr nEbase pt2)
(λexp. SOME (REPLCommand (implode rid) exp)))))
| _ => NONE
End
Definition ptree_TopLevel_def:
ptree_TopLevel (Lf _) = NONE ∧
ptree_TopLevel (Nd nont args) =
if FST nont <> mkNT nTopLevel then NONE
else
case args of
[pt] =>
OPTION_CHOICE
(ptree_REPLCommand pt)
(OPTION_MAP TopLevelDecs (ptree_TopLevelDecs pt))
| _ => NONE
End
Definition lex_and_parse_TopLevel_def:
lex_and_parse_TopLevel line =
case destResult (cmlpegexec nTopLevel (lexer_fun line)) of
| SOME ([], [pt]) => (ptree_TopLevel pt)
| _ => NONE
End
Definition repl_printer_name_def:
repl_printer_name = "_ pp"
End
(* TODO: not a strlit, since the AST doesn't have mlstrings in it *)
Definition add_repl_printer_name_dec_def:
add_repl_printer_name_dec exp =
Dlet unknown_loc (Pvar repl_printer_name) exp
End
Datatype:
repl_inf_state = <| ienv : inf_env; next_id : num |>
End
Definition repl_infertype_prog_def:
repl_infertype_prog inf_state prog =
case infer_ds inf_state.ienv prog
(init_infer_state <| next_uvar := 0; subst := FEMPTY;
next_id := inf_state.next_id |>)
of
(M_success new_ienv, st) =>
M_success <| ienv := new_ienv; next_id := st.next_id |>
| (M_failure x, _) => M_failure x
End
Definition repl_extend_inf_state_def:
repl_extend_inf_state inf_state new_stuff =
<| ienv := extend_dec_ienv new_stuff.ienv inf_state.ienv
; next_id := new_stuff.next_id |>
End
Definition repl_get_pp_type_key_def:
repl_get_pp_type_key new_stuff =
nsLookup new_stuff.ienv.inf_v (Short repl_printer_name)
End
Definition repl_extend_pp_map_def:
repl_extend_pp_map pp_map key v =
(key, v) :: pp_map
End
Definition dummy_printer_def:
dummy_printer _ = strlit"?"
End
Definition val_string_def:
val_string inf_state name inf_type ppd_value =
concat [strlit"val "; name;
strlit": "; FST(inf_type_to_string inf_state.ienv.inf_t inf_type);
strlit" = "; ppd_value; strlit"\n"]
End
Definition repl_pp_fun_def:
repl_pp_fun pp_map inf_type =
case ALOOKUP pp_map inf_type of
| NONE => dummy_printer
| SOME pp_fun => pp_fun
End
val repl_build_and_format_output
fun repl_build_and_format_output inf_state pp_map env bindings =
String.concatWith "\n"
(List.map (fn (name, inf_type) =>
val_string inf_state name inf_type
(repl_pp_fun pp_map inf_type (envlookup env name)))
bindings)
(* REP -- the L is to come later... *)
val rep_ast = process_topdecs`
fun rep state =
case state of (inf_state, env, pp_map) =>
case TextIO.inputLine TextIO.stdIn of
None => None
| Some line =>
case lex_and_parse_TopLevel line of
Some (TopLevelDecs prog) =>
case repl_infertype_prog inf_state prog of
M_failure (_, msg) =>
(TextIO.print_err msg;
TextIO.print_err "\n";
Some state)
| M_success new_stuff =>
case Some (magic_eval env prog)
handle e =>
(TextIO.print_err "Exception raised: ";
TextIO.print_err (repl_pp_fun pp_map exn_infer_t e);
TextIO.print_err ("\n");
None)
of
None => Some state
| Some env =>
let
val new_inf_state = repl_extend_inf_state inf_state new_stuff
val output = repl_build_and_format_output new_inf_state pp_map env
(get_bindings new_stuff)
val state = (new_inf_state, env, pp_map)
in
(TextIO.print output;
Some state)
end
| Some (REPLCommand ("InstallPP", parsed_exp)) =>
let val prog = add_repl_printer_name_dec parsed_exp in
case repl_infertype_prog inf_state prog of
M_failure (_, msg) =>
(TextIO.print_err "Printer does not typecheck: ";
TextIO.print_err msg;
Some state)
| M_success new_stuff =>
case Some (magic_eval env prog)
handle _ => None
of
None => (TextIO.print_err "Printer expression raised exception\n"; Some state)
Some pp_env =>
Some
(case repl_get_pp_type_key new_stuff of
None => (TextIO.print_err "Printer does not have a reasonable type\n";
state)
| Some key =>
(inf_state, env,
repl_extend_pp_map pp_map key
(envlookup pp_env repl_printer_name)))
end
| _ => (TextIO.print_err "Cannot understand input\n";
Some state)`;
val main_ast = process_topdecs`
fun main u =
let
val u = TextIO.print welcome_banner
val u = TextIO.print prompt
*)
val _ = export_theory();