Torsten Rüger
4bf23defc8
preloading, something akin to builtin, loads some very small predefined (macro) methods for the tests to work (ie call)
40 lines
1.1 KiB
Ruby
40 lines
1.1 KiB
Ruby
require_relative "../helper"
|
|
|
|
module Risc
|
|
class TestCallSimple < MiniTest::Test
|
|
include Statements
|
|
|
|
def setup
|
|
@preload = "Integer.div4"
|
|
@input = "5.div4"
|
|
@expect = [LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg, #5
|
|
RegToSlot, LoadConstant, SlotToReg, RegToSlot, SlotToReg, #10
|
|
FunctionCall, Label, SlotToReg, RegToSlot, Branch,] #15
|
|
end
|
|
|
|
def test_send_instructions
|
|
assert_nil msg = check_nil , msg
|
|
end
|
|
def test_load_5
|
|
produced = produce_body.next(3)
|
|
assert_load( produced , Parfait::Integer)
|
|
assert_equal 5 , produced.constant.value
|
|
end
|
|
def test_load_label
|
|
produced = produce_body.next(6)
|
|
assert_load( produced , Label)
|
|
end
|
|
def test_function_call
|
|
produced = produce_body.next(10)
|
|
assert_equal FunctionCall , produced.class
|
|
assert_equal :div4 , produced.method.name
|
|
end
|
|
def test_check_continue
|
|
produced = produce_body.next(11)
|
|
assert_equal Label , produced.class
|
|
assert produced.name.start_with?("continue_")
|
|
end
|
|
#TODO check the message setup, type and frame moves
|
|
end
|
|
end
|