rubyx/lib/arm/passes/get_implementation.rb
Torsten Ruger b980def84e move space to parfait
Also make the machine the singleton
and space hang off it

Many repercussions, not all fixed in this commit
2015-05-12 15:36:44 +03:00

14 lines
343 B
Ruby

module Arm
class GetImplementation
def run block
block.codes.dup.each do |code|
next unless code.is_a? Register::GetSlot
load = ArmMachine.ldr( code.value , code.reference , code.index )
block.replace(code , load )
end
end
end
Virtual::Machine.instance.add_pass "Arm::GetImplementation"
end