Torsten Rüger
c43436f35a
rather large commit, but essentially a simple rename Rationale in docs and blogs
52 lines
1.5 KiB
Ruby
52 lines
1.5 KiB
Ruby
require_relative "helper"
|
|
|
|
module SlotMachine
|
|
class TestSlotLoad3 < MiniTest::Test
|
|
include Parfait::MethodHelper
|
|
|
|
def setup
|
|
Parfait.boot!(Parfait.default_test_options)
|
|
method = make_method
|
|
@compiler = Risc::FakeCompiler.new
|
|
@cache_entry = Parfait::CacheEntry.new(method.frame_type, method)
|
|
load = SlotLoad.new("test", [@cache_entry , :cached_type] , [:message, :type] )
|
|
load.to_risc(@compiler)
|
|
@instructions = @compiler.instructions
|
|
end
|
|
def test_ins_next_class
|
|
assert_equal Risc::SlotToReg , @instructions[0].class
|
|
assert_equal Risc::LoadConstant, @instructions[1].class
|
|
end
|
|
|
|
def test_ins_next_class
|
|
assert_equal Risc::RegToSlot , @instructions[2].class
|
|
assert_equal NilClass , @instructions[3].class
|
|
end
|
|
def test_ins_load
|
|
assert_equal :r1 , @instructions[1].register.symbol
|
|
assert_equal Parfait::CacheEntry , @instructions[1].constant.class
|
|
end
|
|
|
|
def test_ins_next_reg
|
|
assert_equal :r1 , @instructions[0].register.symbol
|
|
end
|
|
def test_ins_next_arr
|
|
assert_equal :r0 , @instructions[0].array.symbol
|
|
end
|
|
def test_ins_next_index
|
|
assert_equal 0 , @instructions[0].index
|
|
end
|
|
|
|
def test_ins_next_2_reg
|
|
assert_equal :r1 , @instructions[2].register.symbol
|
|
end
|
|
def test_ins_next_2_arr
|
|
assert_equal :r1 , @instructions[2].array.symbol
|
|
end
|
|
def test_ins_next_2_index
|
|
assert_equal 1 , @instructions[2].index
|
|
end
|
|
|
|
end
|
|
end
|