rubyx/lib/register/passes/set_implementation.rb

47 lines
1.3 KiB
Ruby
Raw Normal View History

Virtual::MessageSlot.class_eval do
def reg
Register::RegisterReference.message_reg
end
end
Virtual::FrameSlot.class_eval do
def reg
Register::RegisterReference.frame_reg
end
end
Virtual::SelfSlot.class_eval do
def reg
Register::RegisterReference.self_reg
end
end
2015-06-20 23:21:42 +02:00
Virtual::NextMessageSlot.class_eval do
def reg
Register::RegisterReference.new_message_reg
end
end
module Register
# This implements setting of the various slot variables the vm defines.
# Basic mem moves, but have to shuffle the type nibbles (TODO!)
2014-08-23 12:57:14 +02:00
class SetImplementation
def run block
block.codes.dup.each do |code|
next unless code.is_a? Virtual::Set
# resolve the register and offset that we need to move to
to = code.to.reg
# need a temporay place because of indexed load/store
tmp = RegisterReference.tmp_reg
# for constants we have to "move" the constants value
2015-06-01 07:33:23 +02:00
if( code.from.is_a?(Parfait::Value) or code.from.is_a?(Symbol))
move1 = LoadConstant.new( tmp , code.from )
else # while otherwise we "load"
move1 = GetSlot.new( code.from.reg , code.from.index , tmp )
2014-08-23 19:25:19 +02:00
end
move2 = SetSlot.new( tmp , to , code.to.index )
block.replace(code , [move1,move2] )
2014-08-23 12:57:14 +02:00
end
end
end
Virtual.machine.add_pass "Register::SetImplementation"
2014-08-23 12:57:14 +02:00
end