class Fisk::Registers::Rip

Attributes

displacement[RW]

Public Class Methods

new(displacement) click to toggle source
# File lib/fisk.rb, line 70
def initialize displacement
  @displacement = displacement
end

Public Instance Methods

memory?() click to toggle source
# File lib/fisk.rb, line 82
def memory?; true; end
op_value() click to toggle source
# File lib/fisk.rb, line 89
def op_value
  0x0
end
rex_value() click to toggle source
# File lib/fisk.rb, line 85
def rex_value
  0x0
end
rip?() click to toggle source
# File lib/fisk.rb, line 83
def rip?; true; end
unresolved?() click to toggle source
# File lib/fisk.rb, line 78
def unresolved?
  @displacement.is_a?(Fisk::UnknownLabel)
end
works?(type) click to toggle source
# File lib/fisk.rb, line 74
def works? type
  type == "m64" || type == "m"
end