rubyx/lib/register/builtin/kernel.rb

71 lines
3.0 KiB
Ruby
Raw Normal View History

module Register
module Builtin
module Kernel
module ClassMethods
# this is the really really first place the machine starts (apart from the jump here)
# it isn't really a function, ie it is jumped to (not called), exits and may not return
# so it is responsible for initial setup
def __init__ context
2015-11-01 18:13:40 +01:00
source = "__init__"
compiler = Soml::Compiler.new.create_method(:Kernel,:__init__ , [])
# no method enter or return (automatically added), remove
2015-10-29 21:31:28 +01:00
new_start = Label.new(source , source )
compiler.method.instructions = new_start
compiler.set_current new_start
#Set up the Space as self upon init
space = Parfait::Space.object_space
space_reg = Register.tmp_reg(:Space)
2015-10-29 21:31:28 +01:00
compiler.add_code LoadConstant.new(source, space , space_reg)
message_ind = Register.resolve_index( :space , :first_message )
# Load the message to new message register (r1)
2015-10-29 21:31:28 +01:00
compiler.add_code Register.get_slot( source , space_reg , message_ind , :new_message)
# And store the space as the new self (so the call can move it back as self)
2015-10-29 21:31:28 +01:00
compiler.add_code Register.set_slot( source, space_reg , :new_message , :receiver)
# now we are set up to issue a call to the main
Register.issue_call( compiler , Register.machine.space.get_main)
emit_syscall( compiler , :exit )
return compiler.method
end
2015-11-01 18:13:40 +01:00
def exit context
compiler = Soml::Compiler.new.create_method(:Kernel,:exit , []).init_method
2015-11-01 18:13:40 +01:00
emit_syscall( compiler , :exit )
return compiler.method
end
2015-06-22 21:48:42 +02:00
def emit_syscall compiler , name
save_message( compiler )
2015-10-29 21:31:28 +01:00
compiler.add_code Syscall.new("emit_syscall(#{name})", name )
restore_message(compiler)
2015-11-01 18:13:40 +01:00
return unless (@clazz and @method)
compiler.add_code Label.new( "#{@clazz.name}.#{@message.name}" , "return_syscall" )
end
# save the current message, as the syscall destroys all context
#
# This relies on linux to save and restore all registers
#
def save_message(compiler)
2015-10-15 08:32:47 +02:00
r8 = RegisterValue.new( :r8 , :Message)
compiler.add_code RegisterTransfer.new("save_message", Register.message_reg , r8 )
end
def restore_message(compiler)
2015-10-15 08:32:47 +02:00
r8 = RegisterValue.new( :r8 , :Message)
return_tmp = Register.tmp_reg :Integer
2015-11-01 18:13:40 +01:00
source = "_restore_message"
# get the sys return out of the way
2015-11-01 18:13:40 +01:00
compiler.add_code RegisterTransfer.new(source, Register.message_reg , return_tmp )
# load the stored message into the base RegisterMachine
2015-11-01 18:13:40 +01:00
compiler.add_code RegisterTransfer.new(source, r8 , Register.message_reg )
# save the return value into the message
2015-11-01 18:13:40 +01:00
compiler.add_code Register.set_slot( source , return_tmp , :message , :return_value )
# and "unroll" self and frame
end
2015-06-22 21:48:42 +02:00
end
extend ClassMethods
2014-09-10 20:35:52 +02:00
end
end
end