2018-04-23 12:16:46 +02:00
|
|
|
require_relative "../helper"
|
2015-08-04 21:01:20 +02:00
|
|
|
|
2017-01-19 08:02:29 +01:00
|
|
|
module Risc
|
2018-03-31 11:38:30 +02:00
|
|
|
class InterpreterMod < MiniTest::Test
|
2017-01-03 21:42:40 +01:00
|
|
|
include Ticker
|
2015-10-05 23:27:13 +02:00
|
|
|
|
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
|
|
|
|
2018-03-22 17:54:40 +01:00
|
|
|
def test_chain
|
2018-04-04 19:05:09 +02:00
|
|
|
#show_main_ticks # get output of what is
|
2018-08-12 14:02:23 +02:00
|
|
|
check_main_chain [LoadConstant, LoadConstant, SlotToReg, SlotToReg, RegToSlot,
|
|
|
|
RegToSlot, RegToSlot, RegToSlot, LoadConstant, SlotToReg, # 10
|
|
|
|
RegToSlot, LoadConstant, SlotToReg, Branch, RegToSlot,
|
|
|
|
SlotToReg, FunctionCall, SlotToReg, SlotToReg, LoadData, # 20
|
|
|
|
OperatorInstruction, LoadConstant, SlotToReg, SlotToReg, RegToSlot,
|
|
|
|
RegToSlot, RegToSlot, SlotToReg, SlotToReg, RegToSlot, # 30
|
|
|
|
Branch, LoadConstant, SlotToReg, RegToSlot, RegToSlot,
|
|
|
|
SlotToReg, SlotToReg, SlotToReg, FunctionReturn, SlotToReg, # 40
|
|
|
|
SlotToReg, RegToSlot, SlotToReg, SlotToReg, RegToSlot,
|
|
|
|
Branch, SlotToReg, SlotToReg, RegToSlot, Branch, # 50
|
|
|
|
LoadConstant, SlotToReg, RegToSlot, RegToSlot, SlotToReg,
|
|
|
|
SlotToReg, SlotToReg, FunctionReturn, Transfer, SlotToReg, # 60
|
|
|
|
SlotToReg, Syscall, NilClass, ]
|
2018-06-19 17:55:47 +02:00
|
|
|
assert_equal 2 , get_return
|
2017-01-03 21:42:40 +01:00
|
|
|
end
|
2015-08-04 21:01:20 +02:00
|
|
|
|
2018-04-01 14:13:12 +02:00
|
|
|
def test_load
|
2018-08-12 14:02:23 +02:00
|
|
|
lod = main_ticks(9)
|
2018-04-01 14:13:12 +02:00
|
|
|
assert_equal LoadConstant , lod.class
|
|
|
|
assert_equal 9 , lod.constant.value
|
2017-01-03 21:42:40 +01:00
|
|
|
end
|
2018-04-01 14:13:12 +02:00
|
|
|
def test_fix # reduce self to fix
|
2018-08-12 14:02:23 +02:00
|
|
|
sl = main_ticks(19)
|
2018-04-01 14:13:12 +02:00
|
|
|
assert_equal SlotToReg , sl.class
|
|
|
|
assert_equal :r1 , sl.array.symbol
|
2018-05-28 14:09:59 +02:00
|
|
|
assert_equal 2 , sl.index
|
2018-04-01 14:13:12 +02:00
|
|
|
assert_equal :r1 , sl.register.symbol
|
|
|
|
assert_equal 9 , @interpreter.get_register(:r1)
|
2017-01-03 21:42:40 +01:00
|
|
|
end
|
2017-01-04 20:36:46 +01:00
|
|
|
|
2015-08-04 21:01:20 +02:00
|
|
|
end
|
|
|
|
end
|