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
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
open AST
open ASTUtils
let fatal_from pos = Error.fatal_from pos
let _warn = false
let _dbg = false
let rec subtypes_names env s1 s2 =
if String.equal s1 s2 then true
else
match IMap.find_opt s1 StaticEnv.(env.global.subtypes) with
| None -> false
| Some s1' -> subtypes_names env s1' s2
let subtypes env t1 t2 =
match (t1.desc, t2.desc) with
| T_Named s1, T_Named s2 -> subtypes_names env s1 s2
| _ -> false
module type S = sig
module B : Backend.S
module IEnv : Env.S with type v = B.value and module Scope = B.Scope
type value_read_from = B.value * AST.identifier * B.Scope.t
type 'a maybe_exception =
| Normal of 'a
| Throwing of (value_read_from * AST.ty) option * IEnv.env
val eval_expr :
IEnv.env -> AST.expr -> (B.value * IEnv.env) maybe_exception B.m
val run_typed_env :
(AST.identifier * B.value) list -> StaticEnv.global -> AST.t -> B.value B.m
val run_typed : StaticEnv.global -> AST.t -> B.value B.m
end
module type Config = sig
module Instr : Instrumentation.SEMINSTR
val unroll : int
val error_handling_time : Error.error_handling_time
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
module Scope = B.Scope
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 * B.Scope.t
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 unsupported_expr e =
fatal_from e Error.(UnsupportedExpr (C.error_handling_time, e))
let one = B.v_of_int 1
let true' = E_Literal (L_Bool true) |> add_dummy_annotation
let false' = E_Literal (L_Bool false) |> add_dummy_annotation
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, loop_pos) (m : stmt_eval_type) f : stmt_eval_type
=
bind_continue m @@ fun env ->
let stop, env' = IEnv.tick_decr env in
if stop then
let msg =
Printf.sprintf "%s at %s pruned" loop_name
(PP.pp_pos_str_no_char loop_pos)
in
B.cutoffT msg 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
let eval_global_decl env0 eval_expr d env_m =
let*| env = env_m in
match d.desc with
| D_GlobalStorage { initial_value; name; _ } -> (
let scope = B.Scope.global ~init:true in
match IMap.find_opt name env0 with
| Some v -> IEnv.declare_global name v env |> return
| None ->
let init_expr =
match initial_value with
| Some e -> e
| None -> fatal_from d TypeInferenceNeeded
in
let* eval_res = eval_expr env init_expr in
let v, env2 =
match eval_res with
| Normal (v, env2) -> (v, env2)
| Throwing (exc, _env2) ->
let ty =
match exc with
| Some (_, ty) -> ty
| None -> T_Named "implicit" |> add_pos_from d
in
fatal_from d (UnexpectedInitialisationThrow (ty, name))
in
let* () = B.on_write_identifier name scope v in
let env3 = IEnv.declare_global name v env2 in
return env3)
| _ -> return env
(** [build_genv penv static_env ast primitives] is the global environment before
the start of the evaluation of [ast], with predefined values in [penv]. *)
let build_genv env0 eval_expr (static_env : StaticEnv.global) (ast : AST.t) =
let () =
if _dbg then
Format.eprintf "@[<v 2>Executing in env:@ %a@.]" StaticEnv.pp_global
static_env
in
let env0 = IMap.of_list env0 in
let global_decl_folder = function
| TopoSort.ASTFold.Single d -> eval_global_decl env0 eval_expr d
| TopoSort.ASTFold.Recursive ds ->
List.fold_right (eval_global_decl env0 eval_expr) ds
in
let env =
let open IEnv in
let global = global_from_static static_env
and local = local_empty_scoped (B.Scope.global ~init:true) in
{ global; local }
in
let*| env = TopoSort.ASTFold.fold global_decl_folder 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 @@ fun res m ->
match res with
| Normal (_v, env) -> f (discard_exception m >=> fst, env)
| Throwing _ as res ->
m >>= fun _ -> return res
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_annotation) B.primitives
let () =
if false then
Format.eprintf "@[<v 2>Primitives:@ %a@]@." PP.pp_t primitive_decls
let v_false = L_Bool false |> B.v_of_literal
let v_true = L_Bool true |> B.v_of_literal
let m_false = return v_false
let m_true = return v_true
let v_to_int ~loc v =
match B.v_to_z v with
| Some z when Z.fits_int z -> Z.to_int z
| Some z ->
Printf.eprintf
"Overflow in asllib: cannot convert back to 63-bit integer the \
integer %a.\n\
%!"
Z.output z;
unsupported_expr loc
| None -> fatal_from loc (MismatchType (B.debug_value v, [ integer' ]))
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
(** [check_non_overlapping_slices slices value_ranges] checks that the
slice ranges [value_ranges] are non-overlapping.
[value_ranges] are given by a list of couples [(start, length)].
If they are overlapping, an error [OverlappingSlices (slices, Dynamic)]
is thrown. *)
let check_non_overlapping_slices slices value_ranges =
let check_two_ranges_are_non_overlapping (s1, l1) m (s2, l2) =
let* () = m in
let cond =
let* s1l1s2 =
let* s1l1 = B.binop PLUS s1 l1 in
B.binop LEQ s1l1 s2
and* s2l2s1 =
let* s2l2 = B.binop PLUS s2 l2 in
B.binop LEQ s2l2 s1
in
B.binop BOR s1l1s2 s2l2s1
in
let* b = choice cond true false in
if b then return ()
else
Error.(
fatal_unknown_pos (OverlappingSlices (slices, C.error_handling_time)))
in
let check_range_does_not_overlap_previous_ranges past_ranges range =
let* past_ranges = past_ranges in
let* () =
List.fold_left
(check_two_ranges_are_non_overlapping range)
(return ()) past_ranges
in
return (range :: past_ranges)
in
let* _ =
List.fold_left check_range_does_not_overlap_previous_ranges (return [])
value_ranges
in
return ()
(** [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 l -> return_normal (B.v_of_literal l, env) |: SemanticsRule.ELit
| E_ATC (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.ATC
| 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)
| Global v ->
let* () = B.on_read_identifier x (B.Scope.global ~init:false) v in
return_normal (v, env)
| NotFound -> fatal_from e @@ Error.UndefinedIdentifier x)
|: SemanticsRule.EVar
| E_Binop (((BAND | BOR | IMPL) as op), e1, e2)
when is_simple_expr e1 && is_simple_expr e2 ->
let*= v1 = eval_expr_sef env e1 in
if B.is_undetermined v1 then
let* v2 = eval_expr_sef env e2 in
let* v = B.binop op v1 v2 in
return_normal (v, env)
else
let eval_e2 () = eval_expr_sef env e2 in
let ret_true () = m_true and ret_false () = m_false in
let on_true, on_false =
match op with
| BAND -> (eval_e2, ret_false)
| BOR -> (ret_true, eval_e2)
| IMPL -> (eval_e2, ret_true)
| _ -> assert false
in
let* v = B.ternary v1 on_true on_false in
return_normal (v, env)
| 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; params; args } ->
let**| ms, new_env = eval_call (to_pos e) name env ~params ~args 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
let i_index = v_to_int ~loc:e v_index in
let* v = B.get_index i_index v_array in
return_normal (v, new_env) |: SemanticsRule.EGetArray
| E_GetEnumArray (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
let label = B.v_to_label v_index in
let* v = B.get_field label v_array in
return_normal (v, new_env) |: SemanticsRule.EGetEnumArray
| E_GetItem (e_tuple, index) ->
let** v_tuple, new_env = eval_expr env e_tuple in
let* v = B.get_index index v_tuple in
return_normal (v, new_env) |: SemanticsRule.EGetTupleItem
| 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 (e_record, field_names) ->
let** v_record, new_env = eval_expr env e_record in
let* v_list =
List.map
(fun field_name -> B.get_field field_name v_record)
field_names
|> sync_list
in
let* v = B.concat_bitvectors v_list in
return_normal (v, new_env)
| 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_Array { length = e_length; value = e_value } ->
let** v_value, new_env = eval_expr env e_value in
let* v_length = eval_expr_sef env e_length in
let n_length = v_to_int ~loc:e v_length in
let* v = B.create_vector (List.init n_length (Fun.const v_value)) in
return_normal (v, new_env) |: SemanticsRule.EArray
| E_EnumArray { labels; value = e_value } ->
let** v_value, new_env = eval_expr env e_value in
let field_inits = List.map (fun l -> (l, v_value)) labels in
let* v = B.create_record field_inits in
return_normal (v, new_env) |: SemanticsRule.EEnumArray
| E_Arbitrary t ->
let* v = B.v_unknown_of_type ~eval_expr_sef:(eval_expr_sef env) t in
return_normal (v, env) |: SemanticsRule.EArbitrary
| 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 big_or = big_op m_false (B.binop BOR) in
let rec in_values v ty =
match ty.desc with
| T_Int UnConstrained -> m_true
| T_Int (Parameterized _) ->
fatal_from loc Error.UnrespectedParserInvariant
| 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 is_constraint_sat = function
| Constraint_Exact e ->
let* v' = eval_expr_sef env e in
B.binop EQ_OP v v' |: SemanticsRule.IsConstraintSat
| Constraint_Range (e1, e2) ->
let* v1 = eval_expr_sef env e1 and* v2 = eval_expr_sef env e2 in
let* c1 = B.binop LEQ v1 v and* c2 = B.binop LEQ v v2 in
B.binop BAND c1 c2 |: SemanticsRule.IsConstraintSat
in
List.map is_constraint_sat constraints |> big_or
| 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
prev >>= B.binop BAND here
in
(i + 1, m)
in
List.fold_left fold (0, m_true) tys |> snd
| _ -> fatal_from loc TypeInferenceNeeded
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.LEVar
| Global env ->
let* () = B.on_write_identifier x (B.Scope.global ~init:false) v in
return_normal env |: SemanticsRule.LEVar
| 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_slice_ranges, env2 = eval_slices env1 slices in
let new_m_bv =
let* v = m and* slice_ranges = m_slice_ranges and* v_bv = m_bv in
let* () = check_non_overlapping_slices slices slice_ranges in
B.write_to_bitvector slice_ranges 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
B.set_index (v_to_int ~loc:e_index v_index) v rv_array
in
eval_lexpr ver re_array env2 m1 |: SemanticsRule.LESetArray
| LE_SetEnumArray (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
let label = B.v_to_label v_index in
B.set_field label v rv_array
in
eval_lexpr ver re_array env2 m1 |: SemanticsRule.LESetEnumArray
| 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_SetFields (le_record, fields, slices) ->
let () =
if List.compare_lengths fields slices != 0 then
fatal_from le Error.TypeInferenceNeeded
in
let*^ rm_record, env1 = expr_of_lexpr le_record |> eval_expr env in
let m2 =
List.fold_left2
(fun m1 field_name (i1, i2) ->
let slice = [ (B.v_of_int i1, B.v_of_int i2) ] in
let* v_record_slices = m >>= B.read_from_bitvector slice
and* rv_record = m1 in
B.set_field field_name v_record_slices rv_record)
rm_record fields slices
in
eval_lexpr ver le_record env1 m2 |: SemanticsRule.LESetFields
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_range list * env) maybe_exception m =
let eval_slice env = function
| Slice_Single e ->
let** v_start, new_env = eval_expr env e in
return_normal ((v_start, one), new_env) |: SemanticsRule.Slice
| 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.Slice
| 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.Slice
| 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.Slice
in
fold_par_list eval_slice 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
fun p ->
match p.desc with
| 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 ldi env m_init : env maybe_exception m =
let () =
if false then Format.eprintf "Evaluating %a.@." PP.pp_local_decl_item ldi
in
match ldi with
| LDI_Var x ->
m_init
>>= declare_local_identifier env x
>>= return_normal |: SemanticsRule.LDVar
| LDI_Tuple ldis ->
let n = List.length ldis in
let* vm = m_init in
let liv = List.init n (fun i -> B.return vm >>= B.get_index i) in
let folder envm x vm =
let**| env = envm in
vm >>= declare_local_identifier env x >>= return_normal
in
List.fold_left2 folder (return_normal env) ldis liv
|: SemanticsRule.LDTuple
(** [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; params; args }; _ } )
when List.for_all lexpr_is_var les ->
let**| vms, env1 = eval_call (to_pos s) name env ~params ~args in
let**| new_env = protected_multi_assign s.version env1 s les vms in
return_continue new_env |: SemanticsRule.SAssignCall
| S_Assign (le, re) ->
let*^ m, env1 = eval_expr env re in
let**| new_env = eval_lexpr s.version 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.SReturn
| 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.SReturn
| S_Return None -> return_return env [] |: SemanticsRule.SReturn
| S_Seq (s1, s2) ->
let*> env1 = eval_stmt env s1 in
eval_stmt env1 s2 |: SemanticsRule.SSeq
| S_Call { name; params; args } ->
let**| returned, env' = eval_call (to_pos s) name env ~params ~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_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, e_limit_opt, body) ->
let* limit_opt = eval_limit env e_limit_opt in
let env = IEnv.tick_push env in
eval_loop s true env limit_opt e body |: SemanticsRule.SWhile
| S_Repeat (body, e, e_limit_opt) ->
let* limit_opt1 = eval_limit env e_limit_opt in
let* limit_opt2 = tick_loop_limit s limit_opt1 in
let*> env1 = eval_block env body in
let env2 = IEnv.tick_push_bis env1 in
eval_loop s false env2 limit_opt2 e body |: SemanticsRule.SRepeat
| S_For { index_name; start_e; dir; end_e; body; limit = e_limit_opt } ->
let* start_v = eval_expr_sef env start_e
and* end_v = eval_expr_sef env end_e
and* limit_opt = eval_limit env e_limit_opt in
let undet = B.is_undetermined start_v || B.is_undetermined end_v in
let*| env1 = declare_local_identifier env index_name start_v in
let env2 = if undet then IEnv.tick_push_bis env1 else env1 in
let loop_msg =
if undet then Printf.sprintf "for %s" index_name
else
Printf.sprintf "for %s = %s %s %s" index_name
(B.debug_value start_v) (PP.pp_for_direction dir)
(B.debug_value end_v)
in
let*> env3 =
eval_for loop_msg undet env2 index_name limit_opt start_v dir end_v
body
in
let env4 = if undet then IEnv.tick_pop env3 else env3 in
IEnv.remove_local index_name env4
|> return_continue |: SemanticsRule.SFor
| S_Throw None -> return (Throwing (None, env)) |: SemanticsRule.SThrow
| S_Throw (Some (e, Some t)) ->
let** v, new_env = eval_expr env e in
let name = throw_identifier () and scope = B.Scope.global ~init:false in
let* () = B.on_write_identifier name scope v in
return (Throwing (Some ((v, name, scope), t), new_env))
|: SemanticsRule.SThrow
| S_Throw (Some (_e, None)) -> fatal_from s Error.TypeInferenceNeeded
| 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, _ty_opt, Some e_init) ->
let*^ m_init, env1 = eval_expr env e_init in
let**| new_env = eval_local_decl ldi env1 m_init in
return_continue new_env |: SemanticsRule.SDecl
| S_Decl (_ldk, _ldi, _ty_opt, None) -> fatal_from s TypeInferenceNeeded
| S_Print { args = e_list; newline; debug } ->
let** v_list, new_env = eval_expr_list env e_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)
e_list
(pp_print_list ~pp_sep:pp_print_space pp_value)
v_list
else (
List.map B.debug_value v_list |> String.concat "" |> print_string;
if newline then print_newline () else ())
in
return_continue new_env |: SemanticsRule.SPrint
| S_Pragma _ -> assert false
| S_Unreachable -> fatal_from s Error.UnreachableReached
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_limit env e_limit_opt =
match e_limit_opt with
| None -> return None
| Some e_limit -> (
let* v_limit = eval_expr_sef env e_limit in
match B.v_to_z v_limit with
| Some limit -> return (Some limit)
| None ->
fatal_from e_limit
(Error.MismatchType (B.debug_value v_limit, [ integer' ])))
and check_recurse_limit pos name env e_limit_opt =
let* limit_opt = eval_limit env e_limit_opt in
match limit_opt with
| None -> return ()
| Some limit ->
let stack_size = IEnv.get_stack_size name env in
if limit < stack_size then fatal_from pos Error.RecursionLimitReached
else return ()
and tick_loop_limit loc limit_opt =
match limit_opt with
| None -> return None
| Some limit ->
let new_limit = Z.pred limit in
if Z.sign new_limit >= 0 then return (Some new_limit)
else fatal_from loc Error.LoopLimitReached
and eval_loop loc is_while env limit_opt e_cond body : stmt_eval_type =
let loop_name = if is_while then "while loop" else "repeat loop" in
let loop_desc = (loop_name, loc) in
let loop env =
let* limit_opt' = tick_loop_limit loc limit_opt in
let*> env1 = eval_block env body in
eval_loop loc is_while env1 limit_opt' 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_desc (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 index_name limit_opt v_start dir v_end body :
stmt_eval_type =
let* next_limit_opt = tick_loop_limit body limit_opt in
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 =
let loop_desc = ("for loop", body) in
bind_maybe_unroll loop_desc 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 next_limit_opt 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) s_m =
B.bind_seq s_m @@ function
| Throwing (None, env_throw1) ->
Throwing (Some (v, v_ty), env_throw1) |> return
| (Normal _ | Throwing (Some _, _)) as res ->
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) ->
subtypes static_env v_ty e_ty |: SemanticsRule.FindCatcher
in
B.bind_seq s_m @@ function
| (Normal _ | Throwing (None, _)) as res ->
return res |: SemanticsRule.CatchNoThrow
| Throwing (Some (v, v_ty), env_throw) -> (
match List.find_opt (catcher_matches v_ty) catchers with
| Some catcher -> (
match catcher with
| None, _e_ty, s ->
eval_block env_throw s
|> rethrow_implicit (v, v_ty)
|: SemanticsRule.Catch
| Some name, _e_ty, s ->
let*| env2 =
read_value_from v |> declare_local_identifier_m env_throw 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 env_throw s
|> rethrow_implicit (v, v_ty)
|: SemanticsRule.CatchOtherwise
| None -> s_m |: SemanticsRule.CatchNone))
(** [eval_call pos name env ~params ~args] evaluates the call to function
[name] with arguments [args] and parameters [params].
The arguments/parameters are labelled to avoid confusion. *)
and eval_call pos name env ~params ~args =
let*^ vargs, env1 = eval_expr_list_m env args in
let*^ vparams, env2 = eval_expr_list_m env1 params in
let* vargs = vargs and* vparams = vparams in
let genv = IEnv.incr_stack_size name env2.global in
let res = eval_subprogram genv name pos ~params:vparams ~args:vargs in
B.bind_seq res @@ function
| Throwing (v, env_throw) ->
let genv2 = IEnv.decr_stack_size name env_throw.global in
let new_env = IEnv.{ local = env2.local; global = genv2 } in
return (Throwing (v, new_env)) |: SemanticsRule.Call
| Normal (ms, global) ->
let ms2 = List.map read_value_from ms in
let genv2 = IEnv.decr_stack_size name global in
let new_env = IEnv.{ local = env2.local; global = genv2 } in
return_normal (ms2, new_env) |: SemanticsRule.Call
(** [eval_subprogram genv name pos ~params ~args] evaluates the function named [name]
in the global environment [genv], with [args] the actual arguments, and
[params] the positional parameters.
The arguments/parmeters are labelled to avoid confusion. *)
and eval_subprogram (genv : IEnv.global) name pos ~params
~(args : B.value m list) : func_eval_type =
match IMap.find_opt name genv.static.subprograms with
| None ->
fatal_from pos @@ Error.UndefinedIdentifier name
|: SemanticsRule.FUndefIdent
| Some ({ body = SB_Primitive _; _ }, _) ->
let scope = B.Scope.new_local name in
let body = Hashtbl.find primitive_runtimes name in
let* ms = body params 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 args arg_decls <> 0 ->
fatal_from pos
@@ Error.BadArity
(Dynamic, name, List.length arg_decls, List.length args)
|: SemanticsRule.FBadArity
| Some ({ parameters = parameter_decls; _ }, _)
when List.compare_lengths params parameter_decls <> 0 ->
fatal_from pos
@@ Error.BadParameterArity
(Dynamic, V1, name, List.length parameter_decls, List.length params)
|: SemanticsRule.FBadArity
| Some
( {
body = SB_ASL body;
args = arg_decls;
parameters = param_decls;
recurse_limit;
_;
},
_ ) ->
(let () = if false then Format.eprintf "Evaluating %s.@." name in
let scope = B.Scope.new_local name in
let env1 = IEnv.{ global = genv; local = local_empty_scoped scope } in
let* () = check_recurse_limit pos name env1 recurse_limit in
let declare_arg envm x m = declare_local_identifier_mm envm x m in
let arg_names = List.map fst arg_decls in
let env2 =
List.fold_left2 declare_arg (return env1) arg_names args
|: SemanticsRule.AssignArgs
in
let param_names = List.map fst param_decls in
let*| env3 = List.fold_left2 declare_arg env2 param_names 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
(Dynamic, "tuple construction", List.length les, List.length monads)
else multi_assign ver env les monads
let run_typed_env env (static_env : StaticEnv.global) (ast : AST.t) :
B.value m =
let*| env = build_genv env eval_expr static_env ast in
let*| res =
eval_subprogram env "main" dummy_annotated ~params:[] ~args:[]
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))
|: SemanticsRule.Spec
let run_typed env ast = run_typed_env [] env ast
end