diff options
| author | Brian Potchik <brian@vector35.com> | 2025-04-23 14:22:29 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-04-23 14:22:29 -0400 |
| commit | 21a8896ae9f187c4480fe1a541dce599483817a6 (patch) | |
| tree | 795284c41f1ac5fe7e428f862f8ea1d026880d9b /function.cpp | |
| parent | 67ae186d19ef585d17ee5085340e66b5b35011fd (diff) | |
Add Function::Analyze API to perform on-demand function analysis.
Diffstat (limited to 'function.cpp')
| -rw-r--r-- | function.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/function.cpp b/function.cpp index 89420f8c..07f685a5 100644 --- a/function.cpp +++ b/function.cpp @@ -2488,6 +2488,12 @@ Confidence<RegisterValue> Function::GetRegisterValueAtExit(uint32_t reg) const } +void Function::Analyze() +{ + BNAnalyzeFunction(m_object); +} + + void Function::Reanalyze(BNFunctionUpdateType type) { BNReanalyzeFunction(m_object, type); |
