summaryrefslogtreecommitdiff
path: root/python/function.py
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2017-02-22 00:24:14 -0500
committerRusty Wagner <rusty@vector35.com>2017-02-22 00:24:14 -0500
commitc687ea8692ee553476280ee5b621e861b627fa80 (patch)
tree2cff5bca0fcead176ec23a1667366788de36ff81 /python/function.py
parent33ae06ad9a4dfe1e78467ebf7f82a4c95f8945eb (diff)
Add SSA form APIs
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/function.py b/python/function.py
index 86c93bf7..47099395 100644
--- a/python/function.py
+++ b/python/function.py
@@ -293,6 +293,11 @@ class Function(object):
return lowlevelil.LowLevelILFunction(self.arch, core.BNGetFunctionLowLevelIL(self.handle), self)
@property
+ def low_level_il_ssa_form(self):
+ """Function low level IL in SSA form (read-only)"""
+ return lowlevelil.LowLevelILFunction(self.arch, core.BNGetFunctionLowLevelILSSAForm(self.handle), self)
+
+ @property
def lifted_il(self):
"""Function lifted IL (read-only)"""
return lowlevelil.LowLevelILFunction(self.arch, core.BNGetFunctionLiftedIL(self.handle), self)