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