rubyx/lib/vool/statements/send_statement.rb

125 lines
5.2 KiB
Ruby
Raw Normal View History

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)
2017-04-02 11:59:07 +02:00
class SendStatement < Statement
attr_reader :name , :receiver , :arguments
def initialize(name , receiver , arguments )
@name , @receiver , @arguments = name , receiver , arguments
@arguments ||= []
2017-04-02 17:25:30 +02:00
end
2017-04-08 11:10:42 +02:00
def normalize
#TODO normalize arguments. In first stage args must be variables or hoisted (like while/if)
# later sends ok, but then they must execute
# (currently we only use the args as slot_definition so they are not "momed")
@arguments.each_with_index do |arg , index |
raise "arg #{index} does not provide slot definition #{arg}" unless arg.respond_to?(:slot_definition)
raise "Sends not implemented yet at #{index}:#{arg}" if arg.is_a?(SendStatement)
end
SendStatement.new(@name, @receiver , @arguments)
end
def each(&block)
block.call(self)
block.call(@receiver)
@arguments.each do |arg|
block.call(arg)
end
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
# 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
#
# FIXME: we now presume direct (assignable) values for the arguments and receiver.
# in a not so distant future, temporary variables will have to be created
# and complex statements hoisted to assign to them. pps: same as in conditions
def to_mom( in_method )
@receiver = SelfExpression.new(in_method.for_type) if @receiver.is_a?(SelfExpression)
2017-09-10 21:54:56 +02:00
if(@receiver.ct_type)
simple_call(in_method)
2017-09-10 21:54:56 +02:00
else
cached_call(in_method)
2017-09-10 21:54:56 +02:00
end
end
# When used as right hand side, this tells what data to move to get the result into
# a varaible. It is (off course) the return value of the message
def slot_definition(in_method)
Mom::SlotDefinition.new(:message ,[ :return_value])
end
def message_setup(in_method,called_method)
setup = Mom::MessageSetup.new( called_method )
mom_receive = @receiver.slot_definition(in_method)
2017-09-10 21:54:56 +02:00
arg_target = [:message , :next_message , :arguments]
args = []
@arguments.each_with_index do |arg , index| # +1 because of type, + 1 beacuse 1-indexed
args << Mom::SlotLoad.new( arg_target + [index+1+1] , arg.slot_definition(in_method))
end
setup << Mom::ArgumentTransfer.new( mom_receive , args )
end
def simple_call(in_method)
type = @receiver.ct_type
called_method = type.resolve_method(@name)
raise "No method #{@name} for #{type}" unless called_method
message_setup(in_method,called_method) << Mom::SimpleCall.new(called_method)
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
def cached_call(in_method)
2018-03-16 06:02:11 +01:00
cache_check(in_method) << call_cached_method(in_method)
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
def cache_check(in_method)
ok = Mom::Label.new("cache_ok_#{self.object_id}")
check = build_condition(ok) # if cached_type != current_type
check << build_type_cache_update # cached_type = current_type
check << build_method_cache_update(in_method)# cached_method = current_type.resolve_method(method.name)
check << ok
2017-09-14 15:07:02 +02:00
end
# 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
2017-09-14 15:07:02 +02:00
def call_cached_method(in_method)
message_setup(in_method,dynamic_call.cache_entry) << dynamic_call
2017-09-14 15:07:02 +02:00
end
2017-12-05 20:46:37 +01:00
2017-09-14 17:42:01 +02:00
private
def build_condition(ok_label)
2018-03-18 18:06:36 +01:00
cached_type = Mom::SlotDefinition.new(dynamic_call.cache_entry , [:cached_type])
current_type = Mom::SlotDefinition.new(:message , [:receiver , :type])
Mom::NotSameCheck.new(cached_type , current_type, ok_label)
2017-09-14 17:42:01 +02:00
end
def build_type_cache_update
2018-03-18 18:06:36 +01:00
Mom::SlotLoad.new([dynamic_call.cache_entry, :cached_type] , [:message , :receiver , :type])
2017-09-14 17:42:01 +02:00
end
2018-03-10 14:17:36 +01:00
def build_method_cache_update(in_method)
2018-03-25 12:27:15 +02:00
receiver = SymbolConstant.new(@name)
resolve = SendStatement.new(:resolve_method , receiver , [@receiver])
2018-03-18 18:06:36 +01:00
move_method = Mom::SlotLoad.new([dynamic_call.cache_entry, :cached_method] , [:message , :return_value])
2018-03-10 14:17:36 +01:00
resolve.to_mom(in_method) << move_method
2017-09-14 17:42:01 +02:00
end
2017-04-01 20:28:57 +02:00
end
end