Lines Matching refs:bb
334 static void perturb_local_entropy(basic_block bb, tree local_entropy) in perturb_local_entropy() argument
343 gsi = gsi_after_labels(bb); in perturb_local_entropy()
377 static bool handle_tail_calls(basic_block bb, tree local_entropy) in handle_tail_calls() argument
381 for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) { in handle_tail_calls()
425 static void init_local_entropy(basic_block bb, tree local_entropy) in init_local_entropy() argument
431 gimple_stmt_iterator gsi = gsi_after_labels(bb); in init_local_entropy()
497 basic_block bb; in latent_entropy_execute() local
505 bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun)); in latent_entropy_execute()
506 if (!single_pred_p(bb)) { in latent_entropy_execute()
509 bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun)); in latent_entropy_execute()
516 init_local_entropy(bb, local_entropy); in latent_entropy_execute()
518 bb = bb->next_bb; in latent_entropy_execute()
524 while (bb != EXIT_BLOCK_PTR_FOR_FN(cfun)) { in latent_entropy_execute()
525 perturb_local_entropy(bb, local_entropy); in latent_entropy_execute()
526 bb = bb->next_bb; in latent_entropy_execute()