HomeSort by: relevance | last modified time | path
    Searched refs:exit_bbs (Results 1 - 19 of 19) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-loop-ch.cc 564 bitmap exit_bbs = BITMAP_ALLOC (NULL); local
566 bitmap_set_bit (exit_bbs, exit_edges[j]->dest->index);
567 bitmap_set_bit (exit_bbs, loop->header->index);
568 do_rpo_vn (cfun, entry, exit_bbs);
569 BITMAP_FREE (exit_bbs);
gimple-loop-jam.cc 611 auto_bitmap exit_bbs; local
612 bitmap_set_bit (exit_bbs, single_exit (outer)->dest->index);
613 todo |= do_rpo_vn (cfun, loop_preheader_edge (outer), exit_bbs);
cfganal.cc 1152 on the SEME region denoted by the ENTRY edge and the EXIT_BBS set of
1169 bitmap exit_bbs, bool for_iteration,
1208 if (bitmap_bit_p (exit_bbs, ei_edge (ei)->dest->index))
1293 if (bitmap_bit_p (exit_bbs, e->dest->index))
1409 if (!bitmap_bit_p (exit_bbs, EDGE_SUCC (dest, i)->dest->index))
1443 if (!bitmap_bit_p (exit_bbs, EDGE_SUCC (dest, i)->dest->index))
tree-if-conv.cc 3290 bitmap exit_bbs; local
3380 exit_bbs = BITMAP_ALLOC (NULL);
3381 bitmap_set_bit (exit_bbs, single_exit (loop)->dest->index);
3382 bitmap_set_bit (exit_bbs, loop->latch->index);
3390 todo |= do_rpo_vn (cfun, loop_preheader_edge (loop), exit_bbs);
3394 BITMAP_FREE (exit_bbs);
tree-ssa-loop-ivcanon.cc 1479 bitmap exit_bbs = BITMAP_ALLOC (NULL); local
1483 bitmap_set_bit (exit_bbs, exit->e->dest->index);
1486 do_rpo_vn (cfun, loop_preheader_edge (father), exit_bbs);
tree-vectorizer.cc 1359 auto_bitmap exit_bbs;
1364 bitmap_set_bit (exit_bbs, single_exit (loop)->dest->index);
1367 do_rpo_vn (fun, entry, exit_bbs);
1357 auto_bitmap exit_bbs; local
tree-ssa-sccvn.cc 7161 do_rpo_vn (function *fn, edge entry, bitmap exit_bbs,
7450 bool do_region, bitmap exit_bbs, bool skip_phis)
7654 && bitmap_bit_p (exit_bbs, true_e->dest->index))
7657 && bitmap_bit_p (exit_bbs, false_e->dest->index))
7860 /* Do VN on a SEME region specified by ENTRY and EXIT_BBS in FN.
7866 do_rpo_vn (function *fn, edge entry, bitmap exit_bbs,
7882 exit_bbs = BITMAP_ALLOC (NULL);
7883 bitmap_set_bit (exit_bbs, EXIT_BLOCK);
7896 (fn, entry, exit_bbs, true, rpo, !iterate ? &toplevel_scc_extents : NULL);
7899 BITMAP_FREE (exit_bbs);
    [all...]
tree-loop-distribution.cc 3238 bitmap exit_bbs = BITMAP_ALLOC (NULL);
3244 bitmap_set_bit (exit_bbs, EXIT_BLOCK);
3245 rpo_num = rev_post_order_and_mark_dfs_back_seme (cfun, entry, exit_bbs, true,
3247 BITMAP_FREE (exit_bbs);
var-tracking.cc 7086 auto_bitmap exit_bbs; local
7087 bitmap_set_bit (exit_bbs, EXIT_BLOCK);
7090 (cfun, single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun)), exit_bbs, true,
  /src/external/gpl3/gcc/dist/gcc/
gimple-loop-jam.cc 625 auto_bitmap exit_bbs; local
626 bitmap_set_bit (exit_bbs, single_exit (outer)->dest->index);
627 todo |= do_rpo_vn (cfun, loop_preheader_edge (outer), exit_bbs);
tree-ssa-loop-ch.cc 1160 bitmap exit_bbs = BITMAP_ALLOC (NULL); local
1162 bitmap_set_bit (exit_bbs, exit_edges[j]->dest->index);
1163 bitmap_set_bit (exit_bbs, loop->header->index);
1164 do_rpo_vn (cfun, entry, exit_bbs);
1165 BITMAP_FREE (exit_bbs);
cfganal.cc 1155 on the SEME region denoted by the ENTRY edge and the EXIT_BBS set of
1172 bitmap exit_bbs, bool for_iteration,
1211 if (bitmap_bit_p (exit_bbs, ei_edge (ei)->dest->index))
1296 if (bitmap_bit_p (exit_bbs, e->dest->index))
1412 if (!bitmap_bit_p (exit_bbs, EDGE_SUCC (dest, i)->dest->index))
1446 if (!bitmap_bit_p (exit_bbs, EDGE_SUCC (dest, i)->dest->index))
tree-ssa-loop-ivcanon.cc 1547 bitmap exit_bbs = BITMAP_ALLOC (NULL); local
1551 bitmap_set_bit (exit_bbs, exit->e->dest->index);
1554 do_rpo_vn (cfun, loop_preheader_edge (father), exit_bbs);
tree-vectorizer.cc 1384 auto_bitmap exit_bbs;
1391 bitmap_set_bit (exit_bbs, exit->dest->index);
1394 do_rpo_vn (fun, entry, exit_bbs);
1382 auto_bitmap exit_bbs; local
tree-ssa-sccvn.cc 7668 do_rpo_vn_1 (function *fn, edge entry, bitmap exit_bbs,
7970 bool do_region, bitmap exit_bbs, bool skip_phis)
8173 if ((do_region && bitmap_bit_p (exit_bbs, true_e->dest->index))
8176 if ((do_region && bitmap_bit_p (exit_bbs, false_e->dest->index))
8381 /* Do VN on a SEME region specified by ENTRY and EXIT_BBS in FN.
8388 do_rpo_vn_1 (function *fn, edge entry, bitmap exit_bbs,
8405 exit_bbs = BITMAP_ALLOC (NULL);
8406 bitmap_set_bit (exit_bbs, EXIT_BLOCK);
8419 (fn, entry, exit_bbs, true, rpo, !iterate ? &toplevel_scc_extents : NULL);
8422 BITMAP_FREE (exit_bbs);
    [all...]
tree-if-conv.cc 3767 bitmap exit_bbs; local
3935 exit_bbs = BITMAP_ALLOC (NULL);
3937 bitmap_set_bit (exit_bbs, exit->dest->index);
3938 todo |= do_rpo_vn (cfun, loop_preheader_edge (loop), exit_bbs,
3943 BITMAP_FREE (exit_bbs);
tree-loop-distribution.cc 3297 bitmap exit_bbs = BITMAP_ALLOC (NULL);
3303 bitmap_set_bit (exit_bbs, EXIT_BLOCK);
3304 rpo_num = rev_post_order_and_mark_dfs_back_seme (cfun, entry, exit_bbs, true,
3306 BITMAP_FREE (exit_bbs);
tree-vect-slp.cc 8085 auto_bitmap exit_bbs; local
8086 bitmap_set_bit (exit_bbs, EXIT_BLOCK);
8088 unsigned n = rev_post_order_and_mark_dfs_back_seme (fun, entry, exit_bbs,
var-tracking.cc 7071 auto_bitmap exit_bbs; local
7072 bitmap_set_bit (exit_bbs, EXIT_BLOCK);
7075 (cfun, single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun)), exit_bbs, true,

Completed in 87 milliseconds