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

Method ssa_form

python/highlevelil.py:541–547  ·  view source on GitHub ↗

SSA form of expression (read-only)

(self)

Source from the content-addressed store, hash-verified

539
540 @property
541 def ssa_form(self) -> 'HighLevelILInstruction':
542 """SSA form of expression (read-only)"""
543 assert self.function.ssa_form is not None
544 return HighLevelILInstruction.create(
545 self.function.ssa_form,
546 ExpressionIndex(core.BNGetHighLevelILSSAExprIndex(self.function.handle, self.expr_index)), self.as_ast
547 )
548
549 @property
550 def non_ssa_form(self) -> Optional['HighLevelILInstruction']:

Callers

nothing calls this directly

Calls 1

createMethod · 0.45

Tested by

no test coverage detected