2014-09-10 20:35:52 +02:00
|
|
|
module Builtin
|
|
|
|
module Kernel
|
|
|
|
module ClassMethods
|
|
|
|
# this is the really really first place the machine starts.
|
|
|
|
# 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 (and relocation)
|
|
|
|
def __init__ context
|
2015-05-31 17:34:18 +02:00
|
|
|
function = Virtual::CompiledMethodInfo.create_method(:Kernel,:__init__ , [])
|
2015-05-31 10:07:49 +02:00
|
|
|
# puts "INIT LAYOUT #{function.get_layout.get_layout}"
|
2015-05-24 12:31:33 +02:00
|
|
|
function.info.return_type = Virtual::Integer
|
2015-06-01 07:40:17 +02:00
|
|
|
main = Virtual.machine.space.get_main
|
2014-09-11 14:01:50 +02:00
|
|
|
me = Virtual::Self.new(Virtual::Reference)
|
2015-06-21 12:29:27 +02:00
|
|
|
code = Virtual::Set.new(me , Virtual::Self.new(me.type))
|
2015-05-24 12:31:33 +02:00
|
|
|
function.info.add_code(code)
|
2015-05-30 13:49:10 +02:00
|
|
|
function.info.add_code Virtual::MethodCall.new(main)
|
2014-09-10 20:35:52 +02:00
|
|
|
return function
|
|
|
|
end
|
2015-05-13 11:15:14 +02:00
|
|
|
def putstring context
|
2015-05-31 17:34:18 +02:00
|
|
|
function = Virtual::CompiledMethodInfo.create_method(:Kernel , :putstring , [] )
|
2014-09-10 20:35:52 +02:00
|
|
|
return function
|
|
|
|
ret = Virtual::RegisterMachine.instance.write_stdout(function)
|
|
|
|
function.set_return ret
|
|
|
|
function
|
|
|
|
end
|
|
|
|
def exit context
|
2015-05-31 17:34:18 +02:00
|
|
|
function = Virtual::CompiledMethodInfo.create_method(:Kernel,:exit , [])
|
2015-05-24 12:31:33 +02:00
|
|
|
function.info.return_type = Virtual::Integer
|
2014-09-10 20:35:52 +02:00
|
|
|
return function
|
|
|
|
ret = Virtual::RegisterMachine.instance.exit(function)
|
|
|
|
function.set_return ret
|
|
|
|
function
|
|
|
|
end
|
2014-09-24 17:14:23 +02:00
|
|
|
def __send context
|
2015-05-31 17:34:18 +02:00
|
|
|
function = Virtual::CompiledMethodInfo.create_method(:Kernel ,:__send , [] )
|
2015-05-24 12:31:33 +02:00
|
|
|
function.info.return_type = Virtual::Integer
|
2014-09-23 19:16:05 +02:00
|
|
|
return function
|
|
|
|
end
|
2014-09-10 20:35:52 +02:00
|
|
|
end
|
|
|
|
extend ClassMethods
|
|
|
|
end
|
|
|
|
end
|