(self, operand_index: int)
| 1015 | return ILFlag(self.function.arch, architecture.FlagIndex(self.instr.operands[operand_index])) |
| 1016 | |
| 1017 | def _get_intrinsic(self, operand_index: int) -> ILIntrinsic: |
| 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])) |
no test coverage detected