2017-01-19 08:02:29 +01:00
|
|
|
module Risc
|
2015-06-21 20:00:16 +02:00
|
|
|
|
2016-12-25 17:05:39 +01:00
|
|
|
# SlotToReg moves data into a register from memory.
|
2016-12-25 17:02:39 +01:00
|
|
|
# RegToSlot moves data into memory from a register.
|
2015-06-21 20:00:16 +02: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 17:05:39 +01:00
|
|
|
# an element in an array, in the case of SlotToReg setting the value in the array.
|
2015-06-21 20:00:16 +02:00
|
|
|
|
2018-03-21 11:18:04 +01:00
|
|
|
# btw: to move data between registers, use Transfer
|
2015-06-21 20:00:16 +02:00
|
|
|
|
2016-12-25 17:05:39 +01:00
|
|
|
class SlotToReg < Getter
|
2015-06-21 20:00:16 +02:00
|
|
|
|
2014-10-03 10:07:18 +02:00
|
|
|
end
|
2015-06-30 08:43:50 +02:00
|
|
|
|
2016-12-25 17:05:39 +01:00
|
|
|
# Produce a SlotToReg instruction.
|
2020-03-01 11:42:28 +01:00
|
|
|
# Array is a register
|
2018-07-15 15:30:50 +02:00
|
|
|
# index may be a Symbol in which case is resolves with resolve_index.
|
2020-03-01 11:42:28 +01:00
|
|
|
# a new regsister will be created as the result, ie the reg part for slot_to_reg
|
2020-02-29 16:18:27 +01:00
|
|
|
def self.slot_to_reg( source , array , index )
|
|
|
|
raise "Register #{array}" if RegisterValue.look_like_reg(array.symbol)
|
2020-03-01 15:41:58 +01:00
|
|
|
new_name = "#{array.symbol}.#{index.to_s.downcase}".to_sym
|
2018-07-15 15:30:50 +02:00
|
|
|
index = array.resolve_index(index) if index.is_a?(Symbol)
|
2020-02-29 16:18:27 +01:00
|
|
|
type = array.type_at(index)
|
|
|
|
#puts "Slot for #{array.symbol}@ index #{index} is #{type}"
|
2020-03-01 15:41:58 +01:00
|
|
|
to = RegisterValue.new( new_name , type )
|
2016-12-25 17:05:39 +01:00
|
|
|
SlotToReg.new( source , array , index , to)
|
2015-06-30 08:43:50 +02:00
|
|
|
end
|
2014-10-03 10:07:18 +02:00
|
|
|
end
|