SSA form of expression (read-only)
(self)
| 623 | |
| 624 | @property |
| 625 | def ssa_form(self) -> 'LowLevelILInstruction': |
| 626 | """SSA form of expression (read-only)""" |
| 627 | ssa_func = self.function.ssa_form |
| 628 | assert ssa_func is not None |
| 629 | return LowLevelILInstruction.create( |
| 630 | ssa_func, ExpressionIndex(core.BNGetLowLevelILSSAExprIndex(self.function.handle, self.expr_index)), |
| 631 | core.BNGetLowLevelILSSAInstructionIndex(self.function.handle, self.instr_index) |
| 632 | if self.instr_index is not None else None |
| 633 | ) |
| 634 | |
| 635 | @property |
| 636 | def non_ssa_form(self) -> 'LowLevelILInstruction': |