diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-06-10 18:38:47 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-06-11 17:37:30 -0400 |
| commit | 7714756208488751236371949777023618888407 (patch) | |
| tree | 3e8dcfcabb9736cc03ad7ad2d521e71b7b5fe25b /binaryninjaapi.h | |
| parent | 4559573522332364873709280012593875935285 (diff) | |
API to create immediate function graphs
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index ad16ca84..650fa8a2 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -11217,6 +11217,7 @@ namespace BinaryNinja { void ApplyAutoDiscoveredType(Type* type); Ref<FlowGraph> CreateFunctionGraph(const FunctionViewType& type, DisassemblySettings* settings = nullptr); + Ref<FlowGraph> CreateFunctionGraphImmediate(const FunctionViewType& type, DisassemblySettings* settings = nullptr); std::map<int64_t, std::vector<VariableNameAndType>> GetStackLayout(); void CreateAutoStackVariable(int64_t offset, const Confidence<Ref<Type>>& type, const std::string& name); @@ -13394,6 +13395,7 @@ namespace BinaryNinja { } Ref<FlowGraph> CreateFunctionGraph(DisassemblySettings* settings = nullptr); + Ref<FlowGraph> CreateFunctionGraphImmediate(DisassemblySettings* settings = nullptr); }; /*! @@ -13786,6 +13788,7 @@ namespace BinaryNinja { } Ref<FlowGraph> CreateFunctionGraph(DisassemblySettings* settings = nullptr); + Ref<FlowGraph> CreateFunctionGraphImmediate(DisassemblySettings* settings = nullptr); std::set<size_t> GetLiveInstructionsForVariable(const Variable& var, bool includeLastUse = true); @@ -14081,6 +14084,7 @@ namespace BinaryNinja { void VisitAllExprs(const std::function<bool(const HighLevelILInstruction& expr)>& func); Ref<FlowGraph> CreateFunctionGraph(DisassemblySettings* settings = nullptr); + Ref<FlowGraph> CreateFunctionGraphImmediate(DisassemblySettings* settings = nullptr); size_t GetExprIndexForLabel(uint64_t label); std::set<size_t> GetUsesForLabel(uint64_t label); |
