HomeSort by: relevance | last modified time | path
    Searched refs:join_bb (Results 1 - 18 of 18) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
ifcvt.h 31 basic_block join_bb; /* Join THEN/ELSE blocks. */ member in struct:ce_if_block
52 basic_block test_bb, then_bb, else_bb, join_bb; member in struct:noce_if_info
93 - JUMP falls through to JOIN_BB on !COND
ifcvt.cc 3481 basic_block join_bb = if_info->join_bb;
3580 remove_edge (find_edge (test_bb, join_bb));
3581 remove_edge (find_edge (then_bb, join_bb));
3582 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
3587 if (can_merge_blocks_p (test_bb, join_bb))
3589 merge_blocks (test_bb, join_bb);
3918 basic_block join_bb = if_info->join_bb; /* JOIN */
4209 remove_edge (find_edge (test_bb, join_bb)); local
3478 basic_block join_bb = if_info->join_bb; local
3579 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb); local
3915 basic_block join_bb = if_info->join_bb; \/* JOIN *\/ local
4469 basic_block join_bb = if_info->join_bb; local
4564 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb); local
4596 basic_block then_bb, else_bb, join_bb; local
4735 basic_block join_bb = ce_info->join_bb; \/* join block *\/ local
5033 basic_block join_bb = NULL_BLOCK; local
    [all...]
value-prof.cc 1315 basic_block cond_bb, dcall_bb, icall_bb, join_bb = NULL; local
1379 join_bb = e_ij->dest;
1380 join_bb->count = cond_bb->count;
1395 e_dj = make_edge (dcall_bb, join_bb, EDGE_FALLTHRU);
1407 gphi *phi = create_phi_node (result, join_bb);
1541 basic_block cond_bb, icall_bb, vcall_bb, join_bb; local
1590 join_bb = e_vj->dest;
1591 join_bb->count = profile_count::from_gcov_type (all);
1601 e_ij = make_edge (icall_bb, join_bb, EDGE_FALLTHRU);
1611 gphi *phi = create_phi_node (result, join_bb);
    [all...]
cfgloopmanip.cc 812 | | join_bb |
826 basic_block cond_bb, true_bb, false_bb, join_bb; local
843 join_bb = split_edge (single_succ_edge (cond_bb));
848 e_false = make_edge (cond_bb, join_bb, 0);
859 set_immediate_dominator (CDI_DOMINATORS, join_bb, cond_bb);
861 exit_edge = single_succ_edge (join_bb);
864 set_immediate_dominator (CDI_DOMINATORS, exit_edge->dest, join_bb);
tree-ssa-phiopt.cc 3336 if (cond) goto MIDDLE_BB; else goto JOIN_BB (edge E1)
3340 JOIN_BB:
3349 cond_store_replacement (basic_block middle_bb, basic_block join_bb,
3434 newphi = create_phi_node (name2, join_bb);
3441 gsi = gsi_after_labels (join_bb);
3444 gsi = gsi_last_bb (join_bb);
3466 basic_block join_bb, gimple *then_assign,
3518 newphi = create_phi_node (name, join_bb);
3525 gsi = gsi_after_labels (join_bb);
3528 gsi = gsi_last_bb (join_bb);
    [all...]
tree-complex.cc 1214 basic_block join_bb = single_succ_edge (cond_bb)->dest; local
1215 *gsi = gsi_start_nondebug_after_labels_bb (join_bb);
1222 edge orig_to_join = find_edge (orig_bb, join_bb);
trans-mem.cc 2917 basic_block join_bb = create_empty_bb (code_bb);
2920 add_bb_to_loop (join_bb, transaction_bb->loop_father);
2938 edge ef = make_edge (test_bb, join_bb, EDGE_FALSE_VALUE);
2939 redirect_edge_pred (fallthru_edge, join_bb);
2941 join_bb->count = test_bb->count = transaction_bb->count;
2949 transaction_bb = join_bb;
2910 basic_block join_bb = create_empty_bb (code_bb); local
tree-vect-loop.cc 12376 basic_block store_bb, join_bb; local
12393 join_bb = e->dest;
12402 make_single_succ_edge (store_bb, join_bb, EDGE_FALLTHRU);
12425 phi = create_phi_node (vdef, join_bb);
  /src/external/gpl3/gcc.old/dist/gcc/
ifcvt.h 31 basic_block join_bb; /* Join THEN/ELSE blocks. */ member in struct:ce_if_block
52 basic_block test_bb, then_bb, else_bb, join_bb; member in struct:noce_if_info
ifcvt.cc 3257 basic_block join_bb = if_info->join_bb;
3356 remove_edge (find_edge (test_bb, join_bb));
3357 remove_edge (find_edge (then_bb, join_bb));
3358 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb);
3363 if (can_merge_blocks_p (test_bb, join_bb))
3365 merge_blocks (test_bb, join_bb);
3732 basic_block join_bb = if_info->join_bb; /* JOIN */
4020 remove_edge (find_edge (test_bb, join_bb)); local
3254 basic_block join_bb = if_info->join_bb; local
3355 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb); local
3729 basic_block join_bb = if_info->join_bb; \/* JOIN *\/ local
4277 basic_block join_bb = if_info->join_bb; local
4372 redirect_edge_and_branch_force (single_succ_edge (test_bb), join_bb); local
4404 basic_block then_bb, else_bb, join_bb; local
4539 basic_block join_bb = ce_info->join_bb; \/* join block *\/ local
4837 basic_block join_bb = NULL_BLOCK; local
    [all...]
value-prof.cc 1323 basic_block cond_bb, dcall_bb, icall_bb, join_bb = NULL; local
1387 join_bb = e_ij->dest;
1388 join_bb->count = cond_bb->count;
1403 e_dj = make_edge (dcall_bb, join_bb, EDGE_FALLTHRU);
1415 gphi *phi = create_phi_node (result, join_bb);
1549 basic_block cond_bb, icall_bb, vcall_bb, join_bb; local
1598 join_bb = e_vj->dest;
1599 join_bb->count = profile_count::from_gcov_type (all);
1609 e_ij = make_edge (icall_bb, join_bb, EDGE_FALLTHRU);
1619 gphi *phi = create_phi_node (result, join_bb);
    [all...]
cfgloopmanip.cc 676 | | join_bb |
690 basic_block cond_bb, true_bb, false_bb, join_bb; local
707 join_bb = split_edge (single_succ_edge (cond_bb));
712 e_false = make_edge (cond_bb, join_bb, 0);
723 set_immediate_dominator (CDI_DOMINATORS, join_bb, cond_bb);
725 exit_edge = single_succ_edge (join_bb);
728 set_immediate_dominator (CDI_DOMINATORS, exit_edge->dest, join_bb);
tree-ssa-phiopt.cc 3165 if (cond) goto MIDDLE_BB; else goto JOIN_BB (edge E1)
3169 JOIN_BB:
3178 cond_store_replacement (basic_block middle_bb, basic_block join_bb,
3263 newphi = create_phi_node (name2, join_bb);
3270 gsi = gsi_after_labels (join_bb);
3273 gsi = gsi_last_bb (join_bb);
3295 basic_block join_bb, gimple *then_assign,
3347 newphi = create_phi_node (name, join_bb);
3354 gsi = gsi_after_labels (join_bb);
3357 gsi = gsi_last_bb (join_bb);
    [all...]
tree-complex.cc 1207 basic_block join_bb = single_succ_edge (cond_bb)->dest; local
1208 *gsi = gsi_start_nondebug_after_labels_bb (join_bb);
1215 edge orig_to_join = find_edge (orig_bb, join_bb);
trans-mem.cc 2908 basic_block join_bb = create_empty_bb (code_bb);
2911 add_bb_to_loop (join_bb, transaction_bb->loop_father);
2929 edge ef = make_edge (test_bb, join_bb, EDGE_FALSE_VALUE);
2930 redirect_edge_pred (fallthru_edge, join_bb);
2932 join_bb->count = test_bb->count = transaction_bb->count;
2940 transaction_bb = join_bb;
2901 basic_block join_bb = create_empty_bb (code_bb); local
tree-vect-loop.cc 10143 basic_block store_bb, join_bb; local
10160 join_bb = e->dest;
10168 make_single_succ_edge (store_bb, join_bb, EDGE_FALLTHRU);
10191 phi = create_phi_node (vdef, join_bb);
  /src/external/gpl3/gcc/dist/gcc/config/frv/
frv.cc 5216 basic_block join_bb = ce_info->join_bb; /* join block or NULL */
5270 if (join_bb
5271 && REGNO_REG_SET_P (df_get_live_in (join_bb), j))
5287 if (join_bb)
5293 EXECUTE_IF_SET_IN_REG_SET (df_get_live_in (join_bb), 0, regno, rsi)
5994 && ce_info->join_bb
5995 && ! (REGNO_REG_SET_P (df_get_live_in (ce_info->join_bb),
5163 basic_block join_bb = ce_info->join_bb; \/* join block or NULL *\/ local
  /src/external/gpl3/gcc.old/dist/gcc/config/frv/
frv.cc 5214 basic_block join_bb = ce_info->join_bb; /* join block or NULL */
5268 if (join_bb
5269 && REGNO_REG_SET_P (df_get_live_in (join_bb), j))
5285 if (join_bb)
5291 EXECUTE_IF_SET_IN_REG_SET (df_get_live_in (join_bb), 0, regno, rsi)
5992 && ce_info->join_bb
5993 && ! (REGNO_REG_SET_P (df_get_live_in (ce_info->join_bb),
5161 basic_block join_bb = ce_info->join_bb; \/* join block or NULL *\/ local

Completed in 141 milliseconds