Home
last modified time | relevance | path

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

/PHP-8.3/Zend/Optimizer/
H A Dzend_cfg.c262 block->next_child = -1; in initialize_block()
732 blocks[j].next_child = blocks[blocks[j].idom].children; in zend_cfg_compute_dominators_tree()
736 while (blocks[k].next_child >=0 && j > blocks[k].next_child) { in zend_cfg_compute_dominators_tree()
737 k = blocks[k].next_child; in zend_cfg_compute_dominators_tree()
739 blocks[j].next_child = blocks[k].next_child; in zend_cfg_compute_dominators_tree()
740 blocks[k].next_child = j; in zend_cfg_compute_dominators_tree()
810 for (j = blocks[i].children; j >= 0; j = blocks[j].next_child) { in zend_cfg_identify_loops()
837 for (child = blocks[sorted_blocks[i]].children; child >= 0; child = blocks[child].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()
1536 ssa->cfg.blocks[block->idom].children = block->next_child; in zend_ssa_remove_block_from_cfg()
1538 while (ssa->cfg.blocks[j].next_child >= 0) { in zend_ssa_remove_block_from_cfg()
1539 if (ssa->cfg.blocks[j].next_child == i) { in zend_ssa_remove_block_from_cfg()
1540 ssa->cfg.blocks[j].next_child = block->next_child; in zend_ssa_remove_block_from_cfg()
1543 j = ssa->cfg.blocks[j].next_child; in zend_ssa_remove_block_from_cfg()
1550 block->next_child = -1; in zend_ssa_remove_block_from_cfg()
H A Dzend_dump.c867 j = cfg->blocks[j].next_child; in zend_dump_block_info()
870 j = cfg->blocks[j].next_child; in zend_dump_block_info()
/PHP-8.3/ext/opcache/jit/
H A Dzend_jit.c1632 if (b->next_child < 0) { in zend_jit_compute_block_order_int()
1636 n = b->next_child; in zend_jit_compute_block_order_int()
1676 if (b->next_child < 0) { in zend_jit_compute_loop_body()
1681 n = b->next_child; in zend_jit_compute_loop_body()

Completed in 31 milliseconds