remove the space instance from register machine

bad design, probably from the booting
This commit is contained in:
Torsten Ruger
2016-12-30 14:04:59 +02:00
parent ef872edd7a
commit a00f6be3ba
30 changed files with 121 additions and 94 deletions

View File

@ -21,29 +21,18 @@ module Register
@booted = false
@constants = []
end
attr_reader :constants
attr_reader :space , :class_mappings , :init , :objects , :booted
attr_reader :constants , :init , :objects , :booted
# idea being that later method missing could catch translate_xxx and translate to target xxx
# now we just instantiate ArmTranslater and pass instructions
def translate_arm
methods = collect_methods
methods = Parfait::Space.object_space.collect_methods
translate_methods( methods )
label = @init.next
@init = Arm::Translator.new.translate( @init )
@init.append label
end
def collect_methods
methods = []
self.space.types.each do |hash , t|
t.methods.each do |f|
methods << f
end
end
methods
end
def translate_methods(methods)
translator = Arm::Translator.new
methods.each do |method|
@ -75,7 +64,7 @@ module Register
def boot
initialize
boot_parfait!
@init = Branch.new( "__initial_branch__" , self.space.get_init.instructions )
@init = Branch.new( "__initial_branch__" , Parfait::Space.object_space.get_init.instructions )
@booted = true
self
end