From 0ff1794278a96d0b5c23a0fc0280d1faf5687a94 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Sun, 27 Sep 2020 23:20:17 -0400 Subject: Add High Level IL Mappings. --- python/highlevelil.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'python/highlevelil.py') diff --git a/python/highlevelil.py b/python/highlevelil.py index 589d6505..56619f05 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -529,6 +529,16 @@ class HighLevelILInstruction(object): """Alias for medium_level_il""" return self.medium_level_il + @property + def low_level_il(self): + """Low level IL form of this expression""" + return self.mlil.llil + + @property + def llil(self): + """Alias for low_level_il""" + return self.low_level_il + @property def il_basic_block(self): """IL basic block object containing this expression (read-only) (only available on finalized functions)""" -- cgit v1.3.1