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

Method global_pointer_value

python/binaryview.py:3560–3563  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

3558
3559 @property
3560 def global_pointer_value(self) -> 'variable.RegisterValue':
3561 """Discovered value of the global pointer register, if the binary uses one (read-only)"""
3562 result = core.BNGetGlobalPointerValue(self.handle)
3563 return variable.RegisterValue.from_BNRegisterValue(result, self.arch)
3564
3565 @property
3566 def user_global_pointer_value_set(self) -> bool:

Callers

nothing calls this directly

Calls 1

from_BNRegisterValueMethod · 0.80

Tested by

no test coverage detected