MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / unresolved_stack_adjustment_graph

Method unresolved_stack_adjustment_graph

python/function.py:1607–1612  ·  view source on GitHub ↗

Flow graph of unresolved stack adjustments (read-only)

(self)

Source from the content-addressed store, hash-verified

1605
1606 @property
1607 def unresolved_stack_adjustment_graph(self) -> Optional['flowgraph.CoreFlowGraph']:
1608 """Flow graph of unresolved stack adjustments (read-only)"""
1609 graph = core.BNGetUnresolvedStackAdjustmentGraph(self.handle)
1610 if not graph:
1611 return None
1612 return flowgraph.CoreFlowGraph(graph)
1613
1614 @property
1615 def merged_vars(self) -> Dict['variable.Variable', List['variable.Variable']]:

Callers 1

check_for_leaksFunction · 0.45

Calls 1

CoreFlowGraphMethod · 0.80

Tested by 1

check_for_leaksFunction · 0.36