rubyx/lib/risc/instructions/getter.rb

39 lines
1.2 KiB
Ruby
Raw Normal View History

module Risc
2016-12-25 17:11:58 +01:00
# Getter is a base class for get instructions (SlotToReg and ByteToReg , possibly more coming)
#
# The instruction that is modelled is loading data from an array into a register
#
# Getter has a
# - an array where the data comes from
2018-03-14 13:09:49 +01:00
# - an (array) index
# - Register that the data is moved to
# Getter and Setter api follow the pattern from -> to
class Getter < Instruction
# If you had a c array and index offset
# the instruction would do register = array[index]
# The arguments are in the order that makes sense for the Instruction name
# So SlotToReg means the slot (array and index) moves to the register (last argument)
2018-03-14 13:09:49 +01:00
def initialize( source , array , index , register )
super(source)
@array = array
@index = index
@register = register
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 :array , :index , :register
2016-12-15 23:30:26 +01:00
def to_s
2018-03-22 17:38:19 +01:00
class_source "#{array}[#{index}] -> #{register}"
2016-12-15 23:30:26 +01:00
end
end
end