summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/highlevelil.py4
-rw-r--r--python/lowlevelil.py4
-rw-r--r--python/mediumlevelil.py4
3 files changed, 12 insertions, 0 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index 395de637..59434fb0 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -294,6 +294,10 @@ class HighLevelILInstruction(BaseILInstruction):
@staticmethod
def show_hlil_hierarchy():
+ """
+ Opens a new tab showing the HLIL hierarchy which includes classes which can
+ easily be used with isinstance to match multiple types of IL instructions.
+ """
graph = flowgraph.FlowGraph()
nodes = {}
for instruction in ILInstruction.values():
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index f20ad68f..98bf4da6 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -459,6 +459,10 @@ class LowLevelILInstruction(BaseILInstruction):
@staticmethod
def show_llil_hierarchy():
+ """
+ Opens a new tab showing the LLIL hierarchy which includes classes which can
+ easily be used with isinstance to match multiple types of IL instructions.
+ """
graph = flowgraph.FlowGraph()
nodes = {}
for instruction in ILInstruction.values():
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py
index cf85acb3..d79e2984 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -319,6 +319,10 @@ class MediumLevelILInstruction(BaseILInstruction):
@staticmethod
def show_mlil_hierarchy():
+ """
+ Opens a new tab showing the MLIL hierarchy which includes classes which can
+ easily be used with isinstance to match multiple types of IL instructions.
+ """
graph = flowgraph.FlowGraph()
nodes = {}
for instruction in ILInstruction.values():