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

Method post_dominator_tree_children

python/basicblock.py:476–480  ·  view source on GitHub ↗

List of child blocks in the post dominator tree for this basic block (read-only)

(self)

Source from the content-addressed store, hash-verified

474
475 @property
476 def post_dominator_tree_children(self) -> List['BasicBlock']:
477 """List of child blocks in the post dominator tree for this basic block (read-only)"""
478 count = ctypes.c_ulonglong()
479 blocks = core.BNGetBasicBlockDominatorTreeChildren(self.handle, count, True)
480 return self._make_blocks(blocks, count.value)
481
482 @property
483 def dominance_frontier(self) -> List['BasicBlock']:

Callers

nothing calls this directly

Calls 1

_make_blocksMethod · 0.95

Tested by

no test coverage detected