summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2018-08-02 22:46:43 -0400
committerRusty Wagner <rusty@vector35.com>2018-08-02 22:46:43 -0400
commit7c4025df43511852ecb86d8ab608e1da476d90de (patch)
treea70c900c0fe766f2c954274be74d7e8f47dc6ace /binaryninjaapi.h
parent657bc3ff2d000508bd4b4468e83ce37591655e17 (diff)
Add API to query if an assembly instruction is a call
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 53e0a30d..2c467a35 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -2500,6 +2500,7 @@ namespace BinaryNinja
Confidence<size_t> GetCallStackAdjustment(Architecture* arch, uint64_t addr);
std::map<uint32_t, Confidence<int32_t>> GetCallRegisterStackAdjustment(Architecture* arch, uint64_t addr);
Confidence<int32_t> GetCallRegisterStackAdjustment(Architecture* arch, uint64_t addr, uint32_t regStack);
+ bool IsCallInstruction(Architecture* arch, uint64_t addr);
std::vector<std::vector<InstructionTextToken>> GetBlockAnnotations(Architecture* arch, uint64_t addr);