Source file js_constant_sinking.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
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
(** Constant sinking optimization pass.
This optimization moves constant variable declarations closer to their
usage sites, minimizing live ranges. Shorter live ranges reduce register
pressure and make a subsequent variable coalescing pass more effective,
since variables with non-overlapping live ranges can share the same name.
Algorithm overview
1. Analysis phase
Walk the AST to identify constant declarations (primitives like
numbers/strings, and allocations like arrays/objects). Track all usage
sites for each constant, recording the scope stack at each use.
Dependencies between constants are tracked (e.g. when `x` is used in `y`'s
initializer). These dynamic usage sites depend on where `y` is eventually
placed.
2. Planning phase
Process constants in reverse definition order. This ensures that when
planning `x`, the target location of its consumer `y` is already resolved.
For each constant, compute the Lowest Common Ancestor (LCA) of all its
usage sites in the scope tree. The LCA is the deepest scope that
dominates all uses. Then find the deepest valid position to sink to:
- Primitives can sink freely to the LCA.
- Allocations cannot cross loop/function boundaries (to avoid creating
multiple allocations where originally there was one).
- Single-use constants are inlined directly at their usage site, ONLY if
doing so respects the movement constraints (e.g. we cannot inline an
allocation into a loop).
3. Transformation phase
Remove original declarations and re-insert them at their computed target
positions. Inline single-use constants.
*)
open Stdlib
open Javascript
module Var = Code.Var
let debug = Debug.find "constant-sinking"
let stats = Debug.find "stats"
let times = Debug.find "times"
type scope_kind =
| Scope_Block
| Scope_Loop
| Scope_Function
type scope_id = int
type scope_info =
{ id : scope_id
; kind : scope_kind
; index : int
(** Statement index within this scope; incremented
after each statement *)
}
type scope_stack = scope_info list
type constant_kind =
| Primitive
(** Cheap, idempotent values (numbers, strings, vars). Can be
duplicated or moved into loops without semantic change. *)
| Allocation
(** Expressions that allocate fresh objects (arrays, objects).
Must not be moved into loops/functions to avoid creating
multiple distinct allocations. *)
type usage_site =
| Direct of scope_stack (** Used directly at this scope position *)
| In_init of constant_info (** Used within another constant's initializer *)
and constant_info =
{ var : Var.t
; decl_scope : scope_stack
; kind : constant_kind
; init : expression * location
; mutable usages : usage_site list
; mutable target_scope : scope_stack option (** Computed during sinking *)
}
let print_usage_site f u =
match u with
| Direct (scope :: _) -> Format.fprintf f "@@%d:%d" scope.id scope.index
| Direct [] -> assert false
| In_init i -> Format.fprintf f "=> %a" Var.print i.var
let is_primitive_expr assignments expr =
match expr with
| EStr _ | EBool _ | ENum _ -> true
| EVar (V x) -> Var.Tbl.get assignments x = 1
| _ -> false
let rec is_allocation_expr assignments expr =
match expr with
| EArr lst ->
List.for_all
~f:(fun elt ->
match elt with
| ElementHole -> true
| Element e | ElementSpread e -> is_constant_expr assignments e)
lst
| EObj lst ->
List.for_all
~f:(fun prop ->
match prop with
| Property (_, e) | PropertySpread e -> is_constant_expr assignments e
| PropertyMethod _ | CoverInitializedName _ -> false)
lst
| ERegexp _ -> true
| ECall
( EVar
(S
{ name =
Utf8
( "caml_string_of_jsbytes"
| "caml_list_of_js_array"
| "caml_int64_create_lo_mi_hi" )
; _
})
, _
, args
, _ ) ->
has_constant_args assignments args
| _ -> false
and has_constant_args assignments args =
List.for_all
~f:(fun a ->
match a with
| Arg e | ArgSpread e -> is_constant_expr assignments e)
args
and is_constant_expr assignments e =
is_primitive_expr assignments e || is_allocation_expr assignments e
let get_constant_kind assignments expr =
if is_primitive_expr assignments expr
then Some Primitive
else if is_allocation_expr assignments expr
then Some Allocation
else None
class scope_manager =
object
val mutable counter = 0
val mutable stack : scope_stack = []
method enter_scope kind =
let id = counter in
counter <- counter + 1;
let info = { id; kind; index = 0 } in
stack <- info :: stack;
info
method leave_scope () =
match stack with
| _ :: rest -> stack <- rest
| [] -> assert false
method next_index () =
match stack with
| head :: rest ->
let head' = { head with index = head.index + 1 } in
stack <- head' :: rest
| [] -> ()
method current_stack = stack
end
class analysis =
object (self)
inherit Js_traverse.iter as super
inherit scope_manager as scopes
val mutable constants = Var.Hashtbl.create 128
val mutable ordered_constants : constant_info list = []
val mutable current_init_constant : constant_info option = None
val assignments = Var.Tbl.make () 0
method get_constants = constants
method get_ordered_constants =
List.filter
~f:(fun info ->
Var.Tbl.get assignments info.var = 1
&& Option.is_some (get_constant_kind assignments (fst info.init)))
ordered_constants
method private note_assignment ident =
match ident with
| V var -> Var.Tbl.set assignments var (Var.Tbl.get assignments var + 1)
| S _ -> ()
method private note_assignments idents =
List.iter ~f:(fun id -> self#note_assignment id) idents
method private note_assignments_from_target target =
match target with
| ArrayTarget elts ->
List.iter elts ~f:(function
| TargetElementHole -> ()
| TargetElementId (id, _) -> self#note_assignment id
| TargetElement e -> self#note_assignments_from_expr e
| TargetElementSpread e -> self#note_assignments_from_expr e)
| ObjectTarget elts ->
List.iter elts ~f:(function
| TargetPropertyId (Prop_and_ident id, _) -> self#note_assignment id
| TargetProperty (_, e, _) -> self#note_assignments_from_expr e
| TargetPropertySpread e -> self#note_assignments_from_expr e
| TargetPropertyMethod _ -> ())
method private note_assignments_from_expr e =
match e with
| EVar id -> self#note_assignment id
| EAssignTarget target -> self#note_assignments_from_target target
| _ -> ()
method private register_decl ident ((e, _) as init) =
match ident with
| V var when Var.Tbl.get assignments var = 1 -> (
match get_constant_kind assignments e with
| Some k ->
let info =
{ var
; decl_scope = scopes#current_stack
; kind = k
; init
; usages = []
; target_scope = None
}
in
Var.Hashtbl.replace constants var info;
ordered_constants <- info :: ordered_constants;
let prev_ctx = current_init_constant in
current_init_constant <- Some info;
self#expression e;
current_init_constant <- prev_ctx
| None -> self#expression e)
| _ -> self#expression e
method! program p =
let info = scopes#enter_scope Scope_Block in
if debug () then Format.eprintf "Analysis: enter program scope %d@." info.id;
List.iter
~f:(fun (stmt, _) ->
self#statement stmt;
scopes#next_index ())
p;
scopes#leave_scope ()
method! fun_decl f =
let info = scopes#enter_scope Scope_Function in
if debug () then Format.eprintf "Analysis: enter fun_decl scope %d@." info.id;
super#fun_decl f;
scopes#leave_scope ()
method! block b =
let info = scopes#enter_scope Scope_Block in
if debug () then Format.eprintf "Analysis: enter block scope %d@." info.id;
List.iter
~f:(fun (stmt, _) ->
self#statement stmt;
scopes#next_index ())
b;
scopes#leave_scope ()
method! variable_declaration kind decl =
match kind, decl with
| Var, DeclIdent (id, Some init) ->
self#note_assignment id;
self#register_decl id init
| _, DeclIdent (id, _) ->
self#note_assignment id;
super#variable_declaration kind decl
| _, DeclPattern (pat, init) ->
self#note_assignments (bound_idents_of_pattern pat);
self#expression (fst init)
method! function_body b =
List.iter
~f:(fun (stmt, _) ->
self#statement stmt;
scopes#next_index ())
b
method! ident id =
match id with
| V var -> (
match Var.Hashtbl.find_opt constants var with
| Some info ->
let u =
match current_init_constant with
| Some owner -> In_init owner
| None -> Direct scopes#current_stack
in
if debug ()
then
Format.eprintf
"Analysis: usage of %a %a@."
Var.print
var
print_usage_site
u;
info.usages <- u :: info.usages
| None -> ())
| S _ -> ()
method! for_binding _kind binding =
self#note_assignments (bound_idents_of_binding binding)
method! expression expr =
(match expr with
| EBin (op, lhs, _rhs) -> (
match op with
| Eq
| StarEq
| SlashEq
| ModEq
| PlusEq
| MinusEq
| LslEq
| AsrEq
| LsrEq
| BandEq
| BxorEq
| BorEq
| OrEq
| AndEq
| ExpEq
| CoalesceEq -> (
match lhs with
| EVar id -> self#note_assignment id
| EAssignTarget target -> self#note_assignments_from_target target
| _ -> ())
| _ -> ())
| EUn (op, e) -> (
match op with
| IncrA | DecrA | IncrB | DecrB -> (
match e with
| EVar id -> self#note_assignment id
| _ -> ())
| _ -> ())
| _ -> ());
super#expression expr
method! statement stmt =
match stmt with
| For_statement (init, cond, incr, body) ->
(match init with
| Left expr_opt -> self#expression_o expr_opt
| Right (kind, decls) ->
List.iter ~f:(fun d -> self#variable_declaration kind d) decls);
self#expression_o cond;
self#expression_o incr;
let info = scopes#enter_scope Scope_Loop in
if debug () then Format.eprintf "Analysis: enter for loop scope %d@." info.id;
self#statement (fst body);
scopes#leave_scope ()
| ForIn_statement (msg, source, body)
| ForOf_statement (msg, source, body)
| ForAwaitOf_statement (msg, source, body) ->
(match msg with
| Left expr -> self#expression expr
| Right (kind, binding) -> self#for_binding kind binding);
self#expression source;
let info = scopes#enter_scope Scope_Loop in
if debug ()
then Format.eprintf "Analysis: enter loop (for-in/of/await) scope %d@." info.id;
self#statement (fst body);
scopes#leave_scope ()
| While_statement (cond, body) ->
self#expression cond;
let info = scopes#enter_scope Scope_Loop in
if debug () then Format.eprintf "Analysis: enter while loop scope %d@." info.id;
self#statement (fst body);
scopes#leave_scope ()
| Do_while_statement (body, cond) ->
let info = scopes#enter_scope Scope_Loop in
if debug ()
then Format.eprintf "Analysis: enter dowhile loop scope %d@." info.id;
self#statement (fst body);
scopes#leave_scope ();
self#expression cond
| If_statement (cond, (th, _), el) -> (
self#expression cond;
let info = scopes#enter_scope Scope_Block in
if debug () then Format.eprintf "Analysis: enter if-then scope %d@." info.id;
self#statement th;
scopes#leave_scope ();
match el with
| Some (el_stmt, _) ->
let info = scopes#enter_scope Scope_Block in
if debug () then Format.eprintf "Analysis: enter if-else scope %d@." info.id;
self#statement el_stmt;
scopes#leave_scope ()
| None -> ())
| Switch_statement (disc, cases, default, cases2) ->
self#expression disc;
let process_case_list clauses =
List.iter
~f:(fun (e, stmts) ->
self#expression e;
let info = scopes#enter_scope Scope_Block in
if debug () then Format.eprintf "Analysis: enter case scope %d@." info.id;
List.iter
~f:(fun (s, _) ->
self#statement s;
scopes#next_index ())
stmts;
scopes#leave_scope ())
clauses
in
process_case_list cases;
(match default with
| Some stmts ->
let info = scopes#enter_scope Scope_Block in
if debug ()
then Format.eprintf "Analysis: enter default case scope %d@." info.id;
List.iter
~f:(fun (s, _) ->
self#statement s;
scopes#next_index ())
stmts;
scopes#leave_scope ()
| None -> ());
process_case_list cases2
| Block _
| Variable_statement _
| Expression_statement _
| Return_statement _
| With_statement _
| Labelled_statement _
| Throw_statement _
| Try_statement _
| Function_declaration _
| Class_declaration _
| Empty_statement
| Continue_statement _
| Break_statement _
| Debugger_statement
| Import _
| Export _ -> super#statement stmt
method! class_element e =
match e with
| CEStaticBLock _ ->
let info = scopes#enter_scope Scope_Function in
if debug ()
then Format.eprintf "Analysis: enter class static block scope %d@." info.id;
super#class_element e;
scopes#leave_scope ()
| _ -> super#class_element e
end
let rec lca_of_stacks s1 s2 =
match s1, s2 with
| h1 :: t1, h2 :: t2 ->
if h1.id < h2.id
then lca_of_stacks s1 t2
else if h1.id > h2.id
then lca_of_stacks t1 s2
else if h1.index <= h2.index
then s1
else s2
| [], _ | _, [] -> []
let usage_site_stack u =
match u with
| Direct s -> s
| In_init owner ->
Option.value ~default:owner.decl_scope owner.target_scope
let find_lca usages =
let stacks = List.map ~f:usage_site_stack usages in
match stacks with
| [] -> None
| head :: tail ->
let lca_stack = List.fold_left ~f:lca_of_stacks ~init:head tail in
Some lca_stack
let rec is_suffix list suffix =
match list, suffix with
| h1 :: t1, h2 :: _ ->
if h1.id < h2.id
then false
else if h1.id > h2.id
then is_suffix t1 suffix
else h2.index <= h1.index
| _, [] -> assert false
| [], _ :: _ -> false
let can_sink_to info lca_stack =
match info.kind with
| Primitive -> is_suffix lca_stack info.decl_scope
| Allocation ->
let rec check_path stack suffix =
match stack, suffix with
| h1 :: t1, h2 :: _ ->
h1.id >= h2.id
&&
if h1.id > h2.id
then
(match h1.kind with
| Scope_Loop | Scope_Function -> false
| Scope_Block -> true)
&& check_path t1 suffix
else h2.index <= h1.index
| _, [] -> assert false
| [], _ :: _ -> false
in
check_path lca_stack info.decl_scope
let find_valid_target info lca_stack =
match info.kind with
| Primitive -> if is_suffix lca_stack info.decl_scope then Some lca_stack else None
| Allocation ->
let root = info.decl_scope in
let rec walk acc stack =
match stack, root with
| [], _ -> None
| _, [] -> assert false
| scope :: rem, scope' :: _ -> (
if scope.id < scope'.id
then
None
else if scope.id = scope'.id
then
if scope.index < scope'.index
then
None
else Some (List.rev_append acc stack)
else
match scope.kind with
| Scope_Loop | Scope_Function ->
walk [] rem
| Scope_Block -> walk (scope :: acc) rem)
in
walk [] lca_stack
module ScopeTable = Int.Hashtbl
type insertion =
{ index : int
; var : Var.t
; init : expression * location
}
type insertion_plan = insertion list
class transformation
(plan : insertion_plan ScopeTable.t)
(removals : unit Var.Hashtbl.t)
(inlinings : expression Var.Hashtbl.t) =
object (self)
inherit Js_traverse.map as super
inherit scope_manager as scopes
method! expression expr =
match expr with
| EVar (V x) -> (
match Var.Hashtbl.find_opt inlinings x with
| Some init_expr ->
if debug () then Format.eprintf "Inlining %a@." Var.print x;
self#expression init_expr
| None -> super#expression expr)
| _ -> super#expression expr
method apply_insertions scope_id stmts =
let insertions = Option.value (ScopeTable.find_opt plan scope_id) ~default:[] in
match insertions with
| [] -> List.map ~f:(fun (s, l) -> self#statement s, l) stmts
| _ ->
let insertion_map =
List.fold_left
~f:(fun acc ins ->
let existing = Option.value (IntMap.find_opt ins.index acc) ~default:[] in
IntMap.add ins.index (ins :: existing) acc)
~init:IntMap.empty
insertions
in
List.mapi
~f:(fun i stmt ->
let to_insert =
Option.value (IntMap.find_opt i insertion_map) ~default:[]
in
let injected_stmts =
List.rev_map
~f:(fun ins ->
let loc = snd stmt in
if debug ()
then
Format.eprintf
"Transform: inserting %a at scope %d, index %d@."
Var.print
ins.var
scope_id
i;
( Variable_statement
( Var
, [ DeclIdent
( V ins.var
, Some (self#expression (fst ins.init), snd ins.init) )
] )
, loc ))
to_insert
in
let s, l = stmt in
let stmt' = self#statement s in
injected_stmts @ [ stmt', l ])
stmts
|> List.flatten
method! program p =
let info = scopes#enter_scope Scope_Block in
if debug () then Format.eprintf "Transform: enter program scope %d@." info.id;
let new_progs = self#apply_insertions info.id p in
scopes#leave_scope ();
new_progs
method! block b =
let info = scopes#enter_scope Scope_Block in
(if debug ()
then
let parent_id =
match scopes#current_stack with
| _ :: p :: _ -> p.id
| _ -> -1
in
Format.eprintf "Transform: enter block scope %d (parent %d)@." info.id parent_id);
let new_stmts = self#apply_insertions info.id b in
scopes#leave_scope ();
new_stmts
method! fun_decl f =
let info = scopes#enter_scope Scope_Function in
if debug () then Format.eprintf "Transform: enter fun_decl scope %d@." info.id;
let k, params, body, loc = super#fun_decl f in
scopes#leave_scope ();
k, params, body, loc
method! variable_declaration kind decl =
match kind, decl with
| Var, DeclIdent (id, Some (e, loc)) ->
let e' = self#expression e in
DeclIdent (self#ident id, Some (e', self#loc loc))
| (Let | Const | Using | AwaitUsing), _ | _, (DeclIdent (_, None) | DeclPattern _)
-> super#variable_declaration kind decl
method! function_body stmts =
let current = List.hd scopes#current_stack in
self#apply_insertions current.id stmts
method! statement stmt =
match stmt with
| Variable_statement (kind, decls) -> (
let new_decls_processed =
List.filter_map
~f:(fun decl ->
let keep =
match decl with
| DeclIdent (V x, _) when Var.Hashtbl.mem removals x ->
if debug ()
then Format.eprintf "Transform: removing decl %a@." Var.print x;
false
| _ -> true
in
if keep then Some (self#variable_declaration kind decl) else None)
decls
in
match new_decls_processed with
| [] -> Empty_statement
| _ -> Variable_statement (kind, new_decls_processed))
| For_statement (init, cond, incr, body) ->
let init' =
match init with
| Left expr_opt -> Left (self#expression_o expr_opt)
| Right (kind, decls) ->
Right (kind, List.map ~f:(fun d -> self#variable_declaration kind d) decls)
in
let cond' = self#expression_o cond in
let incr' = self#expression_o incr in
let body' = self#handle_scoped_body Scope_Loop body in
For_statement (init', cond', incr', body')
| While_statement (cond, body) ->
let cond' = self#expression cond in
let body' = self#handle_scoped_body Scope_Loop body in
While_statement (cond', body')
| Do_while_statement (body, cond) ->
let body' = self#handle_scoped_body Scope_Loop body in
let cond' = self#expression cond in
Do_while_statement (body', cond')
| ForIn_statement (msg, source, body) ->
let msg' =
match msg with
| Left expr -> Left (self#expression expr)
| Right (kind, binding) -> Right (kind, self#for_binding kind binding)
in
let source' = self#expression source in
let body' = self#handle_scoped_body Scope_Loop body in
ForIn_statement (msg', source', body')
| ForOf_statement (msg, source, body) ->
let msg' =
match msg with
| Left expr -> Left (self#expression expr)
| Right (kind, binding) -> Right (kind, self#for_binding kind binding)
in
let source' = self#expression source in
let body' = self#handle_scoped_body Scope_Loop body in
ForOf_statement (msg', source', body')
| If_statement (e, (th, th_loc), el) ->
let e' = self#expression e in
let th' = self#handle_scoped_body Scope_Block (th, th_loc) in
let el' =
match el with
| Some el_branch -> Some (self#handle_scoped_body Scope_Block el_branch)
| None -> None
in
If_statement (e', th', el')
| Switch_statement (disc, cases, default, cases2) ->
let disc' = self#expression disc in
let process_case_list clauses =
List.map
~f:(fun (e, stmts) ->
let e' = self#expression e in
let info = scopes#enter_scope Scope_Block in
let stmts' = self#apply_insertions info.id stmts in
scopes#leave_scope ();
e', stmts')
clauses
in
let cases' = process_case_list cases in
let default' =
Option.map
~f:(fun stmts ->
let info = scopes#enter_scope Scope_Block in
let stmts' = self#apply_insertions info.id stmts in
scopes#leave_scope ();
stmts')
default
in
let cases2' = process_case_list cases2 in
Switch_statement (disc', cases', default', cases2')
| ForAwaitOf_statement (msg, source, body) ->
let msg' =
match msg with
| Left expr -> Left (self#expression expr)
| Right (kind, binding) -> Right (kind, self#for_binding kind binding)
in
let source' = self#expression source in
let body' = self#handle_scoped_body Scope_Loop body in
ForAwaitOf_statement (msg', source', body')
| Block _
| Return_statement _
| With_statement _
| Labelled_statement _
| Throw_statement _
| Expression_statement _
| Try_statement _
| Function_declaration _
| Class_declaration _
| Empty_statement
| Continue_statement _
| Break_statement _
| Debugger_statement
| Import _
| Export _ -> super#statement stmt
method! class_element e =
match e with
| CEStaticBLock _ ->
let info = scopes#enter_scope Scope_Function in
if debug ()
then Format.eprintf "Transform: enter class static block scope %d@." info.id;
let e = super#class_element e in
scopes#leave_scope ();
e
| _ -> super#class_element e
method private handle_scoped_body scope_kind body =
let info = scopes#enter_scope scope_kind in
let s, l = body in
let insertions = Option.value (ScopeTable.find_opt plan info.id) ~default:[] in
let body_stmt' = self#statement s in
let body' = body_stmt', l in
let res =
match insertions with
| [] -> body'
| _ -> (
let vars =
List.map
~f:(fun ins ->
let e, loc = ins.init in
( Variable_statement
(Var, [ DeclIdent (V ins.var, Some (self#expression e, loc)) ])
, l ))
insertions
in
match body_stmt' with
| Block b -> Block (vars @ b), l
| _ -> Block (vars @ [ body' ]), l)
in
scopes#leave_scope ();
res
end
let f program =
let t = Timer.make () in
let t1 = Timer.make () in
let analyzer = new analysis in
analyzer#program program;
if times () then Format.eprintf " constant sinking: analyze: %a@." Timer.print t1;
let t1 = Timer.make () in
let plan = ScopeTable.create 16 in
let removals = Var.Hashtbl.create 128 in
let inlinings = Var.Hashtbl.create 128 in
let moved_count = ref 0 in
let inlined_count = ref 0 in
let can_inline info =
match info.usages with
| [ u ] ->
let stack = usage_site_stack u in
if can_sink_to info stack then Some stack else None
| [] | _ :: _ -> None
in
List.iter
~f:(fun info ->
match can_inline info with
| Some target_stack ->
if debug () then Format.eprintf "Inline: %a (single use)@." Var.print info.var;
info.target_scope <- Some target_stack;
incr inlined_count;
Var.Hashtbl.add inlinings info.var (fst info.init);
Var.Hashtbl.add removals info.var ()
| None -> (
match find_lca info.usages with
| Some lca -> (
match find_valid_target info lca with
| Some target_stack -> (
assert (is_suffix lca info.decl_scope);
assert (is_suffix target_stack info.decl_scope);
assert (can_sink_to info target_stack);
info.target_scope <- Some target_stack;
assert (not (List.is_empty target_stack));
match target_stack with
| target_scope :: _ ->
let target_id = target_scope.id in
let decl_id = (List.hd info.decl_scope).id in
let definition_index = (List.hd info.decl_scope).index in
let is_same_pos =
target_id = decl_id && target_scope.index = definition_index
in
if not is_same_pos
then (
if debug ()
then
Format.eprintf
"Plan: %a -> scope %d, index %d (decl was scope %d, index \
%d), %d usages@."
Var.print
info.var
target_id
target_scope.index
decl_id
definition_index
(List.length info.usages);
let current_list =
Option.value (ScopeTable.find_opt plan target_id) ~default:[]
in
ScopeTable.replace
plan
target_id
({ index = target_scope.index
; var = info.var
; init = info.init
}
:: current_list);
incr moved_count;
Var.Hashtbl.add removals info.var ())
| [] -> ())
| None -> info.target_scope <- Some info.decl_scope)
| None -> info.target_scope <- Some info.decl_scope))
analyzer#get_ordered_constants;
if times () then Format.eprintf " constant sinking: planning: %a@." Timer.print t1;
let t1 = Timer.make () in
let program =
if Var.Hashtbl.length removals = 0
then program
else
let transformer = new transformation plan removals inlinings in
transformer#program program
in
if times () then Format.eprintf " constant sinking: transform: %a@." Timer.print t1;
if times () then Format.eprintf " constant sinking: %a@." Timer.print t;
if stats ()
then
Format.eprintf
"Stats - constant sinking: %d moved, %d inlined@."
!moved_count
!inlined_count;
program