Torsten Rüger
5a43cbff15
previous commit affected rather many test, as the implicit returns add extra instructions Also added some explicit returns, so as not to test the return logic too much. return (ie return nl) is a knonwn 3 risc operation.
35 lines
837 B
Ruby
35 lines
837 B
Ruby
require_relative '../helper'
|
|
|
|
module Risc
|
|
class TestAssignIvarConst < MiniTest::Test
|
|
include Statements
|
|
|
|
def setup
|
|
super
|
|
@input = "@ivar = 5;return"
|
|
@expect = [LoadConstant, SlotToReg, RegToSlot, LoadConstant, RegToSlot, Branch]
|
|
end
|
|
|
|
def test_local_assign_instructions
|
|
assert_nil msg = check_nil , msg
|
|
end
|
|
|
|
def test_constant_load
|
|
produced = produce_body
|
|
assert_equal 5 , produced.constant.value
|
|
end
|
|
|
|
def test_slot_move
|
|
produced = produce_body
|
|
assert_equal produced.next.next.register , produced.register
|
|
end
|
|
|
|
def test_load_self_from_message
|
|
produced = produce_body
|
|
assert_equal :r0 , produced.next.array.symbol , produced.next.to_rxf[0..200]
|
|
assert_equal 2 , produced.next.index , produced.next.to_rxf[0..200]
|
|
end
|
|
|
|
end
|
|
end
|