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.
29 lines
676 B
Ruby
29 lines
676 B
Ruby
require_relative '../helper'
|
|
|
|
module Risc
|
|
class TestAssignLocalIvar < MiniTest::Test
|
|
include Statements
|
|
|
|
def setup
|
|
super
|
|
@input = "@ivar = 5 ; r = @ivar;return"
|
|
@expect = [LoadConstant, SlotToReg, RegToSlot, SlotToReg, SlotToReg, 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(2).register , produced.register
|
|
end
|
|
|
|
end
|
|
end
|