2017-01-19 09:02:29 +02:00
|
|
|
module Risc
|
2015-07-01 21:45:41 +03:00
|
|
|
module Builtin
|
|
|
|
module Word
|
|
|
|
module ClassMethods
|
2016-12-15 19:31:39 +02:00
|
|
|
include CompileHelper
|
2015-11-19 10:08:41 +02:00
|
|
|
|
2018-04-01 15:17:16 +03:00
|
|
|
def putstring( context)
|
2018-03-18 22:08:35 +05:30
|
|
|
compiler = compiler_for(:Word , :putstring ,{})
|
2018-07-09 19:32:17 +03:00
|
|
|
builder = compiler.compiler_builder(compiler.source)
|
2018-07-15 16:30:50 +03:00
|
|
|
new_message = Risc.message_reg.get_new_left(:receiver , compiler)
|
|
|
|
builder.add_slot_to_reg( "putstring" , Risc.message_reg , :receiver , new_message )
|
2015-11-16 18:03:29 +02:00
|
|
|
index = Parfait::Word.get_length_index
|
2018-07-15 16:30:50 +03:00
|
|
|
index_reg = RegisterValue.new(:r2 , :Integer)
|
|
|
|
builder.add_slot_to_reg( "putstring" , new_message , index , index_reg )
|
2018-04-08 18:52:17 +03:00
|
|
|
Risc::Builtin::Object.emit_syscall( builder , :putstring )
|
2018-04-01 15:17:16 +03:00
|
|
|
compiler.add_mom( Mom::ReturnSequence.new)
|
2018-06-30 23:16:17 +03:00
|
|
|
compiler
|
2015-07-01 21:45:41 +03:00
|
|
|
end
|
2016-12-15 19:31:39 +02:00
|
|
|
|
2015-11-19 10:08:41 +02:00
|
|
|
# self[index] basically. Index is the first arg > 0
|
|
|
|
# return (and word sized int) is stored in return_value
|
2018-04-01 15:17:16 +03:00
|
|
|
def get_internal_byte( context)
|
2018-03-18 22:08:35 +05:30
|
|
|
compiler = compiler_for(:Word , :get_internal_byte , {at: :Integer})
|
2016-12-15 19:31:39 +02:00
|
|
|
source = "get_internal_byte"
|
2018-07-09 19:32:17 +03:00
|
|
|
builder = compiler.compiler_builder(compiler.source)
|
2018-04-08 18:52:17 +03:00
|
|
|
me , index = builder.self_and_int_arg(source)
|
|
|
|
builder.reduce_int( source + " fix arg", index )
|
2015-11-19 10:08:41 +02:00
|
|
|
# reduce me to me[index]
|
2018-04-08 18:52:17 +03:00
|
|
|
builder.add_byte_to_reg( source , me , index , me)
|
|
|
|
builder.add_new_int(source, me , index)
|
2015-11-19 10:08:41 +02:00
|
|
|
# and put it back into the return value
|
2018-07-15 16:30:50 +03:00
|
|
|
builder.add_reg_to_slot( source , index , Risc.message_reg , :return_value)
|
2018-04-01 15:17:16 +03:00
|
|
|
compiler.add_mom( Mom::ReturnSequence.new)
|
2018-06-30 23:16:17 +03:00
|
|
|
return compiler
|
2015-11-19 10:08:41 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# self[index] = val basically. Index is the first arg ( >0),
|
|
|
|
# value the second
|
2018-04-01 21:59:06 +03:00
|
|
|
# return self
|
|
|
|
def set_internal_byte( context )
|
2018-03-18 22:08:35 +05:30
|
|
|
compiler = compiler_for(:Word, :set_internal_byte , {at: :Integer , :value => :Integer} )
|
2016-12-15 19:31:39 +02:00
|
|
|
source = "set_internal_byte"
|
2018-07-09 19:32:17 +03:00
|
|
|
builder = compiler.compiler_builder(compiler.source)
|
2018-04-08 18:52:17 +03:00
|
|
|
me , index = builder.self_and_int_arg(source)
|
2018-05-14 15:17:04 +03:00
|
|
|
value = builder.load_int_arg_at(source , 1 )
|
2018-04-08 18:52:17 +03:00
|
|
|
builder.reduce_int( source + " fix me", value )
|
|
|
|
builder.reduce_int( source + " fix arg", index )
|
|
|
|
builder.add_reg_to_byte( source , value , me , index)
|
2018-06-19 18:55:47 +03:00
|
|
|
value = builder.load_int_arg_at(source , 1 )
|
2018-07-15 16:30:50 +03:00
|
|
|
builder.add_reg_to_slot( source , value , Risc.message_reg , :return_value)
|
2018-04-01 15:17:16 +03:00
|
|
|
compiler.add_mom( Mom::ReturnSequence.new)
|
2018-06-30 23:16:17 +03:00
|
|
|
return compiler
|
2015-11-19 10:08:41 +02:00
|
|
|
end
|
|
|
|
|
2015-07-01 21:45:41 +03:00
|
|
|
end
|
|
|
|
extend ClassMethods
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|