rubyx/lib/register/positioned.rb

20 lines
717 B
Ruby
Raw Normal View History

2016-12-06 10:38:09 +01:00
# Helper module that extract position attribute.
module Positioned
def position
2015-06-08 11:37:20 +02:00
if @position.nil?
2015-10-22 17:16:29 +02:00
str = "IN machine #{Register.machine.objects.has_key?(self.object_id)}, at #{self.object_id.to_s(16)}\n"
raise str + "position not set for #{self.class} byte_length #{byte_length} for #{self.inspect[0...100]}"
2015-05-30 11:20:39 +02:00
end
@position
end
def position= pos
2015-06-08 11:37:20 +02:00
raise "Setting of nil not allowed" if pos.nil?
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)
if @position != nil and ((@position - pos).abs > 10000)
2015-05-04 10:10:40 +02:00
raise "position set again #{pos}!=#{@position} for #{self}"
end
@position = pos
end
end