Source file API.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
open Elpi_util
open Elpi_parser
module type Runtime = (module type of Runtime_trace_off)
let r = ref (module Runtime_trace_off : Runtime)
let set_runtime b =
begin match b with
| true -> r := (module Runtime : Runtime)
| false -> r := (module Runtime_trace_off : Runtime)
end;
let module R = (val !r) in
Util.set_spaghetti_printer Data.pp_const R.Pp.pp_constant
let set_trace argv =
let args = Trace_ppx_runtime.Runtime.parse_argv argv in
set_runtime !Trace_ppx_runtime.Runtime.debug;
args
module Setup = struct
type builtins = Compiler.builtins
type elpi = {
parser : (module Parse.Parser);
resolver : ?cwd:string -> unit:string -> unit -> string;
header : Compiler.header
}
type flags = Compiler.flags
let init ?(flags=Compiler.default_flags) ~builtins ?file_resolver ?(legacy_parser=false) () : elpi =
let file_resolver =
match file_resolver with
| Some x -> x
| None -> fun ?cwd:_ ~unit:_ () ->
raise (Failure "'accumulate' is disabled since Setup.init was not given a ~file_resolver.") in
let parser =
if legacy_parser then begin
if not Legacy_parser_proxy.valid then
Util.error "The legacy parser is not available (disabled at compile time)";
(module Legacy_parser_proxy.Make(struct let resolver = file_resolver end) : Parse.Parser)
end else
(module Parse.Make(struct let resolver = file_resolver end) : Parse.Parser) in
Data.Global_symbols.lock ();
let =
builtins |> List.map (fun (fname,decls) ->
let b = Buffer.create 1024 in
let fmt = Format.formatter_of_buffer b in
Data.BuiltInPredicate.document fmt decls;
Format.pp_print_flush fmt ();
let text = Buffer.contents b in
let lexbuf = Lexing.from_string text in
let module P = (val parser) in
try
P.program_from ~loc:(Util.Loc.initial fname) lexbuf
with Parse.ParseError(loc,msg) ->
List.iteri (fun i s ->
Printf.eprintf "%4d: %s\n" (i+1) s)
(Re.Str.(split_delim (regexp_string "\n") text));
Printf.eprintf "Excerpt of %s:\n%s\n" fname
(String.sub text loc.Util.Loc.line_starts_at
Util.Loc.(loc.source_stop - loc.line_starts_at));
Util.anomaly ~loc msg) in
let =
try Compiler.header_of_ast ~flags ~parser builtins (List.concat header_src)
with Compiler.CompileError(loc,msg) -> Util.anomaly ?loc msg in
{ parser; header; resolver = file_resolver }
let trace = set_trace
let usage =
Trace_ppx_runtime.Runtime.usage
let set_warn = Util.set_warn
let set_error = Util.set_error
let set_anomaly = Util.set_anomaly
let set_type_error = Util.set_type_error
let set_std_formatter = Util.set_std_formatter
let set_err_formatter fmt =
Util.set_err_formatter fmt; Trace_ppx_runtime.Runtime.(set_trace_output TTY fmt)
let legacy_parser_available = Legacy_parser_proxy.valid
end
module EA = Ast
module Ast = struct
type program = Ast.Program.t
type query = Ast.Goal.t
module Loc = Util.Loc
module Goal = Ast.Goal
end
module Parse = struct
let program ~elpi:{ Setup.parser } ~files =
let module P = (val parser) in
List.(concat (map (fun file -> P.program ~file) files))
let program_from ~elpi:{ Setup.parser } ~loc buf =
let module P = (val parser) in
P.program_from ~loc buf
let goal ~elpi:{ Setup.parser } ~loc ~text =
let module P = (val parser) in
P.goal ~loc ~text
let goal_from ~elpi:{ Setup.parser } ~loc buf =
let module P = (val parser) in
P.goal_from ~loc buf
exception ParseError = Elpi_parser.Parser_config.ParseError
let resolve_file ~elpi:{ Setup.resolver } = resolver
let std_resolver = Elpi_util.Util.std_resolver
end
module ED = Data
module Data = struct
type term = Data.term
type constraints = Data.constraints
type state = Data.State.t
type pretty_printer_context = ED.pp_ctx
module StrMap = Util.StrMap
type 'a solution = 'a Data.solution = {
assignments : term StrMap.t;
constraints : constraints;
state : state;
output : 'a;
pp_ctx : pretty_printer_context;
}
type hyp = Data.clause_src = {
hdepth : int;
hsrc : term
}
type hyps = hyp list
end
module Compile = struct
type program = Compiler.program
type 'a query = 'a Compiler.query
type 'a executable = 'a ED.executable
type compilation_unit = Compiler.compilation_unit
exception CompileError = Compiler.CompileError
let to_setup_flags x = x
let program ?(flags=Compiler.default_flags) ~elpi:{ } l =
Compiler.program_of_ast ~flags ~header (List.flatten l)
let query s_p t =
Compiler.query_of_ast s_p t
let static_check ~checker q =
let module R = (val !r) in let open R in
Compiler.static_check ~exec:(execute_once ~delay_outside_fragment:false) ~checker q
module StrSet = Util.StrSet
type flags = Compiler.flags = {
defined_variables : StrSet.t;
print_passes : bool;
print_units : bool;
}
let default_flags = Compiler.default_flags
let optimize = Compiler.optimize_query
let unit ?(flags=Compiler.default_flags) ~elpi:{ } x = Compiler.unit_of_ast ~flags ~header x
let extend ?(flags=Compiler.default_flags) ~base ul = Compiler.append_units ~flags ~base ul
let assemble ?(flags=Compiler.default_flags) ~elpi:{ } = Compiler.assemble_units ~flags ~header
end
module Execute = struct
type 'a outcome = 'a ED.outcome =
Success of 'a Data.solution | Failure | NoMoreSteps
let once ?max_steps ?delay_outside_fragment p =
let module R = (val !r) in
R.execute_once ?max_steps ?delay_outside_fragment p
let loop ?delay_outside_fragment p ~more ~pp =
let module R = (val !r) in
R.execute_loop ?delay_outside_fragment p ~more ~pp
end
module Pp = struct
let term pp_ctx f t =
let module R = (val !r) in let open R in
Pp.uppterm ~pp_ctx 0 [] ~argsdepth:0 [||] f t
let constraints pp_ctx f c =
let module R = (val !r) in let open R in
Util.pplist ~boxed:true (pp_stuck_goal ~pp_ctx) "" f c
let state = ED.State.pp
let program f c =
let module R = (val !r) in let open R in
Compiler.pp_program (fun ~pp_ctx ~depth -> Pp.uppterm ~pp_ctx depth [] ~argsdepth:0 [||]) f c
let goal f c =
let module R = (val !r) in let open R in
Compiler.pp_goal (fun ~pp_ctx ~depth -> Pp.uppterm ~pp_ctx depth [] ~argsdepth:0 [||]) f c
module Ast = struct
let program = EA.Program.pp
let query = EA.Goal.pp
end
end
module Conversion = struct
type ty_ast = ED.Conversion.ty_ast = TyName of string | TyApp of string * ty_ast * ty_ast list
type extra_goal +=
| Unify = ED.Conversion.Unify
type 'a embedding = 'a ED.Conversion.embedding
type 'a readback = 'a ED.Conversion.readback
type 'a t = 'a ED.Conversion.t = {
ty : ty_ast;
pp_doc : Format.formatter -> unit -> unit;
pp : Format.formatter -> 'a -> unit;
embed : 'a embedding;
readback : 'a readback;
}
exception TypeErr = ED.Conversion.TypeErr
end
module ContextualConversion = ED.ContextualConversion
module RawOpaqueData = struct
type name = string
type doc = string
type 'a declaration = {
name : name;
doc : doc;
pp : Format.formatter -> 'a -> unit;
compare : 'a -> 'a -> int;
hash : 'a -> int;
hconsed : bool;
constants : (name * 'a) list;
}
type t = Util.CData.t
type 'a cdata = {
cin : 'a -> Data.term;
isc : t -> bool;
cout: t -> 'a;
name : string;
}
let conversion_of_cdata ~name ?(doc="") ~constants_map ~values_map ~constants
~pp ({ Util.CData.cin; isc; cout; name = c } )
=
let ty = Conversion.TyName name in
let cin x =
let module R = (val !r) in
try R.mkConst (values_map x)
with Not_found -> ED.Term.CData (cin x) in
let embed ~depth:_ state x =
state, cin x, [] in
let readback ~depth state t =
let module R = (val !r) in let open R in
match deref_head ~depth t with
| ED.Term.CData c when isc c -> state, cout c, []
| ED.Term.Const i as t when i < 0 ->
begin try state, ED.Constants.Map.find i constants_map, []
with Not_found -> raise (Conversion.TypeErr(ty,depth,t)) end
| t -> raise (Conversion.TypeErr(ty,depth,t)) in
let pp_doc fmt () =
if doc <> "" then begin
ED.BuiltInPredicate.pp_comment fmt ("% " ^ doc);
Format.fprintf fmt "@\n";
end;
Format.fprintf fmt "@[<hov 2>typeabbrev %s (ctype \"%s\").@]@\n@\n" name c;
List.iter (fun (c,_) ->
Format.fprintf fmt "@[<hov 2>type %s %s.@]@\n" c name)
constants
in
{ cin; cout; isc; name = c },
{ Conversion.embed; readback; ty; pp_doc; pp }
let conversion_of_cdata (type a) ~name ?doc ?(constants=[]) ~compare ~pp cd =
let module VM = Map.Make(struct type t = a let compare = compare end) in
let constants_map, values_map =
List.fold_right (fun (n,v) (cm,vm) ->
let c = ED.Global_symbols.declare_global_symbol n in
ED.Constants.Map.add c v cm, VM.add v c vm)
constants (ED.Constants.Map.empty,VM.empty) in
let values_map x = VM.find x values_map in
conversion_of_cdata ~name ?doc ~constants_map ~values_map ~constants ~pp cd
let declare { name; doc; pp; compare; hash; hconsed; constants; } =
let cdata = Util.CData.declare {
data_compare = compare;
data_pp = pp;
data_hash = hash;
data_name = name;
data_hconsed = hconsed;
} in
conversion_of_cdata ~name ~doc ~constants ~compare ~pp cdata
let morph1 { cin; cout } f x = cin (f (cout x))
let morph2 { cin; cout } f x y = cin (f (cout x) (cout y))
let map { cout } { cin } f x = cin (f (cout x))
let ty2 { isc } x y = isc x && isc y
let hcons = Util.CData.hcons
let name = Util.CData.name
let hash = Util.CData.hash
let compare = Util.CData.compare
let show = Util.CData.show
let pp = Util.CData.pp
let equal = Util.CData.equal
let int =
let { Util.CData.cin; cout; isc; name } = ED.C.int in
{ cin = (fun x -> ED.mkCData (cin x)); cout; isc; name }
let is_int = ED.C.is_int
let to_int = ED.C.to_int
let of_int = ED.C.of_int
let float =
let { Util.CData.cin; cout; isc; name } = ED.C.float in
{ cin = (fun x -> ED.mkCData (cin x)); cout; isc; name }
let is_float = ED.C.is_float
let to_float = ED.C.to_float
let of_float = ED.C.of_float
let string =
let { Util.CData.cin; cout; isc; name } = ED.C.string in
{ cin = (fun x -> ED.mkCData (cin x)); cout; isc; name }
let is_string = ED.C.is_string
let to_string = ED.C.to_string
let of_string = ED.C.of_string
let loc =
let { Util.CData.cin; cout; isc; name } = ED.C.loc in
{ cin = (fun x -> ED.mkCData (cin x)); cout; isc; name }
let is_loc = ED.C.is_loc
let to_loc = ED.C.to_loc
let of_loc = ED.C.of_loc
end
module OpaqueData = struct
type name = string
type doc = string
type 'a declaration = 'a RawOpaqueData.declaration = {
name : name;
doc : doc;
pp : Format.formatter -> 'a -> unit;
compare : 'a -> 'a -> int;
hash : 'a -> int;
hconsed : bool;
constants : (name * 'a) list;
}
let declare x = snd @@ RawOpaqueData.declare x
end
module BuiltInData = struct
let int = snd @@ RawOpaqueData.conversion_of_cdata ~name:"int" ~compare:(fun x y -> x - y) ~pp:(fun fmt x -> Util.CData.pp fmt (ED.C.int.Util.CData.cin x)) ED.C.int
let float = snd @@ RawOpaqueData.conversion_of_cdata ~name:"float" ~compare:Float.compare ~pp:(fun fmt x -> Util.CData.pp fmt (ED.C.float.Util.CData.cin x)) ED.C.float
let string = snd @@ RawOpaqueData.conversion_of_cdata ~name:"string" ~compare:String.compare ~pp:(fun fmt x -> Util.CData.pp fmt (ED.C.string.Util.CData.cin x)) ED.C.string
let loc = snd @@ RawOpaqueData.conversion_of_cdata ~name:"loc" ~compare:Util.Loc.compare ~pp:(fun fmt x -> Util.CData.pp fmt (ED.C.loc.Util.CData.cin x)) ED.C.loc
let poly ty =
let embed ~depth:_ state x = state, x, [] in
let readback ~depth state t = state, t, [] in
{ Conversion.embed; readback; ty = Conversion.TyName ty;
pp = (fun fmt _ -> Format.fprintf fmt "<poly>");
pp_doc = (fun fmt () -> ()) }
let any = poly "any"
let fresh_copy t depth =
let module R = (val !r) in let open R in
let open ED in
let rec aux d t =
match deref_head ~depth:(depth + d) t with
| Lam t -> mkLam (aux (d+1) t)
| Const c as x ->
if c < 0 || c >= depth then x
else raise Conversion.(TypeErr(TyName"closed term",depth+d,x))
| App (c,x,xs) ->
if c < 0 || c >= depth then mkApp c (aux d x) (List.map (aux d) xs)
else raise Conversion.(TypeErr(TyName"closed term",depth+d,x))
| (UVar _ | AppUVar _) as x ->
raise Conversion.(TypeErr(TyName"closed term",depth+d,x))
| Arg _ | AppArg _ -> assert false
| Builtin (c,xs) -> mkBuiltin c (List.map (aux d) xs)
| CData _ as x -> x
| Cons (hd,tl) -> mkCons (aux d hd) (aux d tl)
| Nil as x -> x
| Discard as x -> x
in
(aux 0 t, depth)
let closed ty =
let ty = Conversion.(TyName ty) in
let embed ~depth state (x,from) =
let module R = (val !r) in let open R in
state, hmove ~from ~to_:depth ?avoid:None x, [] in
let readback ~depth state t =
state, fresh_copy t depth, [] in
{ Conversion.embed; readback; ty;
pp = (fun fmt (t,d) ->
let module R = (val !r) in let open R in
Pp.uppterm d [] d ED.empty_env fmt t);
pp_doc = (fun fmt () -> ()) }
let map_acc f s l =
let rec aux acc s = function
| [] -> s, List.rev acc, List.(concat (rev extra))
| x :: xs ->
let s, x, gls = f s x in
aux (x :: acc) (gls :: extra) s xs
in
aux [] [] s l
let listC d =
let embed ~depth h c s l =
let module R = (val !r) in let open R in
let s, l, eg = map_acc (d.ContextualConversion.embed ~depth h c) s l in
s, list_to_lp_list l, eg in
let readback ~depth h c s t =
let module R = (val !r) in let open R in
map_acc (d.ContextualConversion.readback ~depth h c) s
(lp_list_to_list ~depth t)
in
let pp fmt l =
Format.fprintf fmt "[%a]" (Util.pplist d.pp ~boxed:true "; ") l in
{ ContextualConversion.embed; readback;
ty = TyApp ("list",d.ty,[]);
pp;
pp_doc = (fun fmt () -> ()) }
let list d =
let embed ~depth s l =
let module R = (val !r) in let open R in
let s, l, eg = map_acc (d.Conversion.embed ~depth) s l in
s, list_to_lp_list l, eg in
let readback ~depth s t =
let module R = (val !r) in let open R in
map_acc (d.Conversion.readback ~depth) s
(lp_list_to_list ~depth t)
in
let pp fmt l =
Format.fprintf fmt "[%a]" (Util.pplist d.pp ~boxed:true "; ") l in
{ Conversion.embed; readback;
ty = TyApp ("list",d.ty,[]);
pp;
pp_doc = (fun fmt () -> ()) }
end
module Elpi = struct
type t = Arg of string | Ref of ED.uvar_body
let pp fmt handle =
match handle with
| Arg str ->
Format.fprintf fmt "%s" str
| Ref ub ->
let module R = (val !r) in let open R in
Pp.uppterm 0 [] 0 [||] fmt (ED.mkUVar ub 0 0)
let show m = Format.asprintf "%a" pp m
let equal h1 h2 =
match h1, h2 with
| Ref p1, Ref p2 -> p1 == p2
| Arg s1, Arg s2 -> String.equal s1 s2
| _ -> false
let hash = function
| Arg s -> Hashtbl.hash s
| Ref r -> ED.uvar_id r
let compilation_is_over ~args k =
match k with
| Ref _ -> assert false
| Arg s -> Ref (Util.StrMap.find s args)
let uvk = ED.State.declare ~name:"elpi:uvk" ~pp:(Util.StrMap.pp pp)
~clause_compilation_is_over:(fun x -> Util.StrMap.empty)
~goal_compilation_begins:(fun x -> Util.StrMap.empty)
~goal_compilation_is_over:(fun ~args x ->
Some (Util.StrMap.map (compilation_is_over ~args) x))
~compilation_is_over:(fun _ -> None)
~execution_is_over:(fun _ -> None)
~init:(fun () -> Util.StrMap.empty)
let fresh_name =
let i = ref 0 in
fun () -> incr i; Printf.sprintf "_uvk_%d_" !i
let alloc_Elpi name state =
if ED.State.get ED.while_compiling state then
let state, _arg = Compiler.mk_Arg ~name ~args:[] state in
state, Arg name
else
let module R = (val !r) in
state, Ref (ED.oref ED.dummy)
let make ?name state =
match name with
| None -> alloc_Elpi (fresh_name ()) state
| Some name ->
if ED.State.get ED.while_compiling state then
try state, Util.StrMap.find name (ED.State.get uvk state)
with Not_found ->
let state, k = alloc_Elpi name state in
ED.State.update uvk state (Util.StrMap.add name k), k
else
alloc_Elpi name state
let get ~name state =
try Some (Util.StrMap.find name (ED.State.get uvk state))
with Not_found -> None
end
module RawData = struct
type constant = ED.Term.constant
type builtin = ED.Term.constant
type term = ED.Term.term
type view =
| Const of constant
| Lam of term
| App of constant * term * term list
| Cons of term * term
| Nil
| Builtin of builtin * term list
| CData of RawOpaqueData.t
| UnifVar of Elpi.t * term list
let rec look ~depth t =
let module R = (val !r) in let open R in
match deref_head ~depth t with
| ED.Term.Arg _ | ED.Term.AppArg _ -> assert false
| ED.Term.AppUVar(ub,0,args) -> UnifVar (Ref ub,args)
| ED.Term.AppUVar(ub,lvl,args) -> look ~depth (R.expand_appuv ub ~depth ~lvl ~args)
| ED.Term.UVar(ub,lvl,ano) -> look ~depth (R.expand_uv ub ~depth ~lvl ~ano)
| ED.Term.Discard ->
let ub = ED.oref ED.dummy in
UnifVar (Ref ub,R.mkinterval 0 depth 0)
| ED.Term.Lam _ as t ->
begin match R.eta_contract_flex ~depth t with
| None -> Obj.magic t
| Some t -> look ~depth t
end
| x -> Obj.magic x
let kool = function
| UnifVar(Ref ub,args) -> ED.Term.AppUVar(ub,0,args)
| UnifVar(Arg _,_) -> assert false
| x -> Obj.magic x
[@@ inline]
let mkConst n = let module R = (val !r) in R.mkConst n
let mkLam = ED.Term.mkLam
let mkApp = ED.Term.mkApp
let mkCons = ED.Term.mkCons
let mkNil = ED.Term.mkNil
let mkDiscard = ED.Term.mkDiscard
let mkBuiltin = ED.Term.mkBuiltin
let mkCData = ED.Term.mkCData
let mkAppL x l = let module R = (val !r) in R.mkAppL x l
let mkGlobal i =
if i >= 0 then Util.anomaly "mkGlobal: got a bound variable";
mkConst i
let mkBound i =
if i < 0 then Util.anomaly "mkBound: got a global constant";
mkConst i
let cmp_builtin i j = i - j
module Constants = struct
let declare_global_symbol = ED.Global_symbols.declare_global_symbol
let show c = ED.Constants.show c
let eqc = ED.Global_symbols.eqc
let orc = ED.Global_symbols.orc
let andc = ED.Global_symbols.andc
let rimplc = ED.Global_symbols.rimplc
let pic = ED.Global_symbols.pic
let sigmac = ED.Global_symbols.sigmac
let implc = ED.Global_symbols.implc
let cutc = ED.Global_symbols.cutc
let ctypec = ED.Global_symbols.ctypec
let spillc = ED.Global_symbols.spillc
module Map = ED.Constants.Map
module Set = ED.Constants.Set
end
let of_term x = x
let of_hyp x = x
let of_hyps x = x
type hyp = Data.hyp = {
hdepth : int;
hsrc : term
}
type hyps = hyp list
type suspended_goal = ED.suspended_goal = {
context : hyps;
goal : int * term
}
let constraints l =
let module R = (val !r) in let open R in
Util.map_filter (fun x -> get_suspended_goal x.ED.kind) l
let no_constraints = []
let mkUnifVar handle ~args state =
match handle with
| Elpi.Ref ub -> ED.Term.mkAppUVar ub 0 args
| Elpi.Arg name -> Compiler.get_Arg state ~name ~args
type Conversion.extra_goal +=
| RawGoal = ED.Conversion.RawGoal
let f = ED.Conversion.extra_goals_postprocessing := f
end
module FlexibleData = struct
module Elpi = Elpi
module type Host = sig
type t
val compare : t -> t -> int
val pp : Format.formatter -> t -> unit
val show : t -> string
end
let uvmap_no = ref 0
module Map = functor(T : Host) -> struct
open Util
module H2E = Map.Make(T)
type t = {
h2e : Elpi.t H2E.t;
e2h_compile : T.t StrMap.t;
e2h_run : T.t IntMap.t
}
let empty = {
h2e = H2E.empty;
e2h_compile = StrMap.empty;
e2h_run = IntMap.empty
}
let add uv v { h2e; e2h_compile; e2h_run } =
let h2e = H2E.add v uv h2e in
match uv with
| Elpi.Ref ub ->
{ h2e; e2h_compile; e2h_run = IntMap.add (ED.uvar_id ub) v e2h_run }
| Arg s ->
{ h2e; e2h_run; e2h_compile = StrMap.add s v e2h_compile }
let elpi v { h2e } = H2E.find v h2e
let host handle { e2h_compile; e2h_run } =
match handle with
| Elpi.Ref ub -> IntMap.find (ED.uvar_id ub) e2h_run
| Arg s -> StrMap.find s e2h_compile
let remove_both handle v { h2e; e2h_compile; e2h_run } =
let h2e = H2E.remove v h2e in
match handle with
| Elpi.Ref ub ->
{ h2e; e2h_compile; e2h_run = IntMap.remove (ED.uvar_id ub) e2h_run }
| Arg s ->
{ h2e; e2h_run; e2h_compile = StrMap.remove s e2h_compile }
let remove_elpi k m =
let v = host k m in
remove_both k v m
let remove_host v m =
let handle = elpi v m in
remove_both handle v m
let filter f { h2e; e2h_compile; e2h_run } =
let e2h_compile = StrMap.filter (fun n v -> f v (H2E.find v h2e)) e2h_compile in
let e2h_run = IntMap.filter (fun ub v -> f v (H2E.find v h2e)) e2h_run in
let h2e = H2E.filter f h2e in
{ h2e; e2h_compile; e2h_run }
let fold f { h2e } acc =
let module R = (val !r) in let open R in
let get_val = function
| Elpi.Ref { ED.Term.contents = ub }
when ub != ED.dummy ->
Some (deref_head ~depth:0 ub)
| Elpi.Ref _ -> None
| Elpi.Arg _ -> None in
H2E.fold (fun k uk acc -> f k uk (get_val uk) acc) h2e acc
let uvn = incr uvmap_no; !uvmap_no
let pp fmt (m : t) =
let pp k uv _ () =
Format.fprintf fmt "@[<h>%a@ <-> %a@]@ " T.pp k Elpi.pp uv
in
Format.fprintf fmt "@[<v>";
fold pp m ();
Format.fprintf fmt "@]"
;;
let show m = Format.asprintf "%a" pp m
let uvmap = ED.State.declare ~name:(Printf.sprintf "elpi:uvm:%d" uvn) ~pp
~clause_compilation_is_over:(fun x -> empty)
~goal_compilation_begins:(fun x -> x)
~goal_compilation_is_over:(fun ~args { h2e; e2h_compile; e2h_run } ->
let h2e = H2E.map (Elpi.compilation_is_over ~args) h2e in
let e2h_run =
StrMap.fold (fun k v m ->
IntMap.add (ED.uvar_id @@ StrMap.find k args) v m) e2h_compile IntMap.empty in
Some { h2e; e2h_compile = StrMap.empty; e2h_run })
~compilation_is_over:(fun x -> Some x)
~execution_is_over:(fun x -> Some x)
~init:(fun () -> empty)
end
module type Show = Util.Show
let uvar = {
Conversion.ty = Conversion.TyName "uvar";
pp_doc = (fun fmt () -> Format.fprintf fmt "Unification variable, as the uvar keyword");
pp = (fun fmt (k,_) -> Format.fprintf fmt "%a" Elpi.pp k);
embed = (fun ~depth s (k,args) -> s, RawData.mkUnifVar k ~args s, []);
readback = (fun ~depth state t ->
match RawData.look ~depth t with
| RawData.UnifVar(k,args) ->
state, (k,args), []
| _ -> raise (Conversion.TypeErr (TyName "uvar",depth,t)));
}
end
module AlgebraicData = struct
include ED.BuiltInPredicate.ADT
type name = string
type doc = string
let declare x =
let module R = (val !r) in
ED.BuiltInPredicate.ADT.adt
~look:R.deref_head
~mkinterval:R.mkinterval
~mkConst:R.mkConst
~alloc:FlexibleData.Elpi.make
~mkUnifVar:RawData.mkUnifVar x
end
module BuiltInPredicate = struct
include ED.BuiltInPredicate
exception No_clause = ED.No_clause
let mkData x = Data x
let ioargC a = let open ContextualConversion in { a with
pp = (fun fmt -> function Data x -> a.pp fmt x | NoData -> Format.fprintf fmt "_");
embed = (fun ~depth hyps csts state -> function
| Data x -> a.embed ~depth hyps csts state x
| NoData -> assert false);
readback = (fun ~depth hyps csts state t ->
let module R = (val !r) in let open R in
let rec aux t =
match deref_head ~depth t with
| ED.Term.Arg _ | ED.Term.AppArg _ -> assert false
| ED.Term.UVar _ | ED.Term.AppUVar _
| ED.Term.Discard -> state, NoData, []
| ED.Term.Lam _ ->
begin match R.eta_contract_flex ~depth t with
| None -> state, NoData, []
| Some t -> aux t
end
| _ -> let state, x, gls = a.readback ~depth hyps csts state t in
state, mkData x, gls
in
aux t);
}
let ioarg a =
let open ContextualConversion in
!< (ioargC (!> a))
let ioargC_flex a = let open ContextualConversion in { a with
pp = (fun fmt -> function Data x -> a.pp fmt x | NoData -> Format.fprintf fmt "_");
embed = (fun ~depth hyps csts state -> function
| Data x -> a.embed ~depth hyps csts state x
| NoData -> assert false);
readback = (fun ~depth hyps csts state t ->
let module R = (val !r) in let open R in
match deref_head ~depth t with
| ED.Term.Arg _ | ED.Term.AppArg _ -> assert false
| ED.Term.Discard -> state, NoData, []
| _ -> let state, x, gls = a.readback ~depth hyps csts state t in
state, mkData x, gls);
}
let ioarg_flex a =
let open ContextualConversion in
!< (ioargC_flex (!> a))
let ioarg_any = let open Conversion in { BuiltInData.any with
pp = (fun fmt -> function
| Data x -> BuiltInData.any.pp fmt x
| NoData -> Format.fprintf fmt "_");
embed = (fun ~depth state -> function
| Data x -> state, x, []
| NoData -> assert false);
readback = (fun ~depth state t ->
let module R = (val !r) in
match R.deref_head ~depth t with
| ED.Term.Discard -> state, NoData, []
| _ -> state, Data t, []);
}
module Notation = struct
let (!:) x = (), Some x
let (+!) a b = a, Some b
let (?:) x = (), x
let (+?) a b = a, b
end
end
module BuiltIn = struct
include ED.BuiltInPredicate
let declare ~file_name l = file_name, l
let document_fmt fmt (_,l) =
ED.BuiltInPredicate.document fmt l
let document_file ?(="") (name,l) =
let oc = open_out name in
let fmt = Format.formatter_of_out_channel oc in
Format.fprintf fmt "%s%!" header;
ED.BuiltInPredicate.document fmt l;
Format.pp_print_flush fmt ();
close_out oc
end
module Query = struct
type name = string
type 'f arguments = 'f ED.Query.arguments =
| N : unit arguments
| D : 'a Conversion.t * 'a * 'x arguments -> 'x arguments
| Q : 'a Conversion.t * name * 'x arguments -> ('a * 'x) arguments
type 'x t = Query of { predicate : name; arguments : 'x arguments }
let compile p loc (Query { predicate; arguments }) =
let p, predicate = Compiler.lookup_query_predicate p predicate in
let q = ED.Query.Query{ predicate; arguments } in
Compiler.query_of_data p loc q
end
module State = struct
include ED.State
let declare ~name ~pp ~init ~start =
declare ~name ~pp ~init
~clause_compilation_is_over:(fun x -> x)
~goal_compilation_begins:(fun x -> start x)
~goal_compilation_is_over:(fun ~args:_ x -> Some x)
~compilation_is_over:(fun x -> Some x)
~execution_is_over:(fun x -> Some x)
end
module RawQuery = struct
let mk_Arg state ~name ~args =
if ED.State.get ED.while_compiling state then
Compiler.mk_Arg state ~name ~args
else
Util.anomaly "The API RawQuery.mk_Arg can only be used at compile time"
let is_Arg = Compiler.is_Arg
let compile = Compiler.query_of_term
end
module Quotation = struct
include Compiler
let declare_backtick ~name f =
Compiler.CustomFunctorCompilation.declare_backtick_compilation name
(fun s x -> f s (EA.Func.show x))
let declare_singlequote ~name f =
Compiler.CustomFunctorCompilation.declare_singlequote_compilation name
(fun s x -> f s (EA.Func.show x))
let term_at ~depth s x = Compiler.term_of_ast ~depth s x
let quote_syntax_runtime s q =
let module R = (val !r) in
Compiler.quote_syntax (`Runtime R.mkConst) s q
let quote_syntax_compiletime s q =
let s, l, t = Compiler.quote_syntax `Compiletime s q in
s, l, t
end
module Utils = struct
let lp_list_to_list ~depth t =
let module R = (val !r) in let open R in
lp_list_to_list ~depth t
let list_to_lp_list tl =
let module R = (val !r) in let open R in
list_to_lp_list tl
let get_assignment = function
| Elpi.Arg _ -> assert false
| Elpi.Ref { ED.contents = t } ->
let module R = (val !r) in
if t == ED.dummy then None
else Some t
let move ~from ~to_ t =
let module R = (val !r) in let open R in
hmove ~from ~to_ ?avoid:None t
let beta ~depth t args =
let module R = (val !r) in let open R in
deref_appuv ~from:depth ~to_:depth ?avoid:None args t
let error = Util.error
let type_error = Util.type_error
let anomaly = Util.anomaly
let warn = Util.warn
let clause_of_term ?name ?graft ~depth loc term =
let open EA in
let module Data = ED.Term in
let module R = (val !r) in let open R in
let rec aux d ctx t =
match deref_head ~depth:d t with
| Data.Const i when i >= 0 && i < depth ->
error "program_of_term: the term is not closed"
| Data.Const i when i < 0 ->
Term.mkCon (ED.Constants.show i)
| Data.Const i -> Util.IntMap.find i ctx
| Data.Lam t ->
let s = "x" ^ string_of_int d in
let ctx = Util.IntMap.add d (Term.mkCon s) ctx in
Term.mkLam s (aux (d+1) ctx t)
| Data.App(c,x,xs) ->
let c = aux d ctx (R.mkConst c) in
let x = aux d ctx x in
let xs = List.map (aux d ctx) xs in
Term.mkApp loc (c :: x :: xs)
| (Data.Arg _ | Data.AppArg _) -> assert false
| Data.Cons(hd,tl) ->
let hd = aux d ctx hd in
let tl = aux d ctx tl in
Term.mkSeq [hd;tl]
| Data.Nil -> Term.mkNil
| Data.Builtin(c,xs) ->
let c = Term.mkCon (ED.Constants.show c) in
let xs = List.map (aux d ctx) xs in
Term.mkApp loc (c :: xs)
| Data.CData x -> Term.mkC x
| (Data.UVar _ | Data.AppUVar _) ->
error "program_of_term: the term contains uvars"
| Data.Discard -> Term.mkCon "_"
in
let attributes =
(match name with Some x -> [Name x] | None -> []) @
(match graft with
| Some (`After,x) -> [After x]
| Some (`Before,x) -> [Before x]
| None -> []) in
[Program.Clause {
Clause.loc = loc;
attributes;
body = aux depth Util.IntMap.empty term;
}]
let map_acc = BuiltInData.map_acc
module type Show = Util.Show
module type Show1 = Util.Show1
module Map = Util.Map
module Set = Util.Set
module IntSet = Util.IntSet
module LocSet : Util.Set.S with type elt = Ast.Loc.t = Util.Set.Make(Ast.Loc)
end
module RawPp = struct
let term depth fmt t =
let module R = (val !r) in let open R in
Pp.uppterm depth [] 0 ED.empty_env fmt t
let constraints f c =
let module R = (val !r) in let open R in
Util.pplist ~boxed:true (pp_stuck_goal ?pp_ctx:None) "" f c
let list = Util.pplist
module Debug = struct
let term depth fmt t =
let module R = (val !r) in let open R in
Pp.ppterm depth [] 0 ED.empty_env fmt t
let show_term = ED.show_term
end
end