Source file deadcode.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
open! Stdlib
let debug = Debug.find "deadcode"
let times = Debug.find "times"
let stats = Debug.find "stats"
let debug_stats = Debug.find "stats-debug"
open Code
type def =
| Expr of expr
| Var of Var.t
| Field_update of Var.t
let add_def defs x i =
let idx = Var.idx x in
defs.(idx) <- i :: defs.(idx)
type variable_uses = int array
type t =
{ blocks : block Addr.Map.t
; live : variable_uses
; defs : def list array
; reachable_blocks : BitSet.t
; pure_funs : Pure_fun.t
; mutable deleted_instrs : int
; mutable deleted_blocks : int
; mutable deleted_params : int
; mutable block_shortcut : int
}
let pure_expr pure_funs e = Pure_fun.pure_expr pure_funs e && Config.Flag.deadcode ()
let rec mark_var st x =
let x = Var.idx x in
st.live.(x) <- st.live.(x) + 1;
if st.live.(x) = 1 then List.iter st.defs.(x) ~f:(fun e -> mark_def st x e)
and mark_def st x d =
match d with
| Var y -> mark_var st y
| Field_update y ->
st.live.(x) <- st.live.(x) + 1;
mark_var st y
| Expr e -> if pure_expr st.pure_funs e then mark_expr st e
and mark_expr st e =
match e with
| Constant _ -> ()
| Apply { f; args; _ } ->
mark_var st f;
List.iter args ~f:(fun x -> mark_var st x)
| Block (_, a, _, _) -> Array.iter a ~f:(fun x -> mark_var st x)
| Field (x, _, _) -> mark_var st x
| Closure (_, (pc, _), _) -> mark_reachable st pc
| Special _ -> ()
| Prim (_, l) ->
List.iter l ~f:(fun x ->
match x with
| Pv x -> mark_var st x
| _ -> ())
and mark_cont_reachable st (pc, _param) = mark_reachable st pc
and mark_reachable st pc =
if not (BitSet.mem st.reachable_blocks pc)
then (
BitSet.set st.reachable_blocks pc;
let block = Addr.Map.find pc st.blocks in
List.iter block.body ~f:(fun i ->
match i with
| Let (_, Prim (Extern "caml_update_dummy", [ Pv x; Pv y ])) ->
if st.live.(Var.idx x) = 0
then
add_def st.defs x (Field_update y)
else (
mark_var st x;
mark_var st y)
| Let (_, e) -> if not (pure_expr st.pure_funs e) then mark_expr st e
| Event _ | Assign _ -> ()
| Set_field (x, _, _, y) -> (
match st.defs.(Var.idx x) with
| [ Expr (Block _) ] when st.live.(Var.idx x) = 0 ->
add_def st.defs x (Field_update y)
| _ ->
mark_var st x;
mark_var st y)
| Array_set (x, y, z) ->
mark_var st x;
mark_var st y;
mark_var st z
| Offset_ref (x, _) -> mark_var st x);
match block.branch with
| Return x | Raise (x, _) -> mark_var st x
| Stop -> ()
| Branch cont | Poptrap cont -> mark_cont_reachable st cont
| Cond (x, cont1, cont2) ->
mark_var st x;
mark_cont_reachable st cont1;
mark_cont_reachable st cont2
| Switch (x, a1) ->
mark_var st x;
Array.iter a1 ~f:(fun cont -> mark_cont_reachable st cont)
| Pushtrap (cont1, _, cont2) ->
mark_cont_reachable st cont1;
mark_cont_reachable st cont2)
let live_instr st i =
match i with
| Let (_, Prim (Extern "caml_update_dummy", [ Pv x; Pv _ ])) -> st.live.(Var.idx x) > 0
| Let (x, e) -> st.live.(Var.idx x) > 0 || not (pure_expr st.pure_funs e)
| Assign (x, _) | Set_field (x, _, _, _) -> st.live.(Var.idx x) > 0
| Event _ | Offset_ref _ | Array_set _ -> true
let rec filter_args st pl al =
match pl, al with
| x :: pl, y :: al ->
if st.live.(Var.idx x) > 0
then y :: filter_args st pl al
else (
st.deleted_params <- st.deleted_params + 1;
filter_args st pl al)
| [], [] -> []
| _ -> assert false
let filter_cont blocks st (pc, args) =
let params = (Addr.Map.find pc blocks).params in
pc, filter_args st params args
let filter_closure blocks st i =
match i with
| Let (x, Closure (l, cont, gloc)) ->
Let (x, Closure (l, filter_cont blocks st cont, gloc))
| _ -> i
let filter_live_last blocks st l =
match l with
| Return _ | Raise _ | Stop -> l
| Branch cont -> Branch (filter_cont blocks st cont)
| Cond (x, cont1, cont2) ->
Cond (x, filter_cont blocks st cont1, filter_cont blocks st cont2)
| Switch (x, a1) -> Switch (x, Array.map a1 ~f:(fun cont -> filter_cont blocks st cont))
| Pushtrap (cont1, x, cont2) ->
Pushtrap (filter_cont blocks st cont1, x, filter_cont blocks st cont2)
| Poptrap cont -> Poptrap (filter_cont blocks st cont)
let ref_count st i =
match i with
| Let (x, _) -> st.live.(Var.idx x)
| _ -> 0
let annot st pc xi =
if not (BitSet.mem st.reachable_blocks pc)
then "x"
else
match (xi : Code.Print.xinstr) with
| Last _ -> " "
| Instr i ->
let c = ref_count st i in
if c > 0 then Format.sprintf "%d" c else if live_instr st i then " " else "x"
let remove_unused_blocks' p =
let count = ref 0 in
let used = Code.used_blocks p in
let blocks =
Addr.Map.filter
(fun pc _ ->
let b = BitSet.mem used pc in
if not b then incr count;
b)
p.blocks
in
{ p with blocks }, !count
let remove_unused_blocks p =
let previous_p = p in
let t = Timer.make () in
let p, count = remove_unused_blocks' p in
if times () then Format.eprintf " dead block: %a@." Timer.print t;
if stats () then Format.eprintf "Stats - dead block: deleted %d@." count;
if debug_stats () then Code.check_updates ~name:"dead block" previous_p p ~updates:count;
p
let rec add_arg_dep defs params args =
match params, args with
| x :: params, y :: args ->
add_def defs x (Var y);
add_arg_dep defs params args
| [], [] -> ()
| _ -> assert false
let add_cont_dep blocks defs (pc, args) =
let block = Addr.Map.find pc blocks in
add_arg_dep defs block.params args
let empty_body b =
match b with
| [] | [ Event _ ] -> true
| _ -> false
let merge_blocks p =
let previous_p = p in
let t = Timer.make () in
let preds = Array.make p.free_pc 0 in
let assigned = ref Var.Set.empty in
let merged = ref 0 in
let subst =
let nv = Var.count () in
Array.init nv ~f:(fun i -> Var.of_idx i)
in
let () =
let mark_cont (pc', _) = preds.(pc') <- preds.(pc') + 1 in
Addr.Map.iter
(fun _ { body; branch; _ } ->
List.iter body ~f:(function
| Let (_, Closure (_, cont, _)) -> mark_cont cont
| Assign (x, _) -> assigned := Var.Set.add x !assigned
| _ -> ());
match branch with
| Branch cont -> mark_cont cont
| Cond (_, cont1, cont2) ->
mark_cont cont1;
mark_cont cont2
| Switch (_, a1) -> Array.iter ~f:mark_cont a1
| Pushtrap (cont1, _, cont2) ->
mark_cont cont1;
mark_cont cont2
| Poptrap cont -> mark_cont cont
| Return _ | Raise _ | Stop -> ())
p.blocks
in
let p =
let visited = BitSet.create' p.free_pc in
let rec process_branch pc blocks =
let block = Addr.Map.find pc blocks in
match block.branch with
| Branch (pc_, args) when preds.(pc_) = 1 ->
let to_inline = Addr.Map.find pc_ blocks in
if List.exists to_inline.params ~f:(fun x -> Var.Set.mem x !assigned)
then block, blocks
else (
incr merged;
let to_inline, blocks = process_branch pc_ blocks in
List.iter2 args to_inline.params ~f:(fun arg param ->
Code.Var.propagate_name param arg;
subst.(Code.Var.idx param) <- arg);
let block =
{ params = block.params
; branch = to_inline.branch
; body =
(let[@tail_mod_cons] rec aux = function
| [ (Event _ as ev) ] -> (
match to_inline.body with
| Event _ :: _ -> to_inline.body
| _ -> ev :: to_inline.body)
| [] -> to_inline.body
| x :: rest -> x :: aux rest
in
aux block.body)
}
in
let blocks = Addr.Map.remove pc_ blocks in
let blocks = Addr.Map.add pc block blocks in
block, blocks)
| _ -> block, blocks
in
let rec traverse pc blocks =
if BitSet.mem visited pc
then blocks
else
let () = BitSet.set visited pc in
let _block, blocks = process_branch pc blocks in
Code.fold_children blocks pc traverse blocks
in
let blocks =
Code.fold_closures p (fun _ _ (pc, _) _ blocks -> traverse pc blocks) p.blocks
in
{ p with blocks }
in
let p =
if !merged = 0
then p
else
let rec rename x =
let y = subst.(Code.Var.idx x) in
if Code.Var.equal x y then y else rename y
in
Subst.Excluding_Binders.program rename p
in
if times () then Format.eprintf " merge block: %a@." Timer.print t;
if stats () then Format.eprintf "Stats - merge block: merged %d@." !merged;
if debug_stats ()
then Code.check_updates ~name:"merge block" previous_p p ~updates:!merged;
p
let remove_empty_blocks st (p : Code.program) : Code.program =
let shortcuts = Addr.Hashtbl.create 16 in
let rec resolve_rec visited ((pc, args) as cont) =
if Addr.Set.mem pc visited
then cont
else
match Addr.Hashtbl.find_opt shortcuts pc with
| Some (params, cont) ->
let pc', args' = resolve_rec (Addr.Set.add pc visited) cont in
let s = Subst.from_map (Subst.build_mapping params args) in
pc', List.map ~f:s args'
| None -> cont
in
let resolve cont =
let cont' = resolve_rec Addr.Set.empty cont in
if not (Code.cont_equal cont cont') then st.block_shortcut <- st.block_shortcut + 1;
cont'
in
let register_block_if_empty pc block =
match block with
| { params; body; branch = Branch cont; _ } when empty_body body ->
let args =
List.fold_left
~f:(fun args x -> Var.Set.add x args)
~init:Var.Set.empty
(snd cont)
in
if List.for_all ~f:(fun x -> st.live.(Var.idx x) = 1 && Var.Set.mem x args) params
then Addr.Hashtbl.add shortcuts pc (params, cont)
| _ -> ()
in
Addr.Map.iter register_block_if_empty p.blocks;
let blocks =
Seq.fold_left
(fun blocks (pc, block) ->
if
match block.branch with
| Branch (pc, _) | Poptrap (pc, _) -> not (Addr.Hashtbl.mem shortcuts pc)
| Cond (_, (pc1, _), (pc2, _)) | Pushtrap ((pc1, _), _, (pc2, _)) ->
not (Addr.Hashtbl.mem shortcuts pc1 || Addr.Hashtbl.mem shortcuts pc2)
| Switch (_, a) ->
not (Array.exists ~f:(fun (pc, _) -> Addr.Hashtbl.mem shortcuts pc) a)
| Return _ | Raise _ | Stop -> true
then blocks
else
Addr.Map.add
pc
(match block with
| { body; branch = Cond (x, cont1, cont2); _ } ->
let cont1' = resolve cont1 in
let cont2' = resolve cont2 in
if Code.cont_equal cont1' cont2'
then (
let decr_usage x = st.live.(Var.idx x) <- st.live.(Var.idx x) - 1 in
decr_usage x;
let body =
List.fold_right
~f:(fun i rem ->
if live_instr st i
then
match i, rem with
| Event _, Event _ :: _ -> rem
| _ -> i :: rem
else (
Freevars.iter_instr_free_vars decr_usage i;
rem))
body
~init:[]
in
let block = { block with body; branch = Branch cont1' } in
register_block_if_empty pc block;
block)
else { block with branch = Cond (x, cont1', cont2') }
| _ ->
{ block with
branch =
(let branch = block.branch in
match branch with
| Branch cont -> Branch (resolve cont)
| Switch (x, a1) -> Switch (x, Array.map ~f:resolve a1)
| Pushtrap (cont1, x, cont2) ->
Pushtrap (resolve cont1, x, resolve cont2)
| Poptrap cont -> Poptrap (resolve cont)
| Cond _ | Return _ | Raise _ | Stop -> assert false)
})
blocks)
p.blocks
(Addr.Map.to_rev_seq p.blocks)
in
{ p with blocks }
let f pure_funs ({ blocks; _ } as p : Code.program) =
let previous_p = p in
Code.invariant p;
let t = Timer.make () in
let nv = Var.count () in
let defs = Array.make nv [] in
let live = Array.make nv 0 in
Addr.Map.iter
(fun _ block ->
List.iter block.body ~f:(fun i ->
match i with
| Let (x, e) -> add_def defs x (Expr e)
| Assign (x, y) -> add_def defs x (Var y)
| Event _ | Set_field (_, _, _, _) | Array_set (_, _, _) | Offset_ref (_, _) ->
());
match block.branch with
| Return _ | Raise _ | Stop -> ()
| Branch cont -> add_cont_dep blocks defs cont
| Cond (_, cont1, cont2) ->
add_cont_dep blocks defs cont1;
add_cont_dep blocks defs cont2
| Switch (_, a1) -> Array.iter a1 ~f:(fun cont -> add_cont_dep blocks defs cont)
| Pushtrap (cont, _, cont_h) ->
add_cont_dep blocks defs cont_h;
add_cont_dep blocks defs cont
| Poptrap cont -> add_cont_dep blocks defs cont)
blocks;
let st =
{ live
; defs
; blocks
; reachable_blocks = BitSet.create' p.free_pc
; pure_funs
; deleted_instrs = 0
; deleted_blocks = 0
; deleted_params = 0
; block_shortcut = 0
}
in
mark_reachable st p.start;
if debug () then Print.program Format.err_formatter (fun pc xi -> annot st pc xi) p;
let p =
let all_blocks = blocks in
let blocks =
Addr.Map.filter_map
(fun pc block ->
if not (BitSet.mem st.reachable_blocks pc)
then (
st.deleted_blocks <- st.deleted_blocks + 1;
None)
else
Some
{ params = List.filter block.params ~f:(fun x -> st.live.(Var.idx x) > 0)
; body =
List.fold_left block.body ~init:[] ~f:(fun acc i ->
match i, acc with
| Event _, Event _ :: prev ->
i :: prev
| _ ->
if live_instr st i
then filter_closure all_blocks st i :: acc
else (
st.deleted_instrs <- st.deleted_instrs + 1;
acc))
|> List.rev
; branch = filter_live_last all_blocks st block.branch
})
blocks
in
{ p with blocks }
in
let p = remove_empty_blocks st p in
if times () then Format.eprintf " dead code elim.: %a@." Timer.print t;
if stats ()
then
Format.eprintf
"Stats - dead code: deleted %d instructions, %d blocks, %d parameters, %d \
branches@."
st.deleted_instrs
st.deleted_blocks
st.deleted_params
st.block_shortcut;
if debug_stats ()
then
Code.check_updates
~name:"deadcode"
previous_p
p
~updates:
(st.deleted_instrs + st.deleted_blocks + st.deleted_params + st.block_shortcut);
let p = remove_unused_blocks p in
if stats ()
then (
let live = ref 0 in
Array.iter st.live ~f:(function
| 0 -> ()
| _ -> incr live);
let total = Var.count () in
let ratio = float !live /. float total *. 100. in
Format.eprintf "Stats - live variables: %d/%d = %.1f%%@." !live total ratio);
Code.invariant p;
p, st.live