(self, operand_index1: int, operand_index2: int)
| 1077 | ) |
| 1078 | |
| 1079 | def _get_reg_stack_ssa(self, operand_index1: int, operand_index2: int) -> SSARegisterStack: |
| 1080 | reg_stack = ILRegisterStack( |
| 1081 | self.function.arch, architecture.RegisterStackIndex(self.instr.operands[operand_index1]) |
| 1082 | ) |
| 1083 | return SSARegisterStack(reg_stack, self.instr.operands[operand_index2]) |
| 1084 | |
| 1085 | def _get_sem_class(self, operand_index: int) -> Optional[ILSemanticFlagClass]: |
| 1086 | if self.instr.operands[operand_index] == 0: |
no test coverage detected