rubyx/lib/register/positioned.rb

31 lines
895 B
Ruby
Raw Normal View History

2016-12-06 10:38:09 +01:00
# Helper module that extract position attribute.
module Positioned
@@positions = {}
def self.positions
@@positions
end
def position
pos = Positioned.positions[self]
if pos == nil
str = "position accessed but not set, "
str += "#{Register.machine.objects.has_key?(self.object_id)}, at #{self.object_id.to_s(16)}\n"
raise str + "for #{self.class} byte_length #{byte_length} for #{self.inspect[0...100]}"
2015-05-30 11:20:39 +02:00
end
pos
end
2016-12-28 20:40:06 +01:00
def set_position( pos )
raise "Position must be number not :#{pos}:" unless pos.is_a?(Numeric)
2015-05-13 15:06:38 +02:00
# resetting of position used to be error, but since relink and dynamic instruction size it is ok.
# in measures (of 32)
old = Positioned.positions[self]
if old != nil and ((old - pos).abs > 10000)
raise "position set again #{pos}!=#{old} for #{self}"
end
Positioned.positions[self] = pos
end
end