2017-04-01 20:28:57 +02:00
|
|
|
module Vool
|
2018-03-10 14:17:36 +01:00
|
|
|
# Sending in a dynamic language is off course not as simple as just calling.
|
|
|
|
# The function that needs to be called depends after all on the receiver,
|
|
|
|
# and no guarantees can be made on what that is.
|
|
|
|
#
|
|
|
|
# It helps to know that usually (>99%) the class of the receiver does not change.
|
|
|
|
# Our stategy then is to cache the functions and only dynamically determine it in
|
|
|
|
# case of a miss (the 1%, and first invocation)
|
|
|
|
#
|
|
|
|
# As cache key we must use the type of the object (which is the first word of _every_ object)
|
|
|
|
# as that is constant, and function implementations depend on the type (not class)
|
2018-07-30 13:45:37 +02:00
|
|
|
class SendStatement < CallStatement
|
|
|
|
attr_reader :block
|
2017-04-08 11:10:42 +02:00
|
|
|
|
2018-06-28 19:15:24 +02:00
|
|
|
def block
|
|
|
|
return nil if arguments.empty?
|
|
|
|
bl = arguments.last
|
|
|
|
bl.is_a?(BlockStatement) ? bl : nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_block( block )
|
|
|
|
@arguments << block
|
2018-06-26 19:28:27 +02:00
|
|
|
end
|
|
|
|
|
2018-03-15 12:52:56 +01:00
|
|
|
def each(&block)
|
2018-07-30 13:45:37 +02:00
|
|
|
super
|
2018-07-05 13:02:38 +02:00
|
|
|
self.block.each(&block) if self.block
|
2017-04-08 11:10:42 +02:00
|
|
|
end
|
|
|
|
|
2018-03-18 18:06:36 +01:00
|
|
|
# lazy init this, to keep the dependency (which goes to parfait and booting) at bay
|
|
|
|
def dynamic_call
|
|
|
|
@dynamic ||= Mom::DynamicCall.new()
|
|
|
|
end
|
|
|
|
|
2017-04-15 19:58:39 +02:00
|
|
|
# A Send breaks down to 2 steps:
|
|
|
|
# - Setting up the next message, with receiver, arguments, and (importantly) return address
|
2017-09-14 15:07:02 +02:00
|
|
|
# - a CachedCall , or a SimpleCall, depending on wether the receiver type can be determined
|
2018-07-05 13:02:38 +02:00
|
|
|
def to_mom( compiler )
|
2018-07-16 11:03:40 +02:00
|
|
|
@receiver = SelfExpression.new(compiler.receiver_type) if @receiver.is_a?(SelfExpression)
|
2017-09-10 21:54:56 +02:00
|
|
|
if(@receiver.ct_type)
|
2018-07-05 13:02:38 +02:00
|
|
|
simple_call(compiler)
|
2017-09-10 21:54:56 +02:00
|
|
|
else
|
2018-07-05 13:02:38 +02:00
|
|
|
cached_call(compiler)
|
2017-09-10 21:54:56 +02:00
|
|
|
end
|
2017-04-15 19:58:39 +02:00
|
|
|
end
|
|
|
|
|
2018-07-05 13:02:38 +02:00
|
|
|
def message_setup(compiler,called_method)
|
2018-04-05 11:24:49 +02:00
|
|
|
setup = Mom::MessageSetup.new( called_method )
|
2018-07-05 13:02:38 +02:00
|
|
|
mom_receive = @receiver.slot_definition(compiler)
|
2017-09-10 21:54:56 +02:00
|
|
|
arg_target = [:message , :next_message , :arguments]
|
2017-09-11 13:22:33 +02:00
|
|
|
args = []
|
2018-05-15 15:25:55 +02:00
|
|
|
@arguments.each_with_index do |arg , index| # +1 because of type
|
2018-07-05 13:02:38 +02:00
|
|
|
args << Mom::SlotLoad.new( arg_target + [index + 1] , arg.slot_definition(compiler))
|
2017-04-15 19:58:39 +02:00
|
|
|
end
|
2018-03-20 18:01:39 +01:00
|
|
|
setup << Mom::ArgumentTransfer.new( mom_receive , args )
|
2017-04-15 19:58:39 +02:00
|
|
|
end
|
|
|
|
|
2018-07-05 13:02:38 +02:00
|
|
|
def simple_call(compiler)
|
2017-04-19 19:59:13 +02:00
|
|
|
type = @receiver.ct_type
|
2017-09-12 16:49:42 +02:00
|
|
|
called_method = type.resolve_method(@name)
|
|
|
|
raise "No method #{@name} for #{type}" unless called_method
|
2018-07-05 13:02:38 +02:00
|
|
|
message_setup(compiler,called_method) << Mom::SimpleCall.new(called_method)
|
2017-04-15 19:58:39 +02:00
|
|
|
end
|
|
|
|
|
2017-09-14 15:07:02 +02:00
|
|
|
# this breaks cleanly into two parts:
|
|
|
|
# - check the cached type and if neccessary update
|
|
|
|
# - call the cached method
|
2018-07-05 13:02:38 +02:00
|
|
|
def cached_call(compiler)
|
|
|
|
cache_check(compiler) << call_cached_method(compiler)
|
2017-04-15 19:58:39 +02:00
|
|
|
end
|
|
|
|
|
2017-09-14 15:07:02 +02:00
|
|
|
# check that current type is the cached type
|
|
|
|
# if not, change and find method for the type (simple_call to resolve_method)
|
|
|
|
# conceptually easy in ruby, but we have to compile that "easy" ruby
|
2018-07-05 13:02:38 +02:00
|
|
|
def cache_check(compiler)
|
2018-03-21 17:28:43 +01:00
|
|
|
ok = Mom::Label.new("cache_ok_#{self.object_id}")
|
2018-07-05 13:02:38 +02:00
|
|
|
check = build_condition(ok, compiler) # if cached_type != current_type
|
|
|
|
check << Mom::SlotLoad.new([dynamic_call.cache_entry, :cached_type] , receiver_type_definition(compiler))
|
2018-04-08 17:55:17 +02:00
|
|
|
check << Mom::ResolveMethod.new( @name , dynamic_call.cache_entry )
|
2018-03-21 08:08:28 +01:00
|
|
|
check << ok
|
2017-09-14 15:07:02 +02:00
|
|
|
end
|
|
|
|
|
2018-04-05 11:24:49 +02:00
|
|
|
# to call the method (that we know now to be in the cache), we move the method
|
|
|
|
# to reg1, do the setup (very similar to static) and call
|
2018-07-05 13:02:38 +02:00
|
|
|
def call_cached_method(compiler)
|
|
|
|
message_setup(compiler,dynamic_call.cache_entry) << dynamic_call
|
2017-09-14 15:07:02 +02:00
|
|
|
end
|
2017-12-05 20:46:37 +01:00
|
|
|
|
2018-07-03 21:18:19 +02:00
|
|
|
def to_s(depth = 0)
|
|
|
|
sen = "#{receiver}.#{name}(#{@arguments.collect{|a| a.to_s}.join(', ')})"
|
|
|
|
at_depth(depth , sen)
|
|
|
|
end
|
|
|
|
|
2017-09-14 17:42:01 +02:00
|
|
|
private
|
2018-07-05 13:02:38 +02:00
|
|
|
def receiver_type_definition(compiler)
|
|
|
|
defi = @receiver.slot_definition(compiler)
|
2018-04-08 21:59:42 +02:00
|
|
|
defi.slots << :type
|
|
|
|
defi
|
|
|
|
end
|
2018-07-05 13:02:38 +02:00
|
|
|
def build_condition(ok_label, compiler)
|
2018-03-18 18:06:36 +01:00
|
|
|
cached_type = Mom::SlotDefinition.new(dynamic_call.cache_entry , [:cached_type])
|
2018-07-05 13:02:38 +02:00
|
|
|
current_type = receiver_type_definition(compiler)
|
2018-03-21 08:08:28 +01:00
|
|
|
Mom::NotSameCheck.new(cached_type , current_type, ok_label)
|
2017-09-14 17:42:01 +02:00
|
|
|
end
|
2017-04-01 20:28:57 +02:00
|
|
|
end
|
|
|
|
end
|