summaryrefslogtreecommitdiff
path: root/ui/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/util.h')
-rw-r--r--ui/util.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/ui/util.h b/ui/util.h
index 9b5a907d..1123b9c6 100644
--- a/ui/util.h
+++ b/ui/util.h
@@ -30,6 +30,18 @@ std::optional<BinaryNinja::PossibleValueSet> BINARYNINJAUIAPI getPossibleValueSe
std::optional<BinaryNinja::PossibleValueSet> BINARYNINJAUIAPI getPossibleValueSetForILToken(View* view, HighlightTokenState token);
std::optional<uint64_t> BINARYNINJAUIAPI getAddressOfILTokenExpr(View* view, HighlightTokenState token);
+// Resolve the address of the call instruction that the user is currently on,
+// given the active function, architecture, IL view, highlight, and cursor
+// position. This is the address of the calling instruction itself, not the
+// call target.
+std::optional<uint64_t> BINARYNINJAUIAPI getCallInstructionAddress(
+ FunctionRef function,
+ ArchitectureRef arch,
+ BNFunctionGraphType viewType,
+ const HighlightTokenState& highlight,
+ uint64_t cursorAddress,
+ size_t cursorInstrIndex);
+
template <typename T>
std::optional<T> visitILInstructionForToken(View* view, const HighlightTokenState& token,
const std::function<std::optional<T>(BinaryNinja::LowLevelILInstruction&)>& llil,