2019-08-12 12:16:15 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
2019-10-03 19:55:41 +02:00
|
|
|
module SlotMachine
|
2019-08-12 12:16:15 +02:00
|
|
|
module Builtin
|
|
|
|
class TestObjectMissingRisc < BootTest
|
|
|
|
def setup
|
2019-09-13 09:41:13 +02:00
|
|
|
@method = get_compiler("Object",:missing)
|
|
|
|
end
|
2019-10-03 19:55:41 +02:00
|
|
|
def test_slot_length
|
2019-09-13 09:41:13 +02:00
|
|
|
assert_equal :method_missing , @method.callable.name
|
2019-10-03 19:55:41 +02:00
|
|
|
assert_equal 7 , @method.slot_instructions.length
|
2019-08-12 12:16:15 +02:00
|
|
|
end
|
|
|
|
def test_compile
|
|
|
|
assert_equal Risc::MethodCompiler , @method.to_risc.class
|
|
|
|
end
|
|
|
|
def test_risc_length
|
2019-09-17 19:18:00 +02:00
|
|
|
assert_equal 15 , @method.to_risc.risc_instructions.length
|
2019-08-12 12:16:15 +02:00
|
|
|
end
|
2020-03-06 17:09:56 +01:00
|
|
|
def test_all
|
2020-03-10 16:36:53 +01:00
|
|
|
assert_load 1 , Parfait::Word , "id_word_"
|
|
|
|
assert_transfer 2 , "id_word_" , :r1
|
|
|
|
assert_syscall 3 , :died
|
|
|
|
assert_slot_to_reg 4 , :message , 5 , "message.return_value"
|
|
|
|
assert_reg_to_slot 5 , "message.return_value" , :message , 5
|
|
|
|
assert_branch 6 , "return_label"
|
|
|
|
assert_label 7 , "return_label"
|
2020-03-06 17:09:56 +01:00
|
|
|
end
|
|
|
|
def test_return
|
2020-03-10 16:36:53 +01:00
|
|
|
assert_return(7)
|
2020-03-06 17:09:56 +01:00
|
|
|
end
|
2019-08-12 12:16:15 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|