Torsten Rüger
1e5073200c
both in mom and risc method complers alll just compilers now, all linked Required to move some code down into callable_compiler but all in all quite little. cleaner
47 lines
1.3 KiB
Ruby
47 lines
1.3 KiB
Ruby
module Mom
|
|
|
|
# A BlockCompiler is much like a MehtodCompiler, exept for blocks
|
|
#
|
|
class BlockCompiler < CallableCompiler
|
|
|
|
attr_reader :block , :mom_instructions
|
|
alias :block :callable
|
|
|
|
def initialize( block , method)
|
|
@method = method
|
|
super(block)
|
|
end
|
|
|
|
def source_name
|
|
"#{@method.self_type.name}.init"
|
|
end
|
|
|
|
def to_risc
|
|
risc_compiler = Risc::BlockCompiler.new(@callable , @method , mom_instructions)
|
|
instructions_to_risc(risc_compiler)
|
|
#recursive blocks not done
|
|
risc_compiler
|
|
end
|
|
|
|
# determine how given name need to be accsessed.
|
|
# For blocks the options are args or frame
|
|
# or then the methods arg or frame
|
|
def slot_type_for(name)
|
|
if index = @callable.arguments_type.variable_index(name)
|
|
slot_def = ["arg#{index}".to_sym]
|
|
elsif index = @callable.frame_type.variable_index(name)
|
|
slot_def = ["local#{index}".to_sym]
|
|
elsif index = @method.arguments_type.variable_index(name)
|
|
slot_def = [:caller , :caller , "arg#{index}".to_sym]
|
|
elsif index = @method.frame_type.variable_index(name)
|
|
slot_def = [:caller ,:caller , "local#{index}".to_sym ]
|
|
elsif
|
|
raise "no variable #{name} , need to resolve at runtime"
|
|
end
|
|
return slot_def
|
|
end
|
|
|
|
|
|
end
|
|
end
|