2018-08-06 09:11:12 +02:00
|
|
|
require_relative "../helper"
|
|
|
|
|
|
|
|
module Risc
|
|
|
|
class TestCompilerBuilder < MiniTest::Test
|
|
|
|
|
|
|
|
def setup
|
|
|
|
Parfait.boot!
|
|
|
|
Risc.boot!
|
|
|
|
@init = Parfait.object_space.get_init
|
|
|
|
@compiler = Risc::MethodCompiler.new( @init )
|
2018-08-19 12:16:07 +02:00
|
|
|
@builder = @compiler.builder(@init)
|
2018-08-06 09:11:12 +02:00
|
|
|
end
|
|
|
|
def test_inserts_built
|
|
|
|
r1 = RegisterValue.new(:r1 , :Space)
|
2018-08-14 18:39:46 +02:00
|
|
|
@builder.build{ space! << r1 }
|
2018-08-06 09:11:12 +02:00
|
|
|
assert_equal Transfer , @compiler.risc_instructions.next.class
|
2018-08-08 19:53:06 +02:00
|
|
|
assert_equal RegisterValue , @builder.space.class
|
|
|
|
end
|
|
|
|
def test_loads
|
2018-08-14 18:39:46 +02:00
|
|
|
@builder.build{ space! << Parfait.object_space }
|
2018-08-08 19:53:06 +02:00
|
|
|
assert_equal LoadConstant , @compiler.risc_instructions.next.class
|
|
|
|
assert_equal RegisterValue , @builder.space.class
|
|
|
|
end
|
|
|
|
def test_two
|
2018-08-14 18:39:46 +02:00
|
|
|
@builder.build{ space! << Parfait.object_space ; integer! << 1}
|
2018-08-08 19:53:06 +02:00
|
|
|
assert_equal LoadConstant , @compiler.risc_instructions.next.class
|
|
|
|
assert_equal LoadData , @compiler.risc_instructions.next(2).class
|
|
|
|
end
|
|
|
|
def test_swap
|
|
|
|
test_two
|
|
|
|
@builder.swap_names( :space , :integer)
|
|
|
|
assert_equal :Integer , @builder.space.type.class_name
|
|
|
|
assert_equal :Space , @builder.integer.type.class_name
|
2018-08-06 09:11:12 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|