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

51 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,
2018-05-24 20:20:56 +02:00
RegToSlot, SlotToReg, RegToSlot, SlotToReg, RegToSlot,
LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
RegToSlot, SlotToReg, FunctionCall, SlotToReg, SlotToReg,
LoadData, OperatorInstruction, LoadConstant, SlotToReg, SlotToReg,
RegToSlot, RegToSlot, RegToSlot, SlotToReg, SlotToReg,
RegToSlot, SlotToReg, SlotToReg, FunctionReturn, SlotToReg,
SlotToReg, RegToSlot, SlotToReg, SlotToReg, RegToSlot,
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
FunctionReturn, Transfer, Syscall, NilClass]
assert_equal Parfait::Integer , get_return.class
assert_equal 2 , get_return.value
2017-01-03 21:42:40 +01:00
end
2015-08-04 21:01:20 +02:00
def test_load
2018-05-24 20:20:56 +02:00
lod = main_ticks(16)
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
2018-05-24 20:20:56 +02:00
sl = main_ticks(25)
assert_equal SlotToReg , sl.class
assert_equal :r1 , sl.array.symbol
assert_equal 3 , 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
2018-05-24 20:20:56 +02:00
sys = main_ticks(53)
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