2018-03-19 16:28:53 +05:30
|
|
|
require_relative '../helper'
|
2018-03-17 11:13:44 +05:30
|
|
|
|
|
|
|
module Risc
|
2018-04-19 19:23:12 +03:00
|
|
|
class TestAssignLocalInt < MiniTest::Test
|
2018-03-17 11:13:44 +05:30
|
|
|
include Statements
|
|
|
|
|
|
|
|
def setup
|
2019-08-17 23:29:42 +03:00
|
|
|
@input = "r = 5;return"
|
2019-08-23 10:21:22 +03:00
|
|
|
@expect = [LoadConstant, RegToSlot, LoadConstant, RegToSlot, Branch]
|
2018-03-17 11:13:44 +05:30
|
|
|
end
|
|
|
|
def test_local_assign_instructions
|
|
|
|
assert_nil msg = check_nil , msg
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_constant_load
|
|
|
|
produced = produce_body
|
2018-03-22 02:38:06 +05:30
|
|
|
assert_equal 5 , produced.constant.value
|
2018-03-17 11:13:44 +05:30
|
|
|
end
|
|
|
|
|
2018-03-24 15:59:54 +02:00
|
|
|
def test_frame_load
|
|
|
|
produced = produce_body
|
2018-07-15 15:16:12 +03:00
|
|
|
assert_equal :Message , produced.next(1).array.type.class_name
|
2019-08-23 10:21:22 +03:00
|
|
|
assert_equal 16 , produced.next(1).index # 4 is frame
|
2018-03-24 15:59:54 +02:00
|
|
|
end
|
|
|
|
def test_value_load
|
2018-03-17 11:13:44 +05:30
|
|
|
produced = produce_body
|
2019-08-23 10:21:22 +03:00
|
|
|
assert_equal produced.next(1).register , produced.register
|
2018-03-17 11:13:44 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|