2014-10-06 18:57:44 +02:00
|
|
|
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
|
2015-05-12 14:36:44 +02:00
|
|
|
Virtual::Machine.instance.add_pass "Arm::MainImplementation"
|
2014-10-06 18:57:44 +02:00
|
|
|
end
|