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

Method ssa_form

python/lowlevelil.py:3493–3497  ·  view source on GitHub ↗

Low level IL in SSA form (read-only)

(self)

Source from the content-addressed store, hash-verified

3491
3492 @property
3493 def ssa_form(self) -> 'LowLevelILFunction':
3494 """Low level IL in SSA form (read-only)"""
3495 result = core.BNGetLowLevelILSSAForm(self.handle)
3496 assert result is not None, "Failed to retrieve ssa-form"
3497 return LowLevelILFunction(self._arch, result, self._source_function)
3498
3499 @property
3500 def non_ssa_form(self) -> 'LowLevelILFunction':

Callers

nothing calls this directly

Calls 1

LowLevelILFunctionClass · 0.70

Tested by

no test coverage detected