rubyx/lib/risc/assembler.rb

201 lines
6.8 KiB
Ruby
Raw Normal View History

module Risc
# 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 Logging
2018-03-26 17:14:39 +02:00
log_level :debug
MARKER = 0xA51AF00D
def initialize( machine)
@machine = machine
@objects = machine.objects
@load_at = 0x8054 # this is linux/arm
end
2018-03-26 17:14:39 +02:00
# objects must be written in same order as positioned / assembled
def write_as_string
@stream = StringIO.new
2018-03-29 16:39:31 +02:00
write_any(@machine.binary_init)
2018-03-26 17:14:39 +02:00
write_debug
write_objects
2018-03-26 18:17:30 +02:00
write_code
log.debug "Assembled 0x#{stream_position.to_s(16)} bytes"
2016-12-11 15:12:39 +01:00
return @stream.string
end
# debugging loop accesses all positions to force an error if it's not set
2018-03-26 17:14:39 +02:00
def write_debug
all = @objects.values.sort{|a,b| Positioned.position(a) <=> Positioned.position(b)}
all.each do |objekt|
next if objekt.is_a?(Risc::Label)
log.debug "Linked #{objekt.class}:0x#{objekt.object_id.to_s(16)} at 0x#{Positioned.position(objekt).to_s(16)} / 0x#{objekt.padded_length.to_s(16)}"
Positioned.position(objekt)
end
2016-12-11 13:48:12 +01:00
end
2018-03-26 17:14:39 +02:00
def write_objects
# then the objects , not code yet
@objects.each do | id, objekt|
next if objekt.is_a? Parfait::BinaryCode
next if objekt.is_a? Risc::Label # ignore
write_any( objekt )
end
2016-12-11 13:48:12 +01:00
end
# Write the BinaryCode objects of all methods to stream.
# Really like any other object, it's just about the ordering
2018-03-26 18:17:30 +02:00
def write_code
@objects.each do |id, method|
next unless method.is_a? Parfait::TypedMethod
binary = method.binary
while(binary) do
write_any( binary )
binary = binary.next
end
end
end
def write_any( obj )
2016-12-11 15:48:01 +01:00
write_any_log( obj , "Write")
if @stream.length != Positioned.position(obj)
2018-03-29 16:39:31 +02:00
raise "Write #{obj.class}:0x#{obj.object_id.to_s(16)} at 0x#{stream_position.to_s(16)} not 0x#{Positioned.position(obj).to_s(16)}"
end
2016-12-11 15:12:39 +01:00
write_any_out(obj)
2016-12-11 15:48:01 +01:00
write_any_log( obj , "Wrote")
Positioned.position(obj)
2016-12-11 15:12:39 +01:00
end
2016-12-11 15:48:01 +01:00
def write_any_log( obj , at)
log.debug "#{at} #{obj.class}:0x#{obj.object_id.to_s(16)} at stream 0x#{stream_position.to_s(16)} pos:0x#{Positioned.position(obj).to_s(16)} , len:0x#{obj.padded_length.to_s(16)}"
2016-12-11 15:48:01 +01:00
end
2016-12-11 15:12:39 +01:00
def write_any_out(obj)
2018-03-29 16:39:31 +02:00
case obj
when Parfait::Word, Symbol
write_String obj
2018-03-29 16:39:31 +02:00
when Parfait::BinaryCode
write_BinaryCode obj
2015-06-08 12:24:28 +02:00
else
write_object obj
2015-06-08 12:24:28 +02:00
end
2014-09-09 12:28:07 +02:00
end
2016-02-25 21:03:11 +01:00
# write type of the instance, and the variables that are passed
2014-08-29 20:00:25 +02:00
# variables ar values, ie int or refs. For refs the object needs to save the object first
def write_object( object )
2016-12-11 15:48:01 +01:00
write_object_check(object)
obj_written = write_object_variables(object)
log.debug "instances=#{object.get_instance_variables.inspect} mem_len=0x#{object.padded_length.to_s(16)}"
2016-12-11 15:48:01 +01:00
indexed_written = write_object_indexed(object)
log.debug "type #{obj_written} , total #{obj_written + indexed_written} (array #{indexed_written})"
log.debug "Len = 0x#{object.get_length.to_s(16)} , inst =0x#{object.get_type.instance_length.to_s(16)}" if object.is_a? Parfait::Type
2016-12-11 15:48:01 +01:00
pad_after( obj_written + indexed_written )
Positioned.position(object)
2016-12-11 15:48:01 +01:00
end
def write_object_check(object)
log.debug "Write object #{object.class} #{object.inspect[0..100]}"
2018-03-29 16:39:31 +02:00
#Only initially created codes are collected. Binary_init and method "tails" not
if !@objects.has_key?(object.object_id) and !object.is_a?(Parfait::BinaryCode)
log.debug "Object at 0x#{Positioned.position(object).to_s(16)}:#{object.get_type()}"
raise "Object(0x#{object.object_id.to_s(16)}) not linked #{object.inspect}"
2015-05-30 11:20:39 +02:00
end
2016-12-11 13:48:12 +01:00
end
def write_object_indexed(object)
written = 0
2016-12-31 14:08:32 +01:00
if( object.is_a? Parfait::List)
2015-06-08 12:19:53 +02:00
object.each do |inst|
write_ref_for(inst)
written += 4
2015-06-08 12:19:53 +02:00
end
end
2016-12-11 13:48:12 +01:00
written
end
def write_object_variables(object)
@stream.write_signed_int_32( MARKER )
2018-03-26 17:14:39 +02:00
written = 0 # compensate for the "secret" marker
2016-12-11 13:48:12 +01:00
object.get_instance_variables.each do |var|
inst = object.get_instance_variable(var)
#puts "Nil for #{object.class}.#{var}" unless inst
inst = nil if [:cpu_instructions , :risc_instructions].include?(var)
2016-12-11 13:48:12 +01:00
write_ref_for(inst)
written += 4
end
written
2014-08-29 14:49:59 +02:00
end
2018-03-29 16:39:31 +02:00
def write_BinaryCode( code )
@stream.write_signed_int_32( MARKER )
write_ref_for( code.get_type )
write_ref_for( code.next )
code.each_word do |word|
@stream.write_unsigned_int_32( word || 0 )
end
log.debug "Code16 witten stream 0x#{@stream.length.to_s(16)}"
end
def write_String( string )
if string.is_a? Parfait::Word
str = string.to_string
raise "length mismatch #{str.length} != #{string.char_length}" if str.length != string.char_length
end
2015-06-01 07:33:23 +02:00
str = string.to_s if string.is_a? Symbol
log.debug "#{string.class} is #{string} at 0x#{Positioned.position(string).to_s(16)} length 0x#{string.length.to_s(16)}"
2016-12-11 15:12:39 +01:00
write_checked_string(string , str)
end
def write_checked_string(string, str)
@stream.write_signed_int_32( MARKER )
write_ref_for( string.get_type ) #ref
@stream.write_signed_int_32( str.length ) #int
2014-08-26 21:35:56 +02:00
@stream.write str
pad_after(str.length + 8 ) # type , length *4 == 12
log.debug "String (0x#{string.length.to_s(16)}) stream 0x#{@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_signed_int_32(0)
2015-10-16 16:13:08 +02:00
when Fixnum
@stream.write_signed_int_32(object)
2015-06-08 12:19:53 +02:00
else
@stream.write_signed_int_32(Positioned.position(object) + @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.padding_for(length) - 4 # four is for the MARKER we write
2014-09-05 19:56:05 +02:00
pad.times do
@stream.write_unsigned_int_8(0)
2014-09-05 19:56:05 +02:00
end
2015-07-02 12:49:33 +02:00
after = stream_position
log.debug "padded 0x#{length.to_s(16)} with 0x#{pad.to_s(16)} stream #{before.to_s(16)}/#{after.to_s(16)}"
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
@stream.length
end
end
2017-10-05 15:41:45 +02:00
RxFile::Volotile.add(Assembler , [:objects])
end