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

  /src/external/gpl3/gcc/dist/gcc/
cfg.cc 233 e->dest_idx = EDGE_COUNT (dest->preds) - 1;
267 unsigned int dest_idx = e->dest_idx;
269 dest->preds->unordered_remove (dest_idx);
272 to update dest_idx of the edge that moved into the "hole". */
273 if (dest_idx < EDGE_COUNT (dest->preds))
274 EDGE_PRED (dest, dest_idx)->dest_idx = dest_idx;
262 unsigned int dest_idx = e->dest_idx; local
tree-cfgcleanup.cc 456 int n1 = e1->dest_idx;
457 int n2 = e2->dest_idx;
1301 tree def = gimple_phi_arg_def (phi, succ->dest_idx);
1454 unsigned int dest_idx = single_succ_edge (bb)->dest_idx; local
1478 || gimple_phi_arg_def (use_stmt, dest_idx) != result)
basic-block.h 46 unsigned int dest_idx; variable
read-rtl-function.cc 754 int dest_idx = from ? this_bb_idx : other_bb_idx; local
779 if (from || dest_idx == EXIT_BLOCK)
780 m_deferred_edges.safe_push (deferred_edge (loc, src_idx, dest_idx, flags));
omp-expand.cc 5030 int dest_idx = find_edge (entry_bb, fin_bb)->dest_idx; local
5035 add_phi_arg (phi, gimple_phi_arg_def (phi, dest_idx),
5821 int dest_idx = find_edge (iter_part_bb, fin_bb)->dest_idx; local
5826 add_phi_arg (phi, gimple_phi_arg_def (phi, dest_idx),
8012 edge loop_entry_edge = EDGE_SUCC (body_bb, 1 - skip_edge->dest_idx);
tree-vect-slp.cc 1882 skip_args[loop_preheader_edge (loop)->dest_idx] = true;
1885 skip_args[loop_latch_edge (loop)->dest_idx] = true;
1906 skip_args[loop_preheader_edge (loop)->dest_idx] = true;
1911 skip_args[loop_latch_edge (loop)->dest_idx] = true;
3428 unsigned dest_idx = loop_latch_edge (loop)->dest_idx; local
3429 SLP_TREE_CHILDREN (*phi_node)[dest_idx]
9776 unsigned dest_idx = e->dest_idx; local
9777 child = SLP_TREE_CHILDREN (phi_node)[dest_idx];
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
cfg.cc 232 e->dest_idx = EDGE_COUNT (dest->preds) - 1;
266 unsigned int dest_idx = e->dest_idx;
268 dest->preds->unordered_remove (dest_idx);
271 to update dest_idx of the edge that moved into the "hole". */
272 if (dest_idx < EDGE_COUNT (dest->preds))
273 EDGE_PRED (dest, dest_idx)->dest_idx = dest_idx;
261 unsigned int dest_idx = e->dest_idx; local
tree-cfgcleanup.cc 451 int n1 = e1->dest_idx;
452 int n2 = e2->dest_idx;
597 tree def = gimple_phi_arg_def (phi, succ->dest_idx);
1279 tree def = gimple_phi_arg_def (phi, succ->dest_idx);
1431 unsigned int dest_idx = single_succ_edge (bb)->dest_idx; local
1455 || gimple_phi_arg_def (use_stmt, dest_idx) != result)
basic-block.h 46 unsigned int dest_idx; variable
read-rtl-function.cc 753 int dest_idx = from ? this_bb_idx : other_bb_idx; local
778 if (from || dest_idx == EXIT_BLOCK)
779 m_deferred_edges.safe_push (deferred_edge (loc, src_idx, dest_idx, flags));
omp-expand.cc 4931 int dest_idx = find_edge (entry_bb, fin_bb)->dest_idx; local
4936 add_phi_arg (phi, gimple_phi_arg_def (phi, dest_idx),
5726 int dest_idx = find_edge (iter_part_bb, fin_bb)->dest_idx; local
5731 add_phi_arg (phi, gimple_phi_arg_def (phi, dest_idx),
7923 edge loop_entry_edge = EDGE_SUCC (body_bb, 1 - skip_edge->dest_idx);
tree-vect-slp.cc 1679 skip_args[loop_preheader_edge (loop)->dest_idx] = true;
1682 skip_args[loop_latch_edge (loop)->dest_idx] = true;
1701 skip_args[loop_preheader_edge (loop)->dest_idx] = true;
1706 skip_args[loop_latch_edge (loop)->dest_idx] = true;
3170 unsigned dest_idx = loop_latch_edge (loop)->dest_idx; local
3171 SLP_TREE_CHILDREN (*phi_node)[dest_idx]
7745 unsigned dest_idx = e->dest_idx; local
7746 child = SLP_TREE_CHILDREN (phi_node)[dest_idx];
    [all...]
  /src/external/gpl2/xcvs/dist/lib/
regcomp.c 980 Idx dest_idx = dfa->edests[node_idx].elems[0];
981 if (!re_node_set_contains (&init_nodes, dest_idx))
983 re_node_set_merge (&init_nodes, dfa->eclosures + dest_idx);
975 Idx dest_idx = dfa->edests[node_idx].elems[0]; local
regexec.c 2502 Idx dest_idx;
2526 dest_idx = re_string_cur_idx (&mctx->input) + naccepted;
2529 err = clean_state_log_if_needed (mctx, dest_idx);
2537 dest_state = mctx->state_log[dest_idx];
2547 context = re_string_context_at (&mctx->input, dest_idx - 1, mctx->eflags);
2548 mctx->state_log[dest_idx]
2552 if (BE (mctx->state_log[dest_idx] == NULL && err != REG_NOERROR, 0))
2498 Idx dest_idx; local

Completed in 45 milliseconds