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
(** Reference interpreter for the default calculus *)
open Catala_utils
open Definitions
open Op
module Runtime = Catala_runtime
(** {1 Helpers} *)
let is_empty_error : type a. (a, 'm) gexpr -> bool =
fun e -> match Mark.remove e with EEmpty -> true | _ -> false
(** {1 Evaluation} *)
let rec format_runtime_value lang ppf = function
| Runtime.Unit -> Print.UserFacing.unit lang ppf ()
| Runtime.Bool b -> Print.UserFacing.bool lang ppf b
| Runtime.Money m -> Print.UserFacing.money lang ppf m
| Runtime.Integer i -> Print.UserFacing.integer lang ppf i
| Runtime.Decimal d -> Print.UserFacing.decimal lang ppf d
| Runtime.Date t -> Print.UserFacing.date lang ppf t
| Runtime.Duration dt -> Print.UserFacing.duration lang ppf dt
| Runtime.Enum (name, (constr, v)) ->
Format.fprintf ppf "@[<hov 2>%s.%s@ (%a)@]" name constr
(format_runtime_value lang)
v
| Runtime.Struct (name, fields) ->
Format.fprintf ppf "@[<hv 2>%s {@ %a@;<1 -2>}@]" name
(Format.pp_print_list ~pp_sep:Format.pp_print_space (fun ppf (fld, v) ->
Format.fprintf ppf "@[<hov 2>-- %s:@ %a@]" fld
(format_runtime_value lang)
v))
fields
| Runtime.Array elts ->
Format.fprintf ppf "@[<hv 2>[@,@[<hov>%a@]@;<0 -2>]@]"
(Format.pp_print_list
~pp_sep:(fun ppf () -> Format.fprintf ppf ";@ ")
(format_runtime_value lang))
(Array.to_list elts)
| Runtime.Tuple elts ->
Format.fprintf ppf "@[<hv 2>(@,@[<hov>%a@]@;<0 -2>)@]"
(Format.pp_print_list
~pp_sep:(fun ppf () -> Format.fprintf ppf ",@ ")
(format_runtime_value lang))
(Array.to_list elts)
| Runtime.Unembeddable -> Format.pp_print_string ppf "<object>"
let print_log ppf lang level entry =
let pp_infos =
Format.(
pp_print_list ~pp_sep:(fun ppf () -> fprintf ppf ".@,") pp_print_string)
in
let logprintf level entry fmt =
if ppf == Message.std_ppf () then Format.fprintf ppf "[@{<bold;grey>LOG@}] ";
Format.fprintf ppf
("@[<hov>%*s%a" ^^ fmt ^^ "@]@,")
(level * 2) "" Print.log_entry entry
in
match entry with
| Runtime.BeginCall infos ->
logprintf level BeginCall " %a" pp_infos infos;
level + 1
| Runtime.EndCall infos ->
let level = max 0 (level - 1) in
logprintf level EndCall " %a" pp_infos infos;
level
| Runtime.VariableDefinition (infos, io, value) ->
logprintf level
(VarDef
{
log_typ = TVar (Type.Var.fresh ());
log_io_input = io.Runtime.io_input;
log_io_output = io.Runtime.io_output;
})
" %a: @{<green>%s@}" pp_infos infos
(Message.unformat (fun ppf -> format_runtime_value lang ppf value));
level
| Runtime.DecisionTaken rtpos ->
let pos = Expr.runtime_to_pos rtpos in
logprintf level PosRecordIfTrueBool
"@[<v -2>@{<green>Definition applied@}:@,%a@]@," Pos.format_loc_text pos;
level
let rec value_to_runtime_embedded = function
| ELit LUnit -> Runtime.Unit
| ELit (LBool b) -> Runtime.Bool b
| ELit (LMoney m) -> Runtime.Money m
| ELit (LInt i) -> Runtime.Integer i
| ELit (LRat r) -> Runtime.Decimal r
| ELit (LDate d) -> Runtime.Date d
| ELit (LDuration dt) -> Runtime.Duration dt
| EInj { name; cons; e } ->
Runtime.Enum
( EnumName.to_string name,
( EnumConstructor.to_string cons,
value_to_runtime_embedded (Mark.remove e) ) )
| EStruct { name; fields } ->
Runtime.Struct
( StructName.to_string name,
List.map
(fun (f, e) ->
StructField.to_string f, value_to_runtime_embedded (Mark.remove e))
(StructField.Map.bindings fields) )
| EArray el ->
Runtime.Array
(Array.of_list
(List.map (fun e -> value_to_runtime_embedded (Mark.remove e)) el))
| ETuple el ->
Runtime.Tuple
(Array.of_list
(List.map (fun e -> value_to_runtime_embedded (Mark.remove e)) el))
| _ -> Runtime.Unembeddable
let handle_eq pos evaluate_operator m lang e1 e2 =
let eq_eval = evaluate_operator (Eq, pos) m lang in
let open Runtime.Oper in
match e1, e2 with
| ELit LUnit, ELit LUnit -> true
| ELit (LBool b1), ELit (LBool b2) -> o_eq_boo_boo b1 b2
| ELit (LInt x1), ELit (LInt x2) -> o_eq_int_int x1 x2
| ELit (LRat x1), ELit (LRat x2) -> o_eq_rat_rat x1 x2
| ELit (LMoney x1), ELit (LMoney x2) -> o_eq_mon_mon x1 x2
| ELit (LDuration x1), ELit (LDuration x2) ->
o_eq_dur_dur (Expr.pos_to_runtime (Expr.mark_pos m)) x1 x2
| ELit (LDate x1), ELit (LDate x2) -> o_eq_dat_dat x1 x2
| EArray es1, EArray es2 | ETuple es1, ETuple es2 -> (
try
List.for_all2
(fun e1 e2 ->
match Mark.remove (eq_eval [e1; e2]) with
| ELit (LBool b) -> b
| _ -> assert false
)
es1 es2
with Invalid_argument _ -> false)
| EStruct { fields = es1; name = s1 }, EStruct { fields = es2; name = s2 } ->
StructName.equal s1 s2
&& StructField.Map.equal
(fun e1 e2 ->
match Mark.remove (eq_eval [e1; e2]) with
| ELit (LBool b) -> b
| _ -> assert false
)
es1 es2
| ( EInj { e = e1; cons = i1; name = en1 },
EInj { e = e2; cons = i2; name = en2 } ) -> (
try
EnumName.equal en1 en2
&& EnumConstructor.equal i1 i2
&&
match Mark.remove (eq_eval [e1; e2]) with
| ELit (LBool b) -> b
| _ -> assert false
with Invalid_argument _ -> false)
| _, _ -> false
let eval_application evaluate_expr f args =
match f with
| EAbs _, _ ->
let ty =
match Expr.maybe_ty (Mark.get f) with TArrow (_, ty), _ -> ty | ty -> ty
in
evaluate_expr
( EApp
{ f; args; tys = List.map (fun e -> Expr.maybe_ty (Mark.get e)) args },
Expr.with_ty (Mark.get f) ty )
| ETuple [closure; closure_env], _ ->
let ty =
match Expr.maybe_ty (Mark.get closure) with
| TArrow (_, ty), _ -> ty
| ty -> ty
in
evaluate_expr
( EApp
{
f = closure;
args = closure_env :: args;
tys =
(TClosureEnv, Expr.pos closure)
:: List.map (fun e -> Expr.maybe_ty (Mark.get e)) args;
},
Expr.with_ty (Mark.get f) ty )
| _ ->
Message.error ~internal:true
"Trying to apply non-function passed as operator argument"
let rec evaluate_operator
evaluate_expr
((op, opos) : < overloaded : no ; .. > operator Mark.pos)
m
lang
args =
let pos = Expr.mark_pos m in
let rpos () = Expr.pos_to_runtime opos in
let div_pos () =
Expr.pos_to_runtime
@@ match args with _ :: denom :: _ -> Expr.pos denom | _ -> opos
in
let err () =
Message.error
~extra_pos:
([
( Format.asprintf "Operator (value %a):"
(Print.operator ~debug:true)
op,
opos );
]
@ List.mapi
(fun i arg ->
( Format.asprintf "Argument n°%d, value %a" (i + 1)
(Print.UserFacing.expr lang)
arg,
Expr.pos arg ))
args)
"Operator %a applied to the wrong@ arguments@ (should not happen if the \
term was well-typed)"
(Print.operator ~debug:true)
op
in
let open Runtime.Oper in
Mark.add m
@@
match op, args with
| Length, [(EArray es, _)] ->
ELit (LInt (Runtime.integer_of_int (List.length es)))
| Log (entry, infos), [(e, _)] when Global.options.trace <> None -> (
let rtinfos = List.map Uid.MarkedString.to_string infos in
match entry with
| BeginCall -> Runtime.log_begin_call rtinfos e
| EndCall -> Runtime.log_end_call rtinfos e
| PosRecordIfTrueBool ->
(match e with
| ELit (LBool b) ->
Runtime.log_decision_taken (Expr.pos_to_runtime pos) b |> ignore
| _ -> ());
e
| VarDef def ->
Runtime.log_variable_definition rtinfos
{ Runtime.io_input = def.log_io_input; io_output = def.log_io_output }
value_to_runtime_embedded e)
| Log _, [(e', _)] -> e'
| (FromClosureEnv | ToClosureEnv), [e'] ->
Mark.remove e'
| (ToClosureEnv | FromClosureEnv), _ -> err ()
| Eq, [(e1, _); (e2, _)] ->
ELit (LBool (handle_eq opos (evaluate_operator evaluate_expr) m lang e1 e2))
| Map, [f; (EArray es, _)] ->
EArray (List.map (fun e' -> eval_application evaluate_expr f [e']) es)
| Map2, [f; (EArray es1, _); (EArray es2, _)] -> (
try
EArray
(List.map2
(fun e1 e2 -> eval_application evaluate_expr f [e1; e2])
es1 es2)
with Invalid_argument _ ->
raise Runtime.(Error (NotSameLength, [Expr.pos_to_runtime opos])))
| Reduce, [_; default; (EArray [], _)] ->
Mark.remove
(eval_application evaluate_expr default
[ELit LUnit, Expr.with_ty m (TLit TUnit, pos)])
| Reduce, [f; _; (EArray (x0 :: xn), _)] ->
Mark.remove
(List.fold_left
(fun acc x -> eval_application evaluate_expr f [acc; x])
x0 xn)
| Concat, [(EArray es1, _); (EArray es2, _)] -> EArray (es1 @ es2)
| Filter, [f; (EArray es, _)] ->
EArray
(List.filter
(fun e' ->
match eval_application evaluate_expr f [e'] with
| ELit (LBool b), _ -> b
| _ ->
Message.error
~pos:(Expr.pos (List.nth args 0))
"%a" Format.pp_print_text
"This predicate evaluated to something else than a boolean \
(should not happen if the term was well-typed)")
es)
| Fold, [f; init; (EArray es, _)] ->
Mark.remove
(List.fold_left
(fun acc e' -> eval_application evaluate_expr f [acc; e'])
init es)
| (Length | Log _ | Eq | Map | Map2 | Concat | Filter | Fold | Reduce), _ ->
err ()
| Not, [(ELit (LBool b), _)] -> ELit (LBool (o_not b))
| And, [(ELit (LBool b1), _); (ELit (LBool b2), _)] ->
ELit (LBool (o_and b1 b2))
| Or, [(ELit (LBool b1), _); (ELit (LBool b2), _)] ->
ELit (LBool (o_or b1 b2))
| Xor, [(ELit (LBool b1), _); (ELit (LBool b2), _)] ->
ELit (LBool (o_xor b1 b2))
| (Not | And | Or | Xor), _ -> err ()
| Minus_int, [(ELit (LInt x), _)] -> ELit (LInt (o_minus_int x))
| Minus_rat, [(ELit (LRat x), _)] -> ELit (LRat (o_minus_rat x))
| Minus_mon, [(ELit (LMoney x), _)] -> ELit (LMoney (o_minus_mon x))
| Minus_dur, [(ELit (LDuration x), _)] -> ELit (LDuration (o_minus_dur x))
| ToInt_rat, [(ELit (LRat x), _)] -> ELit (LInt (o_toint_rat x))
| ToRat_int, [(ELit (LInt i), _)] -> ELit (LRat (o_torat_int i))
| ToRat_mon, [(ELit (LMoney i), _)] -> ELit (LRat (o_torat_mon i))
| ToMoney_rat, [(ELit (LRat i), _)] -> ELit (LMoney (o_tomoney_rat i))
| Round_mon, [(ELit (LMoney m), _)] -> ELit (LMoney (o_round_mon m))
| Round_rat, [(ELit (LRat m), _)] -> ELit (LRat (o_round_rat m))
| Add_int_int, [(ELit (LInt x), _); (ELit (LInt y), _)] ->
ELit (LInt (o_add_int_int x y))
| Add_rat_rat, [(ELit (LRat x), _); (ELit (LRat y), _)] ->
ELit (LRat (o_add_rat_rat x y))
| Add_mon_mon, [(ELit (LMoney x), _); (ELit (LMoney y), _)] ->
ELit (LMoney (o_add_mon_mon x y))
| Add_dat_dur r, [(ELit (LDate x), _); (ELit (LDuration y), _)] ->
ELit (LDate (o_add_dat_dur r (rpos ()) x y))
| Add_dur_dur, [(ELit (LDuration x), _); (ELit (LDuration y), _)] ->
ELit (LDuration (o_add_dur_dur x y))
| Sub_int_int, [(ELit (LInt x), _); (ELit (LInt y), _)] ->
ELit (LInt (o_sub_int_int x y))
| Sub_rat_rat, [(ELit (LRat x), _); (ELit (LRat y), _)] ->
ELit (LRat (o_sub_rat_rat x y))
| Sub_mon_mon, [(ELit (LMoney x), _); (ELit (LMoney y), _)] ->
ELit (LMoney (o_sub_mon_mon x y))
| Sub_dat_dat, [(ELit (LDate x), _); (ELit (LDate y), _)] ->
ELit (LDuration (o_sub_dat_dat x y))
| Sub_dat_dur r, [(ELit (LDate x), _); (ELit (LDuration y), _)] ->
ELit (LDate (o_sub_dat_dur r (rpos ()) x y))
| Sub_dur_dur, [(ELit (LDuration x), _); (ELit (LDuration y), _)] ->
ELit (LDuration (o_sub_dur_dur x y))
| Mult_int_int, [(ELit (LInt x), _); (ELit (LInt y), _)] ->
ELit (LInt (o_mult_int_int x y))
| Mult_rat_rat, [(ELit (LRat x), _); (ELit (LRat y), _)] ->
ELit (LRat (o_mult_rat_rat x y))
| Mult_mon_int, [(ELit (LMoney x), _); (ELit (LInt y), _)] ->
ELit (LMoney (o_mult_mon_int x y))
| Mult_mon_rat, [(ELit (LMoney x), _); (ELit (LRat y), _)] ->
ELit (LMoney (o_mult_mon_rat x y))
| Mult_dur_int, [(ELit (LDuration x), _); (ELit (LInt y), _)] ->
ELit (LDuration (o_mult_dur_int x y))
| Div_int_int, [(ELit (LInt x), _); (ELit (LInt y), _)] ->
ELit (LRat (o_div_int_int (div_pos ()) x y))
| Div_rat_rat, [(ELit (LRat x), _); (ELit (LRat y), _)] ->
ELit (LRat (o_div_rat_rat (div_pos ()) x y))
| Div_mon_mon, [(ELit (LMoney x), _); (ELit (LMoney y), _)] ->
ELit (LRat (o_div_mon_mon (div_pos ()) x y))
| Div_mon_int, [(ELit (LMoney x), _); (ELit (LInt y), _)] ->
ELit (LMoney (o_div_mon_int (div_pos ()) x y))
| Div_mon_rat, [(ELit (LMoney x), _); (ELit (LRat y), _)] ->
ELit (LMoney (o_div_mon_rat (div_pos ()) x y))
| Div_dur_dur, [(ELit (LDuration x), _); (ELit (LDuration y), _)] ->
ELit (LRat (o_div_dur_dur (div_pos ()) x y))
| Lt_int_int, [(ELit (LInt x), _); (ELit (LInt y), _)] ->
ELit (LBool (o_lt_int_int x y))
| Lt_rat_rat, [(ELit (LRat x), _); (ELit (LRat y), _)] ->
ELit (LBool (o_lt_rat_rat x y))
| Lt_mon_mon, [(ELit (LMoney x), _); (ELit (LMoney y), _)] ->
ELit (LBool (o_lt_mon_mon x y))
| Lt_dat_dat, [(ELit (LDate x), _); (ELit (LDate y), _)] ->
ELit (LBool (o_lt_dat_dat x y))
| Lt_dur_dur, [(ELit (LDuration x), _); (ELit (LDuration y), _)] ->
ELit (LBool (o_lt_dur_dur (rpos ()) x y))
| Lte_int_int, [(ELit (LInt x), _); (ELit (LInt y), _)] ->
ELit (LBool (o_lte_int_int x y))
| Lte_rat_rat, [(ELit (LRat x), _); (ELit (LRat y), _)] ->
ELit (LBool (o_lte_rat_rat x y))
| Lte_mon_mon, [(ELit (LMoney x), _); (ELit (LMoney y), _)] ->
ELit (LBool (o_lte_mon_mon x y))
| Lte_dat_dat, [(ELit (LDate x), _); (ELit (LDate y), _)] ->
ELit (LBool (o_lte_dat_dat x y))
| Lte_dur_dur, [(ELit (LDuration x), _); (ELit (LDuration y), _)] ->
ELit (LBool (o_lte_dur_dur (rpos ()) x y))
| Gt_int_int, [(ELit (LInt x), _); (ELit (LInt y), _)] ->
ELit (LBool (o_gt_int_int x y))
| Gt_rat_rat, [(ELit (LRat x), _); (ELit (LRat y), _)] ->
ELit (LBool (o_gt_rat_rat x y))
| Gt_mon_mon, [(ELit (LMoney x), _); (ELit (LMoney y), _)] ->
ELit (LBool (o_gt_mon_mon x y))
| Gt_dat_dat, [(ELit (LDate x), _); (ELit (LDate y), _)] ->
ELit (LBool (o_gt_dat_dat x y))
| Gt_dur_dur, [(ELit (LDuration x), _); (ELit (LDuration y), _)] ->
ELit (LBool (o_gt_dur_dur (rpos ()) x y))
| Gte_int_int, [(ELit (LInt x), _); (ELit (LInt y), _)] ->
ELit (LBool (o_gte_int_int x y))
| Gte_rat_rat, [(ELit (LRat x), _); (ELit (LRat y), _)] ->
ELit (LBool (o_gte_rat_rat x y))
| Gte_mon_mon, [(ELit (LMoney x), _); (ELit (LMoney y), _)] ->
ELit (LBool (o_gte_mon_mon x y))
| Gte_dat_dat, [(ELit (LDate x), _); (ELit (LDate y), _)] ->
ELit (LBool (o_gte_dat_dat x y))
| Gte_dur_dur, [(ELit (LDuration x), _); (ELit (LDuration y), _)] ->
ELit (LBool (o_gte_dur_dur (rpos ()) x y))
| Eq_boo_boo, [(ELit (LBool x), _); (ELit (LBool y), _)] ->
ELit (LBool (o_eq_boo_boo x y))
| Eq_int_int, [(ELit (LInt x), _); (ELit (LInt y), _)] ->
ELit (LBool (o_eq_int_int x y))
| Eq_rat_rat, [(ELit (LRat x), _); (ELit (LRat y), _)] ->
ELit (LBool (o_eq_rat_rat x y))
| Eq_mon_mon, [(ELit (LMoney x), _); (ELit (LMoney y), _)] ->
ELit (LBool (o_eq_mon_mon x y))
| Eq_dat_dat, [(ELit (LDate x), _); (ELit (LDate y), _)] ->
ELit (LBool (o_eq_dat_dat x y))
| Eq_dur_dur, [(ELit (LDuration x), _); (ELit (LDuration y), _)] ->
ELit (LBool (o_eq_dur_dur (rpos ()) x y))
| HandleExceptions, [(EArray exps, _)] -> (
let exps =
List.map
(function
| EInj { name; cons; e }, _ when EnumName.equal name Expr.option_enum
->
if EnumConstructor.equal cons Expr.some_constr then
match e with
| ETuple [e; (EPos p, _)], _ ->
Runtime.Optional.Present (e, Expr.pos_to_runtime p)
| _ -> err ()
else Runtime.Optional.Absent ()
| _ -> err ())
exps
in
match Runtime.handle_exceptions (Array.of_list exps) with
| Runtime.Optional.Absent () ->
EInj
{ name = Expr.option_enum; cons = Expr.none_constr; e = ELit LUnit, m }
| Runtime.Optional.Present (e, rpos) ->
let p = Expr.runtime_to_pos rpos in
EInj
{
name = Expr.option_enum;
cons = Expr.some_constr;
e = ETuple [e; EPos p, Expr.with_pos p m], m;
})
| ( ( Minus_int | Minus_rat | Minus_mon | Minus_dur | ToInt_rat | ToRat_int
| ToRat_mon | ToMoney_rat | Round_rat | Round_mon | Add_int_int
| Add_rat_rat | Add_mon_mon | Add_dat_dur _ | Add_dur_dur | Sub_int_int
| Sub_rat_rat | Sub_mon_mon | Sub_dat_dat | Sub_dat_dur _ | Sub_dur_dur
| Mult_int_int | Mult_rat_rat | Mult_mon_int | Mult_mon_rat | Mult_dur_int
| Div_int_int | Div_rat_rat | Div_mon_mon | Div_mon_int | Div_mon_rat
| Div_dur_dur | Lt_int_int | Lt_rat_rat | Lt_mon_mon | Lt_dat_dat
| Lt_dur_dur | Lte_int_int | Lte_rat_rat | Lte_mon_mon | Lte_dat_dat
| Lte_dur_dur | Gt_int_int | Gt_rat_rat | Gt_mon_mon | Gt_dat_dat
| Gt_dur_dur | Gte_int_int | Gte_rat_rat | Gte_mon_mon | Gte_dat_dat
| Gte_dur_dur | Eq_boo_boo | Eq_int_int | Eq_rat_rat | Eq_mon_mon
| Eq_dat_dat | Eq_dur_dur | HandleExceptions ),
_ ) ->
err ()
let rec runtime_to_val :
type d.
(decl_ctx ->
((d, _) interpr_kind, 'm) gexpr ->
((d, _) interpr_kind, 'm) gexpr) ->
decl_ctx ->
'm mark ->
typ ->
Obj.t ->
(((d, yes) interpr_kind as 'a), 'm) gexpr =
fun eval_expr ctx m ty o ->
let m = Expr.map_ty (fun _ -> ty) m in
match Mark.remove ty with
| TLit TBool -> ELit (LBool (Obj.obj o)), m
| TLit TUnit -> ELit LUnit, m
| TLit TInt -> ELit (LInt (Obj.obj o)), m
| TLit TRat -> ELit (LRat (Obj.obj o)), m
| TLit TMoney -> ELit (LMoney (Obj.obj o)), m
| TLit TDate -> ELit (LDate (Obj.obj o)), m
| TLit TDuration -> ELit (LDuration (Obj.obj o)), m
| TLit TPos ->
let rpos : Runtime.code_location = Obj.obj o in
let p =
Pos.from_info rpos.filename rpos.start_line rpos.start_column
rpos.end_line rpos.end_column
in
let p = Pos.overwrite_law_info p rpos.law_headings in
EPos p, m
| TTuple ts ->
( ETuple
(List.map2
(runtime_to_val eval_expr ctx m)
ts
(Array.to_list (Obj.obj o))),
m )
| TStruct name ->
StructName.Map.find name ctx.ctx_structs
|> StructField.Map.to_seq
|> Seq.map2
(fun o (fld, ty) -> fld, runtime_to_val eval_expr ctx m ty o)
(Array.to_seq (Obj.obj o))
|> StructField.Map.of_seq
|> fun fields -> EStruct { name; fields }, m
| TEnum name ->
let cons_map = EnumName.Map.find name ctx.ctx_enums in
let cons, ty =
List.nth
(EnumConstructor.Map.bindings cons_map)
(Obj.tag o - Obj.first_non_constant_constructor_tag)
in
let e = runtime_to_val eval_expr ctx m ty (Obj.field o 0) in
EInj { name; cons; e }, m
| TOption ty -> (
match Obj.tag o - Obj.first_non_constant_constructor_tag with
| 0 ->
let e =
runtime_to_val eval_expr ctx m (TLit TUnit, Pos.void) (Obj.field o 0)
in
EInj { name = Expr.option_enum; cons = Expr.none_constr; e }, m
| 1 ->
let e = runtime_to_val eval_expr ctx m ty (Obj.field o 0) in
EInj { name = Expr.option_enum; cons = Expr.some_constr; e }, m
| _ -> assert false)
| TClosureEnv ->
Obj.obj o, m
| TArray ty ->
( EArray
(List.map
(runtime_to_val eval_expr ctx m ty)
(Array.to_list (Obj.obj o))),
m )
| TArrow (targs, tret) -> ECustom { obj = o; targs; tret }, m
| TDefault ty -> (
match (Obj.obj o : 'a Runtime.Optional.t) with
| Runtime.Optional.Absent () -> Obj.magic EEmpty, m
| Runtime.Optional.Present o -> (
match runtime_to_val eval_expr ctx m ty o with
| ETuple [(e, m); (EPos pos, _)], _ -> e, Expr.with_pos pos m
| _ -> assert false))
| TForAll tb ->
let _v, ty = Bindlib.unmbind tb in
runtime_to_val eval_expr ctx m ty o
| TVar _ ->
Obj.obj o, m
and val_to_runtime :
type d.
(decl_ctx ->
((d, _) interpr_kind, 'm) gexpr ->
((d, _) interpr_kind, 'm) gexpr) ->
decl_ctx ->
typ ->
((d, _) interpr_kind, 'm) gexpr ->
Obj.t =
fun eval_expr ctx ty v ->
match Mark.remove ty, Mark.remove v with
| TLit TBool, ELit (LBool b) -> Obj.repr b
| TLit TUnit, ELit LUnit -> Obj.repr ()
| TLit TInt, ELit (LInt i) -> Obj.repr i
| TLit TRat, ELit (LRat r) -> Obj.repr r
| TLit TMoney, ELit (LMoney m) -> Obj.repr m
| TLit TDate, ELit (LDate t) -> Obj.repr t
| TLit TDuration, ELit (LDuration d) -> Obj.repr d
| TLit TPos, EPos p ->
let rpos : Runtime.code_location =
{
Runtime.filename = Pos.get_file p;
start_line = Pos.get_start_line p;
start_column = Pos.get_start_column p;
end_line = Pos.get_end_line p;
end_column = Pos.get_end_column p;
law_headings = Pos.get_law_info p;
}
in
Obj.repr rpos
| TTuple ts, ETuple es ->
List.map2 (val_to_runtime eval_expr ctx) ts es |> Array.of_list |> Obj.repr
| TStruct name1, EStruct { name; fields } ->
assert (StructName.equal name name1);
let fld_tys = StructName.Map.find name ctx.ctx_structs in
Seq.map2
(fun (_, ty) (_, v) -> val_to_runtime eval_expr ctx ty v)
(StructField.Map.to_seq fld_tys)
(StructField.Map.to_seq fields)
|> Array.of_seq
|> Obj.repr
| TEnum name1, EInj { name; cons; e } ->
assert (EnumName.equal name name1);
let cons_map = EnumName.Map.find name ctx.ctx_enums in
let rec find_tag n = function
| [] -> assert false
| (c, ty) :: _ when EnumConstructor.equal c cons -> n, ty
| _ :: r -> find_tag (n + 1) r
in
let tag, ty =
find_tag Obj.first_non_constant_constructor_tag
(EnumConstructor.Map.bindings cons_map)
in
let field = val_to_runtime eval_expr ctx ty e in
let o = Obj.with_tag tag (Obj.repr (Some ())) in
Obj.set_field o 0 field;
o
| TOption ty, EInj { name; cons; e } ->
assert (EnumName.equal name Expr.option_enum);
let tag, ty =
if EnumConstructor.equal cons Expr.none_constr then
Obj.first_non_constant_constructor_tag, (TLit TUnit, Pos.void)
else if EnumConstructor.equal cons Expr.some_constr then
Obj.first_non_constant_constructor_tag + 1, ty
else assert false
in
let field = val_to_runtime eval_expr ctx ty e in
let o = Obj.with_tag tag (Obj.repr (Some ())) in
Obj.set_field o 0 field;
o
| TArray ty, EArray es ->
Array.of_list (List.map (val_to_runtime eval_expr ctx ty) es) |> Obj.repr
| TArrow (targs, tret), _ ->
let m = Mark.get v in
let rec curry acc = function
| [] ->
let args = List.rev acc in
let tys = List.map (fun a -> Expr.maybe_ty (Mark.get a)) args in
val_to_runtime eval_expr ctx tret
(eval_expr ctx (EApp { f = v; args; tys }, m))
| targ :: targs ->
Obj.repr (fun x ->
curry (runtime_to_val eval_expr ctx m targ x :: acc) targs)
in
curry [] targs
| TDefault ty, _ -> (
match v with
| EEmpty, _ -> Obj.repr (Runtime.Optional.Absent ())
| EPureDefault e, m | ((_, m) as e) ->
let e = eval_expr ctx e in
let pos = Expr.pos e in
let ty = TTuple [ty; TLit TPos, pos], pos in
let with_pos =
ETuple [e; EPos pos, Expr.with_ty m (TLit TPos, pos)], Expr.with_ty m ty
in
Obj.repr
(Runtime.Optional.Present (val_to_runtime eval_expr ctx ty with_pos)))
| TForAll tb, _ ->
let _v, ty = Bindlib.unmbind tb in
val_to_runtime eval_expr ctx ty v
| TVar _, v ->
Obj.repr v
| TClosureEnv, v ->
Obj.repr v
| _ ->
Message.error ~internal:true
"Could not convert value of type %a@ to@ runtime:@ %a" Print.typ ty
Expr.format v
let rec evaluate_expr :
type d.
decl_ctx ->
Global.backend_lang ->
((d, yes) interpr_kind, 't) gexpr ->
((d, yes) interpr_kind, 't) gexpr =
fun ctx lang e ->
let debug_print, e =
Expr.take_attr e (function DebugPrint { label } -> Some label | _ -> None)
in
let m = Mark.get e in
let pos = Expr.mark_pos m in
(match debug_print with
| None -> fun r -> r
| Some label_opt ->
fun r ->
Message.debug "%a%a @{<grey>(at %s)@}"
(fun ppf -> function
| Some s -> Format.fprintf ppf "@{<bold;yellow>%s@} = " s
| None -> ())
label_opt (Print.expr ()) r (Pos.to_string_short pos);
r)
@@
match Mark.remove e with
| EVar _ ->
Message.error ~pos "%a" Format.pp_print_text
"free variable found at evaluation (should not happen if term was \
well-typed)"
| EExternal { name } ->
let path =
match Mark.remove name with
| External_value td -> TopdefName.path td
| External_scope s -> ScopeName.path s
in
let ty =
try
match Mark.remove name with
| External_value name ->
let typ, _vis = TopdefName.Map.find name ctx.ctx_topdefs in
typ
| External_scope name ->
let scope_info = ScopeName.Map.find name ctx.ctx_scopes in
( TArrow
( [TStruct scope_info.in_struct_name, pos],
(TStruct scope_info.out_struct_name, pos) ),
pos )
with TopdefName.Map.Not_found _ | ScopeName.Map.Not_found _ ->
Message.error ~pos "Reference to %a@ could@ not@ be@ resolved"
Print.external_ref name
in
let runtime_modname =
( List.map ModuleName.to_string
(Option.to_list (Uid.Path.last_member path)),
match Mark.remove name with
| External_value name -> TopdefName.base name
| External_scope name -> ScopeName.base name )
in
let o = Runtime.lookup_value runtime_modname in
runtime_to_val (fun ctx -> evaluate_expr ctx lang) ctx m ty o
| EApp { f = e1; args; _ } -> (
let e1 = evaluate_expr ctx lang e1 in
let args = List.map (evaluate_expr ctx lang) args in
match Mark.remove e1 with
| EAbs { binder; _ } ->
if Bindlib.mbinder_arity binder = List.length args then
evaluate_expr ctx lang
(Bindlib.msubst binder (Array.of_list (List.map Mark.remove args)))
else
Message.error ~pos "wrong function call, expected %d arguments, got %d"
(Bindlib.mbinder_arity binder)
(List.length args)
| ECustom { obj; targs; tret } ->
let o =
List.fold_left2
(fun fobj targ arg ->
let arg =
val_to_runtime (fun ctx -> evaluate_expr ctx lang) ctx targ arg
in
let f : Obj.t -> Obj.t =
if Obj.tag fobj = Obj.first_non_constant_constructor_tag then
let (f, x0) : ('a -> Obj.t -> Obj.t) * 'a = Obj.obj fobj in
f x0
else Obj.obj fobj
in
f arg)
obj targs args
in
runtime_to_val (fun ctx -> evaluate_expr ctx lang) ctx m tret o
| _ ->
Message.error ~pos ~internal:true "%a%a" Format.pp_print_text
"function has not been reduced to a lambda at evaluation (should not \
happen if the term was well-typed"
(fun ppf e ->
if Global.options.debug then Format.fprintf ppf ":@ %a" Expr.format e
else ())
e1)
| EAppOp { op; args; _ } ->
let args = List.map (evaluate_expr ctx lang) args in
evaluate_operator (evaluate_expr ctx lang) op m lang args
| EAbs _ | ELit _ | EPos _ | ECustom _ | EEmpty -> e
| EStruct { fields = es; name } ->
let fields, es = List.split (StructField.Map.bindings es) in
let es = List.map (evaluate_expr ctx lang) es in
let name =
match Expr.maybe_ty m with TStruct name, _ -> name | _ -> name
in
Mark.add m
(EStruct
{
fields =
StructField.Map.of_seq
(Seq.zip (List.to_seq fields) (List.to_seq es));
name;
})
| EStructAccess { e; name = s; field } -> (
let e = evaluate_expr ctx lang e in
match Mark.remove e with
| EStruct { fields = es; name } -> (
if not (StructName.equal s name) then
Message.error
~extra_pos:["", pos; "", Expr.pos e]
"%a" Format.pp_print_text
"Error during struct access: not the same structs (should not happen \
if the term was well-typed)";
match StructField.Map.find_opt field es with
| Some e' -> e'
| None ->
Message.error ~pos:(Expr.pos e)
"Invalid field access %a@ in@ struct@ %a@ (should not happen if the \
term was well-typed). Fields: %a"
StructField.format field StructName.format s
(fun ppf -> StructField.Map.format_keys ppf)
es)
| _ ->
Message.error ~pos:(Expr.pos e)
"The expression %a@ should@ be@ a@ struct@ %a@ but@ is@ not@ (should \
not happen if the term was well-typed)"
(Print.UserFacing.expr lang)
e StructName.format s)
| ETuple es -> Mark.add m (ETuple (List.map (evaluate_expr ctx lang) es))
| ETupleAccess { e = e1; index; size } -> (
match evaluate_expr ctx lang e1 with
| ETuple es, _ when List.length es = size -> List.nth es index
| e ->
Message.error ~pos:(Expr.pos e)
"The expression %a@ was@ expected@ to@ be@ a@ tuple@ of@ size@ %d@ \
(should not happen if the term was well-typed)"
(Print.UserFacing.expr lang)
e size)
| EInj { e; name; cons } ->
let e = evaluate_expr ctx lang e in
let name =
match Expr.maybe_ty m with TEnum name, _ -> name | _ -> name
in
Mark.add m (EInj { e; name; cons })
| EMatch { e; cases; name } -> (
let e = evaluate_expr ctx lang e in
match Mark.remove e with
| EInj { e = e1; cons; name = name' } ->
if not (EnumName.equal name name') then
Message.error
~extra_pos:["", Expr.pos e; "", Expr.pos e1]
"%a" Format.pp_print_text
"Error during match: two different enums found (should not happen if \
the term was well-typed)";
let es_n =
match EnumConstructor.Map.find_opt cons cases with
| Some es_n -> es_n
| None ->
Message.error ~pos:(Expr.pos e) "%a" Format.pp_print_text
"sum type index error (should not happen if the term was \
well-typed)"
in
let ty =
EnumConstructor.Map.find cons (EnumName.Map.find name ctx.ctx_enums)
in
let new_e = Mark.add m (EApp { f = es_n; args = [e1]; tys = [ty] }) in
evaluate_expr ctx lang new_e
| _ ->
Message.error ~pos:(Expr.pos e)
"Expected a term having a sum type as an argument to a match (should \
not happen if the term was well-typed")
| EIfThenElse { cond; etrue; efalse } -> (
let cond = evaluate_expr ctx lang cond in
match Mark.remove cond with
| ELit (LBool true) -> evaluate_expr ctx lang etrue
| ELit (LBool false) -> evaluate_expr ctx lang efalse
| _ ->
Message.error ~pos:(Expr.pos cond) "%a" Format.pp_print_text
"Expected a boolean literal for the result of this condition (should \
not happen if the term was well-typed)")
| EArray es ->
let es = List.map (evaluate_expr ctx lang) es in
Mark.add m (EArray es)
| EAssert e' -> (
let e = evaluate_expr ctx lang e' in
match Mark.remove e with
| ELit (LBool true) -> Mark.add m (ELit LUnit)
| ELit (LBool false) ->
if Global.options.stop_on_error then
raise Runtime.(Error (AssertionFailed, [Expr.pos_to_runtime pos]))
else
let partially_evaluated_assertion_failure_expr =
partially_evaluate_expr_for_assertion_failure_message ctx lang
(Expr.skip_wrappers e')
in
(match Mark.remove partially_evaluated_assertion_failure_expr with
| ELit (LBool false) ->
if Global.options.no_fail_on_assert then
Message.warning ~pos "Assertion failed"
else
Message.delayed_error ~kind:AssertFailure () ~pos "Assertion failed"
| _ ->
if Global.options.no_fail_on_assert then
Message.warning ~pos "Assertion failed:@ %a"
(Print.UserFacing.expr lang)
partially_evaluated_assertion_failure_expr
else
Message.delayed_error ~kind:AssertFailure () ~pos
"Assertion failed:@ %a"
(Print.UserFacing.expr lang)
partially_evaluated_assertion_failure_expr);
Mark.add m (ELit LUnit)
| _ ->
Message.error ~pos:(Expr.pos e') "%a" Format.pp_print_text
"Expected a boolean literal for the result of this assertion (should \
not happen if the term was well-typed)")
| EFatalError err -> raise (Runtime.Error (err, [Expr.pos_to_runtime pos]))
| EErrorOnEmpty e' -> (
match evaluate_expr ctx lang e' with
| EEmpty, _ -> raise Runtime.(Error (NoValue, [Expr.pos_to_runtime pos]))
| exception Runtime.Empty ->
raise Runtime.(Error (NoValue, [Expr.pos_to_runtime pos]))
| e -> e)
| EDefault { excepts; just; cons } -> (
let excepts = List.map (evaluate_expr ctx lang) excepts in
let empty_count = List.length (List.filter is_empty_error excepts) in
match List.length excepts - empty_count with
| 0 -> (
let just = evaluate_expr ctx lang just in
match Mark.remove just with
| ELit (LBool true) -> evaluate_expr ctx lang cons
| ELit (LBool false) -> Mark.copy e EEmpty
| _ ->
Message.error ~pos:(Expr.pos e) "%a" Format.pp_print_text
"Default justification has not been reduced to a boolean at \
evaluation (should not happen if the term was well-typed")
| 1 -> List.find (fun sub -> not (is_empty_error sub)) excepts
| _ ->
let poslist =
List.filter_map
(fun ex ->
if is_empty_error ex then None
else Some Expr.(pos_to_runtime (pos ex)))
excepts
in
raise Runtime.(Error (Conflict, poslist)))
| EPureDefault e -> evaluate_expr ctx lang e
| _ -> .
and partially_evaluate_expr_for_assertion_failure_message :
type d.
decl_ctx ->
Global.backend_lang ->
((d, yes) interpr_kind, 't) gexpr ->
((d, yes) interpr_kind, 't) gexpr =
fun ctx lang e ->
match Mark.remove e with
| EAppOp
{
args = [e1; e2];
tys;
op =
( ( And | Or | Xor | Eq | Lt_int_int | Lt_rat_rat | Lt_mon_mon
| Lt_dat_dat | Lt_dur_dur | Lte_int_int | Lte_rat_rat | Lte_mon_mon
| Lte_dat_dat | Lte_dur_dur | Gt_int_int | Gt_rat_rat | Gt_mon_mon
| Gt_dat_dat | Gt_dur_dur | Gte_int_int | Gte_rat_rat | Gte_mon_mon
| Gte_dat_dat | Gte_dur_dur | Eq_int_int | Eq_rat_rat | Eq_mon_mon
| Eq_dur_dur | Eq_dat_dat ),
_ ) as op;
} ->
( EAppOp
{
op;
tys;
args =
[
partially_evaluate_expr_for_assertion_failure_message ctx lang e1;
partially_evaluate_expr_for_assertion_failure_message ctx lang e2;
];
},
Mark.get e )
| _ -> evaluate_expr ctx lang e
let evaluate_expr_trace :
type d.
decl_ctx ->
Global.backend_lang ->
((d, yes) interpr_kind, 't) gexpr ->
((d, yes) interpr_kind, 't) gexpr =
fun ctx lang e ->
Runtime.reset_log ();
Fun.protect
(fun () -> evaluate_expr ctx lang e)
~finally:(fun () ->
match Global.options.trace with
| None -> ()
| Some (lazy ppf) ->
let trace = Runtime.retrieve_log () in
if trace = [] then
()
else
let output_trace fmt =
match Global.options.trace_format with
| Human ->
Format.pp_open_vbox ppf 0;
ignore @@ List.fold_left (print_log ppf lang) 0 trace;
Format.pp_close_box ppf ()
| JSON ->
Format.fprintf fmt "@[<v 2>[@,";
Format.pp_print_list
~pp_sep:(fun fmt () -> Format.fprintf fmt ",@,")
Format.pp_print_string fmt
(List.map Runtime.Json.raw_event trace);
Format.fprintf fmt "]@]@."
in
Fun.protect
(fun () -> output_trace ppf)
~finally:(fun () -> Format.pp_print_flush ppf ()))
let evaluate_expr_safe :
type d.
decl_ctx ->
Global.backend_lang ->
((d, yes) interpr_kind, 't) gexpr ->
((d, yes) interpr_kind, 't) gexpr =
fun ctx lang e ->
try evaluate_expr_trace ctx lang e
with Runtime.Error (err, rpos) ->
Message.error
~extra_pos:(List.map (fun rp -> "", Expr.runtime_to_pos rp) rpos)
"During evaluation: %a." Format.pp_print_text
(Runtime.error_message err)
let addcustom e =
let rec f :
type c d.
((d, c) interpr_kind, 't) gexpr -> ((d, yes) interpr_kind, 't) gexpr boxed
= function
| (ECustom _, _) as e -> Expr.map ~f e
| EAppOp { op; tys; args }, m ->
Expr.eappop ~tys ~args:(List.map f args) ~op:(Operator.translate op) m
| (EDefault _, _) as e -> Expr.map ~f e
| (EPureDefault _, _) as e -> Expr.map ~f e
| (EEmpty, _) as e -> Expr.map ~f e
| (EErrorOnEmpty _, _) as e -> Expr.map ~f e
| (EPos _, _) as e -> Expr.map ~f e
| ( ( EAssert _ | EFatalError _ | ELit _ | EApp _ | EArray _ | EVar _
| EExternal _ | EAbs _ | EIfThenElse _ | ETuple _ | ETupleAccess _
| EInj _ | EStruct _ | EStructAccess _ | EMatch _ ),
_ ) as e ->
Expr.map ~f e
| _ -> .
in
let open struct
external id :
(('d, 'c) interpr_kind, 't) gexpr -> (('d, yes) interpr_kind, 't) gexpr
= "%identity"
end in
if false then Expr.unbox (f e)
else id e
let delcustom e =
let rec f :
type c d.
((d, c) interpr_kind, 't) gexpr -> ((d, no) interpr_kind, 't) gexpr boxed
= function
| ECustom _, _ -> invalid_arg "Custom term remaining in evaluated term"
| EAppOp { op; args; tys }, m ->
Expr.eappop ~tys ~args:(List.map f args) ~op:(Operator.translate op) m
| (EDefault _, _) as e -> Expr.map ~f e
| (EPureDefault _, _) as e -> Expr.map ~f e
| (EEmpty, _) as e -> Expr.map ~f e
| (EErrorOnEmpty _, _) as e -> Expr.map ~f e
| (EPos _, _) as e -> Expr.map ~f e
| ( ( EAssert _ | EFatalError _ | ELit _ | EApp _ | EArray _ | EVar _
| EExternal _ | EAbs _ | EIfThenElse _ | ETuple _ | ETupleAccess _
| EInj _ | EStruct _ | EStructAccess _ | EMatch _ ),
_ ) as e ->
Expr.map ~f e
| _ -> .
in
Expr.unbox (f e)
let interpret_program_lcalc p s : (Uid.MarkedString.info * ('a, 'm) gexpr) list
=
Message.with_delayed_errors (fun () ->
let e = Expr.unbox @@ Program.to_expr p s in
let ctx = p.decl_ctx in
match evaluate_expr_safe ctx p.lang (addcustom e) with
| (EAbs { tys = [((TStruct s_in, _) as _targs)]; _ }, mark_e) as e ->
begin
let application_term = Scope.empty_input_struct_lcalc ctx s_in mark_e in
let to_interpret =
Expr.make_app (Expr.box e) [application_term]
[TStruct s_in, Expr.pos e]
(Expr.pos e)
in
match
Mark.remove (evaluate_expr_safe ctx p.lang (Expr.unbox to_interpret))
with
| EStruct { fields; _ } ->
List.map
(fun (fld, e) -> StructField.get_info fld, e)
(StructField.Map.bindings fields)
| _ ->
Message.error ~pos:(Expr.pos e) ~internal:true "%a"
Format.pp_print_text
"The interpretation of the program doesn't yield a struct \
corresponding to the scope variables"
end
| _ ->
Message.error ~pos:(Expr.pos e) "%a" Format.pp_print_text
"The interpreter can only interpret terms starting with functions \
having thunked arguments")
(** {1 API} *)
let interpret_program_dcalc p s : (Uid.MarkedString.info * ('a, 'm) gexpr) list
=
Message.with_delayed_errors (fun () ->
let ctx = p.decl_ctx in
let e = Expr.unbox (Program.to_expr p s) in
match evaluate_expr_safe p.decl_ctx p.lang (addcustom e) with
| (EAbs { tys = [((TStruct s_in, _) as _targs)]; _ }, mark_e) as e ->
begin
let application_term = Scope.empty_input_struct_dcalc ctx s_in mark_e in
let to_interpret =
Expr.make_app (Expr.box e) [application_term]
[TStruct s_in, Expr.pos e]
(Expr.pos e)
in
match
Mark.remove (evaluate_expr_safe ctx p.lang (Expr.unbox to_interpret))
with
| EStruct { fields; _ } ->
List.map
(fun (fld, e) -> StructField.get_info fld, e)
(StructField.Map.bindings fields)
| _ ->
Message.error ~pos:(Expr.pos e) ~internal:true "%a"
Format.pp_print_text
"The interpretation of a program should always yield a struct \
corresponding to the scope variables"
end
| _ ->
Message.error ~pos:(Expr.pos e) ~internal:true "%a" Format.pp_print_text
"The interpreter can only interpret terms starting with functions \
having thunked arguments")
let evaluate_expr ctx lang e =
Fun.protect ~finally:Runtime.reset_log
@@ fun () -> evaluate_expr ctx lang (addcustom e)
let loaded_modules = Hashtbl.create 17
let load_runtime_modules ~hashf prg =
let externals_only = Global.options.whole_program in
let load (mname, intf_id) =
let hash = hashf intf_id.hash in
if Hashtbl.mem loaded_modules mname then ()
else if (not intf_id.is_external) && externals_only then ()
else
let expect_hash =
if intf_id.is_external then Hash.external_placeholder
else Hash.to_string hash
in
let obj_file =
let src = Pos.get_file (Mark.get (ModuleName.get_info mname)) in
let dir = File.dirname src in
let f =
Dynlink.adapt_filename
File.((dir / "ocaml" / ModuleName.to_string mname) ^ ".cmo")
in
if Sys.file_exists f then f
else
let root = File.common_prefix Global.options.bin_dir dir in
File.(Global.options.bin_dir / File.remove_prefix root f)
in
(if not (Sys.file_exists obj_file) then
Message.error
~pos_msg:(fun ppf ->
Format.pp_print_string ppf "Module defined here")
~pos:(Mark.get (ModuleName.get_info mname))
"Compiled OCaml object %a@ not@ found.@ Make sure it has been \
suitably compiled."
File.format obj_file
else
try Dynlink.loadfile obj_file
with Dynlink.Error dl_err ->
Message.error
"While loading compiled module from %a:@;<1 2>@[<hov>%a@]"
File.format obj_file Format.pp_print_text
(Dynlink.error_message dl_err));
match Runtime.check_module (ModuleName.to_string mname) expect_hash with
| Ok () -> Hashtbl.add loaded_modules mname hash
| Error bad_hash ->
Message.debug
"Module hash mismatch for %a:@ @[<v>Expected: %a@,Found: %a@]"
ModuleName.format mname Hash.format hash
(fun ppf h ->
try Hash.format ppf (Hash.of_string h)
with Failure _ ->
if h = Hash.external_placeholder then
Format.fprintf ppf "@{<cyan>%s@}" Hash.external_placeholder
else Format.fprintf ppf "@{<red><invalid>@}")
bad_hash;
Message.error
"Module %a@ needs@ recompiling:@ %a@ was@ likely@ compiled@ from@ \
an@ older@ version@ or@ with@ incompatible@ flags."
ModuleName.format mname File.format obj_file
| exception Not_found ->
Message.error
"Module %a@ was loaded from file %a but did not register properly, \
there is something wrong in its code."
ModuleName.format mname File.format obj_file
in
let modules_list_topo = Program.modules_to_list prg.decl_ctx.ctx_modules in
if modules_list_topo <> [] then
Message.debug "Loading shared modules... %a"
(Format.pp_print_list ~pp_sep:Format.pp_print_space ModuleName.format)
(List.filter_map
(fun (m, { is_external; _ }) ->
if externals_only && not is_external then None else Some m)
modules_list_topo);
List.iter load modules_list_topo