2014-08-22 16:40:09 +02:00
|
|
|
module Register
|
2014-06-14 09:59:25 +02:00
|
|
|
|
2015-05-24 14:07:07 +02:00
|
|
|
# RegisterReference is not the name for a register, "only" for a certain use of it.
|
|
|
|
# In a way it is like a variable name, a storage location. The location is a register off course,
|
2014-06-14 09:59:25 +02:00
|
|
|
# but which register can be changed, and _all_ instructions sharing the RegisterReference then use that register
|
|
|
|
# In other words a simple level of indirection, or change from value to reference sematics.
|
|
|
|
|
|
|
|
class RegisterReference
|
|
|
|
attr_accessor :symbol
|
|
|
|
def initialize r
|
|
|
|
if( r.is_a? Fixnum)
|
|
|
|
r = "r#{r}".to_sym
|
|
|
|
end
|
|
|
|
raise "wrong type for register init #{r}" unless r.is_a? Symbol
|
|
|
|
raise "double r #{r}" if r == :rr1
|
|
|
|
@symbol = r
|
|
|
|
end
|
|
|
|
|
|
|
|
def == other
|
|
|
|
return false if other.nil?
|
|
|
|
return false if other.class != RegisterReference
|
|
|
|
symbol == other.symbol
|
|
|
|
end
|
|
|
|
|
|
|
|
#helper method to calculate with register symbols
|
|
|
|
def next_reg_use by = 1
|
|
|
|
int = @symbol[1,3].to_i
|
|
|
|
sym = "r#{int + by}".to_sym
|
|
|
|
RegisterReference.new( sym )
|
|
|
|
end
|
2015-05-24 14:07:07 +02:00
|
|
|
|
|
|
|
SELF_REG = :r0
|
|
|
|
MESSAGE_REG = :r1
|
|
|
|
FRAME_REG = :r2
|
|
|
|
NEW_MESSAGE_REG = :r3
|
|
|
|
|
|
|
|
TMP_REG = :r4
|
|
|
|
|
|
|
|
def self.self_reg
|
|
|
|
new SELF_REG
|
|
|
|
end
|
|
|
|
def self.messsage_reg
|
|
|
|
new MESSAGE_REG
|
|
|
|
end
|
|
|
|
def self.frame_reg
|
|
|
|
new FRAME_REG
|
|
|
|
end
|
|
|
|
def self.new_messsage_reg
|
|
|
|
new NEW_MESSAGE_REG
|
|
|
|
end
|
|
|
|
def self.tmp_reg
|
|
|
|
new TMP_REG
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2014-06-14 09:59:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|