module Register class LinkSlot def initialize o @position = -1 @length = -1 @objekt = o end attr_reader :objekt attr_accessor :position , :length , :layout def position raise "position accessed but not set at #{length} for #{self.objekt}" if @position == -1 @position end end # Assmble the object space into a binary. # Link first to get positions, then assemble # link and assemble functions for each class are close to each other, so to get them the same. # meaning: as the link function determines the length of an object and the assemble actually writes the bytes # they are pretty much dependant. In an earlier version they were functions on the objects, but now it # has gone to a visitor pattern. class Assembler def initialize space @space = space @objects = {} end attr_reader :objects def link collect_object(@space) at = 0 @objects.each do |id , slot| next unless slot.objekt.is_a? Virtual::CompiledMethod slot.position = at slot.objekt.set_position at at += slot.length end @objects.each do |id , slot| next if slot.objekt.is_a? Virtual::CompiledMethod slot.position = at at += slot.length end end def assemble link @stream = StringIO.new @objects.each do |id , slot| next unless slot.objekt.is_a? Virtual::CompiledMethod assemble_object( slot ) end @objects.each do |id , slot| next if slot.objekt.is_a? Virtual::CompiledMethod assemble_object( slot ) end puts "Assembled #{@stream.length.to_s(16)}" return @stream.string end def collect_object(object) slot = @objects[object.object_id] return slot.length if slot slot = LinkSlot.new object @objects[object.object_id] = slot slot.layout = layout_for(object) collect_object(slot.layout[:names]) clazz = object.class.name.split("::").last slot.length = send("collect_#{clazz}".to_sym , object) end def assemble_object slot obj = slot.objekt puts "Assemble #{obj.class}(#{obj.object_id}) at stream #{(@stream.length).to_s(16)} pos:#{(4*slot.position).to_s(16)} , len:#{slot.length}" raise "Assemble #{obj.class} at #{(@stream.length).to_s(16)} #{(4*slot.position).to_s(16)}" if @stream.length != slot.position*4 clazz = obj.class.name.split("::").last send("assemble_#{clazz}".to_sym , slot) slot.position end # write type and layout of the instance, and the variables that are passed # variables ar values, ie int or refs. For refs the object needs to save the object first def assemble_self( object , variables ) slot = get_slot(object) raise "Object(#{object.object_id}) not linked #{object.inspect}" unless slot layout = slot.layout @stream.write_uint32( 0 ) #TODO types write_ref(layout[:names]) variables.each do |var| write_ref var end pad_to( variables.length ) slot.position end def collect_Array( array ) # also array has constant overhead, the padded helper fixes it to multiple of 8 array.each do |elem| collect_object(elem) end padded(array.length) end def assemble_Array slot array = slot.objekt layout = slot.layout @stream.write_uint32( 0 ) #TODO types write_ref layout[:names] #ref array.each do |var| write_ref(var) end pad_to( array.length ) slot.position end def collect_Hash( hash ) slot = get_slot(hash) #hook the key/values arrays into the layout (just because it was around) collect_object(slot.layout[:keys]) collect_object(slot.layout[:values]) padded(2) end def assemble_Hash slot # so here we can be sure to have _identical_ keys/values arrays assemble_self( slot.objekt , [ slot.layout[:keys] , slot.layout[:values] ] ) end def collect_BootSpace(space) collect_object(space.classes) collect_object(space.objects) padded( 2 ) end def assemble_BootSpace(slot) space = slot.objekt assemble_self(space , [space.classes,space.objects] ) end def collect_BootClass(clazz) collect_object(clazz.name ) collect_object(clazz.super_class_name) collect_object(clazz.instance_methods) padded(3) end def assemble_BootClass(slot) clazz = slot.objekt assemble_self( clazz , [clazz.name , clazz.super_class_name, clazz.instance_methods] ) end def collect_CompiledMethod(method) # NOT an ARRAY, just a bag of bytes length = method.blocks.inject(0) { |c , block| c += block.length } padded(length/4) end def assemble_CompiledMethod(slot) method = slot.objekt @stream.write_uint32( 0 ) #TODO types write_ref(slot.layout[:names]) #ref of layout # TODO the assembly may have to move to the object to be more extensible count = 0 method.blocks.each do |block| block.codes.each do |code| code.assemble( @stream , self ) count += 1 end end pad_to( count ) end def collect_String( str) return padded(1 + ((str.length + 1) / 4) ) end def collect_Symbol(sym) return collect_String(sym.to_s) end def collect_StringConstant(sc) return collect_String(sc.string) end def assemble_String( slot ) str = slot.objekt str = str.string if str.is_a? Virtual::StringConstant str = str.to_s if str.is_a? Symbol layout = slot.layout @stream.write_uint32( 0 ) #TODO types write_ref( slot.layout[:names] ) #ref @stream.write str pad = (slot.length*4) - 8 - str.length pad.times do @stream.write_uint8(0) end #puts "String (#{slot.length}) stream #{@stream.length.to_s(16)}" end def assemble_Symbol(sym) return assemble_String(sym) end def assemble_StringConstant( sc) return assemble_String(sc) end private def get_slot(object) slot = @objects[object.object_id] return slot if slot if(object.is_a? Array) @objects.each do |k,slot| next unless slot.objekt.is_a? Array if(slot.objekt.length == object.length) same = true slot.objekt.each_with_index do |v,index| same = false unless v == object[index] end puts slot.objekt.first.class if same return slot if same end end end nil end def write_ref object slot = get_slot(object) raise "Object (#{object.object_id}) not linked #{object.inspect}" unless slot @stream.write_uint32 slot.position end # objects only come in lengths of multiple of 8 # but there is a constant overhead of 2, one for type, one for layout # and as we would have to subtract 1 to make it work without overhead, we now have to add 1 def padded len 8 * (1 + (len + 1) / 8) end def pad_to length length += 2 # for header, type and layout pad = padded(length) - length pad.times do @stream.write_uint32(0) end #puts "padded #{length} with #{pad} stream pos #{@stream.length/4}" end # class variables to have _identical_ objects passed back (stops recursion) @@ARRAY = { :names => [] , :types => []} @@HASH = { :names => [:keys,:values] , :types => [Virtual::Reference,Virtual::Reference]} @@CLAZZ = { :names => [:name , :super_class_name , :instance_methods] , :types => [Virtual::Reference,Virtual::Reference,Virtual::Reference]} @@SPACE = { :names => [:classes,:objects] , :types => [Virtual::Reference,Virtual::Reference]} def layout_for(object) case object when Array , Symbol , String , Virtual::CompiledMethod , Virtual::Block , Virtual::StringConstant @@ARRAY when Hash @@HASH.merge :keys => object.keys , :values => object.values when Virtual::BootClass @@CLAZZ when Virtual::BootSpace @@SPACE else raise "linker encounters unknown class #{object.class}" end end end Sof::Volotile.add(Register::Assembler , [:objects]) end