rubyx/lib/compiler/call_site_expression.rb

27 lines
1.3 KiB
Ruby
Raw Normal View History

module Compiler
# operators are really function calls
2014-07-25 10:48:06 +02:00
# call_site - attr_reader :name, :args , :receiver
2015-05-05 14:11:09 +02:00
def self.compile_callsite expession , method , message
me = Compiler.compile( expession.receiver , method, message )
method.add_code Virtual::NewMessage.new
method.add_code Virtual::Set.new(Virtual::NewSelf.new(me.type), me)
method.add_code Virtual::Set.new(Virtual::NewName.new(), Virtual::StringConstant.new(expession.name))
compiled_args = []
expession.args.each_with_index do |arg , i|
#compile in the running method, ie before passing control
2015-05-05 14:11:09 +02:00
val = Compiler.compile( arg , method, message)
# move the compiled value to it's slot in the new message
to = Virtual::NewMessageSlot.new(i ,val.type , val)
# (doing this immediately, not after the loop, so if it's a return it won't get overwritten)
method.add_code Virtual::Set.new(to , val )
compiled_args << to
end
method.add_code Virtual::MessageSend.new(expession.name , me , compiled_args) #and pass control
# the effect of the method is that the NewMessage Return slot will be filled, return it
# (this is what is moved _inside_ above loop for such expressions that are calls (or constants))
2015-05-06 07:38:29 +02:00
Virtual::Return.new( method.return_type )
2014-07-13 15:00:48 +02:00
end
end