rubyx/lib/risc/builtin/word.rb

66 lines
2.6 KiB
Ruby
Raw Normal View History

module Risc
module Builtin
module Word
module ClassMethods
include CompileHelper
2015-11-19 09:08:41 +01:00
def putstring context
compiler = compiler_for(:Word , :putstring ,{})
compiler.add_slot_to_reg( "putstring" , :message , :receiver , :new_message )
index = Parfait::Word.get_length_index
reg = RiscValue.new(:r2 , :Integer)
compiler.add_slot_to_reg( "putstring" , :new_message , index , reg )
Kernel.emit_syscall( compiler , :putstring )
compiler.method
end
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
def get_internal_byte context
compiler = compiler_for(:Word , :get_internal_byte , {at: :Integer})
source = "get_internal_byte"
me , index = self_and_int_arg(compiler,source)
2015-11-19 09:08:41 +01:00
# reduce me to me[index]
compiler.add_byte_to_reg( source , me , index , me)
2015-11-19 09:08:41 +01:00
# and put it back into the return value
compiler.add_reg_to_slot( source , me , :message , :return_value)
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
# no return
def set_internal_byte context
compiler = compiler_for(:Word, :set_internal_byte , {at: :Integer , :value => :Integer} )
2016-12-27 19:34:11 +01:00
args = compiler.method.arguments
len = args.instance_length
raise "Compiler arg number mismatch, method=#{args} " if len != 3
source = "set_internal_byte"
me , index = self_and_int_arg(compiler,source)
2016-12-27 19:34:11 +01:00
value = load_int_arg_at(compiler , source , 2 )
2015-11-19 09:08:41 +01:00
# do the set
compiler.add_reg_to_byte( source , value , me , index)
2015-11-19 09:08:41 +01:00
return compiler.method
end
# resolve the method name of self, on the given object
# may seem wrong way around at first sight, but we know the type of string. And
# 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.
def resolve_method context
compiler = compiler_for(:Word, :resolve_method , {:value => :Object} )
args = compiler.method.arguments
len = args.instance_length
raise "Compiler arg number mismatch, method=#{args} " if len != 2
return compiler.method
end
end
extend ClassMethods
end
end
end