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