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

  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-sink.cc 197 basic_block best_bb = late_bb; local
205 if (bb_loop_depth (temp_bb) < bb_loop_depth (best_bb))
206 best_bb = temp_bb;
216 if (bb_has_abnormal_pred (best_bb))
222 if (bb_loop_depth (best_bb) < bb_loop_depth (early_bb))
223 return best_bb;
227 if (best_bb->loop_father == early_bb->loop_father
228 && loop_outer (best_bb->loop_father)
229 && !best_bb->loop_father->inner
233 && dominated_by_p (CDI_DOMINATORS, best_bb->loop_father->latch, early_bb
    [all...]
bb-reorder.cc 340 basic_block best_bb = NULL;
371 best_bb = bb;
384 best_bb = bb;
392 best_bb = bb;
401 if (best_bb)
407 trace->first = (basic_block) best_bb->aux;
417 prev_bb->aux = best_bb->aux;
435 best_bb = back_edge->src;
437 best_bb->aux = NULL;
438 return best_bb;
339 basic_block best_bb = NULL; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-sink.cc 196 basic_block best_bb = late_bb; local
204 if (bb_loop_depth (temp_bb) < bb_loop_depth (best_bb))
205 best_bb = temp_bb;
215 if (bb_loop_depth (best_bb) < bb_loop_depth (early_bb))
216 return best_bb;
229 /* If BEST_BB is at the same nesting level, then require it to have
231 if (bb_loop_depth (best_bb) == bb_loop_depth (early_bb)
234 && !(best_bb->count.apply_scale (100, 1)
236 return best_bb;
bb-reorder.cc 340 basic_block best_bb = NULL;
371 best_bb = bb;
384 best_bb = bb;
392 best_bb = bb;
401 if (best_bb)
407 trace->first = (basic_block) best_bb->aux;
417 prev_bb->aux = best_bb->aux;
435 best_bb = back_edge->src;
437 best_bb->aux = NULL;
438 return best_bb;
339 basic_block best_bb = NULL; local
    [all...]

Completed in 15 milliseconds