fix dynamic jump

which gets dynamic resolve and call to work.
FIRST DYNAMIC CALL working
This commit is contained in:
Torsten Ruger 2018-04-09 15:06:46 +03:00
parent 59e6298879
commit d19bd5f98d
4 changed files with 29 additions and 22 deletions

View File

@ -27,10 +27,15 @@ module Mom
def to_risc(compiler) def to_risc(compiler)
compiler.add_constant( @cache_entry ) compiler.add_constant( @cache_entry )
reg = compiler.use_reg( :Object ) reg = compiler.use_reg( :Object )
call = Risc.load_constant( self , @cache_entry , reg ) return_label = Risc::Label.new(self,"continue_#{object_id}")
save_return = SlotLoad.new([:message,:next_message,:return_address],[return_label],self)
moves = save_return.to_risc(compiler)
moves << Risc.slot_to_reg(self, :message , :next_message , Risc.message_reg)
moves << Risc.load_constant( self , @cache_entry , reg )
method_index = Risc.resolve_to_index(:cache_entry , :cached_method) method_index = Risc.resolve_to_index(:cache_entry , :cached_method)
call << Risc::SlotToReg.new( self , reg ,method_index, reg) moves << Risc::SlotToReg.new( self , reg ,method_index, reg)
call << Risc::DynamicJump.new(self, reg ) moves << Risc::DynamicJump.new(self, reg )
moves << return_label
end end
end end

View File

@ -25,8 +25,10 @@ module Mom
save_return = SlotLoad.new([:message,:next_message,:return_address],[return_label],self) save_return = SlotLoad.new([:message,:next_message,:return_address],[return_label],self)
moves = save_return.to_risc(compiler) moves = save_return.to_risc(compiler)
moves << Risc.slot_to_reg(self, :message , :next_message , Risc.message_reg) moves << Risc.slot_to_reg(self, :message , :next_message , Risc.message_reg)
moves << Risc.load_constant(self , method.binary , jump_address) moves << Risc.load_constant(self , method.binary , jump_address)
moves << Risc::FunctionCall.new(self, method ,jump_address) moves << Risc::FunctionCall.new(self, method ,jump_address)
moves << return_label moves << return_label
end end

View File

@ -19,7 +19,8 @@ module Risc
RegToSlot, SlotToReg, SlotToReg, RegToSlot, SlotToReg, RegToSlot, SlotToReg, SlotToReg, RegToSlot, SlotToReg,
SlotToReg, RegToSlot, SlotToReg, RegToSlot, SlotToReg, SlotToReg, RegToSlot, SlotToReg, RegToSlot, SlotToReg,
RegToSlot, SlotToReg, SlotToReg, SlotToReg, RegToSlot, RegToSlot, SlotToReg, SlotToReg, SlotToReg, RegToSlot,
LoadConstant, SlotToReg, DynamicJump] LoadConstant, SlotToReg, RegToSlot, SlotToReg, LoadConstant,
SlotToReg, DynamicJump, Label]
end end
def test_send_instructions def test_send_instructions
@ -37,7 +38,7 @@ module Risc
end end
def test_function_call def test_function_call
produced = produce_body produced = produce_body
assert_equal DynamicJump , produced.next(62).class assert_equal DynamicJump , produced.next(66).class
end end
def test_cache_check def test_cache_check
produced = produce_body produced = produce_body

View File

@ -5,7 +5,7 @@ module Risc
include Ticker include Ticker
def setup def setup
@string_input = as_main("a = 15 ; return a.div10") @string_input = as_main("a = 5 ; return a.mod4")
super super
end end
@ -22,24 +22,23 @@ module Risc
Label, LoadConstant, SlotToReg, OperatorInstruction, IsZero, Label, LoadConstant, SlotToReg, OperatorInstruction, IsZero,
SlotToReg, OperatorInstruction, IsZero, SlotToReg, Branch, SlotToReg, OperatorInstruction, IsZero, SlotToReg, Branch,
Label, LoadConstant, SlotToReg, OperatorInstruction, IsZero, Label, LoadConstant, SlotToReg, OperatorInstruction, IsZero,
SlotToReg, OperatorInstruction, IsZero, SlotToReg, Branch,
Label, LoadConstant, SlotToReg, OperatorInstruction, IsZero,
SlotToReg, OperatorInstruction, IsZero, Label, RegToSlot, SlotToReg, OperatorInstruction, IsZero, Label, RegToSlot,
Label, LoadConstant, SlotToReg, LoadConstant, SlotToReg, Label, LoadConstant, SlotToReg, LoadConstant, SlotToReg,
RegToSlot, RegToSlot, SlotToReg, SlotToReg, RegToSlot, RegToSlot, RegToSlot, SlotToReg, SlotToReg, RegToSlot,
SlotToReg, SlotToReg, RegToSlot, SlotToReg, RegToSlot, SlotToReg, SlotToReg, RegToSlot, SlotToReg, RegToSlot,
SlotToReg, RegToSlot, SlotToReg, SlotToReg, SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg, SlotToReg,
RegToSlot, LoadConstant, SlotToReg, DynamicJump, Label, RegToSlot, LoadConstant, SlotToReg, RegToSlot, SlotToReg,
SlotToReg, SlotToReg, SlotToReg, SlotToReg, SlotToReg, LoadConstant, SlotToReg, DynamicJump, Label, SlotToReg,
SlotToReg, LoadData, OperatorInstruction, LoadData, OperatorInstruction, SlotToReg, LoadData, OperatorInstruction, LoadConstant, SlotToReg,
OperatorInstruction, LoadData, Transfer, OperatorInstruction, OperatorInstruction, SlotToReg, RegToSlot, RegToSlot, RegToSlot, SlotToReg,
LoadData, Transfer, OperatorInstruction, OperatorInstruction, LoadData, SlotToReg, RegToSlot, SlotToReg, SlotToReg, FunctionReturn,
Transfer, OperatorInstruction, OperatorInstruction, LoadData, OperatorInstruction, SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
LoadData, Transfer, OperatorInstruction, OperatorInstruction, Transfer,
LoadData, OperatorInstruction, LoadData, OperatorInstruction, OperatorInstruction,
LoadConstant, SlotToReg, SlotToReg, RegToSlot, RegToSlot,
RegToSlot, SlotToReg, SlotToReg, RegToSlot, SlotToReg, RegToSlot, SlotToReg, SlotToReg, RegToSlot, SlotToReg,
SlotToReg, FunctionReturn, Transfer, Syscall, NilClass] SlotToReg, FunctionReturn, Transfer, Syscall, NilClass]
assert_equal Parfait::Integer , get_return.class assert_equal Parfait::Integer , get_return.class
#assert_equal 1 , get_return.value assert_equal 1 , get_return.value
end end
def test_call_main def test_call_main
@ -53,17 +52,17 @@ module Risc
assert_equal Parfait::CacheEntry , call_ins.constant.class assert_equal Parfait::CacheEntry , call_ins.constant.class
end end
def est_dyn def test_dyn
cal = main_ticks(76) cal = main_ticks(98)
assert_equal DynamicJump , cal.class assert_equal DynamicJump , cal.class
end end
#should end in exit, but doesn't, becasue resolve never returns #should end in exit, but doesn't, becasue resolve never returns
def ttest_sys def test_sys
sys = ticks(20) sys = main_ticks(129)
assert_equal Syscall , sys.class assert_equal Syscall , sys.class
end end
def ttest_return def test_return
ret = ticks(18) ret = main_ticks(127)
assert_equal FunctionReturn , ret.class assert_equal FunctionReturn , ret.class
link = @interpreter.get_register( ret.register ) link = @interpreter.get_register( ret.register )
assert_equal Label , link.class assert_equal Label , link.class