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 ,{})
|
2016-12-28 19:37:54 +01:00
|
|
|
compiler.add_slot_to_reg( "putstring" , :message , :receiver , :new_message )
|
2015-11-16 17:03:29 +01:00
|
|
|
index = Parfait::Word.get_length_index
|
2017-01-19 08:02:29 +01:00
|
|
|
reg = RiscValue.new(:r2 , :Integer)
|
2016-12-28 19:37:54 +01:00
|
|
|
compiler.add_slot_to_reg( "putstring" , :new_message , index , reg )
|
2018-04-02 16:06:31 +02:00
|
|
|
Risc::Builtin::Object.emit_syscall( compiler , :putstring )
|
2018-04-01 14:17:16 +02:00
|
|
|
compiler.add_mom( Mom::ReturnSequence.new)
|
2015-10-28 20:37:42 +01:00
|
|
|
compiler.method
|
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-04-01 13:09:30 +02:00
|
|
|
me , index = compiler.self_and_int_arg(source)
|
2018-04-01 21:16:17 +02:00
|
|
|
compiler.reduce_int( source + " fix arg", index )
|
2015-11-19 09:08:41 +01:00
|
|
|
# reduce me to me[index]
|
2016-12-28 19:37:54 +01:00
|
|
|
compiler.add_byte_to_reg( source , me , index , me)
|
2018-04-01 21:16:17 +02:00
|
|
|
compiler.add_new_int(source, me , index)
|
2015-11-19 09:08:41 +01:00
|
|
|
# and put it back into the return value
|
2018-04-01 21:16:17 +02:00
|
|
|
compiler.add_reg_to_slot( source , index , :message , :return_value)
|
2018-04-01 14:17:16 +02:00
|
|
|
compiler.add_mom( Mom::ReturnSequence.new)
|
2015-11-19 09:08:41 +01:00
|
|
|
return compiler.method
|
|
|
|
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-04-01 13:09:30 +02:00
|
|
|
me , index = compiler.self_and_int_arg(source)
|
|
|
|
value = compiler.load_int_arg_at(source , 2 )
|
2018-04-01 20:59:06 +02:00
|
|
|
compiler.reduce_int( source + " fix me", value )
|
|
|
|
compiler.reduce_int( source + " fix arg", index )
|
2016-12-28 19:37:54 +01:00
|
|
|
compiler.add_reg_to_byte( source , value , me , index)
|
2018-04-01 20:59:06 +02:00
|
|
|
compiler.add_reg_to_slot( source , me , :message , :return_value)
|
2018-04-01 14:17:16 +02:00
|
|
|
compiler.add_mom( Mom::ReturnSequence.new)
|
2015-11-19 09:08:41 +01:00
|
|
|
return compiler.method
|
|
|
|
end
|
|
|
|
|
2018-03-10 14:31:38 +01:00
|
|
|
# resolve the method name of self, on the given object
|
2018-03-18 17:38:35 +01:00
|
|
|
# may seem wrong way around at first sight, but we know the type of string. And
|
2018-03-10 14:31:38 +01:00
|
|
|
# thus resolving this method happens at compile time, whereas any method on an
|
|
|
|
# unknown self (the object given) needs resolving and that is just what we are doing
|
|
|
|
# ( ie the snake bites it's tail)
|
|
|
|
# This method is just a placeholder until boot is over and the real method is
|
|
|
|
# parsed.
|
2018-04-01 14:17:16 +02:00
|
|
|
def resolve_method( context)
|
2018-04-02 15:36:43 +02:00
|
|
|
compiler = compiler_for(:Word, :resolve_method , {:value => :Type} )
|
2018-04-02 18:32:59 +02:00
|
|
|
source = "resolve_method "
|
2018-04-07 22:07:44 +02:00
|
|
|
|
|
|
|
compiler.build do
|
|
|
|
word << message[ :receiver ]
|
2018-04-02 18:32:59 +02:00
|
|
|
|
2018-04-07 22:07:44 +02:00
|
|
|
type << message[:arguments]
|
|
|
|
type << type[2]
|
|
|
|
type << type[:type]
|
|
|
|
typed_method << type[:methods]
|
2018-04-07 23:39:35 +02:00
|
|
|
add while_start_label
|
2018-04-07 22:07:44 +02:00
|
|
|
space << Parfait.object_space
|
|
|
|
space << space[:nil_object]
|
2018-04-02 18:32:59 +02:00
|
|
|
|
2018-04-07 22:07:44 +02:00
|
|
|
add Risc.op(source + "if method is nil", :- , space , typed_method )
|
2018-04-07 23:50:51 +02:00
|
|
|
if_zero exit_label
|
2018-04-07 22:07:44 +02:00
|
|
|
|
|
|
|
name << typed_method[:name]
|
|
|
|
add Risc.op(source + " compare name with me", :- , name , word )
|
2018-04-07 23:50:51 +02:00
|
|
|
if_not_zero false_label
|
2018-04-07 22:07:44 +02:00
|
|
|
|
|
|
|
typed_method << typed_method[:binary]
|
|
|
|
message[:return_value] << typed_method
|
|
|
|
|
|
|
|
add Mom::ReturnSequence.new.to_risc(compiler)
|
2018-04-02 18:32:59 +02:00
|
|
|
|
2018-04-07 22:07:44 +02:00
|
|
|
add false_label
|
|
|
|
typed_method << typed_method[:next_method]
|
2018-04-07 23:50:51 +02:00
|
|
|
branch while_start_label
|
2018-04-02 18:32:59 +02:00
|
|
|
|
2018-04-07 22:07:44 +02:00
|
|
|
add exit_label
|
|
|
|
end
|
2018-04-02 18:32:59 +02:00
|
|
|
Risc::Builtin::Object.emit_syscall( compiler , :exit )
|
2018-03-10 14:31:38 +01:00
|
|
|
return compiler.method
|
|
|
|
end
|
|
|
|
|
2015-07-01 20:45:41 +02:00
|
|
|
end
|
|
|
|
extend ClassMethods
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|