Fixed almost all but Interpreter

150 only failing, seems only 1 bug though
and one in linker
This commit is contained in:
Torsten Rüger 2019-08-13 00:13:29 +03:00
parent 9474932320
commit aaf169ad8d
23 changed files with 92 additions and 100 deletions

View File

@ -22,6 +22,7 @@ module Mom
attr_reader :method_source attr_reader :method_source
def initialize(method_source) def initialize(method_source)
raise "no nil" unless method_source
@method_source = method_source @method_source = method_source
end end

View File

@ -65,7 +65,7 @@ module Mom
# temporary, need to raise really. # temporary, need to raise really.
factory! << Parfait.object_space.get_factory_for(:Integer) factory! << Parfait.object_space.get_factory_for(:Integer)
integer_tmp! << factory[:reserve] integer_tmp! << factory[:reserve]
Risc::Builtin::Object.emit_syscall( builder , :exit ) #uses integer_tmp Mom::Builtin.emit_syscall( builder , :exit ) #uses integer_tmp
add_code ok_label add_code ok_label
cache_entry[:cached_method] << callable_method cache_entry[:cached_method] << callable_method

View File

@ -186,7 +186,7 @@ module Risc
# populate the position caches (forward and revese) with the given position # populate the position caches (forward and revese) with the given position
# forward caches object -> position # forward caches object -> position
# reverse caches position.at > position # reverse caches position.at > position
# Labels do not participatein reverse cache # Labels do not participate in reverse cache
def self.set_cache( position , to) def self.set_cache( position , to)
postest = Position.positions[position.object] unless to < 0 postest = Position.positions[position.object] unless to < 0
raise "Mismatch #{position}" if postest and postest != position raise "Mismatch #{position}" if postest and postest != position

View File

@ -1,5 +1,14 @@
module RubyX module RubyX
# The RubyXCompiler provides the main interface to create binaries # The RubyXCompiler provides the main interface to create binaries, and also
# give helper functions to create any intermediate layer.
# Layers are:
# - ruby , always needed as input, string
# - vool - intermediate language layer
# - mom - intermediate machine layer
# - risc - "last" intermediate machine layer
# - target - arm or interpreter binary code
# - binary - "linked" code, everything need to create an elf binary
#
# #
# There are methods to go from ruby to any of the layers in the system # There are methods to go from ruby to any of the layers in the system
# (mainly for testing). ruby_to_binary creates actual binary code # (mainly for testing). ruby_to_binary creates actual binary code
@ -38,42 +47,59 @@ module RubyX
to_binary(platform) to_binary(platform)
end end
# Process previously stored vool source to binary. # ruby_to_target creates Target instructions (but does not link)
# Binary code is generated byu calling to_risc, then positioning and calling #
# create_binary on the linker. The linker may then be used to creat a binary file. # After creating vool, we call to_target
# The biary the method name refers to is binary code in memory, or in BinaryCode # Return a Linker
# objects to be precise. def ruby_to_target(ruby)
def to_binary(platform) ruby_to_vool(ruby)
linker = to_risc to_target()
linker.position_all
linker.create_binary(platform)
linker
end end
# ruby_to_risc creates Risc instructions (as the name implies), but also # ruby_to_risc creates Risc instructions
# translates those to the platform given
# #
# After creating vool, we call to_risc # After creating vool, we call to_risc
# Return a RiscCollection
def ruby_to_risc(ruby) def ruby_to_risc(ruby)
ruby_to_vool(ruby) ruby_to_vool(ruby)
to_risc() to_risc()
end end
# Process previously stored vool source. First to mom, then to risc. # Transform the incoming ruby source (string) to mom
def to_risc() #
mom = to_mom # The vool is stored using ruby_to_vool,the to_mom is called
mom.to_risc() # Return Mom Statement
end
# ruby_to_mom does exactly that, it transform the incoming ruby source (string)
# to mom
# The vool is stored using ruby_to_vool, and if there was previous source,
# this will also be momed
def ruby_to_mom(ruby) def ruby_to_mom(ruby)
ruby_to_vool(ruby) ruby_to_vool(ruby)
to_mom to_mom
end end
# Process previously stored vool source to binary.
# Binary code is generated by calling to_risc, then positioning and calling
# create_binary on the linker. The linker may then be used to creat a binary file.
# The biary the method name refers to is binary code in memory, or in BinaryCode
# objects to be precise.
def to_binary(platform)
linker = to_target(platform)
linker.position_all
linker.create_binary
linker
end
# transform stored vool to target code
# return a linker
def to_target(platform)
collection = to_risc
collection.translate(platform)
end
# Process previously stored vool source to risc.
# return a Risc::RiscCollection , a collection of MethodCompilers
def to_risc()
mom = to_mom
mom.to_risc()
end
# return mom for the previously stored vool source. # return mom for the previously stored vool source.
def to_mom def to_mom
@vool.to_mom(nil) @vool.to_mom(nil)

View File

@ -4,17 +4,17 @@ module Mom
class TestSlotLoadBasics < MiniTest::Test class TestSlotLoadBasics < MiniTest::Test
def test_ins_ok def test_ins_ok
assert SlotLoad.new( [:message, :caller] , [:receiver,:type] ) assert SlotLoad.new("test", [:message, :caller] , [:receiver,:type] )
end end
def test_ins_fail1 def test_ins_fail1
assert_raises {SlotLoad.new( [:message, :caller] , nil )} assert_raises {SlotLoad.new( "test",[:message, :caller] , nil )}
end end
def test_fail_on_right def test_fail_on_right
@load = SlotLoad.new( [:message, :caller] , [:receiver,:type] ) @load = SlotLoad.new( "test",[:message, :caller] , [:receiver,:type] )
assert_raises {@load.to_risc(Risc::FakeCompiler.new)} assert_raises {@load.to_risc(Risc::FakeCompiler.new)}
end end
def test_fail_on_left_long def test_fail_on_left_long
@load = SlotLoad.new( [:message, :caller , :type] , [:receiver,:type] ) @load = SlotLoad.new("test", [:message, :caller , :type] , [:receiver,:type] )
assert_raises {@load.to_risc(Risc::FakeCompiler.new)} assert_raises {@load.to_risc(Risc::FakeCompiler.new)}
end end
end end

View File

@ -5,7 +5,7 @@ module Mom
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
load = SlotLoad.new( [:message, :caller] , [:message,:type] ) load = SlotLoad.new("test", [:message, :caller] , [:message,:type] )
@compiler = Risc::FakeCompiler.new @compiler = Risc::FakeCompiler.new
load.to_risc(@compiler) load.to_risc(@compiler)
@instructions = @compiler.instructions @instructions = @compiler.instructions

View File

@ -6,7 +6,7 @@ module Mom
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
@compiler = Risc::FakeCompiler.new @compiler = Risc::FakeCompiler.new
load = SlotLoad.new( [:message, :caller, :type] , [:message, :caller , :type] ) load = SlotLoad.new( "test",[:message, :caller, :type] , [:message, :caller , :type] )
load.to_risc(@compiler) load.to_risc(@compiler)
@instructions = @compiler.instructions @instructions = @compiler.instructions
end end

View File

@ -2,7 +2,7 @@
require_relative "helper" require_relative "helper"
module Vool module Vool
class TestClassStatement < MiniTest::Test class TestClassStatementMom < MiniTest::Test
include MomCompile include MomCompile
def setup def setup

View File

@ -1,40 +0,0 @@
require_relative "helper"
module Mom
class TestMomCompiler < MiniTest::Test
include MomCompile
def setup
Parfait.boot!(Parfait.default_test_options)
@comp = compile_mom( "class Test ; def main(); return 'Hi'; end; end;")
end
def test_class
assert_equal MomCompiler , @comp.class
end
def test_compilers
assert_equal 23 , @comp.compilers.length
end
def test_boot_compilers
assert_equal 22 , @comp.boot_compilers.length
end
def test_compilers_bare
assert_equal 22 , MomCompiler.new.compilers.length
end
def test_returns_constants
assert_equal Array , @comp.constants.class
end
def test_has_constant
assert_equal "Hi" , @comp.constants[1].to_string
end
def test_has_translate
assert @comp.translate(:interpreter)
end
def test_append_class
assert_equal MomCompiler, (@comp.append @comp).class
end
def test_append_length
assert_equal 2 , @comp.append(@comp).method_compilers.length
end
end
end

View File

@ -4,11 +4,11 @@ module Parfait
class TestMethods < ParfaitTest class TestMethods < ParfaitTest
def setup def setup
super super
Risc::Builtin.boot_functions Mom.boot!
end end
def test_integer def test_integer
int = Parfait.object_space.get_class_by_name :Integer int = Parfait.object_space.get_class_by_name :Integer
assert_equal 14, int.instance_type.method_names.get_length assert_equal 13, int.instance_type.method_names.get_length
end end
def test_methods_booted def test_methods_booted
word = @space.get_type_by_class_name(:Word) word = @space.get_type_by_class_name(:Word)

View File

@ -1,9 +1,9 @@
require_relative "helper" require_relative "../helper"
# TODO move these to interpreter dir # TODO move these to interpreter dir
module Mom module Risc
module Builtin module Builtin
class IntCmp < BuiltinTest class IntCmp < Minitest::Test
include Ticker include Ticker
def setup def setup
end end

View File

@ -1,8 +1,8 @@
require_relative "helper" require_relative "../helper"
module Mom module Risc
module Builtin module Builtin
class IntMath < BuiltinTest class IntMath < Minitest::Test
include Ticker include Ticker
def setup def setup
end end

View File

@ -5,7 +5,7 @@ module Risc
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
Risc.boot! Risc.boot!
@linker = Mom::MomCompiler.new.translate(:interpreter) @linker = Mom::MomCollection.new.to_risc.translate(:interpreter)
@binary = Parfait::BinaryCode.new(1) @binary = Parfait::BinaryCode.new(1)
@method = Parfait.object_space.types.values.first.methods @method = Parfait.object_space.types.values.first.methods
@label = Risc.label("hi","ho") @label = Risc.label("hi","ho")

View File

@ -4,8 +4,9 @@ module Risc
class TestMachinePositions < MiniTest::Test class TestMachinePositions < MiniTest::Test
def setup_for(platform) def setup_for(platform)
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
Mom.boot!
Risc.boot! Risc.boot!
@linker = Mom::MomCompiler.new.translate(platform) @linker = Mom::MomCollection.new.to_risc.translate(platform)
@linker.position_all @linker.position_all
end end
def test_cpu_init def test_cpu_init

View File

@ -5,9 +5,10 @@ module Risc
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
Mom.boot!
Risc.boot! Risc.boot!
init = Parfait.object_space.get_init init = Parfait.object_space.get_init
@builder = Risc::MethodCompiler.new( init ).builder(init) @builder = Risc::MethodCompiler.new( init ,Mom::Label.new( "source_name", "return_label")).builder(init)
@label = Risc.label("source","name") @label = Risc.label("source","name")
@start = @builder.compiler.current @start = @builder.compiler.current
end end

View File

@ -5,9 +5,10 @@ module Risc
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
Mom.boot!
Risc.boot! Risc.boot!
@init = Parfait.object_space.get_init @init = Parfait.object_space.get_init
@compiler = Risc::MethodCompiler.new( @init ) @compiler = Risc::MethodCompiler.new( @init , Mom::Label.new( "source_name", "return_label"))
@builder = @compiler.builder(@init) @builder = @compiler.builder(@init)
end end
def test_inserts_built def test_inserts_built
@ -42,7 +43,7 @@ module Risc
end end
def test_allocate_len def test_allocate_len
int = @builder.allocate_int int = @builder.allocate_int
assert_equal 41 , @builder.compiler.risc_instructions.length assert_equal 28 , @builder.compiler.risc_instructions.length
end end
end end
end end

View File

@ -5,9 +5,10 @@ module Risc
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
Mom.boot!
Risc.boot! Risc.boot!
@init = Parfait.object_space.get_init @init = Parfait.object_space.get_init
@compiler = Risc::MethodCompiler.new( @init ) @compiler = Risc::MethodCompiler.new( @init, Mom::Label.new( "source_name", "return_label") )
@builder = @compiler.builder(@init) @builder = @compiler.builder(@init)
end end
def test_list def test_list

View File

@ -6,12 +6,12 @@ module Risc
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
Risc.boot! Risc.boot!
@linker = Mom::MomCompiler.new.translate(:arm) @linker = Mom::MomCollection.new.to_risc.translate(:arm)
end end
def test_simple_collect def test_simple_collect
objects = Collector.collect_space(@linker) objects = Collector.collect_space(@linker)
assert_equal 600 , objects.length , objects.length.to_s assert_equal 621 , objects.length , objects.length.to_s
end end
def test_collect_all_types def test_collect_all_types
@ -47,15 +47,15 @@ module Risc
def setup def setup
opt = Parfait.default_test_options opt = Parfait.default_test_options
opt[:factory] = 4000 opt[:factory] = 400
Parfait.boot!(opt) Parfait.boot!(opt)
Risc.boot! Risc.boot!
@linker = Mom::MomCompiler.new.translate(:arm) @linker = Mom::MomCollection.new.to_risc.translate(:arm)
end end
def test_simple_collect def test_simple_collect
objects = Collector.collect_space(@linker) objects = Collector.collect_space(@linker)
assert_equal 20329, objects.length , objects.length.to_s assert_equal 2422, objects.length , objects.length.to_s
end end
def test_integer_positions def test_integer_positions

View File

@ -4,8 +4,9 @@ module Risc
class TestInterpreterBasics < MiniTest::Test class TestInterpreterBasics < MiniTest::Test
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
Mom.boot!
Risc.boot! Risc.boot!
@linker = Mom::MomCompiler.new.translate(:interpreter) @linker = Mom::MomCollection.new.to_risc.translate(:interpreter)
end end
def test_class def test_class
@ -54,7 +55,7 @@ module Risc
end end
def test_pc1 def test_pc1
@interpreter.tick @interpreter.tick
assert_equal 23672 , @interpreter.pc assert_equal 22856 , @interpreter.pc
end end
def test_tick2 def test_tick2
@interpreter.tick @interpreter.tick
@ -68,7 +69,7 @@ module Risc
def test_pc2 def test_pc2
@interpreter.tick @interpreter.tick
@interpreter.tick @interpreter.tick
assert_equal 23676 , @interpreter.pc assert_equal 22860 , @interpreter.pc
end end
def test_tick_14_jump def test_tick_14_jump
14.times {@interpreter.tick} 14.times {@interpreter.tick}

View File

@ -6,7 +6,7 @@ module Risc
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
Risc.boot! Risc.boot!
@linker = Mom::MomCompiler.new.translate(:arm) @linker = Mom::MomCollection.new.to_risc.translate(:arm)
end end
def test_objects def test_objects
objects = @linker.object_positions objects = @linker.object_positions
@ -25,7 +25,7 @@ module Risc
assert_equal 0 , Position.get(@linker.cpu_init).at assert_equal 0 , Position.get(@linker.cpu_init).at
end end
def test_cpu_at def test_cpu_at
assert_equal "0x569c" , Position.get(@linker.cpu_init.first).to_s assert_equal "0x562c" , Position.get(@linker.cpu_init.first).to_s
end end
def test_cpu_label def test_cpu_label
assert_equal Position , Position.get(@linker.cpu_init.first).class assert_equal Position , Position.get(@linker.cpu_init.first).class

View File

@ -4,7 +4,7 @@ module Risc
class TestMachinePos < MiniTest::Test class TestMachinePos < MiniTest::Test
def setup def setup
code = "class Space; def main(arg);a = 1;return a;end;end" code = "class Space; def main(arg);a = 1;return a;end;end"
@linker = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_risc(code,:arm) @linker = RubyX::RubyXCompiler.new(RubyX.default_test_options).ruby_to_binary(code, :arm)
@linker.position_all @linker.position_all
end end
def test_positions_set def test_positions_set

View File

@ -6,7 +6,7 @@ module Risc
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
Risc.boot! Risc.boot!
@linker = Mom::MomCompiler.new.translate(:arm) @linker = Mom::MomCollection.new.to_risc.translate(:arm)
end end
def test_init def test_init
@text_writer = TextWriter.new(@linker) @text_writer = TextWriter.new(@linker)
@ -21,7 +21,7 @@ module Risc
def setup def setup
Parfait.boot!(Parfait.default_test_options) Parfait.boot!(Parfait.default_test_options)
Risc.boot! Risc.boot!
@linker = Mom::MomCompiler.new.translate(:arm) @linker = Mom::MomCollection.new.to_risc.translate(:arm)
@linker.position_all @linker.position_all
@linker.create_binary @linker.create_binary
@text_writer = TextWriter.new(@linker) @text_writer = TextWriter.new(@linker)