Transform builtin word functions

according to same schema
This commit is contained in:
Torsten Rüger 2019-08-12 10:45:07 +03:00
parent 3282e0ae06
commit 97488c4e5b
4 changed files with 110 additions and 38 deletions

View File

@ -44,7 +44,7 @@ module Risc
word_type = space.get_type_by_class_name(:Word) word_type = space.get_type_by_class_name(:Word)
[:putstring , :get_internal_byte , :set_internal_byte ].each do |f| [:putstring , :get_internal_byte , :set_internal_byte ].each do |f|
#compilers << compiler_for( word_type , Word , f) compilers << compiler_for( word_type , Word , f)
end end
int_type = space.get_type_by_class_name(:Integer) int_type = space.get_type_by_class_name(:Integer)

View File

@ -12,17 +12,21 @@ module Risc
# - emit_syscall (which does the return of an integer, see there) # - emit_syscall (which does the return of an integer, see there)
def putstring( context) def putstring( context)
compiler = compiler_for(:Word , :putstring ,{}) compiler = compiler_for(:Word , :putstring ,{})
compiler.add_code Putstring.new("putstring")
return compiler
end
class Putstring < ::Mom::Instruction
def to_risc(compiler)
builder = compiler.builder(compiler.source) builder = compiler.builder(compiler.source)
builder.prepare_int_return # makes integer_tmp variable as return builder.prepare_int_return # makes integer_tmp variable as return
builder.build do builder.build do
word! << message[:receiver] word! << message[:receiver]
integer! << word[Parfait::Word.get_length_index] integer! << word[Parfait::Word.get_length_index]
end end
Risc::Builtin::Object.emit_syscall( builder , :putstring ) Risc::Builtin.emit_syscall( builder , :putstring )
compiler.add_mom( Mom::ReturnSequence.new)
compiler compiler
end end
end
# self[index] basically. Index is the first arg > 0 # self[index] basically. Index is the first arg > 0
# return a word sized new int, in return_value # return a word sized new int, in return_value
# #
@ -30,6 +34,11 @@ module Risc
# Which means the returned integer could be passed in, instead of allocated. # Which means the returned integer could be passed in, instead of allocated.
def get_internal_byte( context) def get_internal_byte( context)
compiler = compiler_for(:Word , :get_internal_byte , {at: :Integer}) compiler = compiler_for(:Word , :get_internal_byte , {at: :Integer})
compiler.add_code GetInternalByte.new("get_internal_byte")
return compiler
end
class GetInternalByte < ::Mom::Instruction
def to_risc(compiler)
builder = compiler.builder(compiler.source) builder = compiler.builder(compiler.source)
integer_tmp = builder.allocate_int integer_tmp = builder.allocate_int
builder.build do builder.build do
@ -41,14 +50,18 @@ module Risc
integer_tmp[Parfait::Integer.integer_index] << object integer_tmp[Parfait::Integer.integer_index] << object
message[:return_value] << integer_tmp message[:return_value] << integer_tmp
end end
compiler.add_mom( Mom::ReturnSequence.new)
return compiler return compiler
end end
end
# self[index] = val basically. Index is the first arg ( >0 , unchecked), # self[index] = val basically. Index is the first arg ( >0 , unchecked),
# value the second, which is also returned # value the second, which is also returned
def set_internal_byte( context ) def set_internal_byte( context )
compiler = compiler_for(:Word, :set_internal_byte , {at: :Integer , value: :Integer} ) compiler = compiler_for(:Word, :set_internal_byte , {at: :Integer , value: :Integer} )
compiler.add_code SetInternalByte.new("set_internal_byte")
return compiler
end
class SetInternalByte < ::Mom::Instruction
def to_risc(compiler)
compiler.builder(compiler.source).build do compiler.builder(compiler.source).build do
word! << message[:receiver] word! << message[:receiver]
integer! << message[:arguments] integer! << message[:arguments]
@ -59,10 +72,9 @@ module Risc
integer_reg.reduce_int integer_reg.reduce_int
word[integer] <= integer_reg word[integer] <= integer_reg
end end
compiler.add_mom( Mom::ReturnSequence.new)
return compiler return compiler
end end
end
end end
extend ClassMethods extend ClassMethods
end end

View File

@ -0,0 +1,60 @@
require_relative "helper"
module Risc
module Builtin
class TestWordPut < BootTest
def setup
super
@method = get_compiler(:putstring)
end
def test_has_get_internal
assert_equal Mom::MethodCompiler , @method.class
end
def test_mom_length
assert_equal 5 , @method.mom_instructions.length
end
def test_compile
assert_equal Risc::MethodCompiler , @method.to_risc.class
end
def test_risc_length
assert_equal 50 , @method.to_risc.risc_instructions.length
end
end
class TestWordGet < BootTest
def setup
super
@method = get_compiler(:get_internal_byte)
end
def test_has_get_internal
assert_equal Mom::MethodCompiler , @method.class
end
def test_mom_length
assert_equal 5 , @method.mom_instructions.length
end
def test_compile
assert_equal Risc::MethodCompiler , @method.to_risc.class
end
def test_risc_length
assert_equal 48 , @method.to_risc.risc_instructions.length
end
end
class TestWordSet < BootTest
def setup
super
@method = get_compiler(:set_internal_byte)
end
def test_has_get_internal
assert_equal Mom::MethodCompiler , @method.class
end
def test_mom_length
assert_equal 5 , @method.mom_instructions.length
end
def test_compile
assert_equal Risc::MethodCompiler , @method.to_risc.class
end
def test_risc_length
assert_equal 22 , @method.to_risc.risc_instructions.length
end
end
end
end

View File

@ -14,7 +14,7 @@ module Risc
assert_equal Array, @functions.class assert_equal Array, @functions.class
end end
def test_boot_function_length def test_boot_function_length
assert_equal 6, @functions.length assert_equal 9, @functions.length
end end
def test_boot_function_first def test_boot_function_first
assert_equal Mom::MethodCompiler, @functions.first.class assert_equal Mom::MethodCompiler, @functions.first.class