From 09f2b5f1254aeaa7dc6b54500a71dfe86f783d84 Mon Sep 17 00:00:00 2001 From: Xusheng Date: Wed, 17 Aug 2022 18:01:47 +0800 Subject: Improve Python/C++ APIs to get registers, register stacks, and flags for LLIL --- binaryninjacore.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'binaryninjacore.h') 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( -- cgit v1.3.1