summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2020-12-23 23:35:48 -0500
committerBrian Potchik <brian@vector35.com>2020-12-23 23:35:48 -0500
commitd27bf51d4b7c2170d00dca7cce97c7526c866868 (patch)
tree8eae0489f07d35127db322e6a70ac5eafab4c363 /binaryninjaapi.h
parent30683cdc2892d7a1a8b6b9070fbbceb8981882a8 (diff)
Add GetLowLevelILInstructionsForAddress API to retrieve all LLIL for an address.
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h1
1 files changed, 1 insertions, 0 deletions
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<LowLevelILFunction> GetLowLevelIL() const;
Ref<LowLevelILFunction> GetLowLevelILIfAvailable() const;
size_t GetLowLevelILForInstruction(Architecture* arch, uint64_t addr);
+ std::set<size_t> GetLowLevelILInstructionsForAddress(Architecture* arch, uint64_t addr);
std::vector<size_t> 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);