Home | History | Annotate | Download | only in gcc

Lines Matching refs:new_stmt

3260       gimple *new_stmt
3263 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
3303 gimple *new_stmt = gimple_build_assign (tem, new_rhs);
3305 gimple_set_location (new_stmt, loc);
3306 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
3308 new_stmt = gimple_build_assign (gimple_assign_lhs (use_stmt),
3310 gimple_set_location (new_stmt, loc);
3311 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
3321 gimple *new_stmt = gimple_build_assign (gimple_assign_lhs (use_stmt),
3324 gimple_set_location (new_stmt, loc);
3325 gsi_insert_before (gsi, new_stmt, GSI_SAME_STMT);
3586 gimple *new_stmt
3591 gimple_set_location (new_stmt, loc);
3596 gsi_insert_before (&gsi, new_stmt, GSI_SAME_STMT);
3636 gimple *new_stmt = gimple_build_assign (new_lhs, rhs);
3638 gimple_set_location (new_stmt, loc);
3639 gimple_set_vuse (new_stmt, gimple_vuse (use_stmt));
3640 gimple_set_vdef (new_stmt, make_ssa_name (gimple_vop (cfun)));
3641 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
3642 gimple_set_vuse (use_stmt, gimple_vdef (new_stmt));
3644 gsi_insert_before (&gsi2, new_stmt, GSI_SAME_STMT);
3700 gimple *new_stmt = gimple_build_assign (new_lhs, new_rhs);
3702 gimple_set_location (new_stmt, loc);
3703 gimple_set_vuse (new_stmt, gimple_vuse (use_stmt));
3704 gimple_set_vdef (new_stmt,
3706 SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
3707 gimple_set_vuse (use_stmt, gimple_vdef (new_stmt));
3709 gsi_insert_before (&gsi2, new_stmt, GSI_SAME_STMT);