rubyx/lib/virtual/boot_space.rb

141 lines
5.1 KiB
Ruby
Raw Normal View History

2014-08-29 14:49:59 +02:00
require_relative "boot_class"
2014-08-28 17:53:48 +02:00
require "builtin/object"
module Virtual
2014-07-16 18:24:41 +02:00
# The BootSpace contains all objects for a program. In functional terms it is a program, but in oo
# it is a collection of objects, some of which are data, some classes, some functions
2014-05-03 14:13:44 +02:00
# The main entry is a function called (of all things) "main", This _must be supplied by the compling
# There is a start and exit block that call main, which receives an array of strings
2014-07-16 18:24:41 +02:00
# While data ususally would live in a .data section, we may also "inline" it into the code
2014-05-03 14:13:44 +02:00
# in an oo system all data is represented as objects
class BootSpace < Virtual::ObjectConstant
2014-05-03 14:13:44 +02:00
def initialize
super()
@classes = Parfait::Hash.new
#global objects (data)
2014-05-03 14:13:44 +02:00
@objects = []
2014-09-19 18:11:30 +02:00
@symbols = []
frames = 100.times.collect{ ::Frame.new }
@messages = 100.times.collect{ ::Message.new } + frames
@next_message = @messages.first
@next_frame = frames.first
@passes = [ "Virtual::SendImplementation" ]
2014-05-03 14:13:44 +02:00
end
2014-10-07 11:01:33 +02:00
attr_reader :init , :main , :classes , :objects , :symbols,:messages, :next_message , :next_frame
def run_passes
@passes.each do |pass_class|
2014-10-07 11:01:33 +02:00
all = [@init] + main.blocks
@classes.values.each do |c|
c.instance_methods.each {|f| all += f.blocks }
end
2014-10-05 00:13:57 +02:00
#puts "running #{pass_class}"
all.each do |block|
pass = eval pass_class
raise "no such pass-class as #{pass_class}" unless pass
2014-08-22 08:21:59 +02:00
pass.new.run(block)
end
end
end
2014-08-24 20:32:21 +02:00
def self.space
if defined? @@space
@@space
else
@@space = BootSpace.new
@@space
2014-08-24 20:32:21 +02:00
end
end
2014-10-05 00:13:57 +02:00
# Passes are initiated empty and added to by anyone who wants (basically)
# This is intentionally quite flexible, though one sometimes has to watch the order of them
# most ordering is achieved by ordering the requires and using add_pass
# but more precise control is possible with the _after and _before versions
def add_pass pass
@passes << pass
end
def add_pass_after( pass , after)
index = @passes.index(after)
raise "No such pass (#{pass}) to add after: #{after}" unless index
@passes.insert(index+1 , pass)
end
def add_pass_before( pass , after)
index = @passes.index(after)
raise "No such pass to add after: #{after}" unless index
@passes.insert(index , pass)
end
# boot the classes, ie create a minimal set of classes with a minimal set of functions
# minimal means only that which can not be coded in ruby
# CompiledMethods are grabbed from respective modules by sending the method name. This should return the
2014-07-16 18:24:41 +02:00
# implementation of the method (ie a method object), not actually try to implement it (as that's impossible in ruby)
def boot_classes!
# very fiddly chicken 'n egg problem. Functions need to be in the right order, and in fact we have to define some
# dummies, just for the other to compile
obj = get_or_create_class :Object
2014-06-24 11:20:10 +02:00
[:index_of , :_get_instance_variable , :_set_instance_variable].each do |f|
2014-08-28 17:53:48 +02:00
obj.add_instance_method Builtin::Object.send(f , @context)
end
2014-09-10 20:35:52 +02:00
obj = get_or_create_class :Kernel
# create main first, __init__ calls it
@main = Builtin::Kernel.send(:main , @context)
obj.add_instance_method @main
underscore_init = Builtin::Kernel.send(:__init__ , @context) #store , so we don't have to resolve it below
obj.add_instance_method underscore_init
[:putstring,:exit,:__send].each do |f|
2014-08-28 17:53:48 +02:00
obj.add_instance_method Builtin::Kernel.send(f , @context)
2014-06-13 22:41:45 +02:00
end
# and the @init block in turn _jumps_ to __init__
# the point of which is that by the time main executes, all is "normal"
@init = Virtual::Block.new(:_init_ , nil )
@init.add_code(Register::RegisterMain.new(underscore_init))
2014-09-10 20:35:52 +02:00
obj = get_or_create_class :Integer
[:putint,:fibo].each do |f|
obj.add_instance_method Builtin::Integer.send(f , @context)
end
obj = get_or_create_class :String
[:get , :set , :puts].each do |f|
2014-08-28 17:53:48 +02:00
obj.add_instance_method Builtin::String.send(f , @context)
end
obj = get_or_create_class :Array
[:get , :set , :push].each do |f|
2014-08-28 17:53:48 +02:00
obj.add_instance_method Builtin::Array.send(f , @context)
end
end
2014-09-28 10:18:24 +02:00
@@SPACE = { :names => [:classes,:objects,:symbols,:messages, :next_message , :next_frame] ,
2014-09-19 18:11:30 +02:00
:types => [Virtual::Reference,Virtual::Reference,Virtual::Reference,Virtual::Reference,Virtual::Reference]}
def layout
@@SPACE
end
# Objects are data and get assembled after functions
2014-05-03 14:13:44 +02:00
def add_object o
2014-09-19 18:11:30 +02:00
return if @objects.include?(o)
@objects << o
if o.is_a? Symbol
@symbols << o
end
2014-05-03 14:13:44 +02:00
end
# this is the way to instantiate classes (not BootClass.new)
# so we get and keep exactly one per name
def get_or_create_class name
raise "uups #{name}.#{name.class}" unless name.is_a? Symbol
c = @classes[name]
unless c
2014-07-14 13:06:09 +02:00
c = BootClass.new(name)
@classes[name] = c
end
c
end
def mem_length
2014-09-19 18:11:30 +02:00
padded_words( 5 )
end
2014-05-03 14:13:44 +02:00
end
end