change assembler to write binary code objects
also all debug in hex
This commit is contained in:
parent
ce58de2671
commit
7cf253ad9c
@ -10,6 +10,7 @@ module Arm
|
|||||||
# in Arm the register layout is different and so we have to place the syscall code into register 7
|
# in Arm the register layout is different and so we have to place the syscall code into register 7
|
||||||
# Riscs 0-6 hold the call values as for a normal c call
|
# Riscs 0-6 hold the call values as for a normal c call
|
||||||
class CallInstruction < Instruction
|
class CallInstruction < Instruction
|
||||||
|
attr_reader :first
|
||||||
|
|
||||||
def initialize(first, attributes)
|
def initialize(first, attributes)
|
||||||
super(nil, nil)
|
super(nil, nil)
|
||||||
|
@ -12,19 +12,25 @@ module Risc
|
|||||||
|
|
||||||
MARKER = 0xA51AF00D
|
MARKER = 0xA51AF00D
|
||||||
|
|
||||||
def initialize( machine , objects)
|
def initialize( machine)
|
||||||
@machine = machine
|
@machine = machine
|
||||||
@objects = objects
|
@objects = machine.objects
|
||||||
@load_at = 0x8054 # this is linux/arm
|
@load_at = 0x8054 # this is linux/arm
|
||||||
end
|
end
|
||||||
|
|
||||||
# objects must be written in same order as positioned / assembled
|
# objects must be written in same order as positioned / assembled
|
||||||
def write_as_string
|
def write_as_string
|
||||||
|
@stream = StringIO.new
|
||||||
|
Positioned.set_position(@machine.cpu_init.first , 0)
|
||||||
|
puts ":#{Positioned.position(@machine.cpu_init.first)}:"
|
||||||
|
@machine.cpu_init.assemble( @stream )
|
||||||
|
8.times do
|
||||||
|
@stream.write_unsigned_int_8(0)
|
||||||
|
end
|
||||||
write_debug
|
write_debug
|
||||||
write_create_binary
|
|
||||||
write_objects
|
write_objects
|
||||||
write_code
|
write_code
|
||||||
log.debug "Assembled #{stream_position} bytes"
|
log.debug "Assembled 0x#{stream_position.to_s(16)} bytes"
|
||||||
return @stream.string
|
return @stream.string
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -33,24 +39,11 @@ module Risc
|
|||||||
all = @objects.values.sort{|a,b| Positioned.position(a) <=> Positioned.position(b)}
|
all = @objects.values.sort{|a,b| Positioned.position(a) <=> Positioned.position(b)}
|
||||||
all.each do |objekt|
|
all.each do |objekt|
|
||||||
next if objekt.is_a?(Risc::Label)
|
next if objekt.is_a?(Risc::Label)
|
||||||
log.debug "Linked #{objekt.class}(#{objekt.object_id}) at #{Positioned.position(objekt)} / #{objekt.padded_length}"
|
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)
|
Positioned.position(objekt)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def write_create_binary
|
|
||||||
# first we need to create the binary code for the methods
|
|
||||||
@objects.each do |id , objekt|
|
|
||||||
next unless objekt.is_a? Parfait::TypedMethod
|
|
||||||
assemble_binary_method(objekt)
|
|
||||||
end
|
|
||||||
@stream = StringIO.new
|
|
||||||
@machine.init.assemble( @stream )
|
|
||||||
8.times do
|
|
||||||
@stream.write_unsigned_int_8(0)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def write_objects
|
def write_objects
|
||||||
# then the objects , not code yet
|
# then the objects , not code yet
|
||||||
@objects.each do | id, objekt|
|
@objects.each do | id, objekt|
|
||||||
@ -60,51 +53,23 @@ module Risc
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Write the BinaryCode objects of all methods to stream.
|
||||||
|
# Really like any other object, it's just about the ordering
|
||||||
def write_code
|
def write_code
|
||||||
# then write the methods to file
|
@objects.each do |id, method|
|
||||||
@objects.each do |id, objekt|
|
next unless method.is_a? Parfait::TypedMethod
|
||||||
next unless objekt.is_a? Parfait::BinaryCode
|
binary = method.binary
|
||||||
write_any( objekt )
|
while(binary) do
|
||||||
|
write_any( binary )
|
||||||
|
binary = binary.next
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# assemble the MethodSource into a stringio
|
def write_any( obj )
|
||||||
# and then plonk that binary data into the method.code array
|
|
||||||
def assemble_binary_method( method )
|
|
||||||
stream = StringIO.new
|
|
||||||
#puts "Method #{method.source.cpu_instructions.to_ac}"
|
|
||||||
begin
|
|
||||||
#puts "assemble #{method.source.cpu_instructions}"
|
|
||||||
method.cpu_instructions.assemble_all( stream )
|
|
||||||
rescue => e
|
|
||||||
log.debug "Assembly error #{method.name}\n#{method.to_rxf.to_s[0...2000]}"
|
|
||||||
raise e
|
|
||||||
end
|
|
||||||
write_binary_method_to_stream( method, stream)
|
|
||||||
end
|
|
||||||
|
|
||||||
def write_binary_method_to_stream(method, stream)
|
|
||||||
write_binary_method_checks(method,stream)
|
|
||||||
index = 1
|
|
||||||
stream.each_byte do |b|
|
|
||||||
method.binary.set_char(index , b )
|
|
||||||
index = index + 1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
def write_binary_method_checks(method,stream)
|
|
||||||
stream.rewind
|
|
||||||
length = stream.length
|
|
||||||
binary = method.binary
|
|
||||||
total_byte_length = method.cpu_instructions.total_byte_length
|
|
||||||
log.debug "Assembled code #{method.name} with length #{length}"
|
|
||||||
raise "length error #{binary.total_byte_length} != #{total_byte_length}" if binary.total_byte_length <= total_byte_length
|
|
||||||
raise "length error #{length} != #{total_byte_length}" if total_byte_length != length
|
|
||||||
end
|
|
||||||
|
|
||||||
def write_any obj
|
|
||||||
write_any_log( obj , "Write")
|
write_any_log( obj , "Write")
|
||||||
if @stream.length != Positioned.position(obj)
|
if @stream.length != Positioned.position(obj)
|
||||||
raise "Write #{obj.class} #{obj.object_id} at #{stream_position} not #{Positioned.position(obj)}"
|
raise "Write #{obj.class}:0x#{obj.object_id.to_s(16)} at #{stream_position} not #{Positioned.position(obj)}"
|
||||||
end
|
end
|
||||||
write_any_out(obj)
|
write_any_out(obj)
|
||||||
write_any_log( obj , "Wrote")
|
write_any_log( obj , "Wrote")
|
||||||
@ -112,7 +77,7 @@ module Risc
|
|||||||
end
|
end
|
||||||
|
|
||||||
def write_any_log( obj , at)
|
def write_any_log( obj , at)
|
||||||
log.debug "#{at} #{obj.class}(#{obj.object_id}) at stream #{stream_position} pos:#{Positioned.position(obj)} , len:#{obj.padded_length}"
|
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)}"
|
||||||
end
|
end
|
||||||
|
|
||||||
def write_any_out(obj)
|
def write_any_out(obj)
|
||||||
@ -127,18 +92,19 @@ module Risc
|
|||||||
def write_object( object )
|
def write_object( object )
|
||||||
write_object_check(object)
|
write_object_check(object)
|
||||||
obj_written = write_object_variables(object)
|
obj_written = write_object_variables(object)
|
||||||
log.debug "instances=#{object.get_instance_variables.inspect} mem_len=#{object.padded_length}"
|
log.debug "instances=#{object.get_instance_variables.inspect} mem_len=0x#{object.padded_length.to_s(16)}"
|
||||||
indexed_written = write_object_indexed(object)
|
indexed_written = write_object_indexed(object)
|
||||||
log.debug "type #{obj_written} , total #{obj_written + indexed_written} (array #{indexed_written})"
|
log.debug "type #{obj_written} , total #{obj_written + indexed_written} (array #{indexed_written})"
|
||||||
log.debug "Len = #{object.get_length} , inst = #{object.get_type.instance_length}" if object.is_a? Parfait::Type
|
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
|
||||||
pad_after( obj_written + indexed_written )
|
pad_after( obj_written + indexed_written )
|
||||||
Positioned.position(object)
|
Positioned.position(object)
|
||||||
end
|
end
|
||||||
|
|
||||||
def write_object_check(object)
|
def write_object_check(object)
|
||||||
log.debug "Write object #{object.class} #{object.inspect}"
|
log.debug "Write object #{object.class} #{object.inspect[0..100]}"
|
||||||
unless @objects.has_key? object.object_id
|
unless @objects.has_key? object.object_id
|
||||||
raise "Object(#{object.object_id}) not linked #{object.inspect}"
|
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}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -159,6 +125,7 @@ module Risc
|
|||||||
object.get_instance_variables.each do |var|
|
object.get_instance_variables.each do |var|
|
||||||
inst = object.get_instance_variable(var)
|
inst = object.get_instance_variable(var)
|
||||||
#puts "Nil for #{object.class}.#{var}" unless inst
|
#puts "Nil for #{object.class}.#{var}" unless inst
|
||||||
|
inst = nil if [:cpu_instructions , :risc_instructions].include?(var)
|
||||||
write_ref_for(inst)
|
write_ref_for(inst)
|
||||||
written += 4
|
written += 4
|
||||||
end
|
end
|
||||||
@ -175,7 +142,7 @@ module Risc
|
|||||||
raise "length mismatch #{str.length} != #{string.char_length}" if str.length != string.char_length
|
raise "length mismatch #{str.length} != #{string.char_length}" if str.length != string.char_length
|
||||||
end
|
end
|
||||||
str = string.to_s if string.is_a? Symbol
|
str = string.to_s if string.is_a? Symbol
|
||||||
log.debug "#{string.class} is #{string} at #{Positioned.position(string)} length #{string.length}"
|
log.debug "#{string.class} is #{string} at 0x#{Positioned.position(string).to_s(16)} length 0x#{string.length.to_s(16)}"
|
||||||
write_checked_string(string , str)
|
write_checked_string(string , str)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -185,7 +152,7 @@ module Risc
|
|||||||
@stream.write_signed_int_32( str.length ) #int
|
@stream.write_signed_int_32( str.length ) #int
|
||||||
@stream.write str
|
@stream.write str
|
||||||
pad_after(str.length + 8 ) # type , length *4 == 12
|
pad_after(str.length + 8 ) # type , length *4 == 12
|
||||||
log.debug "String (#{string.length}) stream #{@stream.length}"
|
log.debug "String (0x#{string.length.to_s(16)}) stream 0x#{@stream.length.to_s(16)}"
|
||||||
end
|
end
|
||||||
|
|
||||||
def write_Symbol(sym)
|
def write_Symbol(sym)
|
||||||
@ -215,7 +182,7 @@ module Risc
|
|||||||
@stream.write_unsigned_int_8(0)
|
@stream.write_unsigned_int_8(0)
|
||||||
end
|
end
|
||||||
after = stream_position
|
after = stream_position
|
||||||
log.debug "padded #{length} with #{pad} stream #{before}/#{after}"
|
log.debug "padded 0x#{length.to_s(16)} with 0x#{pad.to_s(16)} stream #{before.to_s(16)}/#{after.to_s(16)}"
|
||||||
end
|
end
|
||||||
|
|
||||||
# return the stream length as hex
|
# return the stream length as hex
|
||||||
|
@ -6,31 +6,17 @@ module Risc
|
|||||||
def setup
|
def setup
|
||||||
@machine = Risc.machine.boot
|
@machine = Risc.machine.boot
|
||||||
end
|
end
|
||||||
def test_no_object
|
def est_init
|
||||||
@assembler = Assembler.new(@machine , {})
|
@assembler = Assembler.new(@machine)
|
||||||
end
|
end
|
||||||
def test_space
|
def est_write_fails
|
||||||
@assembler = Assembler.new(@machine , Collector.collect_space)
|
@assembler = Assembler.new(@machine)
|
||||||
end
|
|
||||||
def test_write_fails
|
|
||||||
@assembler = Assembler.new(@machine , {})
|
|
||||||
assert_raises{ @assembler.write_as_string} #must translate first
|
assert_raises{ @assembler.write_as_string} #must translate first
|
||||||
end
|
end
|
||||||
def test_assemble_no_objects
|
|
||||||
@assembler = Assembler.new(@machine , {})
|
|
||||||
assert @machine.translate_arm
|
|
||||||
assert @machine.position_all
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_assemble_space
|
|
||||||
@assembler = Assembler.new(@machine , Collector.collect_space)
|
|
||||||
assert @machine.position_all
|
|
||||||
end
|
|
||||||
def test_write_space
|
def test_write_space
|
||||||
assert @machine.translate_arm
|
|
||||||
assert @machine.position_all
|
assert @machine.position_all
|
||||||
@assembler = Assembler.new(@machine , Collector.collect_space)
|
@assembler = Assembler.new(@machine)
|
||||||
#assert @assembler.write_as_string
|
assert @assembler.write_as_string
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user