2016-12-14 12:43:13 +01:00
|
|
|
module Arm
|
2018-03-26 19:04:39 +02:00
|
|
|
class CompareInstruction < Instruction
|
2016-12-14 12:43:13 +01:00
|
|
|
|
|
|
|
def initialize(left , right , attributes)
|
|
|
|
super(nil)
|
|
|
|
@attributes = attributes
|
|
|
|
@left = left
|
|
|
|
@right = right.is_a?(Fixnum) ? IntegerConstant.new(right) : right
|
|
|
|
@attributes[:condition_code] = :al if @attributes[:condition_code] == nil
|
|
|
|
@operand = 0
|
|
|
|
@attributes[:update_status] = 1
|
|
|
|
@rn = left
|
|
|
|
@rd = :r0
|
|
|
|
end
|
|
|
|
|
|
|
|
def assemble(io)
|
|
|
|
# don't overwrite instance variables, to make assembly repeatable
|
2016-12-15 11:38:03 +01:00
|
|
|
rn , operand , immediate= @rn , @operand , 1
|
2016-12-14 12:43:13 +01:00
|
|
|
|
|
|
|
arg = @right
|
2017-01-19 08:02:29 +01:00
|
|
|
operand = Risc::RiscValue.new( arg , :Integer) if( arg.is_a? Symbol )
|
2016-12-15 11:38:03 +01:00
|
|
|
case operand
|
|
|
|
when Numeric
|
2016-12-15 23:41:37 +01:00
|
|
|
operand = arg
|
|
|
|
raise "numeric literal operand to large #{arg.inspect}" unless (arg.fits_u8?)
|
2017-01-19 08:02:29 +01:00
|
|
|
when Symbol , ::Risc::RiscValue
|
2016-12-14 12:43:13 +01:00
|
|
|
immediate = 0
|
2016-12-15 11:38:03 +01:00
|
|
|
when Arm::Shift
|
2016-12-14 20:53:26 +01:00
|
|
|
handle_shift
|
2016-12-14 12:43:13 +01:00
|
|
|
else
|
|
|
|
raise "invalid operand argument #{arg.inspect} , #{inspect}"
|
|
|
|
end
|
2017-01-19 08:02:29 +01:00
|
|
|
val = (operand.is_a?(Symbol) or operand.is_a?(::Risc::RiscValue)) ? reg_code(operand) : operand
|
2016-12-14 12:43:13 +01:00
|
|
|
val = 0 if val == nil
|
|
|
|
val = shift(val , 0)
|
|
|
|
raise inspect unless reg_code(@rd)
|
2016-12-14 20:53:26 +01:00
|
|
|
val |= shift(reg_code(@rd) , 12)
|
|
|
|
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)
|
2016-12-14 18:57:09 +01:00
|
|
|
val |= shift(immediate , 12 + 4 + 4 + 1 + 4)
|
2016-12-15 11:38:03 +01:00
|
|
|
val |= instruction_code
|
|
|
|
val |= condition_code
|
2016-12-31 17:45:22 +01:00
|
|
|
io.write_unsigned_int_32 val
|
2016-12-14 12:43:13 +01:00
|
|
|
end
|
|
|
|
|
2016-12-14 20:53:26 +01:00
|
|
|
def instuction_class
|
|
|
|
0b00 # OPC_DATA_PROCESSING
|
|
|
|
end
|
|
|
|
|
2016-12-14 18:52:08 +01:00
|
|
|
# Arms special shift abilities are not modelled in the register level
|
|
|
|
# So they would have to be used inoptimisations, that are not implemented
|
|
|
|
# in short unused code
|
|
|
|
def handle_shift
|
|
|
|
# rm_ref = arg.argument
|
|
|
|
# immediate = 0
|
|
|
|
# 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
|
2017-01-19 08:02:29 +01:00
|
|
|
# if (arg1.is_a?(Risc::IntegerConstant))
|
2016-12-14 18:52:08 +01:00
|
|
|
# if (arg1.value >= 32)
|
|
|
|
# raise "cannot shift by more than 31 #{arg1} #{inspect}"
|
|
|
|
# end
|
|
|
|
# shift_imm = arg1.value
|
2017-01-19 08:02:29 +01:00
|
|
|
# elsif (arg1.is_a?(Arm::Risc))
|
2016-12-14 18:52:08 +01:00
|
|
|
# shift_op val |= 0x1;
|
|
|
|
# shift_imm = arg1.number << 1
|
|
|
|
# elsif (arg.type == 'rrx')
|
|
|
|
# shift_imm = 0
|
|
|
|
# end
|
2016-12-14 18:57:09 +01:00
|
|
|
# operand = rm_ref | (shift_op << 4) | (shift_imm << 4 +3)
|
2016-12-14 20:53:26 +01:00
|
|
|
raise "No implemented"
|
2016-12-14 18:52:08 +01:00
|
|
|
end
|
2016-12-14 12:43:13 +01:00
|
|
|
def to_s
|
|
|
|
"#{opcode} #{@left} , #{@right} #{super}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|