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

Method dominators

python/basicblock.py:432–436  ·  view source on GitHub ↗

List of dominators for this basic block (read-only)

(self)

Source from the content-addressed store, hash-verified

430
431 @property
432 def dominators(self) -> List['BasicBlock']:
433 """List of dominators for this basic block (read-only)"""
434 count = ctypes.c_ulonglong()
435 blocks = core.BNGetBasicBlockDominators(self.handle, count, False)
436 return self._make_blocks(blocks, count.value)
437
438 @property
439 def post_dominators(self) -> List['BasicBlock']:

Callers

nothing calls this directly

Calls 1

_make_blocksMethod · 0.95

Tested by

no test coverage detected