Home
last modified time | relevance | path

Searched refs:postnum (Results 1 – 3 of 3) sorted by relevance

/PHP-8.4/Zend/Optimizer/
H A Dzend_cfg.c654 int *postnum, int *cur, const zend_cfg *cfg, int block_num) /* {{{ */ in compute_postnum_recursive() argument
658 if (postnum[block_num] != -1) { in compute_postnum_recursive()
662 postnum[block_num] = -2; /* Marker for "currently visiting" */ in compute_postnum_recursive()
664 compute_postnum_recursive(postnum, cur, cfg, block->successors[s]); in compute_postnum_recursive()
666 postnum[block_num] = (*cur)++; in compute_postnum_recursive()
684 int *postnum = do_alloca(sizeof(int) * cfg->blocks_count, use_heap); in zend_cfg_compute_dominators_tree()
685 memset(postnum, -1, sizeof(int) * cfg->blocks_count); in zend_cfg_compute_dominators_tree()
687 compute_postnum_recursive(postnum, &j, cfg, 0); in zend_cfg_compute_dominators_tree()
708 while (postnum[pred] < postnum[idom]) pred = blocks[pred].idom; in zend_cfg_compute_dominators_tree()
709 while (postnum[idom] < postnum[pred]) idom = blocks[idom].idom; in zend_cfg_compute_dominators_tree()
[all …]
/PHP-8.4/ext/opcache/jit/ir/
H A Dir_cfg.c510 if (bb->postnum != 0) {
515 bb->postnum = -1; /* Marker for "currently visiting" */
523 bb->postnum = (*cur)++;
530 uint32_t blocks_count, b, postnum;
537 postnum = 1;
538 compute_postnum(ctx, &postnum, 1);
578 while (pred_bb->postnum < idom_bb->postnum) {
582 while (idom_bb->postnum < pred_bb->postnum) {
H A Dir_private.h1103 uint32_t postnum; /* used temporary during tree constructon */ member

Completed in 19 milliseconds