Home
last modified time | relevance | path

Searched refs:EDGE_PRED (Results 1 – 18 of 18) sorted by relevance

/freebsd-11-stable/contrib/gcc/
HDsbitmap.c580 e = EDGE_PRED (b, ix); in sbitmap_intersection_of_preds()
596 e = EDGE_PRED (b, ix); in sbitmap_intersection_of_preds()
660 e = EDGE_PRED (b, ix); in sbitmap_union_of_preds()
676 e = EDGE_PRED (b, ix); in sbitmap_union_of_preds()
HDtree-vectorizer.c748 add_phi_arg (new_phi, arg, EDGE_PRED (guard_edge->src, 0)); in slpeel_update_phi_nodes_for_guard2()
1019 && ((EDGE_PRED (loop2_entry_bb, 0)->src == loop1_exit_bb in slpeel_verify_cfg_after_peeling()
1020 && EDGE_PRED (loop2_entry_bb, 1)->src == loop1_entry_bb) in slpeel_verify_cfg_after_peeling()
1021 || (EDGE_PRED (loop2_entry_bb, 1)->src == loop1_exit_bb in slpeel_verify_cfg_after_peeling()
1022 && EDGE_PRED (loop2_entry_bb, 0)->src == loop1_entry_bb))); in slpeel_verify_cfg_after_peeling()
HDcfgcleanup.c1710 && !(EDGE_PRED (src2, 0)->flags & EDGE_EH)) in try_crossjump_to_edge()
1850 if (BB_PARTITION (EDGE_PRED (bb, 0)->src) != in try_crossjump_bb()
1851 BB_PARTITION (EDGE_PRED (bb, 1)->src) in try_crossjump_bb()
1852 || (EDGE_PRED (bb, 0)->flags & EDGE_CROSSING)) in try_crossjump_bb()
1873 e = EDGE_PRED (ev, ix); in try_crossjump_bb()
1916 e2 = EDGE_PRED (ev2, ix2); in try_crossjump_bb()
HDtree-if-conv.c691 first_edge = EDGE_PRED (bb, 0); in find_phi_replacement_condition()
692 second_edge = EDGE_PRED (bb, 1); in find_phi_replacement_condition()
815 if (EDGE_PRED (bb, 1)->src == true_bb) in replace_phi_with_cond_modify_expr()
HDcfgloopmanip.c1119 e = EDGE_PRED (loop->header, in create_preheader()
1120 EDGE_PRED (loop->header, 0)->src == loop->latch); in create_preheader()
1152 e = EDGE_PRED (dummy, 0); in create_preheader()
HDbasic-block.h598 #define EDGE_PRED(bb,i) VEC_index (edge, (bb)->preds, (i)) macro
634 return EDGE_PRED (bb, 0); in single_pred_edge()
HDtree-ssa-threadupdate.c786 edge e = EDGE_PRED (bb, 0)->aux; in thread_block()
HDtree-cfgcleanup.c656 edge e = EDGE_PRED (bb, 0), s; in remove_forwarder_block_with_phi()
HDcfghooks.c380 remove_edge (EDGE_PRED (bb, 0)); in delete_basic_block()
HDtree-vect-transform.c2624 if (EDGE_PRED (preheader, 0)->src == loop->single_exit->dest) in vect_do_peeling_for_loop_bound()
2625 update_e = EDGE_PRED (preheader, 0); in vect_do_peeling_for_loop_bound()
2627 update_e = EDGE_PRED (preheader, 1); in vect_do_peeling_for_loop_bound()
HDtree-ssa.c323 e = EDGE_PRED (bb, i); in verify_phi_args()
HDtree-ssa-pre.c2495 tree type = TREE_TYPE (avail[EDGE_PRED (block, 0)->src->index]); in insert_into_preds_of_block()
2515 EDGE_PRED (block, 0)->src); in insert_into_preds_of_block()
2517 EDGE_PRED (block, 1)->src); in insert_into_preds_of_block()
HDcfg.c255 EDGE_PRED (dest, dest_idx)->dest_idx = dest_idx; in disconnect_dest()
HDcfgexpand.c1565 e = EDGE_PRED (EXIT_BLOCK_PTR, ix); in construct_exit_block()
HDtree-ssa-live.c674 e = EDGE_PRED (bb, i); in calculate_live_on_entry()
HDtree.h1794 #define PHI_ARG_EDGE(NODE, I) (EDGE_PRED (PHI_BB ((NODE)), (I)))
HDChangeLog-20042772 EDGE_PRED instead of PHI_ARG_EDGE.
3786 * tree.h (PHI_ARG_EDGE): Redefine in terms of EDGE_PRED.
10676 (EDGE_COUNT, EDGE_I, EDGE_PRED, EDGE_SUCC): New.
HDChangeLog-200530214 * cfgexpand.c (construct_exit_block): Use EDGE_PRED instead of