rubyx/test/sol/send/test_send_cached_simple.rb

36 lines
1.0 KiB
Ruby
Raw Normal View History

require_relative "../helper"
module Sol
class TestSendCachedSimpleSlotMachine < MiniTest::Test
include SolCompile
def setup
@compiler = compile_main( "a = 5; a.div4;return ")
@ins = @compiler.slot_instructions.next
2017-12-05 20:46:37 +01:00
end
def test_check_type
assert_equal NotSameCheck , @ins.next(1).class , @ins
2017-09-14 17:42:01 +02:00
end
def test_type_update
2018-03-16 15:32:22 +01:00
load = @ins.next(2)
assert_equal :message , load.right.known_object , load
2019-08-23 09:21:22 +02:00
assert_equal :local1 , load.right.slots[0] , load
assert_equal :type , load.right.slots[1] , load
2017-09-14 17:42:01 +02:00
end
def test_check_resolve_call
assert_equal ResolveMethod , @ins.next(3).class , @ins
end
def test_dynamic_call_last
assert_equal DynamicCall , @ins.next(7).class , @ins
2017-12-05 20:46:37 +01:00
end
def test_array
check_array [SlotLoad, NotSameCheck, SlotLoad, ResolveMethod ,
Label, MessageSetup, ArgumentTransfer, DynamicCall,
SlotLoad, ReturnJump, Label ,
ReturnSequence, Label] , @ins
2018-03-15 16:21:46 +01:00
end
end
end