moves link slot positions to bytes (from words). easier maths and better for later

This commit is contained in:
Torsten Ruger 2014-09-07 17:31:40 +03:00
parent f00b06bb44
commit 8040829501
2 changed files with 33 additions and 28 deletions

View File

@ -26,12 +26,12 @@ module Elf
space.classes.values.each do |clazz| space.classes.values.each do |clazz|
clazz.instance_methods.each do |f| clazz.instance_methods.each do |f|
f.blocks.each do |b| f.blocks.each do |b|
add_symbol "#{clazz.name}::#{f.name}@#{b.name}" , b.position * 4 add_symbol "#{clazz.name}::#{f.name}@#{b.name}" , b.position
end end
end end
end end
assembler.objects.values.each do |slot| assembler.objects.values.each do |slot|
add_symbol "#{slot.objekt.class.name}::#{(4*slot.position).to_s(16)}" , slot.position * 4 add_symbol "#{slot.objekt.class.name}::#{slot.position.to_s(16)}" , slot.position
end end
end end
attr_reader :text attr_reader :text

View File

@ -72,8 +72,8 @@ module Register
def assemble_object slot def assemble_object slot
obj = slot.objekt 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}" 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)} #{(4*slot.position).to_s(16)}" if @stream.length != slot.position*4 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 , slot)
slot.position slot.position
@ -90,7 +90,7 @@ module Register
variables.each do |var| variables.each do |var|
write_ref_for(var , slot) write_ref_for(var , slot)
end end
pad_to( variables.length ) pad_after( variables.length * 4 )
slot.position slot.position
end end
@ -99,7 +99,7 @@ module Register
array.each do |elem| array.each do |elem|
collect_object(elem) collect_object(elem)
end end
padded(array.length) padded_words(array.length)
end end
def assemble_Array slot def assemble_Array slot
@ -110,7 +110,7 @@ module Register
array.each do |var| array.each do |var|
write_ref_for(var,slot) write_ref_for(var,slot)
end end
pad_to( array.length ) pad_after( array.length * 4 )
slot.position slot.position
end end
@ -119,7 +119,7 @@ module Register
#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(slot.layout[:keys])
collect_object(slot.layout[:values]) collect_object(slot.layout[:values])
padded(2) padded_words(2)
end end
def assemble_Hash slot def assemble_Hash slot
@ -130,7 +130,7 @@ module Register
def collect_BootSpace(space) def collect_BootSpace(space)
collect_object(space.classes) collect_object(space.classes)
collect_object(space.objects) collect_object(space.objects)
padded( 2 ) padded_words( 2 )
end end
def assemble_BootSpace(slot) def assemble_BootSpace(slot)
@ -142,7 +142,7 @@ module Register
collect_object(clazz.name ) collect_object(clazz.name )
collect_object(clazz.super_class_name) collect_object(clazz.super_class_name)
collect_object(clazz.instance_methods) collect_object(clazz.instance_methods)
padded(3) padded_words(3)
end end
def assemble_BootClass(slot) def assemble_BootClass(slot)
@ -153,7 +153,7 @@ module Register
def collect_CompiledMethod(method) def collect_CompiledMethod(method)
# NOT an ARRAY, just a bag of bytes # NOT an ARRAY, just a bag of bytes
length = method.blocks.inject(0) { |c , block| c += block.length } length = method.blocks.inject(0) { |c , block| c += block.length }
padded(length/4) padded(length)
end end
@ -166,14 +166,14 @@ module Register
method.blocks.each do |block| method.blocks.each do |block|
block.codes.each do |code| block.codes.each do |code|
code.assemble( @stream , self ) code.assemble( @stream , self )
count += 1 count += code.length
end end
end end
pad_to( count ) pad_after( count )
end end
def collect_String( str) def collect_String( str)
return padded(1 + ((str.length + 1) / 4) ) return padded( str.length + 1 )
end end
def collect_Symbol(sym) def collect_Symbol(sym)
@ -192,10 +192,7 @@ module Register
@stream.write_uint32( 0 ) #TODO types @stream.write_uint32( 0 ) #TODO types
write_ref_for( slot.layout[:names] , slot) #ref write_ref_for( slot.layout[:names] , slot) #ref
@stream.write str @stream.write str
pad = (slot.length*4) - 8 - str.length pad_after(str.length)
pad.times do
@stream.write_uint8(0)
end
#puts "String (#{slot.length}) stream #{@stream.length.to_s(16)}" #puts "String (#{slot.length}) stream #{@stream.length.to_s(16)}"
end end
@ -235,25 +232,33 @@ module Register
slot = get_slot(object) 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
pos = slot.position - self_slot.position pos = slot.position - self_slot.position
puts "Writin address #{(4*pos).to_s(16)} = #{slot.position.to_s(16)} - #{self_slot.position.to_s(16)}" puts "Writin address #{(pos).to_s(16)} = #{slot.position.to_s(16)} - #{self_slot.position.to_s(16)}"
@stream.write_sint32 pos * 4 @stream.write_sint32 pos
end end
# objects only come in lengths of multiple of 8 # objects only come in lengths of multiple of 8 words
# but there is a constant overhead of 2, one for type, one for layout # but there is a constant overhead of 2 words, 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 # and as we would have to subtract 1 to make it work without overhead, we now have to add 7
def padded len def padded len
8 * (1 + (len + 1) / 8) a = 32 * (1 + (len + 7)/32 )
puts "#{a} for #{len}"
a
end end
def pad_to length def padded_words words
length += 2 # for header, type and layout padded(words*4) # 4 == word length, a constant waiting for a home
end
# pad_after is always in bytes and pads (writes 0's) up to the next 8 word boundary
def pad_after length
length += 8 # for header, type and layout
pad = padded(length) - length pad = padded(length) - length
pad.times do pad.times do
@stream.write_uint32(0) @stream.write_uint8(0)
end end
#puts "padded #{length} with #{pad} stream pos #{@stream.length/4}" puts "padded #{length} with #{pad} stream pos #{@stream.length.to_s(16)}"
end end
# class variables to have _identical_ objects passed back (stops recursion) # class variables to have _identical_ objects passed back (stops recursion)
@@ARRAY = { :names => [] , :types => []} @@ARRAY = { :names => [] , :types => []}
@@HASH = { :names => [:keys,:values] , :types => [Virtual::Reference,Virtual::Reference]} @@HASH = { :names => [:keys,:values] , :types => [Virtual::Reference,Virtual::Reference]}