(self, offset: int, size: int)
| 969 | return result |
| 970 | |
| 971 | def get_stack_contents(self, offset: int, size: int) -> 'variable.RegisterValue': |
| 972 | value = core.BNGetLowLevelILStackContentsAtInstruction(self.function.handle, offset, size, self.instr_index) |
| 973 | result = variable.RegisterValue.from_BNRegisterValue(value, self.function.arch) |
| 974 | return result |
| 975 | |
| 976 | def get_stack_contents_after(self, offset: int, size: int) -> 'variable.RegisterValue': |
| 977 | value = core.BNGetLowLevelILStackContentsAfterInstruction(self.function.handle, offset, size, self.instr_index) |
nothing calls this directly
no test coverage detected