2014-05-10 14:34:05 +02:00
|
|
|
module Arm
|
|
|
|
class CompareInstruction < Vm::CompareInstruction
|
|
|
|
include Arm::Constants
|
|
|
|
|
2014-05-18 10:11:26 +02:00
|
|
|
def initialize(left , right , attributes)
|
|
|
|
super(left , right, attributes)
|
2014-05-14 09:47:30 +02:00
|
|
|
@attributes[:condition_code] = :al if @attributes[:condition_code] == nil
|
2014-05-10 14:34:05 +02:00
|
|
|
@operand = 0
|
2014-06-05 09:46:42 +02:00
|
|
|
@immediate = 0
|
2014-05-16 18:56:13 +02:00
|
|
|
@attributes[:update_status] = 1
|
2014-05-18 10:11:26 +02:00
|
|
|
@rn = left
|
2014-05-10 14:34:05 +02:00
|
|
|
@rd = :r0
|
|
|
|
end
|
2014-05-18 10:11:26 +02:00
|
|
|
# arm instructions are pretty sensible, and always 4 bytes (thumb not supported)
|
2014-05-18 09:24:14 +02:00
|
|
|
def length
|
|
|
|
4
|
|
|
|
end
|
|
|
|
|
2014-06-05 09:46:42 +02:00
|
|
|
def assemble(io)
|
|
|
|
# don't overwrite instance variables, to make assembly repeatable
|
|
|
|
rn = @rn
|
|
|
|
operand = @operand
|
|
|
|
immediate = @immediate
|
2014-05-18 09:24:14 +02:00
|
|
|
|
2014-06-05 09:46:42 +02:00
|
|
|
arg = @right
|
2014-06-07 16:59:44 +02:00
|
|
|
if arg.is_a?(Vm::ObjectConstant)
|
2014-05-18 09:24:14 +02:00
|
|
|
# do pc relative addressing with the difference to the instuction
|
|
|
|
# 8 is for the funny pipeline adjustment (ie oc pointing to fetch and not execute)
|
|
|
|
arg = Vm::IntegerConstant.new( arg.position - self.position - 8 )
|
2014-06-05 09:46:42 +02:00
|
|
|
rn = :pc
|
2014-05-18 09:24:14 +02:00
|
|
|
end
|
|
|
|
if( arg.is_a? Fixnum ) #HACK to not have to change the code just now
|
|
|
|
arg = Vm::IntegerConstant.new( arg )
|
|
|
|
end
|
|
|
|
if (arg.is_a?(Vm::IntegerConstant))
|
|
|
|
if (arg.integer.fits_u8?)
|
|
|
|
# no shifting needed
|
2014-06-05 09:46:42 +02:00
|
|
|
operand = arg.integer
|
|
|
|
immediate = 1
|
2014-05-18 09:24:14 +02:00
|
|
|
elsif (op_with_rot = calculate_u8_with_rr(arg))
|
2014-06-05 09:46:42 +02:00
|
|
|
operand = op_with_rot
|
|
|
|
immediate = 1
|
2014-05-18 09:24:14 +02:00
|
|
|
raise "hmm"
|
|
|
|
else
|
|
|
|
raise "cannot fit numeric literal argument in operand #{arg.inspect}"
|
|
|
|
end
|
|
|
|
elsif (arg.is_a?(Symbol) or arg.is_a?(Vm::Integer))
|
2014-06-05 09:46:42 +02:00
|
|
|
operand = arg
|
|
|
|
immediate = 0
|
2014-05-18 09:24:14 +02:00
|
|
|
elsif (arg.is_a?(Arm::Shift))
|
|
|
|
rm_ref = arg.argument
|
2014-06-05 09:46:42 +02:00
|
|
|
immediate = 0
|
2014-05-18 09:24:14 +02:00
|
|
|
shift_op = {'lsl' => 0b000, 'lsr' => 0b010, 'asr' => 0b100,
|
|
|
|
'ror' => 0b110, 'rrx' => 0b110}[arg.type]
|
|
|
|
if (arg.type == 'ror' and arg.value.nil?)
|
|
|
|
# ror #0 == rrx
|
|
|
|
raise "cannot rotate by zero #{arg} #{inspect}"
|
|
|
|
end
|
|
|
|
|
|
|
|
arg1 = arg.value
|
|
|
|
if (arg1.is_a?(Vm::IntegerConstant))
|
|
|
|
if (arg1.value >= 32)
|
|
|
|
raise "cannot shift by more than 31 #{arg1} #{inspect}"
|
|
|
|
end
|
|
|
|
shift_imm = arg1.value
|
|
|
|
elsif (arg1.is_a?(Arm::Register))
|
|
|
|
shift_op val |= 0x1;
|
|
|
|
shift_imm = arg1.number << 1
|
|
|
|
elsif (arg.type == 'rrx')
|
|
|
|
shift_imm = 0
|
|
|
|
end
|
2014-06-05 09:46:42 +02:00
|
|
|
operand = rm_ref | (shift_op << 4) | (shift_imm << 4+3)
|
2014-05-18 09:24:14 +02:00
|
|
|
else
|
|
|
|
raise "invalid operand argument #{arg.inspect} , #{inspect}"
|
|
|
|
end
|
|
|
|
instuction_class = 0b00 # OPC_DATA_PROCESSING
|
2014-06-05 09:46:42 +02:00
|
|
|
val = (operand.is_a?(Symbol) or operand.is_a?(Vm::Integer)) ? reg_code(operand) : operand
|
2014-05-18 09:24:14 +02:00
|
|
|
val = 0 if val == nil
|
|
|
|
val = shift(val , 0)
|
|
|
|
raise inspect unless reg_code(@rd)
|
|
|
|
val |= shift(reg_code(@rd) , 12)
|
2014-06-05 09:46:42 +02:00
|
|
|
val |= shift(reg_code(rn) , 12+4)
|
2014-05-18 09:24:14 +02:00
|
|
|
val |= shift(@attributes[:update_status] , 12+4+4)#20
|
|
|
|
val |= shift(op_bit_code , 12+4+4 +1)
|
2014-06-05 09:46:42 +02:00
|
|
|
val |= shift(immediate , 12+4+4 +1+4)
|
2014-05-18 09:24:14 +02:00
|
|
|
val |= shift(instuction_class , 12+4+4 +1+4+1)
|
|
|
|
val |= shift(cond_bit_code , 12+4+4 +1+4+1+2)
|
|
|
|
io.write_uint32 val
|
|
|
|
end
|
|
|
|
def shift val , by
|
2014-05-21 11:47:40 +02:00
|
|
|
raise "Not integer #{val}:#{val.class} #{inspect}" unless val.is_a? Fixnum
|
2014-05-18 09:24:14 +02:00
|
|
|
val << by
|
2014-05-10 14:34:05 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|