move assembly from visitor into objects, part one

This commit is contained in:
Torsten Ruger 2014-09-16 16:06:56 +03:00
parent 914d8af8c6
commit 45977ecc01
9 changed files with 121 additions and 148 deletions

View File

@ -17,11 +17,6 @@ module Arm
@is_load = opcode.to_s[0] == "l" ? 1 : 0 #L (load) flag @is_load = opcode.to_s[0] == "l" ? 1 : 0 #L (load) flag
end end
# arm intructions are pretty sensible, and always 4 bytes (thumb not supported)
def length
4
end
def assemble(io , assembler ) def assemble(io , assembler )
# don't overwrite instance variables, to make assembly repeatable # don't overwrite instance variables, to make assembly repeatable
rn = @rn rn = @rn

View File

@ -28,7 +28,7 @@ module Arm
def is_simple def is_simple
right = @from right = @from
if right.is_a?(Virtual::ObjectConstant) if right.is_a?(Virtual::ObjectConstant)
r_pos = assembler.position_for(right) r_pos = 5 #assembler.position_for(right)
# do pc relative addressing with the difference to the instuction # do pc relative addressing with the difference to the instuction
# 8 is for the funny pipeline adjustment (ie pc pointing to fetch and not execute) # 8 is for the funny pipeline adjustment (ie pc pointing to fetch and not execute)
right = Virtual::IntegerConstant.new( r_pos - self.position - 8 ) right = Virtual::IntegerConstant.new( r_pos - self.position - 8 )

View File

@ -5,11 +5,6 @@ module Arm
class StackInstruction < Register::StackInstruction class StackInstruction < Register::StackInstruction
include Arm::Constants include Arm::Constants
# arm intrucioons are pretty sensible, and always 4 bytes (thumb not supported)
def length
4
end
def initialize(first , attributes) def initialize(first , attributes)
super(first , attributes) super(first , attributes)
@attributes[:update_status] = 0 if @attributes[:update_status] == nil @attributes[:update_status] = 0 if @attributes[:update_status] == nil

View File

@ -1,18 +1,4 @@
module Register 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. # Assmble the object space into a binary.
# Link first to get positions, then assemble # Link first to get positions, then assemble
@ -35,58 +21,53 @@ module Register
def link def link
collect_object(@space) collect_object(@space)
at = 4 at = 4
@objects.each do |id , slot| @objects.each do |id , objekt|
next unless slot.objekt.is_a? Virtual::CompiledMethod next unless objekt.is_a? Virtual::CompiledMethod
slot.position = at objekt.position = at
slot.objekt.set_position at objekt.set_position at
at += slot.length at += objekt.length
end end
@objects.each do |id , slot| @objects.each do |id , objekt|
next if slot.objekt.is_a? Virtual::CompiledMethod next if objekt.is_a? Virtual::CompiledMethod
slot.position = at objekt.position = at
at += slot.length at += objekt.length
end end
end end
def assemble def assemble
link link
@stream = StringIO.new @stream = StringIO.new
mid , main_slot = @objects.find{|k,slot| slot.objekt.is_a?(Virtual::CompiledMethod) and (slot.objekt.name == :__init__ )} mid , main = @objects.find{|k,objekt| objekt.is_a?(Virtual::CompiledMethod) and (objekt.name == :__init__ )}
main = main_slot.objekt
puts "function found #{main.name}" puts "function found #{main.name}"
initial_jump = RegisterMachine.instance.b( main ) initial_jump = RegisterMachine.instance.b( main )
initial_jump.position = 0 initial_jump.position = 0
initial_jump.assemble( @stream , self ) initial_jump.assemble( @stream , self )
@objects.each do |id , slot| @objects.each do |id , objekt|
next unless slot.objekt.is_a? Virtual::CompiledMethod next unless objekt.is_a? Virtual::CompiledMethod
assemble_object( slot ) assemble_object( objekt )
end end
@objects.each do |id , slot| @objects.each do |id , objekt|
next if slot.objekt.is_a? Virtual::CompiledMethod next if objekt.is_a? Virtual::CompiledMethod
assemble_object( slot ) assemble_object( objekt )
end end
puts "Assembled #{@stream.length.to_s(16)}" puts "Assembled #{@stream.length.to_s(16)}"
return @stream.string return @stream.string
end end
def collect_object(object) def collect_object(object)
slot = @objects[object.object_id] return object.length if @objects[object.object_id]
return slot.length if slot @objects[object.object_id] = object
slot = LinkSlot.new object collect_object(object.layout[:names])
@objects[object.object_id] = slot
slot.layout = layout_for(object)
collect_object(slot.layout[:names])
clazz = object.class.name.split("::").last clazz = object.class.name.split("::").last
slot.length = send("collect_#{clazz}".to_sym , object) send("collect_#{clazz}".to_sym , object)
end end
def assemble_object slot def assemble_object obj
obj = slot.objekt puts "Assemble #{obj.class}(#{obj.object_id}) at stream #{(@stream.length).to_s(16)} pos:#{obj.position.to_s(16)} , len:#{obj.length}"
puts "Assemble #{obj.class}(#{obj.object_id}) at stream #{(@stream.length).to_s(16)} pos:#{slot.position.to_s(16)} , len:#{slot.length}" raise "Assemble #{obj.class} at #{@stream.length.to_s(16)} not #{obj.position.to_s(16)}" if @stream.length != obj.position
raise "Assemble #{obj.class} at #{@stream.length.to_s(16)} not #{slot.position.to_s(16)}" if @stream.length != slot.position
clazz = obj.class.name.split("::").last clazz = obj.class.name.split("::").last
send("assemble_#{clazz}".to_sym , slot) send("assemble_#{clazz}".to_sym , obj)
slot.position obj.position
end end
def type_word array def type_word array
@ -102,17 +83,15 @@ module Register
# write type and layout of the instance, and the variables that are passed # 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 # variables ar values, ie int or refs. For refs the object needs to save the object first
def assemble_self( object , variables ) def assemble_self( object , variables )
slot = get_slot(object) raise "Object(#{object.object_id}) not linked #{object.inspect}" unless @objects[object.object_id]
raise "Object(#{object.object_id}) not linked #{object.inspect}" unless slot
type = type_word(variables) type = type_word(variables)
@stream.write_uint32( type ) @stream.write_uint32( type )
layout = slot.layout write_ref_for(object.layout[:names] , object )
write_ref_for(layout[:names] , slot )
variables.each do |var| variables.each do |var|
write_ref_for(var , slot) write_ref_for(var , object)
end end
pad_after( variables.length * 4 ) pad_after( variables.length * 4 )
slot.position object.position
end end
def collect_Array( array ) def collect_Array( array )
@ -123,30 +102,27 @@ module Register
padded_words(array.length) padded_words(array.length)
end end
def assemble_Array slot def assemble_Array array
array = slot.objekt
layout = slot.layout
type = type_word(array) type = type_word(array)
@stream.write_uint32( type ) @stream.write_uint32( type )
write_ref_for(layout[:names],slot) #ref write_ref_for(layout[:names],array) #ref
array.each do |var| array.each do |var|
write_ref_for(var,slot) write_ref_for(var,array)
end end
pad_after( array.length * 4 ) pad_after( array.length * 4 )
slot.position array.position
end end
def collect_Hash( hash ) def collect_Hash( hash )
slot = get_slot(hash)
#hook the key/values arrays into the layout (just because it was around) #hook the key/values arrays into the layout (just because it was around)
collect_object(slot.layout[:keys]) collect_object(hash.keys)
collect_object(slot.layout[:values]) collect_object(hash.values)
padded_words(2) padded_words(2)
end end
def assemble_Hash slot def assemble_Hash hash
# so here we can be sure to have _identical_ keys/values arrays # so here we can be sure to have _identical_ keys/values arrays
assemble_self( slot.objekt , [ slot.layout[:keys] , slot.layout[:values] ] ) assemble_self( hash , [ hash.layout[:keys] , hash.layout[:values] ] )
end end
def collect_BootSpace(space) def collect_BootSpace(space)
@ -155,8 +131,7 @@ module Register
padded_words( 2 ) padded_words( 2 )
end end
def assemble_BootSpace(slot) def assemble_BootSpace(space)
space = slot.objekt
assemble_self(space , [space.classes,space.objects] ) assemble_self(space , [space.classes,space.objects] )
end end
@ -167,8 +142,7 @@ module Register
padded_words(3) padded_words(3)
end end
def assemble_BootClass(slot) def assemble_BootClass(clazz)
clazz = slot.objekt
assemble_self( clazz , [clazz.name , clazz.super_class_name, clazz.instance_methods] ) assemble_self( clazz , [clazz.name , clazz.super_class_name, clazz.instance_methods] )
end end
@ -179,15 +153,14 @@ module Register
end end
def assemble_CompiledMethod(slot) def assemble_CompiledMethod(method)
method = slot.objekt
count = method.blocks.inject(0) { |c , block| c += block.length } count = method.blocks.inject(0) { |c , block| c += block.length }
word = (count+7) / 32 # all object are multiple of 8 words (7 for header) word = (count+7) / 32 # all object are multiple of 8 words (7 for header)
raise "Method too long, splitting not implemented #{method.name}/#{count}" if word > 15 raise "Method too long, splitting not implemented #{method.name}/#{count}" if word > 15
# first line is integers, convention is that following lines are the same # first line is integers, convention is that following lines are the same
TYPE_LENGTH.times { word = ((word << TYPE_BITS) + TYPE_INT) } TYPE_LENGTH.times { word = ((word << TYPE_BITS) + TYPE_INT) }
@stream.write_uint32( word ) @stream.write_uint32( word )
write_ref_for(slot.layout[:names] , slot) #ref of layout write_ref_for(method.layout[:names] , method) #ref of layout
# TODO the assembly may have to move to the object to be more extensible # TODO the assembly may have to move to the object to be more extensible
method.blocks.each do |block| method.blocks.each do |block|
block.codes.each do |code| block.codes.each do |code|
@ -209,17 +182,15 @@ module Register
return collect_String(sc.string) return collect_String(sc.string)
end end
def assemble_String( slot ) def assemble_String( str )
str = slot.objekt
str = str.string if str.is_a? Virtual::StringConstant str = str.string if str.is_a? Virtual::StringConstant
str = str.to_s if str.is_a? Symbol str = str.to_s if str.is_a? Symbol
layout = slot.layout
word = (str.length + 7) / 32 # all object are multiple of 8 words (7 for header) word = (str.length + 7) / 32 # all object are multiple of 8 words (7 for header)
raise "String too long (implement split string!) #{word}" if word > 15 raise "String too long (implement split string!) #{word}" if word > 15
# first line is integers, convention is that following lines are the same # first line is integers, convention is that following lines are the same
TYPE_LENGTH.times { word = ((word << TYPE_BITS) + TYPE_INT) } TYPE_LENGTH.times { word = ((word << TYPE_BITS) + TYPE_INT) }
@stream.write_uint32( word ) @stream.write_uint32( word )
write_ref_for( slot.layout[:names] , slot) #ref write_ref_for( str.layout[:names] , slot) #ref
@stream.write str @stream.write str
pad_after(str.length) pad_after(str.length)
#puts "String (#{slot.length}) stream #{@stream.length.to_s(16)}" #puts "String (#{slot.length}) stream #{@stream.length.to_s(16)}"
@ -238,32 +209,13 @@ module Register
s.position s.position
end end
private 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
# write means we write the resulting address straight into the assembler stream (ie don't return it) # write means we write the resulting address straight into the assembler stream (ie don't return it)
# ref means the object of which we write the address # object means the object of which we write the address
# and we write the address into the self, given as second parameter # and we write the address into the self, given as second parameter
def write_ref_for object , self_slot def write_ref_for object , self_ref
slot = get_slot(object)
raise "Object (#{object.object_id}) not linked #{object.inspect}" unless slot raise "Object (#{object.object_id}) not linked #{object.inspect}" unless slot
@stream.write_sint32 slot.position @stream.write_sint32 object.position
end end
# objects only come in lengths of multiple of 8 words # objects only come in lengths of multiple of 8 words
@ -288,26 +240,6 @@ module Register
#puts "padded #{length} with #{pad} stream pos #{@stream.length.to_s(16)}" #puts "padded #{length} with #{pad} stream pos #{@stream.length.to_s(16)}"
end 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 end
Sof::Volotile.add(Register::Assembler , [:objects]) Sof::Volotile.add(Register::Assembler , [:objects])

View File

@ -1,5 +1,7 @@
require 'parslet' require 'parslet'
require_relative "parfait/hash"
require "elf/object_writer" require "elf/object_writer"
require 'salama-reader' require 'salama-reader'
require 'parser/transform' require 'parser/transform'
@ -8,5 +10,3 @@ require "ast/all"
require "sof/all" require "sof/all"
require "register/register_machine" require "register/register_machine"
require_relative "stream_reader" require_relative "stream_reader"
require_relative "parfait/hash"

View File

@ -39,6 +39,10 @@ module Virtual
method method
end end
@@CLAZZ = { :names => [:name , :super_class_name , :instance_methods] , :types => [Virtual::Reference,Virtual::Reference,Virtual::Reference]}
def layout
@@CLAZZ
end
def to_s def to_s
inspect inspect
end end

View File

@ -1,5 +1,6 @@
require_relative "boot_class" require_relative "boot_class"
require "builtin/object" require "builtin/object"
require "parfait/hash"
module Virtual module Virtual
# The BootSpace contains all objects for a program. In functional terms it is a program, but in oo # The BootSpace contains all objects for a program. In functional terms it is a program, but in oo
@ -17,7 +18,7 @@ module Virtual
# with a XXXMachine in it that derives from Virtual::RegisterMachine # with a XXXMachine in it that derives from Virtual::RegisterMachine
def initialize machine = nil def initialize machine = nil
super() super()
@classes = {} @classes = Parfait::Hash.new
@main = Virtual::CompiledMethod.new("main" , [] ) @main = Virtual::CompiledMethod.new("main" , [] )
#global objects (data) #global objects (data)
@objects = [] @objects = []
@ -28,7 +29,7 @@ module Virtual
def run_passes def run_passes
@passes.each do |pass| @passes.each do |pass|
all = main.blocks all = main.blocks
@classes.each_value do |c| @classes.values.each do |c|
c.instance_methods.each {|f| all += f.blocks } c.instance_methods.each {|f| all += f.blocks }
end end
all.each do |block| all.each do |block|
@ -90,6 +91,11 @@ module Virtual
end end
end end
@@SPACE = { :names => [:classes,:objects] , :types => [Virtual::Reference,Virtual::Reference]}
def layout
@@SPACE
end
# Objects are data and get assembled after functions # Objects are data and get assembled after functions
def add_object o def add_object o
return if @objects.include? o return if @objects.include? o

View File

@ -149,6 +149,9 @@ module Virtual
Ast::NameExpression.new(name) Ast::NameExpression.new(name)
end end
def layout
Virtual::Object.layout
end
# sugar to create instructions easily. # sugar to create instructions easily.
# any method will be passed on to the RegisterMachine and the result added to the insertion block # any method will be passed on to the RegisterMachine and the result added to the insertion block
# With this trick we can write what looks like assembler, # With this trick we can write what looks like assembler,

View File

@ -1,3 +1,5 @@
require_relative "type"
module Virtual module Virtual
# our machine is made up of objects, some of which are code, some data # our machine is made up of objects, some of which are code, some data
# #
@ -14,28 +16,64 @@ module Virtual
# (ruby)Array Array # (ruby)Array Array
# String String # String String
class Object class Object
# This could be in test, as it is used only there def initialize
def == other @position = -1
return false unless other.class == self.class @length = -1
Sof::Util.attributes(self).each do |a|
begin
left = send(a)
rescue NoMethodError
next # not using instance variables that are not defined as attr_readers for equality
end end
begin attr_accessor :position , :length , :layout
right = other.send(a) def position
rescue NoMethodError raise "position accessed but not set at #{length} for #{self.objekt}" if @position == -1
return false @position
end
return false unless left.class == right.class
return false unless left == right
end
return true
end end
def inspect def inspect
Sof::Writer.write(self) Sof::Writer.write(self)
end end
@@EMPTY = { :names => [] , :types => []}
def layout
raise "Find me #{self}"
self.class.layout
end
def self.layout
@@EMPTY
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
end
Parfait::Hash.class_eval do
@@HASH = { :names => [:keys,:values] , :types => [Virtual::Reference,Virtual::Reference]}
def layout
@@HASH
end
end
Array.class_eval do
def layout
Virtual::Object.layout
end
end
Symbol.class_eval do
def layout
Virtual::Object.layout
end end
end end