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

Method strict_dominators

python/basicblock.py:446–450  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

444
445 @property
446 def strict_dominators(self) -> List['BasicBlock']:
447 """List of strict dominators for this basic block (read-only)"""
448 count = ctypes.c_ulonglong()
449 blocks = core.BNGetBasicBlockStrictDominators(self.handle, count, False)
450 return self._make_blocks(blocks, count.value)
451
452 @property
453 def immediate_dominator(self) -> Optional['BasicBlock']:

Callers

nothing calls this directly

Calls 1

_make_blocksMethod · 0.95

Tested by

no test coverage detected