From f609ea22f31177777009263c3d41af3015b8c953 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Thu, 25 Jun 2020 21:45:34 -0400 Subject: Add C++ APIs to get SSA and non-SSA forms of HLIL instructions --- highlevelilinstruction.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'highlevelilinstruction.h') diff --git a/highlevelilinstruction.h b/highlevelilinstruction.h index 497cf122..763c8221 100644 --- a/highlevelilinstruction.h +++ b/highlevelilinstruction.h @@ -318,6 +318,12 @@ namespace BinaryNinja _STD_SET()) const; Confidence> GetType() const; + size_t GetSSAExprIndex() const; + size_t GetNonSSAExprIndex() const; + + HighLevelILInstruction GetSSAForm() const; + HighLevelILInstruction GetNonSSAForm() const; + size_t GetMediumLevelILExprIndex() const; bool HasMediumLevelIL() const; MediumLevelILInstruction GetMediumLevelIL() const; -- cgit v1.3.1