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

Method low_level_il

python/function.py:979–989  ·  view source on GitHub ↗

returns LowLevelILFunction used to represent low level IL, or None if an error occurs while loading the IL (read-only) .. note:: This function causes low level IL to be generated if it has not been already. It is recommended to generate IL on-demand to avoid excessive memory usage ins

(self)

Source from the content-addressed store, hash-verified

977
978 @property
979 def low_level_il(self) -> Optional['lowlevelil.LowLevelILFunction']:
980 """
981 returns LowLevelILFunction used to represent low level IL, or None if an error occurs while loading the IL
982 (read-only)
983
984
985 .. note::
986 This function causes low level IL to be generated if it has not been already. It is recommended to generate
987 IL on-demand to avoid excessive memory usage instead of generating IL for all functions at once.
988 """
989 return self.llil
990
991 @property
992 def llil(self) -> Optional['lowlevelil.LowLevelILFunction']:

Callers 8

guid_benchmarkFunction · 0.45
function_benchmarkFunction · 0.45
actionMethod · 0.45
insta_signaturesFunction · 0.45
actionMethod · 0.45
actionMethod · 0.45
actionMethod · 0.45
data_from_viewFunction · 0.45

Calls

no outgoing calls

Tested by 1

insta_signaturesFunction · 0.36