2018-03-24 16:55:01 +01:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Risc
|
|
|
|
class InterpreterDynamicCall < MiniTest::Test
|
|
|
|
include Ticker
|
|
|
|
|
|
|
|
def setup
|
2018-04-19 09:00:55 +02:00
|
|
|
@string_input = as_main("a = 5 ; return a.div4")
|
2018-03-24 16:55:01 +01:00
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_chain
|
2018-04-04 19:05:09 +02:00
|
|
|
#show_main_ticks # get output of what is
|
2018-05-24 20:20:56 +02:00
|
|
|
check_main_chain [LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
|
|
|
|
SlotToReg, SlotToReg, SlotToReg, OperatorInstruction, IsZero,
|
2018-05-25 19:40:39 +02:00
|
|
|
SlotToReg, SlotToReg, SlotToReg, Branch, LoadConstant,
|
|
|
|
RegToSlot, LoadConstant, LoadConstant, SlotToReg, SlotToReg,
|
2018-05-24 20:20:56 +02:00
|
|
|
LoadConstant, SlotToReg, OperatorInstruction, IsZero, SlotToReg,
|
2018-05-25 19:40:39 +02:00
|
|
|
OperatorInstruction, IsZero, Branch, SlotToReg, Branch,
|
|
|
|
LoadConstant, SlotToReg, OperatorInstruction, IsZero, SlotToReg,
|
|
|
|
OperatorInstruction, IsZero, Branch, SlotToReg, Branch,
|
|
|
|
LoadConstant, SlotToReg, OperatorInstruction, IsZero, SlotToReg,
|
|
|
|
OperatorInstruction, IsZero, Branch, SlotToReg, Branch,
|
|
|
|
LoadConstant, SlotToReg, OperatorInstruction, IsZero, SlotToReg,
|
|
|
|
OperatorInstruction, IsZero, Branch, SlotToReg, Branch,
|
|
|
|
LoadConstant, SlotToReg, OperatorInstruction, IsZero, SlotToReg,
|
|
|
|
OperatorInstruction, IsZero, Branch, SlotToReg, Branch,
|
|
|
|
LoadConstant, SlotToReg, OperatorInstruction, IsZero, SlotToReg,
|
|
|
|
OperatorInstruction, IsZero, RegToSlot, Branch, LoadConstant,
|
|
|
|
SlotToReg, LoadConstant, SlotToReg, RegToSlot, RegToSlot,
|
|
|
|
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
|
2018-07-22 21:29:32 +02:00
|
|
|
RegToSlot, RegToSlot, Branch, SlotToReg, RegToSlot,
|
|
|
|
SlotToReg, SlotToReg, SlotToReg, RegToSlot, LoadConstant,
|
|
|
|
SlotToReg, RegToSlot, SlotToReg, LoadConstant, SlotToReg,
|
|
|
|
DynamicJump, SlotToReg, SlotToReg, LoadData, OperatorInstruction,
|
|
|
|
LoadConstant, SlotToReg, SlotToReg, RegToSlot, RegToSlot,
|
|
|
|
RegToSlot, SlotToReg, SlotToReg, RegToSlot, Branch,
|
|
|
|
SlotToReg, SlotToReg, SlotToReg, FunctionReturn, SlotToReg,
|
2018-05-30 11:54:40 +02:00
|
|
|
SlotToReg, RegToSlot, SlotToReg, SlotToReg, RegToSlot,
|
2018-07-22 21:29:32 +02:00
|
|
|
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
|
|
|
|
SlotToReg, FunctionReturn, Transfer, SlotToReg, SlotToReg,
|
|
|
|
Branch, Syscall, NilClass]
|
2018-06-19 17:55:47 +02:00
|
|
|
assert_equal Fixnum , get_return.class
|
|
|
|
assert_equal 1 , get_return
|
2018-03-24 16:55:01 +01:00
|
|
|
end
|
|
|
|
|
2018-04-03 11:55:28 +02:00
|
|
|
def test_call_main
|
2018-07-22 21:29:32 +02:00
|
|
|
call_ins = ticks(25)
|
2018-03-24 16:55:01 +01:00
|
|
|
assert_equal FunctionCall , call_ins.class
|
|
|
|
assert_equal :main , call_ins.method.name
|
|
|
|
end
|
2018-04-08 21:30:18 +02:00
|
|
|
def test_load_entry
|
2018-05-24 20:20:56 +02:00
|
|
|
call_ins = main_ticks(4)
|
2018-04-08 21:30:18 +02:00
|
|
|
assert_equal LoadConstant , call_ins.class
|
|
|
|
assert_equal Parfait::CacheEntry , call_ins.constant.class
|
2018-04-03 11:55:28 +02:00
|
|
|
end
|
|
|
|
|
2018-04-09 14:06:46 +02:00
|
|
|
def test_dyn
|
2018-07-22 21:29:32 +02:00
|
|
|
cal = main_ticks(106)
|
2018-04-02 15:36:43 +02:00
|
|
|
assert_equal DynamicJump , cal.class
|
|
|
|
end
|
2018-04-09 14:06:46 +02:00
|
|
|
def test_return
|
2018-07-22 21:29:32 +02:00
|
|
|
ret = main_ticks(137)
|
2018-03-24 16:55:01 +01:00
|
|
|
assert_equal FunctionReturn , ret.class
|
|
|
|
link = @interpreter.get_register( ret.register )
|
2018-05-30 11:54:40 +02:00
|
|
|
assert_equal Fixnum , link.class
|
2018-03-24 16:55:01 +01:00
|
|
|
end
|
2018-04-24 19:16:50 +02:00
|
|
|
def test_sys
|
2018-07-22 21:29:32 +02:00
|
|
|
sys = main_ticks(142)
|
2018-04-24 19:16:50 +02:00
|
|
|
assert_equal Syscall , sys.class
|
|
|
|
end
|
2018-03-24 16:55:01 +01:00
|
|
|
end
|
|
|
|
end
|