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

  /src/external/gpl3/gcc.old/dist/gcc/
gimple-iterator.cc 370 gimple *orig_stmt = gsi_stmt (*gsi); local
373 stmt->next = next = orig_stmt->next;
374 stmt->prev = prev = orig_stmt->prev;
375 /* Note how we don't clear next/prev of orig_stmt. This is so that
376 copies of *GSI our callers might still hold (to orig_stmt)
431 gimple *orig_stmt = gsi_stmt (*gsi); local
434 if (stmt == orig_stmt)
437 gcc_assert (!gimple_has_lhs (orig_stmt) || !gimple_has_lhs (stmt)
438 || gimple_get_lhs (orig_stmt) == gimple_get_lhs (stmt));
440 gimple_set_location (stmt, gimple_location (orig_stmt));
    [all...]
tree-tailcall.cc 941 gimple *orig_stmt; local
943 stmt = orig_stmt = gsi_stmt (t->call_gsi);
tree-ssa-forwprop.cc 3756 gimple *orig_stmt = stmt = gsi_stmt (gsi); local
3775 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
gimple-ssa-store-merging.cc 4353 gimple *orig_stmt = NULL; local
4359 orig_stmt = store->stmt;
4362 dest = gimple_assign_lhs (orig_stmt);
4363 src = gimple_assign_rhs1 (orig_stmt);
4364 loc = gimple_location (orig_stmt);
tree-inline.cc 2049 gimple *orig_stmt = stmt; local
2073 orig_stmt);
2258 edge = id->src_node->get_edge (orig_stmt);
2333 id->dst_node->set_call_stmt_including_clones (orig_stmt,
2339 edge = id->dst_node->get_edge (orig_stmt);
2370 (dest, orig_stmt, call_stmt, bb->count,
2386 maybe_duplicate_eh_stmt_fn (cfun, stmt, id->src_cfun, orig_stmt,
tree-ssa-math-opts.cc 3072 gimple *orig_stmt = gsi_stmt (gsi); local
3075 if (maybe_clean_or_replace_eh_stmt (orig_stmt, gsi_stmt (gsi)))
3089 orig_stmt = gsi_stmt (gsi);
3092 if (is_gimple_call (orig_stmt)
3093 && gimple_call_internal_p (orig_stmt)
3094 && gimple_call_lhs (orig_stmt)
3095 && TREE_CODE (gimple_call_lhs (orig_stmt)) == SSA_NAME
3096 && single_imm_use (gimple_call_lhs (orig_stmt), &use_p, &neg_stmt)
tree-cfg.cc 1998 gimple *orig_stmt = stmt; local
2019 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
tree-ssa-sccvn.cc 6531 gimple *orig_stmt = stmt; local
6560 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
tree-vect-slp.cc 4851 gimple *orig_stmt = orig_stmt_info->stmt; local
4854 FOR_EACH_PHI_OR_STMT_DEF (def_p, orig_stmt, op_iter, SSA_OP_DEF)
5253 gimple *orig_stmt = orig_stmt_info->stmt; local
5264 worklist.quick_push (orig_stmt);
5307 if (gimple_visited_p (orig_stmt))
5309 gimple_set_visited (orig_stmt, true);
tree-vect-loop.cc 7004 orig_stmt-> S2: int_acc = plus <int_a ,int_acc>;
9512 gimple *orig_stmt, *new_stmt; local
9543 orig_stmt = STMT_VINFO_STMT (stmt_vinfo);
9546 mapping.put (gimple_phi_result (orig_stmt),
9564 orig_stmt = STMT_VINFO_STMT (stmt_vinfo);
9567 if (tree old_lhs = gimple_get_lhs (orig_stmt))
9626 orig_stmt = DR_STMT (dr);
9627 gcc_assert (gimple_uid (orig_stmt) > 0);
9628 stmt_vinfo = epilogue_vinfo->stmt_vec_infos[gimple_uid (orig_stmt) - 1];
  /src/external/gpl3/gcc/dist/gcc/
gimple-iterator.cc 371 gimple *orig_stmt = gsi_stmt (*gsi); local
374 stmt->next = next = orig_stmt->next;
375 stmt->prev = prev = orig_stmt->prev;
376 /* Note how we don't clear next/prev of orig_stmt. This is so that
377 copies of *GSI our callers might still hold (to orig_stmt)
432 gimple *orig_stmt = gsi_stmt (*gsi); local
435 if (stmt == orig_stmt)
438 gcc_assert (!gimple_has_lhs (orig_stmt) || !gimple_has_lhs (stmt)
439 || gimple_get_lhs (orig_stmt) == gimple_get_lhs (stmt));
441 gimple_set_location (stmt, gimple_location (orig_stmt));
    [all...]
tree-tailcall.cc 941 gimple *orig_stmt; local
943 stmt = orig_stmt = gsi_stmt (t->call_gsi);
tree-ssa-forwprop.cc 3944 gimple *orig_stmt = stmt = gsi_stmt (gsi); local
3975 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
gimple-ssa-store-merging.cc 4457 gimple *orig_stmt = NULL; local
4463 orig_stmt = store->stmt;
4466 dest = gimple_assign_lhs (orig_stmt);
4467 src = gimple_assign_rhs1 (orig_stmt);
4468 loc = gimple_location (orig_stmt);
tree-inline.cc 2068 gimple *orig_stmt = stmt; local
2096 gcond *orig_cond = as_a <gcond*> (orig_stmt);
2104 orig_stmt);
2274 edge = id->src_node->get_edge (orig_stmt);
2349 id->dst_node->set_call_stmt_including_clones (orig_stmt,
2355 edge = id->dst_node->get_edge (orig_stmt);
2386 (dest, orig_stmt, call_stmt, bb->count,
2402 maybe_duplicate_eh_stmt_fn (cfun, stmt, id->src_cfun, orig_stmt,
tree-ssa-math-opts.cc 3235 gimple *orig_stmt = gsi_stmt (gsi); local
3238 if (maybe_clean_or_replace_eh_stmt (orig_stmt, gsi_stmt (gsi)))
3252 orig_stmt = gsi_stmt (gsi);
3255 if (is_gimple_call (orig_stmt)
3256 && gimple_call_internal_p (orig_stmt)
3257 && gimple_call_lhs (orig_stmt)
3258 && TREE_CODE (gimple_call_lhs (orig_stmt)) == SSA_NAME
3259 && single_imm_use (gimple_call_lhs (orig_stmt), &use_p, &neg_stmt)
tree-cfg.cc 2073 gimple *orig_stmt = stmt; local
2094 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
tree-ssa-sccvn.cc 7030 gimple *orig_stmt = stmt; local
7059 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
tree-vect-loop.cc 7906 orig_stmt-> S2: int_acc = plus <int_a ,int_acc>;
11643 gimple *orig_stmt, *new_stmt; local
11674 orig_stmt = STMT_VINFO_STMT (stmt_vinfo);
11677 mapping.put (gimple_phi_result (orig_stmt),
11695 orig_stmt = STMT_VINFO_STMT (stmt_vinfo);
11698 if (tree old_lhs = gimple_get_lhs (orig_stmt))
11757 orig_stmt = DR_STMT (dr);
11758 gcc_assert (gimple_uid (orig_stmt) > 0);
11759 stmt_vinfo = epilogue_vinfo->stmt_vec_infos[gimple_uid (orig_stmt) - 1];
tree-vect-slp.cc 6574 gimple *orig_stmt = orig_stmt_info->stmt; local
6577 FOR_EACH_PHI_OR_STMT_DEF (def_p, orig_stmt, op_iter, SSA_OP_DEF)
7044 gimple *orig_stmt = orig_stmt_info->stmt; local
7055 worklist.quick_push (orig_stmt);
7098 if (gimple_visited_p (orig_stmt))
7100 gimple_set_visited (orig_stmt, true);
  /src/external/gpl3/gcc/dist/gcc/cp/
coroutines.cc 3485 tree *orig_stmt; member in struct:truth_if_transform
  /src/external/gpl3/gcc.old/dist/gcc/cp/
coroutines.cc 3268 tree *orig_stmt; member in struct:truth_if_transform

Completed in 125 milliseconds