MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / value

Method value

python/lowlevelil.py:703–706  ·  view source on GitHub ↗

Value of expression if constant or a known value (read-only)

(self)

Source from the content-addressed store, hash-verified

701
702 @property
703 def value(self) -> 'variable.RegisterValue':
704 """Value of expression if constant or a known value (read-only)"""
705 value = core.BNGetLowLevelILExprValue(self.function.handle, self.expr_index)
706 return variable.RegisterValue.from_BNRegisterValue(value, self.function.arch)
707
708 @property
709 def possible_values(self) -> 'variable.PossibleValueSet':

Callers

nothing calls this directly

Calls 1

from_BNRegisterValueMethod · 0.80

Tested by

no test coverage detected