return the linker from mom_compiler

linker holds assemblers
assemblers come from method compilation
and so the layers come into focus
This commit is contained in:
Torsten Ruger
2018-07-01 21:51:48 +03:00
parent 5f2a256608
commit 22408b86c6
8 changed files with 35 additions and 30 deletions

View File

@ -13,7 +13,7 @@ module Mom
assert_equal MomCompiler , @comp.class
end
def test_compilers
assert_equal 1 , @comp.method_compilers.length
assert_equal 24 , @comp.method_compilers.length
end
def test_has_translate
assert @comp.translate(:interpreter)
@ -29,16 +29,19 @@ module Mom
end
def test_translate_class
assert_equal Array , @trans.class
assert_equal Risc::Linker , @trans.class
end
def test_translate_platform
assert_kind_of Risc::Platform , @trans.platform
end
def test_translate_assemblers
assert_equal Risc::Assembler , @trans.first.class
assert_equal Risc::Assembler , @trans.assemblers.first.class
end
def test_assembler_code
assert_equal Risc::Label , @trans.first.instructions.class
assert_equal Risc::Label , @trans.assemblers.first.instructions.class
end
def test_assembler_assembled
assert_equal Risc::LoadConstant , @trans.first.instructions.next.class
assert_equal Risc::SlotToReg , @trans.assemblers.first.instructions.next.class
end
end
end