Lines Matching refs:new_stmt
609 gimple *new_stmt = gsi_stmt (i);
610 if ((gimple_assign_single_p (new_stmt)
611 && !is_gimple_reg (gimple_assign_lhs (new_stmt)))
612 || (is_gimple_call (new_stmt)
613 && (gimple_call_flags (new_stmt)
620 vdef = make_ssa_name (gimple_vop (cfun), new_stmt);
621 gimple_set_vdef (new_stmt, vdef);
623 SSA_NAME_DEF_STMT (vdef) = new_stmt;
624 laststore = new_stmt;
634 gimple *new_stmt = gsi_stmt (i);
637 if (gimple_has_mem_ops (new_stmt))
638 gimple_set_vuse (new_stmt, reaching_vuse);
639 gimple_set_modified (new_stmt, true);
640 if (gimple_vdef (new_stmt))
641 reaching_vuse = gimple_vdef (new_stmt);
664 with GIMPLE_CALL NEW_STMT. */
667 finish_update_gimple_call (gimple_stmt_iterator *si_p, gimple *new_stmt,
671 gimple_call_set_lhs (new_stmt, lhs);
673 SSA_NAME_DEF_STMT (lhs) = new_stmt;
674 gimple_move_vops (new_stmt, stmt);
675 gimple_set_location (new_stmt, gimple_location (stmt));
676 if (gimple_block (new_stmt) == NULL_TREE)
677 gimple_set_block (new_stmt, gimple_block (stmt));
678 gsi_replace (si_p, new_stmt, false);
689 gcall *new_stmt, *stmt = as_a <gcall *> (gsi_stmt (*si_p));
693 new_stmt = gimple_build_call_valist (fn, nargs, ap);
694 finish_update_gimple_call (si_p, new_stmt, stmt);
742 gimple *stmt, *new_stmt;
757 gcall *new_stmt;
768 new_stmt = gimple_build_call_vec (fn, args);
769 finish_update_gimple_call (si_p, new_stmt, stmt);
797 new_stmt = gimple_build_assign (lhs, tmp);
799 gsi_insert_after_without_update (&i, new_stmt,
1027 gimple *new_stmt;
1030 new_stmt = gimple_build_assign (NULL_TREE, srcmem);
1033 new_stmt);
1034 gimple_assign_set_lhs (new_stmt, srcmem);
1035 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
1036 gimple_set_location (new_stmt, loc);
1037 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
1041 new_stmt
1045 gimple_move_vops (new_stmt, stmt);
1048 gsi_replace (gsi, new_stmt, false);
1051 gimple_set_location (new_stmt, loc);
1052 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
1293 gimple *new_stmt;
1301 new_stmt = gimple_build_assign (NULL_TREE, srcvar);
1303 new_stmt);
1304 gimple_assign_set_lhs (new_stmt, srcvar);
1305 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
1306 gimple_set_location (new_stmt, loc);
1307 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
1309 new_stmt = gimple_build_assign (destvar, srcvar);
1334 new_stmt = gimple_build_assign (destvar, srcvar);
1337 gimple_move_vops (new_stmt, stmt);
1340 gsi_replace (gsi, new_stmt, false);
1343 gimple_set_location (new_stmt, loc);
1344 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
2232 gimple *new_stmt = gimple_build_assign (gimple_call_lhs (stmt),
2234 gimple_seq_add_stmt_without_update (&stmts, new_stmt);
2265 gimple *new_stmt = gimple_build_call (strlen_fn, 1, str);
2266 gimple_set_location (new_stmt, loc);
2268 gimple_call_set_lhs (new_stmt, len);
2269 gimple_seq_add_stmt_without_update (&stmts, new_stmt);
2272 new_stmt = gimple_build_assign (gimple_call_lhs (stmt),
2274 gimple_seq_add_stmt_without_update (&stmts, new_stmt);
2322 gimple *new_stmt
2325 gimple_seq_add_stmt_without_update (&stmts, new_stmt);
5413 gassign *new_stmt = gimple_build_assign (lhs, rhs);
5414 gimple_set_location (new_stmt, gimple_location (call));
5415 gimple_move_vops (new_stmt, call);
5416 gsi_replace (gsi, new_stmt, false);
5430 gassign *new_stmt = gimple_build_assign (lhs, rhs);
5431 gimple_set_location (new_stmt, gimple_location (call));
5432 gimple_move_vops (new_stmt, call);
5433 gsi_replace (gsi, new_stmt, false);
5513 gimple *new_stmt = gimple_build_assign (lhs, def);
5514 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
5523 gimple *new_stmt = gimple_build_call (fndecl, 0);
5524 gimple_set_location (new_stmt, gimple_location (stmt));
5534 gimple_move_vops (new_stmt, stmt);
5535 gsi_replace (gsi, new_stmt, false);