rubyx/lib/risc/builtin/object.rb

48 lines
1.7 KiB
Ruby
Raw Normal View History

module Risc
module Builtin
class Object
module ClassMethods
include CompileHelper
# self[index] basically. Index is the first arg
# return is stored in return_value
# (this method returns a new method off course, like all builtin)
def get_internal_word( context )
compiler = compiler_for(:Object , :get_internal_word ,{at: :Integer})
source = "get_internal_word"
me , index = compiler.self_and_int_arg(source)
# reduce me to me[index]
compiler.add_slot_to_reg( source , me , index , me)
# and put it back into the return value
compiler.add_reg_to_slot( source , me , :message , :return_value)
2018-04-01 14:17:16 +02:00
compiler.add_mom( Mom::ReturnSequence.new)
return compiler.method
end
2016-12-06 10:38:09 +01:00
# self[index] = val basically. Index is the first arg , value the second
# no return
2018-04-01 14:17:16 +02:00
def set_internal_word( context )
compiler = compiler_for(:Object , :set_internal_word , {at: :Integer, :value => :Object} )
source = "set_internal_word"
me , index = compiler.self_and_int_arg(source)
value = compiler.load_int_arg_at(source , 2)
# do the set
compiler.add_reg_to_slot( source , value , me , index)
2018-04-01 14:17:16 +02:00
compiler.add_mom( Mom::ReturnSequence.new)
return compiler.method
end
# every object needs a method missing.
# Even if it's just this one, sys_exit (later raise)
def _method_missing( context )
compiler = compiler_for(:Object,:method_missing ,{})
Risc::Builtin::Kernel.emit_syscall( compiler , :exit )
return compiler.method
end
end
extend ClassMethods
end
end
end