(self, operand_index: int)
| 1021 | return ILRegisterStack(self.function.arch, architecture.RegisterStackIndex(self.instr.operands[operand_index])) |
| 1022 | |
| 1023 | def _get_int(self, operand_index: int) -> int: |
| 1024 | return (self.instr.operands[operand_index] & ((1 << 63) - 1)) - (self.instr.operands[operand_index] & (1 << 63)) |
| 1025 | |
| 1026 | def _get_target_map(self, operand_index: int) -> Dict[int, int]: |
| 1027 | count = ctypes.c_ulonglong() |
no outgoing calls
no test coverage detected