2014-04-16 11:10:58 +02:00
|
|
|
require "asm/nodes"
|
2014-04-14 20:52:16 +02:00
|
|
|
|
2014-04-14 17:09:56 +02:00
|
|
|
module Asm
|
|
|
|
module Arm
|
|
|
|
# ADDRESSING MODE 2
|
|
|
|
# Implemented: immediate offset with offset=0
|
2014-04-20 23:07:33 +02:00
|
|
|
class MemoryAccessBuilder
|
2014-04-14 20:52:16 +02:00
|
|
|
include Asm::Arm::InstructionTools
|
2014-04-14 17:09:56 +02:00
|
|
|
|
2014-04-20 23:07:33 +02:00
|
|
|
def initialize(inst_class, byte_access, load_store)
|
2014-04-14 17:09:56 +02:00
|
|
|
@cond = 0b1110
|
|
|
|
@inst_class = 0
|
|
|
|
@i = 0 #I flag (third bit)
|
|
|
|
@pre_post_index = 0 #P flag
|
|
|
|
@add_offset = 0 #U flag
|
|
|
|
@byte_access = 0 #B flag
|
|
|
|
@w = 0 #W flag
|
|
|
|
@load_store = 0 #L flag
|
|
|
|
@rn = 0
|
|
|
|
@rd = 0
|
|
|
|
@operand = 0
|
2014-04-20 23:07:33 +02:00
|
|
|
@inst_class = inst_class
|
|
|
|
@byte_access = byte_access
|
|
|
|
@load_store = load_store
|
2014-04-14 17:09:56 +02:00
|
|
|
end
|
|
|
|
attr_accessor :cond, :inst_class, :i, :pre_post_index, :add_offset,
|
|
|
|
:byte_access, :w, :load_store, :rn, :rd, :operand
|
|
|
|
|
|
|
|
# Build representation for target address
|
2014-04-19 18:34:04 +02:00
|
|
|
def build_operand(arg)
|
|
|
|
#str / ldr are _seruous instructions. With BIG possibilities no half are implemented
|
2014-04-21 16:27:05 +02:00
|
|
|
@i = 0
|
|
|
|
@pre_post_index = 0
|
|
|
|
@w = 0
|
|
|
|
@operand = 0
|
2014-04-19 18:34:04 +02:00
|
|
|
if (arg.is_a?(Asm::RegisterArgNode))
|
|
|
|
@rn = reg_ref(arg)
|
|
|
|
|
|
|
|
if (false ) #argr.op and argr.right.is_a?(Asm::NumLiteralArgNode))
|
|
|
|
|
|
|
|
# this if was buggy even before
|
|
|
|
# but as mentioned here we'd have to implement the options
|
|
|
|
# though a better syntax will have to be found
|
|
|
|
val = argr.right.value
|
|
|
|
if (val < 0)
|
|
|
|
@add_offset = 0
|
|
|
|
val *= -1
|
|
|
|
else
|
|
|
|
@add_offset = 1
|
|
|
|
end
|
|
|
|
if (val.abs > 4095)
|
|
|
|
raise Asm::AssemblyError.new('reference offset too large/small (max 4095)', argr.right)
|
2014-04-14 17:09:56 +02:00
|
|
|
end
|
2014-04-19 18:34:04 +02:00
|
|
|
@operand = val
|
2014-04-14 17:09:56 +02:00
|
|
|
else
|
2014-04-19 18:34:04 +02:00
|
|
|
# raise Asm::AssemblyError.new(Asm::ERRSTR_INVALID_ARG, arg)
|
2014-04-14 17:09:56 +02:00
|
|
|
end
|
2014-04-21 16:27:05 +02:00
|
|
|
elsif (arg.is_a?(Asm::LabelRefArgNode) or arg.is_a?(Asm::NumEquivAddrArgNode))
|
2014-04-14 17:09:56 +02:00
|
|
|
@pre_post_index = 1
|
|
|
|
@rn = 15 # pc
|
|
|
|
@use_addrtable_reloc = true
|
2014-04-19 18:34:04 +02:00
|
|
|
@addrtable_reloc_target = arg
|
2014-04-14 17:09:56 +02:00
|
|
|
else
|
2014-04-21 16:27:05 +02:00
|
|
|
raise Asm::AssemblyError.new(Asm::ERRSTR_INVALID_ARG + " " + arg.inspect, arg.inspect)
|
2014-04-14 17:09:56 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def write(io, as, ast_asm, inst)
|
2014-04-19 18:34:04 +02:00
|
|
|
#not sure about these 2 constants. They produce the correct output for str r0 , r1
|
|
|
|
# but i can't help thinking that that is because they are not used in that instruction and
|
|
|
|
# so it doesn't matter. Will see
|
|
|
|
@add_offset = 1
|
|
|
|
@pre_post_index = 1
|
|
|
|
val = operand | (rd << 12 ) | (rn << 12 + 4) |
|
2014-04-14 17:09:56 +02:00
|
|
|
(load_store << 12+4+4) | (w << 12+4+4+1) |
|
|
|
|
(byte_access << 12+4+4+1+1) | (add_offset << 12+4+4+1+1+1) |
|
|
|
|
(pre_post_index << 12+4+4+1+1+1+1) | (i << 12+4+4+1+1+1+1+1) |
|
|
|
|
(inst_class << 12+4+4+1+1+1+1+1+1) | (cond << 12+4+4+1+1+1+1+1+1+2)
|
|
|
|
if (@use_addrtable_reloc)
|
2014-04-21 16:27:05 +02:00
|
|
|
# closest_addrtable = Asm::Arm.closest_addrtable(as)
|
2014-04-16 11:03:39 +02:00
|
|
|
if (@addrtable_reloc_target.is_a?(Asm::LabelEquivAddrArgNode))
|
2014-04-14 17:09:56 +02:00
|
|
|
obj = ast_asm.object_for_label(@addrtable_reloc_target.label, inst)
|
|
|
|
ref_label = closest_addrtable.add_label(obj)
|
2014-04-16 11:03:39 +02:00
|
|
|
elsif (@addrtable_reloc_target.is_a?(Asm::NumEquivAddrArgNode))
|
2014-04-14 17:09:56 +02:00
|
|
|
ref_label = closest_addrtable.add_const(@addrtable_reloc_target.value)
|
|
|
|
end
|
2014-04-14 20:52:16 +02:00
|
|
|
as.add_relocation io.tell, ref_label, Asm::Arm::R_ARM_PC12,
|
|
|
|
Asm::Arm::Instruction::RelocHandler
|
2014-04-14 17:09:56 +02:00
|
|
|
end
|
|
|
|
io.write_uint32 val
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|