rubyx/lib/virtual/passes/minimizer.rb

46 lines
1.2 KiB
Ruby
Raw Normal View History

module Virtual
# Remove all functions that are not called
# Not called is approximated by the fact that the method name doesn't show up
# in any function reachable from main
class Minimizer
def run
@gonners = []
Parfait::Space.object_space.classes.values.each do |c|
c.instance_methods.each do |f|
@gonners << f
end
end
init= Parfait::Space.object_space.get_class_by_name(:Kernel).get_instance_method :__init__
remove init
dump_remaining
end
def remove function
index = @gonners.index function
unless index
puts "function was already removed #{ function.name}"
return
end
2015-06-01 07:33:23 +02:00
#puts "stayer #{function.name}"
@gonners.delete function
2015-07-03 19:13:03 +02:00
function.source.blocks.each do |block|
block.codes.each do |code|
if code.is_a? Virtual::MessageSend
@gonners.each do |stay|
2015-06-01 07:33:23 +02:00
remove stay if(stay.name == code.name)
end
end
remove code.method if code.is_a? Virtual::MethodCall
end
end
end
def dump_remaining
2015-05-31 10:07:49 +02:00
@gonners.each do |method|
method.for_class.remove_instance_method method
end
end
end
end