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

Method lifted_il_if_available

python/function.py:1035–1045  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

1033
1034 @property
1035 def lifted_il_if_available(self) -> Optional['lowlevelil.LowLevelILFunction']:
1036 """
1037 returns LowLevelILFunction used to represent lifted IL, or None if not loaded or it cannot be generated
1038 (read-only)
1039
1040 .. note:: This function can be used to check if lifted IL is available without generating it.
1041 """
1042 result = core.BNGetFunctionLiftedILIfAvailable(self.handle)
1043 if not result:
1044 return None
1045 return lowlevelil.LowLevelILFunction(self.arch, result, self)
1046
1047 @property
1048 def medium_level_il(self) -> Optional['mediumlevelil.MediumLevelILFunction']:

Callers

nothing calls this directly

Calls 1

LowLevelILFunctionMethod · 0.80

Tested by

no test coverage detected