2017-01-19 09:02:29 +02:00
|
|
|
module Risc
|
2015-06-21 21:00:16 +03:00
|
|
|
|
2016-12-25 18:02:39 +02:00
|
|
|
# RegToSlot moves data into memory from a register.
|
2016-12-25 18:05:39 +02:00
|
|
|
# SlotToReg moves data into a register from memory.
|
2015-06-21 21:00:16 +03:00
|
|
|
# Both use a base memory (a register)
|
|
|
|
|
|
|
|
# This is because that is what cpu's can do. In programming terms this would be accessing
|
2016-12-25 18:02:39 +02:00
|
|
|
# an element in an array, in the case of RegToSlot setting the register in the array.
|
2015-06-21 21:00:16 +03:00
|
|
|
|
2018-03-21 15:48:04 +05:30
|
|
|
# btw: to move data between registers, use Transfer
|
2015-06-21 21:00:16 +03:00
|
|
|
|
2016-12-25 18:02:39 +02:00
|
|
|
class RegToSlot < Setter
|
2015-06-21 21:00:16 +03:00
|
|
|
|
2014-10-03 11:07:18 +03:00
|
|
|
end
|
2015-06-30 09:43:50 +03:00
|
|
|
|
2016-12-25 18:02:39 +02:00
|
|
|
# Produce a RegToSlot instruction.
|
2018-07-15 16:30:50 +03:00
|
|
|
# From and to are registers
|
|
|
|
# index may be a Symbol in which case is resolves with resolve_index.
|
|
|
|
def self.reg_to_slot( source , from , to , index )
|
|
|
|
raise "Not register #{to}" unless RegisterValue.look_like_reg(to)
|
|
|
|
index = to.resolve_index(index) if index.is_a?(Symbol)
|
2016-12-25 18:02:39 +02:00
|
|
|
RegToSlot.new( source, from , to , index)
|
2015-06-30 09:43:50 +03:00
|
|
|
end
|
|
|
|
|
2014-10-03 11:07:18 +03:00
|
|
|
end
|