f7dfa1c45e
result of translate is cpu instructions, our equivalent of assembly. So return Assemblers for next stage
44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
module Mom
|
|
class ClassCompiler
|
|
attr_reader :clazz , :method_compilers
|
|
|
|
def initialize(clazz , compilers)
|
|
@clazz = clazz
|
|
@method_compilers = compilers
|
|
end
|
|
|
|
# Translate code to whatever cpu is specified.
|
|
# Currently only :arm and :interpret
|
|
#
|
|
# Translating means translating the initial jump
|
|
# and then translating all methods
|
|
def translate( platform_sym )
|
|
platform_sym = platform_sym.to_s.capitalize
|
|
platform = Risc::Platform.for(platform_sym)
|
|
translate_methods( platform.translator )
|
|
#@cpu_init = risc_init.to_cpu(@platform.translator)
|
|
end
|
|
|
|
# go through all methods and translate them to cpu, given the translator
|
|
def translate_methods(translator)
|
|
method_compilers.collect do |compiler|
|
|
#log.debug "Translate method #{compiler.method.name}"
|
|
translate_cpu(compiler , translator)
|
|
end
|
|
end
|
|
|
|
def translate_cpu(compiler , translator)
|
|
risc = compiler.risc_instructions
|
|
cpu_instructions = risc.to_cpu(translator)
|
|
nekst = risc.next
|
|
while(nekst)
|
|
cpu = nekst.to_cpu(translator) # returning nil means no replace
|
|
cpu_instructions << cpu if cpu
|
|
nekst = nekst.next
|
|
end
|
|
Risc::Assembler.new(compiler.method , cpu_instructions)
|
|
end
|
|
|
|
end
|
|
end
|