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

Method post_dominance_frontier

python/basicblock.py:490–494  ·  view source on GitHub ↗

Post dominance frontier for this basic block (read-only)

(self)

Source from the content-addressed store, hash-verified

488
489 @property
490 def post_dominance_frontier(self) -> List['BasicBlock']:
491 """Post dominance frontier for this basic block (read-only)"""
492 count = ctypes.c_ulonglong()
493 blocks = core.BNGetBasicBlockDominanceFrontier(self.handle, count, True)
494 return self._make_blocks(blocks, count.value)
495
496 @property
497 def annotations(self) -> List[List['_function.InstructionTextToken']]:

Callers

nothing calls this directly

Calls 1

_make_blocksMethod · 0.95

Tested by

no test coverage detected