Home
last modified time | relevance | path

Searched refs:next_child (Results 1 – 5 of 5) sorted by relevance

/PHP-8.1/Zend/Optimizer/
H A Dzend_cfg.c262 block->next_child = -1; in initialize_block()
741 blocks[j].next_child = blocks[blocks[j].idom].children; in zend_cfg_compute_dominators_tree()
745 while (blocks[k].next_child >=0 && j > blocks[k].next_child) { in zend_cfg_compute_dominators_tree()
746 k = blocks[k].next_child; in zend_cfg_compute_dominators_tree()
748 blocks[j].next_child = blocks[k].next_child; in zend_cfg_compute_dominators_tree()
749 blocks[k].next_child = j; in zend_cfg_compute_dominators_tree()
828 for (j = blocks[i].children; j >= 0; j = blocks[j].next_child) { in zend_cfg_identify_loops()
H A Dzend_cfg.h54 int next_child; /* next dominated block */ member
H A Dzend_ssa.c802 if (blocks[n].next_child >= 0) { in zend_ssa_rename()
896 j = blocks[j].next_child; in zend_ssa_rename()
1503 ssa->cfg.blocks[block->idom].children = block->next_child; in zend_ssa_remove_block_from_cfg()
1505 while (ssa->cfg.blocks[j].next_child >= 0) { in zend_ssa_remove_block_from_cfg()
1506 if (ssa->cfg.blocks[j].next_child == i) { in zend_ssa_remove_block_from_cfg()
1507 ssa->cfg.blocks[j].next_child = block->next_child; in zend_ssa_remove_block_from_cfg()
1510 j = ssa->cfg.blocks[j].next_child; in zend_ssa_remove_block_from_cfg()
1517 block->next_child = -1; in zend_ssa_remove_block_from_cfg()
H A Dzend_dump.c849 j = cfg->blocks[j].next_child; in zend_dump_block_info()
852 j = cfg->blocks[j].next_child; in zend_dump_block_info()
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit.c1619 if (b->next_child < 0) { in zend_jit_compute_block_order_int()
1623 n = b->next_child; in zend_jit_compute_block_order_int()
1663 if (b->next_child < 0) { in zend_jit_compute_loop_body()
1668 n = b->next_child; in zend_jit_compute_loop_body()

Completed in 20 milliseconds