Source file spilling.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
open Elpi_util.Util
open Compiler_data
module C = Constants
open ScopedTerm
type spill = { vars_names : string const list; expr : t }
type spills = spill list
let args_missing_to_prop ~type_abbrevs x =
let ty = TypeAssignment.deref x in
let rec aux = function
| TypeAssignment.Prop _ -> Some (List.rev extra)
| TypeAssignment.Arr (_,Elpi_parser.Ast.Structured.NotVariadic, ty, t) as arrow -> aux ((TypeAssignment.create ty,TypeAssignment.create arrow) :: extra) t
| TypeAssignment.Arr (_,Elpi_parser.Ast.Structured.Variadic, _, t) -> aux extra t
| TypeAssignment.UVar r when MutableOnce.is_set r -> aux extra (TypeAssignment.deref r)
| TypeAssignment.App(c,x,xs) when F.Map.mem c type_abbrevs ->
let t = TypeAssignment.apply (fst @@ F.Map.find c type_abbrevs) (x::xs) in
aux extra t
| TypeAssignment.Cons c when F.Map.mem c type_abbrevs ->
let t = TypeAssignment.apply (fst @@ F.Map.find c type_abbrevs) [] in
aux extra t
| _ -> None
in
aux [] ty
let eat ~type_abbrevs args ty =
let ty = TypeAssignment.deref ty in
let rec aux args ty =
match args with
| [] -> ty
| _ :: args as orig_args ->
match ty with
| TypeAssignment.Arr (_,Elpi_parser.Ast.Structured.Variadic, _, t) -> if args = [] then aux args t else ty
| TypeAssignment.Arr (_,Elpi_parser.Ast.Structured.NotVariadic, _, t) -> aux args t
| TypeAssignment.UVar r when MutableOnce.is_set r -> aux orig_args (TypeAssignment.deref r)
| TypeAssignment.App(c,x,xs) when F.Map.mem c type_abbrevs ->
let t = TypeAssignment.apply (fst @@ F.Map.find c type_abbrevs) (x::xs) in
aux orig_args t
| TypeAssignment.Cons c when F.Map.mem c type_abbrevs ->
let t = TypeAssignment.apply (fst @@ F.Map.find c type_abbrevs) [] in
aux orig_args t
| _ -> anomaly ("eat args: " ^ TypeAssignment.(show @@ Val ty))
in
TypeAssignment.create @@ aux args ty
let is_prop ~type_abbrevs x =
match args_missing_to_prop ~type_abbrevs x with
| Some n -> List.length n = 0
| None -> false
let mk_global ~types ~loc f l =
let s = Symbol.make_builtin f in
let f_ty = TypingEnv.(resolve_symbol s types).ty |> (fun x -> TypeAssignment.apply x l) |> TypeAssignment.create in
{ scope = Scope.mkResolvedGlobal types s; name = f; ty = f_ty; loc }
let pif_w_name_ty ~types ({ ty; loc } : 'a const) : Scope.t const =
mk_global ~types ~loc F.pif [TypeAssignment.deref ty]
let pif_ty ~types (ty : string const) = (pif_w_name_ty ~types ty).ty
let pif_arg_ty ~types ty =
match TypeAssignment.deref @@ pif_ty ~types ty with
| TypeAssignment.Arr(_,_,x,_) -> TypeAssignment.create x
| _ -> assert false
let mk_loc ~loc ~ty it = { ty; it; loc }
let add_spilled ~types (l : spill list) t =
if l = [] then t
else
List.fold_right
(fun { expr; vars_names } t ->
vars_names
|> List.fold_left (fun t (v : _ const) ->
mk_loc ~loc:t.loc ~ty:t.ty
@@ App (mk_global ~loc:v.loc ~types F.sigmaf [TypeAssignment.deref v.ty],
[mk_loc ~loc:t.loc ~ty:TypeAssignment.(create (Arr (MRef (MutableOnce.make F.dummyname), NotVariadic,deref v.ty,deref t.ty)))
@@ Lam(Some v,None,t)
])
)
(mk_loc ~loc:t.loc ~ty:TypeAssignment.(create (Prop Elpi_parser.Ast.Structured.Function))
@@ App (mk_global ~types ~loc:t.loc F.andf [], [expr; t ])))
l t
let mkApp n l = App (n, l)
let is_symbol ~types b = function
| Scope.Global { resolved_to = x } ->
begin match SymbolResolver.resolved_to types x with
| Some s -> TypingEnv.same_symbol types s b
| _ -> anomaly "unresolved global symbol"
end
| _ -> false
let app ~type_abbrevs ~types t args =
if args = [] then t
else
let rec aux { loc; it; ty } : t =
let it, ty =
match it with
| App (({ scope = s } as n), xs) when is_symbol ~types Elpi_runtime.Data.Global_symbols.and_ s -> mkApp n (aux_last xs), eat ~type_abbrevs args ty
| Impl (b, l, s, t) -> Impl (b,l, s, aux t), ty
| App (n, xs) -> mkApp n (xs @ args), eat ~type_abbrevs args ty
| Var(c,l) -> Var (c,l @ args), eat ~type_abbrevs args ty
| Discard | Lam (_, _, _) | CData _ | Spill (_, _) | Cast (_, _) -> assert false
in
mk_loc ~loc ~ty it
and aux_last = function [] -> assert false | [ x ] -> [ aux x ] | x :: xs -> x :: aux_last xs in
aux t
let mk_spilled ~loc ~ty args n : (string const * t) list =
let rec aux n ty =
if n = 0 then []
else
let f =
incr args;
F.from_string (Printf.sprintf "%%spill%d" !args)
in
let built_tm ty =
let hd_ty = TypeAssignment.create ty in
mk_loc ~loc ~ty:hd_ty @@ App (mk_bound_const ~lang:elpi_language f ~loc ~ty:hd_ty,[])
in
match ty with
| TypeAssignment.Arr (_, _, l, r) -> (mk_const ~scope:elpi_language f ~loc ~ty:(TypeAssignment.create l), built_tm l) :: aux (n-1) r
| UVar r when MutableOnce.is_set r -> aux n (TypeAssignment.deref r)
| _ -> anomaly "type abbreviations and spilling, not implemented"
in
aux n ty
let rec bc ctx t =
match t with
| Lam (None, o, t) -> Lam (None, o, bc_loc ctx t)
| Lam (Some { scope = l; name = c; loc; ty = tya }, o, t) when List.mem (c, l) ctx ->
let d = fresh () in
bc ctx (Lam (Some { scope = l; name = d; loc; ty = tya }, o, rename_loc l c d t))
| Lam ((Some { scope = l; name = c } as abs), o, t) -> Lam (abs, o, bc_loc ((c, l) :: ctx) t)
| Impl (b, bl, t1, t2) -> Impl (b, bl, bc_loc ctx t1, bc_loc ctx t2)
| Cast (t, ty) -> Cast (bc_loc ctx t, ty)
| Spill (t, i) -> Spill (bc_loc ctx t, i)
| App (hd, xs) -> App (hd, List.map (bc_loc ctx) xs)
| Discard | Var _ | CData _ -> t
and bc_loc ctx { loc; ty; it } = { loc; ty; it = bc ctx it }
let not_from_pi (_,b) = b = false
let from_pi (_,b) = b = true
let rec apply what v = function
| App ({ scope = Bound l; name = f; ty = hd_ty } as n, xs) when l = elpi_language && List.exists (fun f' -> F.equal f f'.name) what ->
App ({ n with ty = TypeAssignment.(create @@ Arr (MRef (MutableOnce.make F.dummyname), NotVariadic, deref v.ty,deref hd_ty))}, v :: xs)
| App(f,xs) -> App(f, smart_map (apply_loc what v) xs)
| Lam(n,o,t) -> Lam(n,o,apply_loc what v t)
| Impl(d,l,t1,t2) -> Impl(d,l,apply_loc what v t1,apply_loc what v t2)
| Cast(t,e) -> Cast(apply_loc what v t,e)
| Spill _ -> assert false
| CData _ | Discard | Var _ as x -> x
and apply_loc what v { loc; ty; it } = { loc; ty; it = apply what v it }
let apply_loc what v t =
let t = apply_loc what v t in
t
let rec spill ~type_abbrevs ~types ?( = 0) args ({ loc; ty; it } as t) : spills * t list =
match it with
| CData _ | Discard -> ([], [ t ])
| Cast (t, _) -> spill ~types ~type_abbrevs args t
| Spill (t, { contents = NoInfo }) -> assert false
| Spill (t, { contents = Phantom _ }) -> assert false
| Spill (t, { contents = Main n }) ->
let ty = t.ty in
let vars_names, vars =
List.split
@@ mk_spilled ~loc ~ty:(TypeAssignment.deref ty)
args n
in
let t = app ~type_abbrevs ~types t vars in
let spills, t = spill1 ~types ~type_abbrevs ~extra:(List.length vars_names) args t in
(spills @ [ { vars_names; expr = t } ], vars)
| App (({ scope = s } as hd), [{ it = Lam (Some v, o, t); loc = tloc; ty = tty }]) when is_symbol ~types Elpi_runtime.Data.Global_symbols.pi s ->
let spilled, t = spill1 ~types ~type_abbrevs args t in
([], [ { loc; ty; it = App (hd, [{ it = Lam (Some v, o, add_spilled ~types spilled t); loc = tloc; ty = tty }]) } ])
| App (({ scope = s } as hd), [{ it = Lam (Some v, o, t); loc = tloc; ty = tty }]) when is_symbol ~types Elpi_runtime.Data.Global_symbols.sigma s ->
let spilled, t = spill1 ~types ~type_abbrevs args t in
([], [ { loc; ty; it = App (hd, [{ it = Lam (Some v, o, add_spilled ~types spilled t); loc = tloc; ty = tty }]) } ])
| App (({ scope = s; ty = hty } as hd), xs) ->
let mk_eta_var () = incr args; F.from_string @@ Format.asprintf "%%eta%d" !args in
let last = if is_symbol ~types Elpi_runtime.Data.Global_symbols.and_ s then List.length xs else -1 in
let spills, args =
List.split @@ List.mapi (fun i -> spill ~types ~type_abbrevs ~extra:(if i = last then extra else 0) args) xs
in
let args = List.flatten args in
let spilled = List.flatten spills in
let it = App (hd, args) in
let ty = eat ~type_abbrevs args hty in
if spilled = [] then
(spilled, [ { it; loc; ty } ])
else
begin match args_missing_to_prop ~type_abbrevs ty with
| None -> (spilled, [ { it; loc; ty } ])
| Some missing ->
let rec mk_lam l t =
match l with
| [] -> t
| (v,ty) :: vs -> {loc;ty;it = Lam(Some v,None,mk_lam vs t)} in
let missing_vars = List.map (fun (ty,arrow) ->
let v = mk_eta_var () in
(mk_const ~scope:elpi_language v ~loc ~ty, arrow)) missing in
let missing_args = List.map (fun (v,_) -> { ty; loc; it = App(bind_const v, []) }) missing_vars in
let t = { it; loc; ty } in
let t = mk_lam missing_vars @@ add_spilled ~types spilled (app ~type_abbrevs ~types t missing_args) in
([], [ t ])
end
| Impl (R2L, l, head, premise) ->
let spills_head, head = spill1 ~types ~type_abbrevs args head in
if spills_head <> [] then error ~loc "Spilling in the head of a clause is not supported";
let spilled, premise = spill1 ~types ~type_abbrevs args premise in
let it = Impl (R2L, l, head, premise) in
([], [ add_spilled ~types spilled { it; loc; ty } ])
| Impl ((L2R|L2RBang) as kind, l, premise, conclusion) ->
let spills_premise, premise = spill1 ~types ~type_abbrevs args premise in
if spills_premise <> [] then error ~loc "Spilling in the premise of an implication is not supported";
let spilled, conclusion = spill1 ~types ~type_abbrevs ~extra args conclusion in
let it = Impl (kind, l, premise, conclusion) in
([], [ add_spilled ~types spilled { it; loc; ty } ])
| Lam (None, o, t) ->
let spills, t = spill1 ~types ~type_abbrevs args t in
(spills, [ { it = Lam (None, o, t); loc; ty } ])
| Lam ((Some c as abs), o, t) ->
let spills, t = spill1 ~types ~type_abbrevs args t in
let t, spills =
let { scope = s; name = f; ty } = c in
map_acc
(fun t { vars_names; expr } ->
let bc = mk_loc ~loc ~ty (App(bind_const c,[])) in
( apply_loc vars_names bc t,
{
vars_names = List.map (fun (v : _ const) ->
{ v with ty = TypeAssignment.(create @@ Arr (MRef (MutableOnce.make F.dummyname), NotVariadic, deref ty,deref v.ty)) }) vars_names;
expr =
mk_loc ~loc ~ty:(pif_ty ~types c) @@
App (pif_w_name_ty ~types c, [mk_loc ~loc ~ty:(pif_arg_ty ~types c) @@ Lam (abs, o, apply_loc vars_names bc expr)]);
} ))
t spills
in
(spills, [ { it = Lam (abs, o, t); loc; ty } ])
| Var ({ ty = cty } as c, xs) ->
let spills, args = List.split @@ List.map (spill ~types ~type_abbrevs args) xs in
let args = List.flatten args in
let spilled = List.flatten spills in
let it = Var (c, args) in
let ty = eat ~type_abbrevs args cty in
if is_prop ~type_abbrevs ty then ([], [ add_spilled ~types spilled { it; loc; ty } ]) else (spilled, [ { it; loc; ty } ])
and spill1 ~type_abbrevs ~types ? args ({ loc } as t) =
let spills, t = spill ~types ~type_abbrevs ?extra args t in
let t = if List.length t <> 1 then error ~loc "bad spilling" else List.hd t in
(spills, t)
let rec remove_top_sigmas ~types t =
match t.it with
| App ({ scope = s }, [_]) when is_symbol ~types Elpi_runtime.Data.Global_symbols.pi s -> t
| App ({ scope = s } as n,xs) when is_symbol ~types Elpi_runtime.Data.Global_symbols.and_ s ->
{ t with it = App(n, smart_map (remove_top_sigmas ~types) xs) }
| Impl(x,l,t1,t2) -> { t with it = Impl(x,l,t1,remove_top_sigmas ~types t2) }
| App ({ scope = s }, [{ it = Lam(Some { name = vn; ty = vty; loc=vloc },_,{ loc;ty }); } as b]) when is_symbol ~types Elpi_runtime.Data.Global_symbols.sigma s ->
remove_top_sigmas ~types { loc; ty; it = ScopedTerm.beta b [{ ty = vty; loc; it = Var(mk_bound_const ~lang:elpi_var vn ~loc:vloc ~ty:vty,[]) }] }
| _ -> t
let spill ~type_abbrevs ~types t =
let args = ref 0 in
let s, t = spill ~type_abbrevs ~types args t in
let t = List.map (remove_top_sigmas ~types) t in
(s, t)
let main ~type_abbrevs ~types t =
let spills, ts = spill ~type_abbrevs ~types (bc_loc [] t) in
let t =
match (spills, ts) with
| [], [ t ] -> t
| [], _ -> assert false
| _ :: _, _ -> error ~loc:t.loc "Cannot place spilled expression"
in
t