-
-
Notifications
You must be signed in to change notification settings - Fork 330
/
Copy pathcall.rb
372 lines (313 loc) · 9.6 KB
/
call.rb
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
# frozen_string_literal: true
require 'set'
require 'pathname'
require 'opal/nodes/base'
module Opal
module Nodes
class CallNode < Base
handle :send, :csend
attr_reader :recvr, :meth, :arglist, :iter
SPECIALS = {}
# Operators that get optimized by compiler
OPERATORS = { :+ => :plus, :- => :minus, :* => :times, :/ => :divide,
:< => :lt, :<= => :le, :> => :gt, :>= => :ge }.freeze
def self.add_special(name, options = {}, &handler)
SPECIALS[name] = options
define_method("handle_#{name}", &handler)
end
def initialize(*)
super
@recvr, @meth, *args = *@sexp
*rest, last_arg = *args
if last_arg && %i[iter block_pass].include?(last_arg.type)
@iter = last_arg
args = rest
else
@iter = nil
end
@arglist = s(:arglist, *args)
end
def compile
# handle some methods specially
# some special methods need to skip compilation, so we pass the default as a block
handle_special do
compiler.record_method_call meth
with_wrapper do
if using_eval?
# if trying to access an lvar in eval or irb mode
compile_eval_var
elsif using_irb?
# if trying to access an lvar in irb mode
compile_irb_var
else
default_compile
end
end
end
end
private
def iter_has_break?
return false unless iter
iter.meta[:has_break]
end
# Opal has a runtime helper 'Opal.send_method_name' that assigns
# provided block to a '$$p' property of the method body
# and invokes a method using 'apply'.
#
# We have to compile a method call using this 'Opal.send_method_name' when a method:
# 1. takes a splat
# 2. takes a block
#
# Arguments that contain splat must be handled in a different way.
# @see #compile_arguments
#
# When a method takes a block we have to calculate all arguments
# **before** assigning '$$p' property (that stores a passed block)
# to a method body. This is some kind of protection from method calls
# like 'a(a {}) { 1 }'.
def invoke_using_send?
iter || splat? || call_is_writer_that_needs_handling?
end
def invoke_using_refinement?
!scope.scope.collect_refinements_temps.empty?
end
# Is it a conditional send, ie. `foo&.bar`?
def csend?
@sexp.type == :csend
end
def default_compile
if auto_await?
push '(await '
scope.await_encountered = true
end
push_closure(Closure::SEND) if iter_has_break?
if invoke_using_refinement?
compile_using_refined_send
elsif invoke_using_send?
compile_using_send
else
compile_simple_call_chain
end
pop_closure if iter_has_break?
if auto_await?
push ')'
end
end
# Compiles method call using `Opal.send`
#
# @example
# a.b(c, &block)
#
# Opal.send(a, 'b', [c], block)
#
def compile_using_send
helper :send
push '$send('
compile_receiver
compile_method_name
compile_arguments
compile_block_pass
push ')'
end
# Compiles method call using `Opal.refined_send`
#
# @example
# a.b(c, &block)
#
# Opal.refined_send(a, 'b', [c], block, [[Opal.MyRefinements]])
#
def compile_using_refined_send
helper :refined_send
push '$refined_send('
compile_refinements
compile_receiver
compile_method_name
compile_arguments
compile_block_pass
push ')'
end
def compile_receiver
push @conditional_recvr || recv(receiver_sexp)
end
def compile_method_name
push ", '#{meth}'"
end
def compile_arguments(skip_comma = false)
push ', ' unless skip_comma
if @with_writer_temp
push @with_writer_temp
elsif splat?
push expr(arglist)
elsif arglist.children.empty?
push '[]'
else
push '[', expr(arglist), ']'
end
end
def compile_block_pass
if iter
push ', ', expr(iter)
end
end
def compile_refinements
refinements = scope.collect_refinements_temps.map { |i| s(:js_tmp, i) }
push expr(s(:array, *refinements)), ', '
end
def compile_simple_call_chain
compile_receiver
push method_jsid, '(', expr(arglist), ')'
end
def splat?
arglist.children.any? { |a| a.type == :splat }
end
def receiver_sexp
recvr || s(:self)
end
def method_jsid
mid_to_jsid meth.to_s
end
# Used to generate the code to use this sexp as an ivar var reference
def compile_irb_var
with_temp do |tmp|
lvar = meth
call = s(:send, s(:self), meth.intern, s(:arglist))
ref = "(typeof #{lvar} !== 'undefined') ? #{lvar} : "
push "((#{tmp} = Opal.irb_vars.#{lvar}) == null ? ", ref, expr(call), " : #{tmp})"
end
end
def compile_eval_var
push meth.to_s
end
# a variable reference in irb mode in top scope might be a var ref,
# or it might be a method call
def using_irb?
@compiler.irb? && scope.top? && variable_like?
end
def using_eval?
@compiler.eval? && scope.top? && @compiler.scope_variables.include?(meth)
end
def variable_like?
arglist == s(:arglist) && recvr.nil? && iter.nil?
end
def sexp_with_arglist
@sexp.updated(nil, [recvr, meth, arglist])
end
def auto_await?
awaited_set = compiler.async_await
awaited_set && awaited_set != true && awaited_set.match?(meth.to_s)
end
# Handle "special" method calls, e.g. require(). Subclasses can override
# this method. If this method returns nil, then the method will continue
# to be generated by CallNode.
def handle_special(&compile_default)
if SPECIALS.include? meth
method = method("handle_#{meth}")
method.arity == 1 ? method[compile_default] : method[]
else
yield # i.e. compile_default.call
end
end
OPERATORS.each do |operator, name|
add_special(operator.to_sym) do |compile_default|
if invoke_using_refinement?
compile_default.call
elsif compiler.inline_operators?
compiler.record_method_call operator
helper :"rb_#{name}"
lhs, rhs = expr(recvr), expr(arglist)
push fragment("$rb_#{name}(")
push lhs
push fragment(', ')
push rhs
push fragment(')')
else
compile_default.call
end
end
end
add_special :block_given? do
push compiler.handle_block_given_call @sexp
end
# Refinements support
add_special :using do |compile_default|
if scope.accepts_using? && arglist.children.count == 1
using_refinement(arglist.children.first)
else
compile_default.call
end
end
def using_refinement(arg)
prev, curr = *scope.refinements_temp
if prev
push "(#{curr} = #{prev}.slice(), #{curr}.push(", expr(arg), "), #{scope.self})"
else
push "(#{curr} = [", expr(arg), "], #{scope.self})"
end
end
add_special :debugger do
push fragment 'debugger'
end
add_special :lambda do |compile_default|
scope.defines_lambda do
compile_default.call
end
end
add_special :__await__ do |compile_default|
if compiler.async_await
push fragment '(await ('
push process(recvr)
push fragment '))'
scope.await_encountered = true
else
compile_default.call
end
end
def push_nesting?
recv = children.first
children.size == 2 && ( # only receiver and method
recv.nil? || ( # and no receiver
recv.type == :const && # or receiver
recv.children.last == :Module # is Module
)
)
end
def with_wrapper(&block)
if csend? && !@conditional_recvr
handle_conditional_send do
with_wrapper(&block)
end
elsif call_is_writer_that_needs_handling?
handle_writer(&block)
else
yield
end
end
def call_is_writer_that_needs_handling?
(expr? || recv?) && (meth.to_s =~ /^\w+=$/ || meth == :[]=)
end
# Handle safe-operator calls: foo&.bar / foo&.bar ||= baz / ...
def handle_conditional_send
# temporary variable that stores method receiver
receiver_temp = scope.new_temp
push "#{receiver_temp} = ", expr(receiver_sexp)
# execute the sexp only if the receiver isn't nil
push ", (#{receiver_temp} === nil || #{receiver_temp} == null) ? nil : "
@conditional_recvr = receiver_temp
yield
wrap '(', ')'
end
def handle_writer
with_temp do |temp|
push "(#{temp} = "
compile_arguments(true)
push ", "
@with_writer_temp = temp
yield
@with_writer_temp = false
push ", "
push "#{temp}[#{temp}.length - 1])"
end
end
end
end
end