Home
last modified time | relevance | path

Searched refs:idom (Results 1 – 4 of 4) sorted by relevance

/PHP-7.2/ext/opcache/Optimizer/
H A Dzend_cfg.c272 block->idom = -1; in initialize_block()
709 blocks[0].idom = 0; in zend_cfg_compute_dominators_tree()
714 int idom = -1; in zend_cfg_compute_dominators_tree() local
722 if (idom < 0) { in zend_cfg_compute_dominators_tree()
724 idom = pred; in zend_cfg_compute_dominators_tree()
730 while (postnum[pred] < postnum[idom]) pred = blocks[pred].idom; in zend_cfg_compute_dominators_tree()
731 while (postnum[idom] < postnum[pred]) idom = blocks[idom].idom; in zend_cfg_compute_dominators_tree()
736 if (idom >= 0 && blocks[j].idom != idom) { in zend_cfg_compute_dominators_tree()
737 blocks[j].idom = idom; in zend_cfg_compute_dominators_tree()
766 int idom = blocks[j].idom, level = 0; in zend_cfg_compute_dominators_tree() local
[all …]
H A Dzend_cfg.h52 int idom; /* immediate dominator block */ member
H A Dzend_ssa.c30 b = blocks[b].idom; in dominates()
926 while (i != -1 && i != blocks[j].idom) { in zend_build_ssa()
929 i = blocks[i].idom; in zend_build_ssa()
1451 if (block->idom >= 0) { in zend_ssa_remove_block()
1452 j = ssa->cfg.blocks[block->idom].children; in zend_ssa_remove_block()
1454 ssa->cfg.blocks[block->idom].children = block->next_child; in zend_ssa_remove_block()
1465 block->idom = -1; in zend_ssa_remove_block()
H A Dzend_dump.c746 if (b->idom >= 0) { in zend_dump_block_info()
747 fprintf(stderr, " ; idom=BB%d\n", b->idom); in zend_dump_block_info()

Completed in 22 milliseconds