forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs_fold_basic.ml
149 lines (135 loc) · 4.63 KB
/
js_fold_basic.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
(* Copyright (C) 2015-2016 Bloomberg Finance L.P.
*
* 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, either version 3 of the License, or
* (at your option) any later version.
*
* In addition to the permissions granted to you by the LGPL, you may combine
* or link a "work that uses the Library" with a publicly distributed version
* of this file to produce a combined library or application, then distribute
* that combined work under the terms of your choosing, with no requirement
* to comply with the obligations normally placed on you by section 4 of the
* LGPL version 3 (or the corresponding section of a later version of the LGPL
* should you choose to use a 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. *)
let needBlockRuntimeInDebugMode
(tag : J.expression)
(tag_info : J.tag_info) =
match tag_info with
| Blk_variant _
| Blk_module _
| Blk_record _
| Blk_constructor _ -> true
| Blk_tuple
| Blk_array
| Blk_exception
| Blk_extension -> false
| Blk_na ->
begin match tag.expression_desc with
| Number (Int { i = 0l ; _})
->
false
| _ -> true
end
let needBlockRuntimeInReleaseMode (tag : J.expression) (tag_info : J.tag_info) =
match tag_info with
| Blk_module _
| Blk_record _
| Blk_constructor (_, 1)
| Blk_variant _
| Blk_na
| Blk_tuple
| Blk_array
->
begin match tag.expression_desc with
| Number (Int { i = 0l ; _})
->
false
| _ -> true
end
| Blk_constructor _ -> true
| Blk_exception
| Blk_extension -> false
(* converted to [Pcreate_extension] in the beginning*)
let needBlockRuntime tag info =
if !Js_config.debug then
needBlockRuntimeInDebugMode tag info
else needBlockRuntimeInReleaseMode tag info
class count_deps (add : Ident.t -> unit ) =
object(self)
inherit Js_fold.fold as super
method! expression lam =
match lam.expression_desc with
| Fun (_, _, block, _) -> self#block block
(** Call
actually depends on parameter,
since closure
{[
n = n - 1
acc = () => n
]}
should be
{[
acc = (function (n) {() => n} (n))
n = n - 1
]}
*)
| _ -> super#expression lam
method! ident x = add x ; self
end
let add_lam_module_ident = Lam_module_ident.Hash_set.add
let create = Lam_module_ident.Hash_set.create
class count_hard_dependencies =
object(self)
inherit Js_fold.fold as super
val hard_dependencies = create 17
method! vident vid =
match vid with
| Qualified (id,kind,_) ->
add_lam_module_ident hard_dependencies (Lam_module_ident.mk kind id); self
| Id id -> self
method! expression x =
match x with
| {expression_desc = Call (_,_, {arity = NA}); _}
(* see [Js_exp_make.runtime_var_dot] *)
->
add_lam_module_ident hard_dependencies
(Lam_module_ident.of_runtime
(Ident.create_persistent Js_runtime_modules.curry));
super#expression x
| {expression_desc = Caml_block(_,_, tag, tag_info); _}
->
if needBlockRuntime tag tag_info then
add_lam_module_ident hard_dependencies
(Lam_module_ident.of_runtime
(Ident.create_persistent Js_runtime_modules.block))
;
super#expression x
| _ -> super#expression x
method get_hard_dependencies = hard_dependencies
end
let calculate_hard_dependencies block =
((new count_hard_dependencies)#block block) # get_hard_dependencies
(*
Given a set of [variables], count which variables [lam] will depend on
Invariant:
[variables] are parameters which means immutable so that [Call]
will not depend [variables]
*)
let depends_j (lam : J.expression) (variables : Ident_set.t) =
let v = ref Ident_set.empty in
let add id =
if Ident_set.mem id variables then
v := Ident_set.add id !v
in
ignore @@ (new count_deps add ) # expression lam ;
!v