2018-03-19 11:58:53 +01:00
|
|
|
require_relative '../helper'
|
2018-03-17 06:43:44 +01:00
|
|
|
|
|
|
|
module Risc
|
2018-03-19 08:49:42 +01:00
|
|
|
class TestAssignLocalSend < MiniTest::Test
|
2018-03-17 06:43:44 +01:00
|
|
|
include Statements
|
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
2018-03-19 08:49:42 +01:00
|
|
|
@input = "r = 5.mod4"
|
2018-03-22 18:14:22 +01:00
|
|
|
@expect = [LoadConstant, SlotToReg, SlotToReg, RegToSlot, LoadConstant, SlotToReg ,
|
|
|
|
SlotToReg, SlotToReg, SlotToReg, RegToSlot, LoadConstant, SlotToReg ,
|
|
|
|
SlotToReg, SlotToReg, SlotToReg, RegToSlot, LoadConstant, SlotToReg ,
|
|
|
|
RegToSlot, LoadConstant, SlotToReg, RegToSlot, SlotToReg, LoadConstant ,
|
|
|
|
FunctionCall, Label, SlotToReg, SlotToReg, RegToSlot]
|
2018-03-17 06:43:44 +01:00
|
|
|
end
|
|
|
|
def test_local_assign_instructions
|
|
|
|
assert_nil msg = check_nil , msg
|
|
|
|
end
|
|
|
|
|
2018-03-21 14:24:42 +01:00
|
|
|
def test_constant_load
|
2018-03-17 06:43:44 +01:00
|
|
|
produced = produce_body
|
2018-03-22 18:14:22 +01:00
|
|
|
assert_equal 5 , produced.next(16).constant.value
|
2018-03-17 06:43:44 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|