HomeSort by: relevance | last modified time | path
    Searched defs:stmt2 (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/gcc/
function-tests.cc 486 gimple *stmt2 = stmt1->next; local
487 ASSERT_TRUE (stmt2 != NULL);
488 ASSERT_EQ (stmt1, stmt2->prev);
489 ASSERT_EQ (GIMPLE_RETURN, gimple_code (stmt2));
gimple-ssa-split-paths.cc 177 gimple *stmt2 = last_and_only_stmt (pred2); local
179 if (stmt1 && stmt2
181 && gimple_code (stmt2) == GIMPLE_ASSIGN)
184 enum tree_code code2 = gimple_assign_rhs_code (stmt2);
190 tree lhs2 = gimple_assign_lhs (stmt2);
vtable-verify.cc 579 gimple *stmt2 = USE_STMT (use_p); local
581 if (is_gimple_call (stmt2))
583 tree fncall = gimple_call_fn (stmt2);
589 else if (gimple_code (stmt2) == GIMPLE_PHI)
592 (gimple_phi_result (stmt2),
596 else if (is_gimple_assign (stmt2))
598 tree rhs = gimple_assign_rhs1 (stmt2);
615 (gimple_assign_lhs (stmt2),
tree-call-cdce.cc 444 gassign *stmt2;
457 stmt2 = gimple_build_assign (tempc,
461 tempcn = make_ssa_name (tempc, stmt2);
462 gimple_assign_set_lhs (stmt2, tempcn);
466 conds.quick_push (stmt2);
569 gimple *stmt1, *stmt2;
625 stmt2 = gimple_build_cond (GT_EXPR, tempn, cst0, NULL_TREE, NULL_TREE);
628 conds.quick_push (stmt2);
441 gassign *stmt2; local
566 gimple *stmt1, *stmt2; local
value-prof.cc 666 gassign *stmt1, *stmt2; local
689 stmt2 = gimple_build_assign (tmp1, op2);
692 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
877 gassign *stmt1, *stmt2, *stmt3; local
900 stmt2 = gimple_build_assign (tmp2, PLUS_EXPR, op2,
905 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
1028 gimple *stmt2; local
1051 stmt2 = gimple_build_assign (tmp1, op2);
1054 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
1061 stmt2 = gimple_build_cond (LT_EXPR, result, tmp1, NULL_TREE, NULL_TREE)
    [all...]
graphite-isl-ast-to-gimple.cc 975 gimple *stmt2 = gsi_stmt (gsi2); local
977 if (stmt1 != NULL && stmt2 != NULL)
980 bool is_phi2 = gimple_code (stmt2) == GIMPLE_PHI;
tree-profile.cc 1536 gassign *stmt1, *stmt2, *stmt3; local
1547 stmt2: tmp1 = (void *) (indirect call argument value)
1565 stmt2 = gimple_build_assign (tmp1, unshare_expr (value->hvalue.value));
1571 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
tree-ssa-dom.cc 1375 gimple *stmt2; local
1379 stmt2 = SSA_NAME_DEF_STMT (gimple_assign_rhs1 (stmt));
1380 if (!gimple_assign_cast_p (stmt2)
1381 || gimple_assign_rhs1 (stmt2) != var
1382 || !CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt2))
tree-ssa-tail-merge.cc 1263 STMT2 are allowed to be merged. */
1266 merge_stmts_p (gimple *stmt1, gimple *stmt2)
1275 if (lookup_stmt_eh_lp_fn (cfun, stmt1) != lookup_stmt_eh_lp_fn (cfun, stmt2))
1295 return gimple_location (stmt1) == gimple_location (stmt2);
1320 gimple *stmt2 = gsi_stmt (gsi2); local
1323 && gimple_code (stmt2) == GIMPLE_LABEL)
1326 if (!gimple_equal_p (same_succ, stmt1, stmt2))
1329 if (!merge_stmts_p (stmt1, stmt2))
omp-offload.cc 1868 gimple *stmt2 local
1871 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
1872 *tp = gimple_assign_lhs (stmt2);
tree-parloops.cc 3461 gimple *stmt2 = SSA_NAME_DEF_STMT (addr); local
3462 if (!gimple_assign_single_p (stmt2))
3464 tree compref = gimple_assign_rhs1 (stmt2);
tree-predcom.cc 2723 gimple *stmt1, *stmt2; local
2729 stmt2 = find_use_stmt (name2);
2730 if (!stmt2)
2733 if (stmt1 == stmt2)
2739 stmt2 = find_associative_operation_root (stmt2, NULL);
2740 if (!stmt2)
2743 return (stmt1 == stmt2 ? stmt1 : NULL);
2822 gimple *stmt1, *stmt2, *root1, *root2, *s1, *s2; local
2831 stmt2 = find_use_stmt (&name2)
2907 gimple *stmt1, *stmt2; local
    [all...]
tree-ssa-forwprop.cc 1201 gimple *stmt1, *stmt2 = gsi_stmt (*gsi_p); local
1204 tree vuse = gimple_vuse (stmt2);
1214 if (gimple_call_num_args (stmt2) == 3
1215 && (res = gimple_call_lhs (stmt2)) != nullptr
1220 tree ptr = gimple_call_arg (stmt2, 0);
1230 if (!optimize_bb_for_speed_p (gimple_bb (stmt2))
1233 tree size = gimple_call_arg (stmt2, 2);
1246 tree ch = gimple_call_arg (stmt2, 1);
1247 location_t loc = gimple_location (stmt2);
1274 if (gimple_call_num_args (stmt2) !=
    [all...]
tree-ssa-loop-im.cc 982 gassign *stmt, *stmt1, *stmt2; local
996 stmt2 = gimple_build_assign (lhs, MULT_EXPR, name,
1004 gsi_replace (&gsi, stmt2, true);
1018 gassign *stmt2; local
1080 stmt2 = gimple_build_assign (name, t);
1095 gsi_insert_before (&rsi, stmt2, GSI_SAME_STMT);
tree-ssa-phiopt.cc 1950 gimple *stmt2 = gsi_stmt (it2); local
1951 if (is_gimple_assign (stmt1) && is_gimple_assign (stmt2))
1954 enum tree_code code2 = gimple_assign_rhs_code (stmt2);
  /src/external/gpl3/gcc.old/dist/gcc/
function-tests.cc 485 gimple *stmt2 = stmt1->next; local
486 ASSERT_TRUE (stmt2 != NULL);
487 ASSERT_EQ (stmt1, stmt2->prev);
488 ASSERT_EQ (GIMPLE_RETURN, gimple_code (stmt2));
gimple-ssa-split-paths.cc 177 gimple *stmt2 = last_and_only_stmt (pred2); local
179 if (stmt1 && stmt2
181 && gimple_code (stmt2) == GIMPLE_ASSIGN)
184 enum tree_code code2 = gimple_assign_rhs_code (stmt2);
190 tree lhs2 = gimple_assign_lhs (stmt2);
vtable-verify.cc 579 gimple *stmt2 = USE_STMT (use_p); local
581 if (is_gimple_call (stmt2))
583 tree fncall = gimple_call_fn (stmt2);
589 else if (gimple_code (stmt2) == GIMPLE_PHI)
592 (gimple_phi_result (stmt2),
596 else if (is_gimple_assign (stmt2))
598 tree rhs = gimple_assign_rhs1 (stmt2);
615 (gimple_assign_lhs (stmt2),
tree-call-cdce.cc 424 gassign *stmt2;
437 stmt2 = gimple_build_assign (tempc,
441 tempcn = make_ssa_name (tempc, stmt2);
442 gimple_assign_set_lhs (stmt2, tempcn);
446 conds.quick_push (stmt2);
549 gimple *stmt1, *stmt2;
605 stmt2 = gimple_build_cond (GT_EXPR, tempn, cst0, NULL_TREE, NULL_TREE);
608 conds.quick_push (stmt2);
421 gassign *stmt2; local
546 gimple *stmt1, *stmt2; local
tree-profile.cc 269 gassign *stmt2 = gimple_build_assign (gcov_type_tmp_var, PLUS_EXPR, local
272 gimple_assign_lhs (stmt2));
274 gsi_insert_on_edge (e, stmt2);
369 gassign *stmt1, *stmt2, *stmt3; local
380 stmt2: tmp1 = (void *) (indirect call argument value)
398 stmt2 = gimple_build_assign (tmp1, unshare_expr (value->hvalue.value));
404 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
value-prof.cc 678 gassign *stmt1, *stmt2; local
701 stmt2 = gimple_build_assign (tmp1, op2);
704 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
889 gassign *stmt1, *stmt2, *stmt3; local
912 stmt2 = gimple_build_assign (tmp2, PLUS_EXPR, op2,
917 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
1040 gimple *stmt2; local
1063 stmt2 = gimple_build_assign (tmp1, op2);
1066 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
1073 stmt2 = gimple_build_cond (LT_EXPR, result, tmp1, NULL_TREE, NULL_TREE)
    [all...]
graphite-isl-ast-to-gimple.cc 975 gimple *stmt2 = gsi_stmt (gsi2); local
977 if (stmt1 != NULL && stmt2 != NULL)
980 bool is_phi2 = gimple_code (stmt2) == GIMPLE_PHI;
omp-offload.cc 1838 gimple *stmt2 local
1841 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
1842 *tp = gimple_assign_lhs (stmt2);
tree-ssa-tail-merge.cc 1252 STMT2 are allowed to be merged. */
1255 merge_stmts_p (gimple *stmt1, gimple *stmt2)
1264 if (lookup_stmt_eh_lp_fn (cfun, stmt1) != lookup_stmt_eh_lp_fn (cfun, stmt2))
1284 return gimple_location (stmt1) == gimple_location (stmt2);
1309 gimple *stmt2 = gsi_stmt (gsi2); local
1312 && gimple_code (stmt2) == GIMPLE_LABEL)
1315 if (!gimple_equal_p (same_succ, stmt1, stmt2))
1318 if (!merge_stmts_p (stmt1, stmt2))
tree-if-conv.cc 2607 gassign *stmt2 = as_a <gassign *> (gsi_stmt (gsi2)); local
2611 gsi_insert_before (&gsi, stmt2, GSI_NEW_STMT);
2615 gsi_insert_after (&gsi, stmt2, GSI_NEW_STMT);

Completed in 88 milliseconds

1 2