2017-01-19 08:02:29 +01:00
|
|
|
module Risc
|
2016-12-25 17:11:58 +01:00
|
|
|
# Setter is a base class for set instructions (RegToSlot and RegToByte , possibly more coming)
|
2016-12-11 13:06:09 +01:00
|
|
|
#
|
2016-12-11 13:12:35 +01:00
|
|
|
# The instruction that is modelled is loading data from a register into an array
|
2016-12-11 13:06:09 +01:00
|
|
|
#
|
|
|
|
# Setter has a
|
2017-01-19 08:02:29 +01:00
|
|
|
# - Risc that the data is comes from
|
2016-12-11 13:12:35 +01:00
|
|
|
# - an array where the data goes
|
2016-12-11 13:06:09 +01:00
|
|
|
# - and (array) index
|
2016-12-11 13:12:35 +01:00
|
|
|
|
|
|
|
# Getter and Setter api follow the pattern from -> to
|
|
|
|
|
2016-12-11 13:06:09 +01:00
|
|
|
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
|
|
|
|
# So RegToSlot means the register (first argument) moves to the slot (array and index)
|
|
|
|
def initialize( source , register , array , index )
|
2016-12-11 13:06:09 +01:00
|
|
|
super(source)
|
|
|
|
@register = register
|
|
|
|
@array = array
|
|
|
|
@index = index
|
|
|
|
raise "index 0 " if index == 0
|
2017-01-19 08:02:29 +01:00
|
|
|
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)
|
2016-12-11 13:06:09 +01:00
|
|
|
end
|
|
|
|
attr_accessor :register , :array , :index
|
|
|
|
|
2016-12-15 23:30:26 +01:00
|
|
|
def to_s
|
2016-12-28 20:10:14 +01:00
|
|
|
"#{self.class.name.split("::").last}: #{register} -> #{array}[#{index}]"
|
2016-12-15 23:30:26 +01:00
|
|
|
end
|
|
|
|
|
2016-12-11 13:06:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|