rubyx/test/vool/to_mom/send/test_send_cached_simple.rb
Torsten Ruger fa797f722d to_risc for NotSameCheck
which is only used in call cache checking
some fixing, needed to add a abel for the cache check jump
2018-03-21 12:38:28 +05:30

35 lines
971 B
Ruby

require_relative "../helper"
module Vool
class TestSendCachedSimpleMom < MiniTest::Test
include MomCompile
include Mom
def setup
Risc.machine.boot
@ins = compile_first_method( "a = 5; a.mod4")
end
def test_check_type
assert_equal NotSameCheck , @ins.next.class , @ins
end
def test_type_update
load = @ins.next(2)
assert_equal :message , load.right.known_object , load
assert_equal :receiver , load.right.slots[0] , load
assert_equal :type , load.right.slots[1] , load
end
def test_check_resolve_call
assert_equal SimpleCall , @ins.next(5).class , @ins
end
def test_dynamic_call_last
assert_equal DynamicCall , @ins.last.class , @ins
end
def test_array
check_array [SlotLoad, NotSameCheck, SlotLoad, MessageSetup, ArgumentTransfer, SimpleCall ,
SlotLoad, Label, MessageSetup, ArgumentTransfer, DynamicCall] , @ins
end
end
end