Discovered value of the global pointer register, if the binary uses one (read-only)
(self)
| 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: |
nothing calls this directly
no test coverage detected