2018-04-20 09:27:06 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Risc
|
|
|
|
class TestWhileCmp < MiniTest::Test
|
|
|
|
include Statements
|
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
2019-08-17 22:29:42 +02:00
|
|
|
@input = "while(5 > 0) ; @a = true; end;return"
|
2019-08-23 14:31:04 +02:00
|
|
|
@expect = [Label, LoadConstant, RegToSlot, LoadConstant, SlotToReg, #4
|
|
|
|
RegToSlot, LoadConstant, SlotToReg, RegToSlot, LoadConstant, #9
|
|
|
|
SlotToReg, RegToSlot, SlotToReg, FunctionCall, Label, #14
|
|
|
|
SlotToReg, LoadConstant, OperatorInstruction, IsZero, LoadConstant, #19
|
|
|
|
OperatorInstruction, IsZero, LoadConstant, SlotToReg, RegToSlot, #24
|
|
|
|
Branch, Label, LoadConstant, RegToSlot, Branch,] #29
|
2018-04-20 09:27:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_while_instructions
|
|
|
|
assert_nil msg = check_nil , msg
|
|
|
|
end
|
|
|
|
def test_label
|
|
|
|
assert_equal Risc::Label , produce_body.class
|
|
|
|
end
|
|
|
|
def test_int_load_5
|
|
|
|
produced = produce_body
|
2019-08-23 14:31:04 +02:00
|
|
|
load = produced.next(3)
|
2018-04-20 09:27:06 +02:00
|
|
|
assert_equal Risc::LoadConstant , load.class
|
|
|
|
assert_equal Parfait::Integer , load.constant.class
|
|
|
|
assert_equal 5 , load.constant.value
|
|
|
|
end
|
|
|
|
def test_int_load_0
|
|
|
|
produced = produce_body
|
2019-08-23 14:31:04 +02:00
|
|
|
load = produced.next(6)
|
2018-04-20 09:27:06 +02:00
|
|
|
assert_equal Risc::LoadConstant , load.class
|
|
|
|
assert_equal Parfait::Integer , load.constant.class
|
|
|
|
assert_equal 0 , load.constant.value
|
|
|
|
end
|
|
|
|
def test_false_check
|
|
|
|
produced = produce_body
|
2019-08-23 14:31:04 +02:00
|
|
|
assert_equal Risc::IsZero , produced.next(18).class
|
|
|
|
assert produced.next(18).label.name.start_with?("merge_label") , produced.next(18).label.name
|
2018-04-20 09:27:06 +02:00
|
|
|
end
|
|
|
|
def test_nil_load
|
|
|
|
produced = produce_body
|
2019-08-23 14:31:04 +02:00
|
|
|
assert_equal Risc::LoadConstant , produced.next(22).class
|
|
|
|
assert_equal Parfait::TrueClass , produced.next(22).constant.class
|
2018-04-20 09:27:06 +02:00
|
|
|
end
|
|
|
|
|
2019-08-23 14:31:04 +02:00
|
|
|
def ttest_back_jump # should jump back to condition label
|
2018-04-20 09:27:06 +02:00
|
|
|
produced = produce_body
|
2019-08-22 21:56:44 +02:00
|
|
|
assert_equal Risc::Branch , produced.next(31).class
|
|
|
|
assert_equal produced.name , produced.next(31).label.name
|
2018-04-20 09:27:06 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|