rubyx/lib/arm/instructions/move_instruction.rb

72 lines
2.4 KiB
Ruby
Raw Normal View History

2016-12-14 12:43:13 +01:00
module Arm
class MoveInstruction < Instruction
2016-12-14 12:43:13 +01:00
def initialize( to , from , options = {})
2016-12-14 12:43:13 +01:00
super(nil)
@attributes = options
if( from.is_a?(Symbol) and Risc::RiscValue.look_like_reg(from) )
from = Risc::RiscValue.new(from , :Integer)
2016-12-14 12:43:13 +01:00
end
@from = from
@to = to
raise "move must have from set #{inspect}" unless from
@attributes[:update_status] = 1 if @attributes[:update_status] == nil
@attributes[:update_status] = 0 if @to == :pc
2016-12-14 12:43:13 +01:00
@attributes[:condition_code] = :al if @attributes[:condition_code] == nil
@attributes[:opcode] = attributes[:opcode]
@operand = 0
@rn = :r0 # register zero = zero bit pattern
@extra = nil
end
attr_accessor :to , :from
2016-12-14 20:13:41 +01:00
# don't overwrite instance variables, to make assembly repeatable
2016-12-14 12:43:13 +01:00
def assemble(io)
rn , operand , right , immediate = @rn , @operand , @from , 1
2016-12-15 11:38:22 +01:00
2016-12-14 20:13:41 +01:00
case right
when Numeric
operand = numeric_operand(right)
when Risc::RiscValue
2016-12-14 12:43:13 +01:00
operand = reg_code(right)
immediate = 0 # ie not immediate is register
else
raise "invalid operand argument #{right.class} , #{self.class}"
end
op = shift_handling
val = shift(operand , 0)
val |= shift(op , 0) # any barrel action, is already shifted
val |= shift(reg_code(@to) , 12)
2016-12-14 18:57:09 +01:00
val |= shift(reg_code(rn) , 12 + 4)
val |= shift(@attributes[:update_status] , 12 + 4 + 4)#20
val |= shift(op_bit_code , 12 + 4 + 4 + 1)
val |= shift(immediate , 12 + 4 + 4 + 1 + 4)
2016-12-15 11:38:22 +01:00
val |= instruction_code
val |= condition_code
io.write_unsigned_int_32 val
2016-12-14 12:43:13 +01:00
end
def instuction_class
0b00 # OPC_DATA_PROCESSING
end
2016-12-14 20:13:41 +01:00
def numeric_operand(right)
return right if (right.fits_u8?)
if (op_with_rot = calculate_u8_with_rr(right))
return op_with_rot
end
raise "Negatives not implemented #{right} " if right < 0
2016-12-14 20:13:41 +01:00
unless @extra
2018-05-08 19:22:04 +02:00
#puts "RELINK M at #{Risc::Position.get(self)}"
@extra = 1
insert ArmMachine.add( to , to , 0 ) #noop that we change below
2016-12-14 20:13:41 +01:00
end
# now we can do the actual breaking of instruction, by splitting the operand
operand = calculate_u8_with_rr( right & 0xFFFFFF00 )
raise "no fit for #{right}" unless operand
@next.set_value(right & 0xFF )
2016-12-14 20:13:41 +01:00
operand
end
2016-12-14 12:43:13 +01:00
end
end