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

Method non_ssa_form

python/highlevelil.py:550–557  ·  view source on GitHub ↗

Non-SSA form of expression (read-only)

(self)

Source from the content-addressed store, hash-verified

548
549 @property
550 def non_ssa_form(self) -> Optional['HighLevelILInstruction']:
551 """Non-SSA form of expression (read-only)"""
552 if self.function.non_ssa_form is None:
553 return None
554 return HighLevelILInstruction.create(
555 self.function.non_ssa_form,
556 ExpressionIndex(core.BNGetHighLevelILNonSSAExprIndex(self.function.handle, self.expr_index)), self.as_ast
557 )
558
559 @property
560 def medium_level_il(self) -> Optional['mediumlevelil.MediumLevelILInstruction']:

Callers

nothing calls this directly

Calls 1

createMethod · 0.45

Tested by

no test coverage detected