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

Method post_dominators

python/basicblock.py:439–443  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

437
438 @property
439 def post_dominators(self) -> List['BasicBlock']:
440 """List of dominators for this basic block (read-only)"""
441 count = ctypes.c_ulonglong()
442 blocks = core.BNGetBasicBlockDominators(self.handle, count, True)
443 return self._make_blocks(blocks, count.value)
444
445 @property
446 def strict_dominators(self) -> List['BasicBlock']:

Callers

nothing calls this directly

Calls 1

_make_blocksMethod · 0.95

Tested by

no test coverage detected