(self, operand_index1: int, operand_index2: int)
| 1071 | ) |
| 1072 | |
| 1073 | def _get_reg_ssa(self, operand_index1: int, operand_index2: int) -> SSARegister: |
| 1074 | return SSARegister( |
| 1075 | ILRegister(self.function.arch, architecture.RegisterIndex(self.instr.operands[operand_index1])), |
| 1076 | self.instr.operands[operand_index2] |
| 1077 | ) |
| 1078 | |
| 1079 | def _get_reg_stack_ssa(self, operand_index1: int, operand_index2: int) -> SSARegisterStack: |
| 1080 | reg_stack = ILRegisterStack( |