HomeSort by: relevance | last modified time | path
    Searched defs:bb_postorder (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
domwalk.cc 136 int *bb_postorder = (int *)data; local
138 return bb_postorder[bb2->index] - bb_postorder[bb1->index];
142 i.e. by descending number in BB_POSTORDER array. */
145 sort_bbs_postorder (basic_block *bbs, int n, int *bb_postorder)
150 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
156 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
158 if (bb_postorder[bb1->index] < bb_postorder[bb2->index]
    [all...]
tree-ssa-dce.cc 116 static int *bb_postorder; variable
1120 if (!bb_postorder)
1125 bb_postorder = XNEWVEC (int, last_basic_block_for_fn (cfun));
1127 bb_postorder[rpo[i]] = i;
1132 || bb_postorder [e->dest->index]
1133 >= bb_postorder [e2->dest->index])
1636 if (bb_postorder)
1637 free (bb_postorder);
1638 bb_postorder = NULL;
  /src/external/gpl3/gcc.old/dist/gcc/
domwalk.cc 136 int *bb_postorder = (int *)data; local
138 return bb_postorder[bb2->index] - bb_postorder[bb1->index];
142 i.e. by descending number in BB_POSTORDER array. */
145 sort_bbs_postorder (basic_block *bbs, int n, int *bb_postorder)
150 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
156 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
158 if (bb_postorder[bb1->index] < bb_postorder[bb2->index]
    [all...]
tree-ssa-dce.cc 116 static int *bb_postorder; variable
1105 if (!bb_postorder)
1110 bb_postorder = XNEWVEC (int, last_basic_block_for_fn (cfun));
1112 bb_postorder[postorder[i]] = i;
1116 || bb_postorder [e->dest->index]
1117 < bb_postorder [e2->dest->index])
1578 if (bb_postorder)
1579 free (bb_postorder);
1580 bb_postorder = NULL;

Completed in 41 milliseconds