rubyx/test/risc/interpreter/calling/test_mod.rb

52 lines
1.7 KiB
Ruby
Raw Normal View History

2018-04-23 12:16:46 +02:00
require_relative "../helper"
2015-08-04 21:01:20 +02:00
module Risc
class InterpreterMod < MiniTest::Test
2017-01-03 21:42:40 +01:00
include Ticker
2017-01-03 21:42:40 +01:00
def setup
2018-04-19 09:00:55 +02:00
@string_input = as_main "return 9.div4"
2017-01-03 21:42:40 +01:00
super
end
2015-10-16 16:13:08 +02:00
def test_chain
#show_main_ticks # get output of what is
2018-05-24 20:20:56 +02:00
check_main_chain [LoadConstant, LoadConstant, SlotToReg, RegToSlot, RegToSlot,
2018-04-07 17:58:44 +02:00
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
RegToSlot, SlotToReg, RegToSlot, Branch, SlotToReg,
RegToSlot, LoadConstant, SlotToReg, RegToSlot, LoadConstant,
SlotToReg, RegToSlot, SlotToReg, FunctionCall, SlotToReg,
SlotToReg, LoadData, OperatorInstruction, LoadConstant, SlotToReg,
SlotToReg, RegToSlot, RegToSlot, RegToSlot, SlotToReg,
SlotToReg, RegToSlot, Branch, SlotToReg, SlotToReg,
SlotToReg, FunctionReturn, SlotToReg, SlotToReg, RegToSlot,
Branch, SlotToReg, SlotToReg, RegToSlot, SlotToReg,
SlotToReg, RegToSlot, SlotToReg, SlotToReg, SlotToReg,
FunctionReturn, SlotToReg, SlotToReg, Branch, Transfer,
Syscall, NilClass]
assert_equal 2 , get_return
2017-01-03 21:42:40 +01:00
end
2015-08-04 21:01:20 +02:00
def test_load
lod = main_ticks(17)
assert_equal LoadConstant , lod.class
assert_equal 9 , lod.constant.value
2017-01-03 21:42:40 +01:00
end
def test_fix # reduce self to fix
sl = main_ticks(26)
assert_equal SlotToReg , sl.class
assert_equal :r1 , sl.array.symbol
assert_equal 2 , sl.index
assert_equal :r1 , sl.register.symbol
assert_equal 9 , @interpreter.get_register(:r1)
2017-01-03 21:42:40 +01:00
end
def test_sys
sys = main_ticks(61)
assert_equal Syscall , sys.class
assert_equal :exit , sys.name
2017-01-03 21:42:40 +01:00
end
2015-08-04 21:01:20 +02:00
end
end