binary code to its own class
makes linking easier
This commit is contained in:
parent
96c59ac144
commit
5845bde33a
@ -2,11 +2,12 @@ require "parfait/value"
|
|||||||
require "parfait/object"
|
require "parfait/object"
|
||||||
require "parfait/module"
|
require "parfait/module"
|
||||||
require "parfait/class"
|
require "parfait/class"
|
||||||
|
require "parfait/list"
|
||||||
|
require "parfait/word"
|
||||||
|
require "parfait/binary_code"
|
||||||
require "parfait/method"
|
require "parfait/method"
|
||||||
require "parfait/dictionary"
|
require "parfait/dictionary"
|
||||||
require "parfait/list"
|
|
||||||
require "parfait/layout"
|
require "parfait/layout"
|
||||||
require "parfait/word"
|
|
||||||
require "parfait/message"
|
require "parfait/message"
|
||||||
require "parfait/frame"
|
require "parfait/frame"
|
||||||
require "parfait/space"
|
require "parfait/space"
|
||||||
|
14
lib/parfait/binary_code.rb
Normal file
14
lib/parfait/binary_code.rb
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# A method object is a description of the method, it's name etc
|
||||||
|
#
|
||||||
|
# But the code that the method represents, the binary, is held as an array
|
||||||
|
# in one of these.
|
||||||
|
#
|
||||||
|
# The BinaryCode is really just a name to make sure that when we call a method
|
||||||
|
# it is really the code we call.
|
||||||
|
|
||||||
|
module Parfait
|
||||||
|
# obviously not a "Word" but a ByteArray , but no such class yet
|
||||||
|
# As on the other hand has no encoding (yet) it is close enough
|
||||||
|
class BinaryCode < Word
|
||||||
|
end
|
||||||
|
end
|
@ -24,12 +24,12 @@ module Parfait
|
|||||||
raise "No class #{name}" unless clazz
|
raise "No class #{name}" unless clazz
|
||||||
@for_class = clazz
|
@for_class = clazz
|
||||||
@name = name
|
@name = name
|
||||||
@code = Word.new_object 0
|
@code = BinaryCode.new_object 0
|
||||||
@arg_names = arg_names
|
@arg_names = arg_names
|
||||||
@locals = []
|
@locals = []
|
||||||
@tmps = []
|
@tmps = []
|
||||||
end
|
end
|
||||||
attr_reader :name , :arg_names , :for_class
|
attr_reader :name , :arg_names , :for_class , :code
|
||||||
|
|
||||||
|
|
||||||
# determine whether this method has a variable by the given name
|
# determine whether this method has a variable by the given name
|
||||||
|
@ -19,31 +19,52 @@ module Register
|
|||||||
attr_reader :objects
|
attr_reader :objects
|
||||||
|
|
||||||
def link
|
def link
|
||||||
@space.set_position(0)
|
# want to have the methods first in the executable
|
||||||
at = @space.mem_length
|
# so first we determine the code length for the methods and set the
|
||||||
|
# code array to right length
|
||||||
|
@space.objects.each do |objekt|
|
||||||
|
next unless objekt.is_a? Parfait::Method
|
||||||
|
objekt.code.set_length(objekt.info.mem_length / 4 , 0)
|
||||||
|
end
|
||||||
|
at = 0
|
||||||
|
# then we make sure we really get the binary codes first
|
||||||
|
@space.objects.each do |objekt|
|
||||||
|
next unless objekt.is_a? Parfait::BinaryCode
|
||||||
|
objekt.set_position at
|
||||||
|
at += objekt.mem_length
|
||||||
|
end
|
||||||
|
# and then everything else
|
||||||
@space.objects.each do | objekt|
|
@space.objects.each do | objekt|
|
||||||
next if objekt.is_a? Parfait::Space
|
next if objekt.is_a? Parfait::BinaryCode
|
||||||
objekt.set_position at
|
objekt.set_position at
|
||||||
at += objekt.mem_length
|
at += objekt.mem_length
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def assemble
|
def assemble
|
||||||
|
#slightly analogous to the link
|
||||||
begin
|
begin
|
||||||
link
|
link
|
||||||
|
# first we need to create the binary code for the methods
|
||||||
|
@space.objects.each do |objekt|
|
||||||
|
next unless objekt.is_a? Parfait::Method
|
||||||
|
assemble_binary_method(objekt)
|
||||||
|
end
|
||||||
@stream = StringIO.new
|
@stream = StringIO.new
|
||||||
#TODOmid , main = @objects.find{|k,objekt| objekt.is_a?(Virtual::CompiledMethod) and (objekt.name == :__init__ )}
|
#TODOmid , main = @objects.find{|k,objekt| objekt.is_a?(Virtual::CompiledMethod) and (objekt.name == :__init__ )}
|
||||||
initial_jump = @space.init
|
# initial_jump = @space.init
|
||||||
initial_jump.codes.each do |code|
|
# initial_jump.codes.each do |code|
|
||||||
code.assemble( @stream )
|
# code.assemble( @stream )
|
||||||
|
# end
|
||||||
|
# then write the methods to file
|
||||||
|
@space.objects.each do |objekt|
|
||||||
|
next unless objekt.is_a? Parfait::BinaryCode
|
||||||
|
assemble_any( objekt )
|
||||||
end
|
end
|
||||||
@objects.each_value do |objekt|
|
# and then the rest of the object space
|
||||||
next unless objekt.is_a? Virtual::CompiledMethod
|
@space.objects.each do | objekt|
|
||||||
assemble_object( objekt )
|
next if objekt.is_a? Parfait::BinaryCode
|
||||||
end
|
assemble_any( objekt )
|
||||||
@objects.each_value do | objekt|
|
|
||||||
next if objekt.is_a? Virtual::CompiledMethod
|
|
||||||
assemble_object( objekt )
|
|
||||||
end
|
end
|
||||||
rescue LinkException
|
rescue LinkException
|
||||||
# knowing that we fix the problem, we hope to get away with retry.
|
# knowing that we fix the problem, we hope to get away with retry.
|
||||||
@ -53,9 +74,28 @@ module Register
|
|||||||
return @stream.string
|
return @stream.string
|
||||||
end
|
end
|
||||||
|
|
||||||
def assemble_object obj
|
# assemble the CompiledMethodInfo into a stringio
|
||||||
#puts "Assemble #{obj.class}(#{obj.object_id}) at stream #{(@stream.length).to_s(16)} pos:#{obj.position.to_s(16)} , len:#{obj.mem_length}"
|
# and then plonk that binary data into the method.code array
|
||||||
raise "Assemble #{obj.class} at #{@stream.length.to_s(16)} not #{obj.position.to_s(16)}" if @stream.length != obj.position
|
def assemble_binary_method method
|
||||||
|
stream = StringIO.new
|
||||||
|
method.info.blocks.each do |block|
|
||||||
|
block.codes.each do |code|
|
||||||
|
code.assemble( stream )
|
||||||
|
end
|
||||||
|
end
|
||||||
|
method.code.clear
|
||||||
|
index = 1
|
||||||
|
stream.each_byte do |b|
|
||||||
|
method.set_char(index , b )
|
||||||
|
index = index + 1
|
||||||
|
raise "length error #{method.code.get_length}" if index > method.info.get_length
|
||||||
|
end
|
||||||
|
end
|
||||||
|
def assemble_any obj
|
||||||
|
puts "Assemble #{obj.class}(\n#{obj.to_s[0..500]}) at stream #{(@stream.length).to_s(16)} pos:#{obj.position.to_s(16)} , len:#{obj.mem_length}"
|
||||||
|
if @stream.length != obj.position
|
||||||
|
raise "Assemble #{obj.class} at #{@stream.length.to_s(16)} not #{obj.position.to_s(16)}"
|
||||||
|
end
|
||||||
clazz = obj.class.name.split("::").last
|
clazz = obj.class.name.split("::").last
|
||||||
send("assemble_#{clazz}".to_sym , obj)
|
send("assemble_#{clazz}".to_sym , obj)
|
||||||
obj.position
|
obj.position
|
||||||
@ -86,7 +126,7 @@ module Register
|
|||||||
object.position
|
object.position
|
||||||
end
|
end
|
||||||
|
|
||||||
def assemble_Array array
|
def assemble_List array
|
||||||
type = type_word(array)
|
type = type_word(array)
|
||||||
@stream.write_uint32( type )
|
@stream.write_uint32( type )
|
||||||
write_ref_for(array.layout[:names]) #ref
|
write_ref_for(array.layout[:names]) #ref
|
||||||
@ -97,7 +137,7 @@ module Register
|
|||||||
array.position
|
array.position
|
||||||
end
|
end
|
||||||
|
|
||||||
def assemble_Hash hash
|
def assemble_Dictionary 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( hash , [ hash.keys , hash.values ] )
|
assemble_self( hash , [ hash.keys , hash.values ] )
|
||||||
end
|
end
|
||||||
@ -117,14 +157,14 @@ module Register
|
|||||||
assemble_self(me , [])
|
assemble_self(me , [])
|
||||||
end
|
end
|
||||||
|
|
||||||
def assemble_CompiledMethod(method)
|
def assemble_Method(method)
|
||||||
count = method.blocks.inject(0) { |c , block| c += block.mem_length }
|
count = method.info.blocks.inject(0) { |c , block| c += block.mem_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(method.layout[:names]) #ref of layout
|
write_ref_for(method.get_layout()) #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|
|
||||||
|
@ -26,6 +26,7 @@ module Virtual
|
|||||||
layouts = { "Word" => [] ,
|
layouts = { "Word" => [] ,
|
||||||
"List" => [] ,
|
"List" => [] ,
|
||||||
"Message" => [],
|
"Message" => [],
|
||||||
|
"BinaryCode" => [],
|
||||||
"Space" => ["classes","objects","frames","messages","next_message","next_frame"],
|
"Space" => ["classes","objects","frames","messages","next_message","next_frame"],
|
||||||
"Frame" => ["locals" , "tmps" ],
|
"Frame" => ["locals" , "tmps" ],
|
||||||
"Layout" => ["object_class"] ,
|
"Layout" => ["object_class"] ,
|
||||||
|
@ -40,7 +40,6 @@ module Virtual
|
|||||||
|
|
||||||
def run_passes
|
def run_passes
|
||||||
@passes.each do |pass_class|
|
@passes.each do |pass_class|
|
||||||
puts "run pass #{pass_class}"
|
|
||||||
blocks = [@init]
|
blocks = [@init]
|
||||||
@space.classes.values.each do |c|
|
@space.classes.values.each do |c|
|
||||||
c.instance_methods.each do |f|
|
c.instance_methods.each do |f|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user