HomeSort by: relevance | last modified time | path
    Searched defs:EDGE_COUNT (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
basic-block.h 303 #define EDGE_CRITICAL_P(e) (EDGE_COUNT ((e)->src->succs) >= 2 \
304 && EDGE_COUNT ((e)->dest->preds) >= 2)
306 #define EDGE_COUNT(ev) vec_safe_length (ev)
316 return EDGE_COUNT (bb->succs) == 1;
324 return EDGE_COUNT (bb->preds) == 1;
401 i.index = EDGE_COUNT (*ev) - 1;
411 return (i.index == EDGE_COUNT (ei_container (i)));
419 return (i.index + 1 == EDGE_COUNT (ei_container (i)));
426 gcc_checking_assert (i->index < EDGE_COUNT (ei_container (*i)));
  /src/external/gpl3/gcc.old/dist/gcc/
basic-block.h 311 #define EDGE_CRITICAL_P(e) (EDGE_COUNT ((e)->src->succs) >= 2 \
312 && EDGE_COUNT ((e)->dest->preds) >= 2)
314 #define EDGE_COUNT(ev) vec_safe_length (ev)
324 return EDGE_COUNT (bb->succs) == 1;
332 return EDGE_COUNT (bb->preds) == 1;
409 i.index = EDGE_COUNT (*ev) - 1;
419 return (i.index == EDGE_COUNT (ei_container (i)));
427 return (i.index + 1 == EDGE_COUNT (ei_container (i)));
434 gcc_checking_assert (i->index < EDGE_COUNT (ei_container (*i)));

Completed in 141 milliseconds