rubyx/lib/arm/passes/main_implementation.rb
Torsten Ruger 5726d2c181 move machine to module level
makes for shorter, more concise, access
also remove one more bug possibility
(reinitiation)
2015-06-01 08:40:17 +03:00

16 lines
363 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.machine.add_pass "Arm::MainImplementation"
end