| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | gimple-iterator.cc | 370 gimple *orig_stmt = gsi_stmt (*gsi); in gsi_set_stmt() local 373 stmt->next = next = orig_stmt->next; in gsi_set_stmt() 374 stmt->prev = prev = orig_stmt->prev; in gsi_set_stmt() 431 gimple *orig_stmt = gsi_stmt (*gsi); in gsi_replace() local 434 if (stmt == orig_stmt) in gsi_replace() 437 gcc_assert (!gimple_has_lhs (orig_stmt) || !gimple_has_lhs (stmt) in gsi_replace() 438 || gimple_get_lhs (orig_stmt) == gimple_get_lhs (stmt)); in gsi_replace() 440 gimple_set_location (stmt, gimple_location (orig_stmt)); in gsi_replace() 446 require_eh_edge_purge = maybe_clean_or_replace_eh_stmt (orig_stmt, stmt); in gsi_replace() 448 gimple_duplicate_stmt_histograms (cfun, stmt, cfun, orig_stmt); in gsi_replace() [all …]
|
| H A D | ipa-param-manipulation.h | 337 gimple *orig_stmt); 379 bool modify_call_stmt (gcall **stmt_p, gimple *orig_stmt);
|
| H A D | ipa-param-manipulation.cc | 1938 record_argument_state (copy_body_data *id, gimple *orig_stmt, in record_argument_state() argument 1948 cgraph_edge *cs = this_node->get_edge (orig_stmt); in record_argument_state() 1959 cs = subclone->get_edge (orig_stmt); in record_argument_state() 2010 gimple *orig_stmt) in modify_call_stmt() argument 2196 if (orig_stmt) in modify_call_stmt() 2197 record_argument_state (m_id, orig_stmt, index_map, pass_through_map, in modify_call_stmt() 2211 gimple *orig_stmt) in modify_gimple_stmt() argument 2231 modified |= modify_call_stmt ((gcall **) stmt, orig_stmt); in modify_gimple_stmt()
|
| H A D | tree-ssa-math-opts.cc | 3072 gimple *orig_stmt = gsi_stmt (gsi); in convert_mult_to_fma_1() local 3075 if (maybe_clean_or_replace_eh_stmt (orig_stmt, gsi_stmt (gsi))) in convert_mult_to_fma_1() 3089 orig_stmt = gsi_stmt (gsi); in convert_mult_to_fma_1() 3092 if (is_gimple_call (orig_stmt) in convert_mult_to_fma_1() 3093 && gimple_call_internal_p (orig_stmt) in convert_mult_to_fma_1() 3094 && gimple_call_lhs (orig_stmt) in convert_mult_to_fma_1() 3095 && TREE_CODE (gimple_call_lhs (orig_stmt)) == SSA_NAME in convert_mult_to_fma_1() 3096 && single_imm_use (gimple_call_lhs (orig_stmt), &use_p, &neg_stmt) in convert_mult_to_fma_1()
|
| H A D | tree-tailcall.cc | 941 gimple *orig_stmt; in eliminate_tail_call() local 943 stmt = orig_stmt = gsi_stmt (t->call_gsi); in eliminate_tail_call()
|
| H A D | tree-inline.cc | 2049 gimple *orig_stmt = stmt; in copy_bb() local 2073 orig_stmt); in copy_bb() 2258 edge = id->src_node->get_edge (orig_stmt); in copy_bb() 2333 id->dst_node->set_call_stmt_including_clones (orig_stmt, in copy_bb() 2339 edge = id->dst_node->get_edge (orig_stmt); in copy_bb() 2370 (dest, orig_stmt, call_stmt, bb->count, in copy_bb() 2386 maybe_duplicate_eh_stmt_fn (cfun, stmt, id->src_cfun, orig_stmt, in copy_bb()
|
| H A D | gimple-ssa-store-merging.cc | 4352 gimple *orig_stmt = NULL; in output_merged_store() local 4358 orig_stmt = store->stmt; in output_merged_store() 4361 dest = gimple_assign_lhs (orig_stmt); in output_merged_store() 4362 src = gimple_assign_rhs1 (orig_stmt); in output_merged_store() 4363 loc = gimple_location (orig_stmt); in output_merged_store()
|
| H A D | tree-vect-loop.cc | 9510 gimple *orig_stmt, *new_stmt; in update_epilogue_loop_vinfo() local 9541 orig_stmt = STMT_VINFO_STMT (stmt_vinfo); in update_epilogue_loop_vinfo() 9544 mapping.put (gimple_phi_result (orig_stmt), in update_epilogue_loop_vinfo() 9562 orig_stmt = STMT_VINFO_STMT (stmt_vinfo); in update_epilogue_loop_vinfo() 9565 if (tree old_lhs = gimple_get_lhs (orig_stmt)) in update_epilogue_loop_vinfo() 9624 orig_stmt = DR_STMT (dr); in update_epilogue_loop_vinfo() 9625 gcc_assert (gimple_uid (orig_stmt) > 0); in update_epilogue_loop_vinfo() 9626 stmt_vinfo = epilogue_vinfo->stmt_vec_infos[gimple_uid (orig_stmt) - 1]; in update_epilogue_loop_vinfo()
|
| H A D | tree-vect-slp.cc | 4848 gimple *orig_stmt = orig_stmt_info->stmt; in vect_bb_slp_mark_live_stmts() local 4851 FOR_EACH_PHI_OR_STMT_DEF (def_p, orig_stmt, op_iter, SSA_OP_DEF) in vect_bb_slp_mark_live_stmts() 5250 gimple *orig_stmt = orig_stmt_info->stmt; in vect_bb_slp_scalar_cost() local 5261 worklist.quick_push (orig_stmt); in vect_bb_slp_scalar_cost() 5304 if (gimple_visited_p (orig_stmt)) in vect_bb_slp_scalar_cost() 5306 gimple_set_visited (orig_stmt, true); in vect_bb_slp_scalar_cost()
|
| H A D | tree-ssa-forwprop.cc | 3756 gimple *orig_stmt = stmt = gsi_stmt (gsi); in execute() local 3775 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt)) in execute()
|
| H A D | tree-ssa-sccvn.cc | 6488 gimple *orig_stmt = stmt; in eliminate_stmt() local 6517 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt)) in eliminate_stmt()
|
| H A D | tree-cfg.cc | 1998 gimple *orig_stmt = stmt; in replace_uses_by() local 2019 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt)) in replace_uses_by()
|
| H A D | ChangeLog-2021 | 21873 orig_stmt. Do not work with dummy decls, save necessary info about 21876 orig_stmt, pass it to modify_call_stmt.
|
| H A D | ChangeLog-2006 | 23455 change (stmt -> orig_stmt).
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | gimple-iterator.c | 366 gimple *orig_stmt = gsi_stmt (*gsi); in gsi_set_stmt() local 369 stmt->next = next = orig_stmt->next; in gsi_set_stmt() 370 stmt->prev = prev = orig_stmt->prev; in gsi_set_stmt() 427 gimple *orig_stmt = gsi_stmt (*gsi); in gsi_replace() local 430 if (stmt == orig_stmt) in gsi_replace() 433 gcc_assert (!gimple_has_lhs (orig_stmt) || !gimple_has_lhs (stmt) in gsi_replace() 434 || gimple_get_lhs (orig_stmt) == gimple_get_lhs (stmt)); in gsi_replace() 436 gimple_set_location (stmt, gimple_location (orig_stmt)); in gsi_replace() 442 require_eh_edge_purge = maybe_clean_or_replace_eh_stmt (orig_stmt, stmt); in gsi_replace() 444 gimple_duplicate_stmt_histograms (cfun, stmt, cfun, orig_stmt); in gsi_replace() [all …]
|
| H A D | tree-tailcall.c | 941 gimple *orig_stmt; in eliminate_tail_call() local 943 stmt = orig_stmt = gsi_stmt (t->call_gsi); in eliminate_tail_call()
|
| H A D | tree-inline.c | 2024 gimple *orig_stmt = stmt; in copy_bb() local 2048 orig_stmt); in copy_bb() 2220 edge = id->src_node->get_edge (orig_stmt); in copy_bb() 2295 id->dst_node->set_call_stmt_including_clones (orig_stmt, in copy_bb() 2301 edge = id->dst_node->get_edge (orig_stmt); in copy_bb() 2332 (dest, orig_stmt, call_stmt, bb->count, in copy_bb() 2348 maybe_duplicate_eh_stmt_fn (cfun, stmt, id->src_cfun, orig_stmt, in copy_bb()
|
| H A D | gimple-ssa-store-merging.c | 4012 gimple *orig_stmt = NULL; in output_merged_store() local 4018 orig_stmt = store->stmt; in output_merged_store() 4021 dest = gimple_assign_lhs (orig_stmt); in output_merged_store() 4022 src = gimple_assign_rhs1 (orig_stmt); in output_merged_store() 4023 loc = gimple_location (orig_stmt); in output_merged_store()
|
| H A D | tree-vect-loop.c | 8541 gimple *orig_stmt, *new_stmt; in update_epilogue_loop_vinfo() local 8571 orig_stmt = STMT_VINFO_STMT (stmt_vinfo); in update_epilogue_loop_vinfo() 8574 mapping.put (gimple_phi_result (orig_stmt), in update_epilogue_loop_vinfo() 8590 orig_stmt = STMT_VINFO_STMT (stmt_vinfo); in update_epilogue_loop_vinfo() 8593 if (tree old_lhs = gimple_get_lhs (orig_stmt)) in update_epilogue_loop_vinfo() 8652 orig_stmt = DR_STMT (dr); in update_epilogue_loop_vinfo() 8653 gcc_assert (gimple_uid (orig_stmt) > 0); in update_epilogue_loop_vinfo() 8654 stmt_vinfo = epilogue_vinfo->stmt_vec_infos[gimple_uid (orig_stmt) - 1]; in update_epilogue_loop_vinfo()
|
| H A D | tree-ssa-math-opts.c | 2916 gimple *orig_stmt = gsi_stmt (gsi); in convert_mult_to_fma_1() local 2919 if (maybe_clean_or_replace_eh_stmt (orig_stmt, gsi_stmt (gsi))) in convert_mult_to_fma_1()
|
| H A D | tree-ssa-forwprop.c | 3108 gimple *orig_stmt = stmt = gsi_stmt (gsi); in execute() local 3127 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt)) in execute()
|
| H A D | tree-ssa-sccvn.c | 6053 gimple *orig_stmt = stmt; in eliminate_stmt() local 6082 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt)) in eliminate_stmt()
|
| H A D | tree-cfg.c | 2000 gimple *orig_stmt = stmt; in replace_uses_by() local 2021 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt)) in replace_uses_by()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
| H A D | coroutines.cc | 3268 tree *orig_stmt; member
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
| H A D | coroutines.cc | 3419 tree *orig_stmt; member
|