2015-06-29 19:58:52 +02:00
|
|
|
|
2014-08-23 20:49:09 +02:00
|
|
|
module Register
|
2015-05-24 14:31:30 +02:00
|
|
|
# This implements setting of the various slot variables the vm defines.
|
2014-10-03 10:07:18 +02:00
|
|
|
# Basic mem moves, but have to shuffle the type nibbles (TODO!)
|
2015-05-24 14:31:30 +02:00
|
|
|
|
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
|
2014-09-14 20:26:30 +02:00
|
|
|
# need a temporay place because of indexed load/store
|
2015-06-29 19:58:52 +02:00
|
|
|
tmp = Register.tmp_reg
|
2014-09-14 20:26:30 +02:00
|
|
|
# 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))
|
2015-06-25 15:31:09 +02:00
|
|
|
move1 = LoadConstant.new( code.from , tmp )
|
2014-09-14 20:26:30 +02:00
|
|
|
else # while otherwise we "load"
|
2015-06-30 08:39:45 +02:00
|
|
|
move1 = Register.get_slot( code.from.object_name , get_index(code.from) , tmp )
|
2014-08-23 19:25:19 +02:00
|
|
|
end
|
2015-06-30 08:39:45 +02:00
|
|
|
move2 = Register.set_slot( tmp , code.to.object_name , get_index(code.to) )
|
2014-09-14 20:26:30 +02:00
|
|
|
block.replace(code , [move1,move2] )
|
2014-08-23 12:57:14 +02:00
|
|
|
end
|
|
|
|
end
|
2015-06-29 19:58:52 +02:00
|
|
|
|
|
|
|
def get_index from
|
|
|
|
case from
|
|
|
|
when Virtual::Self , Virtual::NewSelf
|
|
|
|
return Register.resolve_index( :message , :receiver)
|
|
|
|
when Virtual::MessageName , Virtual::NewMessageName
|
|
|
|
return Register.resolve_index( :message , :name)
|
|
|
|
when Virtual::NewArgSlot
|
|
|
|
puts "from: #{from.index}"
|
|
|
|
return Register.resolve_index( :message , :name) + 1 + from.index
|
|
|
|
else
|
|
|
|
raise "not implemented for #{from.class}"
|
|
|
|
end
|
|
|
|
end
|
2014-08-23 12:57:14 +02:00
|
|
|
end
|
2015-06-01 07:40:17 +02:00
|
|
|
Virtual.machine.add_pass "Register::SetImplementation"
|
2014-08-23 12:57:14 +02:00
|
|
|
end
|