rework resolve_method, using builder

This commit is contained in:
Torsten Ruger 2018-04-07 23:07:44 +03:00
parent bf8e9e508b
commit 6958fc31ab
7 changed files with 33 additions and 36 deletions

View File

@ -27,8 +27,7 @@ module Mom
# Move method name, frame and arguemnt types from the method to the next_message
# Get the message from Space and link it.
def to_risc(compiler)
builder = Risc::Builder.new(compiler)
build_with(builder)
build_with(compiler.builder)
end
# directly called by to_risc

View File

@ -1,6 +1,6 @@
module Mom
# SlotLoad is an abstract base class for moving data into a slot
# SlotLoad is for moving data into a slot, either from another slot, or constant
# A Slot is basically an instance variable, but it must be of known type
#
# The value loaded (the right hand side) can be a constant (Mom::Constant) or come from

View File

@ -55,7 +55,7 @@ module Risc
return risc
end
def add_instruction(ins)
def add(ins)
if(@built)
@built << ins
else

View File

@ -57,42 +57,40 @@ module Risc
def resolve_method( context)
compiler = compiler_for(:Word, :resolve_method , {:value => :Type} )
source = "resolve_method "
me = compiler.add_known( :receiver )
type_arg = compiler.use_reg( :Type )
method = compiler.use_reg( :TypedMethod )
method_name = compiler.use_reg( :Word )
space = compiler.use_reg( :Space )
methods_index = Risc.resolve_to_index(:Type , :methods)
next_index = Risc.resolve_to_index(:TypedMethod , :next_method)
name_index = Risc.resolve_to_index(:TypedMethod , :name)
binary_index = Risc.resolve_to_index(:TypedMethod , :binary)
nil_index = Risc.resolve_to_index(:Space , :nil_object)
while_start = Risc.label( source , source + "while_start_#{object_id}")
exit_label = Risc.label( source , source + "exit_label_#{object_id}")
false_label = Risc.label( source , source + "fal_label_#{object_id}")
compiler.add_slot_to_reg(source + "retrieve args" , :message , :arguments , type_arg )
compiler.add_slot_to_reg(source + "retrieve arg 1", type_arg , 1 + 1, type_arg ) #1 for type
compiler.add_slot_to_reg(source + "get methods from type", type_arg , methods_index, method )
compiler.add_code while_start
compiler.add_load_constant(source + "load space" , Parfait.object_space , space )
compiler.add_slot_to_reg(source + "get nil object", space , nil_index, space )
compiler.add_op(source + "if method is nil", :- , space , method )
compiler.add_code Risc::IsZero.new(source + "jump if nil" , exit_label)
compiler.build do
word << message[ :receiver ]
compiler.add_slot_to_reg(source + "get name from method" , method , name_index, method_name )
compiler.add_op(source + " compare name with me", :- , method_name , me )
compiler.add_code Risc::IsNotZero.new(source + "jump if not same" , false_label)
type << message[:arguments]
type << type[2]
type << type[:type]
typed_method << type[:methods]
add while_start
space << Parfait.object_space
space << space[:nil_object]
compiler.add_slot_to_reg(source + "get binary from method" , method , binary_index, method )
compiler.add_reg_to_slot(source + "save binary to return", method , :message , :return_value)
compiler.add_mom( Mom::ReturnSequence.new)
add Risc.op(source + "if method is nil", :- , space , typed_method )
add Risc::IsZero.new(source + "jump if nil" , exit_label)
compiler.add_code false_label
compiler.add_slot_to_reg(source + "get next method" , method , next_index, method )
compiler.add_code Risc::Branch.new(source + "back to while", while_start)
name << typed_method[:name]
add Risc.op(source + " compare name with me", :- , name , word )
add Risc::IsNotZero.new(source + "jump if not same" , false_label)
compiler.add_code exit_label
typed_method << typed_method[:binary]
message[:return_value] << typed_method
add Mom::ReturnSequence.new.to_risc(compiler)
add false_label
typed_method << typed_method[:next_method]
add Risc::Branch.new(source + "back to while", while_start)
add exit_label
end
Risc::Builtin::Object.emit_syscall( compiler , :exit )
return compiler.method
end

View File

@ -173,7 +173,7 @@ module Risc
# Build with builder (see there), adding the created instructions
def build(&block)
builder.build_and_return(&block)
builder.build(&block)
end
# return a new builder that uses this compiler

View File

@ -73,7 +73,7 @@ module Risc
else
raise "not implemented"
end
builder.add_instruction(ins) if builder
builder.add(ins) if builder
return ins
end
@ -98,7 +98,7 @@ module Risc
def <<( reg )
raise "not reg #{reg}" unless reg.is_a?(RiscValue)
reg_to_slot = Risc.reg_to_slot("#{reg.type} -> #{register.type}[#{index}]" , reg , register, index)
builder.add_instruction(reg_to_slot) if builder
builder.add(reg_to_slot) if builder
reg_to_slot
end

View File

@ -2,7 +2,7 @@ require_relative "../helper"
class FakeBuilder
attr_reader :built
def add_instruction(ins)
def add(ins)
@built = ins
end
end