rubyx/lib/risc/instructions/setter.rb

38 lines
1.2 KiB
Ruby
Raw Normal View History

module Risc
2016-12-25 17:11:58 +01:00
# Setter is a base class for set instructions (RegToSlot and RegToByte , possibly more coming)
#
# The instruction that is modelled is loading data from a register into an array
#
# Setter has a
# - Risc that the data is comes from
# - an array where the data goes
# - and (array) index
# Getter and Setter api follow the pattern from -> to
class Setter < Instruction
# If you had a c array and index offset
# the instruction would do array[index] = register
2018-03-14 13:09:49 +01:00
# The arguments are in the order that makes sense for the Instruction name
2018-03-22 17:38:19 +01:00
# So RegToSlot means the register (first argument) moves to the slot (array and index)
2018-03-14 13:09:49 +01:00
def initialize( source , register , array , index )
super(source)
@register = register
@array = array
@index = index
2018-05-14 14:17:04 +02:00
# raise "index 0 " if index < 0
raise "Not integer or reg #{index}" unless index.is_a?(Numeric) or RiscValue.look_like_reg(index)
raise "Not register #{register}" unless RiscValue.look_like_reg(register)
raise "Not register #{array}" unless RiscValue.look_like_reg(array)
end
attr_accessor :register , :array , :index
2016-12-15 23:30:26 +01:00
def to_s
2018-03-22 17:38:19 +01:00
class_source "#{register} -> #{array}[#{index}]"
2016-12-15 23:30:26 +01:00
end
end
end