From d27bf51d4b7c2170d00dca7cce97c7526c866868 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Wed, 23 Dec 2020 23:35:48 -0500 Subject: Add GetLowLevelILInstructionsForAddress API to retrieve all LLIL for an address. --- binaryninjaapi.h | 1 + 1 file changed, 1 insertion(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 224ea01c..5b3307a4 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -3047,6 +3047,7 @@ __attribute__ ((format (printf, 1, 2))) Ref GetLowLevelIL() const; Ref GetLowLevelILIfAvailable() const; size_t GetLowLevelILForInstruction(Architecture* arch, uint64_t addr); + std::set GetLowLevelILInstructionsForAddress(Architecture* arch, uint64_t addr); std::vector GetLowLevelILExitsForInstruction(Architecture* arch, uint64_t addr); RegisterValue GetRegisterValueAtInstruction(Architecture* arch, uint64_t addr, uint32_t reg); RegisterValue GetRegisterValueAfterInstruction(Architecture* arch, uint64_t addr, uint32_t reg); -- cgit v1.3.1