b980def84e
Also make the machine the singleton and space hang off it Many repercussions, not all fixed in this commit
14 lines
344 B
Ruby
14 lines
344 B
Ruby
module Arm
|
|
|
|
class ConstantImplementation
|
|
def run block
|
|
block.codes.dup.each do |code|
|
|
next unless code.is_a? Register::LoadConstant
|
|
load = ArmMachine.ldr( code.value , code.constant )
|
|
block.replace(code , load )
|
|
end
|
|
end
|
|
end
|
|
Virtual::Machine.instance.add_pass "Arm::ConstantImplementation"
|
|
end
|