2015-10-10 12:24:43 +03:00
|
|
|
require_relative "stream_writer"
|
|
|
|
require_relative 'object_file'
|
|
|
|
require_relative 'symbol_table_section'
|
|
|
|
require_relative 'text_section'
|
|
|
|
require_relative 'string_table_section'
|
2014-04-14 18:09:56 +03:00
|
|
|
|
2014-04-23 13:57:34 +03:00
|
|
|
module Elf
|
2014-04-14 18:09:56 +03:00
|
|
|
|
|
|
|
class ObjectWriter
|
2016-12-31 18:46:17 +02:00
|
|
|
def initialize( machine , objects )
|
|
|
|
@machine = machine
|
|
|
|
@objects = objects
|
|
|
|
target = Elf::Constants::TARGET_ARM
|
2014-04-19 23:25:46 +03:00
|
|
|
@object = Elf::ObjectFile.new(target)
|
|
|
|
sym_strtab = Elf::StringTableSection.new(".strtab")
|
2014-04-14 18:09:56 +03:00
|
|
|
@object.add_section sym_strtab
|
2014-04-19 23:25:46 +03:00
|
|
|
@symbol_table = Elf::SymbolTableSection.new(".symtab", sym_strtab)
|
2014-04-14 18:09:56 +03:00
|
|
|
@object.add_section @symbol_table
|
|
|
|
|
2014-04-19 23:25:46 +03:00
|
|
|
@text = Elf::TextSection.new(".text")
|
2014-04-14 18:09:56 +03:00
|
|
|
@object.add_section @text
|
2015-05-12 15:36:44 +03:00
|
|
|
|
2017-01-19 09:02:29 +02:00
|
|
|
assembler = Risc::Assembler.new(@machine , @objects)
|
2015-06-09 11:37:32 +02:00
|
|
|
set_text assembler.write_as_string
|
2014-08-30 14:17:00 +03:00
|
|
|
|
2016-12-30 13:15:08 +02:00
|
|
|
# for debug add labels for labels
|
2016-12-31 15:08:32 +02:00
|
|
|
Parfait.object_space.each_type do |type|
|
2016-12-30 14:04:59 +02:00
|
|
|
type.methods.each do |f|
|
2015-10-28 14:33:38 +02:00
|
|
|
f.instructions.each_label do |label|
|
2017-01-01 21:52:55 +02:00
|
|
|
add_symbol "#{type.name}::#{f.name}:#{label.name}" , Positioned.position(label)
|
2016-12-30 13:15:08 +02:00
|
|
|
end
|
2014-05-31 17:02:55 +03:00
|
|
|
end
|
2014-05-31 14:35:33 +03:00
|
|
|
end
|
2015-10-25 12:03:31 +02:00
|
|
|
|
2016-12-31 18:46:17 +02:00
|
|
|
@objects.each do |id,slot|
|
2015-11-14 15:04:04 +02:00
|
|
|
next if slot.is_a?(Parfait::BinaryCode)
|
2015-06-27 20:08:07 +03:00
|
|
|
if( slot.respond_to? :sof_reference_name )
|
|
|
|
label = "#{slot.sof_reference_name}"
|
|
|
|
else
|
2017-01-01 21:52:55 +02:00
|
|
|
label = "#{slot.class.name}::#{Positioned.position(slot).to_s(16)}"
|
2015-06-27 20:08:07 +03:00
|
|
|
end
|
2014-10-02 16:06:05 +03:00
|
|
|
label += "=#{slot}" if slot.is_a?(Symbol) or slot.is_a?(String)
|
2017-01-01 21:52:55 +02:00
|
|
|
add_symbol label , Positioned.position(slot)
|
2016-12-12 23:38:55 +02:00
|
|
|
if slot.is_a?(Parfait::TypedMethod)
|
2017-01-01 21:52:55 +02:00
|
|
|
add_symbol slot.name.to_s , Positioned.position(slot.binary)
|
2015-11-14 15:04:04 +02:00
|
|
|
end
|
2014-08-30 20:55:22 +03:00
|
|
|
end
|
2014-04-14 18:09:56 +03:00
|
|
|
end
|
2016-12-15 18:08:55 +02:00
|
|
|
|
2014-05-20 10:28:34 +03:00
|
|
|
attr_reader :text
|
2016-12-15 18:08:55 +02:00
|
|
|
|
2014-04-14 18:09:56 +03:00
|
|
|
def set_text(text)
|
|
|
|
@text.text = text
|
|
|
|
add_symbol "_start", 0
|
|
|
|
end
|
2016-12-30 13:15:08 +02:00
|
|
|
|
2014-04-14 18:09:56 +03:00
|
|
|
def add_symbol(name, offset, linkage = Elf::Constants::STB_GLOBAL)
|
2015-11-14 22:53:01 +02:00
|
|
|
return add_symbol( name + "_" , offset ) if @symbol_table.has_name(name)
|
2014-04-14 18:09:56 +03:00
|
|
|
@symbol_table.add_func_symbol name, offset, @text, linkage
|
|
|
|
end
|
|
|
|
|
|
|
|
def save(filename)
|
2015-05-12 15:36:44 +03:00
|
|
|
to = File.open(filename, 'wb')
|
2014-04-21 21:38:39 +03:00
|
|
|
@object.write to
|
|
|
|
to.close
|
2014-04-14 18:09:56 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2015-05-12 15:36:44 +03:00
|
|
|
end
|