Also make risc compilers a linked lists

also via util::compiler_ist
leave collection as much in place as possible
(though collections and seperate block_compilers are about to go)
This commit is contained in:
2019-09-28 15:07:20 +03:00
parent 2eb9364283
commit 9f81d78767
10 changed files with 49 additions and 29 deletions

View File

@ -4,6 +4,7 @@ module Risc
# and to instantiate the methods correctly.
class MethodCompiler < CallableCompiler
include Util::CompilerList
# Methods starts with a Label, both in risc and mom.
# Pass in the callable(method) and the mom label that the method starts with

View File

@ -7,17 +7,28 @@ module Risc
# Initialize with an array of risc MethodCompilers
def initialize(compilers = [])
@method_compilers = compilers
@method_compilers = nil
compilers.each{|c| add_compiler(c)}
end
# collects constants from all compilers into one array
def constants
method_compilers.inject([]){|sum ,comp| sum + comp.constants }
all = []
method_compilers.each_compiler{|comp| all += comp.constants }
all
end
# Append another MomCompilers method_compilers to this one.
def append(mom_compiler)
@method_compilers += mom_compiler.method_compilers
def append(collection)
@method_compilers.add_method_compiler( collection.method_compilers)
self
end
def add_compiler(compiler)
if(@method_compilers)
@method_compilers.add_method_compiler(compiler)
else
@method_compilers = compiler
end
self
end
@ -35,21 +46,22 @@ module Risc
# go through all methods and translate them to cpu, given the translator
def translate_methods(translator)
method_compilers.collect do |compiler|
collection = []
method_compilers.each_compiler do |compiler|
#puts "Translate method #{compiler.callable.name}"
translate_method(compiler , translator)
end.flatten
translate_method(compiler , translator , collection)
end
collection
end
# translate one method, which means the method itself and all blocks inside it
# returns an array of assemblers
def translate_method( method_compiler , translator)
all = []
all << translate_cpu( method_compiler , translator )
def translate_method( method_compiler , translator , collection)
collection << translate_cpu( method_compiler , translator )
method_compiler.block_compilers.each do |block_compiler|
all << translate_cpu(block_compiler , translator)
collection << translate_cpu(block_compiler , translator)
end
all
collection
end
# compile the callable (method or block) to cpu

View File

@ -6,6 +6,7 @@ module Util
def add_method_compiler(comp)
raise "not compiler #{comp.class}" unless comp.respond_to?(:find_compiler)
raise "nil compiler #{self}" unless comp
if(@next_compiler)
@next_compiler.add_method_compiler(comp)
else
@ -18,6 +19,12 @@ module Util
@next_compiler.each_compiler(&block) if @next_compiler
end
def find_compiler_name name
return self if @callable.name == name
return nil unless @next_compiler
@next_compiler.find_compiler_name(name)
end
def find_compiler &block
return self if block.yield(self)
@next_compiler.find_compiler(&block) if @next_compiler