Source file typer.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
open Camlp4.PreCast
open Syntax
open Ast
open Sarek_types
open Debug
let rec basic_check l current_type expected_type loc =
if expected_type <> current_type && not (is_unknown current_type) then
( assert (not debug); raise (TypeError (expected_type, current_type, loc)) );
List.iter (fun e -> typer e expected_type) l
and elt_check body t l =
if body.t <> t && not (is_unknown body.t) then
(assert (not debug); raise (TypeError (t, body.t, l)) )
else
update_type body t;
and equal_sum acc l1 l2 =
match l1,l2 with
| [],[] -> acc
| t1::q1,t2::q2 ->
equal_sum (acc && t1 = t2) q1 q2
| _ -> false
and equal_rec acc lct1 lid1 lct2 lid2 =
my_eprintf "Equalrec\n";
match lct1,lid1,lct2,lid2 with
| c1::qc1,i1::qi1,
c2::qc2,i2::qi2 ->
equal_rec (acc && (string_of_ctyp c1) = (string_of_ctyp c2) && (string_of_ident i1) = (string_of_ident i2)) qc1 qi1 qc2 qi2
| [],[],[],[] -> acc
| _ -> false
and check_custom c1 c2 =
match c1,c2 with
| KSum l1, KSum l2 -> equal_sum true l1 l2
| KRecord (c1,i1,_) , KRecord (c2,i2,_) -> equal_rec true c1 i1 c2 i2
| KRecord _ , KSum _
| KSum _ , KRecord _ -> false
and equal_types t1 t2 =
match t1,t2 with
| Custom (x,_), Custom (y,_) -> check_custom x y
| Custom (_,_), _ | _, Custom (_,_) -> false
| _ ->
if t1 = t2 then
true
else
match t1,t2 with
| TArr (t1_, _), TArr (t2_, _) ->
equal_types t1_ t2_
| _ -> false
and check t1 t2 l =
if (not (equal_types t1 t2)) && (not (is_unknown t1)) && (not (is_unknown t2)) then
(assert (not debug); raise (TypeError (t1, t2, l)) )
and gen_app_from_constr t cstr =
match t.typ with
| KRecord _ -> assert false
| KSum l ->
begin
let rec aux = function
| (c,Some s)::q ->
let aux2 = function
| <:ctyp< int >> | <:ctyp< int32 >> -> TInt32
| <:ctyp< float >> | <:ctyp< float32 >> -> TFloat32
| a -> Custom (t.typ, string_of_ctyp a)
in
TApp ((aux2 s),
( Custom (t.typ,t.name)))
| _::q -> aux q
| [] -> assert false
in aux l
end
and typer_id body t tt f =
my_eprintf (Printf.sprintf"(*ID %s ### typ %s *)\n%!" (k_expr_to_string body.e) (ktyp_to_string t)) ;
match body.e with
| Id (l, s) ->
(try
(let var = Hashtbl.find !current_args (string_of_ident s) in
my_eprintf ((string_of_ident s)^ " of type " ^(ktyp_to_string t)^"\n");
if not (is_unknown t) then
if is_unknown var.var_type then
(var.var_type <- t;
retype := true;
update_type body t)
else
check var.var_type t l;
tt := var.var_type)
with Not_found ->
try
let c_const = Hashtbl.find !intrinsics_const (string_of_ident s) in
if t = TUnknown then
( update_type body c_const.typ;)
else if t <> c_const.typ then
(assert (not debug); raise (TypeError (c_const.typ, t, l)))
with Not_found ->
try ignore(Hashtbl.find !intrinsics_fun (string_of_ident s) )
with Not_found ->
try
let cstr = Hashtbl.find !constructors (string_of_ident s) in
my_eprintf ("Found a constructor : "^(string_of_ident s)
^" of type "^cstr.name^" with "
^(string_of_int cstr.nb_args)^" arguments\n");
tt :=
if cstr.nb_args <> 0 then
gen_app_from_constr cstr s
else
Custom (cstr.typ, cstr.name);
with
| _ -> f ())
| _ -> assert false
and typer body t =
my_eprintf (Printf.sprintf"(* %s ############# typ %s *)\n%!" (k_expr_to_string body.e) (ktyp_to_string t)) ;
(match body.e with
| Id (l, s) ->
let tt = ref t in
typer_id body t tt
(fun () ->
raise (Unbound_value (string_of_ident s, l)));
update_type body !tt
| ArrSet (l, e1, e2) ->
check t TUnit l;
typer e1 e2.t;
typer e2 e1.t;
update_type body TUnit
| ArrGet (l, e1, e2) ->
typer e1 (TArr (t, Shared));
typer e2 TInt32;
update_type body (
match e1.t with
| TArr (tt,_) -> tt
| _ -> TUnknown)
| VecSet (l, e1, e2) ->
check t TUnit l;
typer e1 e2.t;
typer e2 e1.t;
update_type body TUnit
| VecGet (l, e1, e2) ->
typer e1 (TVec t);
typer e2 TInt32;
update_type body (
match e1.t with
| TVec tt -> tt
| _ -> TUnknown)
| Seq (l, e1, e2) ->
typer e1 TUnit;
typer e2 t;
update_type body e2.t
| Int32 (l,s) ->
elt_check body TInt32 l
| Int64 (l,s) ->
elt_check body TInt64 l
| Float32 (l,s) ->
elt_check body TFloat32 l
| Float64 (l,s) ->
elt_check body TFloat64 l
| Bind (_loc, var,y, z, is_mutable) ->
(match var.e with
| Id (_loc,s) ->
(match y.e with
| Fun (_loc,stri,tt,funv,lifted) ->
my_eprintf ("ADDDD: "^(string_of_ident s)^"\n%!");
Hashtbl.add !local_fun (string_of_ident s)
(funv, (<:str_item<let $id:s$ = $stri$>>), lifted);
update_type y tt;
| _ ->
try
let v = Hashtbl.find !current_args (string_of_ident s)
in
typer y v.var_type;
with
| Not_found ->
typer y TUnknown;
(incr arg_idx;
my_eprintf ("AD: "^(string_of_ident s)^" of type "^ktyp_to_string y.t ^" \n%!");
retype := true;
Hashtbl.add !current_args (string_of_ident s)
{n = !arg_idx; var_type = y.t;
is_mutable = is_mutable;
read_only = false;
write_only = false;
is_global = false;}
)
);
| _ -> assert false
);
update_type var y.t;
typer z t;
update_type body z.t;
| Plus32 (l,e1,e2) | Min32 (l,e1,e2)
| Mul32 (l,e1,e2) | Div32 (l,e1,e2)
| Mod (l, e1, e2) ->
basic_check [e1;e2] t TInt32 l;
update_type body TInt32;
| PlusF32 (l,e1,e2) | MinF32 (l,e1,e2) | MulF32 (l,e1,e2) | DivF32 (l,e1,e2) ->
basic_check [e1;e2] t TFloat32 l;
update_type body TFloat32;
| If (l, e1, e2) ->
typer e1 TBool;
basic_check [e1] e1.t TBool l;
typer e2 TUnit;
update_type body TUnit
| Ife (l, e1, e2, e3) ->
typer e1 TBool;
basic_check [e1] e1.t TBool l;
typer e2 e3.t;
typer e3 e2.t;
if e2.t <> e3.t then
( assert (not debug); raise (TypeError (e2.t, e3.t, l)) );
update_type body e2.t
| Noop ->
if t <> TUnit && t <> TUnknown then
assert false
else
update_type body TUnit
| Open (l, m_ident, e2) ->
let rec _open = function
| IdAcc (l,a,b) -> _open a; _open b
| IdUid (l,s) -> open_module s l
| _ -> assert false
and _close = function
| IdAcc (l,a,b) -> _close a; _close b
| IdUid (l,s) -> close_module s
| _ -> assert false
in
_open m_ident;
typer e2 t;
_close m_ident;
update_type body e2.t;
| While (l, cond, loop_body) ->
typer cond TBool;
basic_check [cond] cond.t TBool l;
basic_check [loop_body] t TUnit l;
typer cond TBool;
typer loop_body TUnit;
update_type body TUnit;
| DoLoop (l, var, y, z, loop_body) ->
(match var.e with
| Id (_loc,s) ->
(incr arg_idx;
Hashtbl.add !current_args (string_of_ident s)
{n = !arg_idx; var_type = TInt32;
is_mutable = false;
read_only = false;
write_only = false;
is_global = false;}
)
| _ -> assert false
);
typer var TInt32;
typer y TInt32;
typer z TInt32;
typer loop_body TUnit;
update_type body TUnit;
| App (l, e1, e2) ->
let t = typer_app e1 e2 t in
update_type body t
| BoolEq32 (l, e1, e2)
| BoolLt32 (l, e1, e2)
| BoolLtE32 (l, e1, e2)
| BoolGt32 (l, e1, e2)
| BoolGtE32 (l, e1, e2) ->
typer e1 TInt32;
typer e2 TInt32;
update_type body TBool
| BoolEqF32 (l, e1, e2)
| BoolLtF32 (l, e1, e2)
| BoolLtEF32 (l, e1, e2)
| BoolGtF32 (l, e1, e2)
| BoolGtEF32 (l, e1, e2) ->
typer e1 TFloat32;
typer e2 TFloat32;
update_type body TBool
| BoolOr (l,e1,e2)
| BoolAnd (l,e1,e2) ->
typer e1 TBool;
typer e2 TBool;
update_type body TBool
| Ref (l, ({e = Id (ll, s); _} as e)) ->
let body = e in
let tt = ref t in
typer_id e t tt (fun () ->
(incr arg_idx;
Hashtbl.add !current_args (string_of_ident s) {n = -1; var_type = t;
is_mutable = false;
read_only = true;
write_only = false;
is_global = true;};
tt := t;);
update_type body !tt);
update_type body e.t;
decr unknown;
| Acc (l, e1, e2) ->
typer e2 TUnknown;
typer e1 TUnknown;
typer e2 e1.t;
typer e1 e2.t;
update_type body TUnit
| Match (l,e,mc) ->
let get_patt_typ = function
| Constr (s,of_) ->
let cstr =
my_eprintf ("--------- type case : "^s^"\n");
try
Hashtbl.find !constructors s
with | _ -> failwith "error in pattern matching"
in
(Custom (cstr.typ,cstr.name))
in
let type_patt f=
let t = get_patt_typ f in
typer e t;
check t e.t l;
in
(match mc with
| (_loc,(Constr (s,of_) as p), ee)::_ ->
(type_patt p;
)
| _ -> failwith "No match cases in patern matching");
let rec aux = function
| (ll,(Constr (s,of_) as p),ee)::q ->
check (get_patt_typ p) e.t ll;
(match of_ with
|Some id ->
incr arg_idx;
Hashtbl.replace !current_args (string_of_ident id)
{n = !arg_idx; var_type = ktyp_of_typ (TyId(ll,IdLid(ll,type_of_patt p)));
is_mutable = false;
read_only = false;
write_only = false;
is_global = false;};
typer ee t;
Hashtbl.remove !current_args (string_of_ident id);
| None -> typer ee t;
);
check ee.t t l;
aux q
| [] -> ();
in
aux (mc);
let ttt =
let (_,_,e) = List.hd mc in
e.t in
update_type body ttt
| Record(l,fl) ->
let seed : string list =
let (_loc, id, _) = (List.hd fl) in
try
(Hashtbl.find !rec_fields (string_of_ident id)).ctyps
with
| _ ->
(assert (not debug);
raise (FieldError (string_of_ident id, "\"\"", _loc)))
in
let rec_typ =
try
Hashtbl.find custom_types (List.hd seed)
with
| _ ->
assert false;
in
let field_typ_list =
match rec_typ with
| KRecord (typ, id, _) ->
List.combine (List.map string_of_ident id) typ
| _ -> assert false
in
let t =
let rec aux (acc:string list) (flds : field list) : string list =
match flds with
| (_loc, id, e)::q ->
let rec_fld : recrd_field =
try
typer e (ktyp_of_typ (List.assoc (string_of_ident id) field_typ_list));
Hashtbl.find !rec_fields (string_of_ident id)
with
| Not_found->
(assert (not debug);
raise (FieldError (string_of_ident id, List.hd acc, _loc)))
in
aux
(let rec aux2 (res:string list) (acc_:string list) (flds_:string list) =
match acc_,flds_ with
| (t1::q1),(t2::q2) ->
if t1 = t2 then
aux2 (t1::acc_) acc q2
else
aux2 (t1::acc_) q1 (t2::q2)
| _,[] -> res
| [],q ->
aux2 res acc q
in aux2 [] acc rec_fld.ctyps) q
| [] -> acc
in
let r : string list =
aux seed fl
in List.hd r
in
let _loc = Loc.ghost in
update_type body (ktyp_of_typ (TyId(_loc,IdLid(_loc,t))));
my_eprintf ("record_type : "^(ktyp_to_string body.t^"\n"))
| RecSet (l, e1, e2) ->
check t TUnit l;
typer e1 e2.t;
typer e2 e1.t;
update_type body TUnit
| RecGet (_loc, e1, e2) ->
let t =
try Hashtbl.find !rec_fields (string_of_ident e2)
with
| Not_found ->
( match e1.e with
| Id(_,i) ->
assert (not debug);
raise (FieldError ((string_of_ident i), (string_of_ident e2), _loc))
| _ -> assert false
)
in
typer e1 (Custom (Hashtbl.find custom_types t.name, t.name));
let tt =
match e1.t with
| TUnknown | TVec TUnknown | TArr (TUnknown,_) -> TUnknown;
| Custom (KRecord (l1,l2,_),n) ->
let rec aux = function
|t1::q1,t2::q2 ->
if (string_of_ident t2) = (string_of_ident e2) then
(my_eprintf (string_of_ctyp t1);
ktyp_of_typ t1)
else
(my_eprintf ("N : "^(string_of_ctyp t1));
aux (q1,q2))
| [],[] ->
(assert (not debug);
raise (FieldError (string_of_ident e2, n, _loc)))
| _ -> assert false
in
aux (l1,l2)
| _ ->
my_eprintf (ktyp_to_string e1.t);
assert false in
update_type body tt
| False _ | True _ ->
update_type body TBool
| BoolNot (_loc,e1) ->
typer e1 TBool;
check e1.t TBool _loc;
update_type body TBool;
| BoolEq (_loc,e1,e2) ->
typer e1 TInt32;
typer e2 e1.t;
check e1.t e2.t _loc;
update_type body TBool;
| ModuleAccess (l,m,e) ->
open_module m l;
typer e t;
close_module m;
update_type body e.t;
| TypeConstraint (l, x, tc) ->
typer x tc;
check t tc l;
update_type body tc;
| Nat _ ->
update_type body t
| Pragma (_,lopt, expr) ->
typer expr t
| _ -> my_eprintf ((k_expr_to_string body.e)^"\n"); assert false);
if is_unknown body.t then
(my_eprintf (("UNKNOWN : "^k_expr_to_string body.e)^"\n");
incr unknown
)
and is_special e1 e2 t : bool*ktyp=
match e1.e, e2.e with
| Id (_,<:ident< create_array>>),_ ->
typer e2 TInt32;
(true,t)
| (App (_, {t=_; e= App (_,{t=_; e=Id(_,<:ident< map>>); loc=_}, [f]); loc=_}, [a]),_) ->
let fun_typ =
(match f.e with
| Id (_,s) ->
let (f,_,lifted) = Hashtbl.find !local_fun (string_of_ident s) in
my_eprintf ("fun_type : "^ktyp_to_string f.typ^"\n");
f.typ
| _ -> f.t
) in
(
match fun_typ with
| TApp (x, y) ->
typer a (TVec x);
(match y with
| TApp (ty, _)
| ty ->
typer e2 (TVec ty));
| _ -> assert false
);
(true, TUnit)
| (App (_, {t=_; e= App (_,{t=_; e=Id(_,<:ident< reduce>>); loc=_}, [f]); loc=loc}, [a]),_) ->
let fun_typ =
(match f.e with
| Id (_,s) ->
let (f,_,lifted) = Hashtbl.find !local_fun (string_of_ident s) in
my_eprintf ("fun_type : "^ktyp_to_string f.typ^"\n");
f.typ
| _ -> f.t
) in
(
match fun_typ with
| TApp (x, y) ->
typer a (TVec x);
(match y with
| TApp (ty, tz) ->
check x ty loc;
typer e2 (TVec tz)
| _ -> assert false);
| _ -> my_eprintf (("UNKNOWN : "^k_expr_to_string f.e)^"\n") ;assert false
);
(true , TUnit)
| e,_ ->
my_eprintf "Starting NOT MAAAAAP\n";
my_eprintf (("UNKNOWN : "^k_expr_to_string e)^"\n");
(false, TUnknown)
and typer_app e1 (e2 : kexpr list) t =
my_eprintf (("typer app : "^k_expr_to_string e1.e)^" of expected type "^ktyp_to_string t^"\n");
let (is_spec,spec_type) = is_special e1 (List.hd e2) t in
if is_spec then
(
spec_type
)
else
let typ, loc =
let rec aux e1 =
match e1.e with
| Id (_l, s) ->
(try (Hashtbl.find !intrinsics_fun (string_of_ident s)).typ , _l
with
| Not_found ->
(try (Hashtbl.find !global_fun (string_of_ident s)).typ , _l
with
| Not_found ->
(try
let (f,_,lifted) =
(Hashtbl.find !local_fun (string_of_ident s))
in
f.typ,_l
with
| Not_found ->
(
try
let cstr = Hashtbl.find !constructors (string_of_ident s) in
my_eprintf ("App : Found a constructor : "^(string_of_ident s)
^" of type "^cstr.name^" with "
^(string_of_int cstr.nb_args)^" arguments\n");
(if cstr.nb_args <> 0 then
gen_app_from_constr cstr s
else
Custom (cstr.typ, cstr.name)),_l
with
| Not_found ->
raise (Unbound_value (string_of_ident s,_l) ))
)))
| ModuleAccess (_l, s, e) ->
open_module s _l;
let typ, loc = aux e in
close_module s;
typ, loc
| _ -> typer e1 t; e1.t, e1.loc
in
aux e1
in
let ret = ref TUnit in
let aux2 typ expr =
match typ, expr with
| TApp (t1, t2), e::[] -> typer e t1; ret := t2
| _ , [] -> assert false
| _ -> assert false
in
let aux typ1 e =
match typ1,e with
| (TApp (t1, (TApp (_,_) as t2)),
App ( l , e1, (t::(tt::qq) as e2))) ->
aux2 t2 e2;
typer e1 t1;
if e1.t <> t1 then ( assert (not debug); raise (TypeError (t1, e1.t, l)) );
update_type e1 t1;
| ((TApp (TApp(t1, t3) as t, t2)),
(App (l, e1, e2::[]))) ->
assert (t3 = t2);
ret := t2;
typer e2 t1;
if e2.t <> t1 && e2.t <> TUnknown then ( raise (TypeError (t1, e2.t, l)) );
update_type e2 t1;
update_type e1 t;
| (TApp(t1, t2), App(_, _, e2::[] ) )->
my_eprintf (Printf.sprintf"(* typ %s +++-> %s *)\n%!" (k_expr_to_string e2.e) (ktyp_to_string e2.t)) ;
ret := e2.t;
typer e2 t1;
| (t1 , App(_, _, e2::[] ) )->
my_eprintf (Printf.sprintf"(* typ %s +++-> %s *)\n%!" (k_expr_to_string e2.e) (ktyp_to_string e2.t)) ;
ret := t1;
typer e2 t1;
| _ -> assert (not debug);
in aux typ (App (loc,e1,e2));
let aux typ =
match typ with
| TApp(t1,t2) -> t2
| t -> t
in
my_eprintf (Printf.sprintf"(* >>>>>>>>>>>> typ %s *)\n%!" (ktyp_to_string typ)) ;
let t = aux typ in
my_eprintf (Printf.sprintf"(* <<<<<<<<<<<< typ %s *)\n%!" (ktyp_to_string t)) ;
t