MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / ssa_form

Method ssa_form

python/lowlevelil.py:625–633  ·  view source on GitHub ↗

SSA form of expression (read-only)

(self)

Source from the content-addressed store, hash-verified

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':

Callers

nothing calls this directly

Calls 1

createMethod · 0.45

Tested by

no test coverage detected