rubyx/lib/register/builtin/word.rb

50 lines
1.8 KiB
Ruby
Raw Normal View History

require_relative "compile_helper"
module Register
module Builtin
module Word
module ClassMethods
include CompileHelper
2015-11-19 09:08:41 +01:00
def putstring context
2016-12-18 13:15:19 +01:00
compiler = Typed::MethodCompiler.new.create_method(:Word , :putstring ).init_method
compiler.add_code Register.get_slot( "putstring" , :message , :receiver , :new_message )
index = Parfait::Word.get_length_index
reg = RegisterValue.new(:r2 , :Integer)
compiler.add_code Register.get_slot( "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)
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_code GetByte.new( source , me , index , me)
# and put it back into the return value
compiler.add_code Register.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 , {:value => :Integer} )
source = "set_internal_byte"
me , index = self_and_int_arg(compiler,source)
value = load_arg_at(compiler , source , 2 )
2015-11-19 09:08:41 +01:00
# do the set
compiler.add_code SetByte.new( source , value , me , index)
return compiler.method
end
end
extend ClassMethods
end
end
end