rubyx/lib/arm/passes/call_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

20 lines
723 B
Ruby

module Arm
# This implements call logic, which is simply like a c call (not send, that involves lookup and all sorts)
#
# The only target for a call is a CompiledMethod, so we just need to get the address for the code
# and call it.
#
# The only slight snag is that we would need to assemble before getting the address, but to assemble
# we'd have to have finished compiling. So we need a reference.
class CallImplementation
def run block
block.codes.dup.each do |code|
next unless code.is_a? Register::FunctionCall
call = ArmMachine.call( code.method )
block.replace(code , call )
end
end
end
Virtual::Machine.instance.add_pass "Arm::CallImplementation"
end