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)
| 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']: |
no outgoing calls