rubyx/lib/sol/yield_statement.rb

60 lines
2.7 KiB
Ruby
Raw Normal View History

module Sol
2018-06-28 19:15:24 +02:00
# A Yield is a lot like a Send, which is why they share the base class CallStatement
# That means it has a receiver (self), arguments and an (implicitly assigned) name
#
# On the ruby side, normalisation works pretty much the same too.
#
# On the way down to SlotMachine, small differences become abvious, as the block that is
# yielded to is an argument. Whereas in a send it is either statically known
# or resolved and cached. Here it is dynamic, but sort of known dynamic.
# All we do before calling it is check that it is the right type.
class YieldStatement < CallStatement
# A Yield breaks down to 2 steps:
2018-06-28 19:15:24 +02:00
# - Setting up the next message, with receiver, arguments, and (importantly) return address
# - a SimpleCall,
def to_slot( compiler )
@parfait_block = @block.to_slot(compiler) if @block
@receiver = SelfExpression.new(compiler.receiver_type) if @receiver.is_a?(SelfExpression)
yield_call(compiler)
2018-06-28 19:15:24 +02:00
end
# this breaks into two parts:
# - check the calling method and break to a (not implemented) dynamic version
# - call the block, that is the last argument of the method
def yield_call(compiler)
method_check(compiler) << yield_arg_block(compiler)
end
# check that the calling method is the method that the block was created in.
# In that case variable resolution is reasy and we can prceed to yield
# Note: the else case is not implemented (ie passing lambdas around)
# this needs run-time variable resolution, which is just not done.
# we brace ourselves with the check, and exit (later raise) if . . .
def method_check(compiler)
ok_label = SlotMachine::Label.new(self,"method_ok_#{self.object_id}")
2020-02-17 08:45:54 +01:00
compile_method = SlotMachine::Slotted.for( compiler.get_method )
runtime_method = SlotMachine::Slotted.for( :message , [ :method] )
check = SlotMachine::NotSameCheck.new(compile_method , runtime_method, ok_label)
2019-10-03 20:07:55 +02:00
# TODO? Maybe create slot instructions for this
#builder = compiler.builder("yield")
2019-09-11 19:17:43 +02:00
#Risc::Macro.exit_sequence(builder)
#check << builder.built
check << ok_label
2018-06-28 19:15:24 +02:00
end
# to call the block (that we know now to be the last arg),
# we do a message setup, arg transfer and the a arg_yield (which is similar to dynamic_call)
def yield_arg_block(compiler)
2018-07-27 11:16:06 +02:00
arg_index = compiler.get_method.arguments_type.get_length - 1
setup = SlotMachine::MessageSetup.new( arg_index )
slot_receive = @receiver.to_slotted(compiler)
2020-02-27 17:19:27 +01:00
args = @arguments.collect { |arg| arg.to_slotted(compiler)}
2019-10-03 20:07:55 +02:00
setup << SlotMachine::ArgumentTransfer.new( self , slot_receive , args )
setup << SlotMachine::BlockYield.new( self , arg_index )
2018-06-28 19:15:24 +02:00
end
end
end