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

Method non_ssa_form

python/mediumlevelil.py:615–622  ·  view source on GitHub ↗

Non-SSA form of expression (read-only)

(self)

Source from the content-addressed store, hash-verified

613
614 @property
615 def non_ssa_form(self) -> 'MediumLevelILInstruction':
616 """Non-SSA form of expression (read-only)"""
617 non_ssa_func = self.function.non_ssa_form
618 assert non_ssa_func is not None
619 return MediumLevelILInstruction.create(
620 non_ssa_func,
621 ExpressionIndex(core.BNGetMediumLevelILNonSSAExprIndex(self.function.handle, self.expr_index))
622 )
623
624 @property
625 def value(self) -> variable.RegisterValue:

Callers

nothing calls this directly

Calls 1

createMethod · 0.45

Tested by

no test coverage detected