2018-11-24 21:40:22 +01:00
|
|
|
require_relative "../helper"
|
|
|
|
|
|
|
|
module Risc
|
|
|
|
# Test the alloc sequence used by all integer operations
|
|
|
|
class InterpreterIntAlloc < MiniTest::Test
|
|
|
|
include Ticker
|
|
|
|
|
|
|
|
def setup
|
|
|
|
@string_input = as_main("return 5 + 5")
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_chain
|
2019-08-16 20:43:54 +02:00
|
|
|
# show_main_ticks # get output of what is
|
2019-08-23 18:25:02 +02:00
|
|
|
check_main_chain [LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg, #5
|
|
|
|
RegToSlot, LoadConstant, SlotToReg, RegToSlot, LoadConstant, #10
|
|
|
|
SlotToReg, RegToSlot, SlotToReg, FunctionCall, LoadConstant, #15
|
|
|
|
SlotToReg, LoadConstant, OperatorInstruction, IsNotZero, SlotToReg, #20
|
|
|
|
RegToSlot, SlotToReg, SlotToReg, SlotToReg, SlotToReg, #25
|
|
|
|
OperatorInstruction, RegToSlot, RegToSlot, SlotToReg, SlotToReg, #30
|
|
|
|
Branch, RegToSlot, SlotToReg, SlotToReg, SlotToReg, #35
|
|
|
|
FunctionReturn, SlotToReg, RegToSlot, Branch, SlotToReg, #40
|
|
|
|
SlotToReg, RegToSlot, SlotToReg, SlotToReg, SlotToReg, #45
|
|
|
|
FunctionReturn, Transfer, SlotToReg, SlotToReg, Syscall, #50
|
|
|
|
NilClass,] #55
|
2018-11-24 21:40:22 +01:00
|
|
|
assert_equal 10 , get_return
|
|
|
|
end
|
|
|
|
def base_ticks(num)
|
2019-08-23 18:25:02 +02:00
|
|
|
main_ticks(14 + num)
|
2019-08-23 14:31:22 +02:00
|
|
|
end
|
|
|
|
def test_base
|
2019-08-23 18:25:02 +02:00
|
|
|
assert_equal FunctionCall , main_ticks( 14 ).class
|
2018-11-24 21:40:22 +01:00
|
|
|
end
|
|
|
|
def test_load_factory
|
2019-08-23 14:31:22 +02:00
|
|
|
lod = base_ticks( 1 )
|
2018-11-24 21:40:22 +01:00
|
|
|
assert_load( lod , Parfait::Factory , :r2)
|
|
|
|
assert_equal :next_integer , lod.constant.attribute_name
|
|
|
|
end
|
|
|
|
def test_slot_receiver #load next_object from factory
|
2019-08-23 14:31:22 +02:00
|
|
|
sl = base_ticks( 2 )
|
2018-11-24 21:40:22 +01:00
|
|
|
assert_slot_to_reg( sl , :r2 , 2 , :r1)
|
|
|
|
end
|
|
|
|
def test_load_nil
|
2019-08-23 14:31:22 +02:00
|
|
|
lod = base_ticks( 3 )
|
2018-11-24 21:40:22 +01:00
|
|
|
assert_load( lod , Parfait::NilClass , :r3)
|
|
|
|
end
|
|
|
|
def test_nil_check
|
2019-08-23 14:31:22 +02:00
|
|
|
op = base_ticks(4)
|
2018-11-24 21:40:22 +01:00
|
|
|
assert_equal OperatorInstruction , op.class
|
|
|
|
assert_equal :- , op.operator
|
|
|
|
assert_equal :r3 , op.left.symbol
|
|
|
|
assert_equal :r1 , op.right.symbol
|
2019-02-07 17:24:35 +01:00
|
|
|
assert_equal ::Integer , @interpreter.get_register(:r3).class
|
2018-11-24 21:40:22 +01:00
|
|
|
assert 0 != @interpreter.get_register(:r3)
|
|
|
|
end
|
|
|
|
def test_branch
|
2019-08-23 14:31:22 +02:00
|
|
|
br = base_ticks( 5 )
|
2018-11-24 21:40:22 +01:00
|
|
|
assert_equal IsNotZero , br.class
|
|
|
|
assert br.label.name.start_with?("cont_label")
|
|
|
|
end
|
|
|
|
def test_load_next_int
|
2019-08-23 14:31:22 +02:00
|
|
|
sl = base_ticks( 6 )
|
2018-11-24 21:40:22 +01:00
|
|
|
assert_slot_to_reg( sl , :r1 , 1 , :r4)
|
|
|
|
end
|
|
|
|
def test_move_next_back_to_factory
|
2019-08-23 14:31:22 +02:00
|
|
|
int = base_ticks( 7 )
|
2018-11-24 21:40:22 +01:00
|
|
|
assert_reg_to_slot( int , :r4 , :r2 , 2)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|