2018-05-05 18:47:18 +02:00
|
|
|
module Risc
|
|
|
|
# Positions are very different during compilation and run-time.
|
|
|
|
# At run-time they are inherrent to the object, and fixed.
|
|
|
|
# While during compilation we can move things about, and do not use the
|
|
|
|
# objects memory position at all.
|
|
|
|
#
|
|
|
|
# Furthermore, there are differnet kind of positions during compilation.
|
|
|
|
# Off course the object position as hinted above, but also instruction
|
|
|
|
# positions, that do not reflect the position of the object, but of the
|
|
|
|
# assembled instruction in the binary.
|
|
|
|
#
|
2018-05-10 19:56:12 +02:00
|
|
|
# The Position module keeps a hash of all compile time positions.
|
2018-05-05 18:47:18 +02:00
|
|
|
#
|
2018-05-10 19:56:12 +02:00
|
|
|
# While the (different)Position objects transmit the change that (re) positioning
|
2018-05-05 18:47:18 +02:00
|
|
|
# entails to affected objects.
|
|
|
|
|
2018-05-10 19:56:12 +02:00
|
|
|
module Position
|
2018-05-20 14:52:13 +02:00
|
|
|
include Util::Logging
|
2018-05-24 13:27:53 +02:00
|
|
|
log_level :info
|
2018-05-20 14:52:13 +02:00
|
|
|
|
2018-05-05 18:47:18 +02:00
|
|
|
@positions = {}
|
2018-05-24 13:27:53 +02:00
|
|
|
@reverse_cache = {}
|
2018-05-05 18:47:18 +02:00
|
|
|
|
|
|
|
def self.positions
|
|
|
|
@positions
|
|
|
|
end
|
|
|
|
|
2018-05-24 13:27:53 +02:00
|
|
|
def self.clear_positions
|
|
|
|
@positions = {}
|
|
|
|
@reverse_cache = {}
|
|
|
|
end
|
|
|
|
|
2018-05-17 19:13:33 +02:00
|
|
|
def self.at( int )
|
2018-05-24 13:27:53 +02:00
|
|
|
@reverse_cache[int]
|
2018-05-17 19:13:33 +02:00
|
|
|
end
|
|
|
|
|
2018-05-06 19:04:02 +02:00
|
|
|
def self.set?(object)
|
|
|
|
self.positions.has_key?(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.get(object)
|
2018-05-05 18:47:18 +02:00
|
|
|
pos = self.positions[object]
|
|
|
|
if pos == nil
|
|
|
|
str = "position accessed but not set, "
|
|
|
|
str += "0x#{object.object_id.to_s(16)}\n"
|
2018-05-20 14:52:13 +02:00
|
|
|
str += "for #{object.class} byte_length #{object.byte_length if object.respond_to?(:byte_length)} for #{object.to_s[0...130]}"
|
2018-05-05 18:47:18 +02:00
|
|
|
raise str
|
|
|
|
end
|
|
|
|
pos
|
|
|
|
end
|
|
|
|
|
2018-05-09 19:36:49 +02:00
|
|
|
def self.reset(obj)
|
|
|
|
old = self.get(obj)
|
|
|
|
old.reset_to( old.at )
|
|
|
|
end
|
|
|
|
|
2018-05-24 13:27:53 +02:00
|
|
|
# resetting of position used to be error, but since relink and dynamic instruction size it is ok.
|
|
|
|
# in measures
|
|
|
|
#
|
|
|
|
# reseting to the same position as before, triggers code that propagates
|
|
|
|
def self.reset(position , to)
|
|
|
|
log.debug "ReSetting #{position}, to:#{to.to_s(16)}, for #{position.object.class}-#{position.object}"
|
|
|
|
position.reset_to(to)
|
|
|
|
if testing = @reverse_cache[ to ]
|
|
|
|
if testing.class != position.class
|
|
|
|
raise "Mismatch (at #{to.to_s(16)}) new:#{position}:#{position.class} , was #{testing}:#{testing.class}"
|
|
|
|
end
|
|
|
|
@reverse_cache.delete(to)
|
|
|
|
end
|
|
|
|
@reverse_cache[position.at] = position
|
|
|
|
log.debug "Reset #{position} (#{to.to_s(16)}) for #{position.class}"
|
|
|
|
return position
|
|
|
|
end
|
|
|
|
|
2018-05-06 19:04:02 +02:00
|
|
|
def self.set( object , pos , extra = nil)
|
2018-05-05 18:47:18 +02:00
|
|
|
old = Position.positions[object]
|
2018-05-24 13:27:53 +02:00
|
|
|
return self.reset(old , pos) if old
|
|
|
|
log.debug "Setting #{pos.to_s(16)} for #{object.class}-#{object}"
|
2018-05-23 20:34:49 +02:00
|
|
|
testing = self.at( pos )
|
2018-05-07 21:30:43 +02:00
|
|
|
position = for_at( object , pos , extra)
|
2018-05-24 13:27:53 +02:00
|
|
|
raise "Mismatch (at #{pos.to_s(16)}) was:#{position} #{position.class} #{position.object} , should #{testing}#{testing.class}" if testing and testing.class != position.class
|
2018-05-07 21:30:43 +02:00
|
|
|
self.positions[object] = position
|
2018-05-08 18:59:43 +02:00
|
|
|
position.init(pos)
|
2018-05-24 13:27:53 +02:00
|
|
|
@reverse_cache[position.at] = position
|
|
|
|
log.debug "Set #{position} (#{pos.to_s(16)}) for #{position.class}"
|
2018-05-07 21:30:43 +02:00
|
|
|
position
|
2018-05-05 23:34:59 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.for_at(object , at , extra)
|
|
|
|
case object
|
|
|
|
when Parfait::BinaryCode
|
2018-05-10 19:56:12 +02:00
|
|
|
CodePosition.new(object,at , extra)
|
2018-05-17 08:49:01 +02:00
|
|
|
when Arm::Instruction , Risc::Instruction
|
2018-05-10 19:56:12 +02:00
|
|
|
InstructionPosition.new(object,at , extra)
|
2018-05-05 23:34:59 +02:00
|
|
|
else
|
2018-05-23 20:34:49 +02:00
|
|
|
ObjectPosition.new(object,at)
|
2018-05-05 18:47:18 +02:00
|
|
|
end
|
2018-05-05 23:34:59 +02:00
|
|
|
end
|
|
|
|
end
|
2018-05-05 18:47:18 +02:00
|
|
|
end
|
2018-05-10 19:56:12 +02:00
|
|
|
require_relative "position/object_position"
|
|
|
|
require_relative "position/instruction_position"
|
|
|
|
require_relative "position/code_position"
|