| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-ssa-loop-ivcanon.cc | 525 edge exit_edge = EDGE_SUCC (bb, 0); local 532 if (!loop_exit_edge_p (loop, exit_edge)) 533 exit_edge = EDGE_SUCC (bb, 1); 534 exit_edge->probability = profile_probability::always (); 535 gcc_checking_assert (loop_exit_edge_p (loop, exit_edge)); 537 if (exit_edge->flags & EDGE_TRUE_VALUE) 567 edge exit_edge = EDGE_SUCC (bb, 0); local 570 if (!loop_exit_edge_p (loop, exit_edge)) 571 exit_edge = EDGE_SUCC (bb, 1); 575 if (!number_of_iterations_exit (loop, exit_edge, [all...] |
| cfgloopmanip.cc | 678 | | exit_edge (result) 691 edge e_true, e_false, exit_edge; local 725 exit_edge = single_succ_edge (join_bb); 727 if (single_pred_p (exit_edge->dest)) 728 set_immediate_dominator (CDI_DOMINATORS, exit_edge->dest, join_bb); 730 return exit_edge;
|
| graphite-isl-ast-to-gimple.cc | 870 edge exit_edge = create_empty_if_region_on_edge (entry_edge, cond_expr); local 871 return exit_edge;
|
| tree-scalar-evolution.cc | 847 edge exit_edge = single_exit (loop); 852 if (exit_edge) 856 stmt = last_stmt (exit_edge->src); 845 edge exit_edge = single_exit (loop); local
|
| tree-vect-loop-manip.cc | 772 edge exit_edge = single_exit (loop); local 773 tree_code code = (exit_edge->flags & EDGE_TRUE_VALUE) ? EQ_EXPR : NE_EXPR; 809 edge exit_edge = single_exit (loop); local 832 code = (exit_edge->flags & EDGE_TRUE_VALUE) ? GE_EXPR : LT_EXPR; 883 code = (exit_edge->flags & EDGE_TRUE_VALUE) ? GE_EXPR : LT_EXPR; 889 code = (exit_edge->flags & EDGE_TRUE_VALUE) ? GT_EXPR : LE_EXPR;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| cfgloopmanip.cc | 534 edge exit_edge = single_exit (loop); local 535 if (!exit_edge) 538 exit_edge = single_likely_exit (loop, exits); 540 return exit_edge; 543 /* Assume that loop's entry count and profile up to a given EXIT_EDGE is 545 and rescale profile of basic blocks inside loop dominated by EXIT_EDGE->src. 548 If EXIT_EDGE is NULL, the function will try to identify suitable exit. 556 edge exit_edge, 559 if (!exit_edge) 560 exit_edge = loop_exit_for_scaling (loop) 740 edge exit_edge = loop_exit_for_scaling (loop); local 827 edge e_true, e_false, exit_edge; local [all...] |
| tree-ssa-loop-ivcanon.cc | 569 edge exit_edge = EDGE_SUCC (bb, 0); local 576 if (!loop_exit_edge_p (loop, exit_edge)) 577 exit_edge = EDGE_SUCC (bb, 1); 578 exit_edge->probability = profile_probability::always (); 579 gcc_checking_assert (loop_exit_edge_p (loop, exit_edge)); 581 if (exit_edge->flags & EDGE_TRUE_VALUE) 611 edge exit_edge = EDGE_SUCC (bb, 0); local 614 if (!loop_exit_edge_p (loop, exit_edge)) 615 exit_edge = EDGE_SUCC (bb, 1); 619 if (!number_of_iterations_exit (loop, exit_edge, [all...] |
| graphite-isl-ast-to-gimple.cc | 870 edge exit_edge = create_empty_if_region_on_edge (entry_edge, cond_expr); local 871 return exit_edge;
|