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

Method global_pointer_value

python/function.py:1526–1529  ·  view source on GitHub ↗

Discovered value of the global pointer register, if the function uses one (read-only)

(self)

Source from the content-addressed store, hash-verified

1524
1525 @property
1526 def global_pointer_value(self) -> variable.RegisterValue:
1527 """Discovered value of the global pointer register, if the function uses one (read-only)"""
1528 result = core.BNGetFunctionGlobalPointerValue(self.handle)
1529 return variable.RegisterValue.from_BNRegisterValue(result, self.arch)
1530
1531 @property
1532 def uses_incoming_global_pointer(self) -> bool:

Callers

nothing calls this directly

Calls 1

from_BNRegisterValueMethod · 0.80

Tested by

no test coverage detected