rubyx/lib/arm/passes/main_implementation.rb
2014-10-06 19:57:44 +03:00

16 lines
372 B
Ruby

module Arm
# "Boot" the register machine at the function given
class MainImplementation
def run block
block.codes.dup.each do |code|
next unless code.is_a? Register::RegisterMain
call = ArmMachine.b( code.method )
block.replace(code , call )
end
end
end
Virtual::BootSpace.space.add_pass "Arm::MainImplementation"
end