Source file Interpreter.ml
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
open AST
open ASTUtils
let fatal_from pos = Error.fatal_from pos
let fail a msg = failwith (Printf.sprintf "%s: %s" (PP.pp_pos_str a) msg)
let fail_initialise a id =
fail a (Printf.sprintf "Cannot initialise variable %s" id)
let _warn = false
let _dbg = false
module type S = sig
module B : Backend.S
val run_env : (AST.identifier * B.value) list -> AST.t -> B.value B.m
val run : AST.t -> B.value B.m
val run_typed : AST.t -> StaticEnv.env -> B.value B.m
end
module type Config = sig
module Instr : Instrumentation.SEMINSTR
val type_checking_strictness : Typing.strictness
val unroll : int
end
module Make (B : Backend.S) (C : Config) = struct
module B = B
module SemanticsRule = Instrumentation.SemanticsRule
type 'a m = 'a B.m
module EnvConf = struct
type v = B.value
let unroll = C.unroll
end
module IEnv = Env.RunTime (EnvConf)
type env = IEnv.env
type value_read_from = B.value * identifier * scope
type 'a maybe_exception =
| Normal of 'a
| Throwing of (value_read_from * ty) option * env
(** An intermediate result of a statement. *)
type control_flow_state =
| Returning of B.value list * IEnv.global
(** Control flow interruption: skip to the end of the function. *)
| Continuing of env (** Normal behaviour: pass to next statement. *)
type expr_eval_type = (B.value * env) maybe_exception m
type stmt_eval_type = control_flow_state maybe_exception m
type func_eval_type = (value_read_from list * IEnv.global) maybe_exception m
let one = B.v_of_int 1
let true' = E_Literal (L_Bool true) |> add_dummy_pos
let false' = E_Literal (L_Bool false) |> add_dummy_pos
let return = B.return
let return_normal v = Normal v |> return
let return_continue env : stmt_eval_type = Continuing env |> return_normal
let return_return env vs : stmt_eval_type =
Returning (vs, env.IEnv.global) |> return_normal
let ( let*| ) = B.bind_seq
let ( let* ) = B.bind_data
let ( >>= ) = B.bind_data
let ( let*= ) = B.bind_ctrl
let ( >>*= ) = B.bind_ctrl
let choice m v1 v2 = B.choice m (return v1) (return v2)
let choice_with_branch_effect_msg m_cond msg v1 v2 kont =
choice m_cond v1 v2 >>= fun v ->
B.commit (Some msg) >>*= fun () -> kont v
let choice_with_branch_effect m_cond e_cond v1 v2 kont =
let pp_cond = Format.asprintf "%a@?" PP.pp_expr e_cond in
choice_with_branch_effect_msg m_cond pp_cond v1 v2 kont
let bind_exception binder m f =
binder m (function Normal v -> f v | Throwing _ as res -> return res)
let bind_exception_seq m f = bind_exception B.bind_seq m f
let ( let**| ) = bind_exception_seq
let bind_exception_data m f = bind_exception B.bind_data m f
let ( let** ) = bind_exception_data
let bind_continue (m : stmt_eval_type) f : stmt_eval_type =
bind_exception_seq m @@ function
| Continuing env -> f env
| Returning _ as res -> return_normal res
let ( let*> ) = bind_continue
let bind_unroll loop_name (m : stmt_eval_type) f : stmt_eval_type =
bind_continue m @@ fun env ->
let stop, env' = IEnv.tick_decr env in
if stop then
B.warnT (loop_name ^ " unrolling reached limit") env >>= return_continue
else f env'
let bind_maybe_unroll loop_name undet =
if undet then bind_unroll loop_name else bind_continue
let ( |: ) = C.Instr.use_with
let ( and* ) = B.prod_par
let ( >=> ) m f = B.appl_data m f
(** [build_funcs] initialize the unique calling reference for each function
and builds the subprogram sub-env. *)
let build_funcs ast (funcs : IEnv.func IMap.t) =
List.to_seq ast
|> Seq.filter_map (fun d ->
match d.desc with
| D_Func func -> Some (func.name, (ref 0, func))
| _ -> None)
|> Fun.flip IMap.add_seq funcs
let build_global_storage env0 eval_expr base_value =
let names =
List.fold_left (fun k (name, _) -> ISet.add name k) ISet.empty env0
in
let process_one_decl d =
match d.desc with
| D_GlobalStorage { initial_value; name; ty; _ } ->
let scope = Scope_Global true in
fun env_m ->
if ISet.mem name names then env_m
else
let*| env = env_m in
let* v =
match (initial_value, ty) with
| Some e, _ -> eval_expr env e
| None, None -> fail_initialise d name
| None, Some t -> base_value env t
in
let* () = B.on_write_identifier name scope v in
IEnv.declare_global name v env |> return
| _ -> Fun.id
in
let fold = function
| TopoSort.ASTFold.Single d -> process_one_decl d
| TopoSort.ASTFold.Recursive ds -> List.fold_right process_one_decl ds
in
fun ast -> TopoSort.ASTFold.fold fold ast
(** [build_genv static_env ast primitives] is the global environment before
the start of the evaluation of [ast]. *)
let build_genv env0 eval_expr base_value (static_env : StaticEnv.env)
(ast : AST.t) =
let funcs = IMap.empty |> build_funcs ast in
let () =
if _dbg then
Format.eprintf "@[<v 2>Executing in env:@ %a@.]" StaticEnv.pp_global
static_env.global
in
let env =
let open IEnv in
let global =
{ static = static_env.StaticEnv.global; storage = Storage.empty; funcs }
in
{ global; local = empty_scoped (Scope_Global true) }
in
let env =
List.fold_left
(fun env (name, v) -> IEnv.declare_global name v env)
env env0
in
let*| env =
build_global_storage env0 eval_expr base_value ast (return env)
in
return env.global |: SemanticsRule.BuildGlobalEnv
let discard_exception m =
B.bind_data m @@ function
| Normal v -> return v
| Throwing _ -> assert false
let bind_env m f =
B.delay m (function
| Normal (_v, env) -> fun m -> f (discard_exception m >=> fst, env)
| Throwing (v, g) -> Throwing (v, g) |> return |> Fun.const)
let ( let*^ ) = bind_env
let primitive_runtimes =
List.to_seq B.primitives
|> Seq.map AST.(fun ({ name; subprogram_type = _; _ }, f) -> (name, f))
|> Hashtbl.of_seq
let primitive_decls =
List.map (fun (f, _) -> D_Func f |> add_dummy_pos) B.primitives
let () =
if false then
Format.eprintf "@[<v 2>Primitives:@ %a@]@." PP.pp_t primitive_decls
let v_true = L_Bool true |> B.v_of_literal
let m_true = return v_true
let v_false = L_Bool false |> B.v_of_literal
let m_false = return v_false
let v_zero = L_Int Z.zero |> B.v_of_literal
let m_zero = return v_zero
let sync_list ms =
let folder m vsm =
let* v = m and* vs = vsm in
return (v :: vs)
in
List.fold_right folder ms (return [])
let fold_par2 fold1 fold2 acc e1 e2 =
let*^ m1, acc = fold1 acc e1 in
let*^ m2, acc = fold2 acc e2 in
let* v1 = m1 and* v2 = m2 in
return_normal ((v1, v2), acc)
let rec fold_par_list fold acc es =
match es with
| [] -> return_normal ([], acc)
| e :: es ->
let** (v, vs), acc = fold_par2 fold (fold_par_list fold) acc e es in
return_normal (v :: vs, acc)
let rec fold_parm_list fold acc es =
match es with
| [] -> return_normal ([], acc)
| e :: es ->
let*^ m, acc = fold acc e in
let** ms, acc = fold_parm_list fold acc es in
return_normal (m :: ms, acc)
let lexpr_is_var le =
match le.desc with LE_Var _ | LE_Discard -> true | _ -> false
let declare_local_identifier env name v =
let* () = B.on_write_identifier name (IEnv.get_scope env) v in
IEnv.declare_local name v env |> return
let declare_local_identifier_m env x m = m >>= declare_local_identifier env x
let declare_local_identifier_mm envm x m =
let*| env = envm in
declare_local_identifier_m env x m
let assign_local_identifier env x v =
let* () = B.on_write_identifier x (IEnv.get_scope env) v in
IEnv.assign_local x v env |> return
let return_identifier i = "return-" ^ string_of_int i
let throw_identifier () = fresh_var "thrown"
let read_value_from ((v, name, scope) : value_read_from) =
let* () = B.on_read_identifier name scope v in
return v |: SemanticsRule.ReadValueFrom
let big_op default op =
let folder m_acc m =
let* acc = m_acc and* v = m in
op acc v
in
function [] -> default | x :: li -> List.fold_left folder x li
(** [eval_expr] specifies how to evaluate an expression [e] in an environment
[env]. More precisely, [eval_expr env e] is the monadic evaluation of
[e] in [env]. *)
let rec eval_expr (env : env) (e : expr) : expr_eval_type =
if false then Format.eprintf "@[<3>Eval@ @[%a@]@]@." PP.pp_expr e;
match e.desc with
| E_Literal v -> return_normal (B.v_of_literal v, env) |: SemanticsRule.Lit
| E_CTC (e1, t) ->
let** v, new_env = eval_expr env e1 in
let* b = is_val_of_type e1 env v t in
(if b then return_normal (v, new_env)
else fatal_from e1 (Error.MismatchType (B.debug_value v, [ t.desc ])))
|: SemanticsRule.CTC
| E_Var x -> (
match IEnv.find x env with
| Local v ->
let* () = B.on_read_identifier x (IEnv.get_scope env) v in
return_normal (v, env) |: SemanticsRule.ELocalVar
| Global v ->
let* () = B.on_read_identifier x (Scope_Global false) v in
return_normal (v, env) |: SemanticsRule.EGlobalVar
| NotFound ->
fatal_from e @@ Error.UndefinedIdentifier x
|: SemanticsRule.EUndefIdent)
| E_Binop (BAND, e1, e2) ->
E_Cond (e1, e2, false')
|> add_pos_from e |> eval_expr env |: SemanticsRule.BinopAnd
| E_Binop (BOR, e1, e2) ->
E_Cond (e1, true', e2)
|> add_pos_from e |> eval_expr env |: SemanticsRule.BinopOr
| E_Binop (IMPL, e1, e2) ->
E_Cond (e1, e2, true')
|> add_pos_from e |> eval_expr env |: SemanticsRule.BinopImpl
| E_Binop (op, e1, e2) ->
let*^ m1, env1 = eval_expr env e1 in
let*^ m2, new_env = eval_expr env1 e2 in
let* v1 = m1 and* v2 = m2 in
let* v = B.binop op v1 v2 in
return_normal (v, new_env) |: SemanticsRule.Binop
| E_Unop (op, e1) ->
let** v1, env1 = eval_expr env e1 in
let* v = B.unop op v1 in
return_normal (v, env1) |: SemanticsRule.Unop
| E_Cond (e_cond, e1, e2) ->
let*^ m_cond, env1 = eval_expr env e_cond in
if is_simple_expr e1 && is_simple_expr e2 then
let*= v_cond = m_cond in
let* v =
B.ternary v_cond
(fun () -> eval_expr_sef env1 e1)
(fun () -> eval_expr_sef env1 e2)
in
return_normal (v, env) |: SemanticsRule.ECondSimple
else
choice_with_branch_effect m_cond e_cond e1 e2 (eval_expr env1)
|: SemanticsRule.ECond
| E_Slice (e_bv, slices) ->
let*^ m_bv, env1 = eval_expr env e_bv in
let*^ m_positions, new_env = eval_slices env1 slices in
let* v_bv = m_bv and* positions = m_positions in
let* v = B.read_from_bitvector positions v_bv in
return_normal (v, new_env) |: SemanticsRule.ESlice
| E_Call (name, actual_args, params) ->
let**| ms, new_env = eval_call (to_pos e) name env actual_args params in
let* v =
match ms with
| [ m ] -> m
| _ ->
let* vs = sync_list ms in
B.create_vector vs
in
return_normal (v, new_env) |: SemanticsRule.ECall
| E_GetArray (e_array, e_index) -> (
let*^ m_array, env1 = eval_expr env e_array in
let*^ m_index, new_env = eval_expr env1 e_index in
let* v_array = m_array and* v_index = m_index in
match B.v_to_int v_index with
| None ->
fatal_from e (Error.UnsupportedExpr e_index)
| Some i ->
let* v = B.get_index i v_array in
return_normal (v, new_env) |: SemanticsRule.EGetArray)
| E_Record (_, e_fields) ->
let names, fields = List.split e_fields in
let** v_fields, new_env = eval_expr_list env fields in
let* v = B.create_record (List.combine names v_fields) in
return_normal (v, new_env) |: SemanticsRule.ERecord
| E_GetField (e_record, field_name) ->
let** v_record, new_env = eval_expr env e_record in
let* v = B.get_field field_name v_record in
return_normal (v, new_env) |: SemanticsRule.EGetBitField
| E_GetFields _ ->
fatal_from e Error.TypeInferenceNeeded |: SemanticsRule.EGetBitFields
| E_Concat e_list ->
let** v_list, new_env = eval_expr_list env e_list in
let* v = B.concat_bitvectors v_list in
return_normal (v, new_env) |: SemanticsRule.EConcat
| E_Tuple e_list ->
let** v_list, new_env = eval_expr_list env e_list in
let* v = B.create_vector v_list in
return_normal (v, new_env) |: SemanticsRule.ETuple
| E_Unknown t ->
let* v = B.v_unknown_of_type ~eval_expr_sef:(eval_expr_sef env) t in
return_normal (v, env) |: SemanticsRule.EUnknown
| E_Pattern (e, p) ->
let** v1, new_env = eval_expr env e in
let* v = eval_pattern env e v1 p in
return_normal (v, new_env) |: SemanticsRule.EPattern
(** [eval_expr_sef] specifies how to evaluate a side-effect-free expression
[e] in an environment [env]. More precisely, [eval_expr_sef env e] is the
[eval_expr env e], if e is side-effect-free. *)
and eval_expr_sef env e : B.value m =
eval_expr env e >>= function
| Normal (v, _env) -> return v
| Throwing (None, _) ->
let msg =
Format.asprintf
"@[<hov 2>An exception was@ thrown@ when@ evaluating@ %a@]@."
PP.pp_expr e
in
fatal_from e (Error.UnexpectedSideEffect msg)
| Throwing (Some (_, ty), _) ->
let msg =
Format.asprintf
"@[<hov 2>An exception of type @[<hv>%a@]@ was@ thrown@ when@ \
evaluating@ %a@]@."
PP.pp_ty ty PP.pp_expr e
in
fatal_from e (Error.UnexpectedSideEffect msg)
and is_val_of_type loc env v ty : bool B.m =
let and' prev here = prev >>= B.binop BAND here in
let or' prev here = prev >>= B.binop BOR here in
let rec in_values v ty =
match (Types.get_structure (IEnv.to_static env) ty).desc with
| T_Real | T_Bool | T_Enum _ | T_String | T_Int UnConstrained -> m_true
| T_Int (UnderConstrained _) ->
failwith "Cannot perform a CTC on the under-constrained type."
| T_Bits (e, _) ->
let* v' = eval_expr_sef env e and* v_length = B.bitvector_length v in
B.binop EQ_OP v_length v'
| T_Int (WellConstrained constraints) ->
let fold prev = function
| Constraint_Exact e ->
let* v' = eval_expr_sef env e in
let* here = B.binop EQ_OP v v' in
or' prev here
| Constraint_Range (e1, e2) ->
let* v1 = eval_expr_sef env e1 and* v2 = eval_expr_sef env e2 in
let* here =
let* c1 = B.binop LEQ v1 v and* c2 = B.binop LEQ v v2 in
B.binop BAND c1 c2
in
or' prev here
in
List.fold_left fold m_false constraints
| T_Record fields | T_Exception fields ->
let fold prev (field_name, field_type) =
let* v' = B.get_field field_name v in
let* here = in_values v' field_type in
and' prev here
in
List.fold_left fold m_true fields
| T_Tuple tys ->
let fold (i, prev) ty' =
let m =
let* v' = B.get_index i v in
let* here = in_values v' ty' in
and' prev here
in
(i + 1, m)
in
List.fold_left fold (0, m_true) tys |> snd
| T_Array (index, ty') ->
let* length =
match index with
| ArrayLength_Enum (_, i) -> return i
| ArrayLength_Expr e -> (
let* v_length = eval_expr_sef env e in
match B.v_to_int v_length with
| Some i -> return i
| None -> fatal_from loc @@ Error.UnsupportedExpr e)
in
let rec loop i prev =
if i >= length then prev
else
let* v' = B.get_index i v in
let* here = in_values v' ty' in
loop (i + 1) (and' prev here)
in
loop 0 m_true
| T_Named _ -> assert false
in
choice (in_values v ty) true false
(** [eval_lexpr version env le m] is [env[le --> m]]. *)
and eval_lexpr ver le env m : env maybe_exception B.m =
match le.desc with
| LE_Discard -> return_normal env |: SemanticsRule.LEDiscard
| LE_Var x -> (
let* v = m in
match IEnv.assign x v env with
| Local env ->
let* () = B.on_write_identifier x (IEnv.get_scope env) v in
return_normal env |: SemanticsRule.LELocalVar
| Global env ->
let* () = B.on_write_identifier x (Scope_Global false) v in
return_normal env |: SemanticsRule.LEGlobalVar
| NotFound -> (
match ver with
| V1 ->
fatal_from le @@ Error.UndefinedIdentifier x
|: SemanticsRule.LEUndefIdentV1
| V0 ->
declare_local_identifier env x v
>>= return_normal |: SemanticsRule.LEUndefIdentV0))
| LE_Slice (e_bv, slices) ->
let*^ m_bv, env1 = expr_of_lexpr e_bv |> eval_expr env in
let*^ m_positions, env2 = eval_slices env1 slices in
let new_m_bv =
let* v = m and* positions = m_positions and* v_bv = m_bv in
B.write_to_bitvector positions v v_bv
in
eval_lexpr ver e_bv env2 new_m_bv |: SemanticsRule.LESlice
| LE_SetArray (re_array, e_index) ->
let*^ rm_array, env1 = expr_of_lexpr re_array |> eval_expr env in
let*^ m_index, env2 = eval_expr env1 e_index in
let m1 =
let* v = m and* v_index = m_index and* rv_array = rm_array in
match B.v_to_int v_index with
| None -> fatal_from le (Error.UnsupportedExpr e_index)
| Some i -> B.set_index i v rv_array
in
eval_lexpr ver re_array env2 m1 |: SemanticsRule.LESetArray
| LE_SetField (re_record, field_name) ->
let*^ rm_record, env1 = expr_of_lexpr re_record |> eval_expr env in
let m1 =
let* v = m and* rv_record = rm_record in
B.set_field field_name v rv_record
in
eval_lexpr ver re_record env1 m1 |: SemanticsRule.LESetField
| LE_Destructuring le_list ->
let n = List.length le_list in
let nmonads = List.init n (fun i -> m >>= B.get_index i) in
multi_assign ver env le_list nmonads |: SemanticsRule.LEDestructuring
| LE_Concat (les, Some widths) ->
let width (ms, start) =
let end_ = start + width in
let v_width = B.v_of_int width and v_start = B.v_of_int start in
let m' = m >>= B.read_from_bitvector [ (v_start, v_width) ] in
(m' :: ms, end_)
in
let ms, _ = List.fold_right extract_one widths ([], 0) in
multi_assign V1 env les ms
| LE_Concat (_, None) | LE_SetFields _ ->
let* () =
let* v = m in
Format.eprintf "@[<2>Failing on @[%a@]@ <-@ %s@]@." PP.pp_lexpr le
(B.debug_value v);
B.return ()
in
fatal_from le Error.TypeInferenceNeeded
and eval_expr_list_m env es =
fold_parm_list eval_expr env es |: SemanticsRule.EExprListM
and eval_expr_list env es =
fold_par_list eval_expr env es |: SemanticsRule.EExprList
(** [eval_slices env slices] is the list of pair [(i_n, l_n)] that
corresponds to the start (included) and the length of each slice in
[slices]. *)
and eval_slices env :
slice list -> ((B.value * B.value) list * env) maybe_exception m =
let eval_one env = function
| Slice_Single e ->
let** v_start, new_env = eval_expr env e in
return_normal ((v_start, one), new_env) |: SemanticsRule.SliceSingle
| Slice_Length (e_start, e_length) ->
let*^ m_start, env1 = eval_expr env e_start in
let*^ m_length, new_env = eval_expr env1 e_length in
let* v_start = m_start and* v_length = m_length in
return_normal ((v_start, v_length), new_env)
|: SemanticsRule.SliceLength
| Slice_Range (e_top, e_start) ->
let*^ m_top, env1 = eval_expr env e_top in
let*^ m_start, new_env = eval_expr env1 e_start in
let* v_top = m_top and* v_start = m_start in
let* v_length = B.binop MINUS v_top v_start >>= B.binop PLUS one in
return_normal ((v_start, v_length), new_env)
|: SemanticsRule.SliceRange
| Slice_Star (e_factor, e_length) ->
let*^ m_factor, env1 = eval_expr env e_factor in
let*^ m_length, new_env = eval_expr env1 e_length in
let* v_factor = m_factor and* v_length = m_length in
let* v_start = B.binop MUL v_factor v_length in
return_normal ((v_start, v_length), new_env)
|: SemanticsRule.SliceStar
in
fold_par_list eval_one env |: SemanticsRule.Slices
(** [eval_pattern env pos v p] determines if [v] matches the pattern [p]. *)
and eval_pattern env pos v : pattern -> B.value m =
let true_ = B.v_of_literal (L_Bool true) |> return in
let false_ = B.v_of_literal (L_Bool false) |> return in
let disjunction = big_op false_ (B.binop BOR)
and conjunction = big_op true_ (B.binop BAND) in
function
| Pattern_All -> true_ |: SemanticsRule.PAll
| Pattern_Any ps ->
let bs = List.map (eval_pattern env pos v) ps in
disjunction bs |: SemanticsRule.PAny
| Pattern_Geq e ->
let* v1 = eval_expr_sef env e in
B.binop GEQ v v1 |: SemanticsRule.PGeq
| Pattern_Leq e ->
let* v1 = eval_expr_sef env e in
B.binop LEQ v v1 |: SemanticsRule.PLeq
| Pattern_Not p1 ->
let* b1 = eval_pattern env pos v p1 in
B.unop BNOT b1 |: SemanticsRule.PNot
| Pattern_Range (e1, e2) ->
let* b1 =
let* v1 = eval_expr_sef env e1 in
B.binop GEQ v v1
and* b2 =
let* v2 = eval_expr_sef env e2 in
B.binop LEQ v v2
in
B.binop BAND b1 b2 |: SemanticsRule.PRange
| Pattern_Single e ->
let* v1 = eval_expr_sef env e in
B.binop EQ_OP v v1 |: SemanticsRule.PSingle
| Pattern_Mask m ->
let bv bv = L_BitVector bv |> B.v_of_literal in
let m_set = Bitvector.mask_set m and m_unset = Bitvector.mask_unset m in
let m_specified = Bitvector.logor m_set m_unset in
let* nv = B.unop NOT v in
let* v_set = B.binop AND (bv m_set) v
and* v_unset = B.binop AND (bv m_unset) nv in
let* v_set_or_unset = B.binop OR v_set v_unset in
B.binop EQ_OP v_set_or_unset (bv m_specified) |: SemanticsRule.PMask
| Pattern_Tuple ps ->
let n = List.length ps in
let* vs = List.init n (fun i -> B.get_index i v) |> sync_list in
let bs = List.map2 (eval_pattern env pos) vs ps in
conjunction bs |: SemanticsRule.PTuple
and eval_local_decl s ldi env m_init_opt : env maybe_exception m =
let () =
if false then Format.eprintf "Evaluating %a.@." PP.pp_local_decl_item ldi
in
match (ldi, m_init_opt) with
| LDI_Discard, _ -> return_normal env |: SemanticsRule.LDDiscard
| LDI_Var x, Some m ->
m
>>= declare_local_identifier env x
>>= return_normal |: SemanticsRule.LDVar
| LDI_Typed (ldi1, _t), Some m ->
eval_local_decl s ldi1 env (Some m) |: SemanticsRule.LDTyped
| LDI_Typed (ldi1, t), None ->
let m = base_value env t in
eval_local_decl s ldi1 env (Some m)
|: SemanticsRule.LDUninitialisedTyped
| LDI_Tuple ldis, Some m ->
let n = List.length ldis in
let liv = List.init n (fun i -> m >>= B.get_index i) in
let folder envm ldi1 vm =
let**| env = envm in
eval_local_decl s ldi1 env (Some vm)
in
List.fold_left2 folder (return_normal env) ldis liv
|: SemanticsRule.LDTuple
| LDI_Var _, None | LDI_Tuple _, None ->
fatal_from s Error.TypeInferenceNeeded
(** [eval_stmt env s] evaluates [s] in [env]. This is either an interruption
[Returning vs] or a continuation [env], see [eval_res]. *)
and eval_stmt (env : env) s : stmt_eval_type =
(if false then
match s.desc with
| S_Seq _ -> ()
| _ -> Format.eprintf "@[<3>Eval@ @[%a@]@]@." PP.pp_stmt s);
match s.desc with
| S_Pass -> return_continue env |: SemanticsRule.SPass
| S_Assign
( { desc = LE_Destructuring les; _ },
{ desc = E_Call (name, args, named_args); _ },
ver )
when List.for_all lexpr_is_var les ->
let**| vs, env1 = eval_call (to_pos s) name env args named_args in
let**| new_env = protected_multi_assign ver env1 s les vs in
return_continue new_env |: SemanticsRule.SAssignCall
| S_Assign
({ desc = LE_Destructuring les; _ }, { desc = E_Tuple exprs; _ }, ver)
when List.for_all lexpr_is_var les ->
let**| ms, env1 = eval_expr_list_m env exprs in
let**| new_env = protected_multi_assign ver env1 s les ms in
return_continue new_env |: SemanticsRule.SAssignTuple
| S_Assign (le, re, ver) ->
let*^ m, env1 = eval_expr env re in
let**| new_env = eval_lexpr ver le env1 m in
return_continue new_env |: SemanticsRule.SAssign
| S_Return (Some { desc = E_Tuple es; _ }) ->
let**| ms, new_env = eval_expr_list_m env es in
let scope = IEnv.get_scope new_env in
let folder acc m =
let*| i, vs = acc in
let* v = m in
let* () = B.on_write_identifier (return_identifier i) scope v in
return (i + 1, v :: vs)
in
let*| _i, vs = List.fold_left folder (return (0, [])) ms in
return_return new_env (List.rev vs) |: SemanticsRule.SReturnSome
| S_Return (Some e) ->
let** v, env1 = eval_expr env e in
let* () =
B.on_write_identifier (return_identifier 0) (IEnv.get_scope env1) v
in
return_return env1 [ v ] |: SemanticsRule.SReturnOne
| S_Return None -> return_return env [] |: SemanticsRule.SReturnNone
| S_Seq (s1, s2) ->
let*> env1 = eval_stmt env s1 in
eval_stmt env1 s2 |: SemanticsRule.SSeq
| S_Call (name, args, named_args) ->
let**| returned, env' = eval_call (to_pos s) name env args named_args in
let () = assert (returned = []) in
return_continue env' |: SemanticsRule.SCall
| S_Cond (e, s1, s2) ->
let*^ v, env' = eval_expr env e in
choice_with_branch_effect v e s1 s2 (eval_block env')
|: SemanticsRule.SCond
| S_Case _ -> case_to_conds s |> eval_stmt env |: SemanticsRule.SCase
| S_Assert e ->
let*^ v, env1 = eval_expr env e in
let*= b = choice v true false in
if b then return_continue env1
else fatal_from e @@ Error.AssertionFailed e |: SemanticsRule.SAssert
| S_While (e, body) ->
let env = IEnv.tick_push env in
eval_loop true env e body |: SemanticsRule.SWhile
| S_Repeat (body, e) ->
let*> env1 = eval_block env body in
let env2 = IEnv.tick_push_bis env1 in
eval_loop false env2 e body |: SemanticsRule.SRepeat
| S_For (id, e1, dir, e2, s) ->
let* v1 = eval_expr_sef env e1 and* v2 = eval_expr_sef env e2 in
let undet = B.is_undetermined v1 || B.is_undetermined v2 in
let*| env1 = declare_local_identifier env id v1 in
let env2 = if undet then IEnv.tick_push_bis env1 else env1 in
let loop_msg =
if undet then Printf.sprintf "for %s" id
else
Printf.sprintf "for %s = %s %s %s" id (B.debug_value v1)
(PP.pp_for_direction dir) (B.debug_value v2)
in
let*> env3 = eval_for loop_msg undet env2 id v1 dir v2 s in
let env4 = if undet then IEnv.tick_pop env3 else env3 in
IEnv.remove_local id env4 |> return_continue |: SemanticsRule.SFor
| S_Throw None -> return (Throwing (None, env)) |: SemanticsRule.SThrowNone
| S_Throw (Some (e, Some t)) ->
let** v, new_env = eval_expr env e in
let name = throw_identifier () and scope = Scope_Global false in
let* () = B.on_write_identifier name scope v in
return (Throwing (Some ((v, name, scope), t), new_env))
|: SemanticsRule.SThrowSomeTyped
| S_Throw (Some (_e, None)) ->
fatal_from s Error.TypeInferenceNeeded |: SemanticsRule.SThrowSome
| S_Try (s1, catchers, otherwise_opt) ->
let s_m = eval_block env s1 in
eval_catchers env catchers otherwise_opt s_m |: SemanticsRule.STry
| S_Decl (_ldk, ldi, Some e) ->
let*^ m, env1 = eval_expr env e in
let**| new_env = eval_local_decl s ldi env1 (Some m) in
return_continue new_env |: SemanticsRule.SDeclSome
| S_Decl (_dlk, ldi, None) ->
let**| new_env = eval_local_decl s ldi env None in
return_continue new_env |: SemanticsRule.SDeclNone
| S_Print { args; debug } ->
let* vs = List.map (eval_expr_sef env) args |> sync_list in
let () =
if debug then
let open Format in
let pp_value fmt v = B.debug_value v |> pp_print_string fmt in
eprintf "@[@<2>%a:@ @[%a@]@ ->@ %a@]@." PP.pp_pos s
(pp_print_list ~pp_sep:pp_print_space PP.pp_expr)
args
(pp_print_list ~pp_sep:pp_print_space pp_value)
vs
else (
List.map B.debug_value vs |> String.concat " " |> print_string;
print_newline ())
in
return_continue env |: SemanticsRule.SDebug
and eval_block env stm =
let block_env = IEnv.push_scope env in
let*> block_env1 = eval_stmt block_env stm in
IEnv.pop_scope env block_env1 |> return_continue |: SemanticsRule.Block
and eval_loop is_while env e_cond body : stmt_eval_type =
let loop_name = if is_while then "While loop" else "Repeat loop" in
let loop env =
let*> env1 = eval_block env body in
eval_loop is_while env1 e_cond body
in
let*^ cond_m, env = eval_expr env e_cond in
let cond_m = if is_while then cond_m else cond_m >>= B.unop BNOT in
B.delay cond_m @@ fun cond cond_m ->
let binder = bind_maybe_unroll loop_name (B.is_undetermined cond) in
choice_with_branch_effect cond_m e_cond loop return_continue
(binder (return_continue env))
|: SemanticsRule.Loop
and eval_for loop_msg undet (env : env) index_name v_start dir v_end body :
stmt_eval_type =
let cond_m =
let comp_for_dir = match dir with Up -> LT | Down -> GT in
let* () = B.on_read_identifier index_name (IEnv.get_scope env) v_start in
B.binop comp_for_dir v_end v_start
in
let step env index_name v_start dir =
let op_for_dir = match dir with Up -> PLUS | Down -> MINUS in
let* () = B.on_read_identifier index_name (IEnv.get_scope env) v_start in
let* v_step = B.binop op_for_dir v_start one in
let* new_env = assign_local_identifier env index_name v_step in
return (v_step, new_env)
in
let loop env =
bind_maybe_unroll "For loop" undet (eval_block env body) @@ fun env1 ->
let*| v_step, env2 = step env1 index_name v_start dir in
eval_for loop_msg undet env2 index_name v_step dir v_end body
in
choice_with_branch_effect_msg cond_m loop_msg return_continue loop
(fun kont -> kont env)
|: SemanticsRule.For
and eval_catchers env catchers otherwise_opt s_m : stmt_eval_type =
let rethrow_implicit (v, v_ty) res =
B.bind_seq res @@ function
| Throwing (None, env_throw1) ->
Throwing (Some (v, v_ty), env_throw1) |> return
| _ -> res |: SemanticsRule.RethrowImplicit
in
let catcher_matches =
let static_env = { StaticEnv.empty with global = env.global.static } in
fun v_ty (_e_name, e_ty, _stmt) ->
Types.type_satisfies static_env v_ty e_ty |: SemanticsRule.FindCatcher
in
B.bind_seq s_m @@ function
| Normal _ | Throwing (None, _) -> s_m |: SemanticsRule.CatchNoThrow
| Throwing (Some (v, v_ty), env_throw) -> (
let env1 =
if IEnv.same_scope env env_throw then env_throw
else { local = env.local; global = env_throw.global }
in
match List.find_opt (catcher_matches v_ty) catchers with
| Some catcher -> (
match catcher with
| None, _e_ty, s ->
eval_block env1 s
|> rethrow_implicit (v, v_ty)
|: SemanticsRule.Catch
| Some name, _e_ty, s ->
let*| env2 =
read_value_from v |> declare_local_identifier_m env1 name
in
(let*> env3 = eval_block env2 s in
IEnv.remove_local name env3 |> return_continue)
|> rethrow_implicit (v, v_ty)
|: SemanticsRule.CatchNamed
)
| None -> (
match otherwise_opt with
| Some s ->
eval_block env1 s
|> rethrow_implicit (v, v_ty)
|: SemanticsRule.CatchOtherwise
| None -> s_m |: SemanticsRule.CatchNone))
(** [eval_call pos name env args named_args] evaluate the call to function
[name] with arguments [args] and parameters [named_args] *)
and eval_call pos name env args named_args =
let names, nargs1 = List.split named_args in
let*^ vargs, env1 = eval_expr_list_m env args in
let*^ nargs2, env2 = eval_expr_list_m env1 nargs1 in
let* vargs = vargs and* nargs2 = nargs2 in
let nargs3 = List.combine names nargs2 in
let**| ms, global = eval_subprogram env2.global name pos vargs nargs3 in
let ms2 = List.map read_value_from ms and new_env = { env2 with global } in
return_normal (ms2, new_env) |: SemanticsRule.Call
(** [eval_subprogram genv name pos actual_args params] evaluate the function named [name]
in the global environment [genv], with [actual_args] the actual arguments, and
[params] the parameters deduced by type equality. *)
and eval_subprogram (genv : IEnv.global) name pos
(actual_args : B.value m list) params : func_eval_type =
match IMap.find_opt name genv.funcs with
| None ->
fatal_from pos @@ Error.UndefinedIdentifier name
|: SemanticsRule.FUndefIdent
| Some (r, { body = SB_Primitive; _ }) ->
let scope = Scope_Local (name, !r) in
let () = incr r in
let body = Hashtbl.find primitive_runtimes name in
let* ms = body actual_args in
let _, vsm =
List.fold_right
(fun m (i, acc) ->
let x = return_identifier i in
let m' =
let*| v =
let* v = m in
let* () = B.on_write_identifier x scope v in
return (v, x, scope)
and* vs = acc in
return (v :: vs)
in
(i + 1, m'))
ms
(0, return [])
in
let*| vs = vsm in
return_normal (vs, genv) |: SemanticsRule.FPrimitive
| Some (_, { args = arg_decls; _ })
when List.compare_lengths actual_args arg_decls <> 0 ->
fatal_from pos
@@ Error.BadArity (name, List.length arg_decls, List.length actual_args)
|: SemanticsRule.FBadArity
| Some (r, { body = SB_ASL body; args = arg_decls; _ }) ->
(let () = if false then Format.eprintf "Evaluating %s.@." name in
let scope = Scope_Local (name, !r) in
let () = incr r in
let env1 = IEnv.{ global = genv; local = empty_scoped scope } in
let one_arg envm (x, _) m = declare_local_identifier_mm envm x m in
let env2 =
List.fold_left2 one_arg (return env1) arg_decls actual_args
in
let one_narg envm (x, m) =
let*| env = envm in
if IEnv.mem x env then return env
else declare_local_identifier_m env x m
in
let*| env3 = List.fold_left one_narg env2 params in
let**| res = eval_stmt env3 body in
let () =
if false then Format.eprintf "Finished evaluating %s.@." name
in
match res with
| Continuing env4 -> return_normal ([], env4.global)
| Returning (xs, ret_genv) ->
let vs =
List.mapi (fun i v -> (v, return_identifier i, scope)) xs
in
return_normal (vs, ret_genv))
|: SemanticsRule.FCall
(** [multi_assign env [le_1; ... ; le_n] [m_1; ... ; m_n]] is
[env[le_1 --> m_1] ... [le_n --> m_n]]. *)
and multi_assign ver env les monads : env maybe_exception m =
let folder envm le vm =
let**| env = envm in
eval_lexpr ver le env vm
in
List.fold_left2 folder (return_normal env) les monads
|: SemanticsRule.LEMultiAssign
(** As [multi_assign], but checks that [les] and [monads] have the same
length. *)
and protected_multi_assign ver env pos les monads : env maybe_exception m =
if List.compare_lengths les monads != 0 then
fatal_from pos
@@ Error.BadArity
("tuple construction", List.length les, List.length monads)
else multi_assign ver env les monads
and base_value env t =
let t_struct = Types.get_structure (IEnv.to_static env) t in
let lit v = B.v_of_literal v |> return in
match t_struct.desc with
| T_Bool -> L_Bool false |> lit
| T_Bits (e, _) ->
let* v = eval_expr_sef env e in
let length =
match B.v_to_int v with
| None -> fatal_from t (Error.UnsupportedExpr e)
| Some i -> i
in
L_BitVector (Bitvector.zeros length) |> lit
| T_Enum li -> (
try IMap.find (List.hd li) env.global.static.constant_values |> lit
with Not_found -> fatal_from t Error.TypeInferenceNeeded)
| T_Int UnConstrained -> m_zero
| T_Int (UnderConstrained _) ->
failwith "Cannot request the base value of a under-constrained integer."
| T_Int (WellConstrained []) ->
failwith
"A well constrained integer cannot have an empty list of constraints."
| T_Int (WellConstrained cs) -> (
let leq x y = choice (B.binop LEQ x y) true false in
let is_neg v = leq v v_zero in
let abs v =
let* b = is_neg v in
if b then B.unop NEG v else return v
in
let m_none = return None in
let abs_min v1 v2 =
match (v1, v2) with
| None, v | v, None -> return v
| Some v1, Some v2 ->
let* abs_v1 = abs v1 and* abs_v2 = abs v2 in
let* v = choice (B.binop LEQ abs_v1 abs_v2) v1 v2 in
return (Some v)
in
let big_abs_min = big_op m_none abs_min in
let one_c = function
| Constraint_Exact e ->
let* v = eval_expr_sef env e in
return (Some v)
| Constraint_Range (e1, e2) -> (
let* v1 = eval_expr_sef env e1 and* v2 = eval_expr_sef env e2 in
let* b = leq v1 v2 in
if not b then m_none
else
let* b1 = is_neg v1 and* b2 = is_neg v2 in
match (b1, b2) with
| true, false -> return (Some v_zero)
| false, true ->
assert false
| true, true -> return (Some v2)
| false, false -> return (Some v1))
in
let* v = List.map one_c cs |> big_abs_min in
match v with
| None -> fatal_from t (Error.BaseValueEmptyType t)
| Some v -> return v)
| T_Named _ -> assert false
| T_Real -> L_Real Q.zero |> lit
| T_Exception fields | T_Record fields ->
List.map
(fun (name, t_field) ->
let* v = base_value env t_field in
return (name, v))
fields
|> sync_list >>= B.create_record
| T_String -> L_String "" |> lit
| T_Tuple li ->
List.map (base_value env) li |> sync_list >>= B.create_vector
| T_Array (length, ty) ->
let* v = base_value env ty in
let* i_length =
match length with
| ArrayLength_Enum (_, i) -> return i
| ArrayLength_Expr e -> (
let* length = eval_expr_sef env e in
match B.v_to_int length with
| None -> Error.fatal_from t (Error.UnsupportedExpr e)
| Some i -> return i)
in
List.init i_length (Fun.const v) |> B.create_vector
let run_typed_env env (ast : AST.t) (static_env : StaticEnv.env) : B.value m =
let*| env = build_genv env eval_expr_sef base_value static_env ast in
let*| res = eval_subprogram env "main" dummy_annotated [] [] in
match res with
| Normal ([ v ], _genv) -> read_value_from v
| Normal _ -> Error.(fatal_unknown_pos (MismatchedReturnValue "main"))
| Throwing (v_opt, _genv) ->
let msg =
match v_opt with
| None -> "implicitely thrown out of a try-catch."
| Some ((v, _, _scope), ty) ->
Format.asprintf "%a %s" PP.pp_ty ty (B.debug_value v)
in
Error.fatal_unknown_pos (Error.UncaughtException msg)
let run_typed ast env = run_typed_env [] ast env
let run_env (env : (AST.identifier * B.value) list) (ast : AST.t) : B.value m
=
let ast = List.rev_append primitive_decls ast in
let ast = Builder.with_stdlib ast in
let ast, static_env =
Typing.type_check_ast C.type_checking_strictness ast StaticEnv.empty
in
let () =
if false then Format.eprintf "@[<v 2>Typed AST:@ %a@]@." PP.pp_t ast
in
run_typed_env env ast static_env
let run ast = run_env [] ast |: SemanticsRule.TopLevel
end