summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorXusheng <xusheng@vector35.com>2022-08-17 18:01:47 +0800
committerXusheng <xusheng@vector35.com>2022-08-20 12:09:01 +0800
commit09f2b5f1254aeaa7dc6b54500a71dfe86f783d84 (patch)
treedbd05c920707073fee1ace4a441ff91f01a88631 /binaryninjacore.h
parent03d08ab28700c95527f275d009501b0815e436ac (diff)
Improve Python/C++ APIs to get registers, register stacks, and flags for LLIL
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index 082dd4aa..853ed61d 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -4794,6 +4794,10 @@ extern "C"
BINARYNINJACOREAPI uint32_t* BNGetLowLevelRegisterStacks(BNLowLevelILFunction* func, size_t* count);
BINARYNINJACOREAPI uint32_t* BNGetLowLevelFlags(BNLowLevelILFunction* func, size_t* count);
+ BINARYNINJACOREAPI uint32_t* BNGetLowLevelSSARegistersWithoutVersions(BNLowLevelILFunction* func, size_t* count);
+ BINARYNINJACOREAPI uint32_t* BNGetLowLevelSSARegisterStacksWithoutVersions(BNLowLevelILFunction* func, size_t* count);
+ BINARYNINJACOREAPI uint32_t* BNGetLowLevelSSAFlagsWithoutVersions(BNLowLevelILFunction* func, size_t* count);
+
BINARYNINJACOREAPI size_t* BNGetLowLevelRegisterSSAVersions(
BNLowLevelILFunction* func, const uint32_t var, size_t* count);
BINARYNINJACOREAPI size_t* BNGetLowLevelRegisterStackSSAVersions(