2018-03-20 09:00:38 +01:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Risc
|
|
|
|
class TestIfElse < MiniTest::Test
|
|
|
|
include Statements
|
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@input = "if(@a) ; arg = 5 ; else; arg = 6; end"
|
2018-04-19 09:34:15 +02:00
|
|
|
@expect = [SlotToReg, SlotToReg, LoadConstant, OperatorInstruction, IsZero,
|
|
|
|
LoadConstant, OperatorInstruction, IsZero, Label, LoadConstant,
|
|
|
|
SlotToReg, RegToSlot, Branch, Label, LoadConstant,
|
2018-03-24 17:54:36 +01:00
|
|
|
SlotToReg, RegToSlot, Label]
|
2018-03-20 09:00:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_if_instructions
|
|
|
|
assert_nil msg = check_nil , msg
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_false_load
|
|
|
|
produced = produce_body
|
2018-03-31 12:47:02 +02:00
|
|
|
assert_equal Parfait::FalseClass , produced.next(2).constant.class
|
2018-03-20 09:00:38 +01:00
|
|
|
end
|
|
|
|
def test_false_check
|
|
|
|
produced = produce_body
|
2018-03-24 17:54:36 +01:00
|
|
|
assert_equal produced.next(13) , produced.next(4).label
|
2018-03-20 09:00:38 +01:00
|
|
|
end
|
|
|
|
def test_nil_load
|
|
|
|
produced = produce_body
|
2018-03-31 12:47:02 +02:00
|
|
|
assert_equal Parfait::NilClass , produced.next(5).constant.class
|
2018-03-20 09:00:38 +01:00
|
|
|
end
|
|
|
|
def test_nil_check
|
|
|
|
produced = produce_body
|
2018-03-24 17:54:36 +01:00
|
|
|
assert_equal produced.next(13) , produced.next(7).label
|
2018-03-20 09:00:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_true_label
|
|
|
|
produced = produce_body
|
2018-03-24 17:54:36 +01:00
|
|
|
assert produced.next(8).name.start_with?("true_label")
|
2018-03-20 09:00:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_merge_label
|
|
|
|
produced = produce_body
|
2018-03-24 17:54:36 +01:00
|
|
|
assert produced.next(17).name.start_with?("merge_label")
|
2018-03-20 09:00:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_true_jump # should jumpp to merge label
|
|
|
|
produced = produce_body
|
2018-03-24 17:54:36 +01:00
|
|
|
assert produced.next(12).label.name.start_with?("merge_label")
|
2018-03-20 09:00:38 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|