Lines Matching refs:bb
340 static void perturb_local_entropy(basic_block bb, tree local_entropy) in perturb_local_entropy() argument
349 gsi = gsi_after_labels(bb); in perturb_local_entropy()
383 static bool handle_tail_calls(basic_block bb, tree local_entropy) in handle_tail_calls() argument
387 for (gsi = gsi_start_bb(bb); !gsi_end_p(gsi); gsi_next(&gsi)) { in handle_tail_calls()
431 static void init_local_entropy(basic_block bb, tree local_entropy) in init_local_entropy() argument
437 gimple_stmt_iterator gsi = gsi_after_labels(bb); in init_local_entropy()
503 basic_block bb; in latent_entropy_execute() local
511 bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun)); in latent_entropy_execute()
512 if (!single_pred_p(bb)) { in latent_entropy_execute()
515 bb = single_succ(ENTRY_BLOCK_PTR_FOR_FN(cfun)); in latent_entropy_execute()
522 init_local_entropy(bb, local_entropy); in latent_entropy_execute()
524 bb = bb->next_bb; in latent_entropy_execute()
530 while (bb != EXIT_BLOCK_PTR_FOR_FN(cfun)) { in latent_entropy_execute()
531 perturb_local_entropy(bb, local_entropy); in latent_entropy_execute()
532 bb = bb->next_bb; in latent_entropy_execute()