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

Method llil_if_available

python/function.py:1007–1017  ·  view source on GitHub ↗

returns LowLevelILFunction used to represent low level IL, or None if not loaded or it cannot be generated (read-only) .. note:: This function can be used to check if low level IL is available without generating it.

(self)

Source from the content-addressed store, hash-verified

1005
1006 @property
1007 def llil_if_available(self) -> Optional['lowlevelil.LowLevelILFunction']:
1008 """
1009 returns LowLevelILFunction used to represent low level IL, or None if not loaded or it cannot be generated
1010 (read-only)
1011
1012 .. note:: This function can be used to check if low level IL is available without generating it.
1013 """
1014 result = core.BNGetFunctionLowLevelILIfAvailable(self.handle)
1015 if not result:
1016 return None
1017 return lowlevelil.LowLevelILFunction(self.arch, result, self)
1018
1019 @property
1020 def lifted_il(self) -> Optional['lowlevelil.LowLevelILFunction']:

Callers

nothing calls this directly

Calls 1

LowLevelILFunctionMethod · 0.80

Tested by

no test coverage detected