rubyx/test/slot_machine/instructions/test_simple_call.rb

35 lines
916 B
Ruby
Raw Normal View History

2019-09-17 13:16:56 +02:00
require_relative "helper"
module SlotMachine
class TestSimpleCall < SlotMachineInstructionTest
2019-09-17 13:16:56 +02:00
include Parfait::MethodHelper
def instruction
SimpleCall.new( make_method )
end
def est_len
2019-09-17 13:16:56 +02:00
assert_equal 7 , all.length , all_str
end
def test_1_load_return_label
2020-03-08 16:31:39 +01:00
assert_load 1 , Risc::Label , "id_"
assert_label risc(1).constant , "after_meth_" , 1
2019-09-17 13:16:56 +02:00
end
def test_2_load_next_message
2020-03-08 16:31:39 +01:00
assert_slot_to_reg 2 ,:message , 1 , :"message.next_message"
2019-09-17 13:16:56 +02:00
end
def test_3_store_return_address
2020-03-08 16:31:39 +01:00
assert_reg_to_slot 3 , "id_" , :"message.next_message" , 4
2019-09-17 13:16:56 +02:00
end
def test_4_swap_messages
2020-03-08 16:31:39 +01:00
assert_slot_to_reg 4 ,:message , 1 , :message
2019-09-17 13:16:56 +02:00
end
def test_5_call
assert_equal Risc::FunctionCall , risc(5).class
assert_equal :meth , risc(5).method.name
end
def test_6_label
2020-03-08 16:31:39 +01:00
assert_label 6 , "after_meth_"
2019-09-17 13:16:56 +02:00
end
end
end