2015-11-07 16:36:28 +01:00
|
|
|
require "ast/sexp"
|
|
|
|
|
2015-06-29 20:03:58 +02:00
|
|
|
module Register
|
|
|
|
module Builtin
|
|
|
|
class Object
|
|
|
|
module ClassMethods
|
2015-11-07 16:36:28 +01:00
|
|
|
include AST::Sexp
|
2015-05-04 22:03:52 +02:00
|
|
|
|
2015-06-29 20:03:58 +02:00
|
|
|
# main entry point, ie __init__ calls this
|
|
|
|
# defined here as empty, to be redefined
|
|
|
|
def main context
|
2015-11-11 19:41:02 +01:00
|
|
|
compiler = Soml::Compiler.new.create_method(:Object , :main ).init_method
|
2015-10-28 20:37:42 +01:00
|
|
|
return compiler.method
|
2015-06-29 20:03:58 +02:00
|
|
|
end
|
2014-06-03 13:49:02 +02:00
|
|
|
|
2015-11-07 16:36:28 +01:00
|
|
|
# self[index] basically. Index is the first arg
|
|
|
|
# return is stored in return_value
|
2015-11-08 16:10:36 +01:00
|
|
|
# (this method returns a new method off course, like all builtin)
|
2015-11-07 16:36:28 +01:00
|
|
|
def get_internal context
|
2015-11-11 19:41:02 +01:00
|
|
|
compiler = Soml::Compiler.new.create_method(:Object , :get_internal , {:Integer => :index}).init_method
|
2015-11-07 16:36:28 +01:00
|
|
|
source = "get_internal"
|
|
|
|
#Load self by "calling" on_name
|
|
|
|
me = compiler.process( s(:name , :self) )
|
|
|
|
# Load the argument
|
|
|
|
index = compiler.use_reg :Integer
|
|
|
|
compiler.add_code Register.get_slot(source , :message , Parfait::Message.get_indexed(1), index )
|
|
|
|
# reduce me to me[index]
|
|
|
|
compiler.add_code GetSlot.new( source , me , index , me)
|
|
|
|
# and put it back into the return value
|
|
|
|
compiler.add_code Register.set_slot( source , me , :message , :return_value)
|
|
|
|
return compiler.method
|
|
|
|
end
|
|
|
|
|
2015-11-08 16:10:36 +01:00
|
|
|
# self[index] = val basically. Index is the first arg , vlaue the second
|
|
|
|
# no return
|
|
|
|
def set_internal context
|
2015-11-11 19:41:02 +01:00
|
|
|
compiler = Soml::Compiler.new.create_method(:Object , :set_internal ,
|
|
|
|
{:Integer => :index, :Object => :value} ).init_method
|
2015-11-08 16:10:36 +01:00
|
|
|
source = "set_internal"
|
|
|
|
#Load self by "calling" on_name
|
|
|
|
me = compiler.process( s(:name , :self) )
|
|
|
|
# Load the index
|
|
|
|
index = compiler.use_reg :Integer
|
|
|
|
compiler.add_code Register.get_slot(source , :message , Parfait::Message.get_indexed(1), index )
|
|
|
|
# Load the value
|
|
|
|
value = compiler.use_reg :Integer
|
|
|
|
compiler.add_code Register.get_slot(source , :message , Parfait::Message.get_indexed(2), value )
|
|
|
|
# do the set
|
|
|
|
compiler.add_code SetSlot.new( source , value , me , index)
|
|
|
|
return compiler.method
|
|
|
|
end
|
|
|
|
|
2014-06-03 13:49:02 +02:00
|
|
|
end
|
2015-06-29 20:03:58 +02:00
|
|
|
extend ClassMethods
|
2014-06-03 13:49:02 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-06-29 20:03:58 +02:00
|
|
|
|
2014-08-28 15:44:27 +02:00
|
|
|
require_relative "integer"
|
2014-09-10 20:35:52 +02:00
|
|
|
require_relative "kernel"
|
2015-07-01 20:45:41 +02:00
|
|
|
require_relative "word"
|