2015-06-29 20:03:58 +02:00
|
|
|
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
|
2016-12-18 13:15:19 +01:00
|
|
|
compiler = Typed::MethodCompiler.new.create_method(:Kernel,:__init__ )
|
2016-12-27 19:39:39 +01:00
|
|
|
new_start = Label.new("__init__ start" , "__init__" )
|
2015-10-28 20:37:42 +01:00
|
|
|
compiler.method.instructions = new_start
|
|
|
|
compiler.set_current new_start
|
2015-10-28 11:19:10 +01:00
|
|
|
|
2015-06-29 20:03:58 +02:00
|
|
|
space = Parfait::Space.object_space
|
2016-12-27 19:39:39 +01:00
|
|
|
space_reg = compiler.use_reg(:Space) #Set up the Space as self upon init
|
2016-12-28 17:31:29 +01:00
|
|
|
compiler.add_code Register.load_constant("__init__ load Space", space , space_reg)
|
2016-12-28 17:16:39 +01:00
|
|
|
message_ind = Register.resolve_to_index( :space , :first_message )
|
2016-12-27 19:39:39 +01:00
|
|
|
compiler.add_code Register.slot_to_reg( "__init__ load 1st message" , space_reg , message_ind , :message)
|
|
|
|
compiler.add_code Register.reg_to_slot( "__init__ store Space in message", space_reg , :message , :receiver)
|
|
|
|
exit_label = Label.new("_exit_label for __init__" , "#{compiler.type.object_class.name}.#{compiler.method.name}" )
|
2015-11-07 20:58:19 +01:00
|
|
|
ret_tmp = compiler.use_reg(:Label)
|
2016-12-28 17:31:29 +01:00
|
|
|
compiler.add_code Register.load_constant("__init__ load return", exit_label , ret_tmp)
|
2016-12-27 19:39:39 +01:00
|
|
|
compiler.add_code Register.reg_to_slot("__init__ store return", ret_tmp , :message , :return_address)
|
|
|
|
compiler.add_code FunctionCall.new( "__init__ issue call" , Register.machine.space.get_main )
|
2015-11-07 20:58:19 +01:00
|
|
|
compiler.add_code exit_label
|
2015-10-28 20:37:42 +01:00
|
|
|
emit_syscall( compiler , :exit )
|
|
|
|
return compiler.method
|
2015-06-29 20:03:58 +02:00
|
|
|
end
|
2015-11-01 18:13:40 +01:00
|
|
|
|
2015-06-29 20:03:58 +02:00
|
|
|
def exit context
|
2016-12-18 13:15:19 +01:00
|
|
|
compiler = Typed::MethodCompiler.new.create_method(:Kernel,:exit ).init_method
|
2015-11-01 18:13:40 +01:00
|
|
|
emit_syscall( compiler , :exit )
|
2015-10-28 20:37:42 +01:00
|
|
|
return compiler.method
|
2015-06-29 20:03:58 +02:00
|
|
|
end
|
2015-06-22 21:48:42 +02:00
|
|
|
|
2015-10-28 20:37:42 +01: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 )
|
2015-10-28 20:37:42 +01:00
|
|
|
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" )
|
2015-06-29 20:03:58 +02:00
|
|
|
end
|
2015-07-02 12:48:32 +02:00
|
|
|
|
2015-06-29 20:03:58 +02:00
|
|
|
# save the current message, as the syscall destroys all context
|
|
|
|
#
|
2015-07-02 12:48:32 +02:00
|
|
|
# This relies on linux to save and restore all registers
|
2015-07-27 11:13:39 +02:00
|
|
|
#
|
2015-10-28 20:37:42 +01:00
|
|
|
def save_message(compiler)
|
2015-10-15 08:32:47 +02:00
|
|
|
r8 = RegisterValue.new( :r8 , :Message)
|
2016-12-28 17:37:15 +01:00
|
|
|
compiler.add_code Register.transfer("save_message", Register.message_reg , r8 )
|
2015-06-29 20:03:58 +02:00
|
|
|
end
|
2015-06-30 17:38:56 +02:00
|
|
|
|
2015-10-28 20:37:42 +01:00
|
|
|
def restore_message(compiler)
|
2015-10-15 08:32:47 +02:00
|
|
|
r8 = RegisterValue.new( :r8 , :Message)
|
2015-10-28 11:19:10 +01:00
|
|
|
return_tmp = Register.tmp_reg :Integer
|
2015-11-01 18:13:40 +01:00
|
|
|
source = "_restore_message"
|
2015-07-02 12:48:32 +02:00
|
|
|
# get the sys return out of the way
|
2016-12-28 17:37:15 +01:00
|
|
|
compiler.add_code Register.transfer(source, Register.message_reg , return_tmp )
|
2015-07-02 12:48:32 +02:00
|
|
|
# load the stored message into the base RegisterMachine
|
2016-12-28 17:37:15 +01:00
|
|
|
compiler.add_code Register.transfer(source, r8 , Register.message_reg )
|
2015-06-30 17:38:56 +02:00
|
|
|
# save the return value into the message
|
2016-12-25 17:02:39 +01:00
|
|
|
compiler.add_code Register.reg_to_slot( source , return_tmp , :message , :return_value )
|
2015-06-29 20:03:58 +02:00
|
|
|
end
|
2015-06-22 21:48:42 +02:00
|
|
|
end
|
2015-06-29 20:03:58 +02:00
|
|
|
extend ClassMethods
|
2014-09-10 20:35:52 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|