(self, operand_index: int)
| 1018 | return ILIntrinsic(self.function.arch, architecture.IntrinsicIndex(self.instr.operands[operand_index])) |
| 1019 | |
| 1020 | def _get_reg_stack(self, operand_index: int) -> ILRegisterStack: |
| 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)) |