rubyx/lib/register/assembler.rb

216 lines
7.4 KiB
Ruby
Raw Normal View History

module Register
class LinkException < Exception
end
# Assemble the object machine into a binary.
2015-06-09 11:38:03 +02:00
# Assemble first to get positions, then write
2015-05-30 11:20:39 +02:00
2015-06-09 11:38:03 +02:00
# The assemble function determines the length of an object and then actually
2015-05-30 11:20:39 +02:00
# 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
include Padding
2014-09-09 12:28:07 +02:00
TYPE_REF = 0
TYPE_INT = 1
TYPE_BITS = 4
TYPE_LENGTH = 6
def initialize machine
@machine = machine
@load_at = 0x8054 # this is linux/arm
end
def assemble
at = 0
2015-06-10 10:43:50 +02:00
#need the initial jump at 0 and then functions
@machine.init.set_position(at)
2015-10-25 11:03:31 +01:00
at += @machine.init.byte_length
at += 8 # thats the padding
# want to have the methods first in the executable (ie the BinaryCode objects)
@machine.objects.each do |id , objekt|
next unless objekt.is_a? Parfait::Method
objekt.binary.position = at
objekt.instructions.set_position at
2015-07-02 12:49:33 +02:00
#puts "CODE #{objekt.name} at #{objekt.position}"
len = objekt.instructions.total_byte_length
objekt.binary.set_length(len/4)
at += len
end
# and then everything else
@machine.objects.each do | id , objekt|
next if objekt.is_a? Register::Label # will get assembled as method.instructions
next if objekt.is_a? Parfait::BinaryCode
objekt.position = at
at += objekt.word_length
end
end
def write_as_string
# must be same order as assemble
begin
return try_write
rescue LinkException
2014-09-18 16:05:22 +02:00
# knowing that we fix the problem, we hope to get away with retry.
retry
end
end
# private method to implement write_as_string. May throw link Exception in which
# case we try again. Once.
def try_write
assemble
all = @machine.objects.values.sort{|a,b| a.position <=> b.position}
# debugging loop accesses all positions to force an error if it's not set
all.each do |objekt|
#puts "Linked #{objekt.class}(#{objekt.object_id.to_s(16)}) at #{objekt.position.to_s(16)} / #{objekt.word_length.to_s(16)}"
objekt.position
end
# first we need to create the binary code for the methods
@machine.objects.each do |id , objekt|
next unless objekt.is_a? Parfait::Method
assemble_binary_method(objekt)
end
@stream = StringIO.new
2015-10-25 11:03:31 +01:00
@machine.init.assemble( @stream )
8.times do
@stream.write_uint8(0)
end
# then write the methods to file
@machine.objects.each do |id, objekt|
next unless objekt.is_a? Parfait::BinaryCode
write_any( objekt )
end
# and then the rest of the object machine
@machine.objects.each do | id, objekt|
next if objekt.is_a? Parfait::BinaryCode
next if object.is_a? Register::Label # ignore
write_any( objekt )
end
#puts "Assembled #{stream_position} bytes"
2014-08-30 13:01:22 +02:00
return @stream.string
2014-08-26 21:35:56 +02:00
end
2015-07-03 19:13:03 +02:00
# assemble the MethodSource into a stringio
# and then plonk that binary data into the method.code array
def assemble_binary_method method
stream = StringIO.new
2015-10-25 11:03:31 +01:00
#puts "Method #{method.source.instructions.to_ac}"
begin
2015-10-25 11:03:31 +01:00
#puts "assemble #{method.source.instructions}"
method.instructions.assemble_all( stream )
rescue => e
puts "Assembly error #{method.name}\n#{Sof.write(method.instructions).to_s[0...2000]}"
raise e
end
index = 1
2015-06-03 09:01:59 +02:00
stream.rewind
2015-06-11 17:04:18 +02:00
#puts "Assembled #{method.name} with length #{stream.length}"
raise "length error #{method.binary.get_length} != #{method.instructions.total_byte_length}" if method.binary.get_length*4 != method.instructions.total_byte_length
raise "length error #{stream.length} != #{method.instructions.total_byte_length}" if method.instructions.total_byte_length != stream.length
stream.each_byte do |b|
method.binary.set(index , b )
index = index + 1
end
end
def write_any obj
2015-07-02 12:49:33 +02:00
#puts "Assemble #{obj.class}(#{obj.object_id.to_s(16)}) at stream #{stream_position} pos:#{obj.position.to_s(16)} , len:#{obj.word_length.to_s(16)}"
if @stream.length != obj.position
raise "Assemble #{obj.class} #{obj.object_id.to_s(16)} at #{stream_position} not #{obj.position.to_s(16)}"
end
2015-06-08 12:24:28 +02:00
if obj.is_a?(Parfait::Word) or obj.is_a?(Symbol)
write_String obj
2015-06-08 12:24:28 +02:00
else
write_object obj
2015-06-08 12:24:28 +02:00
end
#puts "Assemble #{obj.class}(#{obj.object_id.to_s(16)}) at stream #{stream_position} pos:#{obj.position.to_s(16)} , len:#{obj.word_length.to_s(16)}"
if @stream.length != obj.position
raise "Assemble #{obj.class} #{obj.object_id.to_s(16)} at #{stream_position} not #{obj.position.to_s(16)}"
2014-09-09 12:28:07 +02:00
end
obj.position
2014-09-09 12:28:07 +02:00
end
2014-08-29 20:00:25 +02:00
# 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 write_object( object )
puts "Write #{object.class}"
unless @machine.objects.has_key? object.object_id
2015-05-30 11:20:39 +02:00
raise "Object(#{object.object_id}) not linked #{object.inspect}"
end
layout = object.get_layout
write_ref_for(layout )
layout.each do |var|
inst = object.instance_variable_get "@#{var}".to_sym
2015-06-30 09:22:54 +02:00
#puts "Nil for #{object.class}.#{var}" unless inst
write_ref_for(inst)
2014-08-26 21:35:56 +02:00
end
puts "layout length=#{layout.get_length.to_s(16)} mem_len=#{layout.word_length.to_s(16)}"
2015-06-06 18:46:53 +02:00
l = layout.get_length
if( object.is_a? Parfait::Indexed)
2015-06-08 12:19:53 +02:00
object.each do |inst|
write_ref_for(inst)
l += 4
2015-06-08 12:19:53 +02:00
end
end
pad_after( l / 4 )
object.position
2014-08-29 14:49:59 +02:00
end
def write_BinaryCode code
write_String code
end
def write_String( string )
2015-06-03 09:01:59 +02:00
str = string.to_string if string.is_a? Parfait::Word
2015-06-01 07:33:23 +02:00
str = string.to_s if string.is_a? Symbol
word = (str.length + 7) / 32 # all object are multiple of 8 words (7 for header)
2014-09-09 12:28:07 +02:00
# first line is integers, convention is that following lines are the same
TYPE_LENGTH.times { word = ((word << TYPE_BITS) + TYPE_INT) }
@stream.write_uint32( word )
2015-07-02 12:49:33 +02:00
#puts "String is #{string} at #{string.position.to_s(16)} length #{string.length}"
write_ref_for( string.get_layout ) #ref
2014-08-26 21:35:56 +02:00
@stream.write str
pad_after(str.length)
2015-07-02 12:49:33 +02:00
#puts "String (#{string.length.to_s(16)}) stream #{@stream.length.to_s(16)}"
2014-08-26 21:35:56 +02:00
end
def write_Symbol(sym)
return write_String(sym)
2014-08-26 21:35:56 +02:00
end
private
2014-08-29 20:00:25 +02:00
2015-05-30 11:20:39 +02:00
# write means we write the resulting address straight into the assembler stream
# object means the object of which we write the address
def write_ref_for object
2015-10-16 16:13:08 +02:00
case object
when nil
@stream.write_sint32(0)
2015-10-16 16:13:08 +02:00
when Fixnum
@stream.write_sint32(object)
2015-06-08 12:19:53 +02:00
else
@stream.write_sint32(object.position + @load_at)
2015-06-08 12:19:53 +02:00
end
2014-08-29 20:00:25 +02:00
end
# pad_after is always in bytes and pads (writes 0's) up to the next 8 word boundary
def pad_after length
2015-07-02 12:49:33 +02:00
before = stream_position
pad = padding_for(length)
2014-09-05 19:56:05 +02:00
pad.times do
@stream.write_uint8(0)
2014-09-05 19:56:05 +02:00
end
2015-07-02 12:49:33 +02:00
after = stream_position
puts "padded #{length.to_s(16)} with #{pad.to_s(16)} stream #{before}/#{after}"
2014-09-05 19:56:05 +02:00
end
2015-07-02 12:49:33 +02:00
# return the stream length as hex
def stream_position
2015-07-02 12:49:33 +02:00
@stream.length.to_s(16)
end
end
2015-10-22 17:16:29 +02:00
Sof::Volotile.add(Assembler , [:objects])
end