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

Method non_ssa_form

python/lowlevelil.py:3500–3504  ·  view source on GitHub ↗

Low level IL in non-SSA (default) form (read-only)

(self)

Source from the content-addressed store, hash-verified

3498
3499 @property
3500 def non_ssa_form(self) -> 'LowLevelILFunction':
3501 """Low level IL in non-SSA (default) form (read-only)"""
3502 result = core.BNGetLowLevelILNonSSAForm(self.handle)
3503 assert result is not None, "Failed to retrieve non-ssa-form"
3504 return LowLevelILFunction(self._arch, result, self._source_function)
3505
3506 @property
3507 def medium_level_il(self) -> 'mediumlevelil.MediumLevelILFunction':

Callers

nothing calls this directly

Calls 1

LowLevelILFunctionClass · 0.70

Tested by

no test coverage detected