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

Method dominance_frontier

python/basicblock.py:483–487  ·  view source on GitHub ↗

Dominance frontier for this basic block (read-only)

(self)

Source from the content-addressed store, hash-verified

481
482 @property
483 def dominance_frontier(self) -> List['BasicBlock']:
484 """Dominance frontier for this basic block (read-only)"""
485 count = ctypes.c_ulonglong()
486 blocks = core.BNGetBasicBlockDominanceFrontier(self.handle, count, False)
487 return self._make_blocks(blocks, count.value)
488
489 @property
490 def post_dominance_frontier(self) -> List['BasicBlock']:

Callers

nothing calls this directly

Calls 1

_make_blocksMethod · 0.95

Tested by

no test coverage detected