diff options
| author | Brian Potchik <brian@vector35.com> | 2021-08-04 10:32:38 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2021-08-04 10:32:38 -0400 |
| commit | 55e80204f6b8f804e81c54f2d5188a99ab0afb6f (patch) | |
| tree | 1df308efc7cabd5902cc08dc2e344fc7d99f9ee2 /python/lowlevelil.py | |
| parent | 7d0b3327b26a655756951fa988f918f5cb6f728b (diff) | |
Expose LLIL SSA Generation API.
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 8 |
1 files changed, 8 insertions, 0 deletions
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 |
