From 55e80204f6b8f804e81c54f2d5188a99ab0afb6f Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Wed, 4 Aug 2021 10:32:38 -0400 Subject: Expose LLIL SSA Generation API. --- python/lowlevelil.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'python') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index a8814d8e..f374cd13 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -3031,6 +3031,14 @@ class LowLevelILFunction(object): """ core.BNFinalizeLowLevelILFunction(self.handle) + def generate_ssa_form(self): + """ + ``generate_ssa_form`` generate SSA form given the current LLIL + + :rtype: None + """ + core.BNGenerateLowLevelILSSAForm(self.handle) + def add_label_for_address(self, arch, addr): """ ``add_label_for_address`` adds a low-level IL label for the given architecture ``arch`` at the given virtual -- cgit v1.3.1