fix init method message setup

was causing errors in interpreter
(that may have gone unnoticed in arm, as the interpreter checks stuff)
This commit is contained in:
Torsten Ruger
2018-03-24 15:59:54 +02:00
parent 65d3d5f1c9
commit 267237b776
4 changed files with 78 additions and 11 deletions

View File

@ -0,0 +1,51 @@
require_relative "helper"
module Risc
class InterpreterAssignLocal < MiniTest::Test
include Ticker
def setup
@string_input = as_main("a = 15 ; return a")
super
end
def test_chain
#show_ticks # get output of what is
check_chain [Branch, Label, LoadConstant, SlotToReg, LoadConstant,
SlotToReg, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
SlotToReg, SlotToReg, SlotToReg, RegToSlot, LoadConstant,
SlotToReg, SlotToReg, SlotToReg, SlotToReg, RegToSlot,
SlotToReg, RegToSlot, LoadConstant, RegToSlot, FunctionCall,
Label, LoadConstant, SlotToReg, RegToSlot, SlotToReg,
SlotToReg, RegToSlot, SlotToReg, SlotToReg, RegToSlot,
SlotToReg, SlotToReg, FunctionReturn, Transfer, Syscall,
NilClass]
assert_equal 15 , get_return
end
def test_call_main
call_ins = ticks(25)
assert_equal FunctionCall , call_ins.class
assert :main , call_ins.method.name
end
def test_load_15
load_ins = ticks 27
assert_equal LoadConstant , load_ins.class
assert_equal 15 , @interpreter.get_register(load_ins.register)
end
def test_transfer
transfer = ticks(39)
assert_equal Transfer , transfer.class
end
def test_sys
sys = ticks(40)
assert_equal Syscall , sys.class
end
def test_return
ret = ticks(38)
assert_equal FunctionReturn , ret.class
link = @interpreter.get_register( ret.register )
assert_equal Label , link.class
end
end
end

View File

@ -11,34 +11,42 @@ module Risc
def test_chain
#show_ticks # get output of what is
check_chain [Branch, Label, LoadConstant, SlotToReg, SlotToReg,
RegToSlot, LoadConstant, RegToSlot, FunctionCall, Label,
LoadConstant, RegToSlot, SlotToReg, SlotToReg, RegToSlot,
SlotToReg, SlotToReg, FunctionReturn, Transfer, Syscall,
NilClass]
check_chain [Branch, Label, LoadConstant, SlotToReg, LoadConstant,
SlotToReg, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
SlotToReg, SlotToReg, SlotToReg, RegToSlot, LoadConstant,
SlotToReg, SlotToReg, SlotToReg, SlotToReg, RegToSlot,
SlotToReg, RegToSlot, LoadConstant, RegToSlot, FunctionCall,
Label, LoadConstant, RegToSlot, SlotToReg, SlotToReg,
RegToSlot, SlotToReg, SlotToReg, FunctionReturn, Transfer,
Syscall, NilClass]
assert_equal 5 , get_return
end
def test_call_main
call_ins = ticks(9)
call_ins = ticks(25)
assert_equal FunctionCall , call_ins.class
assert :main , call_ins.method.name
end
def test_label_main
call_ins = ticks(26)
assert_equal Label , call_ins.class
assert :main , call_ins.name
end
def test_load_5
load_ins = ticks 11
load_ins = ticks 27
assert_equal LoadConstant , load_ins.class
assert_equal 5 , @interpreter.get_register(load_ins.register)
end
def test_transfer
transfer = ticks(19)
transfer = ticks(35)
assert_equal Transfer , transfer.class
end
def test_sys
sys = ticks(20)
sys = ticks(36)
assert_equal Syscall , sys.class
end
def test_return
ret = ticks(18)
ret = ticks(34)
assert_equal FunctionReturn , ret.class
link = @interpreter.get_register( ret.register )
assert_equal Label , link.class