Source file ast_utils.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
open Ast
let rec map_instr f instr =
let desc =
match instr.desc with
| Block { label; typ; block } ->
Block
{
label;
typ;
block = { block with desc = List.map (map_instr f) block.desc };
}
| Loop { label; typ; block } ->
Loop
{
label;
typ;
block = { block with desc = List.map (map_instr f) block.desc };
}
| While { label; cond; step; block } ->
While
{
label;
cond = map_instr f cond;
step = Option.map (map_instr f) step;
block = { block with desc = List.map (map_instr f) block.desc };
}
| If { label; typ; cond; if_block; else_block } ->
If
{
label;
typ;
cond = map_instr f cond;
if_block =
{ if_block with desc = List.map (map_instr f) if_block.desc };
else_block =
Option.map
(fun b -> { b with desc = List.map (map_instr f) b.desc })
else_block;
}
| TryTable { label; typ; block; catches } ->
TryTable
{
label;
typ;
block = { block with desc = List.map (map_instr f) block.desc };
catches;
}
| Try { label; typ; block; catches; catch_all } ->
Try
{
label;
typ;
block = { block with desc = List.map (map_instr f) block.desc };
catches =
List.map
(fun (tag, block) ->
(tag, { block with desc = List.map (map_instr f) block.desc }))
catches;
catch_all =
Option.map
(fun b -> { b with desc = List.map (map_instr f) b.desc })
catch_all;
}
| TryCatch { label; typ; block; arms } ->
TryCatch
{
label;
typ;
block = { block with desc = List.map (map_instr f) block.desc };
arms =
List.map
(fun a ->
{
a with
arm_body =
{
a.arm_body with
desc = List.map (map_instr f) a.arm_body.desc;
};
})
arms;
}
| ( Unreachable | Nop | Hole | Null | Get _ | Path _ | Char _ | String _
| Int _ | Float _ | StructDefault _ ) as x ->
x
| Set (idx, op, v) -> Set (idx, op, map_instr f v)
| Tee (idx, v) -> Tee (idx, map_instr f v)
| Labelled (l, v) -> Labelled (l, map_instr f v)
| Call (target, args) ->
Call (map_instr f target, List.map (map_instr f) args)
| TailCall (target, args) ->
TailCall (map_instr f target, List.map (map_instr f) args)
| Cast (v, t) -> Cast (map_instr f v, t)
| CastDesc (v, t, d) -> CastDesc (map_instr f v, t, map_instr f d)
| Test (v, t) -> Test (map_instr f v, t)
| NonNull v -> NonNull (map_instr f v)
| Struct (idx, fields) ->
Struct
(idx, List.map (fun (i, v) -> (i, Option.map (map_instr f) v)) fields)
| StructDesc (d, fields) ->
StructDesc
( map_instr f d,
List.map (fun (i, v) -> (i, Option.map (map_instr f) v)) fields )
| StructDefaultDesc d -> StructDefaultDesc (map_instr f d)
| StructGet (v, idx) -> StructGet (map_instr f v, idx)
| GetDescriptor v -> GetDescriptor (map_instr f v)
| StructSet (v, idx, w) -> StructSet (map_instr f v, idx, map_instr f w)
| Array (idx, len, init) -> Array (idx, map_instr f len, map_instr f init)
| ArrayDefault (idx, len) -> ArrayDefault (idx, map_instr f len)
| ArrayFixed (idx, elems) -> ArrayFixed (idx, List.map (map_instr f) elems)
| ArraySegment (idx, seg, off, len) ->
ArraySegment (idx, seg, map_instr f off, map_instr f len)
| ArrayGet (arr, idx) -> ArrayGet (map_instr f arr, map_instr f idx)
| ArraySet (arr, idx, val_) ->
ArraySet (map_instr f arr, map_instr f idx, map_instr f val_)
| BinOp (op, l, r) -> BinOp (op, map_instr f l, map_instr f r)
| UnOp (op, v) -> UnOp (op, map_instr f v)
| Let (bindings, body) -> Let (bindings, Option.map (map_instr f) body)
| Br (label, v) -> Br (label, Option.map (map_instr f) v)
| Br_if (label, v) -> Br_if (label, map_instr f v)
| Hinted (h, i) -> Hinted (h, map_instr f i)
| On (i, h) -> On (map_instr f i, h)
| Br_table (labels, v) -> Br_table (labels, map_instr f v)
| Dispatch { index; cases; default; arms } ->
Dispatch
{
index = map_instr f index;
cases;
default;
arms =
List.map
(fun (l, body) ->
(l, { body with desc = List.map (map_instr f) body.desc }))
arms;
}
| Match { scrutinee; arms; default } ->
Match
{
scrutinee = map_instr f scrutinee;
arms =
List.map
(fun (pat, body) ->
(pat, { body with desc = List.map (map_instr f) body.desc }))
arms;
default =
{ default with desc = List.map (map_instr f) default.desc };
}
| Br_on_null (label, v) -> Br_on_null (label, map_instr f v)
| Br_on_non_null (label, v) -> Br_on_non_null (label, map_instr f v)
| Br_on_cast (label, t, v) -> Br_on_cast (label, t, map_instr f v)
| Br_on_cast_fail (label, t, v) -> Br_on_cast_fail (label, t, map_instr f v)
| Br_on_cast_desc_eq (label, t, v, d) ->
Br_on_cast_desc_eq (label, t, map_instr f v, map_instr f d)
| Br_on_cast_desc_eq_fail (label, t, v, d) ->
Br_on_cast_desc_eq_fail (label, t, map_instr f v, map_instr f d)
| Throw (idx, args) -> Throw (idx, List.map (map_instr f) args)
| ThrowRef v -> ThrowRef (map_instr f v)
| ContNew (ct, v) -> ContNew (ct, map_instr f v)
| ContBind (src, dst, args) ->
ContBind (src, dst, List.map (map_instr f) args)
| Suspend (tag, args) -> Suspend (tag, List.map (map_instr f) args)
| Resume (ct, handlers, args) ->
Resume (ct, handlers, List.map (map_instr f) args)
| ResumeThrow (ct, tag, handlers, args) ->
ResumeThrow (ct, tag, handlers, List.map (map_instr f) args)
| ResumeThrowRef (ct, handlers, args) ->
ResumeThrowRef (ct, handlers, List.map (map_instr f) args)
| Switch (ct, tag, args) -> Switch (ct, tag, List.map (map_instr f) args)
| Return v -> Return (Option.map (map_instr f) v)
| Sequence instrs -> Sequence (List.map (map_instr f) instrs)
| Select (cond, t, e) ->
Select (map_instr f cond, map_instr f t, map_instr f e)
| If_annotation { cond; then_body; else_body } ->
If_annotation
{
cond;
then_body =
{ then_body with desc = List.map (map_instr f) then_body.desc };
else_body =
Option.map
(fun b -> { b with desc = List.map (map_instr f) b.desc })
else_body;
}
in
{ desc; info = f instr.info }
let sub_instrs (i : (_ Ast.instr_desc, _) Ast.annotated) =
match i.desc with
| Block { block; _ } | Loop { block; _ } | TryTable { block; _ } -> block.desc
| While { cond; step; block; _ } -> (cond :: Option.to_list step) @ block.desc
| If { cond; if_block; else_block; _ } ->
(cond :: if_block.desc)
@ Option.fold ~none:[] ~some:(fun b -> b.desc) else_block
| Try { block; catches; catch_all; _ } ->
block.desc
@ List.concat_map (fun (_, b) -> b.desc) catches
@ Option.fold ~none:[] ~some:(fun b -> b.desc) catch_all
| TryCatch { block; arms; _ } ->
block.desc @ List.concat_map (fun a -> a.arm_body.desc) arms
| If_annotation { then_body; else_body; _ } -> (
then_body.desc @ match else_body with Some b -> b.desc | None -> [])
| Sequence l | ArrayFixed (_, l) -> l
| Dispatch { index; arms; _ } ->
index :: List.concat_map (fun (_, b) -> b.desc) arms
| Match { scrutinee; arms; default } ->
(scrutinee :: List.concat_map (fun (_, b) -> b.desc) arms) @ default.desc
| ContBind (_, _, l)
| Suspend (_, l)
| Resume (_, _, l)
| ResumeThrow (_, _, _, l)
| ResumeThrowRef (_, _, l)
| Switch (_, _, l)
| Throw (_, l) ->
l
| Call (a, l) | TailCall (a, l) -> a :: l
| Struct (_, l) -> List.filter_map snd l
| StructDesc (d, l) -> List.filter_map snd l @ [ d ]
| CastDesc (a, _, b)
| Br_on_cast_desc_eq (_, _, a, b)
| Br_on_cast_desc_eq_fail (_, _, a, b)
| BinOp (_, a, b)
| Array (_, a, b)
| ArraySegment (_, _, a, b)
| ArrayGet (a, b)
| StructSet (a, _, b) ->
[ a; b ]
| ArraySet (a, b, c) | Select (a, b, c) -> [ a; b; c ]
| Set (_, _, i)
| Tee (_, i)
| Labelled (_, i)
| Cast (i, _)
| Test (i, _)
| NonNull i
| UnOp (_, i)
| StructGet (i, _)
| GetDescriptor i
| StructDefaultDesc i
| ArrayDefault (_, i)
| Br_if (_, i)
| Hinted (_, i)
| On (i, _)
| Br_table (_, i)
| Br_on_null (_, i)
| Br_on_non_null (_, i)
| Br_on_cast (_, _, i)
| Br_on_cast_fail (_, _, i)
| ThrowRef i
| ContNew (_, i) ->
[ i ]
| Let (_, o) | Br (_, o) | Return o -> Option.to_list o
| Unreachable | Nop | Hole | Null | Get _ | Path _ | Char _ | String _ | Int _
| Float _ | StructDefault _ ->
[]
let rec iter_instr f i =
f i;
List.iter (iter_instr f) (sub_instrs i)
let lower_dispatch ~block_info ~index ~cases ~default ~arms =
let mk desc = { desc; info = block_info } in
let void = { params = [||]; results = [||] } in
let br = mk (Br_table (cases @ [ default ], index)) in
let rec build = function
| [ (c, _) ] ->
mk (Block { label = Some c; typ = void; block = no_loc [ br ] })
| (c, _) :: ((_, next_body) :: _ as rest) ->
mk
(Block
{
label = Some c;
typ = void;
block = no_loc (build rest :: next_body.desc);
})
| [] -> br
in
match List.rev arms with
| [] -> [ br ]
| (_, outer_body) :: _ as rev_arms -> build rev_arms :: outer_body.desc
let synthetic_loop_label = "#loop"
let lower_trycatch ~block_info ~join ~arm_labels ~typ ~block ~arms =
let mk desc = { desc; info = block_info } in
let catches =
List.map2
(fun l arm ->
match (arm.arm_tag, arm.arm_ref) with
| Some t, false -> Catch (t, l)
| Some t, true -> CatchRef (t, l)
| None, false -> CatchAll l
| None, true -> CatchAllRef l)
arm_labels arms
in
let trytable = mk (TryTable { label = None; typ; catches; block }) in
let inner =
if typ.results = [||] then [ trytable; mk (Br (join, None)) ]
else [ mk (Br (join, Some trytable)) ]
in
let rec wrap inner labels arms =
match (labels, arms) with
| [], [] -> inner
| l :: labels', arm :: arms' ->
let blk =
mk
(Block
{
label = Some l;
typ = { params = [||]; results = arm.arm_types };
block = no_loc inner;
})
in
wrap (blk :: arm.arm_body.desc) labels' arms'
| _ -> assert false
in
mk
(Block
{ label = Some join; typ; block = no_loc (wrap inner arm_labels arms) })
let lower_while ~block_info ~fresh_loop ~label ~cond ~step ~block =
let mk desc = { desc; info = block_info } in
let void = { params = [||]; results = [||] } in
let if_ cond body =
mk
(If
{
label = None;
typ = void;
cond;
if_block = no_loc body;
else_block = None;
})
in
match (step, label) with
| Some step, Some blk_l ->
let body_block =
mk (Block { label = Some blk_l; typ = void; block = no_loc block })
in
[
mk
(Loop
{
label = Some fresh_loop;
typ = void;
block =
no_loc
[ if_ cond [ body_block; step; mk (Br (fresh_loop, None)) ] ];
});
]
| _ ->
let l = Option.value label ~default:fresh_loop in
let tail = Option.to_list step @ [ mk (Br (l, None)) ] in
[
mk
(Loop
{
label = Some l;
typ = void;
block = no_loc [ if_ cond (block @ tail) ];
});
]
let lower_match ~block_info ~labels ~scrutinee ~arms ~default =
let mk desc = { desc; info = block_info } in
let void = { params = [||]; results = [||] } in
let res = function
| MatchCast (_, rt) -> { params = [||]; results = [| Ref rt |] }
| MatchNull -> void
in
let consume blk pat body =
match pat with
| MatchCast ((Some _ as bind), rt) ->
mk (Let ([ (bind, Some (Ref rt)) ], Some blk)) :: body
| MatchCast (None, _) -> mk (Let ([ (None, None) ], Some blk)) :: body
| MatchNull -> blk :: body
in
match arms with
| [] -> default.desc
| (p0, b0) :: rest_arms ->
let rec unsnoc = function
| [ x ] -> ([], x)
| x :: r ->
let init, last = unsnoc r in
(x :: init, last)
| [] -> assert false
in
let arm_labels, escape = unsnoc labels in
let l0, rest_labels =
match arm_labels with x :: r -> (x, r) | [] -> assert false
in
let chain =
List.fold_left2
(fun operand lbl (pat, _) ->
match pat with
| MatchCast (_, rt) -> mk (Br_on_cast (lbl, rt, operand))
| MatchNull -> mk (Br_on_null (lbl, operand)))
scrutinee arm_labels arms
in
let inner =
[ mk (Let ([ (None, None) ], Some chain)); mk (Br (escape, None)) ]
in
let block_l0 =
mk (Block { label = Some l0; typ = res p0; block = no_loc inner })
in
let rec wrap prev_block prev_pat prev_body labels arms =
match (labels, arms) with
| [], [] ->
mk
(Block
{
label = Some escape;
typ = void;
block = no_loc (consume prev_block prev_pat prev_body);
})
:: default.desc
| lbl :: labels', (pat, body) :: arms' ->
let blk =
mk
(Block
{
label = Some lbl;
typ = res pat;
block = no_loc (consume prev_block prev_pat prev_body);
})
in
wrap blk pat body.desc labels' arms'
| _ -> assert false
in
wrap block_l0 p0 b0.desc rest_labels rest_arms
let rec map_modulefield f field =
match field with
| Type t -> Type t
| Module_annotation a -> Module_annotation a
| Import { module_; decl } -> Import { module_; decl }
| Import_group { module_; decls } -> Import_group { module_; decls }
| Tag t -> Tag t
| Func ({ body = s, instrs; _ } as func) ->
Func { func with body = (s, List.map (map_instr f) instrs) }
| Global g -> Global { g with def = map_instr f g.def }
| Memory m ->
Memory
{
m with
data =
List.map (fun d -> { d with offset = map_instr f d.offset }) m.data;
}
| Data ({ mode; _ } as d) ->
Data
{
d with
mode =
(match mode with
| Passive -> Passive
| Active (mem, off) -> Active (mem, map_instr f off));
}
| Table ({ init; _ } as t) ->
Table { t with init = Option.map (map_instr f) init }
| Elem ({ mode; init; _ } as e) ->
Elem
{
e with
mode =
(match mode with
| EPassive -> EPassive
| EActive (tab, off) -> EActive (tab, map_instr f off));
init = List.map (map_instr f) init;
}
| Conditional { cond; then_fields; else_fields } ->
let map_fields b =
{
b with
desc =
List.map
(fun a -> { a with desc = map_modulefield f a.desc })
b.desc;
}
in
Conditional
{
cond;
then_fields = map_fields then_fields;
else_fields = Option.map map_fields else_fields;
}
let rec iter_fields f l =
List.iter
(fun field ->
f field;
match field.desc with
| Conditional { then_fields; else_fields; _ } ->
iter_fields f then_fields.desc;
Option.iter (fun b -> iter_fields f b.desc) else_fields
| _ -> ())
l
let iter_module_instr f m =
iter_fields
(fun field ->
let roots =
match field.desc with
| Func { body = _, instrs; _ } -> instrs
| Global { def; _ } -> [ def ]
| Memory { data; _ } -> List.map (fun d -> d.offset) data
| Data { mode = Active (_, off); _ } -> [ off ]
| Table { init; _ } -> Option.to_list init
| Elem { mode; init; _ } -> (
init
@ match mode with EActive (_, off) -> [ off ] | EPassive -> [])
| Data { mode = Passive; _ }
| Type _ | Tag _ | Import _ | Import_group _ | Module_annotation _
| Conditional _ ->
[]
in
List.iter (iter_instr f) roots)
m
type binop_kind = [ `Shift | `Arith | `Bitwise | `Comparison ]
let binop_kind : Ast.binop -> binop_kind = function
| Shl | Shr _ -> `Shift
| Add | Sub | Mul | Div _ | Rem _ -> `Arith
| And | Or | Xor -> `Bitwise
| Eq | Ne | Lt _ | Gt _ | Le _ | Ge _ -> `Comparison
let confusing_precedence (outer : binop_kind) (inner : binop_kind) =
match (outer, inner) with
| `Shift, `Arith | `Arith, `Shift -> true
| `Comparison, `Bitwise | `Bitwise, `Comparison -> true
| _ -> false
let import_name (decl : import_decl) =
let override =
List.find_map
(fun (k, v, _) ->
if k <> "import" then None
else
match v with
| Some { desc = String (_, s); info } -> Some { desc = s; info }
| _ -> None)
decl.attributes
in
Option.value override ~default:decl.id