Searched refs:stmt2 (Results 1 - 15 of 15) sorted by relevance

/haiku-buildtools/gcc/gcc/
H A Dtree-profile.c272 gassign *stmt1, *stmt2, *stmt3; local
281 stmt2 = gimple_build_assign (gcov_type_tmp_var, PLUS_EXPR,
283 stmt3 = gimple_build_assign (unshare_expr (ref), gimple_assign_lhs (stmt2));
285 gsi_insert_on_edge (e, stmt2);
380 gassign *stmt1, *stmt2, *stmt3; local
397 stmt2: tmp1 = (void *) (indirect call argument value)
403 stmt2 = gimple_build_assign (tmp1, unshare_expr (value->hvalue.value));
404 stmt3 = gimple_build_assign (ic_void_ptr_var, gimple_assign_lhs (stmt2));
407 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
423 gassign *stmt2; local
[all...]
H A Dvtable-verify.c527 gimple stmt2 = USE_STMT (use_p); local
529 if (is_gimple_call (stmt2))
531 tree fncall = gimple_call_fn (stmt2);
537 else if (gimple_code (stmt2) == GIMPLE_PHI)
540 (gimple_phi_result (stmt2),
543 else if (is_gimple_assign (stmt2))
545 tree rhs = gimple_assign_rhs1 (stmt2);
562 (gimple_assign_lhs (stmt2),
H A Dtree-call-cdce.c356 gassign *stmt2;
369 stmt2 = gimple_build_assign (tempc,
373 tempcn = make_ssa_name (tempc, stmt2);
374 gimple_assign_set_lhs (stmt2, tempcn);
378 conds.quick_push (stmt2);
481 gimple stmt1, stmt2;
537 stmt2 = gimple_build_cond (LE_EXPR, tempn, cst0, NULL_TREE, NULL_TREE);
540 conds.quick_push (stmt2);
353 gassign *stmt2; local
478 gimple stmt1, stmt2; local
H A Dtree-vectorizer.h767 get_earlier_stmt (gimple stmt1, gimple stmt2) argument
772 return stmt2;
774 if (stmt2 == NULL)
778 uid2 = gimple_uid (stmt2);
789 return stmt2;
795 get_later_stmt (gimple stmt1, gimple stmt2) argument
800 return stmt2;
802 if (stmt2 == NULL)
806 uid2 = gimple_uid (stmt2);
817 return stmt2;
[all...]
H A Dtree-predcom.c2087 gimple stmt1, stmt2; local
2093 stmt2 = find_use_stmt (name2);
2094 if (!stmt2)
2097 if (stmt1 == stmt2)
2103 stmt2 = find_associative_operation_root (stmt2, NULL);
2104 if (!stmt2)
2107 return (stmt1 == stmt2 ? stmt1 : NULL);
2186 gimple stmt1, stmt2, root1, root2, s1, s2; local
2195 stmt2
2271 gimple stmt1, stmt2; local
[all...]
H A Dtree-ssa-forwprop.c1279 gimple stmt1, stmt2 = gsi_stmt (*gsi_p); local
1280 tree vuse = gimple_vuse (stmt2);
1288 if (gimple_call_num_args (stmt2) != 3
1289 || gimple_call_lhs (stmt2)
1297 tree ptr2 = gimple_call_arg (stmt2, 0);
1298 tree val2 = gimple_call_arg (stmt2, 1);
1299 tree len2 = gimple_call_arg (stmt2, 2);
1394 || use_stmt != stmt2))
1402 || use_stmt != stmt2))
1421 rtl_profile_for_bb (gimple_bb (stmt2));
[all...]
H A Dvalue-prof.c760 gassign *stmt1, *stmt2; local
783 stmt2 = gimple_build_assign (tmp1, op2);
786 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
921 gassign *stmt1, *stmt2, *stmt3; local
944 stmt2 = gimple_build_assign (tmp2, PLUS_EXPR, op2,
949 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
1076 gimple stmt2; local
1099 stmt2 = gimple_build_assign (tmp1, op2);
1102 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
1109 stmt2
[all...]
H A Dtree-ssa-math-opts.c667 gimple stmt2 = USE_STMT (use_p); local
668 if (is_gimple_debug (stmt2))
670 if (!is_gimple_assign (stmt2)
671 || gimple_assign_rhs_code (stmt2) != RDIV_EXPR
672 || gimple_assign_rhs1 (stmt2) == arg1
673 || gimple_assign_rhs2 (stmt2) != arg1)
3178 gimple stmt2 = SSA_NAME_DEF_STMT (rhs2); local
3180 && is_gimple_assign (stmt2)
3181 && gimple_assign_rhs_code (stmt2) == MULT_EXPR)
H A Dtree-ssa-loop-im.c895 gassign *stmt, *stmt1, *stmt2; local
909 stmt2 = gimple_build_assign (lhs, MULT_EXPR, name,
917 gsi_replace (&gsi, stmt2, true);
931 gassign *stmt2; local
993 stmt2 = gimple_build_assign (name, t);
1008 gsi_insert_before (&rsi, stmt2, GSI_SAME_STMT);
H A Dtree-ssa-strlen.c1856 gimple stmt2 = gsi_stmt (*gsi); local
1857 if (!integer_zerop (gimple_call_arg (stmt2, 1)))
1859 tree ptr = gimple_call_arg (stmt2, 0);
1873 tree size = gimple_call_arg (stmt2, 2);
1887 tree lhs = gimple_call_lhs (stmt2);
1888 unlink_stmt_vdef (stmt2);
1897 release_defs (stmt2);
H A Dtree-vect-patterns.c142 vect_same_loop_or_bb_p (gimple stmt1, gimple stmt2) argument
148 if (!gimple_bb (stmt2))
154 if (!flow_bb_inside_loop_p (loop, gimple_bb (stmt2)))
159 if (gimple_bb (stmt2) != BB_VINFO_BB (bb_vinfo)
160 || gimple_code (stmt2) == GIMPLE_PHI)
164 gcc_assert (vinfo_for_stmt (stmt2));
H A Dtree-ssa-tail-merge.c1267 gimple stmt2 = gsi_stmt (gsi2); local
1273 || is_tm_ending (stmt2))
1276 if (!gimple_equal_p (same_succ, stmt1, stmt2))
H A Dtree-ssa-threadedge.c556 dummy_simplify (gimple stmt1 ATTRIBUTE_UNUSED, gimple stmt2 ATTRIBUTE_UNUSED)
H A Dtree-ssa-reassoc.c1241 gimple stmt2 = SSA_NAME_DEF_STMT (gimple_assign_rhs2 (stmt)); local
1242 if (stmt_is_power_of_op (stmt2, op))
1244 if (decrement_power (stmt2) == 1)
1245 propagate_op_to_single_use (op, stmt2, def);
H A Dtree-vrp.c6853 gimple stmt2; local
6857 stmt2 = SSA_NAME_DEF_STMT (gimple_assign_rhs1 (stmt));
6858 if (!gimple_assign_cast_p (stmt2)
6859 || gimple_assign_rhs1 (stmt2) != var
6860 || !CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt2))

Completed in 363 milliseconds