Dominance frontier for this basic block (read-only)
(self)
| 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']: |
nothing calls this directly
no test coverage detected