diff options
| author | Brian Potchik <brian@vector35.com> | 2021-01-20 10:53:04 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2021-01-20 10:53:04 -0500 |
| commit | f1166563f54d28a745eb781dfe27c13a099bb7d9 (patch) | |
| tree | 7d34521fa7189085cd193bf45ca05ad1f9e91753 /binaryninjaapi.h | |
| parent | 13f6e450824dbce2e73b9139dc7283ef903210d1 (diff) | |
Add get_lifted_ils_at API.
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 28c5fed3..337a226f 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -3063,6 +3063,7 @@ __attribute__ ((format (printf, 1, 2))) Ref<LowLevelILFunction> GetLiftedIL() const; Ref<LowLevelILFunction> GetLiftedILIfAvailable() const; size_t GetLiftedILForInstruction(Architecture* arch, uint64_t addr); + std::set<size_t> GetLiftedILInstructionsForAddress(Architecture* arch, uint64_t addr); std::set<size_t> GetLiftedILFlagUsesForDefinition(size_t i, uint32_t flag); std::set<size_t> GetLiftedILFlagDefinitionsForUse(size_t i, uint32_t flag); std::set<uint32_t> GetFlagsReadByLiftedILInstruction(size_t i); |
