2018-03-19 16:50:11 +01:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Risc
|
|
|
|
class TestIfNoElse < MiniTest::Test
|
|
|
|
include Statements
|
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@input = "if(@a) ; arg = 5 ; end"
|
2018-03-20 09:00:38 +01:00
|
|
|
@expect = [SlotToReg, SlotToReg, LoadConstant, IsSame, LoadConstant, IsSame ,
|
|
|
|
Label, LoadConstant, SlotToReg, RegToSlot, Label]
|
2018-03-19 16:50:11 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_if_instructions
|
|
|
|
assert_nil msg = check_nil , msg
|
|
|
|
end
|
|
|
|
|
2018-03-20 09:00:38 +01:00
|
|
|
def test_false_load
|
2018-03-19 16:50:11 +01:00
|
|
|
produced = produce_body
|
2018-03-21 22:08:06 +01:00
|
|
|
assert_equal Mom::FalseConstant , produced.next(2).constant.class
|
2018-03-19 16:50:11 +01:00
|
|
|
end
|
2018-03-20 09:00:38 +01:00
|
|
|
def test_false_check
|
|
|
|
produced = produce_body
|
|
|
|
assert_equal produced.next(10) , produced.next(3).label
|
|
|
|
end
|
|
|
|
def test_nil_load
|
|
|
|
produced = produce_body
|
2018-03-21 22:08:06 +01:00
|
|
|
assert_equal Mom::NilConstant , produced.next(4).constant.class
|
2018-03-20 09:00:38 +01:00
|
|
|
end
|
|
|
|
def test_nil_check
|
|
|
|
produced = produce_body
|
|
|
|
assert_equal produced.next(10) , produced.next(5).label
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_true_label
|
|
|
|
produced = produce_body
|
|
|
|
assert produced.next(6).name.start_with?("true_label")
|
|
|
|
end
|
|
|
|
|
2018-03-19 16:50:11 +01:00
|
|
|
end
|
|
|
|
end
|