some reek assited coding on assembler

This commit is contained in:
Torsten Ruger 2016-12-16 15:41:26 +02:00
parent 5cd05f6135
commit e10fc3eedd
2 changed files with 14 additions and 10 deletions

View File

@ -15,7 +15,7 @@ module Elf
EM_860 = 7
EM_MIPS = 8
EM_ARM = 40
EV_NONE = 0
EV_CURRENT = 1
@ -51,9 +51,9 @@ module Elf
ABI_SYSTEMV = 0
ABI_ARM = 0x61
ARM_INFLOOP = "\x08\xf0\x4f\xe2"
#ARM_INFLOOP = "\x08\xf0\x4f\xe2"
TARGET_ARM = [ELFCLASS32, Elf::DATA2LSB, ABI_ARM, EM_ARM]
TARGET_X86 = [ELFCLASS32, Elf::DATA2LSB, ABI_SYSTEMV, EM_386]
end
end
end

View File

@ -32,12 +32,13 @@ module Register
def asseble_code_from( at )
@machine.objects.each do |id , objekt|
next unless objekt.is_a? Parfait::TypedMethod
objekt.binary.position = at
binary = objekt.binary
binary.position = at
objekt.instructions.set_position at + 12 # BinaryCode header
len = objekt.instructions.total_byte_length
log.debug "CODE #{objekt.name} at #{objekt.binary.position} len: #{len}"
objekt.binary.set_length(len , 0)
at += objekt.binary.padded_length
log.debug "CODE #{objekt.name} at #{binary.position} len: #{len}"
binary.set_length(len , 0)
at += binary.padded_length
end
at
end
@ -141,9 +142,12 @@ module Register
end
def write_binary_method_checks(method,stream)
stream.rewind
log.debug "Assembled code #{method.name} with length #{stream.length}"
raise "length error #{method.binary.char_length} != #{method.instructions.total_byte_length}" if method.binary.char_length != method.instructions.total_byte_length
raise "length error #{stream.length} != #{method.instructions.total_byte_length}" if method.instructions.total_byte_length != stream.length
length = stream.length
binary = method.binary
total_byte_length = method.instructions.total_byte_length
log.debug "Assembled code #{method.name} with length #{length}"
raise "length error #{binary.char_length} != #{total_byte_length}" if binary.char_length != total_byte_length
raise "length error #{length} != #{total_byte_length}" if total_byte_length != length
end
def write_any obj