-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy pathdeadcode.ml
242 lines (215 loc) · 7.61 KB
/
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
(* Js_of_ocaml compiler
* http://www.ocsigen.org/js_of_ocaml/
* Copyright (C) 2010 Jérôme Vouillon
* Laboratoire PPS - CNRS Université Paris Diderot
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
open! Stdlib
let debug = Debug.find "deadcode"
let times = Debug.find "times"
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
; mutable reachable_blocks : Addr.Set.t
; pure_funs : Var.Set.t
}
(****)
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 ->
(* A [Set_field (x, _, y)] becomes live *)
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 (Addr.Set.mem pc st.reachable_blocks)
then (
st.reachable_blocks <- Addr.Set.add pc st.reachable_blocks;
let block = Addr.Map.find pc st.blocks in
List.iter block.body ~f:(fun (i, _loc) ->
match i with
| Let (_, e) -> if not (pure_expr st.pure_funs e) then mark_expr st e
| Assign _ -> ()
| Set_field (x, _, y) -> (
match st.defs.(Var.idx x) with
| [ Expr (Block _) ] when st.live.(Var.idx x) = 0 ->
(* We will keep this instruction only if x is live *)
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 fst 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 (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
| 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 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)) -> Let (x, Closure (l, filter_cont blocks st cont))
| _ -> i
let filter_live_last blocks st (l, loc) =
let 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)
in
l, loc
(****)
let ref_count st i =
match i with
| Let (x, _) -> st.live.(Var.idx x)
| _ -> 0
let annot st pc xi =
if not (Addr.Set.mem pc st.reachable_blocks)
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 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) =
match try Some (Addr.Map.find pc blocks) with Not_found -> None with
| Some block -> add_arg_dep defs block.params args
| None -> () (* Dead continuation *)
let f ({ blocks; _ } as p : Code.program) =
let t = Timer.make () in
let nv = Var.count () in
let defs = Array.make nv [] in
let live = Array.make nv 0 in
let pure_funs = Pure_fun.f p in
Addr.Map.iter
(fun _ block ->
List.iter block.body ~f:(fun (i, _loc) ->
match i with
| Let (x, e) -> add_def defs x (Expr e)
| Assign (x, y) -> add_def defs x (Var y)
| Set_field (_, _, _) | Array_set (_, _, _) | Offset_ref (_, _) -> ());
match fst 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 = Addr.Set.empty; pure_funs } in
mark_reachable st p.start;
if debug () then Print.program (fun pc xi -> annot st pc xi) p;
let all_blocks = blocks in
let blocks =
Addr.Map.fold
(fun pc block blocks ->
if not (Addr.Set.mem pc st.reachable_blocks)
then blocks
else
Addr.Map.add
pc
{ params = List.filter block.params ~f:(fun x -> st.live.(Var.idx x) > 0)
; body =
List.filter_map block.body ~f:(fun (i, loc) ->
if live_instr st i
then Some (filter_closure all_blocks st i, loc)
else None)
; branch = filter_live_last all_blocks st block.branch
}
blocks)
blocks
Addr.Map.empty
in
if times () then Format.eprintf " dead code elim.: %a@." Timer.print t;
{ p with blocks }, st.live