Source file type.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
open Catala_utils
open Definitions
type t = typ
type var = naked_typ Bindlib.var
let equal_tlit l1 l2 = l1 = l2
let compare_tlit l1 l2 = Stdlib.compare l1 l2
let rec equal ty1 ty2 =
match Mark.remove ty1, Mark.remove ty2 with
| TLit l1, TLit l2 -> equal_tlit l1 l2
| TTuple tys1, TTuple tys2 -> equal_list tys1 tys2
| TStruct n1, TStruct n2 -> StructName.equal n1 n2
| TEnum n1, TEnum n2 -> EnumName.equal n1 n2
| TOption t1, TOption t2 -> equal t1 t2
| TArrow (t1, t1'), TArrow (t2, t2') -> equal_list t1 t2 && equal t1' t2'
| TArray t1, TArray t2 -> equal t1 t2
| TDefault t1, TDefault t2 -> equal t1 t2
| TVar tv1, TVar tv2 -> Bindlib.eq_vars tv1 tv2
| TForAll tb1, TForAll tb2 -> Bindlib.eq_mbinder equal tb1 tb2
| TClosureEnv, TClosureEnv -> true
| ( ( TLit _ | TTuple _ | TStruct _ | TEnum _ | TOption _ | TArrow _
| TArray _ | TDefault _ | TForAll _ | TVar _ | TClosureEnv ),
_ ) ->
false
and equal_list tys1 tys2 =
try List.for_all2 equal tys1 tys2 with Invalid_argument _ -> false
let rec compare (ty1 : t) (ty2 : t) =
match Mark.remove ty1, Mark.remove ty2 with
| TLit l1, TLit l2 -> compare_tlit l1 l2
| TTuple tys1, TTuple tys2 -> List.compare compare tys1 tys2
| TStruct n1, TStruct n2 -> StructName.compare n1 n2
| TEnum en1, TEnum en2 -> EnumName.compare en1 en2
| TOption t1, TOption t2 -> compare t1 t2
| TArrow (a1, b1), TArrow (a2, b2) -> (
match List.compare compare a1 a2 with 0 -> compare b1 b2 | n -> n)
| TArray t1, TArray t2 -> compare t1 t2
| TVar tv1, TVar tv2 -> Bindlib.compare_vars tv1 tv2
| TForAll tb1, TForAll tb2 ->
let _, ty1, ty2 = Bindlib.unmbind2 tb1 tb2 in
compare ty1 ty2
| TClosureEnv, TClosureEnv -> 0
| TLit _, _ -> -1
| _, TLit _ -> 1
| TTuple _, _ -> -1
| _, TTuple _ -> 1
| TStruct _, _ -> -1
| _, TStruct _ -> 1
| TEnum _, _ -> -1
| _, TEnum _ -> 1
| TOption _, _ -> -1
| _, TOption _ -> 1
| TArrow _, _ -> -1
| _, TArrow _ -> 1
| TArray _, _ -> -1
| _, TArray _ -> 1
| TDefault _, _ -> -1
| _, TDefault _ -> 1
| TVar _, _ -> -1
| _, TVar _ -> 1
| TForAll _, _ -> -1
| _, TForAll _ -> 1
let format = Print.typ
module Var = struct
module Arg = struct
type t = var
let equal = Bindlib.eq_vars
let compare = Bindlib.compare_vars
let hash = Bindlib.hash_var
let format = Print.tvar
end
include Arg
module Set = Set.Make (Arg)
module Map = Map.Make (Arg)
module Hashtbl = Hashtbl.Make (Arg)
let fresh () = Bindlib.new_var (fun v -> TVar v) "'1"
end
let shallow_fold f ty acc =
let lfold x acc = List.fold_left (fun acc x -> f x acc) acc x in
Mark.fold
(function
| TLit _ | TStruct _ | TEnum _ | TClosureEnv | TVar _ -> acc
| TTuple tl -> lfold tl acc
| TOption ty | TArray ty | TDefault ty -> f ty acc
| TArrow (tl, ty) -> lfold tl (f ty acc)
| TForAll tb ->
let _v, ty = Bindlib.unmbind tb in
f ty acc)
ty
let rec free_vars (ty : t) =
match Mark.remove ty with
| TVar v -> Var.Set.singleton v
| TForAll tb ->
let vs, ty = Bindlib.unmbind tb in
Array.fold_left (fun set v -> Var.Set.remove v set) (free_vars ty) vs
| _ ->
shallow_fold
(fun ty acc -> Var.Set.union acc (free_vars ty))
ty Var.Set.empty
let rec free_vars_pos = function
| TVar v, pos -> Var.Map.singleton v pos
| TForAll tb, _ ->
let vs, ty = Bindlib.unmbind tb in
Array.fold_left (fun map v -> Var.Map.remove v map) (free_vars_pos ty) vs
| ty ->
shallow_fold
(fun ty acc -> Var.Map.union (fun _ _ x -> Some x) acc (free_vars_pos ty))
ty Var.Map.empty
let rec unquantify = function
| TForAll tb, _ ->
let _v, ty = Bindlib.unmbind tb in
unquantify ty
| ty -> ty
let rec unbind = function
| TForAll bnd, _ ->
let vars1, t = Bindlib.unmbind bnd in
let vars2, t = unbind t in
Array.to_list vars1 @ vars2, t
| t -> [], t
let forall vars t pos =
TForAll (Bindlib.unbox (Bindlib.bind_mvar (Array.of_list vars) t)), pos
let fresh_var pos = TVar (Var.fresh ()), pos
let any = fresh_var
let universal pos =
let v = Var.fresh () in
let tb =
Bindlib.bind_mvar [| v |]
(Bindlib.box_apply (fun v -> v, pos) (Bindlib.box_var v))
in
TForAll (Bindlib.unbox tb), pos
let is_universal = function
| TForAll tb, _ -> (
match Bindlib.unmbind tb with
| [| v1 |], (TVar v2, _) -> Var.equal v1 v2
| _ -> false)
| _ -> false
let rec unifiable (ty1 : t) (ty2 : t) =
match ty1, ty2 with
| (TVar _, _), (TVar _, _) -> true
| (TVar tv, _), ty | ty, (TVar tv, _) -> not (Var.Set.mem tv (free_vars ty))
| (TForAll tb, _), ty | ty, (TForAll tb, _) ->
let _, ty1 = Bindlib.unmbind tb in
unifiable ty1 ty
| (TLit l1, _), (TLit l2, _) -> equal_tlit l1 l2
| (TTuple tys1, _), (TTuple tys2, _) -> unifiable_list tys1 tys2
| (TStruct n1, _), (TStruct n2, _) -> StructName.equal n1 n2
| (TEnum n1, _), (TEnum n2, _) -> EnumName.equal n1 n2
| (TOption t1, _), (TOption t2, _) -> unifiable t1 t2
| (TArrow (t1, t1'), _), (TArrow (t2, t2'), _) ->
unifiable_list t1 t2 && unifiable t1' t2'
| (TArray t1, _), (TArray t2, _) -> unifiable t1 t2
| (TDefault t1, _), (TDefault t2, _) -> unifiable t1 t2
| (TClosureEnv, _), (TClosureEnv, _) -> true
| ( ( ( TLit _ | TTuple _ | TStruct _ | TEnum _ | TOption _ | TArrow _
| TArray _ | TDefault _ | TClosureEnv ),
_ ),
_ ) ->
false
and unifiable_list tys1 tys2 =
try List.for_all2 unifiable tys1 tys2 with Invalid_argument _ -> false
let map : (t -> t Bindlib.box) -> t -> t Bindlib.box =
fun f ty ->
let nty, m = ty in
let ( @& ) f bty = Bindlib.box_apply (fun ty -> f ty, m) bty in
match nty with
| TLit l -> (fun l -> TLit l) @& Bindlib.box l
| TTuple tl -> (fun tl -> TTuple tl) @& Bindlib.box_list (List.map f tl)
| TStruct n -> (fun n -> TStruct n) @& Bindlib.box n
| TEnum n -> (fun n -> TEnum n) @& Bindlib.box n
| TOption ty -> (fun ty -> TOption ty) @& f ty
| TArrow (tl, ty) ->
Bindlib.box_apply2
(fun tl ty -> TArrow (tl, ty), m)
(Bindlib.box_list (List.map f tl))
(f ty)
| TArray ty -> (fun ty -> TArray ty) @& f ty
| TDefault ty -> (fun ty -> TDefault ty) @& f ty
| TVar tv -> Bindlib.box_apply (fun v -> v, m) (Bindlib.box_var tv)
| TForAll tb ->
let tv, ty = Bindlib.unmbind tb in
(fun tb -> TForAll tb) @& Bindlib.bind_mvar tv (f ty)
| TClosureEnv -> Bindlib.box (TClosureEnv, m)
let rec rebox ty = map rebox ty
let hash ~strip (ty : t) =
let open Hash.Op in
let rec aux ctx (ty : t) =
match Mark.remove ty with
| TLit l -> !`TLit % !(l : typ_lit)
| TTuple tl -> List.fold_left (fun acc ty -> acc % aux ctx ty) !`TTuple tl
| TStruct n -> !`TStruct % StructName.hash ~strip n
| TEnum n -> !`TEnum % EnumName.hash ~strip n
| TOption ty -> !`TOption % aux ctx ty
| TArrow (tl, ty) ->
!`TArrow % List.fold_left (fun acc ty -> acc % aux ctx ty) (aux ctx ty) tl
| TArray ty -> !`TArray % aux ctx ty
| TDefault ty -> !`TDefault % aux ctx ty
| TVar tv ->
!`TVar % !(Bindlib.name_of tv)
| TForAll tb ->
let _, ty, ctx = Bindlib.unmbind_in ctx tb in
!`TForAll % aux ctx ty
| TClosureEnv -> !`TClosureEnv
in
aux Bindlib.empty_ctxt ty
let rec has_arrow decl_ctx (ty : t) =
match Mark.remove ty with
| TArrow _ -> true
| TLit _ -> false
| TVar _ | TForAll _ | TClosureEnv -> invalid_arg "Type.has_arrow"
| TTuple tl -> List.exists (has_arrow decl_ctx) tl
| TStruct n ->
StructField.Map.exists
(fun _ -> has_arrow decl_ctx)
(StructName.Map.find n decl_ctx.ctx_structs)
| TEnum n ->
EnumConstructor.Map.exists
(fun _ -> has_arrow decl_ctx)
(EnumName.Map.find n decl_ctx.ctx_enums)
| TOption ty | TArray ty | TDefault ty -> has_arrow decl_ctx ty
let rec arrow_return = function TArrow (_, b), _ -> arrow_return b | t -> t
module Map = Map.Make (struct
type nonrec t = t
let compare = compare
let format = format
end)