Home
last modified time | relevance | path

Searched refs:bb_postorder (Results 1 – 2 of 2) sorted by relevance

/dragonfly/contrib/gcc-8.0/gcc/
H A Ddomwalk.c132 static int *bb_postorder; variable
140 return bb_postorder[bb2->index] - bb_postorder[bb1->index]; in cmp_bb_postorder()
152 if (bb_postorder[bb0->index] < bb_postorder[bb1->index]) in sort_bbs_postorder()
158 if (bb_postorder[bb0->index] < bb_postorder[bb1->index]) in sort_bbs_postorder()
160 if (bb_postorder[bb1->index] < bb_postorder[bb2->index]) in sort_bbs_postorder()
163 if (bb_postorder[bb0->index] < bb_postorder[bb1->index]) in sort_bbs_postorder()
338 bb_postorder = m_bb_to_rpo; in walk()
404 bb_postorder = NULL; in walk()
H A Dtree-ssa-dce.c116 static int *bb_postorder; variable
1034 if (!bb_postorder) in remove_dead_stmt()
1039 bb_postorder = XNEWVEC (int, last_basic_block_for_fn (cfun)); in remove_dead_stmt()
1041 bb_postorder[postorder[i]] = i; in remove_dead_stmt()
1045 || bb_postorder [e->dest->index] in remove_dead_stmt()
1046 < bb_postorder [e2->dest->index]) in remove_dead_stmt()
1473 if (bb_postorder) in eliminate_unnecessary_stmts()
1474 free (bb_postorder); in eliminate_unnecessary_stmts()
1475 bb_postorder = NULL; in eliminate_unnecessary_stmts()