rubyx/lib/register/instructions/label.rb

86 lines
1.8 KiB
Ruby
Raw Normal View History

module Register
# A label is a placeholder for it's next Instruction
# It's function is not to turn into code, but to be a valid brnch target
#
# So branches and Labels are pairs, fan out, fan in
#
#
class Label < Instruction
def initialize( source , name , nekst = nil)
super(source , nekst)
@name = name
end
attr_reader :name
def to_s
2016-12-28 20:10:14 +01:00
"Label: #{@name} (#{self.next.class.name.split("::").last})"
end
2016-12-28 20:40:06 +01:00
2015-11-14 21:53:01 +01:00
def sof_reference_name
2015-11-14 23:35:43 +01:00
@name
2015-11-14 21:53:01 +01:00
end
2015-11-03 15:22:24 +01:00
# a method start has a label of the form Class.method , test for that
def is_method
@name.split(".").length == 2
end
def to_ac labels = []
return [] if labels.include?(self)
labels << self
super
end
def length labels = []
return 0 if labels.include?(self)
labels << self
ret = 1
ret += self.next.length(labels) if self.next
ret
end
def assemble io
end
def assemble_all io , labels = []
return if labels.include?(self)
labels << self
self.next.assemble_all(io,labels)
end
def total_byte_length labels = []
return 0 if labels.include?(self)
labels << self
ret = self.next.total_byte_length(labels)
#puts "#{self.class.name} return #{ret}"
ret
end
# labels have the same position as their next
def set_position position , labels = []
return position if labels.include?(self)
labels << self
2016-12-28 20:40:06 +01:00
super(position , labels)
self.next.set_position(position,labels)
end
2015-10-25 11:03:31 +01:00
2015-11-03 15:22:24 +01:00
# shame we need this, just for logging
def byte_length
0
end
2015-10-25 11:03:31 +01:00
def each_label labels =[] , &block
return if labels.include?(self)
labels << self
block.yield(self)
super
end
end
def self.label( source , name , nekst = nil)
Label.new( source , name , nekst = nil)
end
end