Home
last modified time | relevance | path

Searched refs:best_bb (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-ssa-sink.c192 basic_block best_bb = late_bb; in select_best_block() local
200 if (bb_loop_depth (temp_bb) < bb_loop_depth (best_bb)) in select_best_block()
201 best_bb = temp_bb; in select_best_block()
211 if (bb_loop_depth (best_bb) < bb_loop_depth (early_bb)) in select_best_block()
212 return best_bb; in select_best_block()
227 if (bb_loop_depth (best_bb) == bb_loop_depth (early_bb) in select_best_block()
230 && !(best_bb->count.apply_scale (100, 1) in select_best_block()
232 return best_bb; in select_best_block()
H A Dbb-reorder.c339 basic_block best_bb = NULL; in rotate_loop() local
370 best_bb = bb; in rotate_loop()
383 best_bb = bb; in rotate_loop()
391 best_bb = bb; in rotate_loop()
400 if (best_bb) in rotate_loop()
406 trace->first = (basic_block) best_bb->aux; in rotate_loop()
416 prev_bb->aux = best_bb->aux; in rotate_loop()
434 best_bb = back_edge->src; in rotate_loop()
436 best_bb->aux = NULL; in rotate_loop()
437 return best_bb; in rotate_loop()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-sink.cc195 basic_block best_bb = late_bb; in select_best_block() local
203 if (bb_loop_depth (temp_bb) < bb_loop_depth (best_bb)) in select_best_block()
204 best_bb = temp_bb; in select_best_block()
214 if (bb_loop_depth (best_bb) < bb_loop_depth (early_bb)) in select_best_block()
215 return best_bb; in select_best_block()
230 if (bb_loop_depth (best_bb) == bb_loop_depth (early_bb) in select_best_block()
233 && !(best_bb->count.apply_scale (100, 1) in select_best_block()
235 return best_bb; in select_best_block()
H A Dbb-reorder.cc339 basic_block best_bb = NULL; in rotate_loop() local
370 best_bb = bb; in rotate_loop()
383 best_bb = bb; in rotate_loop()
391 best_bb = bb; in rotate_loop()
400 if (best_bb) in rotate_loop()
406 trace->first = (basic_block) best_bb->aux; in rotate_loop()
416 prev_bb->aux = best_bb->aux; in rotate_loop()
434 best_bb = back_edge->src; in rotate_loop()
436 best_bb->aux = NULL; in rotate_loop()
437 return best_bb; in rotate_loop()
H A DChangeLog-20193106 for early_bb scaled count with best_bb count comparison.