Home
last modified time | relevance | path

Searched refs:EDGE_CRITICAL_P (Results 1 – 16 of 16) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/gcc/
Dpostreload-gcse.cc1092 if (EDGE_CRITICAL_P (pred) && pred->count ().initialized_p ()) in eliminate_partially_redundant_load()
1104 if (EDGE_CRITICAL_P (pred)) in eliminate_partially_redundant_load()
1121 if (EDGE_CRITICAL_P (pred)) in eliminate_partially_redundant_load()
Dprofile.cc134 EDGE_CRITICAL_P (e) ? " (and split)" : ""); in instrument_edges()
1117 int m1 = EDGE_CRITICAL_P (e1) ? 2 : 1; in compare_freqs()
1118 int m2 = EDGE_CRITICAL_P (e2) ? 2 : 1; in compare_freqs()
Dbasic-block.h310 #define EDGE_CRITICAL_P(e) (EDGE_COUNT ((e)->src->succs) >= 2 \ macro
Dreg-stack.cc3040 if (EDGE_CRITICAL_P (e1) != EDGE_CRITICAL_P (e2)) in better_edge()
3041 return EDGE_CRITICAL_P (e1) ? e1 : e2; in better_edge()
Dtree-outof-ssa.cc1194 || !EDGE_CRITICAL_P (e)) in insert_backedge_copies()
Dira-emit.cc1042 || ! EDGE_CRITICAL_P (e)); in emit_moves()
Dtree-ssa-coalesce.cc181 if (EDGE_CRITICAL_P (e)) in coalesce_cost_edge()
Dira-build.cc168 && (e->flags & EDGE_ABNORMAL) && EDGE_CRITICAL_P (e)) in create_loop_tree_nodes()
177 if ((e->flags & EDGE_ABNORMAL) && EDGE_CRITICAL_P (e)) in create_loop_tree_nodes()
Dlra.cc1912 lra_assert (!EDGE_CRITICAL_P (e)); in lra_process_new_insns()
Dcfgrtl.cc1978 gcc_assert (!((e->flags & EDGE_ABNORMAL) && EDGE_CRITICAL_P (e))); in insert_insn_on_edge()
1999 gcc_assert (!((e->flags & EDGE_ABNORMAL) && EDGE_CRITICAL_P (e))); in prepend_insn_to_edge()
Dira.cc5551 if (EDGE_CRITICAL_P (e) in ira()
5562 if (EDGE_CRITICAL_P (e) in ira()
Dtree-if-conv.cc3047 if (EDGE_CRITICAL_P (e) && e->dest->loop_father == loop) in ifcvt_split_critical_edges()
Dtree-vrp.cc2823 if ((e == NULL || !EDGE_CRITICAL_P (e)) in register_new_assert_for()
Dtree-cfg.cc9150 if (EDGE_CRITICAL_P (e) && !(e->flags & EDGE_ABNORMAL)) in split_critical_edges()
DChangeLog-200111332 (EDGE_CRITICAL_P): New predicate.
11335 (insert_insn_on_edge): Use EDGE_CRITICAL_P.
11340 * profile.c (instrument_edges): Use EDGE_CRITICAL_P.
DChangeLog-200410675 (EDGE_CRITICAL_P): Redefine using EDGE_COUNT.