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